diff --git a/index.js b/index.js index 9948df045f6dc85acfee12388051583881e916a1..ff7938f9c3ab89753cb5859708e09dc7bafa05e3 100644 --- a/index.js +++ b/index.js @@ -97,9 +97,9 @@ const { cozyClient } = __webpack_require__(1) -const rp = __webpack_require__(1307) -const moment = __webpack_require__(1339) -__webpack_require__(1476) +const rp = __webpack_require__(24) +const moment = __webpack_require__(1492) +__webpack_require__(1629) moment.locale('fr') // set the language moment.tz.setDefault('Europe/Paris') // set the timezone @@ -108,8 +108,8 @@ const manualExecution = process.env.COZY_JOB_MANUAL_EXECUTION === 'true' ? true : false const startDate = manualExecution - ? moment().subtract(5, 'day').format('MM/DD/YYYY') - : moment().subtract(5, 'day').format('MM/DD/YYYY') + ? moment().subtract(1, 'year').format('MM/DD/YYYY') + : moment().subtract(3, 'year').format('MM/DD/YYYY') const endDate = moment().format('MM/DD/YYYY') // const timeRange = ['day', 'month', 'year'] @@ -141,14 +141,14 @@ async function start(fields, cozyParameters) { // const apiAuthKey = fields.eglAPIAuthKey const baseUrl = cozyParameters.secret.eglBaseURL const apiAuthKey = cozyParameters.secret.eglAPIAuthKey - log('debug', 'Authenticating ...') + log('info', 'Authenticating ...') const response = await authenticate( fields.login, fields.password, baseUrl, apiAuthKey ) - log('debug', 'Successfully logged in') + log('info', 'Successfully logged in') const eglData = await getData(response, baseUrl, apiAuthKey) if (eglData) { @@ -178,11 +178,9 @@ async function processData(data, doctype, filterKeys) { // const formatedData = await formateData(data) log('debug', 'processData - data formated') // Remove data for existing days into the DB - console.log(data) const filteredData = await hydrateAndFilter(data, doctype, { keys: filterKeys }) - console.log(filteredData) log('debug', 'processData - data filtered') // Store new day data await storeData(filteredData, doctype, filterKeys) @@ -229,12 +227,12 @@ async function agregateMonthAndYearData(data) { * Return an Array of agregated data */ async function buildAgregatedData(data, doctype) { - log('debug', 'entering buildAgregatedData') + log('info', 'entering buildAgregatedData') let agregatedData = [] for (let [key, value] of Object.entries(data)) { const data = await buildDataFromKey(doctype, key, value) const oldValue = await resetInProgressAggregatedData(data, doctype) - log('debug', 'Dataload + oldvalue is ' + data.load + ' + ' + oldValue) + log('info', 'Dataload + oldvalue is ' + data.load + ' + ' + oldValue) data.load += oldValue agregatedData.push(data) } @@ -244,13 +242,13 @@ async function buildAgregatedData(data, doctype) { // async function processData(timeStep, response, baseUrl, apiAuthKey) { // const doctype = rangeDate[timeStep].doctype; // const loadProfile = await getData(response, baseUrl, apiAuthKey); -// log("debug", "Saving data to Cozy"); +// log("info", "Saving data to Cozy"); // if (doctype === rangeDate.day.doctype) { // await storeData(loadProfile, rangeDate.day.doctype, rangeDate.day.keys); // } else if (doctype === rangeDate.month.doctype) { // await resetInProgressAggregatedData(rangeDate.month.doctype); // const monthlyData = processMonthlyAggregation(loadProfile, rangeDate.month); -// log("debug", "Saving monthly data"); +// log("info", "Saving monthly data"); // await storeData(monthlyData, rangeDate.month.doctype, rangeDate.month.keys); // } else if (doctype === rangeDate.year.doctype) { // await resetInProgressAggregatedData(rangeDate.year.doctype); @@ -258,7 +256,7 @@ async function buildAgregatedData(data, doctype) { // loadProfile, // rangeDate.year.doctype // ); -// log("debug", "Saving yearly data"); +// log("info", "Saving yearly data"); // await storeData(yearlyData, rangeDate.year.doctype, rangeDate.year.keys); // } else { // throw new Error("Unkonw range type: " + doctype); @@ -323,21 +321,15 @@ async function getData(response, baseUrl, apiAuthKey) { } function format(response) { - log('debug', 'origin response size is : ' + response.resultatRetour.length) - log('debug', 'Raw value: ' ) - console.log(response.resultatRetour) + log('info', 'origin response size is : ' + response.resultatRetour.length) const data = response.resultatRetour - .slice(1) - .filter(value => value.ValeurIndex) - log('debug', 'Filterd value: ') - console.log(data) + .slice(1) + .filter(value => value.ValeurIndex) const dataLen = data.length - log('debug', 'filtered size is : ' + dataLen) + log('info', 'filtered size is : ' + dataLen) const mapData = data.map((value, index) => { const time = moment(value.DateReleve, moment.ISO_8601) if (index !== 0 && index < dataLen) { - log('debug', 'index: ' + value.ValeurIndex) - log('debug', 'index precedent: ' + data[index - 1].ValeurIndex) return { load: value.ValeurIndex - data[index - 1].ValeurIndex, year: parseInt(time.format('YYYY')), @@ -364,13 +356,13 @@ function format(response) { } // function processYearAggregation(data, doctype) { -// log("debug", "Start aggregation for : " + doctype); +// log("info", "Start aggregation for : " + doctype); // const grouped = data.reduce(reduceYearFunction, {}); // return Object.values(grouped); // } // function processMonthlyAggregation(data, range) { -// log("debug", "Start aggregation for : " + range.doctype); +// log("info", "Start aggregation for : " + range.doctype); // // Filter by year // const tmpData = groupBy(data, "year"); // const keys = Object.keys(tmpData); @@ -420,9 +412,9 @@ function format(response) { async function storeData(data, doctype, filterKeys) { log('debug', 'Store into ' + doctype) log('debug', 'Store into keys : ' + filterKeys) - data.map(v => { - log("debug", "Saving data " + v.load + " for " + v.day + "/" + v.month + "/" + v.year); - }); + // data.map(v => { + // log("info", "Saving data " + v.load + " for " + v.day + "/" + v.month + "/" + v.year); + // }); const filteredDocuments = await hydrateAndFilter(data, doctype, { keys: filterKeys }) @@ -521,41 +513,41 @@ const log = __webpack_require__(2).namespace('cozy-konnector-libs'); const requestFactory = __webpack_require__(22); -const hydrateAndFilter = __webpack_require__(369); +const hydrateAndFilter = __webpack_require__(371); -const categorization = __webpack_require__(1162); +const categorization = __webpack_require__(1130); module.exports = { - BaseKonnector: __webpack_require__(1222), - CookieKonnector: __webpack_require__(1300), - cozyClient: __webpack_require__(485), - errors: __webpack_require__(1228), + BaseKonnector: __webpack_require__(1402), + CookieKonnector: __webpack_require__(1485), + cozyClient: __webpack_require__(487), + errors: __webpack_require__(1408), log, - saveFiles: __webpack_require__(1224), - saveBills: __webpack_require__(1223), - saveIdentity: __webpack_require__(1266), - linkBankOperations: __webpack_require__(1245), - addData: __webpack_require__(1244), + saveFiles: __webpack_require__(1404), + saveBills: __webpack_require__(1403), + saveIdentity: __webpack_require__(1451), + linkBankOperations: __webpack_require__(1425), + addData: __webpack_require__(1424), hydrateAndFilter, - htmlToPDF: __webpack_require__(1301).htmlToPDF, - createCozyPDFDocument: __webpack_require__(1301).createCozyPDFDocument, + htmlToPDF: __webpack_require__(1486).htmlToPDF, + createCozyPDFDocument: __webpack_require__(1486).createCozyPDFDocument, filterData: deprecate(hydrateAndFilter, 'Use hydrateAndFilter now. filterData will be removed in cozy-konnector-libs@4'), - updateOrCreate: __webpack_require__(1265), + updateOrCreate: __webpack_require__(1450), request: deprecate(requestFactory, 'Use requestFactory instead of request. It will be removed in cozy-konnector-libs@4'), requestFactory, - retry: __webpack_require__(1225), - wrapIfSentrySetUp: __webpack_require__(1267).wrapIfSentrySetUp, - Document: __webpack_require__(1302), - signin: __webpack_require__(1262), - submitForm: __webpack_require__(1262), - scrape: __webpack_require__(1304), - mkdirp: __webpack_require__(1227), - normalizeFilename: __webpack_require__(1305), - utils: __webpack_require__(484), - solveCaptcha: __webpack_require__(1306), + retry: __webpack_require__(1405), + wrapIfSentrySetUp: __webpack_require__(1452).wrapIfSentrySetUp, + Document: __webpack_require__(1487), + signin: __webpack_require__(1447), + submitForm: __webpack_require__(1447), + scrape: __webpack_require__(1489), + mkdirp: __webpack_require__(1407), + normalizeFilename: __webpack_require__(1490), + utils: __webpack_require__(486), + solveCaptcha: __webpack_require__(1491), createCategorizer: categorization.createCategorizer, categorize: categorization.categorize, - manifest: __webpack_require__(833) + manifest: __webpack_require__(845) }; function deprecate(wrapped, message) { @@ -2865,14 +2857,14 @@ module.exports = __webpack_require__(23).default; * }) * ``` * - `debug`: will display request and responses details in error output. Possible values : - * true : display request and response in normal request-debug json format - * 'json' : display request and response in full json format - * 'simple' : display main information about each request and response + * * true : display request and response in normal request-debug json format + * * 'json' : display request and response in full json format + * * 'simple' : display main information about each request and response * ``` * GET -> http://books.toscrape.com/media/cache/26/0c/260c6ae16bce31c8f8c95daddd9f4a1c.jpg * <- 200 Content-Length: 7095 * ``` - * 'full' : display comple information about each request and response + * * 'full' : display comple information about each request and response * ``` * GET -> http://quotes.toscrape.com/login * @@ -2898,12 +2890,9 @@ module.exports = __webpack_require__(23).default; */ let request = __webpack_require__(24); -const requestdebug = __webpack_require__(273); // Quickly found more UserAgent here -// https://www.whatismybrowser.com/guides/the-latest-user-agent/ - +const requestdebug = __webpack_require__(270); -const AGENTS_LIST = ['Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0', 'Mozilla/5.0 (X11; Linux i686; rv:84.0) Gecko/20100101 Firefox/84.0', 'Mozilla/5.0 (Linux x86_64; rv:84.0) Gecko/20100101 Firefox/84.0', 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:84.0) Gecko/20100101 Firefox/84.0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75']; -const DEFAULT_USER_AGENT = AGENTS_LIST[Math.floor(Math.random() * AGENTS_LIST.length)]; +const DEFAULT_USER_AGENT = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:74.0) Gecko/20100101 Firefox/74.0'; exports = module.exports = { default: requestFactory, mergeDefaultOptions, @@ -2996,7 +2985,7 @@ function mergeDefaultOptions(options = {}) { } function transformWithCheerio(body, response, resolveWithFullResponse) { - const result = __webpack_require__(275).load(body); + const result = __webpack_require__(272).load(body); if (resolveWithFullResponse) { return { ...response, @@ -12543,20 +12532,20 @@ var caseless = __webpack_require__(161) var ForeverAgent = __webpack_require__(162) var FormData = __webpack_require__(164) var extend = __webpack_require__(79) -var isstream = __webpack_require__(182) -var isTypedArray = __webpack_require__(183).strict +var isstream = __webpack_require__(179) +var isTypedArray = __webpack_require__(180).strict var helpers = __webpack_require__(93) var cookies = __webpack_require__(80) -var getProxyFromURI = __webpack_require__(184) -var Querystring = __webpack_require__(185).Querystring -var Har = __webpack_require__(191).Har -var Auth = __webpack_require__(260).Auth -var OAuth = __webpack_require__(264).OAuth -var hawk = __webpack_require__(266) -var Multipart = __webpack_require__(267).Multipart -var Redirect = __webpack_require__(268).Redirect -var Tunnel = __webpack_require__(269).Tunnel -var now = __webpack_require__(272) +var getProxyFromURI = __webpack_require__(181) +var Querystring = __webpack_require__(182).Querystring +var Har = __webpack_require__(188).Har +var Auth = __webpack_require__(257).Auth +var OAuth = __webpack_require__(261).OAuth +var hawk = __webpack_require__(263) +var Multipart = __webpack_require__(264).Multipart +var Redirect = __webpack_require__(265).Redirect +var Tunnel = __webpack_require__(266).Tunnel +var now = __webpack_require__(269) var Buffer = __webpack_require__(95).Buffer var safeStringify = helpers.safeStringify @@ -31269,9 +31258,9 @@ var http = __webpack_require__(98); var https = __webpack_require__(99); var parseUrl = __webpack_require__(83).parse; var fs = __webpack_require__(167); -var mime = __webpack_require__(168); -var asynckit = __webpack_require__(171); -var populate = __webpack_require__(181); +var mime = __webpack_require__(157); +var asynckit = __webpack_require__(168); +var populate = __webpack_require__(178); // Public API module.exports = FormData; @@ -32058,239 +32047,21 @@ module.exports = require("fs"); /* 168 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; -/*! - * mime-types - * Copyright(c) 2014 Jonathan Ong - * Copyright(c) 2015 Douglas Christopher Wilson - * MIT Licensed - */ - - - -/** - * Module dependencies. - * @private - */ - -var db = __webpack_require__(169) -var extname = __webpack_require__(160).extname - -/** - * Module variables. - * @private - */ - -var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/ -var TEXT_TYPE_REGEXP = /^text\//i - -/** - * Module exports. - * @public - */ - -exports.charset = charset -exports.charsets = { lookup: charset } -exports.contentType = contentType -exports.extension = extension -exports.extensions = Object.create(null) -exports.lookup = lookup -exports.types = Object.create(null) - -// Populate the extensions/types maps -populateMaps(exports.extensions, exports.types) - -/** - * Get the default charset for a MIME type. - * - * @param {string} type - * @return {boolean|string} - */ - -function charset (type) { - if (!type || typeof type !== 'string') { - return false - } - - // TODO: use media-typer - var match = EXTRACT_TYPE_REGEXP.exec(type) - var mime = match && db[match[1].toLowerCase()] - - if (mime && mime.charset) { - return mime.charset - } - - // default text/* to utf-8 - if (match && TEXT_TYPE_REGEXP.test(match[1])) { - return 'UTF-8' - } - - return false -} - -/** - * Create a full Content-Type header given a MIME type or extension. - * - * @param {string} str - * @return {boolean|string} - */ - -function contentType (str) { - // TODO: should this even be in this module? - if (!str || typeof str !== 'string') { - return false - } - - var mime = str.indexOf('/') === -1 - ? exports.lookup(str) - : str - - if (!mime) { - return false - } - - // TODO: use content-type or other module - if (mime.indexOf('charset') === -1) { - var charset = exports.charset(mime) - if (charset) mime += '; charset=' + charset.toLowerCase() - } - - return mime -} - -/** - * Get the default extension for a MIME type. - * - * @param {string} type - * @return {boolean|string} - */ - -function extension (type) { - if (!type || typeof type !== 'string') { - return false - } - - // TODO: use media-typer - var match = EXTRACT_TYPE_REGEXP.exec(type) - - // get extensions - var exts = match && exports.extensions[match[1].toLowerCase()] - - if (!exts || !exts.length) { - return false - } - - return exts[0] -} - -/** - * Lookup the MIME type for a file path/extension. - * - * @param {string} path - * @return {boolean|string} - */ - -function lookup (path) { - if (!path || typeof path !== 'string') { - return false - } - - // get the extension ("ext" or ".ext" or full path) - var extension = extname('x.' + path) - .toLowerCase() - .substr(1) - - if (!extension) { - return false - } - - return exports.types[extension] || false -} - -/** - * Populate the extensions and types maps. - * @private - */ - -function populateMaps (extensions, types) { - // source preference (least -> most) - var preference = ['nginx', 'apache', undefined, 'iana'] - - Object.keys(db).forEach(function forEachMimeType (type) { - var mime = db[type] - var exts = mime.extensions - - if (!exts || !exts.length) { - return - } - - // mime -> extensions - extensions[type] = exts - - // extension -> mime - for (var i = 0; i < exts.length; i++) { - var extension = exts[i] - - if (types[extension]) { - var from = preference.indexOf(db[types[extension]].source) - var to = preference.indexOf(mime.source) - - if (types[extension] !== 'application/octet-stream' && - (from > to || (from === to && types[extension].substr(0, 12) === 'application/'))) { - // skip the remapping - continue - } - } - - // set the extension -> mime - types[extension] = type - } - }) -} - - -/***/ }), -/* 169 */ -/***/ (function(module, exports, __webpack_require__) { - -/*! - * mime-db - * Copyright(c) 2014 Jonathan Ong - * MIT Licensed - */ - -/** - * Module exports. - */ - -module.exports = __webpack_require__(170) - - -/***/ }), -/* 170 */ -/***/ (function(module) { - -module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source\":\"iana\"},\"application/3gpdash-qoe-report+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/3gpp-ims+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/a2l\":{\"source\":\"iana\"},\"application/activemessage\":{\"source\":\"iana\"},\"application/activity+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-costmap+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-costmapfilter+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-directory+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-endpointcost+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-endpointcostparams+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-endpointprop+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-endpointpropparams+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-error+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-networkmap+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-networkmapfilter+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-updatestreamcontrol+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-updatestreamparams+json\":{\"source\":\"iana\",\"compressible\":true},\"application/aml\":{\"source\":\"iana\"},\"application/andrew-inset\":{\"source\":\"iana\",\"extensions\":[\"ez\"]},\"application/applefile\":{\"source\":\"iana\"},\"application/applixware\":{\"source\":\"apache\",\"extensions\":[\"aw\"]},\"application/atf\":{\"source\":\"iana\"},\"application/atfx\":{\"source\":\"iana\"},\"application/atom+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"atom\"]},\"application/atomcat+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"atomcat\"]},\"application/atomdeleted+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"atomdeleted\"]},\"application/atomicmail\":{\"source\":\"iana\"},\"application/atomsvc+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"atomsvc\"]},\"application/atsc-dwd+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"dwd\"]},\"application/atsc-dynamic-event-message\":{\"source\":\"iana\"},\"application/atsc-held+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"held\"]},\"application/atsc-rdt+json\":{\"source\":\"iana\",\"compressible\":true},\"application/atsc-rsat+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rsat\"]},\"application/atxml\":{\"source\":\"iana\"},\"application/auth-policy+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/bacnet-xdd+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/batch-smtp\":{\"source\":\"iana\"},\"application/bdoc\":{\"compressible\":false,\"extensions\":[\"bdoc\"]},\"application/beep+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/calendar+json\":{\"source\":\"iana\",\"compressible\":true},\"application/calendar+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xcs\"]},\"application/call-completion\":{\"source\":\"iana\"},\"application/cals-1840\":{\"source\":\"iana\"},\"application/captive+json\":{\"source\":\"iana\",\"compressible\":true},\"application/cbor\":{\"source\":\"iana\"},\"application/cbor-seq\":{\"source\":\"iana\"},\"application/cccex\":{\"source\":\"iana\"},\"application/ccmp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/ccxml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ccxml\"]},\"application/cdfx+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"cdfx\"]},\"application/cdmi-capability\":{\"source\":\"iana\",\"extensions\":[\"cdmia\"]},\"application/cdmi-container\":{\"source\":\"iana\",\"extensions\":[\"cdmic\"]},\"application/cdmi-domain\":{\"source\":\"iana\",\"extensions\":[\"cdmid\"]},\"application/cdmi-object\":{\"source\":\"iana\",\"extensions\":[\"cdmio\"]},\"application/cdmi-queue\":{\"source\":\"iana\",\"extensions\":[\"cdmiq\"]},\"application/cdni\":{\"source\":\"iana\"},\"application/cea\":{\"source\":\"iana\"},\"application/cea-2018+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/cellml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/cfw\":{\"source\":\"iana\"},\"application/clr\":{\"source\":\"iana\"},\"application/clue+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/clue_info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/cms\":{\"source\":\"iana\"},\"application/cnrp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/coap-group+json\":{\"source\":\"iana\",\"compressible\":true},\"application/coap-payload\":{\"source\":\"iana\"},\"application/commonground\":{\"source\":\"iana\"},\"application/conference-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/cose\":{\"source\":\"iana\"},\"application/cose-key\":{\"source\":\"iana\"},\"application/cose-key-set\":{\"source\":\"iana\"},\"application/cpl+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/csrattrs\":{\"source\":\"iana\"},\"application/csta+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/cstadata+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/csvm+json\":{\"source\":\"iana\",\"compressible\":true},\"application/cu-seeme\":{\"source\":\"apache\",\"extensions\":[\"cu\"]},\"application/cwt\":{\"source\":\"iana\"},\"application/cybercash\":{\"source\":\"iana\"},\"application/dart\":{\"compressible\":true},\"application/dash+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mpd\"]},\"application/dashdelta\":{\"source\":\"iana\"},\"application/davmount+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"davmount\"]},\"application/dca-rft\":{\"source\":\"iana\"},\"application/dcd\":{\"source\":\"iana\"},\"application/dec-dx\":{\"source\":\"iana\"},\"application/dialog-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/dicom\":{\"source\":\"iana\"},\"application/dicom+json\":{\"source\":\"iana\",\"compressible\":true},\"application/dicom+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/dii\":{\"source\":\"iana\"},\"application/dit\":{\"source\":\"iana\"},\"application/dns\":{\"source\":\"iana\"},\"application/dns+json\":{\"source\":\"iana\",\"compressible\":true},\"application/dns-message\":{\"source\":\"iana\"},\"application/docbook+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"dbk\"]},\"application/dots+cbor\":{\"source\":\"iana\"},\"application/dskpp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/dssc+der\":{\"source\":\"iana\",\"extensions\":[\"dssc\"]},\"application/dssc+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xdssc\"]},\"application/dvcs\":{\"source\":\"iana\"},\"application/ecmascript\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ecma\",\"es\"]},\"application/edi-consent\":{\"source\":\"iana\"},\"application/edi-x12\":{\"source\":\"iana\",\"compressible\":false},\"application/edifact\":{\"source\":\"iana\",\"compressible\":false},\"application/efi\":{\"source\":\"iana\"},\"application/elm+json\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/elm+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.cap+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/emergencycalldata.comment+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.control+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.deviceinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.ecall.msd\":{\"source\":\"iana\"},\"application/emergencycalldata.providerinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.serviceinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.subscriberinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.veds+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emma+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"emma\"]},\"application/emotionml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"emotionml\"]},\"application/encaprtp\":{\"source\":\"iana\"},\"application/epp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/epub+zip\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"epub\"]},\"application/eshop\":{\"source\":\"iana\"},\"application/exi\":{\"source\":\"iana\",\"extensions\":[\"exi\"]},\"application/expect-ct-report+json\":{\"source\":\"iana\",\"compressible\":true},\"application/fastinfoset\":{\"source\":\"iana\"},\"application/fastsoap\":{\"source\":\"iana\"},\"application/fdt+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"fdt\"]},\"application/fhir+json\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/fhir+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/fido.trusted-apps+json\":{\"compressible\":true},\"application/fits\":{\"source\":\"iana\"},\"application/flexfec\":{\"source\":\"iana\"},\"application/font-sfnt\":{\"source\":\"iana\"},\"application/font-tdpfr\":{\"source\":\"iana\",\"extensions\":[\"pfr\"]},\"application/font-woff\":{\"source\":\"iana\",\"compressible\":false},\"application/framework-attributes+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/geo+json\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"geojson\"]},\"application/geo+json-seq\":{\"source\":\"iana\"},\"application/geopackage+sqlite3\":{\"source\":\"iana\"},\"application/geoxacml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/gltf-buffer\":{\"source\":\"iana\"},\"application/gml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"gml\"]},\"application/gpx+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"gpx\"]},\"application/gxf\":{\"source\":\"apache\",\"extensions\":[\"gxf\"]},\"application/gzip\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"gz\"]},\"application/h224\":{\"source\":\"iana\"},\"application/held+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/hjson\":{\"extensions\":[\"hjson\"]},\"application/http\":{\"source\":\"iana\"},\"application/hyperstudio\":{\"source\":\"iana\",\"extensions\":[\"stk\"]},\"application/ibe-key-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/ibe-pkg-reply+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/ibe-pp-data\":{\"source\":\"iana\"},\"application/iges\":{\"source\":\"iana\"},\"application/im-iscomposing+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/index\":{\"source\":\"iana\"},\"application/index.cmd\":{\"source\":\"iana\"},\"application/index.obj\":{\"source\":\"iana\"},\"application/index.response\":{\"source\":\"iana\"},\"application/index.vnd\":{\"source\":\"iana\"},\"application/inkml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ink\",\"inkml\"]},\"application/iotp\":{\"source\":\"iana\"},\"application/ipfix\":{\"source\":\"iana\",\"extensions\":[\"ipfix\"]},\"application/ipp\":{\"source\":\"iana\"},\"application/isup\":{\"source\":\"iana\"},\"application/its+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"its\"]},\"application/java-archive\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"jar\",\"war\",\"ear\"]},\"application/java-serialized-object\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"ser\"]},\"application/java-vm\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"class\"]},\"application/javascript\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"js\",\"mjs\"]},\"application/jf2feed+json\":{\"source\":\"iana\",\"compressible\":true},\"application/jose\":{\"source\":\"iana\"},\"application/jose+json\":{\"source\":\"iana\",\"compressible\":true},\"application/jrd+json\":{\"source\":\"iana\",\"compressible\":true},\"application/jscalendar+json\":{\"source\":\"iana\",\"compressible\":true},\"application/json\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"json\",\"map\"]},\"application/json-patch+json\":{\"source\":\"iana\",\"compressible\":true},\"application/json-seq\":{\"source\":\"iana\"},\"application/json5\":{\"extensions\":[\"json5\"]},\"application/jsonml+json\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"jsonml\"]},\"application/jwk+json\":{\"source\":\"iana\",\"compressible\":true},\"application/jwk-set+json\":{\"source\":\"iana\",\"compressible\":true},\"application/jwt\":{\"source\":\"iana\"},\"application/kpml-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/kpml-response+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/ld+json\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"jsonld\"]},\"application/lgr+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"lgr\"]},\"application/link-format\":{\"source\":\"iana\"},\"application/load-control+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/lost+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"lostxml\"]},\"application/lostsync+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/lpf+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/lxf\":{\"source\":\"iana\"},\"application/mac-binhex40\":{\"source\":\"iana\",\"extensions\":[\"hqx\"]},\"application/mac-compactpro\":{\"source\":\"apache\",\"extensions\":[\"cpt\"]},\"application/macwriteii\":{\"source\":\"iana\"},\"application/mads+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mads\"]},\"application/manifest+json\":{\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"webmanifest\"]},\"application/marc\":{\"source\":\"iana\",\"extensions\":[\"mrc\"]},\"application/marcxml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mrcx\"]},\"application/mathematica\":{\"source\":\"iana\",\"extensions\":[\"ma\",\"nb\",\"mb\"]},\"application/mathml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mathml\"]},\"application/mathml-content+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mathml-presentation+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-associated-procedure-description+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-deregister+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-envelope+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-msk+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-msk-response+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-protection-description+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-reception-report+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-register+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-register-response+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-schedule+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-user-service-description+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbox\":{\"source\":\"iana\",\"extensions\":[\"mbox\"]},\"application/media-policy-dataset+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/media_control+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mediaservercontrol+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mscml\"]},\"application/merge-patch+json\":{\"source\":\"iana\",\"compressible\":true},\"application/metalink+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"metalink\"]},\"application/metalink4+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"meta4\"]},\"application/mets+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mets\"]},\"application/mf4\":{\"source\":\"iana\"},\"application/mikey\":{\"source\":\"iana\"},\"application/mipc\":{\"source\":\"iana\"},\"application/mmt-aei+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"maei\"]},\"application/mmt-usd+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"musd\"]},\"application/mods+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mods\"]},\"application/moss-keys\":{\"source\":\"iana\"},\"application/moss-signature\":{\"source\":\"iana\"},\"application/mosskey-data\":{\"source\":\"iana\"},\"application/mosskey-request\":{\"source\":\"iana\"},\"application/mp21\":{\"source\":\"iana\",\"extensions\":[\"m21\",\"mp21\"]},\"application/mp4\":{\"source\":\"iana\",\"extensions\":[\"mp4s\",\"m4p\"]},\"application/mpeg4-generic\":{\"source\":\"iana\"},\"application/mpeg4-iod\":{\"source\":\"iana\"},\"application/mpeg4-iod-xmt\":{\"source\":\"iana\"},\"application/mrb-consumer+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xdf\"]},\"application/mrb-publish+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xdf\"]},\"application/msc-ivr+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/msc-mixer+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/msword\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"doc\",\"dot\"]},\"application/mud+json\":{\"source\":\"iana\",\"compressible\":true},\"application/multipart-core\":{\"source\":\"iana\"},\"application/mxf\":{\"source\":\"iana\",\"extensions\":[\"mxf\"]},\"application/n-quads\":{\"source\":\"iana\",\"extensions\":[\"nq\"]},\"application/n-triples\":{\"source\":\"iana\",\"extensions\":[\"nt\"]},\"application/nasdata\":{\"source\":\"iana\"},\"application/news-checkgroups\":{\"source\":\"iana\",\"charset\":\"US-ASCII\"},\"application/news-groupinfo\":{\"source\":\"iana\",\"charset\":\"US-ASCII\"},\"application/news-transmission\":{\"source\":\"iana\"},\"application/nlsml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/node\":{\"source\":\"iana\",\"extensions\":[\"cjs\"]},\"application/nss\":{\"source\":\"iana\"},\"application/ocsp-request\":{\"source\":\"iana\"},\"application/ocsp-response\":{\"source\":\"iana\"},\"application/octet-stream\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"bin\",\"dms\",\"lrf\",\"mar\",\"so\",\"dist\",\"distz\",\"pkg\",\"bpk\",\"dump\",\"elc\",\"deploy\",\"exe\",\"dll\",\"deb\",\"dmg\",\"iso\",\"img\",\"msi\",\"msp\",\"msm\",\"buffer\"]},\"application/oda\":{\"source\":\"iana\",\"extensions\":[\"oda\"]},\"application/odm+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/odx\":{\"source\":\"iana\"},\"application/oebps-package+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"opf\"]},\"application/ogg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"ogx\"]},\"application/omdoc+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"omdoc\"]},\"application/onenote\":{\"source\":\"apache\",\"extensions\":[\"onetoc\",\"onetoc2\",\"onetmp\",\"onepkg\"]},\"application/opc-nodeset+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/oscore\":{\"source\":\"iana\"},\"application/oxps\":{\"source\":\"iana\",\"extensions\":[\"oxps\"]},\"application/p2p-overlay+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"relo\"]},\"application/parityfec\":{\"source\":\"iana\"},\"application/passport\":{\"source\":\"iana\"},\"application/patch-ops-error+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xer\"]},\"application/pdf\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"pdf\"]},\"application/pdx\":{\"source\":\"iana\"},\"application/pem-certificate-chain\":{\"source\":\"iana\"},\"application/pgp-encrypted\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"pgp\"]},\"application/pgp-keys\":{\"source\":\"iana\"},\"application/pgp-signature\":{\"source\":\"iana\",\"extensions\":[\"asc\",\"sig\"]},\"application/pics-rules\":{\"source\":\"apache\",\"extensions\":[\"prf\"]},\"application/pidf+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/pidf-diff+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/pkcs10\":{\"source\":\"iana\",\"extensions\":[\"p10\"]},\"application/pkcs12\":{\"source\":\"iana\"},\"application/pkcs7-mime\":{\"source\":\"iana\",\"extensions\":[\"p7m\",\"p7c\"]},\"application/pkcs7-signature\":{\"source\":\"iana\",\"extensions\":[\"p7s\"]},\"application/pkcs8\":{\"source\":\"iana\",\"extensions\":[\"p8\"]},\"application/pkcs8-encrypted\":{\"source\":\"iana\"},\"application/pkix-attr-cert\":{\"source\":\"iana\",\"extensions\":[\"ac\"]},\"application/pkix-cert\":{\"source\":\"iana\",\"extensions\":[\"cer\"]},\"application/pkix-crl\":{\"source\":\"iana\",\"extensions\":[\"crl\"]},\"application/pkix-pkipath\":{\"source\":\"iana\",\"extensions\":[\"pkipath\"]},\"application/pkixcmp\":{\"source\":\"iana\",\"extensions\":[\"pki\"]},\"application/pls+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"pls\"]},\"application/poc-settings+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/postscript\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ai\",\"eps\",\"ps\"]},\"application/ppsp-tracker+json\":{\"source\":\"iana\",\"compressible\":true},\"application/problem+json\":{\"source\":\"iana\",\"compressible\":true},\"application/problem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/provenance+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"provx\"]},\"application/prs.alvestrand.titrax-sheet\":{\"source\":\"iana\"},\"application/prs.cww\":{\"source\":\"iana\",\"extensions\":[\"cww\"]},\"application/prs.cyn\":{\"source\":\"iana\",\"charset\":\"7-BIT\"},\"application/prs.hpub+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/prs.nprend\":{\"source\":\"iana\"},\"application/prs.plucker\":{\"source\":\"iana\"},\"application/prs.rdf-xml-crypt\":{\"source\":\"iana\"},\"application/prs.xsf+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/pskc+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"pskcxml\"]},\"application/pvd+json\":{\"source\":\"iana\",\"compressible\":true},\"application/qsig\":{\"source\":\"iana\"},\"application/raml+yaml\":{\"compressible\":true,\"extensions\":[\"raml\"]},\"application/raptorfec\":{\"source\":\"iana\"},\"application/rdap+json\":{\"source\":\"iana\",\"compressible\":true},\"application/rdf+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rdf\",\"owl\"]},\"application/reginfo+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rif\"]},\"application/relax-ng-compact-syntax\":{\"source\":\"iana\",\"extensions\":[\"rnc\"]},\"application/remote-printing\":{\"source\":\"iana\"},\"application/reputon+json\":{\"source\":\"iana\",\"compressible\":true},\"application/resource-lists+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rl\"]},\"application/resource-lists-diff+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rld\"]},\"application/rfc+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/riscos\":{\"source\":\"iana\"},\"application/rlmi+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/rls-services+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rs\"]},\"application/route-apd+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rapd\"]},\"application/route-s-tsid+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"sls\"]},\"application/route-usd+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rusd\"]},\"application/rpki-ghostbusters\":{\"source\":\"iana\",\"extensions\":[\"gbr\"]},\"application/rpki-manifest\":{\"source\":\"iana\",\"extensions\":[\"mft\"]},\"application/rpki-publication\":{\"source\":\"iana\"},\"application/rpki-roa\":{\"source\":\"iana\",\"extensions\":[\"roa\"]},\"application/rpki-updown\":{\"source\":\"iana\"},\"application/rsd+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"rsd\"]},\"application/rss+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"rss\"]},\"application/rtf\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rtf\"]},\"application/rtploopback\":{\"source\":\"iana\"},\"application/rtx\":{\"source\":\"iana\"},\"application/samlassertion+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/samlmetadata+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/sarif+json\":{\"source\":\"iana\",\"compressible\":true},\"application/sbe\":{\"source\":\"iana\"},\"application/sbml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"sbml\"]},\"application/scaip+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/scim+json\":{\"source\":\"iana\",\"compressible\":true},\"application/scvp-cv-request\":{\"source\":\"iana\",\"extensions\":[\"scq\"]},\"application/scvp-cv-response\":{\"source\":\"iana\",\"extensions\":[\"scs\"]},\"application/scvp-vp-request\":{\"source\":\"iana\",\"extensions\":[\"spq\"]},\"application/scvp-vp-response\":{\"source\":\"iana\",\"extensions\":[\"spp\"]},\"application/sdp\":{\"source\":\"iana\",\"extensions\":[\"sdp\"]},\"application/secevent+jwt\":{\"source\":\"iana\"},\"application/senml+cbor\":{\"source\":\"iana\"},\"application/senml+json\":{\"source\":\"iana\",\"compressible\":true},\"application/senml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"senmlx\"]},\"application/senml-etch+cbor\":{\"source\":\"iana\"},\"application/senml-etch+json\":{\"source\":\"iana\",\"compressible\":true},\"application/senml-exi\":{\"source\":\"iana\"},\"application/sensml+cbor\":{\"source\":\"iana\"},\"application/sensml+json\":{\"source\":\"iana\",\"compressible\":true},\"application/sensml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"sensmlx\"]},\"application/sensml-exi\":{\"source\":\"iana\"},\"application/sep+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/sep-exi\":{\"source\":\"iana\"},\"application/session-info\":{\"source\":\"iana\"},\"application/set-payment\":{\"source\":\"iana\"},\"application/set-payment-initiation\":{\"source\":\"iana\",\"extensions\":[\"setpay\"]},\"application/set-registration\":{\"source\":\"iana\"},\"application/set-registration-initiation\":{\"source\":\"iana\",\"extensions\":[\"setreg\"]},\"application/sgml\":{\"source\":\"iana\"},\"application/sgml-open-catalog\":{\"source\":\"iana\"},\"application/shf+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"shf\"]},\"application/sieve\":{\"source\":\"iana\",\"extensions\":[\"siv\",\"sieve\"]},\"application/simple-filter+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/simple-message-summary\":{\"source\":\"iana\"},\"application/simplesymbolcontainer\":{\"source\":\"iana\"},\"application/sipc\":{\"source\":\"iana\"},\"application/slate\":{\"source\":\"iana\"},\"application/smil\":{\"source\":\"iana\"},\"application/smil+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"smi\",\"smil\"]},\"application/smpte336m\":{\"source\":\"iana\"},\"application/soap+fastinfoset\":{\"source\":\"iana\"},\"application/soap+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/sparql-query\":{\"source\":\"iana\",\"extensions\":[\"rq\"]},\"application/sparql-results+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"srx\"]},\"application/spirits-event+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/sql\":{\"source\":\"iana\"},\"application/srgs\":{\"source\":\"iana\",\"extensions\":[\"gram\"]},\"application/srgs+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"grxml\"]},\"application/sru+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"sru\"]},\"application/ssdl+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"ssdl\"]},\"application/ssml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ssml\"]},\"application/stix+json\":{\"source\":\"iana\",\"compressible\":true},\"application/swid+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"swidtag\"]},\"application/tamp-apex-update\":{\"source\":\"iana\"},\"application/tamp-apex-update-confirm\":{\"source\":\"iana\"},\"application/tamp-community-update\":{\"source\":\"iana\"},\"application/tamp-community-update-confirm\":{\"source\":\"iana\"},\"application/tamp-error\":{\"source\":\"iana\"},\"application/tamp-sequence-adjust\":{\"source\":\"iana\"},\"application/tamp-sequence-adjust-confirm\":{\"source\":\"iana\"},\"application/tamp-status-query\":{\"source\":\"iana\"},\"application/tamp-status-response\":{\"source\":\"iana\"},\"application/tamp-update\":{\"source\":\"iana\"},\"application/tamp-update-confirm\":{\"source\":\"iana\"},\"application/tar\":{\"compressible\":true},\"application/taxii+json\":{\"source\":\"iana\",\"compressible\":true},\"application/td+json\":{\"source\":\"iana\",\"compressible\":true},\"application/tei+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"tei\",\"teicorpus\"]},\"application/tetra_isi\":{\"source\":\"iana\"},\"application/thraud+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"tfi\"]},\"application/timestamp-query\":{\"source\":\"iana\"},\"application/timestamp-reply\":{\"source\":\"iana\"},\"application/timestamped-data\":{\"source\":\"iana\",\"extensions\":[\"tsd\"]},\"application/tlsrpt+gzip\":{\"source\":\"iana\"},\"application/tlsrpt+json\":{\"source\":\"iana\",\"compressible\":true},\"application/tnauthlist\":{\"source\":\"iana\"},\"application/toml\":{\"compressible\":true,\"extensions\":[\"toml\"]},\"application/trickle-ice-sdpfrag\":{\"source\":\"iana\"},\"application/trig\":{\"source\":\"iana\"},\"application/ttml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ttml\"]},\"application/tve-trigger\":{\"source\":\"iana\"},\"application/tzif\":{\"source\":\"iana\"},\"application/tzif-leap\":{\"source\":\"iana\"},\"application/ubjson\":{\"compressible\":false,\"extensions\":[\"ubj\"]},\"application/ulpfec\":{\"source\":\"iana\"},\"application/urc-grpsheet+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/urc-ressheet+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rsheet\"]},\"application/urc-targetdesc+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"td\"]},\"application/urc-uisocketdesc+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vcard+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vcard+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vemmi\":{\"source\":\"iana\"},\"application/vividence.scriptfile\":{\"source\":\"apache\"},\"application/vnd.1000minds.decision-model+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"1km\"]},\"application/vnd.3gpp-prose+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp-prose-pc3ch+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp-v2x-local-service-information\":{\"source\":\"iana\"},\"application/vnd.3gpp.access-transfer-events+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.bsf+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.gmop+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.interworking-data\":{\"source\":\"iana\"},\"application/vnd.3gpp.mc-signalling-ear\":{\"source\":\"iana\"},\"application/vnd.3gpp.mcdata-affiliation-command+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcdata-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcdata-payload\":{\"source\":\"iana\"},\"application/vnd.3gpp.mcdata-service-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcdata-signalling\":{\"source\":\"iana\"},\"application/vnd.3gpp.mcdata-ue-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcdata-user-profile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-affiliation-command+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-floor-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-location-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-mbms-usage-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-service-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-signed+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-ue-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-ue-init-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-user-profile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-affiliation-command+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-affiliation-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-location-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-mbms-usage-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-service-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-transmission-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-ue-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-user-profile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mid-call+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.pic-bw-large\":{\"source\":\"iana\",\"extensions\":[\"plb\"]},\"application/vnd.3gpp.pic-bw-small\":{\"source\":\"iana\",\"extensions\":[\"psb\"]},\"application/vnd.3gpp.pic-bw-var\":{\"source\":\"iana\",\"extensions\":[\"pvb\"]},\"application/vnd.3gpp.sms\":{\"source\":\"iana\"},\"application/vnd.3gpp.sms+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.srvcc-ext+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.srvcc-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.state-and-event-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.ussd+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp2.bcmcsinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp2.sms\":{\"source\":\"iana\"},\"application/vnd.3gpp2.tcap\":{\"source\":\"iana\",\"extensions\":[\"tcap\"]},\"application/vnd.3lightssoftware.imagescal\":{\"source\":\"iana\"},\"application/vnd.3m.post-it-notes\":{\"source\":\"iana\",\"extensions\":[\"pwn\"]},\"application/vnd.accpac.simply.aso\":{\"source\":\"iana\",\"extensions\":[\"aso\"]},\"application/vnd.accpac.simply.imp\":{\"source\":\"iana\",\"extensions\":[\"imp\"]},\"application/vnd.acucobol\":{\"source\":\"iana\",\"extensions\":[\"acu\"]},\"application/vnd.acucorp\":{\"source\":\"iana\",\"extensions\":[\"atc\",\"acutc\"]},\"application/vnd.adobe.air-application-installer-package+zip\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"air\"]},\"application/vnd.adobe.flash.movie\":{\"source\":\"iana\"},\"application/vnd.adobe.formscentral.fcdt\":{\"source\":\"iana\",\"extensions\":[\"fcdt\"]},\"application/vnd.adobe.fxp\":{\"source\":\"iana\",\"extensions\":[\"fxp\",\"fxpl\"]},\"application/vnd.adobe.partial-upload\":{\"source\":\"iana\"},\"application/vnd.adobe.xdp+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xdp\"]},\"application/vnd.adobe.xfdf\":{\"source\":\"iana\",\"extensions\":[\"xfdf\"]},\"application/vnd.aether.imp\":{\"source\":\"iana\"},\"application/vnd.afpc.afplinedata\":{\"source\":\"iana\"},\"application/vnd.afpc.afplinedata-pagedef\":{\"source\":\"iana\"},\"application/vnd.afpc.cmoca-cmresource\":{\"source\":\"iana\"},\"application/vnd.afpc.foca-charset\":{\"source\":\"iana\"},\"application/vnd.afpc.foca-codedfont\":{\"source\":\"iana\"},\"application/vnd.afpc.foca-codepage\":{\"source\":\"iana\"},\"application/vnd.afpc.modca\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-cmtable\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-formdef\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-mediummap\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-objectcontainer\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-overlay\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-pagesegment\":{\"source\":\"iana\"},\"application/vnd.ah-barcode\":{\"source\":\"iana\"},\"application/vnd.ahead.space\":{\"source\":\"iana\",\"extensions\":[\"ahead\"]},\"application/vnd.airzip.filesecure.azf\":{\"source\":\"iana\",\"extensions\":[\"azf\"]},\"application/vnd.airzip.filesecure.azs\":{\"source\":\"iana\",\"extensions\":[\"azs\"]},\"application/vnd.amadeus+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.amazon.ebook\":{\"source\":\"apache\",\"extensions\":[\"azw\"]},\"application/vnd.amazon.mobi8-ebook\":{\"source\":\"iana\"},\"application/vnd.americandynamics.acc\":{\"source\":\"iana\",\"extensions\":[\"acc\"]},\"application/vnd.amiga.ami\":{\"source\":\"iana\",\"extensions\":[\"ami\"]},\"application/vnd.amundsen.maze+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.android.ota\":{\"source\":\"iana\"},\"application/vnd.android.package-archive\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"apk\"]},\"application/vnd.anki\":{\"source\":\"iana\"},\"application/vnd.anser-web-certificate-issue-initiation\":{\"source\":\"iana\",\"extensions\":[\"cii\"]},\"application/vnd.anser-web-funds-transfer-initiation\":{\"source\":\"apache\",\"extensions\":[\"fti\"]},\"application/vnd.antix.game-component\":{\"source\":\"iana\",\"extensions\":[\"atx\"]},\"application/vnd.apache.thrift.binary\":{\"source\":\"iana\"},\"application/vnd.apache.thrift.compact\":{\"source\":\"iana\"},\"application/vnd.apache.thrift.json\":{\"source\":\"iana\"},\"application/vnd.api+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.aplextor.warrp+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.apothekende.reservation+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.apple.installer+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mpkg\"]},\"application/vnd.apple.keynote\":{\"source\":\"iana\",\"extensions\":[\"key\"]},\"application/vnd.apple.mpegurl\":{\"source\":\"iana\",\"extensions\":[\"m3u8\"]},\"application/vnd.apple.numbers\":{\"source\":\"iana\",\"extensions\":[\"numbers\"]},\"application/vnd.apple.pages\":{\"source\":\"iana\",\"extensions\":[\"pages\"]},\"application/vnd.apple.pkpass\":{\"compressible\":false,\"extensions\":[\"pkpass\"]},\"application/vnd.arastra.swi\":{\"source\":\"iana\"},\"application/vnd.aristanetworks.swi\":{\"source\":\"iana\",\"extensions\":[\"swi\"]},\"application/vnd.artisan+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.artsquare\":{\"source\":\"iana\"},\"application/vnd.astraea-software.iota\":{\"source\":\"iana\",\"extensions\":[\"iota\"]},\"application/vnd.audiograph\":{\"source\":\"iana\",\"extensions\":[\"aep\"]},\"application/vnd.autopackage\":{\"source\":\"iana\"},\"application/vnd.avalon+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.avistar+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.balsamiq.bmml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"bmml\"]},\"application/vnd.balsamiq.bmpr\":{\"source\":\"iana\"},\"application/vnd.banana-accounting\":{\"source\":\"iana\"},\"application/vnd.bbf.usp.error\":{\"source\":\"iana\"},\"application/vnd.bbf.usp.msg\":{\"source\":\"iana\"},\"application/vnd.bbf.usp.msg+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.bekitzur-stech+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.bint.med-content\":{\"source\":\"iana\"},\"application/vnd.biopax.rdf+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.blink-idb-value-wrapper\":{\"source\":\"iana\"},\"application/vnd.blueice.multipass\":{\"source\":\"iana\",\"extensions\":[\"mpm\"]},\"application/vnd.bluetooth.ep.oob\":{\"source\":\"iana\"},\"application/vnd.bluetooth.le.oob\":{\"source\":\"iana\"},\"application/vnd.bmi\":{\"source\":\"iana\",\"extensions\":[\"bmi\"]},\"application/vnd.bpf\":{\"source\":\"iana\"},\"application/vnd.bpf3\":{\"source\":\"iana\"},\"application/vnd.businessobjects\":{\"source\":\"iana\",\"extensions\":[\"rep\"]},\"application/vnd.byu.uapi+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cab-jscript\":{\"source\":\"iana\"},\"application/vnd.canon-cpdl\":{\"source\":\"iana\"},\"application/vnd.canon-lips\":{\"source\":\"iana\"},\"application/vnd.capasystems-pg+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cendio.thinlinc.clientconf\":{\"source\":\"iana\"},\"application/vnd.century-systems.tcp_stream\":{\"source\":\"iana\"},\"application/vnd.chemdraw+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"cdxml\"]},\"application/vnd.chess-pgn\":{\"source\":\"iana\"},\"application/vnd.chipnuts.karaoke-mmd\":{\"source\":\"iana\",\"extensions\":[\"mmd\"]},\"application/vnd.ciedi\":{\"source\":\"iana\"},\"application/vnd.cinderella\":{\"source\":\"iana\",\"extensions\":[\"cdy\"]},\"application/vnd.cirpack.isdn-ext\":{\"source\":\"iana\"},\"application/vnd.citationstyles.style+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"csl\"]},\"application/vnd.claymore\":{\"source\":\"iana\",\"extensions\":[\"cla\"]},\"application/vnd.cloanto.rp9\":{\"source\":\"iana\",\"extensions\":[\"rp9\"]},\"application/vnd.clonk.c4group\":{\"source\":\"iana\",\"extensions\":[\"c4g\",\"c4d\",\"c4f\",\"c4p\",\"c4u\"]},\"application/vnd.cluetrust.cartomobile-config\":{\"source\":\"iana\",\"extensions\":[\"c11amc\"]},\"application/vnd.cluetrust.cartomobile-config-pkg\":{\"source\":\"iana\",\"extensions\":[\"c11amz\"]},\"application/vnd.coffeescript\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.document\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.document-template\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.presentation\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.presentation-template\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.spreadsheet\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.spreadsheet-template\":{\"source\":\"iana\"},\"application/vnd.collection+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.collection.doc+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.collection.next+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.comicbook+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.comicbook-rar\":{\"source\":\"iana\"},\"application/vnd.commerce-battelle\":{\"source\":\"iana\"},\"application/vnd.commonspace\":{\"source\":\"iana\",\"extensions\":[\"csp\"]},\"application/vnd.contact.cmsg\":{\"source\":\"iana\",\"extensions\":[\"cdbcmsg\"]},\"application/vnd.coreos.ignition+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cosmocaller\":{\"source\":\"iana\",\"extensions\":[\"cmc\"]},\"application/vnd.crick.clicker\":{\"source\":\"iana\",\"extensions\":[\"clkx\"]},\"application/vnd.crick.clicker.keyboard\":{\"source\":\"iana\",\"extensions\":[\"clkk\"]},\"application/vnd.crick.clicker.palette\":{\"source\":\"iana\",\"extensions\":[\"clkp\"]},\"application/vnd.crick.clicker.template\":{\"source\":\"iana\",\"extensions\":[\"clkt\"]},\"application/vnd.crick.clicker.wordbank\":{\"source\":\"iana\",\"extensions\":[\"clkw\"]},\"application/vnd.criticaltools.wbs+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"wbs\"]},\"application/vnd.cryptii.pipe+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.crypto-shade-file\":{\"source\":\"iana\"},\"application/vnd.ctc-posml\":{\"source\":\"iana\",\"extensions\":[\"pml\"]},\"application/vnd.ctct.ws+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cups-pdf\":{\"source\":\"iana\"},\"application/vnd.cups-postscript\":{\"source\":\"iana\"},\"application/vnd.cups-ppd\":{\"source\":\"iana\",\"extensions\":[\"ppd\"]},\"application/vnd.cups-raster\":{\"source\":\"iana\"},\"application/vnd.cups-raw\":{\"source\":\"iana\"},\"application/vnd.curl\":{\"source\":\"iana\"},\"application/vnd.curl.car\":{\"source\":\"apache\",\"extensions\":[\"car\"]},\"application/vnd.curl.pcurl\":{\"source\":\"apache\",\"extensions\":[\"pcurl\"]},\"application/vnd.cyan.dean.root+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cybank\":{\"source\":\"iana\"},\"application/vnd.cyclonedx+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cyclonedx+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.d2l.coursepackage1p0+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.d3m-dataset\":{\"source\":\"iana\"},\"application/vnd.d3m-problem\":{\"source\":\"iana\"},\"application/vnd.dart\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"dart\"]},\"application/vnd.data-vision.rdz\":{\"source\":\"iana\",\"extensions\":[\"rdz\"]},\"application/vnd.datapackage+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dataresource+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dbf\":{\"source\":\"iana\",\"extensions\":[\"dbf\"]},\"application/vnd.debian.binary-package\":{\"source\":\"iana\"},\"application/vnd.dece.data\":{\"source\":\"iana\",\"extensions\":[\"uvf\",\"uvvf\",\"uvd\",\"uvvd\"]},\"application/vnd.dece.ttml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"uvt\",\"uvvt\"]},\"application/vnd.dece.unspecified\":{\"source\":\"iana\",\"extensions\":[\"uvx\",\"uvvx\"]},\"application/vnd.dece.zip\":{\"source\":\"iana\",\"extensions\":[\"uvz\",\"uvvz\"]},\"application/vnd.denovo.fcselayout-link\":{\"source\":\"iana\",\"extensions\":[\"fe_launch\"]},\"application/vnd.desmume.movie\":{\"source\":\"iana\"},\"application/vnd.dir-bi.plate-dl-nosuffix\":{\"source\":\"iana\"},\"application/vnd.dm.delegation+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dna\":{\"source\":\"iana\",\"extensions\":[\"dna\"]},\"application/vnd.document+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dolby.mlp\":{\"source\":\"apache\",\"extensions\":[\"mlp\"]},\"application/vnd.dolby.mobile.1\":{\"source\":\"iana\"},\"application/vnd.dolby.mobile.2\":{\"source\":\"iana\"},\"application/vnd.doremir.scorecloud-binary-document\":{\"source\":\"iana\"},\"application/vnd.dpgraph\":{\"source\":\"iana\",\"extensions\":[\"dpg\"]},\"application/vnd.dreamfactory\":{\"source\":\"iana\",\"extensions\":[\"dfac\"]},\"application/vnd.drive+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ds-keypoint\":{\"source\":\"apache\",\"extensions\":[\"kpxx\"]},\"application/vnd.dtg.local\":{\"source\":\"iana\"},\"application/vnd.dtg.local.flash\":{\"source\":\"iana\"},\"application/vnd.dtg.local.html\":{\"source\":\"iana\"},\"application/vnd.dvb.ait\":{\"source\":\"iana\",\"extensions\":[\"ait\"]},\"application/vnd.dvb.dvbisl+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.dvbj\":{\"source\":\"iana\"},\"application/vnd.dvb.esgcontainer\":{\"source\":\"iana\"},\"application/vnd.dvb.ipdcdftnotifaccess\":{\"source\":\"iana\"},\"application/vnd.dvb.ipdcesgaccess\":{\"source\":\"iana\"},\"application/vnd.dvb.ipdcesgaccess2\":{\"source\":\"iana\"},\"application/vnd.dvb.ipdcesgpdd\":{\"source\":\"iana\"},\"application/vnd.dvb.ipdcroaming\":{\"source\":\"iana\"},\"application/vnd.dvb.iptv.alfec-base\":{\"source\":\"iana\"},\"application/vnd.dvb.iptv.alfec-enhancement\":{\"source\":\"iana\"},\"application/vnd.dvb.notif-aggregate-root+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-container+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-generic+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-ia-msglist+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-ia-registration-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-ia-registration-response+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-init+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.pfr\":{\"source\":\"iana\"},\"application/vnd.dvb.service\":{\"source\":\"iana\",\"extensions\":[\"svc\"]},\"application/vnd.dxr\":{\"source\":\"iana\"},\"application/vnd.dynageo\":{\"source\":\"iana\",\"extensions\":[\"geo\"]},\"application/vnd.dzr\":{\"source\":\"iana\"},\"application/vnd.easykaraoke.cdgdownload\":{\"source\":\"iana\"},\"application/vnd.ecdis-update\":{\"source\":\"iana\"},\"application/vnd.ecip.rlp\":{\"source\":\"iana\"},\"application/vnd.ecowin.chart\":{\"source\":\"iana\",\"extensions\":[\"mag\"]},\"application/vnd.ecowin.filerequest\":{\"source\":\"iana\"},\"application/vnd.ecowin.fileupdate\":{\"source\":\"iana\"},\"application/vnd.ecowin.series\":{\"source\":\"iana\"},\"application/vnd.ecowin.seriesrequest\":{\"source\":\"iana\"},\"application/vnd.ecowin.seriesupdate\":{\"source\":\"iana\"},\"application/vnd.efi.img\":{\"source\":\"iana\"},\"application/vnd.efi.iso\":{\"source\":\"iana\"},\"application/vnd.emclient.accessrequest+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.enliven\":{\"source\":\"iana\",\"extensions\":[\"nml\"]},\"application/vnd.enphase.envoy\":{\"source\":\"iana\"},\"application/vnd.eprints.data+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.epson.esf\":{\"source\":\"iana\",\"extensions\":[\"esf\"]},\"application/vnd.epson.msf\":{\"source\":\"iana\",\"extensions\":[\"msf\"]},\"application/vnd.epson.quickanime\":{\"source\":\"iana\",\"extensions\":[\"qam\"]},\"application/vnd.epson.salt\":{\"source\":\"iana\",\"extensions\":[\"slt\"]},\"application/vnd.epson.ssf\":{\"source\":\"iana\",\"extensions\":[\"ssf\"]},\"application/vnd.ericsson.quickcall\":{\"source\":\"iana\"},\"application/vnd.espass-espass+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.eszigno3+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"es3\",\"et3\"]},\"application/vnd.etsi.aoc+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.asic-e+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.etsi.asic-s+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.etsi.cug+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvcommand+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvdiscovery+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvprofile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvsad-bc+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvsad-cod+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvsad-npvr+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvservice+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvsync+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvueprofile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.mcid+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.mheg5\":{\"source\":\"iana\"},\"application/vnd.etsi.overload-control-policy-dataset+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.pstn+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.sci+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.simservs+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.timestamp-token\":{\"source\":\"iana\"},\"application/vnd.etsi.tsl+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.tsl.der\":{\"source\":\"iana\"},\"application/vnd.eudora.data\":{\"source\":\"iana\"},\"application/vnd.evolv.ecig.profile\":{\"source\":\"iana\"},\"application/vnd.evolv.ecig.settings\":{\"source\":\"iana\"},\"application/vnd.evolv.ecig.theme\":{\"source\":\"iana\"},\"application/vnd.exstream-empower+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.exstream-package\":{\"source\":\"iana\"},\"application/vnd.ezpix-album\":{\"source\":\"iana\",\"extensions\":[\"ez2\"]},\"application/vnd.ezpix-package\":{\"source\":\"iana\",\"extensions\":[\"ez3\"]},\"application/vnd.f-secure.mobile\":{\"source\":\"iana\"},\"application/vnd.fastcopy-disk-image\":{\"source\":\"iana\"},\"application/vnd.fdf\":{\"source\":\"iana\",\"extensions\":[\"fdf\"]},\"application/vnd.fdsn.mseed\":{\"source\":\"iana\",\"extensions\":[\"mseed\"]},\"application/vnd.fdsn.seed\":{\"source\":\"iana\",\"extensions\":[\"seed\",\"dataless\"]},\"application/vnd.ffsns\":{\"source\":\"iana\"},\"application/vnd.ficlab.flb+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.filmit.zfc\":{\"source\":\"iana\"},\"application/vnd.fints\":{\"source\":\"iana\"},\"application/vnd.firemonkeys.cloudcell\":{\"source\":\"iana\"},\"application/vnd.flographit\":{\"source\":\"iana\",\"extensions\":[\"gph\"]},\"application/vnd.fluxtime.clip\":{\"source\":\"iana\",\"extensions\":[\"ftc\"]},\"application/vnd.font-fontforge-sfd\":{\"source\":\"iana\"},\"application/vnd.framemaker\":{\"source\":\"iana\",\"extensions\":[\"fm\",\"frame\",\"maker\",\"book\"]},\"application/vnd.frogans.fnc\":{\"source\":\"iana\",\"extensions\":[\"fnc\"]},\"application/vnd.frogans.ltf\":{\"source\":\"iana\",\"extensions\":[\"ltf\"]},\"application/vnd.fsc.weblaunch\":{\"source\":\"iana\",\"extensions\":[\"fsc\"]},\"application/vnd.fujitsu.oasys\":{\"source\":\"iana\",\"extensions\":[\"oas\"]},\"application/vnd.fujitsu.oasys2\":{\"source\":\"iana\",\"extensions\":[\"oa2\"]},\"application/vnd.fujitsu.oasys3\":{\"source\":\"iana\",\"extensions\":[\"oa3\"]},\"application/vnd.fujitsu.oasysgp\":{\"source\":\"iana\",\"extensions\":[\"fg5\"]},\"application/vnd.fujitsu.oasysprs\":{\"source\":\"iana\",\"extensions\":[\"bh2\"]},\"application/vnd.fujixerox.art-ex\":{\"source\":\"iana\"},\"application/vnd.fujixerox.art4\":{\"source\":\"iana\"},\"application/vnd.fujixerox.ddd\":{\"source\":\"iana\",\"extensions\":[\"ddd\"]},\"application/vnd.fujixerox.docuworks\":{\"source\":\"iana\",\"extensions\":[\"xdw\"]},\"application/vnd.fujixerox.docuworks.binder\":{\"source\":\"iana\",\"extensions\":[\"xbd\"]},\"application/vnd.fujixerox.docuworks.container\":{\"source\":\"iana\"},\"application/vnd.fujixerox.hbpl\":{\"source\":\"iana\"},\"application/vnd.fut-misnet\":{\"source\":\"iana\"},\"application/vnd.futoin+cbor\":{\"source\":\"iana\"},\"application/vnd.futoin+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.fuzzysheet\":{\"source\":\"iana\",\"extensions\":[\"fzs\"]},\"application/vnd.genomatix.tuxedo\":{\"source\":\"iana\",\"extensions\":[\"txd\"]},\"application/vnd.gentics.grd+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.geo+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.geocube+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.geogebra.file\":{\"source\":\"iana\",\"extensions\":[\"ggb\"]},\"application/vnd.geogebra.slides\":{\"source\":\"iana\"},\"application/vnd.geogebra.tool\":{\"source\":\"iana\",\"extensions\":[\"ggt\"]},\"application/vnd.geometry-explorer\":{\"source\":\"iana\",\"extensions\":[\"gex\",\"gre\"]},\"application/vnd.geonext\":{\"source\":\"iana\",\"extensions\":[\"gxt\"]},\"application/vnd.geoplan\":{\"source\":\"iana\",\"extensions\":[\"g2w\"]},\"application/vnd.geospace\":{\"source\":\"iana\",\"extensions\":[\"g3w\"]},\"application/vnd.gerber\":{\"source\":\"iana\"},\"application/vnd.globalplatform.card-content-mgt\":{\"source\":\"iana\"},\"application/vnd.globalplatform.card-content-mgt-response\":{\"source\":\"iana\"},\"application/vnd.gmx\":{\"source\":\"iana\",\"extensions\":[\"gmx\"]},\"application/vnd.google-apps.document\":{\"compressible\":false,\"extensions\":[\"gdoc\"]},\"application/vnd.google-apps.presentation\":{\"compressible\":false,\"extensions\":[\"gslides\"]},\"application/vnd.google-apps.spreadsheet\":{\"compressible\":false,\"extensions\":[\"gsheet\"]},\"application/vnd.google-earth.kml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"kml\"]},\"application/vnd.google-earth.kmz\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"kmz\"]},\"application/vnd.gov.sk.e-form+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.gov.sk.e-form+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.gov.sk.xmldatacontainer+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.grafeq\":{\"source\":\"iana\",\"extensions\":[\"gqf\",\"gqs\"]},\"application/vnd.gridmp\":{\"source\":\"iana\"},\"application/vnd.groove-account\":{\"source\":\"iana\",\"extensions\":[\"gac\"]},\"application/vnd.groove-help\":{\"source\":\"iana\",\"extensions\":[\"ghf\"]},\"application/vnd.groove-identity-message\":{\"source\":\"iana\",\"extensions\":[\"gim\"]},\"application/vnd.groove-injector\":{\"source\":\"iana\",\"extensions\":[\"grv\"]},\"application/vnd.groove-tool-message\":{\"source\":\"iana\",\"extensions\":[\"gtm\"]},\"application/vnd.groove-tool-template\":{\"source\":\"iana\",\"extensions\":[\"tpl\"]},\"application/vnd.groove-vcard\":{\"source\":\"iana\",\"extensions\":[\"vcg\"]},\"application/vnd.hal+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hal+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"hal\"]},\"application/vnd.handheld-entertainment+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"zmm\"]},\"application/vnd.hbci\":{\"source\":\"iana\",\"extensions\":[\"hbci\"]},\"application/vnd.hc+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hcl-bireports\":{\"source\":\"iana\"},\"application/vnd.hdt\":{\"source\":\"iana\"},\"application/vnd.heroku+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hhe.lesson-player\":{\"source\":\"iana\",\"extensions\":[\"les\"]},\"application/vnd.hp-hpgl\":{\"source\":\"iana\",\"extensions\":[\"hpgl\"]},\"application/vnd.hp-hpid\":{\"source\":\"iana\",\"extensions\":[\"hpid\"]},\"application/vnd.hp-hps\":{\"source\":\"iana\",\"extensions\":[\"hps\"]},\"application/vnd.hp-jlyt\":{\"source\":\"iana\",\"extensions\":[\"jlt\"]},\"application/vnd.hp-pcl\":{\"source\":\"iana\",\"extensions\":[\"pcl\"]},\"application/vnd.hp-pclxl\":{\"source\":\"iana\",\"extensions\":[\"pclxl\"]},\"application/vnd.httphone\":{\"source\":\"iana\"},\"application/vnd.hydrostatix.sof-data\":{\"source\":\"iana\",\"extensions\":[\"sfd-hdstx\"]},\"application/vnd.hyper+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hyper-item+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hyperdrive+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hzn-3d-crossword\":{\"source\":\"iana\"},\"application/vnd.ibm.afplinedata\":{\"source\":\"iana\"},\"application/vnd.ibm.electronic-media\":{\"source\":\"iana\"},\"application/vnd.ibm.minipay\":{\"source\":\"iana\",\"extensions\":[\"mpy\"]},\"application/vnd.ibm.modcap\":{\"source\":\"iana\",\"extensions\":[\"afp\",\"listafp\",\"list3820\"]},\"application/vnd.ibm.rights-management\":{\"source\":\"iana\",\"extensions\":[\"irm\"]},\"application/vnd.ibm.secure-container\":{\"source\":\"iana\",\"extensions\":[\"sc\"]},\"application/vnd.iccprofile\":{\"source\":\"iana\",\"extensions\":[\"icc\",\"icm\"]},\"application/vnd.ieee.1905\":{\"source\":\"iana\"},\"application/vnd.igloader\":{\"source\":\"iana\",\"extensions\":[\"igl\"]},\"application/vnd.imagemeter.folder+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.imagemeter.image+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.immervision-ivp\":{\"source\":\"iana\",\"extensions\":[\"ivp\"]},\"application/vnd.immervision-ivu\":{\"source\":\"iana\",\"extensions\":[\"ivu\"]},\"application/vnd.ims.imsccv1p1\":{\"source\":\"iana\"},\"application/vnd.ims.imsccv1p2\":{\"source\":\"iana\"},\"application/vnd.ims.imsccv1p3\":{\"source\":\"iana\"},\"application/vnd.ims.lis.v2.result+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ims.lti.v2.toolconsumerprofile+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ims.lti.v2.toolproxy+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ims.lti.v2.toolproxy.id+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ims.lti.v2.toolsettings+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ims.lti.v2.toolsettings.simple+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.informedcontrol.rms+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.informix-visionary\":{\"source\":\"iana\"},\"application/vnd.infotech.project\":{\"source\":\"iana\"},\"application/vnd.infotech.project+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.innopath.wamp.notification\":{\"source\":\"iana\"},\"application/vnd.insors.igm\":{\"source\":\"iana\",\"extensions\":[\"igm\"]},\"application/vnd.intercon.formnet\":{\"source\":\"iana\",\"extensions\":[\"xpw\",\"xpx\"]},\"application/vnd.intergeo\":{\"source\":\"iana\",\"extensions\":[\"i2g\"]},\"application/vnd.intertrust.digibox\":{\"source\":\"iana\"},\"application/vnd.intertrust.nncp\":{\"source\":\"iana\"},\"application/vnd.intu.qbo\":{\"source\":\"iana\",\"extensions\":[\"qbo\"]},\"application/vnd.intu.qfx\":{\"source\":\"iana\",\"extensions\":[\"qfx\"]},\"application/vnd.iptc.g2.catalogitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.conceptitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.knowledgeitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.newsitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.newsmessage+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.packageitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.planningitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ipunplugged.rcprofile\":{\"source\":\"iana\",\"extensions\":[\"rcprofile\"]},\"application/vnd.irepository.package+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"irp\"]},\"application/vnd.is-xpr\":{\"source\":\"iana\",\"extensions\":[\"xpr\"]},\"application/vnd.isac.fcs\":{\"source\":\"iana\",\"extensions\":[\"fcs\"]},\"application/vnd.iso11783-10+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.jam\":{\"source\":\"iana\",\"extensions\":[\"jam\"]},\"application/vnd.japannet-directory-service\":{\"source\":\"iana\"},\"application/vnd.japannet-jpnstore-wakeup\":{\"source\":\"iana\"},\"application/vnd.japannet-payment-wakeup\":{\"source\":\"iana\"},\"application/vnd.japannet-registration\":{\"source\":\"iana\"},\"application/vnd.japannet-registration-wakeup\":{\"source\":\"iana\"},\"application/vnd.japannet-setstore-wakeup\":{\"source\":\"iana\"},\"application/vnd.japannet-verification\":{\"source\":\"iana\"},\"application/vnd.japannet-verification-wakeup\":{\"source\":\"iana\"},\"application/vnd.jcp.javame.midlet-rms\":{\"source\":\"iana\",\"extensions\":[\"rms\"]},\"application/vnd.jisp\":{\"source\":\"iana\",\"extensions\":[\"jisp\"]},\"application/vnd.joost.joda-archive\":{\"source\":\"iana\",\"extensions\":[\"joda\"]},\"application/vnd.jsk.isdn-ngn\":{\"source\":\"iana\"},\"application/vnd.kahootz\":{\"source\":\"iana\",\"extensions\":[\"ktz\",\"ktr\"]},\"application/vnd.kde.karbon\":{\"source\":\"iana\",\"extensions\":[\"karbon\"]},\"application/vnd.kde.kchart\":{\"source\":\"iana\",\"extensions\":[\"chrt\"]},\"application/vnd.kde.kformula\":{\"source\":\"iana\",\"extensions\":[\"kfo\"]},\"application/vnd.kde.kivio\":{\"source\":\"iana\",\"extensions\":[\"flw\"]},\"application/vnd.kde.kontour\":{\"source\":\"iana\",\"extensions\":[\"kon\"]},\"application/vnd.kde.kpresenter\":{\"source\":\"iana\",\"extensions\":[\"kpr\",\"kpt\"]},\"application/vnd.kde.kspread\":{\"source\":\"iana\",\"extensions\":[\"ksp\"]},\"application/vnd.kde.kword\":{\"source\":\"iana\",\"extensions\":[\"kwd\",\"kwt\"]},\"application/vnd.kenameaapp\":{\"source\":\"iana\",\"extensions\":[\"htke\"]},\"application/vnd.kidspiration\":{\"source\":\"iana\",\"extensions\":[\"kia\"]},\"application/vnd.kinar\":{\"source\":\"iana\",\"extensions\":[\"kne\",\"knp\"]},\"application/vnd.koan\":{\"source\":\"iana\",\"extensions\":[\"skp\",\"skd\",\"skt\",\"skm\"]},\"application/vnd.kodak-descriptor\":{\"source\":\"iana\",\"extensions\":[\"sse\"]},\"application/vnd.las\":{\"source\":\"iana\"},\"application/vnd.las.las+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.las.las+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"lasxml\"]},\"application/vnd.laszip\":{\"source\":\"iana\"},\"application/vnd.leap+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.liberty-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.llamagraphics.life-balance.desktop\":{\"source\":\"iana\",\"extensions\":[\"lbd\"]},\"application/vnd.llamagraphics.life-balance.exchange+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"lbe\"]},\"application/vnd.logipipe.circuit+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.loom\":{\"source\":\"iana\"},\"application/vnd.lotus-1-2-3\":{\"source\":\"iana\",\"extensions\":[\"123\"]},\"application/vnd.lotus-approach\":{\"source\":\"iana\",\"extensions\":[\"apr\"]},\"application/vnd.lotus-freelance\":{\"source\":\"iana\",\"extensions\":[\"pre\"]},\"application/vnd.lotus-notes\":{\"source\":\"iana\",\"extensions\":[\"nsf\"]},\"application/vnd.lotus-organizer\":{\"source\":\"iana\",\"extensions\":[\"org\"]},\"application/vnd.lotus-screencam\":{\"source\":\"iana\",\"extensions\":[\"scm\"]},\"application/vnd.lotus-wordpro\":{\"source\":\"iana\",\"extensions\":[\"lwp\"]},\"application/vnd.macports.portpkg\":{\"source\":\"iana\",\"extensions\":[\"portpkg\"]},\"application/vnd.mapbox-vector-tile\":{\"source\":\"iana\"},\"application/vnd.marlin.drm.actiontoken+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.marlin.drm.conftoken+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.marlin.drm.license+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.marlin.drm.mdcf\":{\"source\":\"iana\"},\"application/vnd.mason+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.maxmind.maxmind-db\":{\"source\":\"iana\"},\"application/vnd.mcd\":{\"source\":\"iana\",\"extensions\":[\"mcd\"]},\"application/vnd.medcalcdata\":{\"source\":\"iana\",\"extensions\":[\"mc1\"]},\"application/vnd.mediastation.cdkey\":{\"source\":\"iana\",\"extensions\":[\"cdkey\"]},\"application/vnd.meridian-slingshot\":{\"source\":\"iana\"},\"application/vnd.mfer\":{\"source\":\"iana\",\"extensions\":[\"mwf\"]},\"application/vnd.mfmp\":{\"source\":\"iana\",\"extensions\":[\"mfm\"]},\"application/vnd.micro+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.micrografx.flo\":{\"source\":\"iana\",\"extensions\":[\"flo\"]},\"application/vnd.micrografx.igx\":{\"source\":\"iana\",\"extensions\":[\"igx\"]},\"application/vnd.microsoft.portable-executable\":{\"source\":\"iana\"},\"application/vnd.microsoft.windows.thumbnail-cache\":{\"source\":\"iana\"},\"application/vnd.miele+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.mif\":{\"source\":\"iana\",\"extensions\":[\"mif\"]},\"application/vnd.minisoft-hp3000-save\":{\"source\":\"iana\"},\"application/vnd.mitsubishi.misty-guard.trustweb\":{\"source\":\"iana\"},\"application/vnd.mobius.daf\":{\"source\":\"iana\",\"extensions\":[\"daf\"]},\"application/vnd.mobius.dis\":{\"source\":\"iana\",\"extensions\":[\"dis\"]},\"application/vnd.mobius.mbk\":{\"source\":\"iana\",\"extensions\":[\"mbk\"]},\"application/vnd.mobius.mqy\":{\"source\":\"iana\",\"extensions\":[\"mqy\"]},\"application/vnd.mobius.msl\":{\"source\":\"iana\",\"extensions\":[\"msl\"]},\"application/vnd.mobius.plc\":{\"source\":\"iana\",\"extensions\":[\"plc\"]},\"application/vnd.mobius.txf\":{\"source\":\"iana\",\"extensions\":[\"txf\"]},\"application/vnd.mophun.application\":{\"source\":\"iana\",\"extensions\":[\"mpn\"]},\"application/vnd.mophun.certificate\":{\"source\":\"iana\",\"extensions\":[\"mpc\"]},\"application/vnd.motorola.flexsuite\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.adsi\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.fis\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.gotap\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.kmr\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.ttc\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.wem\":{\"source\":\"iana\"},\"application/vnd.motorola.iprm\":{\"source\":\"iana\"},\"application/vnd.mozilla.xul+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xul\"]},\"application/vnd.ms-3mfdocument\":{\"source\":\"iana\"},\"application/vnd.ms-artgalry\":{\"source\":\"iana\",\"extensions\":[\"cil\"]},\"application/vnd.ms-asf\":{\"source\":\"iana\"},\"application/vnd.ms-cab-compressed\":{\"source\":\"iana\",\"extensions\":[\"cab\"]},\"application/vnd.ms-color.iccprofile\":{\"source\":\"apache\"},\"application/vnd.ms-excel\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"xls\",\"xlm\",\"xla\",\"xlc\",\"xlt\",\"xlw\"]},\"application/vnd.ms-excel.addin.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"xlam\"]},\"application/vnd.ms-excel.sheet.binary.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"xlsb\"]},\"application/vnd.ms-excel.sheet.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"xlsm\"]},\"application/vnd.ms-excel.template.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"xltm\"]},\"application/vnd.ms-fontobject\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"eot\"]},\"application/vnd.ms-htmlhelp\":{\"source\":\"iana\",\"extensions\":[\"chm\"]},\"application/vnd.ms-ims\":{\"source\":\"iana\",\"extensions\":[\"ims\"]},\"application/vnd.ms-lrm\":{\"source\":\"iana\",\"extensions\":[\"lrm\"]},\"application/vnd.ms-office.activex+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ms-officetheme\":{\"source\":\"iana\",\"extensions\":[\"thmx\"]},\"application/vnd.ms-opentype\":{\"source\":\"apache\",\"compressible\":true},\"application/vnd.ms-outlook\":{\"compressible\":false,\"extensions\":[\"msg\"]},\"application/vnd.ms-package.obfuscated-opentype\":{\"source\":\"apache\"},\"application/vnd.ms-pki.seccat\":{\"source\":\"apache\",\"extensions\":[\"cat\"]},\"application/vnd.ms-pki.stl\":{\"source\":\"apache\",\"extensions\":[\"stl\"]},\"application/vnd.ms-playready.initiator+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ms-powerpoint\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"ppt\",\"pps\",\"pot\"]},\"application/vnd.ms-powerpoint.addin.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"ppam\"]},\"application/vnd.ms-powerpoint.presentation.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"pptm\"]},\"application/vnd.ms-powerpoint.slide.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"sldm\"]},\"application/vnd.ms-powerpoint.slideshow.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"ppsm\"]},\"application/vnd.ms-powerpoint.template.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"potm\"]},\"application/vnd.ms-printdevicecapabilities+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ms-printing.printticket+xml\":{\"source\":\"apache\",\"compressible\":true},\"application/vnd.ms-printschematicket+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ms-project\":{\"source\":\"iana\",\"extensions\":[\"mpp\",\"mpt\"]},\"application/vnd.ms-tnef\":{\"source\":\"iana\"},\"application/vnd.ms-windows.devicepairing\":{\"source\":\"iana\"},\"application/vnd.ms-windows.nwprinting.oob\":{\"source\":\"iana\"},\"application/vnd.ms-windows.printerpairing\":{\"source\":\"iana\"},\"application/vnd.ms-windows.wsd.oob\":{\"source\":\"iana\"},\"application/vnd.ms-wmdrm.lic-chlg-req\":{\"source\":\"iana\"},\"application/vnd.ms-wmdrm.lic-resp\":{\"source\":\"iana\"},\"application/vnd.ms-wmdrm.meter-chlg-req\":{\"source\":\"iana\"},\"application/vnd.ms-wmdrm.meter-resp\":{\"source\":\"iana\"},\"application/vnd.ms-word.document.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"docm\"]},\"application/vnd.ms-word.template.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"dotm\"]},\"application/vnd.ms-works\":{\"source\":\"iana\",\"extensions\":[\"wps\",\"wks\",\"wcm\",\"wdb\"]},\"application/vnd.ms-wpl\":{\"source\":\"iana\",\"extensions\":[\"wpl\"]},\"application/vnd.ms-xpsdocument\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"xps\"]},\"application/vnd.msa-disk-image\":{\"source\":\"iana\"},\"application/vnd.mseq\":{\"source\":\"iana\",\"extensions\":[\"mseq\"]},\"application/vnd.msign\":{\"source\":\"iana\"},\"application/vnd.multiad.creator\":{\"source\":\"iana\"},\"application/vnd.multiad.creator.cif\":{\"source\":\"iana\"},\"application/vnd.music-niff\":{\"source\":\"iana\"},\"application/vnd.musician\":{\"source\":\"iana\",\"extensions\":[\"mus\"]},\"application/vnd.muvee.style\":{\"source\":\"iana\",\"extensions\":[\"msty\"]},\"application/vnd.mynfc\":{\"source\":\"iana\",\"extensions\":[\"taglet\"]},\"application/vnd.ncd.control\":{\"source\":\"iana\"},\"application/vnd.ncd.reference\":{\"source\":\"iana\"},\"application/vnd.nearst.inv+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nervana\":{\"source\":\"iana\"},\"application/vnd.netfpx\":{\"source\":\"iana\"},\"application/vnd.neurolanguage.nlu\":{\"source\":\"iana\",\"extensions\":[\"nlu\"]},\"application/vnd.nimn\":{\"source\":\"iana\"},\"application/vnd.nintendo.nitro.rom\":{\"source\":\"iana\"},\"application/vnd.nintendo.snes.rom\":{\"source\":\"iana\"},\"application/vnd.nitf\":{\"source\":\"iana\",\"extensions\":[\"ntf\",\"nitf\"]},\"application/vnd.noblenet-directory\":{\"source\":\"iana\",\"extensions\":[\"nnd\"]},\"application/vnd.noblenet-sealer\":{\"source\":\"iana\",\"extensions\":[\"nns\"]},\"application/vnd.noblenet-web\":{\"source\":\"iana\",\"extensions\":[\"nnw\"]},\"application/vnd.nokia.catalogs\":{\"source\":\"iana\"},\"application/vnd.nokia.conml+wbxml\":{\"source\":\"iana\"},\"application/vnd.nokia.conml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nokia.iptv.config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nokia.isds-radio-presets\":{\"source\":\"iana\"},\"application/vnd.nokia.landmark+wbxml\":{\"source\":\"iana\"},\"application/vnd.nokia.landmark+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nokia.landmarkcollection+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nokia.n-gage.ac+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ac\"]},\"application/vnd.nokia.n-gage.data\":{\"source\":\"iana\",\"extensions\":[\"ngdat\"]},\"application/vnd.nokia.n-gage.symbian.install\":{\"source\":\"iana\",\"extensions\":[\"n-gage\"]},\"application/vnd.nokia.ncd\":{\"source\":\"iana\"},\"application/vnd.nokia.pcd+wbxml\":{\"source\":\"iana\"},\"application/vnd.nokia.pcd+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nokia.radio-preset\":{\"source\":\"iana\",\"extensions\":[\"rpst\"]},\"application/vnd.nokia.radio-presets\":{\"source\":\"iana\",\"extensions\":[\"rpss\"]},\"application/vnd.novadigm.edm\":{\"source\":\"iana\",\"extensions\":[\"edm\"]},\"application/vnd.novadigm.edx\":{\"source\":\"iana\",\"extensions\":[\"edx\"]},\"application/vnd.novadigm.ext\":{\"source\":\"iana\",\"extensions\":[\"ext\"]},\"application/vnd.ntt-local.content-share\":{\"source\":\"iana\"},\"application/vnd.ntt-local.file-transfer\":{\"source\":\"iana\"},\"application/vnd.ntt-local.ogw_remote-access\":{\"source\":\"iana\"},\"application/vnd.ntt-local.sip-ta_remote\":{\"source\":\"iana\"},\"application/vnd.ntt-local.sip-ta_tcp_stream\":{\"source\":\"iana\"},\"application/vnd.oasis.opendocument.chart\":{\"source\":\"iana\",\"extensions\":[\"odc\"]},\"application/vnd.oasis.opendocument.chart-template\":{\"source\":\"iana\",\"extensions\":[\"otc\"]},\"application/vnd.oasis.opendocument.database\":{\"source\":\"iana\",\"extensions\":[\"odb\"]},\"application/vnd.oasis.opendocument.formula\":{\"source\":\"iana\",\"extensions\":[\"odf\"]},\"application/vnd.oasis.opendocument.formula-template\":{\"source\":\"iana\",\"extensions\":[\"odft\"]},\"application/vnd.oasis.opendocument.graphics\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"odg\"]},\"application/vnd.oasis.opendocument.graphics-template\":{\"source\":\"iana\",\"extensions\":[\"otg\"]},\"application/vnd.oasis.opendocument.image\":{\"source\":\"iana\",\"extensions\":[\"odi\"]},\"application/vnd.oasis.opendocument.image-template\":{\"source\":\"iana\",\"extensions\":[\"oti\"]},\"application/vnd.oasis.opendocument.presentation\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"odp\"]},\"application/vnd.oasis.opendocument.presentation-template\":{\"source\":\"iana\",\"extensions\":[\"otp\"]},\"application/vnd.oasis.opendocument.spreadsheet\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"ods\"]},\"application/vnd.oasis.opendocument.spreadsheet-template\":{\"source\":\"iana\",\"extensions\":[\"ots\"]},\"application/vnd.oasis.opendocument.text\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"odt\"]},\"application/vnd.oasis.opendocument.text-master\":{\"source\":\"iana\",\"extensions\":[\"odm\"]},\"application/vnd.oasis.opendocument.text-template\":{\"source\":\"iana\",\"extensions\":[\"ott\"]},\"application/vnd.oasis.opendocument.text-web\":{\"source\":\"iana\",\"extensions\":[\"oth\"]},\"application/vnd.obn\":{\"source\":\"iana\"},\"application/vnd.ocf+cbor\":{\"source\":\"iana\"},\"application/vnd.oci.image.manifest.v1+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oftn.l10n+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.contentaccessdownload+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.contentaccessstreaming+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.cspg-hexbinary\":{\"source\":\"iana\"},\"application/vnd.oipf.dae.svg+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.dae.xhtml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.mippvcontrolmessage+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.pae.gem\":{\"source\":\"iana\"},\"application/vnd.oipf.spdiscovery+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.spdlist+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.ueprofile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.userprofile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.olpc-sugar\":{\"source\":\"iana\",\"extensions\":[\"xo\"]},\"application/vnd.oma-scws-config\":{\"source\":\"iana\"},\"application/vnd.oma-scws-http-request\":{\"source\":\"iana\"},\"application/vnd.oma-scws-http-response\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.associated-procedure-parameter+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.drm-trigger+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.imd+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.ltkm\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.notification+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.provisioningtrigger\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.sgboot\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.sgdd+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.sgdu\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.simple-symbol-container\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.smartcard-trigger+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.sprov+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.stkm\":{\"source\":\"iana\"},\"application/vnd.oma.cab-address-book+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.cab-feature-handler+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.cab-pcc+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.cab-subs-invite+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.cab-user-prefs+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.dcd\":{\"source\":\"iana\"},\"application/vnd.oma.dcdc\":{\"source\":\"iana\"},\"application/vnd.oma.dd2+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"dd2\"]},\"application/vnd.oma.drm.risd+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.group-usage-list+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.lwm2m+cbor\":{\"source\":\"iana\"},\"application/vnd.oma.lwm2m+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.lwm2m+tlv\":{\"source\":\"iana\"},\"application/vnd.oma.pal+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.poc.detailed-progress-report+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.poc.final-report+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.poc.groups+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.poc.invocation-descriptor+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.poc.optimized-progress-report+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.push\":{\"source\":\"iana\"},\"application/vnd.oma.scidm.messages+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.xcap-directory+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.omads-email+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/vnd.omads-file+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/vnd.omads-folder+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/vnd.omaloc-supl-init\":{\"source\":\"iana\"},\"application/vnd.onepager\":{\"source\":\"iana\"},\"application/vnd.onepagertamp\":{\"source\":\"iana\"},\"application/vnd.onepagertamx\":{\"source\":\"iana\"},\"application/vnd.onepagertat\":{\"source\":\"iana\"},\"application/vnd.onepagertatp\":{\"source\":\"iana\"},\"application/vnd.onepagertatx\":{\"source\":\"iana\"},\"application/vnd.openblox.game+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"obgx\"]},\"application/vnd.openblox.game-binary\":{\"source\":\"iana\"},\"application/vnd.openeye.oeb\":{\"source\":\"iana\"},\"application/vnd.openofficeorg.extension\":{\"source\":\"apache\",\"extensions\":[\"oxt\"]},\"application/vnd.openstreetmap.data+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"osm\"]},\"application/vnd.openxmlformats-officedocument.custom-properties+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.customxmlproperties+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawing+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.chart+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.extended-properties+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.comments+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.presentation\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"pptx\"]},\"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.presprops+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.slide\":{\"source\":\"iana\",\"extensions\":[\"sldx\"]},\"application/vnd.openxmlformats-officedocument.presentationml.slide+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.slideshow\":{\"source\":\"iana\",\"extensions\":[\"ppsx\"]},\"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.tags+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.template\":{\"source\":\"iana\",\"extensions\":[\"potx\"]},\"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"xlsx\"]},\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.template\":{\"source\":\"iana\",\"extensions\":[\"xltx\"]},\"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.theme+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.themeoverride+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.vmldrawing\":{\"source\":\"iana\"},\"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.document\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"docx\"]},\"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.template\":{\"source\":\"iana\",\"extensions\":[\"dotx\"]},\"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-package.core-properties+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-package.relationships+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oracle.resource+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.orange.indata\":{\"source\":\"iana\"},\"application/vnd.osa.netdeploy\":{\"source\":\"iana\"},\"application/vnd.osgeo.mapguide.package\":{\"source\":\"iana\",\"extensions\":[\"mgp\"]},\"application/vnd.osgi.bundle\":{\"source\":\"iana\"},\"application/vnd.osgi.dp\":{\"source\":\"iana\",\"extensions\":[\"dp\"]},\"application/vnd.osgi.subsystem\":{\"source\":\"iana\",\"extensions\":[\"esa\"]},\"application/vnd.otps.ct-kip+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oxli.countgraph\":{\"source\":\"iana\"},\"application/vnd.pagerduty+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.palm\":{\"source\":\"iana\",\"extensions\":[\"pdb\",\"pqa\",\"oprc\"]},\"application/vnd.panoply\":{\"source\":\"iana\"},\"application/vnd.paos.xml\":{\"source\":\"iana\"},\"application/vnd.patentdive\":{\"source\":\"iana\"},\"application/vnd.patientecommsdoc\":{\"source\":\"iana\"},\"application/vnd.pawaafile\":{\"source\":\"iana\",\"extensions\":[\"paw\"]},\"application/vnd.pcos\":{\"source\":\"iana\"},\"application/vnd.pg.format\":{\"source\":\"iana\",\"extensions\":[\"str\"]},\"application/vnd.pg.osasli\":{\"source\":\"iana\",\"extensions\":[\"ei6\"]},\"application/vnd.piaccess.application-licence\":{\"source\":\"iana\"},\"application/vnd.picsel\":{\"source\":\"iana\",\"extensions\":[\"efif\"]},\"application/vnd.pmi.widget\":{\"source\":\"iana\",\"extensions\":[\"wg\"]},\"application/vnd.poc.group-advertisement+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.pocketlearn\":{\"source\":\"iana\",\"extensions\":[\"plf\"]},\"application/vnd.powerbuilder6\":{\"source\":\"iana\",\"extensions\":[\"pbd\"]},\"application/vnd.powerbuilder6-s\":{\"source\":\"iana\"},\"application/vnd.powerbuilder7\":{\"source\":\"iana\"},\"application/vnd.powerbuilder7-s\":{\"source\":\"iana\"},\"application/vnd.powerbuilder75\":{\"source\":\"iana\"},\"application/vnd.powerbuilder75-s\":{\"source\":\"iana\"},\"application/vnd.preminet\":{\"source\":\"iana\"},\"application/vnd.previewsystems.box\":{\"source\":\"iana\",\"extensions\":[\"box\"]},\"application/vnd.proteus.magazine\":{\"source\":\"iana\",\"extensions\":[\"mgz\"]},\"application/vnd.psfs\":{\"source\":\"iana\"},\"application/vnd.publishare-delta-tree\":{\"source\":\"iana\",\"extensions\":[\"qps\"]},\"application/vnd.pvi.ptid1\":{\"source\":\"iana\",\"extensions\":[\"ptid\"]},\"application/vnd.pwg-multiplexed\":{\"source\":\"iana\"},\"application/vnd.pwg-xhtml-print+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.qualcomm.brew-app-res\":{\"source\":\"iana\"},\"application/vnd.quarantainenet\":{\"source\":\"iana\"},\"application/vnd.quark.quarkxpress\":{\"source\":\"iana\",\"extensions\":[\"qxd\",\"qxt\",\"qwd\",\"qwt\",\"qxl\",\"qxb\"]},\"application/vnd.quobject-quoxdocument\":{\"source\":\"iana\"},\"application/vnd.radisys.moml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-audit+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-audit-conf+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-audit-conn+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-audit-dialog+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-audit-stream+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-conf+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-base+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-fax-detect+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-fax-sendrecv+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-group+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-speech+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-transform+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.rainstor.data\":{\"source\":\"iana\"},\"application/vnd.rapid\":{\"source\":\"iana\"},\"application/vnd.rar\":{\"source\":\"iana\",\"extensions\":[\"rar\"]},\"application/vnd.realvnc.bed\":{\"source\":\"iana\",\"extensions\":[\"bed\"]},\"application/vnd.recordare.musicxml\":{\"source\":\"iana\",\"extensions\":[\"mxl\"]},\"application/vnd.recordare.musicxml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"musicxml\"]},\"application/vnd.renlearn.rlprint\":{\"source\":\"iana\"},\"application/vnd.restful+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.rig.cryptonote\":{\"source\":\"iana\",\"extensions\":[\"cryptonote\"]},\"application/vnd.rim.cod\":{\"source\":\"apache\",\"extensions\":[\"cod\"]},\"application/vnd.rn-realmedia\":{\"source\":\"apache\",\"extensions\":[\"rm\"]},\"application/vnd.rn-realmedia-vbr\":{\"source\":\"apache\",\"extensions\":[\"rmvb\"]},\"application/vnd.route66.link66+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"link66\"]},\"application/vnd.rs-274x\":{\"source\":\"iana\"},\"application/vnd.ruckus.download\":{\"source\":\"iana\"},\"application/vnd.s3sms\":{\"source\":\"iana\"},\"application/vnd.sailingtracker.track\":{\"source\":\"iana\",\"extensions\":[\"st\"]},\"application/vnd.sar\":{\"source\":\"iana\"},\"application/vnd.sbm.cid\":{\"source\":\"iana\"},\"application/vnd.sbm.mid2\":{\"source\":\"iana\"},\"application/vnd.scribus\":{\"source\":\"iana\"},\"application/vnd.sealed.3df\":{\"source\":\"iana\"},\"application/vnd.sealed.csf\":{\"source\":\"iana\"},\"application/vnd.sealed.doc\":{\"source\":\"iana\"},\"application/vnd.sealed.eml\":{\"source\":\"iana\"},\"application/vnd.sealed.mht\":{\"source\":\"iana\"},\"application/vnd.sealed.net\":{\"source\":\"iana\"},\"application/vnd.sealed.ppt\":{\"source\":\"iana\"},\"application/vnd.sealed.tiff\":{\"source\":\"iana\"},\"application/vnd.sealed.xls\":{\"source\":\"iana\"},\"application/vnd.sealedmedia.softseal.html\":{\"source\":\"iana\"},\"application/vnd.sealedmedia.softseal.pdf\":{\"source\":\"iana\"},\"application/vnd.seemail\":{\"source\":\"iana\",\"extensions\":[\"see\"]},\"application/vnd.seis+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.sema\":{\"source\":\"iana\",\"extensions\":[\"sema\"]},\"application/vnd.semd\":{\"source\":\"iana\",\"extensions\":[\"semd\"]},\"application/vnd.semf\":{\"source\":\"iana\",\"extensions\":[\"semf\"]},\"application/vnd.shade-save-file\":{\"source\":\"iana\"},\"application/vnd.shana.informed.formdata\":{\"source\":\"iana\",\"extensions\":[\"ifm\"]},\"application/vnd.shana.informed.formtemplate\":{\"source\":\"iana\",\"extensions\":[\"itp\"]},\"application/vnd.shana.informed.interchange\":{\"source\":\"iana\",\"extensions\":[\"iif\"]},\"application/vnd.shana.informed.package\":{\"source\":\"iana\",\"extensions\":[\"ipk\"]},\"application/vnd.shootproof+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.shopkick+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.shp\":{\"source\":\"iana\"},\"application/vnd.shx\":{\"source\":\"iana\"},\"application/vnd.sigrok.session\":{\"source\":\"iana\"},\"application/vnd.simtech-mindmapper\":{\"source\":\"iana\",\"extensions\":[\"twd\",\"twds\"]},\"application/vnd.siren+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.smaf\":{\"source\":\"iana\",\"extensions\":[\"mmf\"]},\"application/vnd.smart.notebook\":{\"source\":\"iana\"},\"application/vnd.smart.teacher\":{\"source\":\"iana\",\"extensions\":[\"teacher\"]},\"application/vnd.snesdev-page-table\":{\"source\":\"iana\"},\"application/vnd.software602.filler.form+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"fo\"]},\"application/vnd.software602.filler.form-xml-zip\":{\"source\":\"iana\"},\"application/vnd.solent.sdkm+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"sdkm\",\"sdkd\"]},\"application/vnd.spotfire.dxp\":{\"source\":\"iana\",\"extensions\":[\"dxp\"]},\"application/vnd.spotfire.sfs\":{\"source\":\"iana\",\"extensions\":[\"sfs\"]},\"application/vnd.sqlite3\":{\"source\":\"iana\"},\"application/vnd.sss-cod\":{\"source\":\"iana\"},\"application/vnd.sss-dtf\":{\"source\":\"iana\"},\"application/vnd.sss-ntf\":{\"source\":\"iana\"},\"application/vnd.stardivision.calc\":{\"source\":\"apache\",\"extensions\":[\"sdc\"]},\"application/vnd.stardivision.draw\":{\"source\":\"apache\",\"extensions\":[\"sda\"]},\"application/vnd.stardivision.impress\":{\"source\":\"apache\",\"extensions\":[\"sdd\"]},\"application/vnd.stardivision.math\":{\"source\":\"apache\",\"extensions\":[\"smf\"]},\"application/vnd.stardivision.writer\":{\"source\":\"apache\",\"extensions\":[\"sdw\",\"vor\"]},\"application/vnd.stardivision.writer-global\":{\"source\":\"apache\",\"extensions\":[\"sgl\"]},\"application/vnd.stepmania.package\":{\"source\":\"iana\",\"extensions\":[\"smzip\"]},\"application/vnd.stepmania.stepchart\":{\"source\":\"iana\",\"extensions\":[\"sm\"]},\"application/vnd.street-stream\":{\"source\":\"iana\"},\"application/vnd.sun.wadl+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"wadl\"]},\"application/vnd.sun.xml.calc\":{\"source\":\"apache\",\"extensions\":[\"sxc\"]},\"application/vnd.sun.xml.calc.template\":{\"source\":\"apache\",\"extensions\":[\"stc\"]},\"application/vnd.sun.xml.draw\":{\"source\":\"apache\",\"extensions\":[\"sxd\"]},\"application/vnd.sun.xml.draw.template\":{\"source\":\"apache\",\"extensions\":[\"std\"]},\"application/vnd.sun.xml.impress\":{\"source\":\"apache\",\"extensions\":[\"sxi\"]},\"application/vnd.sun.xml.impress.template\":{\"source\":\"apache\",\"extensions\":[\"sti\"]},\"application/vnd.sun.xml.math\":{\"source\":\"apache\",\"extensions\":[\"sxm\"]},\"application/vnd.sun.xml.writer\":{\"source\":\"apache\",\"extensions\":[\"sxw\"]},\"application/vnd.sun.xml.writer.global\":{\"source\":\"apache\",\"extensions\":[\"sxg\"]},\"application/vnd.sun.xml.writer.template\":{\"source\":\"apache\",\"extensions\":[\"stw\"]},\"application/vnd.sus-calendar\":{\"source\":\"iana\",\"extensions\":[\"sus\",\"susp\"]},\"application/vnd.svd\":{\"source\":\"iana\",\"extensions\":[\"svd\"]},\"application/vnd.swiftview-ics\":{\"source\":\"iana\"},\"application/vnd.sycle+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.symbian.install\":{\"source\":\"apache\",\"extensions\":[\"sis\",\"sisx\"]},\"application/vnd.syncml+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"xsm\"]},\"application/vnd.syncml.dm+wbxml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"extensions\":[\"bdm\"]},\"application/vnd.syncml.dm+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"xdm\"]},\"application/vnd.syncml.dm.notification\":{\"source\":\"iana\"},\"application/vnd.syncml.dmddf+wbxml\":{\"source\":\"iana\"},\"application/vnd.syncml.dmddf+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"ddf\"]},\"application/vnd.syncml.dmtnds+wbxml\":{\"source\":\"iana\"},\"application/vnd.syncml.dmtnds+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/vnd.syncml.ds.notification\":{\"source\":\"iana\"},\"application/vnd.tableschema+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.tao.intent-module-archive\":{\"source\":\"iana\",\"extensions\":[\"tao\"]},\"application/vnd.tcpdump.pcap\":{\"source\":\"iana\",\"extensions\":[\"pcap\",\"cap\",\"dmp\"]},\"application/vnd.think-cell.ppttc+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.tmd.mediaflex.api+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.tml\":{\"source\":\"iana\"},\"application/vnd.tmobile-livetv\":{\"source\":\"iana\",\"extensions\":[\"tmo\"]},\"application/vnd.tri.onesource\":{\"source\":\"iana\"},\"application/vnd.trid.tpt\":{\"source\":\"iana\",\"extensions\":[\"tpt\"]},\"application/vnd.triscape.mxs\":{\"source\":\"iana\",\"extensions\":[\"mxs\"]},\"application/vnd.trueapp\":{\"source\":\"iana\",\"extensions\":[\"tra\"]},\"application/vnd.truedoc\":{\"source\":\"iana\"},\"application/vnd.ubisoft.webplayer\":{\"source\":\"iana\"},\"application/vnd.ufdl\":{\"source\":\"iana\",\"extensions\":[\"ufd\",\"ufdl\"]},\"application/vnd.uiq.theme\":{\"source\":\"iana\",\"extensions\":[\"utz\"]},\"application/vnd.umajin\":{\"source\":\"iana\",\"extensions\":[\"umj\"]},\"application/vnd.unity\":{\"source\":\"iana\",\"extensions\":[\"unityweb\"]},\"application/vnd.uoml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"uoml\"]},\"application/vnd.uplanet.alert\":{\"source\":\"iana\"},\"application/vnd.uplanet.alert-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.bearer-choice\":{\"source\":\"iana\"},\"application/vnd.uplanet.bearer-choice-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.cacheop\":{\"source\":\"iana\"},\"application/vnd.uplanet.cacheop-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.channel\":{\"source\":\"iana\"},\"application/vnd.uplanet.channel-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.list\":{\"source\":\"iana\"},\"application/vnd.uplanet.list-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.listcmd\":{\"source\":\"iana\"},\"application/vnd.uplanet.listcmd-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.signal\":{\"source\":\"iana\"},\"application/vnd.uri-map\":{\"source\":\"iana\"},\"application/vnd.valve.source.material\":{\"source\":\"iana\"},\"application/vnd.vcx\":{\"source\":\"iana\",\"extensions\":[\"vcx\"]},\"application/vnd.vd-study\":{\"source\":\"iana\"},\"application/vnd.vectorworks\":{\"source\":\"iana\"},\"application/vnd.vel+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.verimatrix.vcas\":{\"source\":\"iana\"},\"application/vnd.veryant.thin\":{\"source\":\"iana\"},\"application/vnd.ves.encrypted\":{\"source\":\"iana\"},\"application/vnd.vidsoft.vidconference\":{\"source\":\"iana\"},\"application/vnd.visio\":{\"source\":\"iana\",\"extensions\":[\"vsd\",\"vst\",\"vss\",\"vsw\"]},\"application/vnd.visionary\":{\"source\":\"iana\",\"extensions\":[\"vis\"]},\"application/vnd.vividence.scriptfile\":{\"source\":\"iana\"},\"application/vnd.vsf\":{\"source\":\"iana\",\"extensions\":[\"vsf\"]},\"application/vnd.wap.sic\":{\"source\":\"iana\"},\"application/vnd.wap.slc\":{\"source\":\"iana\"},\"application/vnd.wap.wbxml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"extensions\":[\"wbxml\"]},\"application/vnd.wap.wmlc\":{\"source\":\"iana\",\"extensions\":[\"wmlc\"]},\"application/vnd.wap.wmlscriptc\":{\"source\":\"iana\",\"extensions\":[\"wmlsc\"]},\"application/vnd.webturbo\":{\"source\":\"iana\",\"extensions\":[\"wtb\"]},\"application/vnd.wfa.dpp\":{\"source\":\"iana\"},\"application/vnd.wfa.p2p\":{\"source\":\"iana\"},\"application/vnd.wfa.wsc\":{\"source\":\"iana\"},\"application/vnd.windows.devicepairing\":{\"source\":\"iana\"},\"application/vnd.wmc\":{\"source\":\"iana\"},\"application/vnd.wmf.bootstrap\":{\"source\":\"iana\"},\"application/vnd.wolfram.mathematica\":{\"source\":\"iana\"},\"application/vnd.wolfram.mathematica.package\":{\"source\":\"iana\"},\"application/vnd.wolfram.player\":{\"source\":\"iana\",\"extensions\":[\"nbp\"]},\"application/vnd.wordperfect\":{\"source\":\"iana\",\"extensions\":[\"wpd\"]},\"application/vnd.wqd\":{\"source\":\"iana\",\"extensions\":[\"wqd\"]},\"application/vnd.wrq-hp3000-labelled\":{\"source\":\"iana\"},\"application/vnd.wt.stf\":{\"source\":\"iana\",\"extensions\":[\"stf\"]},\"application/vnd.wv.csp+wbxml\":{\"source\":\"iana\"},\"application/vnd.wv.csp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.wv.ssp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.xacml+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.xara\":{\"source\":\"iana\",\"extensions\":[\"xar\"]},\"application/vnd.xfdl\":{\"source\":\"iana\",\"extensions\":[\"xfdl\"]},\"application/vnd.xfdl.webform\":{\"source\":\"iana\"},\"application/vnd.xmi+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.xmpie.cpkg\":{\"source\":\"iana\"},\"application/vnd.xmpie.dpkg\":{\"source\":\"iana\"},\"application/vnd.xmpie.plan\":{\"source\":\"iana\"},\"application/vnd.xmpie.ppkg\":{\"source\":\"iana\"},\"application/vnd.xmpie.xlim\":{\"source\":\"iana\"},\"application/vnd.yamaha.hv-dic\":{\"source\":\"iana\",\"extensions\":[\"hvd\"]},\"application/vnd.yamaha.hv-script\":{\"source\":\"iana\",\"extensions\":[\"hvs\"]},\"application/vnd.yamaha.hv-voice\":{\"source\":\"iana\",\"extensions\":[\"hvp\"]},\"application/vnd.yamaha.openscoreformat\":{\"source\":\"iana\",\"extensions\":[\"osf\"]},\"application/vnd.yamaha.openscoreformat.osfpvg+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"osfpvg\"]},\"application/vnd.yamaha.remote-setup\":{\"source\":\"iana\"},\"application/vnd.yamaha.smaf-audio\":{\"source\":\"iana\",\"extensions\":[\"saf\"]},\"application/vnd.yamaha.smaf-phrase\":{\"source\":\"iana\",\"extensions\":[\"spf\"]},\"application/vnd.yamaha.through-ngn\":{\"source\":\"iana\"},\"application/vnd.yamaha.tunnel-udpencap\":{\"source\":\"iana\"},\"application/vnd.yaoweme\":{\"source\":\"iana\"},\"application/vnd.yellowriver-custom-menu\":{\"source\":\"iana\",\"extensions\":[\"cmp\"]},\"application/vnd.youtube.yt\":{\"source\":\"iana\"},\"application/vnd.zul\":{\"source\":\"iana\",\"extensions\":[\"zir\",\"zirz\"]},\"application/vnd.zzazz.deck+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"zaz\"]},\"application/voicexml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"vxml\"]},\"application/voucher-cms+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vq-rtcpxr\":{\"source\":\"iana\"},\"application/wasm\":{\"compressible\":true,\"extensions\":[\"wasm\"]},\"application/watcherinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/webpush-options+json\":{\"source\":\"iana\",\"compressible\":true},\"application/whoispp-query\":{\"source\":\"iana\"},\"application/whoispp-response\":{\"source\":\"iana\"},\"application/widget\":{\"source\":\"iana\",\"extensions\":[\"wgt\"]},\"application/winhlp\":{\"source\":\"apache\",\"extensions\":[\"hlp\"]},\"application/wita\":{\"source\":\"iana\"},\"application/wordperfect5.1\":{\"source\":\"iana\"},\"application/wsdl+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"wsdl\"]},\"application/wspolicy+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"wspolicy\"]},\"application/x-7z-compressed\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"7z\"]},\"application/x-abiword\":{\"source\":\"apache\",\"extensions\":[\"abw\"]},\"application/x-ace-compressed\":{\"source\":\"apache\",\"extensions\":[\"ace\"]},\"application/x-amf\":{\"source\":\"apache\"},\"application/x-apple-diskimage\":{\"source\":\"apache\",\"extensions\":[\"dmg\"]},\"application/x-arj\":{\"compressible\":false,\"extensions\":[\"arj\"]},\"application/x-authorware-bin\":{\"source\":\"apache\",\"extensions\":[\"aab\",\"x32\",\"u32\",\"vox\"]},\"application/x-authorware-map\":{\"source\":\"apache\",\"extensions\":[\"aam\"]},\"application/x-authorware-seg\":{\"source\":\"apache\",\"extensions\":[\"aas\"]},\"application/x-bcpio\":{\"source\":\"apache\",\"extensions\":[\"bcpio\"]},\"application/x-bdoc\":{\"compressible\":false,\"extensions\":[\"bdoc\"]},\"application/x-bittorrent\":{\"source\":\"apache\",\"extensions\":[\"torrent\"]},\"application/x-blorb\":{\"source\":\"apache\",\"extensions\":[\"blb\",\"blorb\"]},\"application/x-bzip\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"bz\"]},\"application/x-bzip2\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"bz2\",\"boz\"]},\"application/x-cbr\":{\"source\":\"apache\",\"extensions\":[\"cbr\",\"cba\",\"cbt\",\"cbz\",\"cb7\"]},\"application/x-cdlink\":{\"source\":\"apache\",\"extensions\":[\"vcd\"]},\"application/x-cfs-compressed\":{\"source\":\"apache\",\"extensions\":[\"cfs\"]},\"application/x-chat\":{\"source\":\"apache\",\"extensions\":[\"chat\"]},\"application/x-chess-pgn\":{\"source\":\"apache\",\"extensions\":[\"pgn\"]},\"application/x-chrome-extension\":{\"extensions\":[\"crx\"]},\"application/x-cocoa\":{\"source\":\"nginx\",\"extensions\":[\"cco\"]},\"application/x-compress\":{\"source\":\"apache\"},\"application/x-conference\":{\"source\":\"apache\",\"extensions\":[\"nsc\"]},\"application/x-cpio\":{\"source\":\"apache\",\"extensions\":[\"cpio\"]},\"application/x-csh\":{\"source\":\"apache\",\"extensions\":[\"csh\"]},\"application/x-deb\":{\"compressible\":false},\"application/x-debian-package\":{\"source\":\"apache\",\"extensions\":[\"deb\",\"udeb\"]},\"application/x-dgc-compressed\":{\"source\":\"apache\",\"extensions\":[\"dgc\"]},\"application/x-director\":{\"source\":\"apache\",\"extensions\":[\"dir\",\"dcr\",\"dxr\",\"cst\",\"cct\",\"cxt\",\"w3d\",\"fgd\",\"swa\"]},\"application/x-doom\":{\"source\":\"apache\",\"extensions\":[\"wad\"]},\"application/x-dtbncx+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"ncx\"]},\"application/x-dtbook+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"dtb\"]},\"application/x-dtbresource+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"res\"]},\"application/x-dvi\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"dvi\"]},\"application/x-envoy\":{\"source\":\"apache\",\"extensions\":[\"evy\"]},\"application/x-eva\":{\"source\":\"apache\",\"extensions\":[\"eva\"]},\"application/x-font-bdf\":{\"source\":\"apache\",\"extensions\":[\"bdf\"]},\"application/x-font-dos\":{\"source\":\"apache\"},\"application/x-font-framemaker\":{\"source\":\"apache\"},\"application/x-font-ghostscript\":{\"source\":\"apache\",\"extensions\":[\"gsf\"]},\"application/x-font-libgrx\":{\"source\":\"apache\"},\"application/x-font-linux-psf\":{\"source\":\"apache\",\"extensions\":[\"psf\"]},\"application/x-font-pcf\":{\"source\":\"apache\",\"extensions\":[\"pcf\"]},\"application/x-font-snf\":{\"source\":\"apache\",\"extensions\":[\"snf\"]},\"application/x-font-speedo\":{\"source\":\"apache\"},\"application/x-font-sunos-news\":{\"source\":\"apache\"},\"application/x-font-type1\":{\"source\":\"apache\",\"extensions\":[\"pfa\",\"pfb\",\"pfm\",\"afm\"]},\"application/x-font-vfont\":{\"source\":\"apache\"},\"application/x-freearc\":{\"source\":\"apache\",\"extensions\":[\"arc\"]},\"application/x-futuresplash\":{\"source\":\"apache\",\"extensions\":[\"spl\"]},\"application/x-gca-compressed\":{\"source\":\"apache\",\"extensions\":[\"gca\"]},\"application/x-glulx\":{\"source\":\"apache\",\"extensions\":[\"ulx\"]},\"application/x-gnumeric\":{\"source\":\"apache\",\"extensions\":[\"gnumeric\"]},\"application/x-gramps-xml\":{\"source\":\"apache\",\"extensions\":[\"gramps\"]},\"application/x-gtar\":{\"source\":\"apache\",\"extensions\":[\"gtar\"]},\"application/x-gzip\":{\"source\":\"apache\"},\"application/x-hdf\":{\"source\":\"apache\",\"extensions\":[\"hdf\"]},\"application/x-httpd-php\":{\"compressible\":true,\"extensions\":[\"php\"]},\"application/x-install-instructions\":{\"source\":\"apache\",\"extensions\":[\"install\"]},\"application/x-iso9660-image\":{\"source\":\"apache\",\"extensions\":[\"iso\"]},\"application/x-java-archive-diff\":{\"source\":\"nginx\",\"extensions\":[\"jardiff\"]},\"application/x-java-jnlp-file\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"jnlp\"]},\"application/x-javascript\":{\"compressible\":true},\"application/x-keepass2\":{\"extensions\":[\"kdbx\"]},\"application/x-latex\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"latex\"]},\"application/x-lua-bytecode\":{\"extensions\":[\"luac\"]},\"application/x-lzh-compressed\":{\"source\":\"apache\",\"extensions\":[\"lzh\",\"lha\"]},\"application/x-makeself\":{\"source\":\"nginx\",\"extensions\":[\"run\"]},\"application/x-mie\":{\"source\":\"apache\",\"extensions\":[\"mie\"]},\"application/x-mobipocket-ebook\":{\"source\":\"apache\",\"extensions\":[\"prc\",\"mobi\"]},\"application/x-mpegurl\":{\"compressible\":false},\"application/x-ms-application\":{\"source\":\"apache\",\"extensions\":[\"application\"]},\"application/x-ms-shortcut\":{\"source\":\"apache\",\"extensions\":[\"lnk\"]},\"application/x-ms-wmd\":{\"source\":\"apache\",\"extensions\":[\"wmd\"]},\"application/x-ms-wmz\":{\"source\":\"apache\",\"extensions\":[\"wmz\"]},\"application/x-ms-xbap\":{\"source\":\"apache\",\"extensions\":[\"xbap\"]},\"application/x-msaccess\":{\"source\":\"apache\",\"extensions\":[\"mdb\"]},\"application/x-msbinder\":{\"source\":\"apache\",\"extensions\":[\"obd\"]},\"application/x-mscardfile\":{\"source\":\"apache\",\"extensions\":[\"crd\"]},\"application/x-msclip\":{\"source\":\"apache\",\"extensions\":[\"clp\"]},\"application/x-msdos-program\":{\"extensions\":[\"exe\"]},\"application/x-msdownload\":{\"source\":\"apache\",\"extensions\":[\"exe\",\"dll\",\"com\",\"bat\",\"msi\"]},\"application/x-msmediaview\":{\"source\":\"apache\",\"extensions\":[\"mvb\",\"m13\",\"m14\"]},\"application/x-msmetafile\":{\"source\":\"apache\",\"extensions\":[\"wmf\",\"wmz\",\"emf\",\"emz\"]},\"application/x-msmoney\":{\"source\":\"apache\",\"extensions\":[\"mny\"]},\"application/x-mspublisher\":{\"source\":\"apache\",\"extensions\":[\"pub\"]},\"application/x-msschedule\":{\"source\":\"apache\",\"extensions\":[\"scd\"]},\"application/x-msterminal\":{\"source\":\"apache\",\"extensions\":[\"trm\"]},\"application/x-mswrite\":{\"source\":\"apache\",\"extensions\":[\"wri\"]},\"application/x-netcdf\":{\"source\":\"apache\",\"extensions\":[\"nc\",\"cdf\"]},\"application/x-ns-proxy-autoconfig\":{\"compressible\":true,\"extensions\":[\"pac\"]},\"application/x-nzb\":{\"source\":\"apache\",\"extensions\":[\"nzb\"]},\"application/x-perl\":{\"source\":\"nginx\",\"extensions\":[\"pl\",\"pm\"]},\"application/x-pilot\":{\"source\":\"nginx\",\"extensions\":[\"prc\",\"pdb\"]},\"application/x-pkcs12\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"p12\",\"pfx\"]},\"application/x-pkcs7-certificates\":{\"source\":\"apache\",\"extensions\":[\"p7b\",\"spc\"]},\"application/x-pkcs7-certreqresp\":{\"source\":\"apache\",\"extensions\":[\"p7r\"]},\"application/x-pki-message\":{\"source\":\"iana\"},\"application/x-rar-compressed\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"rar\"]},\"application/x-redhat-package-manager\":{\"source\":\"nginx\",\"extensions\":[\"rpm\"]},\"application/x-research-info-systems\":{\"source\":\"apache\",\"extensions\":[\"ris\"]},\"application/x-sea\":{\"source\":\"nginx\",\"extensions\":[\"sea\"]},\"application/x-sh\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"sh\"]},\"application/x-shar\":{\"source\":\"apache\",\"extensions\":[\"shar\"]},\"application/x-shockwave-flash\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"swf\"]},\"application/x-silverlight-app\":{\"source\":\"apache\",\"extensions\":[\"xap\"]},\"application/x-sql\":{\"source\":\"apache\",\"extensions\":[\"sql\"]},\"application/x-stuffit\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"sit\"]},\"application/x-stuffitx\":{\"source\":\"apache\",\"extensions\":[\"sitx\"]},\"application/x-subrip\":{\"source\":\"apache\",\"extensions\":[\"srt\"]},\"application/x-sv4cpio\":{\"source\":\"apache\",\"extensions\":[\"sv4cpio\"]},\"application/x-sv4crc\":{\"source\":\"apache\",\"extensions\":[\"sv4crc\"]},\"application/x-t3vm-image\":{\"source\":\"apache\",\"extensions\":[\"t3\"]},\"application/x-tads\":{\"source\":\"apache\",\"extensions\":[\"gam\"]},\"application/x-tar\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"tar\"]},\"application/x-tcl\":{\"source\":\"apache\",\"extensions\":[\"tcl\",\"tk\"]},\"application/x-tex\":{\"source\":\"apache\",\"extensions\":[\"tex\"]},\"application/x-tex-tfm\":{\"source\":\"apache\",\"extensions\":[\"tfm\"]},\"application/x-texinfo\":{\"source\":\"apache\",\"extensions\":[\"texinfo\",\"texi\"]},\"application/x-tgif\":{\"source\":\"apache\",\"extensions\":[\"obj\"]},\"application/x-ustar\":{\"source\":\"apache\",\"extensions\":[\"ustar\"]},\"application/x-virtualbox-hdd\":{\"compressible\":true,\"extensions\":[\"hdd\"]},\"application/x-virtualbox-ova\":{\"compressible\":true,\"extensions\":[\"ova\"]},\"application/x-virtualbox-ovf\":{\"compressible\":true,\"extensions\":[\"ovf\"]},\"application/x-virtualbox-vbox\":{\"compressible\":true,\"extensions\":[\"vbox\"]},\"application/x-virtualbox-vbox-extpack\":{\"compressible\":false,\"extensions\":[\"vbox-extpack\"]},\"application/x-virtualbox-vdi\":{\"compressible\":true,\"extensions\":[\"vdi\"]},\"application/x-virtualbox-vhd\":{\"compressible\":true,\"extensions\":[\"vhd\"]},\"application/x-virtualbox-vmdk\":{\"compressible\":true,\"extensions\":[\"vmdk\"]},\"application/x-wais-source\":{\"source\":\"apache\",\"extensions\":[\"src\"]},\"application/x-web-app-manifest+json\":{\"compressible\":true,\"extensions\":[\"webapp\"]},\"application/x-www-form-urlencoded\":{\"source\":\"iana\",\"compressible\":true},\"application/x-x509-ca-cert\":{\"source\":\"iana\",\"extensions\":[\"der\",\"crt\",\"pem\"]},\"application/x-x509-ca-ra-cert\":{\"source\":\"iana\"},\"application/x-x509-next-ca-cert\":{\"source\":\"iana\"},\"application/x-xfig\":{\"source\":\"apache\",\"extensions\":[\"fig\"]},\"application/x-xliff+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"xlf\"]},\"application/x-xpinstall\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"xpi\"]},\"application/x-xz\":{\"source\":\"apache\",\"extensions\":[\"xz\"]},\"application/x-zmachine\":{\"source\":\"apache\",\"extensions\":[\"z1\",\"z2\",\"z3\",\"z4\",\"z5\",\"z6\",\"z7\",\"z8\"]},\"application/x400-bp\":{\"source\":\"iana\"},\"application/xacml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xaml+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"xaml\"]},\"application/xcap-att+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xav\"]},\"application/xcap-caps+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xca\"]},\"application/xcap-diff+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xdf\"]},\"application/xcap-el+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xel\"]},\"application/xcap-error+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xer\"]},\"application/xcap-ns+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xns\"]},\"application/xcon-conference-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xcon-conference-info-diff+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xenc+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xenc\"]},\"application/xhtml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xhtml\",\"xht\"]},\"application/xhtml-voice+xml\":{\"source\":\"apache\",\"compressible\":true},\"application/xliff+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xlf\"]},\"application/xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xml\",\"xsl\",\"xsd\",\"rng\"]},\"application/xml-dtd\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"dtd\"]},\"application/xml-external-parsed-entity\":{\"source\":\"iana\"},\"application/xml-patch+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xmpp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xop+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xop\"]},\"application/xproc+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"xpl\"]},\"application/xslt+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xsl\",\"xslt\"]},\"application/xspf+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"xspf\"]},\"application/xv+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mxml\",\"xhvml\",\"xvml\",\"xvm\"]},\"application/yang\":{\"source\":\"iana\",\"extensions\":[\"yang\"]},\"application/yang-data+json\":{\"source\":\"iana\",\"compressible\":true},\"application/yang-data+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/yang-patch+json\":{\"source\":\"iana\",\"compressible\":true},\"application/yang-patch+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/yin+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"yin\"]},\"application/zip\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"zip\"]},\"application/zlib\":{\"source\":\"iana\"},\"application/zstd\":{\"source\":\"iana\"},\"audio/1d-interleaved-parityfec\":{\"source\":\"iana\"},\"audio/32kadpcm\":{\"source\":\"iana\"},\"audio/3gpp\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"3gpp\"]},\"audio/3gpp2\":{\"source\":\"iana\"},\"audio/aac\":{\"source\":\"iana\"},\"audio/ac3\":{\"source\":\"iana\"},\"audio/adpcm\":{\"source\":\"apache\",\"extensions\":[\"adp\"]},\"audio/amr\":{\"source\":\"iana\",\"extensions\":[\"amr\"]},\"audio/amr-wb\":{\"source\":\"iana\"},\"audio/amr-wb+\":{\"source\":\"iana\"},\"audio/aptx\":{\"source\":\"iana\"},\"audio/asc\":{\"source\":\"iana\"},\"audio/atrac-advanced-lossless\":{\"source\":\"iana\"},\"audio/atrac-x\":{\"source\":\"iana\"},\"audio/atrac3\":{\"source\":\"iana\"},\"audio/basic\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"au\",\"snd\"]},\"audio/bv16\":{\"source\":\"iana\"},\"audio/bv32\":{\"source\":\"iana\"},\"audio/clearmode\":{\"source\":\"iana\"},\"audio/cn\":{\"source\":\"iana\"},\"audio/dat12\":{\"source\":\"iana\"},\"audio/dls\":{\"source\":\"iana\"},\"audio/dsr-es201108\":{\"source\":\"iana\"},\"audio/dsr-es202050\":{\"source\":\"iana\"},\"audio/dsr-es202211\":{\"source\":\"iana\"},\"audio/dsr-es202212\":{\"source\":\"iana\"},\"audio/dv\":{\"source\":\"iana\"},\"audio/dvi4\":{\"source\":\"iana\"},\"audio/eac3\":{\"source\":\"iana\"},\"audio/encaprtp\":{\"source\":\"iana\"},\"audio/evrc\":{\"source\":\"iana\"},\"audio/evrc-qcp\":{\"source\":\"iana\"},\"audio/evrc0\":{\"source\":\"iana\"},\"audio/evrc1\":{\"source\":\"iana\"},\"audio/evrcb\":{\"source\":\"iana\"},\"audio/evrcb0\":{\"source\":\"iana\"},\"audio/evrcb1\":{\"source\":\"iana\"},\"audio/evrcnw\":{\"source\":\"iana\"},\"audio/evrcnw0\":{\"source\":\"iana\"},\"audio/evrcnw1\":{\"source\":\"iana\"},\"audio/evrcwb\":{\"source\":\"iana\"},\"audio/evrcwb0\":{\"source\":\"iana\"},\"audio/evrcwb1\":{\"source\":\"iana\"},\"audio/evs\":{\"source\":\"iana\"},\"audio/flexfec\":{\"source\":\"iana\"},\"audio/fwdred\":{\"source\":\"iana\"},\"audio/g711-0\":{\"source\":\"iana\"},\"audio/g719\":{\"source\":\"iana\"},\"audio/g722\":{\"source\":\"iana\"},\"audio/g7221\":{\"source\":\"iana\"},\"audio/g723\":{\"source\":\"iana\"},\"audio/g726-16\":{\"source\":\"iana\"},\"audio/g726-24\":{\"source\":\"iana\"},\"audio/g726-32\":{\"source\":\"iana\"},\"audio/g726-40\":{\"source\":\"iana\"},\"audio/g728\":{\"source\":\"iana\"},\"audio/g729\":{\"source\":\"iana\"},\"audio/g7291\":{\"source\":\"iana\"},\"audio/g729d\":{\"source\":\"iana\"},\"audio/g729e\":{\"source\":\"iana\"},\"audio/gsm\":{\"source\":\"iana\"},\"audio/gsm-efr\":{\"source\":\"iana\"},\"audio/gsm-hr-08\":{\"source\":\"iana\"},\"audio/ilbc\":{\"source\":\"iana\"},\"audio/ip-mr_v2.5\":{\"source\":\"iana\"},\"audio/isac\":{\"source\":\"apache\"},\"audio/l16\":{\"source\":\"iana\"},\"audio/l20\":{\"source\":\"iana\"},\"audio/l24\":{\"source\":\"iana\",\"compressible\":false},\"audio/l8\":{\"source\":\"iana\"},\"audio/lpc\":{\"source\":\"iana\"},\"audio/melp\":{\"source\":\"iana\"},\"audio/melp1200\":{\"source\":\"iana\"},\"audio/melp2400\":{\"source\":\"iana\"},\"audio/melp600\":{\"source\":\"iana\"},\"audio/mhas\":{\"source\":\"iana\"},\"audio/midi\":{\"source\":\"apache\",\"extensions\":[\"mid\",\"midi\",\"kar\",\"rmi\"]},\"audio/mobile-xmf\":{\"source\":\"iana\",\"extensions\":[\"mxmf\"]},\"audio/mp3\":{\"compressible\":false,\"extensions\":[\"mp3\"]},\"audio/mp4\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"m4a\",\"mp4a\"]},\"audio/mp4a-latm\":{\"source\":\"iana\"},\"audio/mpa\":{\"source\":\"iana\"},\"audio/mpa-robust\":{\"source\":\"iana\"},\"audio/mpeg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"mpga\",\"mp2\",\"mp2a\",\"mp3\",\"m2a\",\"m3a\"]},\"audio/mpeg4-generic\":{\"source\":\"iana\"},\"audio/musepack\":{\"source\":\"apache\"},\"audio/ogg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"oga\",\"ogg\",\"spx\",\"opus\"]},\"audio/opus\":{\"source\":\"iana\"},\"audio/parityfec\":{\"source\":\"iana\"},\"audio/pcma\":{\"source\":\"iana\"},\"audio/pcma-wb\":{\"source\":\"iana\"},\"audio/pcmu\":{\"source\":\"iana\"},\"audio/pcmu-wb\":{\"source\":\"iana\"},\"audio/prs.sid\":{\"source\":\"iana\"},\"audio/qcelp\":{\"source\":\"iana\"},\"audio/raptorfec\":{\"source\":\"iana\"},\"audio/red\":{\"source\":\"iana\"},\"audio/rtp-enc-aescm128\":{\"source\":\"iana\"},\"audio/rtp-midi\":{\"source\":\"iana\"},\"audio/rtploopback\":{\"source\":\"iana\"},\"audio/rtx\":{\"source\":\"iana\"},\"audio/s3m\":{\"source\":\"apache\",\"extensions\":[\"s3m\"]},\"audio/scip\":{\"source\":\"iana\"},\"audio/silk\":{\"source\":\"apache\",\"extensions\":[\"sil\"]},\"audio/smv\":{\"source\":\"iana\"},\"audio/smv-qcp\":{\"source\":\"iana\"},\"audio/smv0\":{\"source\":\"iana\"},\"audio/sofa\":{\"source\":\"iana\"},\"audio/sp-midi\":{\"source\":\"iana\"},\"audio/speex\":{\"source\":\"iana\"},\"audio/t140c\":{\"source\":\"iana\"},\"audio/t38\":{\"source\":\"iana\"},\"audio/telephone-event\":{\"source\":\"iana\"},\"audio/tetra_acelp\":{\"source\":\"iana\"},\"audio/tetra_acelp_bb\":{\"source\":\"iana\"},\"audio/tone\":{\"source\":\"iana\"},\"audio/tsvcis\":{\"source\":\"iana\"},\"audio/uemclip\":{\"source\":\"iana\"},\"audio/ulpfec\":{\"source\":\"iana\"},\"audio/usac\":{\"source\":\"iana\"},\"audio/vdvi\":{\"source\":\"iana\"},\"audio/vmr-wb\":{\"source\":\"iana\"},\"audio/vnd.3gpp.iufp\":{\"source\":\"iana\"},\"audio/vnd.4sb\":{\"source\":\"iana\"},\"audio/vnd.audiokoz\":{\"source\":\"iana\"},\"audio/vnd.celp\":{\"source\":\"iana\"},\"audio/vnd.cisco.nse\":{\"source\":\"iana\"},\"audio/vnd.cmles.radio-events\":{\"source\":\"iana\"},\"audio/vnd.cns.anp1\":{\"source\":\"iana\"},\"audio/vnd.cns.inf1\":{\"source\":\"iana\"},\"audio/vnd.dece.audio\":{\"source\":\"iana\",\"extensions\":[\"uva\",\"uvva\"]},\"audio/vnd.digital-winds\":{\"source\":\"iana\",\"extensions\":[\"eol\"]},\"audio/vnd.dlna.adts\":{\"source\":\"iana\"},\"audio/vnd.dolby.heaac.1\":{\"source\":\"iana\"},\"audio/vnd.dolby.heaac.2\":{\"source\":\"iana\"},\"audio/vnd.dolby.mlp\":{\"source\":\"iana\"},\"audio/vnd.dolby.mps\":{\"source\":\"iana\"},\"audio/vnd.dolby.pl2\":{\"source\":\"iana\"},\"audio/vnd.dolby.pl2x\":{\"source\":\"iana\"},\"audio/vnd.dolby.pl2z\":{\"source\":\"iana\"},\"audio/vnd.dolby.pulse.1\":{\"source\":\"iana\"},\"audio/vnd.dra\":{\"source\":\"iana\",\"extensions\":[\"dra\"]},\"audio/vnd.dts\":{\"source\":\"iana\",\"extensions\":[\"dts\"]},\"audio/vnd.dts.hd\":{\"source\":\"iana\",\"extensions\":[\"dtshd\"]},\"audio/vnd.dts.uhd\":{\"source\":\"iana\"},\"audio/vnd.dvb.file\":{\"source\":\"iana\"},\"audio/vnd.everad.plj\":{\"source\":\"iana\"},\"audio/vnd.hns.audio\":{\"source\":\"iana\"},\"audio/vnd.lucent.voice\":{\"source\":\"iana\",\"extensions\":[\"lvp\"]},\"audio/vnd.ms-playready.media.pya\":{\"source\":\"iana\",\"extensions\":[\"pya\"]},\"audio/vnd.nokia.mobile-xmf\":{\"source\":\"iana\"},\"audio/vnd.nortel.vbk\":{\"source\":\"iana\"},\"audio/vnd.nuera.ecelp4800\":{\"source\":\"iana\",\"extensions\":[\"ecelp4800\"]},\"audio/vnd.nuera.ecelp7470\":{\"source\":\"iana\",\"extensions\":[\"ecelp7470\"]},\"audio/vnd.nuera.ecelp9600\":{\"source\":\"iana\",\"extensions\":[\"ecelp9600\"]},\"audio/vnd.octel.sbc\":{\"source\":\"iana\"},\"audio/vnd.presonus.multitrack\":{\"source\":\"iana\"},\"audio/vnd.qcelp\":{\"source\":\"iana\"},\"audio/vnd.rhetorex.32kadpcm\":{\"source\":\"iana\"},\"audio/vnd.rip\":{\"source\":\"iana\",\"extensions\":[\"rip\"]},\"audio/vnd.rn-realaudio\":{\"compressible\":false},\"audio/vnd.sealedmedia.softseal.mpeg\":{\"source\":\"iana\"},\"audio/vnd.vmx.cvsd\":{\"source\":\"iana\"},\"audio/vnd.wave\":{\"compressible\":false},\"audio/vorbis\":{\"source\":\"iana\",\"compressible\":false},\"audio/vorbis-config\":{\"source\":\"iana\"},\"audio/wav\":{\"compressible\":false,\"extensions\":[\"wav\"]},\"audio/wave\":{\"compressible\":false,\"extensions\":[\"wav\"]},\"audio/webm\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"weba\"]},\"audio/x-aac\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"aac\"]},\"audio/x-aiff\":{\"source\":\"apache\",\"extensions\":[\"aif\",\"aiff\",\"aifc\"]},\"audio/x-caf\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"caf\"]},\"audio/x-flac\":{\"source\":\"apache\",\"extensions\":[\"flac\"]},\"audio/x-m4a\":{\"source\":\"nginx\",\"extensions\":[\"m4a\"]},\"audio/x-matroska\":{\"source\":\"apache\",\"extensions\":[\"mka\"]},\"audio/x-mpegurl\":{\"source\":\"apache\",\"extensions\":[\"m3u\"]},\"audio/x-ms-wax\":{\"source\":\"apache\",\"extensions\":[\"wax\"]},\"audio/x-ms-wma\":{\"source\":\"apache\",\"extensions\":[\"wma\"]},\"audio/x-pn-realaudio\":{\"source\":\"apache\",\"extensions\":[\"ram\",\"ra\"]},\"audio/x-pn-realaudio-plugin\":{\"source\":\"apache\",\"extensions\":[\"rmp\"]},\"audio/x-realaudio\":{\"source\":\"nginx\",\"extensions\":[\"ra\"]},\"audio/x-tta\":{\"source\":\"apache\"},\"audio/x-wav\":{\"source\":\"apache\",\"extensions\":[\"wav\"]},\"audio/xm\":{\"source\":\"apache\",\"extensions\":[\"xm\"]},\"chemical/x-cdx\":{\"source\":\"apache\",\"extensions\":[\"cdx\"]},\"chemical/x-cif\":{\"source\":\"apache\",\"extensions\":[\"cif\"]},\"chemical/x-cmdf\":{\"source\":\"apache\",\"extensions\":[\"cmdf\"]},\"chemical/x-cml\":{\"source\":\"apache\",\"extensions\":[\"cml\"]},\"chemical/x-csml\":{\"source\":\"apache\",\"extensions\":[\"csml\"]},\"chemical/x-pdb\":{\"source\":\"apache\"},\"chemical/x-xyz\":{\"source\":\"apache\",\"extensions\":[\"xyz\"]},\"font/collection\":{\"source\":\"iana\",\"extensions\":[\"ttc\"]},\"font/otf\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"otf\"]},\"font/sfnt\":{\"source\":\"iana\"},\"font/ttf\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ttf\"]},\"font/woff\":{\"source\":\"iana\",\"extensions\":[\"woff\"]},\"font/woff2\":{\"source\":\"iana\",\"extensions\":[\"woff2\"]},\"image/aces\":{\"source\":\"iana\",\"extensions\":[\"exr\"]},\"image/apng\":{\"compressible\":false,\"extensions\":[\"apng\"]},\"image/avci\":{\"source\":\"iana\"},\"image/avcs\":{\"source\":\"iana\"},\"image/avif\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"avif\"]},\"image/bmp\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"bmp\"]},\"image/cgm\":{\"source\":\"iana\",\"extensions\":[\"cgm\"]},\"image/dicom-rle\":{\"source\":\"iana\",\"extensions\":[\"drle\"]},\"image/emf\":{\"source\":\"iana\",\"extensions\":[\"emf\"]},\"image/fits\":{\"source\":\"iana\",\"extensions\":[\"fits\"]},\"image/g3fax\":{\"source\":\"iana\",\"extensions\":[\"g3\"]},\"image/gif\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"gif\"]},\"image/heic\":{\"source\":\"iana\",\"extensions\":[\"heic\"]},\"image/heic-sequence\":{\"source\":\"iana\",\"extensions\":[\"heics\"]},\"image/heif\":{\"source\":\"iana\",\"extensions\":[\"heif\"]},\"image/heif-sequence\":{\"source\":\"iana\",\"extensions\":[\"heifs\"]},\"image/hej2k\":{\"source\":\"iana\",\"extensions\":[\"hej2\"]},\"image/hsj2\":{\"source\":\"iana\",\"extensions\":[\"hsj2\"]},\"image/ief\":{\"source\":\"iana\",\"extensions\":[\"ief\"]},\"image/jls\":{\"source\":\"iana\",\"extensions\":[\"jls\"]},\"image/jp2\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"jp2\",\"jpg2\"]},\"image/jpeg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"jpeg\",\"jpg\",\"jpe\"]},\"image/jph\":{\"source\":\"iana\",\"extensions\":[\"jph\"]},\"image/jphc\":{\"source\":\"iana\",\"extensions\":[\"jhc\"]},\"image/jpm\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"jpm\"]},\"image/jpx\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"jpx\",\"jpf\"]},\"image/jxr\":{\"source\":\"iana\",\"extensions\":[\"jxr\"]},\"image/jxra\":{\"source\":\"iana\",\"extensions\":[\"jxra\"]},\"image/jxrs\":{\"source\":\"iana\",\"extensions\":[\"jxrs\"]},\"image/jxs\":{\"source\":\"iana\",\"extensions\":[\"jxs\"]},\"image/jxsc\":{\"source\":\"iana\",\"extensions\":[\"jxsc\"]},\"image/jxsi\":{\"source\":\"iana\",\"extensions\":[\"jxsi\"]},\"image/jxss\":{\"source\":\"iana\",\"extensions\":[\"jxss\"]},\"image/ktx\":{\"source\":\"iana\",\"extensions\":[\"ktx\"]},\"image/ktx2\":{\"source\":\"iana\",\"extensions\":[\"ktx2\"]},\"image/naplps\":{\"source\":\"iana\"},\"image/pjpeg\":{\"compressible\":false},\"image/png\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"png\"]},\"image/prs.btif\":{\"source\":\"iana\",\"extensions\":[\"btif\"]},\"image/prs.pti\":{\"source\":\"iana\",\"extensions\":[\"pti\"]},\"image/pwg-raster\":{\"source\":\"iana\"},\"image/sgi\":{\"source\":\"apache\",\"extensions\":[\"sgi\"]},\"image/svg+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"svg\",\"svgz\"]},\"image/t38\":{\"source\":\"iana\",\"extensions\":[\"t38\"]},\"image/tiff\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"tif\",\"tiff\"]},\"image/tiff-fx\":{\"source\":\"iana\",\"extensions\":[\"tfx\"]},\"image/vnd.adobe.photoshop\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"psd\"]},\"image/vnd.airzip.accelerator.azv\":{\"source\":\"iana\",\"extensions\":[\"azv\"]},\"image/vnd.cns.inf2\":{\"source\":\"iana\"},\"image/vnd.dece.graphic\":{\"source\":\"iana\",\"extensions\":[\"uvi\",\"uvvi\",\"uvg\",\"uvvg\"]},\"image/vnd.djvu\":{\"source\":\"iana\",\"extensions\":[\"djvu\",\"djv\"]},\"image/vnd.dvb.subtitle\":{\"source\":\"iana\",\"extensions\":[\"sub\"]},\"image/vnd.dwg\":{\"source\":\"iana\",\"extensions\":[\"dwg\"]},\"image/vnd.dxf\":{\"source\":\"iana\",\"extensions\":[\"dxf\"]},\"image/vnd.fastbidsheet\":{\"source\":\"iana\",\"extensions\":[\"fbs\"]},\"image/vnd.fpx\":{\"source\":\"iana\",\"extensions\":[\"fpx\"]},\"image/vnd.fst\":{\"source\":\"iana\",\"extensions\":[\"fst\"]},\"image/vnd.fujixerox.edmics-mmr\":{\"source\":\"iana\",\"extensions\":[\"mmr\"]},\"image/vnd.fujixerox.edmics-rlc\":{\"source\":\"iana\",\"extensions\":[\"rlc\"]},\"image/vnd.globalgraphics.pgb\":{\"source\":\"iana\"},\"image/vnd.microsoft.icon\":{\"source\":\"iana\",\"extensions\":[\"ico\"]},\"image/vnd.mix\":{\"source\":\"iana\"},\"image/vnd.mozilla.apng\":{\"source\":\"iana\"},\"image/vnd.ms-dds\":{\"extensions\":[\"dds\"]},\"image/vnd.ms-modi\":{\"source\":\"iana\",\"extensions\":[\"mdi\"]},\"image/vnd.ms-photo\":{\"source\":\"apache\",\"extensions\":[\"wdp\"]},\"image/vnd.net-fpx\":{\"source\":\"iana\",\"extensions\":[\"npx\"]},\"image/vnd.pco.b16\":{\"source\":\"iana\",\"extensions\":[\"b16\"]},\"image/vnd.radiance\":{\"source\":\"iana\"},\"image/vnd.sealed.png\":{\"source\":\"iana\"},\"image/vnd.sealedmedia.softseal.gif\":{\"source\":\"iana\"},\"image/vnd.sealedmedia.softseal.jpg\":{\"source\":\"iana\"},\"image/vnd.svf\":{\"source\":\"iana\"},\"image/vnd.tencent.tap\":{\"source\":\"iana\",\"extensions\":[\"tap\"]},\"image/vnd.valve.source.texture\":{\"source\":\"iana\",\"extensions\":[\"vtf\"]},\"image/vnd.wap.wbmp\":{\"source\":\"iana\",\"extensions\":[\"wbmp\"]},\"image/vnd.xiff\":{\"source\":\"iana\",\"extensions\":[\"xif\"]},\"image/vnd.zbrush.pcx\":{\"source\":\"iana\",\"extensions\":[\"pcx\"]},\"image/webp\":{\"source\":\"apache\",\"extensions\":[\"webp\"]},\"image/wmf\":{\"source\":\"iana\",\"extensions\":[\"wmf\"]},\"image/x-3ds\":{\"source\":\"apache\",\"extensions\":[\"3ds\"]},\"image/x-cmu-raster\":{\"source\":\"apache\",\"extensions\":[\"ras\"]},\"image/x-cmx\":{\"source\":\"apache\",\"extensions\":[\"cmx\"]},\"image/x-freehand\":{\"source\":\"apache\",\"extensions\":[\"fh\",\"fhc\",\"fh4\",\"fh5\",\"fh7\"]},\"image/x-icon\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"ico\"]},\"image/x-jng\":{\"source\":\"nginx\",\"extensions\":[\"jng\"]},\"image/x-mrsid-image\":{\"source\":\"apache\",\"extensions\":[\"sid\"]},\"image/x-ms-bmp\":{\"source\":\"nginx\",\"compressible\":true,\"extensions\":[\"bmp\"]},\"image/x-pcx\":{\"source\":\"apache\",\"extensions\":[\"pcx\"]},\"image/x-pict\":{\"source\":\"apache\",\"extensions\":[\"pic\",\"pct\"]},\"image/x-portable-anymap\":{\"source\":\"apache\",\"extensions\":[\"pnm\"]},\"image/x-portable-bitmap\":{\"source\":\"apache\",\"extensions\":[\"pbm\"]},\"image/x-portable-graymap\":{\"source\":\"apache\",\"extensions\":[\"pgm\"]},\"image/x-portable-pixmap\":{\"source\":\"apache\",\"extensions\":[\"ppm\"]},\"image/x-rgb\":{\"source\":\"apache\",\"extensions\":[\"rgb\"]},\"image/x-tga\":{\"source\":\"apache\",\"extensions\":[\"tga\"]},\"image/x-xbitmap\":{\"source\":\"apache\",\"extensions\":[\"xbm\"]},\"image/x-xcf\":{\"compressible\":false},\"image/x-xpixmap\":{\"source\":\"apache\",\"extensions\":[\"xpm\"]},\"image/x-xwindowdump\":{\"source\":\"apache\",\"extensions\":[\"xwd\"]},\"message/cpim\":{\"source\":\"iana\"},\"message/delivery-status\":{\"source\":\"iana\"},\"message/disposition-notification\":{\"source\":\"iana\",\"extensions\":[\"disposition-notification\"]},\"message/external-body\":{\"source\":\"iana\"},\"message/feedback-report\":{\"source\":\"iana\"},\"message/global\":{\"source\":\"iana\",\"extensions\":[\"u8msg\"]},\"message/global-delivery-status\":{\"source\":\"iana\",\"extensions\":[\"u8dsn\"]},\"message/global-disposition-notification\":{\"source\":\"iana\",\"extensions\":[\"u8mdn\"]},\"message/global-headers\":{\"source\":\"iana\",\"extensions\":[\"u8hdr\"]},\"message/http\":{\"source\":\"iana\",\"compressible\":false},\"message/imdn+xml\":{\"source\":\"iana\",\"compressible\":true},\"message/news\":{\"source\":\"iana\"},\"message/partial\":{\"source\":\"iana\",\"compressible\":false},\"message/rfc822\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"eml\",\"mime\"]},\"message/s-http\":{\"source\":\"iana\"},\"message/sip\":{\"source\":\"iana\"},\"message/sipfrag\":{\"source\":\"iana\"},\"message/tracking-status\":{\"source\":\"iana\"},\"message/vnd.si.simp\":{\"source\":\"iana\"},\"message/vnd.wfa.wsc\":{\"source\":\"iana\",\"extensions\":[\"wsc\"]},\"model/3mf\":{\"source\":\"iana\",\"extensions\":[\"3mf\"]},\"model/e57\":{\"source\":\"iana\"},\"model/gltf+json\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"gltf\"]},\"model/gltf-binary\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"glb\"]},\"model/iges\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"igs\",\"iges\"]},\"model/mesh\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"msh\",\"mesh\",\"silo\"]},\"model/mtl\":{\"source\":\"iana\",\"extensions\":[\"mtl\"]},\"model/obj\":{\"source\":\"iana\",\"extensions\":[\"obj\"]},\"model/stl\":{\"source\":\"iana\",\"extensions\":[\"stl\"]},\"model/vnd.collada+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"dae\"]},\"model/vnd.dwf\":{\"source\":\"iana\",\"extensions\":[\"dwf\"]},\"model/vnd.flatland.3dml\":{\"source\":\"iana\"},\"model/vnd.gdl\":{\"source\":\"iana\",\"extensions\":[\"gdl\"]},\"model/vnd.gs-gdl\":{\"source\":\"apache\"},\"model/vnd.gs.gdl\":{\"source\":\"iana\"},\"model/vnd.gtw\":{\"source\":\"iana\",\"extensions\":[\"gtw\"]},\"model/vnd.moml+xml\":{\"source\":\"iana\",\"compressible\":true},\"model/vnd.mts\":{\"source\":\"iana\",\"extensions\":[\"mts\"]},\"model/vnd.opengex\":{\"source\":\"iana\",\"extensions\":[\"ogex\"]},\"model/vnd.parasolid.transmit.binary\":{\"source\":\"iana\",\"extensions\":[\"x_b\"]},\"model/vnd.parasolid.transmit.text\":{\"source\":\"iana\",\"extensions\":[\"x_t\"]},\"model/vnd.rosette.annotated-data-model\":{\"source\":\"iana\"},\"model/vnd.usdz+zip\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"usdz\"]},\"model/vnd.valve.source.compiled-map\":{\"source\":\"iana\",\"extensions\":[\"bsp\"]},\"model/vnd.vtu\":{\"source\":\"iana\",\"extensions\":[\"vtu\"]},\"model/vrml\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"wrl\",\"vrml\"]},\"model/x3d+binary\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"x3db\",\"x3dbz\"]},\"model/x3d+fastinfoset\":{\"source\":\"iana\",\"extensions\":[\"x3db\"]},\"model/x3d+vrml\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"x3dv\",\"x3dvz\"]},\"model/x3d+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"x3d\",\"x3dz\"]},\"model/x3d-vrml\":{\"source\":\"iana\",\"extensions\":[\"x3dv\"]},\"multipart/alternative\":{\"source\":\"iana\",\"compressible\":false},\"multipart/appledouble\":{\"source\":\"iana\"},\"multipart/byteranges\":{\"source\":\"iana\"},\"multipart/digest\":{\"source\":\"iana\"},\"multipart/encrypted\":{\"source\":\"iana\",\"compressible\":false},\"multipart/form-data\":{\"source\":\"iana\",\"compressible\":false},\"multipart/header-set\":{\"source\":\"iana\"},\"multipart/mixed\":{\"source\":\"iana\"},\"multipart/multilingual\":{\"source\":\"iana\"},\"multipart/parallel\":{\"source\":\"iana\"},\"multipart/related\":{\"source\":\"iana\",\"compressible\":false},\"multipart/report\":{\"source\":\"iana\"},\"multipart/signed\":{\"source\":\"iana\",\"compressible\":false},\"multipart/vnd.bint.med-plus\":{\"source\":\"iana\"},\"multipart/voice-message\":{\"source\":\"iana\"},\"multipart/x-mixed-replace\":{\"source\":\"iana\"},\"text/1d-interleaved-parityfec\":{\"source\":\"iana\"},\"text/cache-manifest\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"appcache\",\"manifest\"]},\"text/calendar\":{\"source\":\"iana\",\"extensions\":[\"ics\",\"ifb\"]},\"text/calender\":{\"compressible\":true},\"text/cmd\":{\"compressible\":true},\"text/coffeescript\":{\"extensions\":[\"coffee\",\"litcoffee\"]},\"text/cql\":{\"source\":\"iana\"},\"text/cql-expression\":{\"source\":\"iana\"},\"text/cql-identifier\":{\"source\":\"iana\"},\"text/css\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"css\"]},\"text/csv\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"csv\"]},\"text/csv-schema\":{\"source\":\"iana\"},\"text/directory\":{\"source\":\"iana\"},\"text/dns\":{\"source\":\"iana\"},\"text/ecmascript\":{\"source\":\"iana\"},\"text/encaprtp\":{\"source\":\"iana\"},\"text/enriched\":{\"source\":\"iana\"},\"text/fhirpath\":{\"source\":\"iana\"},\"text/flexfec\":{\"source\":\"iana\"},\"text/fwdred\":{\"source\":\"iana\"},\"text/gff3\":{\"source\":\"iana\"},\"text/grammar-ref-list\":{\"source\":\"iana\"},\"text/html\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"html\",\"htm\",\"shtml\"]},\"text/jade\":{\"extensions\":[\"jade\"]},\"text/javascript\":{\"source\":\"iana\",\"compressible\":true},\"text/jcr-cnd\":{\"source\":\"iana\"},\"text/jsx\":{\"compressible\":true,\"extensions\":[\"jsx\"]},\"text/less\":{\"compressible\":true,\"extensions\":[\"less\"]},\"text/markdown\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"markdown\",\"md\"]},\"text/mathml\":{\"source\":\"nginx\",\"extensions\":[\"mml\"]},\"text/mdx\":{\"compressible\":true,\"extensions\":[\"mdx\"]},\"text/mizar\":{\"source\":\"iana\"},\"text/n3\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"n3\"]},\"text/parameters\":{\"source\":\"iana\",\"charset\":\"UTF-8\"},\"text/parityfec\":{\"source\":\"iana\"},\"text/plain\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"txt\",\"text\",\"conf\",\"def\",\"list\",\"log\",\"in\",\"ini\"]},\"text/provenance-notation\":{\"source\":\"iana\",\"charset\":\"UTF-8\"},\"text/prs.fallenstein.rst\":{\"source\":\"iana\"},\"text/prs.lines.tag\":{\"source\":\"iana\",\"extensions\":[\"dsc\"]},\"text/prs.prop.logic\":{\"source\":\"iana\"},\"text/raptorfec\":{\"source\":\"iana\"},\"text/red\":{\"source\":\"iana\"},\"text/rfc822-headers\":{\"source\":\"iana\"},\"text/richtext\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rtx\"]},\"text/rtf\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rtf\"]},\"text/rtp-enc-aescm128\":{\"source\":\"iana\"},\"text/rtploopback\":{\"source\":\"iana\"},\"text/rtx\":{\"source\":\"iana\"},\"text/sgml\":{\"source\":\"iana\",\"extensions\":[\"sgml\",\"sgm\"]},\"text/shaclc\":{\"source\":\"iana\"},\"text/shex\":{\"extensions\":[\"shex\"]},\"text/slim\":{\"extensions\":[\"slim\",\"slm\"]},\"text/spdx\":{\"source\":\"iana\",\"extensions\":[\"spdx\"]},\"text/strings\":{\"source\":\"iana\"},\"text/stylus\":{\"extensions\":[\"stylus\",\"styl\"]},\"text/t140\":{\"source\":\"iana\"},\"text/tab-separated-values\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"tsv\"]},\"text/troff\":{\"source\":\"iana\",\"extensions\":[\"t\",\"tr\",\"roff\",\"man\",\"me\",\"ms\"]},\"text/turtle\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"extensions\":[\"ttl\"]},\"text/ulpfec\":{\"source\":\"iana\"},\"text/uri-list\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"uri\",\"uris\",\"urls\"]},\"text/vcard\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"vcard\"]},\"text/vnd.a\":{\"source\":\"iana\"},\"text/vnd.abc\":{\"source\":\"iana\"},\"text/vnd.ascii-art\":{\"source\":\"iana\"},\"text/vnd.curl\":{\"source\":\"iana\",\"extensions\":[\"curl\"]},\"text/vnd.curl.dcurl\":{\"source\":\"apache\",\"extensions\":[\"dcurl\"]},\"text/vnd.curl.mcurl\":{\"source\":\"apache\",\"extensions\":[\"mcurl\"]},\"text/vnd.curl.scurl\":{\"source\":\"apache\",\"extensions\":[\"scurl\"]},\"text/vnd.debian.copyright\":{\"source\":\"iana\",\"charset\":\"UTF-8\"},\"text/vnd.dmclientscript\":{\"source\":\"iana\"},\"text/vnd.dvb.subtitle\":{\"source\":\"iana\",\"extensions\":[\"sub\"]},\"text/vnd.esmertec.theme-descriptor\":{\"source\":\"iana\",\"charset\":\"UTF-8\"},\"text/vnd.ficlab.flt\":{\"source\":\"iana\"},\"text/vnd.fly\":{\"source\":\"iana\",\"extensions\":[\"fly\"]},\"text/vnd.fmi.flexstor\":{\"source\":\"iana\",\"extensions\":[\"flx\"]},\"text/vnd.gml\":{\"source\":\"iana\"},\"text/vnd.graphviz\":{\"source\":\"iana\",\"extensions\":[\"gv\"]},\"text/vnd.hans\":{\"source\":\"iana\"},\"text/vnd.hgl\":{\"source\":\"iana\"},\"text/vnd.in3d.3dml\":{\"source\":\"iana\",\"extensions\":[\"3dml\"]},\"text/vnd.in3d.spot\":{\"source\":\"iana\",\"extensions\":[\"spot\"]},\"text/vnd.iptc.newsml\":{\"source\":\"iana\"},\"text/vnd.iptc.nitf\":{\"source\":\"iana\"},\"text/vnd.latex-z\":{\"source\":\"iana\"},\"text/vnd.motorola.reflex\":{\"source\":\"iana\"},\"text/vnd.ms-mediapackage\":{\"source\":\"iana\"},\"text/vnd.net2phone.commcenter.command\":{\"source\":\"iana\"},\"text/vnd.radisys.msml-basic-layout\":{\"source\":\"iana\"},\"text/vnd.senx.warpscript\":{\"source\":\"iana\"},\"text/vnd.si.uricatalogue\":{\"source\":\"iana\"},\"text/vnd.sosi\":{\"source\":\"iana\"},\"text/vnd.sun.j2me.app-descriptor\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"extensions\":[\"jad\"]},\"text/vnd.trolltech.linguist\":{\"source\":\"iana\",\"charset\":\"UTF-8\"},\"text/vnd.wap.si\":{\"source\":\"iana\"},\"text/vnd.wap.sl\":{\"source\":\"iana\"},\"text/vnd.wap.wml\":{\"source\":\"iana\",\"extensions\":[\"wml\"]},\"text/vnd.wap.wmlscript\":{\"source\":\"iana\",\"extensions\":[\"wmls\"]},\"text/vtt\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"vtt\"]},\"text/x-asm\":{\"source\":\"apache\",\"extensions\":[\"s\",\"asm\"]},\"text/x-c\":{\"source\":\"apache\",\"extensions\":[\"c\",\"cc\",\"cxx\",\"cpp\",\"h\",\"hh\",\"dic\"]},\"text/x-component\":{\"source\":\"nginx\",\"extensions\":[\"htc\"]},\"text/x-fortran\":{\"source\":\"apache\",\"extensions\":[\"f\",\"for\",\"f77\",\"f90\"]},\"text/x-gwt-rpc\":{\"compressible\":true},\"text/x-handlebars-template\":{\"extensions\":[\"hbs\"]},\"text/x-java-source\":{\"source\":\"apache\",\"extensions\":[\"java\"]},\"text/x-jquery-tmpl\":{\"compressible\":true},\"text/x-lua\":{\"extensions\":[\"lua\"]},\"text/x-markdown\":{\"compressible\":true,\"extensions\":[\"mkd\"]},\"text/x-nfo\":{\"source\":\"apache\",\"extensions\":[\"nfo\"]},\"text/x-opml\":{\"source\":\"apache\",\"extensions\":[\"opml\"]},\"text/x-org\":{\"compressible\":true,\"extensions\":[\"org\"]},\"text/x-pascal\":{\"source\":\"apache\",\"extensions\":[\"p\",\"pas\"]},\"text/x-processing\":{\"compressible\":true,\"extensions\":[\"pde\"]},\"text/x-sass\":{\"extensions\":[\"sass\"]},\"text/x-scss\":{\"extensions\":[\"scss\"]},\"text/x-setext\":{\"source\":\"apache\",\"extensions\":[\"etx\"]},\"text/x-sfv\":{\"source\":\"apache\",\"extensions\":[\"sfv\"]},\"text/x-suse-ymp\":{\"compressible\":true,\"extensions\":[\"ymp\"]},\"text/x-uuencode\":{\"source\":\"apache\",\"extensions\":[\"uu\"]},\"text/x-vcalendar\":{\"source\":\"apache\",\"extensions\":[\"vcs\"]},\"text/x-vcard\":{\"source\":\"apache\",\"extensions\":[\"vcf\"]},\"text/xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xml\"]},\"text/xml-external-parsed-entity\":{\"source\":\"iana\"},\"text/yaml\":{\"extensions\":[\"yaml\",\"yml\"]},\"video/1d-interleaved-parityfec\":{\"source\":\"iana\"},\"video/3gpp\":{\"source\":\"iana\",\"extensions\":[\"3gp\",\"3gpp\"]},\"video/3gpp-tt\":{\"source\":\"iana\"},\"video/3gpp2\":{\"source\":\"iana\",\"extensions\":[\"3g2\"]},\"video/av1\":{\"source\":\"iana\"},\"video/bmpeg\":{\"source\":\"iana\"},\"video/bt656\":{\"source\":\"iana\"},\"video/celb\":{\"source\":\"iana\"},\"video/dv\":{\"source\":\"iana\"},\"video/encaprtp\":{\"source\":\"iana\"},\"video/flexfec\":{\"source\":\"iana\"},\"video/h261\":{\"source\":\"iana\",\"extensions\":[\"h261\"]},\"video/h263\":{\"source\":\"iana\",\"extensions\":[\"h263\"]},\"video/h263-1998\":{\"source\":\"iana\"},\"video/h263-2000\":{\"source\":\"iana\"},\"video/h264\":{\"source\":\"iana\",\"extensions\":[\"h264\"]},\"video/h264-rcdo\":{\"source\":\"iana\"},\"video/h264-svc\":{\"source\":\"iana\"},\"video/h265\":{\"source\":\"iana\"},\"video/iso.segment\":{\"source\":\"iana\",\"extensions\":[\"m4s\"]},\"video/jpeg\":{\"source\":\"iana\",\"extensions\":[\"jpgv\"]},\"video/jpeg2000\":{\"source\":\"iana\"},\"video/jpm\":{\"source\":\"apache\",\"extensions\":[\"jpm\",\"jpgm\"]},\"video/mj2\":{\"source\":\"iana\",\"extensions\":[\"mj2\",\"mjp2\"]},\"video/mp1s\":{\"source\":\"iana\"},\"video/mp2p\":{\"source\":\"iana\"},\"video/mp2t\":{\"source\":\"iana\",\"extensions\":[\"ts\"]},\"video/mp4\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"mp4\",\"mp4v\",\"mpg4\"]},\"video/mp4v-es\":{\"source\":\"iana\"},\"video/mpeg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"mpeg\",\"mpg\",\"mpe\",\"m1v\",\"m2v\"]},\"video/mpeg4-generic\":{\"source\":\"iana\"},\"video/mpv\":{\"source\":\"iana\"},\"video/nv\":{\"source\":\"iana\"},\"video/ogg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"ogv\"]},\"video/parityfec\":{\"source\":\"iana\"},\"video/pointer\":{\"source\":\"iana\"},\"video/quicktime\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"qt\",\"mov\"]},\"video/raptorfec\":{\"source\":\"iana\"},\"video/raw\":{\"source\":\"iana\"},\"video/rtp-enc-aescm128\":{\"source\":\"iana\"},\"video/rtploopback\":{\"source\":\"iana\"},\"video/rtx\":{\"source\":\"iana\"},\"video/scip\":{\"source\":\"iana\"},\"video/smpte291\":{\"source\":\"iana\"},\"video/smpte292m\":{\"source\":\"iana\"},\"video/ulpfec\":{\"source\":\"iana\"},\"video/vc1\":{\"source\":\"iana\"},\"video/vc2\":{\"source\":\"iana\"},\"video/vnd.cctv\":{\"source\":\"iana\"},\"video/vnd.dece.hd\":{\"source\":\"iana\",\"extensions\":[\"uvh\",\"uvvh\"]},\"video/vnd.dece.mobile\":{\"source\":\"iana\",\"extensions\":[\"uvm\",\"uvvm\"]},\"video/vnd.dece.mp4\":{\"source\":\"iana\"},\"video/vnd.dece.pd\":{\"source\":\"iana\",\"extensions\":[\"uvp\",\"uvvp\"]},\"video/vnd.dece.sd\":{\"source\":\"iana\",\"extensions\":[\"uvs\",\"uvvs\"]},\"video/vnd.dece.video\":{\"source\":\"iana\",\"extensions\":[\"uvv\",\"uvvv\"]},\"video/vnd.directv.mpeg\":{\"source\":\"iana\"},\"video/vnd.directv.mpeg-tts\":{\"source\":\"iana\"},\"video/vnd.dlna.mpeg-tts\":{\"source\":\"iana\"},\"video/vnd.dvb.file\":{\"source\":\"iana\",\"extensions\":[\"dvb\"]},\"video/vnd.fvt\":{\"source\":\"iana\",\"extensions\":[\"fvt\"]},\"video/vnd.hns.video\":{\"source\":\"iana\"},\"video/vnd.iptvforum.1dparityfec-1010\":{\"source\":\"iana\"},\"video/vnd.iptvforum.1dparityfec-2005\":{\"source\":\"iana\"},\"video/vnd.iptvforum.2dparityfec-1010\":{\"source\":\"iana\"},\"video/vnd.iptvforum.2dparityfec-2005\":{\"source\":\"iana\"},\"video/vnd.iptvforum.ttsavc\":{\"source\":\"iana\"},\"video/vnd.iptvforum.ttsmpeg2\":{\"source\":\"iana\"},\"video/vnd.motorola.video\":{\"source\":\"iana\"},\"video/vnd.motorola.videop\":{\"source\":\"iana\"},\"video/vnd.mpegurl\":{\"source\":\"iana\",\"extensions\":[\"mxu\",\"m4u\"]},\"video/vnd.ms-playready.media.pyv\":{\"source\":\"iana\",\"extensions\":[\"pyv\"]},\"video/vnd.nokia.interleaved-multimedia\":{\"source\":\"iana\"},\"video/vnd.nokia.mp4vr\":{\"source\":\"iana\"},\"video/vnd.nokia.videovoip\":{\"source\":\"iana\"},\"video/vnd.objectvideo\":{\"source\":\"iana\"},\"video/vnd.radgamettools.bink\":{\"source\":\"iana\"},\"video/vnd.radgamettools.smacker\":{\"source\":\"iana\"},\"video/vnd.sealed.mpeg1\":{\"source\":\"iana\"},\"video/vnd.sealed.mpeg4\":{\"source\":\"iana\"},\"video/vnd.sealed.swf\":{\"source\":\"iana\"},\"video/vnd.sealedmedia.softseal.mov\":{\"source\":\"iana\"},\"video/vnd.uvvu.mp4\":{\"source\":\"iana\",\"extensions\":[\"uvu\",\"uvvu\"]},\"video/vnd.vivo\":{\"source\":\"iana\",\"extensions\":[\"viv\"]},\"video/vnd.youtube.yt\":{\"source\":\"iana\"},\"video/vp8\":{\"source\":\"iana\"},\"video/webm\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"webm\"]},\"video/x-f4v\":{\"source\":\"apache\",\"extensions\":[\"f4v\"]},\"video/x-fli\":{\"source\":\"apache\",\"extensions\":[\"fli\"]},\"video/x-flv\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"flv\"]},\"video/x-m4v\":{\"source\":\"apache\",\"extensions\":[\"m4v\"]},\"video/x-matroska\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"mkv\",\"mk3d\",\"mks\"]},\"video/x-mng\":{\"source\":\"apache\",\"extensions\":[\"mng\"]},\"video/x-ms-asf\":{\"source\":\"apache\",\"extensions\":[\"asf\",\"asx\"]},\"video/x-ms-vob\":{\"source\":\"apache\",\"extensions\":[\"vob\"]},\"video/x-ms-wm\":{\"source\":\"apache\",\"extensions\":[\"wm\"]},\"video/x-ms-wmv\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"wmv\"]},\"video/x-ms-wmx\":{\"source\":\"apache\",\"extensions\":[\"wmx\"]},\"video/x-ms-wvx\":{\"source\":\"apache\",\"extensions\":[\"wvx\"]},\"video/x-msvideo\":{\"source\":\"apache\",\"extensions\":[\"avi\"]},\"video/x-sgi-movie\":{\"source\":\"apache\",\"extensions\":[\"movie\"]},\"video/x-smv\":{\"source\":\"apache\",\"extensions\":[\"smv\"]},\"x-conference/x-cooltalk\":{\"source\":\"apache\",\"extensions\":[\"ice\"]},\"x-shader/x-fragment\":{\"compressible\":true},\"x-shader/x-vertex\":{\"compressible\":true}}"); - -/***/ }), -/* 171 */ -/***/ (function(module, exports, __webpack_require__) { - module.exports = { - parallel : __webpack_require__(172), - serial : __webpack_require__(179), - serialOrdered : __webpack_require__(180) + parallel : __webpack_require__(169), + serial : __webpack_require__(176), + serialOrdered : __webpack_require__(177) }; /***/ }), -/* 172 */ +/* 169 */ /***/ (function(module, exports, __webpack_require__) { -var iterate = __webpack_require__(173) - , initState = __webpack_require__(177) - , terminator = __webpack_require__(178) +var iterate = __webpack_require__(170) + , initState = __webpack_require__(174) + , terminator = __webpack_require__(175) ; // Public API @@ -32334,11 +32105,11 @@ function parallel(list, iterator, callback) /***/ }), -/* 173 */ +/* 170 */ /***/ (function(module, exports, __webpack_require__) { -var async = __webpack_require__(174) - , abort = __webpack_require__(176) +var async = __webpack_require__(171) + , abort = __webpack_require__(173) ; // API @@ -32415,10 +32186,10 @@ function runJob(iterator, key, item, callback) /***/ }), -/* 174 */ +/* 171 */ /***/ (function(module, exports, __webpack_require__) { -var defer = __webpack_require__(175); +var defer = __webpack_require__(172); // API module.exports = async; @@ -32455,7 +32226,7 @@ function async(callback) /***/ }), -/* 175 */ +/* 172 */ /***/ (function(module, exports) { module.exports = defer; @@ -32487,7 +32258,7 @@ function defer(fn) /***/ }), -/* 176 */ +/* 173 */ /***/ (function(module, exports) { // API @@ -32522,7 +32293,7 @@ function clean(key) /***/ }), -/* 177 */ +/* 174 */ /***/ (function(module, exports) { // API @@ -32565,11 +32336,11 @@ function state(list, sortMethod) /***/ }), -/* 178 */ +/* 175 */ /***/ (function(module, exports, __webpack_require__) { -var abort = __webpack_require__(176) - , async = __webpack_require__(174) +var abort = __webpack_require__(173) + , async = __webpack_require__(171) ; // API @@ -32600,10 +32371,10 @@ function terminator(callback) /***/ }), -/* 179 */ +/* 176 */ /***/ (function(module, exports, __webpack_require__) { -var serialOrdered = __webpack_require__(180); +var serialOrdered = __webpack_require__(177); // Public API module.exports = serial; @@ -32623,12 +32394,12 @@ function serial(list, iterator, callback) /***/ }), -/* 180 */ +/* 177 */ /***/ (function(module, exports, __webpack_require__) { -var iterate = __webpack_require__(173) - , initState = __webpack_require__(177) - , terminator = __webpack_require__(178) +var iterate = __webpack_require__(170) + , initState = __webpack_require__(174) + , terminator = __webpack_require__(175) ; // Public API @@ -32704,7 +32475,7 @@ function descending(a, b) /***/ }), -/* 181 */ +/* 178 */ /***/ (function(module, exports) { // populates missing values @@ -32720,7 +32491,7 @@ module.exports = function(dst, src) { /***/ }), -/* 182 */ +/* 179 */ /***/ (function(module, exports, __webpack_require__) { var stream = __webpack_require__(100) @@ -32753,7 +32524,7 @@ module.exports.isDuplex = isDuplex /***/ }), -/* 183 */ +/* 180 */ /***/ (function(module, exports) { module.exports = isTypedArray @@ -32800,7 +32571,7 @@ function isLooseTypedArray(arr) { /***/ }), -/* 184 */ +/* 181 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -32886,13 +32657,13 @@ module.exports = getProxyFromURI /***/ }), -/* 185 */ +/* 182 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var qs = __webpack_require__(186) +var qs = __webpack_require__(183) var querystring = __webpack_require__(104) function Querystring (request) { @@ -32943,15 +32714,15 @@ exports.Querystring = Querystring /***/ }), -/* 186 */ +/* 183 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var stringify = __webpack_require__(187); -var parse = __webpack_require__(190); -var formats = __webpack_require__(189); +var stringify = __webpack_require__(184); +var parse = __webpack_require__(187); +var formats = __webpack_require__(186); module.exports = { formats: formats, @@ -32961,14 +32732,14 @@ module.exports = { /***/ }), -/* 187 */ +/* 184 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var utils = __webpack_require__(188); -var formats = __webpack_require__(189); +var utils = __webpack_require__(185); +var formats = __webpack_require__(186); var arrayPrefixGenerators = { brackets: function brackets(prefix) { // eslint-disable-line func-name-matching @@ -33178,7 +32949,7 @@ module.exports = function (object, opts) { /***/ }), -/* 188 */ +/* 185 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -33398,7 +33169,7 @@ module.exports = { /***/ }), -/* 189 */ +/* 186 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -33423,13 +33194,13 @@ module.exports = { /***/ }), -/* 190 */ +/* 187 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var utils = __webpack_require__(188); +var utils = __webpack_require__(185); var has = Object.prototype.hasOwnProperty; @@ -33604,7 +33375,7 @@ module.exports = function (str, opts) { /***/ }), -/* 191 */ +/* 188 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -33612,7 +33383,7 @@ module.exports = function (str, opts) { var fs = __webpack_require__(167) var qs = __webpack_require__(104) -var validate = __webpack_require__(192) +var validate = __webpack_require__(189) var extend = __webpack_require__(79) function Har (request) { @@ -33816,12 +33587,12 @@ exports.Har = Har /***/ }), -/* 192 */ +/* 189 */ /***/ (function(module, exports, __webpack_require__) { -var Ajv = __webpack_require__(193) -var HARError = __webpack_require__(239) -var schemas = __webpack_require__(240) +var Ajv = __webpack_require__(190) +var HARError = __webpack_require__(236) +var schemas = __webpack_require__(237) var ajv @@ -33829,7 +33600,7 @@ function createAjvInstance () { var ajv = new Ajv({ allErrors: true }) - ajv.addMetaSchema(__webpack_require__(259)) + ajv.addMetaSchema(__webpack_require__(256)) ajv.addSchema(schemas) return ajv @@ -33924,21 +33695,21 @@ exports.timings = function (data) { /***/ }), -/* 193 */ +/* 190 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var compileSchema = __webpack_require__(194) - , resolve = __webpack_require__(195) - , Cache = __webpack_require__(205) - , SchemaObject = __webpack_require__(200) - , stableStringify = __webpack_require__(203) - , formats = __webpack_require__(206) - , rules = __webpack_require__(207) - , $dataMetaSchema = __webpack_require__(232) - , util = __webpack_require__(198); +var compileSchema = __webpack_require__(191) + , resolve = __webpack_require__(192) + , Cache = __webpack_require__(202) + , SchemaObject = __webpack_require__(197) + , stableStringify = __webpack_require__(200) + , formats = __webpack_require__(203) + , rules = __webpack_require__(204) + , $dataMetaSchema = __webpack_require__(229) + , util = __webpack_require__(195); module.exports = Ajv; @@ -33955,14 +33726,14 @@ Ajv.prototype.errorsText = errorsText; Ajv.prototype._addSchema = _addSchema; Ajv.prototype._compile = _compile; -Ajv.prototype.compileAsync = __webpack_require__(233); -var customKeyword = __webpack_require__(234); +Ajv.prototype.compileAsync = __webpack_require__(230); +var customKeyword = __webpack_require__(231); Ajv.prototype.addKeyword = customKeyword.add; Ajv.prototype.getKeyword = customKeyword.get; Ajv.prototype.removeKeyword = customKeyword.remove; Ajv.prototype.validateKeyword = customKeyword.validate; -var errorClasses = __webpack_require__(202); +var errorClasses = __webpack_require__(199); Ajv.ValidationError = errorClasses.Validation; Ajv.MissingRefError = errorClasses.MissingRef; Ajv.$dataMetaSchema = $dataMetaSchema; @@ -34371,11 +34142,11 @@ function addFormat(name, format) { function addDefaultMetaSchema(self) { var $dataSchema; if (self._opts.$data) { - $dataSchema = __webpack_require__(238); + $dataSchema = __webpack_require__(235); self.addMetaSchema($dataSchema, $dataSchema.$id, true); } if (self._opts.meta === false) return; - var metaSchema = __webpack_require__(237); + var metaSchema = __webpack_require__(234); if (self._opts.$data) metaSchema = $dataMetaSchema(metaSchema, META_SUPPORT_DATA); self.addMetaSchema(metaSchema, META_SCHEMA_ID, true); self._refs['http://json-schema.org/schema'] = META_SCHEMA_ID; @@ -34437,25 +34208,25 @@ function noop() {} /***/ }), -/* 194 */ +/* 191 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var resolve = __webpack_require__(195) - , util = __webpack_require__(198) - , errorClasses = __webpack_require__(202) - , stableStringify = __webpack_require__(203); +var resolve = __webpack_require__(192) + , util = __webpack_require__(195) + , errorClasses = __webpack_require__(199) + , stableStringify = __webpack_require__(200); -var validateGenerator = __webpack_require__(204); +var validateGenerator = __webpack_require__(201); /** * Functions below are used inside compiled validations function */ var ucs2length = util.ucs2length; -var equal = __webpack_require__(197); +var equal = __webpack_require__(194); // this error is thrown by async schemas to return validation errors via exception var ValidationError = errorClasses.Validation; @@ -34831,17 +34602,17 @@ function vars(arr, statement) { /***/ }), -/* 195 */ +/* 192 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var URI = __webpack_require__(196) - , equal = __webpack_require__(197) - , util = __webpack_require__(198) - , SchemaObject = __webpack_require__(200) - , traverse = __webpack_require__(201); +var URI = __webpack_require__(193) + , equal = __webpack_require__(194) + , util = __webpack_require__(195) + , SchemaObject = __webpack_require__(197) + , traverse = __webpack_require__(198); module.exports = resolve; @@ -35108,7 +34879,7 @@ function resolveIds(schema) { /***/ }), -/* 196 */ +/* 193 */ /***/ (function(module, exports, __webpack_require__) { /** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */ @@ -36556,7 +36327,7 @@ Object.defineProperty(exports, '__esModule', { value: true }); /***/ }), -/* 197 */ +/* 194 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -36609,7 +36380,7 @@ module.exports = function equal(a, b) { /***/ }), -/* 198 */ +/* 195 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -36624,8 +36395,8 @@ module.exports = { toHash: toHash, getProperty: getProperty, escapeQuotes: escapeQuotes, - equal: __webpack_require__(197), - ucs2length: __webpack_require__(199), + equal: __webpack_require__(194), + ucs2length: __webpack_require__(196), varOccurences: varOccurences, varReplace: varReplace, schemaHasRules: schemaHasRules, @@ -36855,7 +36626,7 @@ function unescapeJsonPointer(str) { /***/ }), -/* 199 */ +/* 196 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -36882,13 +36653,13 @@ module.exports = function ucs2length(str) { /***/ }), -/* 200 */ +/* 197 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var util = __webpack_require__(198); +var util = __webpack_require__(195); module.exports = SchemaObject; @@ -36898,7 +36669,7 @@ function SchemaObject(obj) { /***/ }), -/* 201 */ +/* 198 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -36994,13 +36765,13 @@ function escapeJsonPtr(str) { /***/ }), -/* 202 */ +/* 199 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var resolve = __webpack_require__(195); +var resolve = __webpack_require__(192); module.exports = { Validation: errorSubclass(ValidationError), @@ -37035,7 +36806,7 @@ function errorSubclass(Subclass) { /***/ }), -/* 203 */ +/* 200 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -37101,7 +36872,7 @@ module.exports = function (data, opts) { /***/ }), -/* 204 */ +/* 201 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -37590,7 +37361,7 @@ module.exports = function generate_validate(it, $keyword, $ruleType) { /***/ }), -/* 205 */ +/* 202 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -37623,13 +37394,13 @@ Cache.prototype.clear = function Cache_clear() { /***/ }), -/* 206 */ +/* 203 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var util = __webpack_require__(198); +var util = __webpack_require__(195); var DATE = /^(\d\d\d\d)-(\d\d)-(\d\d)$/; var DAYS = [0,31,28,31,30,31,30,31,31,30,31,30,31]; @@ -37772,14 +37543,14 @@ function regex(str) { /***/ }), -/* 207 */ +/* 204 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var ruleModules = __webpack_require__(208) - , toHash = __webpack_require__(198).toHash; +var ruleModules = __webpack_require__(205) + , toHash = __webpack_require__(195).toHash; module.exports = function rules() { var RULES = [ @@ -37845,7 +37616,7 @@ module.exports = function rules() { /***/ }), -/* 208 */ +/* 205 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -37853,39 +37624,39 @@ module.exports = function rules() { //all requires must be explicit because browserify won't work with dynamic requires module.exports = { - '$ref': __webpack_require__(209), - allOf: __webpack_require__(210), - anyOf: __webpack_require__(211), - '$comment': __webpack_require__(212), - const: __webpack_require__(213), - contains: __webpack_require__(214), - dependencies: __webpack_require__(215), - 'enum': __webpack_require__(216), - format: __webpack_require__(217), - 'if': __webpack_require__(218), - items: __webpack_require__(219), - maximum: __webpack_require__(220), - minimum: __webpack_require__(220), - maxItems: __webpack_require__(221), - minItems: __webpack_require__(221), - maxLength: __webpack_require__(222), - minLength: __webpack_require__(222), - maxProperties: __webpack_require__(223), - minProperties: __webpack_require__(223), - multipleOf: __webpack_require__(224), - not: __webpack_require__(225), - oneOf: __webpack_require__(226), - pattern: __webpack_require__(227), - properties: __webpack_require__(228), - propertyNames: __webpack_require__(229), - required: __webpack_require__(230), - uniqueItems: __webpack_require__(231), - validate: __webpack_require__(204) + '$ref': __webpack_require__(206), + allOf: __webpack_require__(207), + anyOf: __webpack_require__(208), + '$comment': __webpack_require__(209), + const: __webpack_require__(210), + contains: __webpack_require__(211), + dependencies: __webpack_require__(212), + 'enum': __webpack_require__(213), + format: __webpack_require__(214), + 'if': __webpack_require__(215), + items: __webpack_require__(216), + maximum: __webpack_require__(217), + minimum: __webpack_require__(217), + maxItems: __webpack_require__(218), + minItems: __webpack_require__(218), + maxLength: __webpack_require__(219), + minLength: __webpack_require__(219), + maxProperties: __webpack_require__(220), + minProperties: __webpack_require__(220), + multipleOf: __webpack_require__(221), + not: __webpack_require__(222), + oneOf: __webpack_require__(223), + pattern: __webpack_require__(224), + properties: __webpack_require__(225), + propertyNames: __webpack_require__(226), + required: __webpack_require__(227), + uniqueItems: __webpack_require__(228), + validate: __webpack_require__(201) }; /***/ }), -/* 209 */ +/* 206 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38016,7 +37787,7 @@ module.exports = function generate_ref(it, $keyword, $ruleType) { /***/ }), -/* 210 */ +/* 207 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38065,7 +37836,7 @@ module.exports = function generate_allOf(it, $keyword, $ruleType) { /***/ }), -/* 211 */ +/* 208 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38145,7 +37916,7 @@ module.exports = function generate_anyOf(it, $keyword, $ruleType) { /***/ }), -/* 212 */ +/* 209 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38166,7 +37937,7 @@ module.exports = function generate_comment(it, $keyword, $ruleType) { /***/ }), -/* 213 */ +/* 210 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38229,7 +38000,7 @@ module.exports = function generate_const(it, $keyword, $ruleType) { /***/ }), -/* 214 */ +/* 211 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38317,7 +38088,7 @@ module.exports = function generate_contains(it, $keyword, $ruleType) { /***/ }), -/* 215 */ +/* 212 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38492,7 +38263,7 @@ module.exports = function generate_dependencies(it, $keyword, $ruleType) { /***/ }), -/* 216 */ +/* 213 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38565,7 +38336,7 @@ module.exports = function generate_enum(it, $keyword, $ruleType) { /***/ }), -/* 217 */ +/* 214 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38722,7 +38493,7 @@ module.exports = function generate_format(it, $keyword, $ruleType) { /***/ }), -/* 218 */ +/* 215 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38832,7 +38603,7 @@ module.exports = function generate_if(it, $keyword, $ruleType) { /***/ }), -/* 219 */ +/* 216 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -38979,7 +38750,7 @@ module.exports = function generate_items(it, $keyword, $ruleType) { /***/ }), -/* 220 */ +/* 217 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -39149,7 +38920,7 @@ module.exports = function generate__limit(it, $keyword, $ruleType) { /***/ }), -/* 221 */ +/* 218 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -39236,7 +39007,7 @@ module.exports = function generate__limitItems(it, $keyword, $ruleType) { /***/ }), -/* 222 */ +/* 219 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -39328,7 +39099,7 @@ module.exports = function generate__limitLength(it, $keyword, $ruleType) { /***/ }), -/* 223 */ +/* 220 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -39415,7 +39186,7 @@ module.exports = function generate__limitProperties(it, $keyword, $ruleType) { /***/ }), -/* 224 */ +/* 221 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -39502,7 +39273,7 @@ module.exports = function generate_multipleOf(it, $keyword, $ruleType) { /***/ }), -/* 225 */ +/* 222 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -39593,7 +39364,7 @@ module.exports = function generate_not(it, $keyword, $ruleType) { /***/ }), -/* 226 */ +/* 223 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -39673,7 +39444,7 @@ module.exports = function generate_oneOf(it, $keyword, $ruleType) { /***/ }), -/* 227 */ +/* 224 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -39755,7 +39526,7 @@ module.exports = function generate_pattern(it, $keyword, $ruleType) { /***/ }), -/* 228 */ +/* 225 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -40097,7 +39868,7 @@ module.exports = function generate_properties(it, $keyword, $ruleType) { /***/ }), -/* 229 */ +/* 226 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -40185,7 +39956,7 @@ module.exports = function generate_propertyNames(it, $keyword, $ruleType) { /***/ }), -/* 230 */ +/* 227 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -40462,7 +40233,7 @@ module.exports = function generate_required(it, $keyword, $ruleType) { /***/ }), -/* 231 */ +/* 228 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -40555,7 +40326,7 @@ module.exports = function generate_uniqueItems(it, $keyword, $ruleType) { /***/ }), -/* 232 */ +/* 229 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -40611,13 +40382,13 @@ module.exports = function (metaSchema, keywordsJsonPointers) { /***/ }), -/* 233 */ +/* 230 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var MissingRefError = __webpack_require__(202).MissingRef; +var MissingRefError = __webpack_require__(199).MissingRef; module.exports = compileAsync; @@ -40708,15 +40479,15 @@ function compileAsync(schema, meta, callback) { /***/ }), -/* 234 */ +/* 231 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var IDENTIFIER = /^[a-z_$][a-z0-9_$-]*$/i; -var customRuleCode = __webpack_require__(235); -var definitionSchema = __webpack_require__(236); +var customRuleCode = __webpack_require__(232); +var definitionSchema = __webpack_require__(233); module.exports = { add: addKeyword, @@ -40861,7 +40632,7 @@ function validateKeyword(definition, throwError) { /***/ }), -/* 235 */ +/* 232 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -41096,13 +40867,13 @@ module.exports = function generate_custom(it, $keyword, $ruleType) { /***/ }), -/* 236 */ +/* 233 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var metaSchema = __webpack_require__(237); +var metaSchema = __webpack_require__(234); module.exports = { $id: 'https://github.com/ajv-validator/ajv/blob/master/lib/definition_schema.js', @@ -41140,19 +40911,19 @@ module.exports = { /***/ }), -/* 237 */ +/* 234 */ /***/ (function(module) { module.exports = JSON.parse("{\"$schema\":\"http://json-schema.org/draft-07/schema#\",\"$id\":\"http://json-schema.org/draft-07/schema#\",\"title\":\"Core schema meta-schema\",\"definitions\":{\"schemaArray\":{\"type\":\"array\",\"minItems\":1,\"items\":{\"$ref\":\"#\"}},\"nonNegativeInteger\":{\"type\":\"integer\",\"minimum\":0},\"nonNegativeIntegerDefault0\":{\"allOf\":[{\"$ref\":\"#/definitions/nonNegativeInteger\"},{\"default\":0}]},\"simpleTypes\":{\"enum\":[\"array\",\"boolean\",\"integer\",\"null\",\"number\",\"object\",\"string\"]},\"stringArray\":{\"type\":\"array\",\"items\":{\"type\":\"string\"},\"uniqueItems\":true,\"default\":[]}},\"type\":[\"object\",\"boolean\"],\"properties\":{\"$id\":{\"type\":\"string\",\"format\":\"uri-reference\"},\"$schema\":{\"type\":\"string\",\"format\":\"uri\"},\"$ref\":{\"type\":\"string\",\"format\":\"uri-reference\"},\"$comment\":{\"type\":\"string\"},\"title\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"default\":true,\"readOnly\":{\"type\":\"boolean\",\"default\":false},\"examples\":{\"type\":\"array\",\"items\":true},\"multipleOf\":{\"type\":\"number\",\"exclusiveMinimum\":0},\"maximum\":{\"type\":\"number\"},\"exclusiveMaximum\":{\"type\":\"number\"},\"minimum\":{\"type\":\"number\"},\"exclusiveMinimum\":{\"type\":\"number\"},\"maxLength\":{\"$ref\":\"#/definitions/nonNegativeInteger\"},\"minLength\":{\"$ref\":\"#/definitions/nonNegativeIntegerDefault0\"},\"pattern\":{\"type\":\"string\",\"format\":\"regex\"},\"additionalItems\":{\"$ref\":\"#\"},\"items\":{\"anyOf\":[{\"$ref\":\"#\"},{\"$ref\":\"#/definitions/schemaArray\"}],\"default\":true},\"maxItems\":{\"$ref\":\"#/definitions/nonNegativeInteger\"},\"minItems\":{\"$ref\":\"#/definitions/nonNegativeIntegerDefault0\"},\"uniqueItems\":{\"type\":\"boolean\",\"default\":false},\"contains\":{\"$ref\":\"#\"},\"maxProperties\":{\"$ref\":\"#/definitions/nonNegativeInteger\"},\"minProperties\":{\"$ref\":\"#/definitions/nonNegativeIntegerDefault0\"},\"required\":{\"$ref\":\"#/definitions/stringArray\"},\"additionalProperties\":{\"$ref\":\"#\"},\"definitions\":{\"type\":\"object\",\"additionalProperties\":{\"$ref\":\"#\"},\"default\":{}},\"properties\":{\"type\":\"object\",\"additionalProperties\":{\"$ref\":\"#\"},\"default\":{}},\"patternProperties\":{\"type\":\"object\",\"additionalProperties\":{\"$ref\":\"#\"},\"propertyNames\":{\"format\":\"regex\"},\"default\":{}},\"dependencies\":{\"type\":\"object\",\"additionalProperties\":{\"anyOf\":[{\"$ref\":\"#\"},{\"$ref\":\"#/definitions/stringArray\"}]}},\"propertyNames\":{\"$ref\":\"#\"},\"const\":true,\"enum\":{\"type\":\"array\",\"items\":true,\"minItems\":1,\"uniqueItems\":true},\"type\":{\"anyOf\":[{\"$ref\":\"#/definitions/simpleTypes\"},{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/simpleTypes\"},\"minItems\":1,\"uniqueItems\":true}]},\"format\":{\"type\":\"string\"},\"contentMediaType\":{\"type\":\"string\"},\"contentEncoding\":{\"type\":\"string\"},\"if\":{\"$ref\":\"#\"},\"then\":{\"$ref\":\"#\"},\"else\":{\"$ref\":\"#\"},\"allOf\":{\"$ref\":\"#/definitions/schemaArray\"},\"anyOf\":{\"$ref\":\"#/definitions/schemaArray\"},\"oneOf\":{\"$ref\":\"#/definitions/schemaArray\"},\"not\":{\"$ref\":\"#\"}},\"default\":true}"); /***/ }), -/* 238 */ +/* 235 */ /***/ (function(module) { module.exports = JSON.parse("{\"$schema\":\"http://json-schema.org/draft-07/schema#\",\"$id\":\"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#\",\"description\":\"Meta-schema for $data reference (JSON Schema extension proposal)\",\"type\":\"object\",\"required\":[\"$data\"],\"properties\":{\"$data\":{\"type\":\"string\",\"anyOf\":[{\"format\":\"relative-json-pointer\"},{\"format\":\"json-pointer\"}]}},\"additionalProperties\":false}"); /***/ }), -/* 239 */ +/* 236 */ /***/ (function(module, exports) { function HARError (errors) { @@ -41175,157 +40946,157 @@ module.exports = HARError /***/ }), -/* 240 */ +/* 237 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; module.exports = { - afterRequest: __webpack_require__(241), - beforeRequest: __webpack_require__(242), - browser: __webpack_require__(243), - cache: __webpack_require__(244), - content: __webpack_require__(245), - cookie: __webpack_require__(246), - creator: __webpack_require__(247), - entry: __webpack_require__(248), - har: __webpack_require__(249), - header: __webpack_require__(250), - log: __webpack_require__(251), - page: __webpack_require__(252), - pageTimings: __webpack_require__(253), - postData: __webpack_require__(254), - query: __webpack_require__(255), - request: __webpack_require__(256), - response: __webpack_require__(257), - timings: __webpack_require__(258) + afterRequest: __webpack_require__(238), + beforeRequest: __webpack_require__(239), + browser: __webpack_require__(240), + cache: __webpack_require__(241), + content: __webpack_require__(242), + cookie: __webpack_require__(243), + creator: __webpack_require__(244), + entry: __webpack_require__(245), + har: __webpack_require__(246), + header: __webpack_require__(247), + log: __webpack_require__(248), + page: __webpack_require__(249), + pageTimings: __webpack_require__(250), + postData: __webpack_require__(251), + query: __webpack_require__(252), + request: __webpack_require__(253), + response: __webpack_require__(254), + timings: __webpack_require__(255) } /***/ }), -/* 241 */ +/* 238 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"afterRequest.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"optional\":true,\"required\":[\"lastAccess\",\"eTag\",\"hitCount\"],\"properties\":{\"expires\":{\"type\":\"string\",\"pattern\":\"^(\\\\d{4})(-)?(\\\\d\\\\d)(-)?(\\\\d\\\\d)(T)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(\\\\.\\\\d+)?(Z|([+-])(\\\\d\\\\d)(:)?(\\\\d\\\\d))?\"},\"lastAccess\":{\"type\":\"string\",\"pattern\":\"^(\\\\d{4})(-)?(\\\\d\\\\d)(-)?(\\\\d\\\\d)(T)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(\\\\.\\\\d+)?(Z|([+-])(\\\\d\\\\d)(:)?(\\\\d\\\\d))?\"},\"eTag\":{\"type\":\"string\"},\"hitCount\":{\"type\":\"integer\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 242 */ +/* 239 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"beforeRequest.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"optional\":true,\"required\":[\"lastAccess\",\"eTag\",\"hitCount\"],\"properties\":{\"expires\":{\"type\":\"string\",\"pattern\":\"^(\\\\d{4})(-)?(\\\\d\\\\d)(-)?(\\\\d\\\\d)(T)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(\\\\.\\\\d+)?(Z|([+-])(\\\\d\\\\d)(:)?(\\\\d\\\\d))?\"},\"lastAccess\":{\"type\":\"string\",\"pattern\":\"^(\\\\d{4})(-)?(\\\\d\\\\d)(-)?(\\\\d\\\\d)(T)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(\\\\.\\\\d+)?(Z|([+-])(\\\\d\\\\d)(:)?(\\\\d\\\\d))?\"},\"eTag\":{\"type\":\"string\"},\"hitCount\":{\"type\":\"integer\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 243 */ +/* 240 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"browser.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"required\":[\"name\",\"version\"],\"properties\":{\"name\":{\"type\":\"string\"},\"version\":{\"type\":\"string\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 244 */ +/* 241 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"cache.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"properties\":{\"beforeRequest\":{\"oneOf\":[{\"type\":\"null\"},{\"$ref\":\"beforeRequest.json#\"}]},\"afterRequest\":{\"oneOf\":[{\"type\":\"null\"},{\"$ref\":\"afterRequest.json#\"}]},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 245 */ +/* 242 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"content.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"required\":[\"size\",\"mimeType\"],\"properties\":{\"size\":{\"type\":\"integer\"},\"compression\":{\"type\":\"integer\"},\"mimeType\":{\"type\":\"string\"},\"text\":{\"type\":\"string\"},\"encoding\":{\"type\":\"string\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 246 */ +/* 243 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"cookie.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"required\":[\"name\",\"value\"],\"properties\":{\"name\":{\"type\":\"string\"},\"value\":{\"type\":\"string\"},\"path\":{\"type\":\"string\"},\"domain\":{\"type\":\"string\"},\"expires\":{\"type\":[\"string\",\"null\"],\"format\":\"date-time\"},\"httpOnly\":{\"type\":\"boolean\"},\"secure\":{\"type\":\"boolean\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 247 */ +/* 244 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"creator.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"required\":[\"name\",\"version\"],\"properties\":{\"name\":{\"type\":\"string\"},\"version\":{\"type\":\"string\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 248 */ +/* 245 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"entry.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"optional\":true,\"required\":[\"startedDateTime\",\"time\",\"request\",\"response\",\"cache\",\"timings\"],\"properties\":{\"pageref\":{\"type\":\"string\"},\"startedDateTime\":{\"type\":\"string\",\"format\":\"date-time\",\"pattern\":\"^(\\\\d{4})(-)?(\\\\d\\\\d)(-)?(\\\\d\\\\d)(T)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(\\\\.\\\\d+)?(Z|([+-])(\\\\d\\\\d)(:)?(\\\\d\\\\d))\"},\"time\":{\"type\":\"number\",\"min\":0},\"request\":{\"$ref\":\"request.json#\"},\"response\":{\"$ref\":\"response.json#\"},\"cache\":{\"$ref\":\"cache.json#\"},\"timings\":{\"$ref\":\"timings.json#\"},\"serverIPAddress\":{\"type\":\"string\",\"oneOf\":[{\"format\":\"ipv4\"},{\"format\":\"ipv6\"}]},\"connection\":{\"type\":\"string\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 249 */ +/* 246 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"har.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"required\":[\"log\"],\"properties\":{\"log\":{\"$ref\":\"log.json#\"}}}"); /***/ }), -/* 250 */ +/* 247 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"header.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"required\":[\"name\",\"value\"],\"properties\":{\"name\":{\"type\":\"string\"},\"value\":{\"type\":\"string\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 251 */ +/* 248 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"log.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"required\":[\"version\",\"creator\",\"entries\"],\"properties\":{\"version\":{\"type\":\"string\"},\"creator\":{\"$ref\":\"creator.json#\"},\"browser\":{\"$ref\":\"browser.json#\"},\"pages\":{\"type\":\"array\",\"items\":{\"$ref\":\"page.json#\"}},\"entries\":{\"type\":\"array\",\"items\":{\"$ref\":\"entry.json#\"}},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 252 */ +/* 249 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"page.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"optional\":true,\"required\":[\"startedDateTime\",\"id\",\"title\",\"pageTimings\"],\"properties\":{\"startedDateTime\":{\"type\":\"string\",\"format\":\"date-time\",\"pattern\":\"^(\\\\d{4})(-)?(\\\\d\\\\d)(-)?(\\\\d\\\\d)(T)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(:)?(\\\\d\\\\d)(\\\\.\\\\d+)?(Z|([+-])(\\\\d\\\\d)(:)?(\\\\d\\\\d))\"},\"id\":{\"type\":\"string\",\"unique\":true},\"title\":{\"type\":\"string\"},\"pageTimings\":{\"$ref\":\"pageTimings.json#\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 253 */ +/* 250 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"pageTimings.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"properties\":{\"onContentLoad\":{\"type\":\"number\",\"min\":-1},\"onLoad\":{\"type\":\"number\",\"min\":-1},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 254 */ +/* 251 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"postData.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"optional\":true,\"required\":[\"mimeType\"],\"properties\":{\"mimeType\":{\"type\":\"string\"},\"text\":{\"type\":\"string\"},\"params\":{\"type\":\"array\",\"required\":[\"name\"],\"properties\":{\"name\":{\"type\":\"string\"},\"value\":{\"type\":\"string\"},\"fileName\":{\"type\":\"string\"},\"contentType\":{\"type\":\"string\"},\"comment\":{\"type\":\"string\"}}},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 255 */ +/* 252 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"query.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"required\":[\"name\",\"value\"],\"properties\":{\"name\":{\"type\":\"string\"},\"value\":{\"type\":\"string\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 256 */ +/* 253 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"request.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"required\":[\"method\",\"url\",\"httpVersion\",\"cookies\",\"headers\",\"queryString\",\"headersSize\",\"bodySize\"],\"properties\":{\"method\":{\"type\":\"string\"},\"url\":{\"type\":\"string\",\"format\":\"uri\"},\"httpVersion\":{\"type\":\"string\"},\"cookies\":{\"type\":\"array\",\"items\":{\"$ref\":\"cookie.json#\"}},\"headers\":{\"type\":\"array\",\"items\":{\"$ref\":\"header.json#\"}},\"queryString\":{\"type\":\"array\",\"items\":{\"$ref\":\"query.json#\"}},\"postData\":{\"$ref\":\"postData.json#\"},\"headersSize\":{\"type\":\"integer\"},\"bodySize\":{\"type\":\"integer\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 257 */ +/* 254 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"response.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"type\":\"object\",\"required\":[\"status\",\"statusText\",\"httpVersion\",\"cookies\",\"headers\",\"content\",\"redirectURL\",\"headersSize\",\"bodySize\"],\"properties\":{\"status\":{\"type\":\"integer\"},\"statusText\":{\"type\":\"string\"},\"httpVersion\":{\"type\":\"string\"},\"cookies\":{\"type\":\"array\",\"items\":{\"$ref\":\"cookie.json#\"}},\"headers\":{\"type\":\"array\",\"items\":{\"$ref\":\"header.json#\"}},\"content\":{\"$ref\":\"content.json#\"},\"redirectURL\":{\"type\":\"string\"},\"headersSize\":{\"type\":\"integer\"},\"bodySize\":{\"type\":\"integer\"},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 258 */ +/* 255 */ /***/ (function(module) { module.exports = JSON.parse("{\"$id\":\"timings.json#\",\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"required\":[\"send\",\"wait\",\"receive\"],\"properties\":{\"dns\":{\"type\":\"number\",\"min\":-1},\"connect\":{\"type\":\"number\",\"min\":-1},\"blocked\":{\"type\":\"number\",\"min\":-1},\"send\":{\"type\":\"number\",\"min\":-1},\"wait\":{\"type\":\"number\",\"min\":-1},\"receive\":{\"type\":\"number\",\"min\":-1},\"ssl\":{\"type\":\"number\",\"min\":-1},\"comment\":{\"type\":\"string\"}}}"); /***/ }), -/* 259 */ +/* 256 */ /***/ (function(module) { module.exports = JSON.parse("{\"$schema\":\"http://json-schema.org/draft-06/schema#\",\"$id\":\"http://json-schema.org/draft-06/schema#\",\"title\":\"Core schema meta-schema\",\"definitions\":{\"schemaArray\":{\"type\":\"array\",\"minItems\":1,\"items\":{\"$ref\":\"#\"}},\"nonNegativeInteger\":{\"type\":\"integer\",\"minimum\":0},\"nonNegativeIntegerDefault0\":{\"allOf\":[{\"$ref\":\"#/definitions/nonNegativeInteger\"},{\"default\":0}]},\"simpleTypes\":{\"enum\":[\"array\",\"boolean\",\"integer\",\"null\",\"number\",\"object\",\"string\"]},\"stringArray\":{\"type\":\"array\",\"items\":{\"type\":\"string\"},\"uniqueItems\":true,\"default\":[]}},\"type\":[\"object\",\"boolean\"],\"properties\":{\"$id\":{\"type\":\"string\",\"format\":\"uri-reference\"},\"$schema\":{\"type\":\"string\",\"format\":\"uri\"},\"$ref\":{\"type\":\"string\",\"format\":\"uri-reference\"},\"title\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"default\":{},\"examples\":{\"type\":\"array\",\"items\":{}},\"multipleOf\":{\"type\":\"number\",\"exclusiveMinimum\":0},\"maximum\":{\"type\":\"number\"},\"exclusiveMaximum\":{\"type\":\"number\"},\"minimum\":{\"type\":\"number\"},\"exclusiveMinimum\":{\"type\":\"number\"},\"maxLength\":{\"$ref\":\"#/definitions/nonNegativeInteger\"},\"minLength\":{\"$ref\":\"#/definitions/nonNegativeIntegerDefault0\"},\"pattern\":{\"type\":\"string\",\"format\":\"regex\"},\"additionalItems\":{\"$ref\":\"#\"},\"items\":{\"anyOf\":[{\"$ref\":\"#\"},{\"$ref\":\"#/definitions/schemaArray\"}],\"default\":{}},\"maxItems\":{\"$ref\":\"#/definitions/nonNegativeInteger\"},\"minItems\":{\"$ref\":\"#/definitions/nonNegativeIntegerDefault0\"},\"uniqueItems\":{\"type\":\"boolean\",\"default\":false},\"contains\":{\"$ref\":\"#\"},\"maxProperties\":{\"$ref\":\"#/definitions/nonNegativeInteger\"},\"minProperties\":{\"$ref\":\"#/definitions/nonNegativeIntegerDefault0\"},\"required\":{\"$ref\":\"#/definitions/stringArray\"},\"additionalProperties\":{\"$ref\":\"#\"},\"definitions\":{\"type\":\"object\",\"additionalProperties\":{\"$ref\":\"#\"},\"default\":{}},\"properties\":{\"type\":\"object\",\"additionalProperties\":{\"$ref\":\"#\"},\"default\":{}},\"patternProperties\":{\"type\":\"object\",\"additionalProperties\":{\"$ref\":\"#\"},\"default\":{}},\"dependencies\":{\"type\":\"object\",\"additionalProperties\":{\"anyOf\":[{\"$ref\":\"#\"},{\"$ref\":\"#/definitions/stringArray\"}]}},\"propertyNames\":{\"$ref\":\"#\"},\"const\":{},\"enum\":{\"type\":\"array\",\"minItems\":1,\"uniqueItems\":true},\"type\":{\"anyOf\":[{\"$ref\":\"#/definitions/simpleTypes\"},{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/simpleTypes\"},\"minItems\":1,\"uniqueItems\":true}]},\"format\":{\"type\":\"string\"},\"allOf\":{\"$ref\":\"#/definitions/schemaArray\"},\"anyOf\":{\"$ref\":\"#/definitions/schemaArray\"},\"oneOf\":{\"$ref\":\"#/definitions/schemaArray\"},\"not\":{\"$ref\":\"#\"}},\"default\":{}}"); /***/ }), -/* 260 */ +/* 257 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var caseless = __webpack_require__(161) -var uuid = __webpack_require__(261) +var uuid = __webpack_require__(258) var helpers = __webpack_require__(93) var md5 = helpers.md5 @@ -41492,11 +41263,11 @@ exports.Auth = Auth /***/ }), -/* 261 */ +/* 258 */ /***/ (function(module, exports, __webpack_require__) { -var rng = __webpack_require__(262); -var bytesToUuid = __webpack_require__(263); +var rng = __webpack_require__(259); +var bytesToUuid = __webpack_require__(260); function v4(options, buf, offset) { var i = buf && offset || 0; @@ -41527,7 +41298,7 @@ module.exports = v4; /***/ }), -/* 262 */ +/* 259 */ /***/ (function(module, exports, __webpack_require__) { // Unique ID creation requires a high quality random # generator. In node.js @@ -41541,7 +41312,7 @@ module.exports = function nodeRNG() { /***/ }), -/* 263 */ +/* 260 */ /***/ (function(module, exports) { /** @@ -41573,17 +41344,17 @@ module.exports = bytesToUuid; /***/ }), -/* 264 */ +/* 261 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var url = __webpack_require__(83) -var qs = __webpack_require__(186) +var qs = __webpack_require__(183) var caseless = __webpack_require__(161) -var uuid = __webpack_require__(261) -var oauth = __webpack_require__(265) +var uuid = __webpack_require__(258) +var oauth = __webpack_require__(262) var crypto = __webpack_require__(94) var Buffer = __webpack_require__(95).Buffer @@ -41728,7 +41499,7 @@ exports.OAuth = OAuth /***/ }), -/* 265 */ +/* 262 */ /***/ (function(module, exports, __webpack_require__) { var crypto = __webpack_require__(94) @@ -41879,7 +41650,7 @@ exports.rfc3986 = rfc3986 exports.generateBase = generateBase /***/ }), -/* 266 */ +/* 263 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -41975,15 +41746,15 @@ exports.header = function (uri, method, opts) { /***/ }), -/* 267 */ +/* 264 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var uuid = __webpack_require__(261) +var uuid = __webpack_require__(258) var CombinedStream = __webpack_require__(165) -var isstream = __webpack_require__(182) +var isstream = __webpack_require__(179) var Buffer = __webpack_require__(95).Buffer function Multipart (request) { @@ -42094,7 +41865,7 @@ exports.Multipart = Multipart /***/ }), -/* 268 */ +/* 265 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -42255,14 +42026,14 @@ exports.Redirect = Redirect /***/ }), -/* 269 */ +/* 266 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; var url = __webpack_require__(83) -var tunnel = __webpack_require__(270) +var tunnel = __webpack_require__(267) var defaultProxyHeaderWhiteList = [ 'accept', @@ -42437,7 +42208,7 @@ exports.Tunnel = Tunnel /***/ }), -/* 270 */ +/* 267 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -42447,7 +42218,7 @@ var net = __webpack_require__(82) , tls = __webpack_require__(163) , http = __webpack_require__(98) , https = __webpack_require__(99) - , events = __webpack_require__(271) + , events = __webpack_require__(268) , assert = __webpack_require__(109) , util = __webpack_require__(9) , Buffer = __webpack_require__(95).Buffer @@ -42688,13 +42459,13 @@ exports.debug = debug // for test /***/ }), -/* 271 */ +/* 268 */ /***/ (function(module, exports) { module.exports = require("events"); /***/ }), -/* 272 */ +/* 269 */ /***/ (function(module, exports) { // Generated by CoffeeScript 1.12.2 @@ -42736,10 +42507,10 @@ module.exports = require("events"); /***/ }), -/* 273 */ +/* 270 */ /***/ (function(module, exports, __webpack_require__) { -var clone = __webpack_require__(274); +var clone = __webpack_require__(271); var debugId = 0 @@ -42834,7 +42605,7 @@ exports.log = function(type, data, r) { /***/ }), -/* 274 */ +/* 271 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -42846,1564 +42617,1214 @@ module.exports = function (obj) { /***/ }), -/* 275 */ +/* 272 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.root = exports.parseHTML = exports.merge = exports.contains = void 0; -var tslib_1 = __webpack_require__(276); /** - * Types used in signatures of Cheerio methods. - * - * @category Cheerio + * @module cheerio + * @borrows static.load as load + * @borrows static.html as html + * @borrows static.text as text + * @borrows static.xml as xml */ -tslib_1.__exportStar(__webpack_require__(277), exports); -tslib_1.__exportStar(__webpack_require__(278), exports); -var load_1 = __webpack_require__(278); +var staticMethods = __webpack_require__(273); + +exports = module.exports = __webpack_require__(363); + /** - * The default cheerio instance. + * An identifier describing the version of Cheerio which has been executed. * - * @deprecated Use the function returned by `load` instead. + * @type {string} */ -exports.default = load_1.load([]); -var staticMethods = tslib_1.__importStar(__webpack_require__(280)); +exports.version = __webpack_require__(370).version; + +exports.load = staticMethods.load; +exports.html = staticMethods.html; +exports.text = staticMethods.text; +exports.xml = staticMethods.xml; + /** - * In order to promote consistency with the jQuery library, users are encouraged - * to instead use the static method of the same name. + * In order to promote consistency with the jQuery library, users are + * encouraged to instead use the static method of the same name. * - * @deprecated * @example + * var $ = cheerio.load('<div><p></p></div>'); + * $.contains($('div').get(0), $('p').get(0)); // true + * $.contains($('p').get(0), $('div').get(0)); // false * - * ```js - * const $ = cheerio.load('<div><p></p></div>'); - * - * $.contains($('div').get(0), $('p').get(0)); - * //=> true - * - * $.contains($('p').get(0), $('div').get(0)); - * //=> false - * ``` - * + * @function * @returns {boolean} + * @deprecated */ exports.contains = staticMethods.contains; + /** - * In order to promote consistency with the jQuery library, users are encouraged - * to instead use the static method of the same name. + * In order to promote consistency with the jQuery library, users are + * encouraged to instead use the static method of the same name. * - * @deprecated * @example + * var $ = cheerio.load(''); + * $.merge([1, 2], [3, 4]) // [1, 2, 3, 4] * - * ```js - * const $ = cheerio.load(''); - * - * $.merge([1, 2], [3, 4]); - * //=> [1, 2, 3, 4] - * ``` + * @function + * @deprecated */ exports.merge = staticMethods.merge; + /** - * In order to promote consistency with the jQuery library, users are encouraged - * to instead use the static method of the same name as it is defined on the - * "loaded" Cheerio factory function. + * In order to promote consistency with the jQuery library, users are + * encouraged to instead use the static method of the same name as it is + * defined on the "loaded" Cheerio factory function. * - * @deprecated See {@link static/parseHTML}. * @example + * var $ = cheerio.load(''); + * $.parseHTML('<b>markup</b>'); * - * ```js - * const $ = cheerio.load(''); - * $.parseHTML('<b>markup</b>'); - * ``` + * @function + * @deprecated See {@link static/parseHTML}. */ exports.parseHTML = staticMethods.parseHTML; + /** * Users seeking to access the top-level element of a parsed document should * instead use the `root` static method of a "loaded" Cheerio function. * - * @deprecated * @example + * var $ = cheerio.load(''); + * $.root(); * - * ```js - * const $ = cheerio.load(''); - * $.root(); - * ``` + * @function + * @deprecated */ exports.root = staticMethods.root; /***/ }), -/* 276 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__extends", function() { return __extends; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__assign", function() { return __assign; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__rest", function() { return __rest; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__decorate", function() { return __decorate; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__param", function() { return __param; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__metadata", function() { return __metadata; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__awaiter", function() { return __awaiter; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__generator", function() { return __generator; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__createBinding", function() { return __createBinding; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__exportStar", function() { return __exportStar; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__values", function() { return __values; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__read", function() { return __read; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spread", function() { return __spread; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArrays", function() { return __spreadArrays; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__spreadArray", function() { return __spreadArray; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__await", function() { return __await; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncGenerator", function() { return __asyncGenerator; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncDelegator", function() { return __asyncDelegator; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__asyncValues", function() { return __asyncValues; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__makeTemplateObject", function() { return __makeTemplateObject; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__importStar", function() { return __importStar; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__importDefault", function() { return __importDefault; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__classPrivateFieldGet", function() { return __classPrivateFieldGet; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__classPrivateFieldSet", function() { return __classPrivateFieldSet; }); -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -***************************************************************************** */ -/* global Reflect, Promise */ - -var extendStatics = function(d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); -}; - -function __extends(d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); -} - -var __assign = function() { - __assign = Object.assign || function __assign(t) { - for (var s, i = 1, n = arguments.length; i < n; i++) { - s = arguments[i]; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; - } - return t; - } - return __assign.apply(this, arguments); -} - -function __rest(s, e) { - var t = {}; - for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) - t[p] = s[p]; - if (s != null && typeof Object.getOwnPropertySymbols === "function") - for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { - if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) - t[p[i]] = s[p[i]]; - } - return t; -} - -function __decorate(decorators, target, key, desc) { - var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; - if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); - else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; - return c > 3 && r && Object.defineProperty(target, key, r), r; -} - -function __param(paramIndex, decorator) { - return function (target, key) { decorator(target, key, paramIndex); } -} - -function __metadata(metadataKey, metadataValue) { - if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); -} - -function __awaiter(thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -} - -function __generator(thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; - } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; - } -} - -var __createBinding = Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -}); - -function __exportStar(m, o) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); -} - -function __values(o) { - var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; - if (m) return m.call(o); - if (o && typeof o.length === "number") return { - next: function () { - if (o && i >= o.length) o = void 0; - return { value: o && o[i++], done: !o }; - } - }; - throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); -} - -function __read(o, n) { - var m = typeof Symbol === "function" && o[Symbol.iterator]; - if (!m) return o; - var i = m.call(o), r, ar = [], e; - try { - while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); - } - catch (error) { e = { error: error }; } - finally { - try { - if (r && !r.done && (m = i["return"])) m.call(i); - } - finally { if (e) throw e.error; } - } - return ar; -} - -/** @deprecated */ -function __spread() { - for (var ar = [], i = 0; i < arguments.length; i++) - ar = ar.concat(__read(arguments[i])); - return ar; -} - -/** @deprecated */ -function __spreadArrays() { - for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; - for (var r = Array(s), k = 0, i = 0; i < il; i++) - for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) - r[k] = a[j]; - return r; -} - -function __spreadArray(to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; - } - } - return to.concat(ar || Array.prototype.slice.call(from)); -} - -function __await(v) { - return this instanceof __await ? (this.v = v, this) : new __await(v); -} - -function __asyncGenerator(thisArg, _arguments, generator) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var g = generator.apply(thisArg, _arguments || []), i, q = []; - return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; - function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } - function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } - function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } - function fulfill(value) { resume("next", value); } - function reject(value) { resume("throw", value); } - function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } -} - -function __asyncDelegator(o) { - var i, p; - return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i; - function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; } -} - -function __asyncValues(o) { - if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); - var m = o[Symbol.asyncIterator], i; - return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i); - function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } - function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); } -} - -function __makeTemplateObject(cooked, raw) { - if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; } - return cooked; -}; - -var __setModuleDefault = Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}; - -function __importStar(mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -} - -function __importDefault(mod) { - return (mod && mod.__esModule) ? mod : { default: mod }; -} - -function __classPrivateFieldGet(receiver, state, kind, f) { - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); - return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); -} - -function __classPrivateFieldSet(receiver, state, value, kind, f) { - if (kind === "m") throw new TypeError("Private method is not writable"); - if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); - if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); - return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; -} - - -/***/ }), -/* 277 */ +/* 273 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); - +var htmlparser2Adapter = __webpack_require__(274); -/***/ }), -/* 278 */ -/***/ (function(module, exports, __webpack_require__) { +/** + * @module cheerio/static + * @ignore + */ -"use strict"; +var serialize = __webpack_require__(277).default; +var defaultOptions = __webpack_require__(288).default; +var flattenOptions = __webpack_require__(288).flatten; +var select = __webpack_require__(289).select; +var parse5 = __webpack_require__(327); +var parse = __webpack_require__(351); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.load = void 0; -var tslib_1 = __webpack_require__(276); -var options_1 = tslib_1.__importStar(__webpack_require__(279)); -var staticMethods = tslib_1.__importStar(__webpack_require__(280)); -var cheerio_1 = __webpack_require__(361); -var parse_1 = tslib_1.__importDefault(__webpack_require__(362)); /** * Create a querying function, bound to a document created from the provided * markup. Note that similar to web browser contexts, this operation may - * introduce `<html>`, `<head>`, and `<body>` elements; set `isDocument` to - * `false` to switch to fragment mode and disable this. - * - * @param content - Markup to be loaded. - * @param options - Options for the created instance. - * @param isDocument - Allows parser to be switched to fragment mode. - * @returns The loaded document. - * @see {@link https://cheerio.js.org#loading} for additional usage information. - */ -function load(content, options, isDocument) { - if (isDocument === void 0) { isDocument = true; } - if (content == null) { - throw new Error('cheerio.load() expects a string'); - } - var internalOpts = tslib_1.__assign(tslib_1.__assign({}, options_1.default), options_1.flatten(options)); - var root = parse_1.default(content, internalOpts, isDocument); - /** Create an extended class here, so that extensions only live on one instance. */ - var LoadedCheerio = /** @class */ (function (_super) { - tslib_1.__extends(LoadedCheerio, _super); - function LoadedCheerio() { - return _super !== null && _super.apply(this, arguments) || this; - } - return LoadedCheerio; - }(cheerio_1.Cheerio)); - function initialize(selector, context, r, opts) { - if (r === void 0) { r = root; } - return new LoadedCheerio(selector, context, r, tslib_1.__assign(tslib_1.__assign({}, internalOpts), options_1.flatten(opts))); - } - // Add in static methods & properties - Object.assign(initialize, staticMethods, { - load: load, - // `_root` and `_options` are used in static methods. - _root: root, - _options: internalOpts, - // Add `fn` for plugins - fn: LoadedCheerio.prototype, - // Add the prototype here to maintain `instanceof` behavior. - prototype: LoadedCheerio.prototype, - }); - return initialize; -} -exports.load = load; + * introduce `<html>`, `<head>`, and `<body>` elements; set `isDocument` to `false` + * to switch to fragment mode and disable this. + * + * See the README section titled "Loading" for additional usage information. + * + * @param {string} content - Markup to be loaded. + * @param {object} [options] - Options for the created instance. + * @param {boolean} [isDocument] - Allows parser to be switched to fragment mode. + * + */ +exports.load = function (content, options, isDocument) { + if (content === null || content === undefined) { + throw new Error('cheerio.load() expects a string'); + } + var Cheerio = __webpack_require__(363); -/***/ }), -/* 279 */ -/***/ (function(module, exports, __webpack_require__) { + options = Object.assign({}, defaultOptions, flattenOptions(options)); -"use strict"; + if (isDocument === void 0) isDocument = true; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.flatten = void 0; -var tslib_1 = __webpack_require__(276); -var defaultOpts = { - xml: false, - decodeEntities: true, -}; -/** Cheerio default options. */ -exports.default = defaultOpts; -var xmlModeDefault = { - _useHtmlParser2: true, - xmlMode: true, -}; -function flatten(options) { - return (options === null || options === void 0 ? void 0 : options.xml) - ? typeof options.xml === 'boolean' - ? xmlModeDefault - : tslib_1.__assign(tslib_1.__assign({}, xmlModeDefault), options.xml) - : options !== null && options !== void 0 ? options : undefined; -} -exports.flatten = flatten; + var root = parse(content, options, isDocument); + var initialize = function (selector, context, r, opts) { + if (!(this instanceof initialize)) { + return new initialize(selector, context, r, opts); + } + opts = Object.assign({}, options, opts); + return Cheerio.call(this, selector, context, r || root, opts); + }; -/***/ }), -/* 280 */ -/***/ (function(module, exports, __webpack_require__) { + // Ensure that selections created by the "loaded" `initialize` function are + // true Cheerio instances. + initialize.prototype = Object.create(Cheerio.prototype); + initialize.prototype.constructor = initialize; -"use strict"; + // Mimic jQuery's prototype alias for plugin authors. + initialize.fn = initialize.prototype; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.merge = exports.contains = exports.root = exports.parseHTML = exports.text = exports.xml = exports.html = void 0; -var tslib_1 = __webpack_require__(276); -var options_1 = tslib_1.__importStar(__webpack_require__(279)); -var cheerio_select_1 = __webpack_require__(281); -var htmlparser2_1 = __webpack_require__(325); -var parse5_adapter_1 = __webpack_require__(332); -var htmlparser2_adapter_1 = __webpack_require__(358); -/** - * Helper function to render a DOM. - * - * @param that - Cheerio instance to render. - * @param dom - The DOM to render. Defaults to `that`'s root. - * @param options - Options for rendering. - * @returns The rendered document. + // Keep a reference to the top-level scope so we can chain methods that implicitly + // resolve selectors; e.g. $("<span>").(".bar"), which otherwise loses ._root + initialize.prototype._originalRoot = root; + + // Add in the static methods + Object.assign(initialize, exports); + + // Add in the root + initialize._root = root; + // store options + initialize._options = options; + + return initialize; +}; + +/* + * Helper function */ + function render(that, dom, options) { - var _a; - var toRender = dom - ? typeof dom === 'string' - ? cheerio_select_1.select(dom, (_a = that === null || that === void 0 ? void 0 : that._root) !== null && _a !== void 0 ? _a : [], options) - : dom - : that === null || that === void 0 ? void 0 : that._root.children; - if (!toRender) - return ''; - return options.xmlMode || options._useHtmlParser2 - ? htmlparser2_adapter_1.render(toRender, options) - : parse5_adapter_1.render(toRender); + if (!dom) { + if (that._root && that._root.children) { + dom = that._root.children; + } else { + return ''; + } + } else if (typeof dom === 'string') { + dom = select(dom, that._root, options); + } + + if (options.xmlMode || options._useHtmlParser2) { + return serialize(dom, options); + } + + // `dom-serializer` passes over the special "root" node and renders the + // node's children in its place. To mimic this behavior with `parse5`, an + // equivalent operation must be applied to the input array. + var nodes = 'length' in dom ? dom : [dom]; + for (var index = 0; index < nodes.length; index += 1) { + if (nodes[index].type === 'root') { + nodes.splice.apply(nodes, [index, 1].concat(nodes[index].children)); + } + } + + return parse5.serialize( + { children: nodes }, + { treeAdapter: htmlparser2Adapter } + ); } + /** - * Checks if a passed object is an options object. + * Renders the document. * - * @param dom - Object to check if it is an options object. - * @returns Whether the object is an options object. + * @param {string|cheerio|node} [dom] - Element to render. + * @param {object} [options] - Options for the renderer. */ -function isOptions(dom) { - return (typeof dom === 'object' && - dom != null && - !('length' in dom) && - !('type' in dom)); -} -function html(dom, options) { - /* - * Be flexible about parameters, sometimes we call html(), - * with options as only parameter - * check dom argument for dom element specific properties - * assume there is no 'length' or 'type' properties in the options object - */ - if (!options && isOptions(dom)) { - options = dom; - dom = undefined; - } - /* - * Sometimes `$.html()` is used without preloading html, - * so fallback non-existing options to the default ones. - */ - var opts = tslib_1.__assign(tslib_1.__assign(tslib_1.__assign({}, options_1.default), (this ? this._options : {})), options_1.flatten(options !== null && options !== void 0 ? options : {})); - return render(this || undefined, dom, opts); -} -exports.html = html; +exports.html = function (dom, options) { + // be flexible about parameters, sometimes we call html(), + // with options as only parameter + // check dom argument for dom element specific properties + // assume there is no 'length' or 'type' properties in the options object + if ( + Object.prototype.toString.call(dom) === '[object Object]' && + !options && + !('length' in dom) && + !('type' in dom) + ) { + options = dom; + dom = undefined; + } + + // sometimes $.html() used without preloading html + // so fallback non existing options to the default ones + options = Object.assign( + {}, + defaultOptions, + this._options, + flattenOptions(options || {}) + ); + + return render(this, dom, options); +}; + /** * Render the document as XML. * - * @param dom - Element to render. - * @returns THe rendered document. + * @param {string|cheerio|node} [dom] - Element to render. */ -function xml(dom) { - var options = tslib_1.__assign(tslib_1.__assign({}, this._options), { xmlMode: true }); - return render(this, dom, options); -} -exports.xml = xml; +exports.xml = function (dom) { + var options = Object.assign({}, this._options, { xmlMode: true }); + + return render(this, dom, options); +}; + /** * Render the document as text. * - * @param elements - Elements to render. - * @returns The rendered document. + * @param {string|cheerio|node} [elems] - Elements to render. */ -function text(elements) { - var elems = elements ? elements : this ? this.root() : []; - var ret = ''; - for (var i = 0; i < elems.length; i++) { - var elem = elems[i]; - if (htmlparser2_1.DomUtils.isText(elem)) - ret += elem.data; - else if (htmlparser2_1.DomUtils.hasChildren(elem) && - elem.type !== htmlparser2_1.ElementType.Comment && - elem.type !== htmlparser2_1.ElementType.Script && - elem.type !== htmlparser2_1.ElementType.Style) { - ret += text(elem.children); - } - } - return ret; -} -exports.text = text; -function parseHTML(data, context, keepScripts) { - if (keepScripts === void 0) { keepScripts = typeof context === 'boolean' ? context : false; } - if (!data || typeof data !== 'string') { - return null; - } - if (typeof context === 'boolean') { - keepScripts = context; - } - var parsed = this.load(data, options_1.default, false); - if (!keepScripts) { - parsed('script').remove(); +exports.text = function (elems) { + if (!elems) { + elems = this.root(); + } + + var ret = ''; + var len = elems.length; + var elem; + + for (var i = 0; i < len; i++) { + elem = elems[i]; + if (elem.type === 'text') ret += elem.data; + else if ( + elem.children && + elem.type !== 'comment' && + elem.tagName !== 'script' && + elem.tagName !== 'style' + ) { + ret += exports.text(elem.children); } - /* - * The `children` array is used by Cheerio internally to group elements that - * share the same parents. When nodes created through `parseHTML` are - * inserted into previously-existing DOM structures, they will be removed - * from the `children` array. The results of `parseHTML` should remain - * constant across these operations, so a shallow copy should be returned. - */ - return parsed.root()[0].children.slice(); -} -exports.parseHTML = parseHTML; + } + + return ret; +}; + +/** + * Parses a string into an array of DOM nodes. The `context` argument has no + * meaning for Cheerio, but it is maintained for API compatibility with jQuery. + * + * @param {string} data - Markup that will be parsed. + * @param {any|boolean} [context] - Will be ignored. If it is a boolean it will be used as the value of `keepScripts`. + * @param {boolean} [keepScripts] - If false all scripts will be removed. + * + * @alias Cheerio.parseHTML + * @see {@link https://api.jquery.com/jQuery.parseHTML/} + */ +exports.parseHTML = function (data, context, keepScripts) { + var parsed; + + if (!data || typeof data !== 'string') { + return null; + } + + if (typeof context === 'boolean') { + keepScripts = context; + } + + parsed = this.load(data, defaultOptions, false); + if (!keepScripts) { + parsed('script').remove(); + } + + // The `children` array is used by Cheerio internally to group elements that + // share the same parents. When nodes created through `parseHTML` are + // inserted into previously-existing DOM structures, they will be removed + // from the `children` array. The results of `parseHTML` should remain + // constant across these operations, so a shallow copy should be returned. + return parsed.root()[0].children.slice(); +}; + /** * Sometimes you need to work with the top-level root element. To query it, you * can use `$.root()`. * - * @example + * @alias Cheerio.root * - * ```js + * @example * $.root().append('<ul id="vegetables"></ul>').html(); * //=> <ul id="fruits">...</ul><ul id="vegetables"></ul> - * ``` - * - * @returns Cheerio instance wrapping the root node. - * @alias Cheerio.root */ -function root() { - return this(this._root); -} -exports.root = root; +exports.root = function () { + return this(this._root); +}; + /** * Checks to see if the `contained` DOM element is a descendant of the * `container` DOM element. * - * @param container - Potential parent node. - * @param contained - Potential child node. - * @returns Indicates if the nodes contain one another. + * @param {node} container - Potential parent node. + * @param {node} contained - Potential child node. + * @returns {boolean} + * * @alias Cheerio.contains - * @see {@link https://api.jquery.com/jQuery.contains/} + * @see {@link https://api.jquery.com/jQuery.contains} */ -function contains(container, contained) { - // According to the jQuery API, an element does not "contain" itself +exports.contains = function (container, contained) { + // According to the jQuery API, an element does not "contain" itself + if (contained === container) { + return false; + } + + // Step up the descendants, stopping when the root element is reached + // (signaled by `.parent` returning a reference to the same object) + while (contained && contained !== contained.parent) { + contained = contained.parent; if (contained === container) { - return false; - } - /* - * Step up the descendants, stopping when the root element is reached - * (signaled by `.parent` returning a reference to the same object) - */ - var next = contained; - while (next && next !== next.parent) { - next = next.parent; - if (next === container) { - return true; - } + return true; } - return false; -} -exports.contains = contains; + } + + return false; +}; + /** * $.merge(). * - * @param arr1 - First array. - * @param arr2 - Second array. - * @returns `arr1`, with elements of `arr2` inserted. + * @param {Array|cheerio} arr1 - First array. + * @param {Array|cheerio} arr2 - Second array. + * * @alias Cheerio.merge - * @see {@link https://api.jquery.com/jQuery.merge/} - */ -function merge(arr1, arr2) { - if (!isArrayLike(arr1) || !isArrayLike(arr2)) { - return; - } - var newLength = arr1.length; - var len = +arr2.length; - for (var i = 0; i < len; i++) { - arr1[newLength++] = arr2[i]; - } - arr1.length = newLength; - return arr1; -} -exports.merge = merge; -/** - * @param item - Item to check. - * @returns Indicates if the item is array-like. + * @see {@link https://api.jquery.com/jQuery.merge} */ +exports.merge = function (arr1, arr2) { + if (!isArrayLike(arr1) || !isArrayLike(arr2)) { + return; + } + var newLength = arr1.length + arr2.length; + for (var i = 0; i < arr2.length; i++) { + arr1[i + arr1.length] = arr2[i]; + } + arr1.length = newLength; + return arr1; +}; + function isArrayLike(item) { - if (Array.isArray(item)) { - return true; - } - if (typeof item !== 'object' || - !Object.prototype.hasOwnProperty.call(item, 'length') || - typeof item.length !== 'number' || - item.length < 0) { - return false; - } - for (var i = 0; i < item.length; i++) { - if (!(i in item)) { - return false; - } - } + if (Array.isArray(item)) { return true; + } + + if ( + typeof item !== 'object' || + !Object.prototype.hasOwnProperty.call(item, 'length') || + typeof item.length !== 'number' || + item.length < 0 + ) { + return false; + } + + for (var i = 0; i < item.length; i++) { + if (!(i in item)) { + return false; + } + } + return true; } /***/ }), -/* 281 */ +/* 274 */ /***/ (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); -}; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __spreadArray = (this && this.__spreadArray) || function (to, from) { - for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) - to[j] = from[i]; - return to; + +const doctype = __webpack_require__(275); +const { DOCUMENT_MODE } = __webpack_require__(276); + +//Conversion tables for DOM Level1 structure emulation +const nodeTypes = { + element: 1, + text: 3, + cdata: 4, + comment: 8 }; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.select = exports.filter = exports.some = exports.is = exports.aliases = exports.pseudos = exports.filters = void 0; -var css_what_1 = __webpack_require__(282); -var css_select_1 = __webpack_require__(285); -var DomUtils = __importStar(__webpack_require__(286)); -var helpers_1 = __webpack_require__(323); -var positionals_1 = __webpack_require__(324); -// Re-export pseudo extension points -var css_select_2 = __webpack_require__(285); -Object.defineProperty(exports, "filters", { enumerable: true, get: function () { return css_select_2.filters; } }); -Object.defineProperty(exports, "pseudos", { enumerable: true, get: function () { return css_select_2.pseudos; } }); -Object.defineProperty(exports, "aliases", { enumerable: true, get: function () { return css_select_2.aliases; } }); -/** Used to indicate a scope should be filtered. Might be ignored when filtering. */ -var SCOPE_PSEUDO = { - type: "pseudo", - name: "scope", - data: null, + +const nodePropertyShorthands = { + tagName: 'name', + childNodes: 'children', + parentNode: 'parent', + previousSibling: 'prev', + nextSibling: 'next', + nodeValue: 'data' }; -/** Used for actually filtering for scope. */ -var CUSTOM_SCOPE_PSEUDO = __assign({}, SCOPE_PSEUDO); -var UNIVERSAL_SELECTOR = { type: "universal", namespace: null }; -function is(element, selector, options) { - if (options === void 0) { options = {}; } - return some([element], selector, options); -} -exports.is = is; -function some(elements, selector, options) { - if (options === void 0) { options = {}; } - if (typeof selector === "function") - return elements.some(selector); - var _a = helpers_1.groupSelectors(css_what_1.parse(selector, options)), plain = _a[0], filtered = _a[1]; - return ((plain.length > 0 && elements.some(css_select_1._compileToken(plain, options))) || - filtered.some(function (sel) { return filterBySelector(sel, elements, options).length > 0; })); -} -exports.some = some; -function filterByPosition(filter, elems, data, options) { - var num = typeof data === "string" ? parseInt(data, 10) : NaN; - switch (filter) { - case "first": - case "lt": - // Already done in `getLimit` - return elems; - case "last": - return elems.length > 0 ? [elems[elems.length - 1]] : elems; - case "nth": - case "eq": - return isFinite(num) && Math.abs(num) < elems.length - ? [num < 0 ? elems[elems.length + num] : elems[num]] - : []; - case "gt": - return isFinite(num) ? elems.slice(num + 1) : []; - case "even": - return elems.filter(function (_, i) { return i % 2 === 0; }); - case "odd": - return elems.filter(function (_, i) { return i % 2 === 1; }); - case "not": { - var filtered_1 = new Set(filterParsed(data, elems, options)); - return elems.filter(function (e) { return !filtered_1.has(e); }); - } - } -} -function filter(selector, elements, options) { - if (options === void 0) { options = {}; } - return filterParsed(css_what_1.parse(selector, options), elements, options); -} -exports.filter = filter; -/** - * Filter a set of elements by a selector. - * - * Will return elements in the original order. - * - * @param selector Selector to filter by. - * @param elements Elements to filter. - * @param options Options for selector. - */ -function filterParsed(selector, elements, options) { - if (elements.length === 0) - return []; - var _a = helpers_1.groupSelectors(selector), plainSelectors = _a[0], filteredSelectors = _a[1]; - var found; - if (plainSelectors.length) { - var filtered = filterElements(elements, plainSelectors, options); - // If there are no filters, just return - if (filteredSelectors.length === 0) { - return filtered; - } - // Otherwise, we have to do some filtering - if (filtered.length) { - found = new Set(filtered); - } - } - for (var i = 0; i < filteredSelectors.length && (found === null || found === void 0 ? void 0 : found.size) !== elements.length; i++) { - var filteredSelector = filteredSelectors[i]; - var missing = found - ? elements.filter(function (e) { return DomUtils.isTag(e) && !found.has(e); }) - : elements; - if (missing.length === 0) - break; - var filtered = filterBySelector(filteredSelector, elements, options); - if (filtered.length) { - if (!found) { - /* - * If we haven't found anything before the last selector, - * just return what we found now. - */ - if (i === filteredSelectors.length - 1) { - return filtered; - } - found = new Set(filtered); - } - else { - filtered.forEach(function (el) { return found.add(el); }); - } + +//Node +class Node { + constructor(props) { + for (const key of Object.keys(props)) { + this[key] = props[key]; } } - return typeof found !== "undefined" - ? (found.size === elements.length - ? elements - : // Filter elements to preserve order - elements.filter(function (el) { - return found.has(el); - })) - : []; -} -function filterBySelector(selector, elements, options) { - var _a; - if (selector.some(css_what_1.isTraversal)) { - /* - * Get root node, run selector with the scope - * set to all of our nodes. - */ - var root = (_a = options.root) !== null && _a !== void 0 ? _a : helpers_1.getDocumentRoot(elements[0]); - var sel = __spreadArray(__spreadArray([], selector), [CUSTOM_SCOPE_PSEUDO]); - return findFilterElements(root, sel, options, true, elements); - } - // Performance optimization: If we don't have to traverse, just filter set. - return findFilterElements(elements, selector, options, false); -} -function select(selector, root, options) { - if (options === void 0) { options = {}; } - if (typeof selector === "function") { - return find(root, selector); + + get firstChild() { + const children = this.children; + + return (children && children[0]) || null; } - var _a = helpers_1.groupSelectors(css_what_1.parse(selector, options)), plain = _a[0], filtered = _a[1]; - var results = filtered.map(function (sel) { - return findFilterElements(root, sel, options, true); - }); - // Plain selectors can be queried in a single go - if (plain.length) { - results.push(findElements(root, plain, options, Infinity)); + + get lastChild() { + const children = this.children; + + return (children && children[children.length - 1]) || null; } - // If there was only a single selector, just return the result - if (results.length === 1) { - return results[0]; + + get nodeType() { + return nodeTypes[this.type] || nodeTypes.element; } - // Sort results, filtering for duplicates - return DomUtils.uniqueSort(results.reduce(function (a, b) { return __spreadArray(__spreadArray([], a), b); })); -} -exports.select = select; -// Traversals that are treated differently in css-select. -var specialTraversal = new Set(["descendant", "adjacent"]); -function includesScopePseudo(t) { - return (t !== SCOPE_PSEUDO && - t.type === "pseudo" && - (t.name === "scope" || - (Array.isArray(t.data) && - t.data.some(function (data) { return data.some(includesScopePseudo); })))); -} -function addContextIfScope(selector, options, scopeContext) { - return scopeContext && selector.some(includesScopePseudo) - ? __assign(__assign({}, options), { context: scopeContext }) : options; } -/** - * - * @param root Element(s) to search from. - * @param selector Selector to look for. - * @param options Options for querying. - * @param queryForSelector Query multiple levels deep for the initial selector, even if it doesn't contain a traversal. - * @param scopeContext Optional context for a :scope. - */ -function findFilterElements(root, selector, options, queryForSelector, scopeContext) { - var filterIndex = selector.findIndex(positionals_1.isFilter); - var sub = selector.slice(0, filterIndex); - var filter = selector[filterIndex]; - /* - * Set the number of elements to retrieve. - * Eg. for :first, we only have to get a single element. - */ - var limit = positionals_1.getLimit(filter.name, filter.data); - if (limit === 0) - return []; - var subOpts = addContextIfScope(sub, options, scopeContext); - /* - * Skip `findElements` call if our selector starts with a positional - * pseudo. - */ - var elemsNoLimit = sub.length === 0 && !Array.isArray(root) - ? DomUtils.getChildren(root).filter(DomUtils.isTag) - : sub.length === 0 || (sub.length === 1 && sub[0] === SCOPE_PSEUDO) - ? (Array.isArray(root) ? root : [root]).filter(DomUtils.isTag) - : queryForSelector || sub.some(css_what_1.isTraversal) - ? findElements(root, [sub], subOpts, limit) - : filterElements(root, [sub], subOpts); - var elems = elemsNoLimit.slice(0, limit); - var result = filterByPosition(filter.name, elems, filter.data, options); - if (result.length === 0 || selector.length === filterIndex + 1) { - return result; - } - var remainingSelector = selector.slice(filterIndex + 1); - var remainingHasTraversal = remainingSelector.some(css_what_1.isTraversal); - var remainingOpts = addContextIfScope(remainingSelector, options, scopeContext); - if (remainingHasTraversal) { - /* - * Some types of traversals have special logic when they start a selector - * in css-select. If this is the case, add a universal selector in front of - * the selector to avoid this behavior. - */ - if (specialTraversal.has(remainingSelector[0].type)) { - remainingSelector.unshift(UNIVERSAL_SELECTOR); + +Object.keys(nodePropertyShorthands).forEach(key => { + const shorthand = nodePropertyShorthands[key]; + + Object.defineProperty(Node.prototype, key, { + get: function() { + return this[shorthand] || null; + }, + set: function(val) { + this[shorthand] = val; + return val; } - /* - * Add a scope token in front of the remaining selector, - * to make sure traversals don't match elements that aren't a - * part of the considered tree. - */ - remainingSelector.unshift(SCOPE_PSEUDO); - } - /* - * If we have another filter, recursively call `findFilterElements`, - * with the `recursive` flag disabled. We only have to look for more - * elements when we see a traversal. - * - * Otherwise, - */ - return remainingSelector.some(positionals_1.isFilter) - ? findFilterElements(result, remainingSelector, options, false, scopeContext) - : remainingHasTraversal - ? // Query existing elements to resolve traversal. - findElements(result, [remainingSelector], remainingOpts, Infinity) - : // If we don't have any more traversals, simply filter elements. - filterElements(result, [remainingSelector], remainingOpts); -} -function findElements(root, sel, options, limit) { - if (limit === 0) - return []; - var query = css_select_1._compileToken(sel, options, root); - return find(root, query, limit); -} -function find(root, query, limit) { - if (limit === void 0) { limit = Infinity; } - var elems = css_select_1.prepareContext(root, DomUtils, query.shouldTestNextSiblings); - return DomUtils.find(function (node) { return DomUtils.isTag(node) && query(node); }, elems, true, limit); -} -function filterElements(elements, sel, options) { - var els = (Array.isArray(elements) ? elements : [elements]).filter(DomUtils.isTag); - if (els.length === 0) - return els; - var query = css_select_1._compileToken(sel, options); - return els.filter(query); -} + }); +}); +//Node construction +exports.createDocument = function() { + return new Node({ + type: 'root', + name: 'root', + parent: null, + prev: null, + next: null, + children: [], + 'x-mode': DOCUMENT_MODE.NO_QUIRKS + }); +}; -/***/ }), -/* 282 */ -/***/ (function(module, exports, __webpack_require__) { +exports.createDocumentFragment = function() { + return new Node({ + type: 'root', + name: 'root', + parent: null, + prev: null, + next: null, + children: [] + }); +}; -"use strict"; +exports.createElement = function(tagName, namespaceURI, attrs) { + const attribs = Object.create(null); + const attribsNamespace = Object.create(null); + const attribsPrefix = Object.create(null); -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); + for (let i = 0; i < attrs.length; i++) { + const attrName = attrs[i].name; + + attribs[attrName] = attrs[i].value; + attribsNamespace[attrName] = attrs[i].namespace; + attribsPrefix[attrName] = attrs[i].prefix; + } + + return new Node({ + type: tagName === 'script' || tagName === 'style' ? tagName : 'tag', + name: tagName, + namespace: namespaceURI, + attribs: attribs, + 'x-attribsNamespace': attribsNamespace, + 'x-attribsPrefix': attribsPrefix, + children: [], + parent: null, + prev: null, + next: null + }); }; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; + +exports.createCommentNode = function(data) { + return new Node({ + type: 'comment', + data: data, + parent: null, + prev: null, + next: null + }); }; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.stringify = exports.parse = void 0; -__exportStar(__webpack_require__(283), exports); -var parse_1 = __webpack_require__(283); -Object.defineProperty(exports, "parse", { enumerable: true, get: function () { return __importDefault(parse_1).default; } }); -var stringify_1 = __webpack_require__(284); -Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return __importDefault(stringify_1).default; } }); +const createTextNode = function(value) { + return new Node({ + type: 'text', + data: value, + parent: null, + prev: null, + next: null + }); +}; -/***/ }), -/* 283 */ -/***/ (function(module, exports, __webpack_require__) { +//Tree mutation +const appendChild = (exports.appendChild = function(parentNode, newNode) { + const prev = parentNode.children[parentNode.children.length - 1]; -"use strict"; + if (prev) { + prev.next = newNode; + newNode.prev = prev; + } + + parentNode.children.push(newNode); + newNode.parent = parentNode; +}); + +const insertBefore = (exports.insertBefore = function(parentNode, newNode, referenceNode) { + const insertionIdx = parentNode.children.indexOf(referenceNode); + const prev = referenceNode.prev; + + if (prev) { + prev.next = newNode; + newNode.prev = prev; + } + + referenceNode.prev = newNode; + newNode.next = referenceNode; + + parentNode.children.splice(insertionIdx, 0, newNode); + newNode.parent = parentNode; +}); + +exports.setTemplateContent = function(templateElement, contentElement) { + appendChild(templateElement, contentElement); +}; + +exports.getTemplateContent = function(templateElement) { + return templateElement.children[0]; +}; + +exports.setDocumentType = function(document, name, publicId, systemId) { + const data = doctype.serializeContent(name, publicId, systemId); + let doctypeNode = null; -var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; + for (let i = 0; i < document.children.length; i++) { + if (document.children[i].type === 'directive' && document.children[i].name === '!doctype') { + doctypeNode = document.children[i]; + break; } } - return to.concat(ar || Array.prototype.slice.call(from)); + + if (doctypeNode) { + doctypeNode.data = data; + doctypeNode['x-name'] = name; + doctypeNode['x-publicId'] = publicId; + doctypeNode['x-systemId'] = systemId; + } else { + appendChild( + document, + new Node({ + type: 'directive', + name: '!doctype', + data: data, + 'x-name': name, + 'x-publicId': publicId, + 'x-systemId': systemId + }) + ); + } }; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.isTraversal = void 0; -var reName = /^[^\\#]?(?:\\(?:[\da-f]{1,6}\s?|.)|[\w\-\u00b0-\uFFFF])+/; -var reEscape = /\\([\da-f]{1,6}\s?|(\s)|.)/gi; -var actionTypes = new Map([ - ["~", "element"], - ["^", "start"], - ["$", "end"], - ["*", "any"], - ["!", "not"], - ["|", "hyphen"], -]); -var Traversals = { - ">": "child", - "<": "parent", - "~": "sibling", - "+": "adjacent", + +exports.setDocumentMode = function(document, mode) { + document['x-mode'] = mode; }; -var attribSelectors = { - "#": ["id", "equals"], - ".": ["class", "element"], + +exports.getDocumentMode = function(document) { + return document['x-mode']; }; -// Pseudos, whose data property is parsed as well. -var unpackPseudos = new Set([ - "has", - "not", - "matches", - "is", - "where", - "host", - "host-context", -]); -var traversalNames = new Set(__spreadArray([ - "descendant" -], Object.keys(Traversals).map(function (k) { return Traversals[k]; }), true)); -/** - * Attributes that are case-insensitive in HTML. - * - * @private - * @see https://html.spec.whatwg.org/multipage/semantics-other.html#case-sensitivity-of-selectors - */ -var caseInsensitiveAttributes = new Set([ - "accept", - "accept-charset", - "align", - "alink", - "axis", - "bgcolor", - "charset", - "checked", - "clear", - "codetype", - "color", - "compact", - "declare", - "defer", - "dir", - "direction", - "disabled", - "enctype", - "face", - "frame", - "hreflang", - "http-equiv", - "lang", - "language", - "link", - "media", - "method", - "multiple", - "nohref", - "noresize", - "noshade", - "nowrap", - "readonly", - "rel", - "rev", - "rules", - "scope", - "scrolling", - "selected", - "shape", - "target", - "text", - "type", - "valign", - "valuetype", - "vlink", -]); -/** - * Checks whether a specific selector is a traversal. - * This is useful eg. in swapping the order of elements that - * are not traversals. - * - * @param selector Selector to check. - */ -function isTraversal(selector) { - return traversalNames.has(selector.type); -} -exports.isTraversal = isTraversal; -var stripQuotesFromPseudos = new Set(["contains", "icontains"]); -var quotes = new Set(['"', "'"]); -// Unescape function taken from https://github.com/jquery/sizzle/blob/master/src/sizzle.js#L152 -function funescape(_, escaped, escapedWhitespace) { - var high = parseInt(escaped, 16) - 0x10000; - // NaN means non-codepoint - return high !== high || escapedWhitespace - ? escaped - : high < 0 - ? // BMP codepoint - String.fromCharCode(high + 0x10000) - : // Supplemental Plane codepoint (surrogate pair) - String.fromCharCode((high >> 10) | 0xd800, (high & 0x3ff) | 0xdc00); -} -function unescapeCSS(str) { - return str.replace(reEscape, funescape); -} -function isWhitespace(c) { - return c === " " || c === "\n" || c === "\t" || c === "\f" || c === "\r"; -} -/** - * Parses `selector`, optionally with the passed `options`. - * - * @param selector Selector to parse. - * @param options Options for parsing. - * @returns Returns a two-dimensional array. - * The first dimension represents selectors separated by commas (eg. `sub1, sub2`), - * the second contains the relevant tokens for that selector. - */ -function parse(selector, options) { - var subselects = []; - var endIndex = parseSelector(subselects, "" + selector, options, 0); - if (endIndex < selector.length) { - throw new Error("Unmatched selector: " + selector.slice(endIndex)); - } - return subselects; -} -exports.default = parse; -function parseSelector(subselects, selector, options, selectorIndex) { - var _a, _b; - if (options === void 0) { options = {}; } - var tokens = []; - var sawWS = false; - function getName(offset) { - var match = selector.slice(selectorIndex + offset).match(reName); - if (!match) { - throw new Error("Expected name, found " + selector.slice(selectorIndex)); + +exports.detachNode = function(node) { + if (node.parent) { + const idx = node.parent.children.indexOf(node); + const prev = node.prev; + const next = node.next; + + node.prev = null; + node.next = null; + + if (prev) { + prev.next = next; } - var name = match[0]; - selectorIndex += offset + name.length; - return unescapeCSS(name); + + if (next) { + next.prev = prev; + } + + node.parent.children.splice(idx, 1); + node.parent = null; } - function stripWhitespace(offset) { - while (isWhitespace(selector.charAt(selectorIndex + offset))) - offset++; - selectorIndex += offset; +}; + +exports.insertText = function(parentNode, text) { + const lastChild = parentNode.children[parentNode.children.length - 1]; + + if (lastChild && lastChild.type === 'text') { + lastChild.data += text; + } else { + appendChild(parentNode, createTextNode(text)); } - function isEscaped(pos) { - var slashCount = 0; - while (selector.charAt(--pos) === "\\") - slashCount++; - return (slashCount & 1) === 1; +}; + +exports.insertTextBefore = function(parentNode, text, referenceNode) { + const prevNode = parentNode.children[parentNode.children.indexOf(referenceNode) - 1]; + + if (prevNode && prevNode.type === 'text') { + prevNode.data += text; + } else { + insertBefore(parentNode, createTextNode(text), referenceNode); } - function ensureNotTraversal() { - if (tokens.length > 0 && isTraversal(tokens[tokens.length - 1])) { - throw new Error("Did not expect successive traversals."); +}; + +exports.adoptAttributes = function(recipient, attrs) { + for (let i = 0; i < attrs.length; i++) { + const attrName = attrs[i].name; + + if (typeof recipient.attribs[attrName] === 'undefined') { + recipient.attribs[attrName] = attrs[i].value; + recipient['x-attribsNamespace'][attrName] = attrs[i].namespace; + recipient['x-attribsPrefix'][attrName] = attrs[i].prefix; } } - stripWhitespace(0); - while (selector !== "") { - var firstChar = selector.charAt(selectorIndex); - if (isWhitespace(firstChar)) { - sawWS = true; - stripWhitespace(1); - } - else if (firstChar in Traversals) { - ensureNotTraversal(); - tokens.push({ type: Traversals[firstChar] }); - sawWS = false; - stripWhitespace(1); - } - else if (firstChar === ",") { - if (tokens.length === 0) { - throw new Error("Empty sub-selector"); - } - subselects.push(tokens); - tokens = []; - sawWS = false; - stripWhitespace(1); +}; + +//Tree traversing +exports.getFirstChild = function(node) { + return node.children[0]; +}; + +exports.getChildNodes = function(node) { + return node.children; +}; + +exports.getParentNode = function(node) { + return node.parent; +}; + +exports.getAttrList = function(element) { + const attrList = []; + + for (const name in element.attribs) { + attrList.push({ + name: name, + value: element.attribs[name], + namespace: element['x-attribsNamespace'][name], + prefix: element['x-attribsPrefix'][name] + }); + } + + return attrList; +}; + +//Node data +exports.getTagName = function(element) { + return element.name; +}; + +exports.getNamespaceURI = function(element) { + return element.namespace; +}; + +exports.getTextNodeContent = function(textNode) { + return textNode.data; +}; + +exports.getCommentNodeContent = function(commentNode) { + return commentNode.data; +}; + +exports.getDocumentTypeNodeName = function(doctypeNode) { + return doctypeNode['x-name']; +}; + +exports.getDocumentTypeNodePublicId = function(doctypeNode) { + return doctypeNode['x-publicId']; +}; + +exports.getDocumentTypeNodeSystemId = function(doctypeNode) { + return doctypeNode['x-systemId']; +}; + +//Node types +exports.isTextNode = function(node) { + return node.type === 'text'; +}; + +exports.isCommentNode = function(node) { + return node.type === 'comment'; +}; + +exports.isDocumentTypeNode = function(node) { + return node.type === 'directive' && node.name === '!doctype'; +}; + +exports.isElementNode = function(node) { + return !!node.attribs; +}; + +// Source code location +exports.setNodeSourceCodeLocation = function(node, location) { + node.sourceCodeLocation = location; +}; + +exports.getNodeSourceCodeLocation = function(node) { + return node.sourceCodeLocation; +}; + +exports.updateNodeSourceCodeLocation = function(node, endLocation) { + node.sourceCodeLocation = Object.assign(node.sourceCodeLocation, endLocation); +}; + + +/***/ }), +/* 275 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +const { DOCUMENT_MODE } = __webpack_require__(276); + +//Const +const VALID_DOCTYPE_NAME = 'html'; +const VALID_SYSTEM_ID = 'about:legacy-compat'; +const QUIRKS_MODE_SYSTEM_ID = 'http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd'; + +const QUIRKS_MODE_PUBLIC_ID_PREFIXES = [ + '+//silmaril//dtd html pro v0r11 19970101//', + '-//as//dtd html 3.0 aswedit + extensions//', + '-//advasoft ltd//dtd html 3.0 aswedit + extensions//', + '-//ietf//dtd html 2.0 level 1//', + '-//ietf//dtd html 2.0 level 2//', + '-//ietf//dtd html 2.0 strict level 1//', + '-//ietf//dtd html 2.0 strict level 2//', + '-//ietf//dtd html 2.0 strict//', + '-//ietf//dtd html 2.0//', + '-//ietf//dtd html 2.1e//', + '-//ietf//dtd html 3.0//', + '-//ietf//dtd html 3.2 final//', + '-//ietf//dtd html 3.2//', + '-//ietf//dtd html 3//', + '-//ietf//dtd html level 0//', + '-//ietf//dtd html level 1//', + '-//ietf//dtd html level 2//', + '-//ietf//dtd html level 3//', + '-//ietf//dtd html strict level 0//', + '-//ietf//dtd html strict level 1//', + '-//ietf//dtd html strict level 2//', + '-//ietf//dtd html strict level 3//', + '-//ietf//dtd html strict//', + '-//ietf//dtd html//', + '-//metrius//dtd metrius presentational//', + '-//microsoft//dtd internet explorer 2.0 html strict//', + '-//microsoft//dtd internet explorer 2.0 html//', + '-//microsoft//dtd internet explorer 2.0 tables//', + '-//microsoft//dtd internet explorer 3.0 html strict//', + '-//microsoft//dtd internet explorer 3.0 html//', + '-//microsoft//dtd internet explorer 3.0 tables//', + '-//netscape comm. corp.//dtd html//', + '-//netscape comm. corp.//dtd strict html//', + "-//o'reilly and associates//dtd html 2.0//", + "-//o'reilly and associates//dtd html extended 1.0//", + "-//o'reilly and associates//dtd html extended relaxed 1.0//", + '-//sq//dtd html 2.0 hotmetal + extensions//', + '-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//', + '-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//', + '-//spyglass//dtd html 2.0 extended//', + '-//sun microsystems corp.//dtd hotjava html//', + '-//sun microsystems corp.//dtd hotjava strict html//', + '-//w3c//dtd html 3 1995-03-24//', + '-//w3c//dtd html 3.2 draft//', + '-//w3c//dtd html 3.2 final//', + '-//w3c//dtd html 3.2//', + '-//w3c//dtd html 3.2s draft//', + '-//w3c//dtd html 4.0 frameset//', + '-//w3c//dtd html 4.0 transitional//', + '-//w3c//dtd html experimental 19960712//', + '-//w3c//dtd html experimental 970421//', + '-//w3c//dtd w3 html//', + '-//w3o//dtd w3 html 3.0//', + '-//webtechs//dtd mozilla html 2.0//', + '-//webtechs//dtd mozilla html//' +]; + +const QUIRKS_MODE_NO_SYSTEM_ID_PUBLIC_ID_PREFIXES = QUIRKS_MODE_PUBLIC_ID_PREFIXES.concat([ + '-//w3c//dtd html 4.01 frameset//', + '-//w3c//dtd html 4.01 transitional//' +]); + +const QUIRKS_MODE_PUBLIC_IDS = ['-//w3o//dtd w3 html strict 3.0//en//', '-/w3c/dtd html 4.0 transitional/en', 'html']; +const LIMITED_QUIRKS_PUBLIC_ID_PREFIXES = ['-//w3c//dtd xhtml 1.0 frameset//', '-//w3c//dtd xhtml 1.0 transitional//']; + +const LIMITED_QUIRKS_WITH_SYSTEM_ID_PUBLIC_ID_PREFIXES = LIMITED_QUIRKS_PUBLIC_ID_PREFIXES.concat([ + '-//w3c//dtd html 4.01 frameset//', + '-//w3c//dtd html 4.01 transitional//' +]); + +//Utils +function enquoteDoctypeId(id) { + const quote = id.indexOf('"') !== -1 ? "'" : '"'; + + return quote + id + quote; +} + +function hasPrefix(publicId, prefixes) { + for (let i = 0; i < prefixes.length; i++) { + if (publicId.indexOf(prefixes[i]) === 0) { + return true; } - else if (selector.startsWith("/*", selectorIndex)) { - var endIndex = selector.indexOf("*/", selectorIndex + 2); - if (endIndex < 0) { - throw new Error("Comment was not terminated"); - } - selectorIndex = endIndex + 2; + } + + return false; +} + +//API +exports.isConforming = function(token) { + return ( + token.name === VALID_DOCTYPE_NAME && + token.publicId === null && + (token.systemId === null || token.systemId === VALID_SYSTEM_ID) + ); +}; + +exports.getDocumentMode = function(token) { + if (token.name !== VALID_DOCTYPE_NAME) { + return DOCUMENT_MODE.QUIRKS; + } + + const systemId = token.systemId; + + if (systemId && systemId.toLowerCase() === QUIRKS_MODE_SYSTEM_ID) { + return DOCUMENT_MODE.QUIRKS; + } + + let publicId = token.publicId; + + if (publicId !== null) { + publicId = publicId.toLowerCase(); + + if (QUIRKS_MODE_PUBLIC_IDS.indexOf(publicId) > -1) { + return DOCUMENT_MODE.QUIRKS; } - else { - if (sawWS) { - ensureNotTraversal(); - tokens.push({ type: "descendant" }); - sawWS = false; - } - if (firstChar in attribSelectors) { - var _c = attribSelectors[firstChar], name_1 = _c[0], action = _c[1]; - tokens.push({ - type: "attribute", - name: name_1, - action: action, - value: getName(1), - namespace: null, - // TODO: Add quirksMode option, which makes `ignoreCase` `true` for HTML. - ignoreCase: options.xmlMode ? null : false, - }); - } - else if (firstChar === "[") { - stripWhitespace(1); - // Determine attribute name and namespace - var namespace = null; - if (selector.charAt(selectorIndex) === "|") { - namespace = ""; - selectorIndex += 1; - } - if (selector.startsWith("*|", selectorIndex)) { - namespace = "*"; - selectorIndex += 2; - } - var name_2 = getName(0); - if (namespace === null && - selector.charAt(selectorIndex) === "|" && - selector.charAt(selectorIndex + 1) !== "=") { - namespace = name_2; - name_2 = getName(1); - } - if ((_a = options.lowerCaseAttributeNames) !== null && _a !== void 0 ? _a : !options.xmlMode) { - name_2 = name_2.toLowerCase(); - } - stripWhitespace(0); - // Determine comparison operation - var action = "exists"; - var possibleAction = actionTypes.get(selector.charAt(selectorIndex)); - if (possibleAction) { - action = possibleAction; - if (selector.charAt(selectorIndex + 1) !== "=") { - throw new Error("Expected `=`"); - } - stripWhitespace(2); - } - else if (selector.charAt(selectorIndex) === "=") { - action = "equals"; - stripWhitespace(1); - } - // Determine value - var value = ""; - var ignoreCase = null; - if (action !== "exists") { - if (quotes.has(selector.charAt(selectorIndex))) { - var quote = selector.charAt(selectorIndex); - var sectionEnd = selectorIndex + 1; - while (sectionEnd < selector.length && - (selector.charAt(sectionEnd) !== quote || - isEscaped(sectionEnd))) { - sectionEnd += 1; - } - if (selector.charAt(sectionEnd) !== quote) { - throw new Error("Attribute value didn't end"); - } - value = unescapeCSS(selector.slice(selectorIndex + 1, sectionEnd)); - selectorIndex = sectionEnd + 1; - } - else { - var valueStart = selectorIndex; - while (selectorIndex < selector.length && - ((!isWhitespace(selector.charAt(selectorIndex)) && - selector.charAt(selectorIndex) !== "]") || - isEscaped(selectorIndex))) { - selectorIndex += 1; - } - value = unescapeCSS(selector.slice(valueStart, selectorIndex)); - } - stripWhitespace(0); - // See if we have a force ignore flag - var forceIgnore = selector.charAt(selectorIndex); - // If the forceIgnore flag is set (either `i` or `s`), use that value - if (forceIgnore === "s" || forceIgnore === "S") { - ignoreCase = false; - stripWhitespace(1); - } - else if (forceIgnore === "i" || forceIgnore === "I") { - ignoreCase = true; - stripWhitespace(1); - } - } - // If `xmlMode` is set, there are no rules; otherwise, use the `caseInsensitiveAttributes` list. - if (!options.xmlMode) { - // TODO: Skip this for `exists`, as there is no value to compare to. - ignoreCase !== null && ignoreCase !== void 0 ? ignoreCase : (ignoreCase = caseInsensitiveAttributes.has(name_2)); - } - if (selector.charAt(selectorIndex) !== "]") { - throw new Error("Attribute selector didn't terminate"); - } - selectorIndex += 1; - var attributeSelector = { - type: "attribute", - name: name_2, - action: action, - value: value, - namespace: namespace, - ignoreCase: ignoreCase, - }; - tokens.push(attributeSelector); - } - else if (firstChar === ":") { - if (selector.charAt(selectorIndex + 1) === ":") { - tokens.push({ - type: "pseudo-element", - name: getName(2).toLowerCase(), - }); - continue; - } - var name_3 = getName(1).toLowerCase(); - var data = null; - if (selector.charAt(selectorIndex) === "(") { - if (unpackPseudos.has(name_3)) { - if (quotes.has(selector.charAt(selectorIndex + 1))) { - throw new Error("Pseudo-selector " + name_3 + " cannot be quoted"); - } - data = []; - selectorIndex = parseSelector(data, selector, options, selectorIndex + 1); - if (selector.charAt(selectorIndex) !== ")") { - throw new Error("Missing closing parenthesis in :" + name_3 + " (" + selector + ")"); - } - selectorIndex += 1; - } - else { - selectorIndex += 1; - var start = selectorIndex; - var counter = 1; - for (; counter > 0 && selectorIndex < selector.length; selectorIndex++) { - if (selector.charAt(selectorIndex) === "(" && - !isEscaped(selectorIndex)) { - counter++; - } - else if (selector.charAt(selectorIndex) === ")" && - !isEscaped(selectorIndex)) { - counter--; - } - } - if (counter) { - throw new Error("Parenthesis not matched"); - } - data = selector.slice(start, selectorIndex - 1); - if (stripQuotesFromPseudos.has(name_3)) { - var quot = data.charAt(0); - if (quot === data.slice(-1) && quotes.has(quot)) { - data = data.slice(1, -1); - } - data = unescapeCSS(data); - } - } - } - tokens.push({ type: "pseudo", name: name_3, data: data }); - } - else { - var namespace = null; - var name_4 = void 0; - if (firstChar === "*") { - selectorIndex += 1; - name_4 = "*"; - } - else if (reName.test(selector.slice(selectorIndex))) { - if (selector.charAt(selectorIndex) === "|") { - namespace = ""; - selectorIndex += 1; - } - name_4 = getName(0); - } - else { - /* - * We have finished parsing the selector. - * Remove descendant tokens at the end if they exist, - * and return the last index, so that parsing can be - * picked up from here. - */ - if (tokens.length && - tokens[tokens.length - 1].type === "descendant") { - tokens.pop(); - } - addToken(subselects, tokens); - return selectorIndex; - } - if (selector.charAt(selectorIndex) === "|") { - namespace = name_4; - if (selector.charAt(selectorIndex + 1) === "*") { - name_4 = "*"; - selectorIndex += 2; - } - else { - name_4 = getName(1); - } - } - if (name_4 === "*") { - tokens.push({ type: "universal", namespace: namespace }); - } - else { - if ((_b = options.lowerCaseTags) !== null && _b !== void 0 ? _b : !options.xmlMode) { - name_4 = name_4.toLowerCase(); - } - tokens.push({ type: "tag", name: name_4, namespace: namespace }); - } - } + + let prefixes = systemId === null ? QUIRKS_MODE_NO_SYSTEM_ID_PUBLIC_ID_PREFIXES : QUIRKS_MODE_PUBLIC_ID_PREFIXES; + + if (hasPrefix(publicId, prefixes)) { + return DOCUMENT_MODE.QUIRKS; + } + + prefixes = + systemId === null ? LIMITED_QUIRKS_PUBLIC_ID_PREFIXES : LIMITED_QUIRKS_WITH_SYSTEM_ID_PUBLIC_ID_PREFIXES; + + if (hasPrefix(publicId, prefixes)) { + return DOCUMENT_MODE.LIMITED_QUIRKS; } } - addToken(subselects, tokens); - return selectorIndex; -} -function addToken(subselects, tokens) { - if (subselects.length > 0 && tokens.length === 0) { - throw new Error("Empty sub-selector"); + + return DOCUMENT_MODE.NO_QUIRKS; +}; + +exports.serializeContent = function(name, publicId, systemId) { + let str = '!DOCTYPE '; + + if (name) { + str += name; } - subselects.push(tokens); -} + + if (publicId) { + str += ' PUBLIC ' + enquoteDoctypeId(publicId); + } else if (systemId) { + str += ' SYSTEM'; + } + + if (systemId !== null) { + str += ' ' + enquoteDoctypeId(systemId); + } + + return str; +}; /***/ }), -/* 284 */ +/* 276 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) { - if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) { - if (ar || !(i in from)) { - if (!ar) ar = Array.prototype.slice.call(from, 0, i); - ar[i] = from[i]; - } - } - return to.concat(ar || Array.prototype.slice.call(from)); + +const NS = (exports.NAMESPACES = { + HTML: 'http://www.w3.org/1999/xhtml', + MATHML: 'http://www.w3.org/1998/Math/MathML', + SVG: 'http://www.w3.org/2000/svg', + XLINK: 'http://www.w3.org/1999/xlink', + XML: 'http://www.w3.org/XML/1998/namespace', + XMLNS: 'http://www.w3.org/2000/xmlns/' +}); + +exports.ATTRS = { + TYPE: 'type', + ACTION: 'action', + ENCODING: 'encoding', + PROMPT: 'prompt', + NAME: 'name', + COLOR: 'color', + FACE: 'face', + SIZE: 'size' }; -Object.defineProperty(exports, "__esModule", { value: true }); -var actionTypes = { - equals: "", - element: "~", - start: "^", - end: "$", - any: "*", - not: "!", - hyphen: "|", + +exports.DOCUMENT_MODE = { + NO_QUIRKS: 'no-quirks', + QUIRKS: 'quirks', + LIMITED_QUIRKS: 'limited-quirks' }; -var charsToEscape = new Set(__spreadArray(__spreadArray([], Object.keys(actionTypes) - .map(function (typeKey) { return actionTypes[typeKey]; }) - .filter(Boolean), true), [ - ":", - "[", - "]", - " ", - "\\", - "(", - ")", - "'", -], false)); -/** - * Turns `selector` back into a string. - * - * @param selector Selector to stringify. - */ -function stringify(selector) { - return selector.map(stringifySubselector).join(", "); -} -exports.default = stringify; -function stringifySubselector(token) { - return token.map(stringifyToken).join(""); -} -function stringifyToken(token) { - switch (token.type) { - // Simple types - case "child": - return " > "; - case "parent": - return " < "; - case "sibling": - return " ~ "; - case "adjacent": - return " + "; - case "descendant": - return " "; - case "universal": - return getNamespace(token.namespace) + "*"; - case "tag": - return getNamespacedName(token); - case "pseudo-element": - return "::" + escapeName(token.name); - case "pseudo": - if (token.data === null) - return ":" + escapeName(token.name); - if (typeof token.data === "string") { - return ":" + escapeName(token.name) + "(" + escapeName(token.data) + ")"; - } - return ":" + escapeName(token.name) + "(" + stringify(token.data) + ")"; - case "attribute": { - if (token.name === "id" && - token.action === "equals" && - !token.ignoreCase && - !token.namespace) { - return "#" + escapeName(token.value); - } - if (token.name === "class" && - token.action === "element" && - !token.ignoreCase && - !token.namespace) { - return "." + escapeName(token.value); - } - var name_1 = getNamespacedName(token); - if (token.action === "exists") { - return "[" + name_1 + "]"; - } - return "[" + name_1 + actionTypes[token.action] + "='" + escapeName(token.value) + "'" + (token.ignoreCase ? "i" : token.ignoreCase === false ? "s" : "") + "]"; - } + +const $ = (exports.TAG_NAMES = { + A: 'a', + ADDRESS: 'address', + ANNOTATION_XML: 'annotation-xml', + APPLET: 'applet', + AREA: 'area', + ARTICLE: 'article', + ASIDE: 'aside', + + B: 'b', + BASE: 'base', + BASEFONT: 'basefont', + BGSOUND: 'bgsound', + BIG: 'big', + BLOCKQUOTE: 'blockquote', + BODY: 'body', + BR: 'br', + BUTTON: 'button', + + CAPTION: 'caption', + CENTER: 'center', + CODE: 'code', + COL: 'col', + COLGROUP: 'colgroup', + + DD: 'dd', + DESC: 'desc', + DETAILS: 'details', + DIALOG: 'dialog', + DIR: 'dir', + DIV: 'div', + DL: 'dl', + DT: 'dt', + + EM: 'em', + EMBED: 'embed', + + FIELDSET: 'fieldset', + FIGCAPTION: 'figcaption', + FIGURE: 'figure', + FONT: 'font', + FOOTER: 'footer', + FOREIGN_OBJECT: 'foreignObject', + FORM: 'form', + FRAME: 'frame', + FRAMESET: 'frameset', + + H1: 'h1', + H2: 'h2', + H3: 'h3', + H4: 'h4', + H5: 'h5', + H6: 'h6', + HEAD: 'head', + HEADER: 'header', + HGROUP: 'hgroup', + HR: 'hr', + HTML: 'html', + + I: 'i', + IMG: 'img', + IMAGE: 'image', + INPUT: 'input', + IFRAME: 'iframe', + + KEYGEN: 'keygen', + + LABEL: 'label', + LI: 'li', + LINK: 'link', + LISTING: 'listing', + + MAIN: 'main', + MALIGNMARK: 'malignmark', + MARQUEE: 'marquee', + MATH: 'math', + MENU: 'menu', + META: 'meta', + MGLYPH: 'mglyph', + MI: 'mi', + MO: 'mo', + MN: 'mn', + MS: 'ms', + MTEXT: 'mtext', + + NAV: 'nav', + NOBR: 'nobr', + NOFRAMES: 'noframes', + NOEMBED: 'noembed', + NOSCRIPT: 'noscript', + + OBJECT: 'object', + OL: 'ol', + OPTGROUP: 'optgroup', + OPTION: 'option', + + P: 'p', + PARAM: 'param', + PLAINTEXT: 'plaintext', + PRE: 'pre', + + RB: 'rb', + RP: 'rp', + RT: 'rt', + RTC: 'rtc', + RUBY: 'ruby', + + S: 's', + SCRIPT: 'script', + SECTION: 'section', + SELECT: 'select', + SOURCE: 'source', + SMALL: 'small', + SPAN: 'span', + STRIKE: 'strike', + STRONG: 'strong', + STYLE: 'style', + SUB: 'sub', + SUMMARY: 'summary', + SUP: 'sup', + + TABLE: 'table', + TBODY: 'tbody', + TEMPLATE: 'template', + TEXTAREA: 'textarea', + TFOOT: 'tfoot', + TD: 'td', + TH: 'th', + THEAD: 'thead', + TITLE: 'title', + TR: 'tr', + TRACK: 'track', + TT: 'tt', + + U: 'u', + UL: 'ul', + + SVG: 'svg', + + VAR: 'var', + + WBR: 'wbr', + + XMP: 'xmp' +}); + +exports.SPECIAL_ELEMENTS = { + [NS.HTML]: { + [$.ADDRESS]: true, + [$.APPLET]: true, + [$.AREA]: true, + [$.ARTICLE]: true, + [$.ASIDE]: true, + [$.BASE]: true, + [$.BASEFONT]: true, + [$.BGSOUND]: true, + [$.BLOCKQUOTE]: true, + [$.BODY]: true, + [$.BR]: true, + [$.BUTTON]: true, + [$.CAPTION]: true, + [$.CENTER]: true, + [$.COL]: true, + [$.COLGROUP]: true, + [$.DD]: true, + [$.DETAILS]: true, + [$.DIR]: true, + [$.DIV]: true, + [$.DL]: true, + [$.DT]: true, + [$.EMBED]: true, + [$.FIELDSET]: true, + [$.FIGCAPTION]: true, + [$.FIGURE]: true, + [$.FOOTER]: true, + [$.FORM]: true, + [$.FRAME]: true, + [$.FRAMESET]: true, + [$.H1]: true, + [$.H2]: true, + [$.H3]: true, + [$.H4]: true, + [$.H5]: true, + [$.H6]: true, + [$.HEAD]: true, + [$.HEADER]: true, + [$.HGROUP]: true, + [$.HR]: true, + [$.HTML]: true, + [$.IFRAME]: true, + [$.IMG]: true, + [$.INPUT]: true, + [$.LI]: true, + [$.LINK]: true, + [$.LISTING]: true, + [$.MAIN]: true, + [$.MARQUEE]: true, + [$.MENU]: true, + [$.META]: true, + [$.NAV]: true, + [$.NOEMBED]: true, + [$.NOFRAMES]: true, + [$.NOSCRIPT]: true, + [$.OBJECT]: true, + [$.OL]: true, + [$.P]: true, + [$.PARAM]: true, + [$.PLAINTEXT]: true, + [$.PRE]: true, + [$.SCRIPT]: true, + [$.SECTION]: true, + [$.SELECT]: true, + [$.SOURCE]: true, + [$.STYLE]: true, + [$.SUMMARY]: true, + [$.TABLE]: true, + [$.TBODY]: true, + [$.TD]: true, + [$.TEMPLATE]: true, + [$.TEXTAREA]: true, + [$.TFOOT]: true, + [$.TH]: true, + [$.THEAD]: true, + [$.TITLE]: true, + [$.TR]: true, + [$.TRACK]: true, + [$.UL]: true, + [$.WBR]: true, + [$.XMP]: true + }, + [NS.MATHML]: { + [$.MI]: true, + [$.MO]: true, + [$.MN]: true, + [$.MS]: true, + [$.MTEXT]: true, + [$.ANNOTATION_XML]: true + }, + [NS.SVG]: { + [$.TITLE]: true, + [$.FOREIGN_OBJECT]: true, + [$.DESC]: true } -} -function getNamespacedName(token) { - return "" + getNamespace(token.namespace) + escapeName(token.name); -} -function getNamespace(namespace) { - return namespace !== null - ? (namespace === "*" ? "*" : escapeName(namespace)) + "|" - : ""; -} -function escapeName(str) { - return str - .split("") - .map(function (c) { return (charsToEscape.has(c) ? "\\" + c : c); }) - .join(""); -} +}; /***/ }), -/* 285 */ +/* 277 */ /***/ (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); +}; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); @@ -44424,1033 +43845,87 @@ var __importStar = (this && this.__importStar) || function (mod) { return result; }; Object.defineProperty(exports, "__esModule", { value: true }); -exports.aliases = exports.pseudos = exports.filters = exports.is = exports.selectOne = exports.selectAll = exports.prepareContext = exports._compileToken = exports._compileUnsafe = exports.compile = void 0; -var DomUtils = __importStar(__webpack_require__(286)); -var boolbase_1 = __webpack_require__(309); -var compile_1 = __webpack_require__(310); -var subselects_1 = __webpack_require__(322); -var defaultEquals = function (a, b) { return a === b; }; -var defaultOptions = { - adapter: DomUtils, - equals: defaultEquals, -}; -function convertOptionFormats(options) { - var _a, _b, _c, _d; - /* - * We force one format of options to the other one. - */ - // @ts-expect-error Default options may have incompatible `Node` / `ElementNode`. - var opts = options !== null && options !== void 0 ? options : defaultOptions; - // @ts-expect-error Same as above. - (_a = opts.adapter) !== null && _a !== void 0 ? _a : (opts.adapter = DomUtils); - // @ts-expect-error `equals` does not exist on `Options` - (_b = opts.equals) !== null && _b !== void 0 ? _b : (opts.equals = (_d = (_c = opts.adapter) === null || _c === void 0 ? void 0 : _c.equals) !== null && _d !== void 0 ? _d : defaultEquals); - return opts; -} -function wrapCompile(func) { - return function addAdapter(selector, options, context) { - var opts = convertOptionFormats(options); - return func(selector, opts, context); - }; -} -/** - * Compiles the query, returns a function. - */ -exports.compile = wrapCompile(compile_1.compile); -exports._compileUnsafe = wrapCompile(compile_1.compileUnsafe); -exports._compileToken = wrapCompile(compile_1.compileToken); -function getSelectorFunc(searchFunc) { - return function select(query, elements, options) { - var opts = convertOptionFormats(options); - if (typeof query !== "function") { - query = compile_1.compileUnsafe(query, opts, elements); - } - var filteredElements = prepareContext(elements, opts.adapter, query.shouldTestNextSiblings); - return searchFunc(query, filteredElements, opts); - }; -} -function prepareContext(elems, adapter, shouldTestNextSiblings) { - if (shouldTestNextSiblings === void 0) { shouldTestNextSiblings = false; } - /* - * Add siblings if the query requires them. - * See https://github.com/fb55/css-select/pull/43#issuecomment-225414692 - */ - if (shouldTestNextSiblings) { - elems = appendNextSiblings(elems, adapter); - } - return Array.isArray(elems) - ? adapter.removeSubsets(elems) - : adapter.getChildren(elems); -} -exports.prepareContext = prepareContext; -function appendNextSiblings(elem, adapter) { - // Order matters because jQuery seems to check the children before the siblings - var elems = Array.isArray(elem) ? elem.slice(0) : [elem]; - for (var i = 0; i < elems.length; i++) { - var nextSiblings = subselects_1.getNextSiblings(elems[i], adapter); - elems.push.apply(elems, nextSiblings); - } - return elems; -} -/** - * @template Node The generic Node type for the DOM adapter being used. - * @template ElementNode The Node type for elements for the DOM adapter being used. - * @param elems Elements to query. If it is an element, its children will be queried.. - * @param query can be either a CSS selector string or a compiled query function. - * @param [options] options for querying the document. - * @see compile for supported selector queries. - * @returns All matching elements. - * - */ -exports.selectAll = getSelectorFunc(function (query, elems, options) { - return query === boolbase_1.falseFunc || !elems || elems.length === 0 - ? [] - : options.adapter.findAll(query, elems); -}); -/** - * @template Node The generic Node type for the DOM adapter being used. - * @template ElementNode The Node type for elements for the DOM adapter being used. - * @param elems Elements to query. If it is an element, its children will be queried.. - * @param query can be either a CSS selector string or a compiled query function. - * @param [options] options for querying the document. - * @see compile for supported selector queries. - * @returns the first match, or null if there was no match. - */ -exports.selectOne = getSelectorFunc(function (query, elems, options) { - return query === boolbase_1.falseFunc || !elems || elems.length === 0 - ? null - : options.adapter.findOne(query, elems); -}); -/** - * Tests whether or not an element is matched by query. - * - * @template Node The generic Node type for the DOM adapter being used. - * @template ElementNode The Node type for elements for the DOM adapter being used. - * @param elem The element to test if it matches the query. - * @param query can be either a CSS selector string or a compiled query function. - * @param [options] options for querying the document. - * @see compile for supported selector queries. - * @returns +/* + * Module dependencies */ -function is(elem, query, options) { - var opts = convertOptionFormats(options); - return (typeof query === "function" ? query : compile_1.compile(query, opts))(elem); -} -exports.is = is; -/** - * Alias for selectAll(query, elems, options). - * @see [compile] for supported selector queries. +var ElementType = __importStar(__webpack_require__(278)); +var entities_1 = __webpack_require__(279); +/* + * Mixed-case SVG and MathML tags & attributes + * recognized by the HTML parser, see + * https://html.spec.whatwg.org/multipage/parsing.html#parsing-main-inforeign */ -exports.default = exports.selectAll; -// Export filters, pseudos and aliases to allow users to supply their own. -var pseudo_selectors_1 = __webpack_require__(315); -Object.defineProperty(exports, "filters", { enumerable: true, get: function () { return pseudo_selectors_1.filters; } }); -Object.defineProperty(exports, "pseudos", { enumerable: true, get: function () { return pseudo_selectors_1.pseudos; } }); -Object.defineProperty(exports, "aliases", { enumerable: true, get: function () { return pseudo_selectors_1.aliases; } }); - - -/***/ }), -/* 286 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.hasChildren = exports.isDocument = exports.isComment = exports.isText = exports.isCDATA = exports.isTag = void 0; -__exportStar(__webpack_require__(287), exports); -__exportStar(__webpack_require__(303), exports); -__exportStar(__webpack_require__(304), exports); -__exportStar(__webpack_require__(305), exports); -__exportStar(__webpack_require__(306), exports); -__exportStar(__webpack_require__(307), exports); -__exportStar(__webpack_require__(308), exports); -/** @deprecated Use these methods from `domhandler` directly. */ -var domhandler_1 = __webpack_require__(288); -Object.defineProperty(exports, "isTag", { enumerable: true, get: function () { return domhandler_1.isTag; } }); -Object.defineProperty(exports, "isCDATA", { enumerable: true, get: function () { return domhandler_1.isCDATA; } }); -Object.defineProperty(exports, "isText", { enumerable: true, get: function () { return domhandler_1.isText; } }); -Object.defineProperty(exports, "isComment", { enumerable: true, get: function () { return domhandler_1.isComment; } }); -Object.defineProperty(exports, "isDocument", { enumerable: true, get: function () { return domhandler_1.isDocument; } }); -Object.defineProperty(exports, "hasChildren", { enumerable: true, get: function () { return domhandler_1.hasChildren; } }); - - -/***/ }), -/* 287 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.innerText = exports.textContent = exports.getText = exports.getInnerHTML = exports.getOuterHTML = void 0; -var domhandler_1 = __webpack_require__(288); -var dom_serializer_1 = __importDefault(__webpack_require__(291)); -var domelementtype_1 = __webpack_require__(302); +var foreignNames_1 = __webpack_require__(287); +var unencodedElements = new Set([ + "style", + "script", + "xmp", + "iframe", + "noembed", + "noframes", + "plaintext", + "noscript", +]); /** - * @param node Node to get the outer HTML of. - * @param options Options for serialization. - * @deprecated Use the `dom-serializer` module directly. - * @returns `node`'s outer HTML. + * Format attributes */ -function getOuterHTML(node, options) { - return (0, dom_serializer_1.default)(node, options); +function formatAttributes(attributes, opts) { + if (!attributes) + return; + return Object.keys(attributes) + .map(function (key) { + var _a, _b; + var value = (_a = attributes[key]) !== null && _a !== void 0 ? _a : ""; + if (opts.xmlMode === "foreign") { + /* Fix up mixed-case attribute names */ + key = (_b = foreignNames_1.attributeNames.get(key)) !== null && _b !== void 0 ? _b : key; + } + if (!opts.emptyAttrs && !opts.xmlMode && value === "") { + return key; + } + return key + "=\"" + (opts.decodeEntities ? entities_1.encodeXML(value) : value.replace(/"/g, """)) + "\""; + }) + .join(" "); } -exports.getOuterHTML = getOuterHTML; /** - * @param node Node to get the inner HTML of. - * @param options Options for serialization. - * @deprecated Use the `dom-serializer` module directly. - * @returns `node`'s inner HTML. + * Self-enclosing tags */ -function getInnerHTML(node, options) { - return (0, domhandler_1.hasChildren)(node) - ? node.children.map(function (node) { return getOuterHTML(node, options); }).join("") - : ""; -} -exports.getInnerHTML = getInnerHTML; +var singleTag = new Set([ + "area", + "base", + "basefont", + "br", + "col", + "command", + "embed", + "frame", + "hr", + "img", + "input", + "isindex", + "keygen", + "link", + "meta", + "param", + "source", + "track", + "wbr", +]); /** - * Get a node's inner text. Same as `textContent`, but inserts newlines for `<br>` tags. + * Renders a DOM node or an array of DOM nodes to a string. * - * @deprecated Use `textContent` instead. - * @param node Node to get the inner text of. - * @returns `node`'s inner text. - */ -function getText(node) { - if (Array.isArray(node)) - return node.map(getText).join(""); - if ((0, domhandler_1.isTag)(node)) - return node.name === "br" ? "\n" : getText(node.children); - if ((0, domhandler_1.isCDATA)(node)) - return getText(node.children); - if ((0, domhandler_1.isText)(node)) - return node.data; - return ""; -} -exports.getText = getText; -/** - * Get a node's text content. + * Can be thought of as the equivalent of the `outerHTML` of the passed node(s). * - * @param node Node to get the text content of. - * @returns `node`'s text content. - * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent} + * @param node Node to be rendered. + * @param options Changes serialization behavior */ -function textContent(node) { - if (Array.isArray(node)) - return node.map(textContent).join(""); - if ((0, domhandler_1.hasChildren)(node) && !(0, domhandler_1.isComment)(node)) { - return textContent(node.children); - } - if ((0, domhandler_1.isText)(node)) - return node.data; - return ""; -} -exports.textContent = textContent; -/** - * Get a node's inner text. - * - * @param node Node to get the inner text of. - * @returns `node`'s inner text. - * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Node/innerText} - */ -function innerText(node) { - if (Array.isArray(node)) - return node.map(innerText).join(""); - if ((0, domhandler_1.hasChildren)(node) && (node.type === domelementtype_1.ElementType.Tag || (0, domhandler_1.isCDATA)(node))) { - return innerText(node.children); - } - if ((0, domhandler_1.isText)(node)) - return node.data; - return ""; -} -exports.innerText = innerText; - - -/***/ }), -/* 288 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.DomHandler = void 0; -var domelementtype_1 = __webpack_require__(289); -var node_1 = __webpack_require__(290); -__exportStar(__webpack_require__(290), exports); -var reWhitespace = /\s+/g; -// Default options -var defaultOpts = { - normalizeWhitespace: false, - withStartIndices: false, - withEndIndices: false, - xmlMode: false, -}; -var DomHandler = /** @class */ (function () { - /** - * @param callback Called once parsing has completed. - * @param options Settings for the handler. - * @param elementCB Callback whenever a tag is closed. - */ - function DomHandler(callback, options, elementCB) { - /** The elements of the DOM */ - this.dom = []; - /** The root element for the DOM */ - this.root = new node_1.Document(this.dom); - /** Indicated whether parsing has been completed. */ - this.done = false; - /** Stack of open tags. */ - this.tagStack = [this.root]; - /** A data node that is still being written to. */ - this.lastNode = null; - /** Reference to the parser instance. Used for location information. */ - this.parser = null; - // Make it possible to skip arguments, for backwards-compatibility - if (typeof options === "function") { - elementCB = options; - options = defaultOpts; - } - if (typeof callback === "object") { - options = callback; - callback = undefined; - } - this.callback = callback !== null && callback !== void 0 ? callback : null; - this.options = options !== null && options !== void 0 ? options : defaultOpts; - this.elementCB = elementCB !== null && elementCB !== void 0 ? elementCB : null; - } - DomHandler.prototype.onparserinit = function (parser) { - this.parser = parser; - }; - // Resets the handler back to starting state - DomHandler.prototype.onreset = function () { - this.dom = []; - this.root = new node_1.Document(this.dom); - this.done = false; - this.tagStack = [this.root]; - this.lastNode = null; - this.parser = null; - }; - // Signals the handler that parsing is done - DomHandler.prototype.onend = function () { - if (this.done) - return; - this.done = true; - this.parser = null; - this.handleCallback(null); - }; - DomHandler.prototype.onerror = function (error) { - this.handleCallback(error); - }; - DomHandler.prototype.onclosetag = function () { - this.lastNode = null; - var elem = this.tagStack.pop(); - if (this.options.withEndIndices) { - elem.endIndex = this.parser.endIndex; - } - if (this.elementCB) - this.elementCB(elem); - }; - DomHandler.prototype.onopentag = function (name, attribs) { - var type = this.options.xmlMode ? domelementtype_1.ElementType.Tag : undefined; - var element = new node_1.Element(name, attribs, undefined, type); - this.addNode(element); - this.tagStack.push(element); - }; - DomHandler.prototype.ontext = function (data) { - var normalizeWhitespace = this.options.normalizeWhitespace; - var lastNode = this.lastNode; - if (lastNode && lastNode.type === domelementtype_1.ElementType.Text) { - if (normalizeWhitespace) { - lastNode.data = (lastNode.data + data).replace(reWhitespace, " "); - } - else { - lastNode.data += data; - } - if (this.options.withEndIndices) { - lastNode.endIndex = this.parser.endIndex; - } - } - else { - if (normalizeWhitespace) { - data = data.replace(reWhitespace, " "); - } - var node = new node_1.Text(data); - this.addNode(node); - this.lastNode = node; - } - }; - DomHandler.prototype.oncomment = function (data) { - if (this.lastNode && this.lastNode.type === domelementtype_1.ElementType.Comment) { - this.lastNode.data += data; - return; - } - var node = new node_1.Comment(data); - this.addNode(node); - this.lastNode = node; - }; - DomHandler.prototype.oncommentend = function () { - this.lastNode = null; - }; - DomHandler.prototype.oncdatastart = function () { - var text = new node_1.Text(""); - var node = new node_1.NodeWithChildren(domelementtype_1.ElementType.CDATA, [text]); - this.addNode(node); - text.parent = node; - this.lastNode = text; - }; - DomHandler.prototype.oncdataend = function () { - this.lastNode = null; - }; - DomHandler.prototype.onprocessinginstruction = function (name, data) { - var node = new node_1.ProcessingInstruction(name, data); - this.addNode(node); - }; - DomHandler.prototype.handleCallback = function (error) { - if (typeof this.callback === "function") { - this.callback(error, this.dom); - } - else if (error) { - throw error; - } - }; - DomHandler.prototype.addNode = function (node) { - var parent = this.tagStack[this.tagStack.length - 1]; - var previousSibling = parent.children[parent.children.length - 1]; - if (this.options.withStartIndices) { - node.startIndex = this.parser.startIndex; - } - if (this.options.withEndIndices) { - node.endIndex = this.parser.endIndex; - } - parent.children.push(node); - if (previousSibling) { - node.prev = previousSibling; - previousSibling.next = node; - } - node.parent = parent; - this.lastNode = null; - }; - return DomHandler; -}()); -exports.DomHandler = DomHandler; -exports.default = DomHandler; - - -/***/ }), -/* 289 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.Doctype = exports.CDATA = exports.Tag = exports.Style = exports.Script = exports.Comment = exports.Directive = exports.Text = exports.Root = exports.isTag = exports.ElementType = void 0; -/** Types of elements found in htmlparser2's DOM */ -var ElementType; -(function (ElementType) { - /** Type for the root element of a document */ - ElementType["Root"] = "root"; - /** Type for Text */ - ElementType["Text"] = "text"; - /** Type for <? ... ?> */ - ElementType["Directive"] = "directive"; - /** Type for <!-- ... --> */ - ElementType["Comment"] = "comment"; - /** Type for <script> tags */ - ElementType["Script"] = "script"; - /** Type for <style> tags */ - ElementType["Style"] = "style"; - /** Type for Any tag */ - ElementType["Tag"] = "tag"; - /** Type for <![CDATA[ ... ]]> */ - ElementType["CDATA"] = "cdata"; - /** Type for <!doctype ...> */ - ElementType["Doctype"] = "doctype"; -})(ElementType = exports.ElementType || (exports.ElementType = {})); -/** - * Tests whether an element is a tag or not. - * - * @param elem Element to test - */ -function isTag(elem) { - return (elem.type === ElementType.Tag || - elem.type === ElementType.Script || - elem.type === ElementType.Style); -} -exports.isTag = isTag; -// Exports for backwards compatibility -/** Type for the root element of a document */ -exports.Root = ElementType.Root; -/** Type for Text */ -exports.Text = ElementType.Text; -/** Type for <? ... ?> */ -exports.Directive = ElementType.Directive; -/** Type for <!-- ... --> */ -exports.Comment = ElementType.Comment; -/** Type for <script> tags */ -exports.Script = ElementType.Script; -/** Type for <style> tags */ -exports.Style = ElementType.Style; -/** Type for Any tag */ -exports.Tag = ElementType.Tag; -/** Type for <![CDATA[ ... ]]> */ -exports.CDATA = ElementType.CDATA; -/** Type for <!doctype ...> */ -exports.Doctype = ElementType.Doctype; - - -/***/ }), -/* 290 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); - }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; -})(); -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 }); -exports.cloneNode = exports.hasChildren = exports.isDocument = exports.isDirective = exports.isComment = exports.isText = exports.isCDATA = exports.isTag = exports.Element = exports.Document = exports.NodeWithChildren = exports.ProcessingInstruction = exports.Comment = exports.Text = exports.DataNode = exports.Node = void 0; -var domelementtype_1 = __webpack_require__(289); -var nodeTypes = new Map([ - [domelementtype_1.ElementType.Tag, 1], - [domelementtype_1.ElementType.Script, 1], - [domelementtype_1.ElementType.Style, 1], - [domelementtype_1.ElementType.Directive, 1], - [domelementtype_1.ElementType.Text, 3], - [domelementtype_1.ElementType.CDATA, 4], - [domelementtype_1.ElementType.Comment, 8], - [domelementtype_1.ElementType.Root, 9], -]); -/** - * This object will be used as the prototype for Nodes when creating a - * DOM-Level-1-compliant structure. - */ -var Node = /** @class */ (function () { - /** - * - * @param type The type of the node. - */ - function Node(type) { - this.type = type; - /** Parent of the node */ - this.parent = null; - /** Previous sibling */ - this.prev = null; - /** Next sibling */ - this.next = null; - /** The start index of the node. Requires `withStartIndices` on the handler to be `true. */ - this.startIndex = null; - /** The end index of the node. Requires `withEndIndices` on the handler to be `true. */ - this.endIndex = null; - } - Object.defineProperty(Node.prototype, "nodeType", { - // Read-only aliases - get: function () { - var _a; - return (_a = nodeTypes.get(this.type)) !== null && _a !== void 0 ? _a : 1; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(Node.prototype, "parentNode", { - // Read-write aliases for properties - get: function () { - return this.parent; - }, - set: function (parent) { - this.parent = parent; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(Node.prototype, "previousSibling", { - get: function () { - return this.prev; - }, - set: function (prev) { - this.prev = prev; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(Node.prototype, "nextSibling", { - get: function () { - return this.next; - }, - set: function (next) { - this.next = next; - }, - enumerable: false, - configurable: true - }); - /** - * Clone this node, and optionally its children. - * - * @param recursive Clone child nodes as well. - * @returns A clone of the node. - */ - Node.prototype.cloneNode = function (recursive) { - if (recursive === void 0) { recursive = false; } - return cloneNode(this, recursive); - }; - return Node; -}()); -exports.Node = Node; -/** - * A node that contains some data. - */ -var DataNode = /** @class */ (function (_super) { - __extends(DataNode, _super); - /** - * @param type The type of the node - * @param data The content of the data node - */ - function DataNode(type, data) { - var _this = _super.call(this, type) || this; - _this.data = data; - return _this; - } - Object.defineProperty(DataNode.prototype, "nodeValue", { - get: function () { - return this.data; - }, - set: function (data) { - this.data = data; - }, - enumerable: false, - configurable: true - }); - return DataNode; -}(Node)); -exports.DataNode = DataNode; -/** - * Text within the document. - */ -var Text = /** @class */ (function (_super) { - __extends(Text, _super); - function Text(data) { - return _super.call(this, domelementtype_1.ElementType.Text, data) || this; - } - return Text; -}(DataNode)); -exports.Text = Text; -/** - * Comments within the document. - */ -var Comment = /** @class */ (function (_super) { - __extends(Comment, _super); - function Comment(data) { - return _super.call(this, domelementtype_1.ElementType.Comment, data) || this; - } - return Comment; -}(DataNode)); -exports.Comment = Comment; -/** - * Processing instructions, including doc types. - */ -var ProcessingInstruction = /** @class */ (function (_super) { - __extends(ProcessingInstruction, _super); - function ProcessingInstruction(name, data) { - var _this = _super.call(this, domelementtype_1.ElementType.Directive, data) || this; - _this.name = name; - return _this; - } - return ProcessingInstruction; -}(DataNode)); -exports.ProcessingInstruction = ProcessingInstruction; -/** - * A `Node` that can have children. - */ -var NodeWithChildren = /** @class */ (function (_super) { - __extends(NodeWithChildren, _super); - /** - * @param type Type of the node. - * @param children Children of the node. Only certain node types can have children. - */ - function NodeWithChildren(type, children) { - var _this = _super.call(this, type) || this; - _this.children = children; - return _this; - } - Object.defineProperty(NodeWithChildren.prototype, "firstChild", { - // Aliases - get: function () { - var _a; - return (_a = this.children[0]) !== null && _a !== void 0 ? _a : null; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(NodeWithChildren.prototype, "lastChild", { - get: function () { - return this.children.length > 0 - ? this.children[this.children.length - 1] - : null; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(NodeWithChildren.prototype, "childNodes", { - get: function () { - return this.children; - }, - set: function (children) { - this.children = children; - }, - enumerable: false, - configurable: true - }); - return NodeWithChildren; -}(Node)); -exports.NodeWithChildren = NodeWithChildren; -/** - * The root node of the document. - */ -var Document = /** @class */ (function (_super) { - __extends(Document, _super); - function Document(children) { - return _super.call(this, domelementtype_1.ElementType.Root, children) || this; - } - return Document; -}(NodeWithChildren)); -exports.Document = Document; -/** - * An element within the DOM. - */ -var Element = /** @class */ (function (_super) { - __extends(Element, _super); - /** - * @param name Name of the tag, eg. `div`, `span`. - * @param attribs Object mapping attribute names to attribute values. - * @param children Children of the node. - */ - function Element(name, attribs, children, type) { - if (children === void 0) { children = []; } - if (type === void 0) { type = name === "script" - ? domelementtype_1.ElementType.Script - : name === "style" - ? domelementtype_1.ElementType.Style - : domelementtype_1.ElementType.Tag; } - var _this = _super.call(this, type, children) || this; - _this.name = name; - _this.attribs = attribs; - return _this; - } - Object.defineProperty(Element.prototype, "tagName", { - // DOM Level 1 aliases - get: function () { - return this.name; - }, - set: function (name) { - this.name = name; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(Element.prototype, "attributes", { - get: function () { - var _this = this; - return Object.keys(this.attribs).map(function (name) { - var _a, _b; - return ({ - name: name, - value: _this.attribs[name], - namespace: (_a = _this["x-attribsNamespace"]) === null || _a === void 0 ? void 0 : _a[name], - prefix: (_b = _this["x-attribsPrefix"]) === null || _b === void 0 ? void 0 : _b[name], - }); - }); - }, - enumerable: false, - configurable: true - }); - return Element; -}(NodeWithChildren)); -exports.Element = Element; -/** - * @param node Node to check. - * @returns `true` if the node is a `Element`, `false` otherwise. - */ -function isTag(node) { - return (0, domelementtype_1.isTag)(node); -} -exports.isTag = isTag; -/** - * @param node Node to check. - * @returns `true` if the node has the type `CDATA`, `false` otherwise. - */ -function isCDATA(node) { - return node.type === domelementtype_1.ElementType.CDATA; -} -exports.isCDATA = isCDATA; -/** - * @param node Node to check. - * @returns `true` if the node has the type `Text`, `false` otherwise. - */ -function isText(node) { - return node.type === domelementtype_1.ElementType.Text; -} -exports.isText = isText; -/** - * @param node Node to check. - * @returns `true` if the node has the type `Comment`, `false` otherwise. - */ -function isComment(node) { - return node.type === domelementtype_1.ElementType.Comment; -} -exports.isComment = isComment; -/** - * @param node Node to check. - * @returns `true` if the node has the type `ProcessingInstruction`, `false` otherwise. - */ -function isDirective(node) { - return node.type === domelementtype_1.ElementType.Directive; -} -exports.isDirective = isDirective; -/** - * @param node Node to check. - * @returns `true` if the node has the type `ProcessingInstruction`, `false` otherwise. - */ -function isDocument(node) { - return node.type === domelementtype_1.ElementType.Root; -} -exports.isDocument = isDocument; -/** - * @param node Node to check. - * @returns `true` if the node is a `NodeWithChildren` (has children), `false` otherwise. - */ -function hasChildren(node) { - return Object.prototype.hasOwnProperty.call(node, "children"); -} -exports.hasChildren = hasChildren; -/** - * Clone a node, and optionally its children. - * - * @param recursive Clone child nodes as well. - * @returns A clone of the node. - */ -function cloneNode(node, recursive) { - if (recursive === void 0) { recursive = false; } - var result; - if (isText(node)) { - result = new Text(node.data); - } - else if (isComment(node)) { - result = new Comment(node.data); - } - else if (isTag(node)) { - var children = recursive ? cloneChildren(node.children) : []; - var clone_1 = new Element(node.name, __assign({}, node.attribs), children); - children.forEach(function (child) { return (child.parent = clone_1); }); - if (node["x-attribsNamespace"]) { - clone_1["x-attribsNamespace"] = __assign({}, node["x-attribsNamespace"]); - } - if (node["x-attribsPrefix"]) { - clone_1["x-attribsPrefix"] = __assign({}, node["x-attribsPrefix"]); - } - result = clone_1; - } - else if (isCDATA(node)) { - var children = recursive ? cloneChildren(node.children) : []; - var clone_2 = new NodeWithChildren(domelementtype_1.ElementType.CDATA, children); - children.forEach(function (child) { return (child.parent = clone_2); }); - result = clone_2; - } - else if (isDocument(node)) { - var children = recursive ? cloneChildren(node.children) : []; - var clone_3 = new Document(children); - children.forEach(function (child) { return (child.parent = clone_3); }); - if (node["x-mode"]) { - clone_3["x-mode"] = node["x-mode"]; - } - result = clone_3; - } - else if (isDirective(node)) { - var instruction = new ProcessingInstruction(node.name, node.data); - if (node["x-name"] != null) { - instruction["x-name"] = node["x-name"]; - instruction["x-publicId"] = node["x-publicId"]; - instruction["x-systemId"] = node["x-systemId"]; - } - result = instruction; - } - else { - throw new Error("Not implemented yet: " + node.type); - } - result.startIndex = node.startIndex; - result.endIndex = node.endIndex; - return result; -} -exports.cloneNode = cloneNode; -function cloneChildren(childs) { - var children = childs.map(function (child) { return cloneNode(child, true); }); - for (var i = 1; i < children.length; i++) { - children[i].prev = children[i - 1]; - children[i - 1].next = children[i]; - } - return children; -} - - -/***/ }), -/* 291 */ -/***/ (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); -}; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -/* - * Module dependencies - */ -var ElementType = __importStar(__webpack_require__(292)); -var entities_1 = __webpack_require__(293); -/* - * Mixed-case SVG and MathML tags & attributes - * recognized by the HTML parser, see - * https://html.spec.whatwg.org/multipage/parsing.html#parsing-main-inforeign - */ -var foreignNames_1 = __webpack_require__(301); -var unencodedElements = new Set([ - "style", - "script", - "xmp", - "iframe", - "noembed", - "noframes", - "plaintext", - "noscript", -]); -/** - * Format attributes - */ -function formatAttributes(attributes, opts) { - if (!attributes) - return; - return Object.keys(attributes) - .map(function (key) { - var _a, _b; - var value = (_a = attributes[key]) !== null && _a !== void 0 ? _a : ""; - if (opts.xmlMode === "foreign") { - /* Fix up mixed-case attribute names */ - key = (_b = foreignNames_1.attributeNames.get(key)) !== null && _b !== void 0 ? _b : key; - } - if (!opts.emptyAttrs && !opts.xmlMode && value === "") { - return key; - } - return key + "=\"" + (opts.decodeEntities ? entities_1.encodeXML(value) : value.replace(/"/g, """)) + "\""; - }) - .join(" "); -} -/** - * Self-enclosing tags - */ -var singleTag = new Set([ - "area", - "base", - "basefont", - "br", - "col", - "command", - "embed", - "frame", - "hr", - "img", - "input", - "isindex", - "keygen", - "link", - "meta", - "param", - "source", - "track", - "wbr", -]); -/** - * Renders a DOM node or an array of DOM nodes to a string. - * - * Can be thought of as the equivalent of the `outerHTML` of the passed node(s). - * - * @param node Node to be rendered. - * @param options Changes serialization behavior - */ -function render(node, options) { - if (options === void 0) { options = {}; } - // TODO: This is a bit hacky. - var nodes = Array.isArray(node) || node.cheerio ? node : [node]; - var output = ""; - for (var i = 0; i < nodes.length; i++) { - output += renderNode(nodes[i], options); +function render(node, options) { + if (options === void 0) { options = {}; } + // TODO: This is a bit hacky. + var nodes = Array.isArray(node) || node.cheerio ? node : [node]; + var output = ""; + for (var i = 0; i < nodes.length; i++) { + output += renderNode(nodes[i], options); } return output; } @@ -45548,7 +44023,7 @@ function renderComment(elem) { /***/ }), -/* 292 */ +/* 278 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -45588,15 +44063,15 @@ exports.Doctype = "doctype" /* Doctype */; /***/ }), -/* 293 */ +/* 279 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.decodeXMLStrict = exports.decodeHTML5Strict = exports.decodeHTML4Strict = exports.decodeHTML5 = exports.decodeHTML4 = exports.decodeHTMLStrict = exports.decodeHTML = exports.decodeXML = exports.encodeHTML5 = exports.encodeHTML4 = exports.escapeUTF8 = exports.escape = exports.encodeNonAsciiHTML = exports.encodeHTML = exports.encodeXML = exports.encode = exports.decodeStrict = exports.decode = void 0; -var decode_1 = __webpack_require__(294); -var encode_1 = __webpack_require__(300); +var decode_1 = __webpack_require__(280); +var encode_1 = __webpack_require__(286); /** * Decodes a string with entities. * @@ -45630,7 +44105,7 @@ function encode(data, level) { return (!level || level <= 0 ? encode_1.encodeXML : encode_1.encodeHTML)(data); } exports.encode = encode; -var encode_2 = __webpack_require__(300); +var encode_2 = __webpack_require__(286); Object.defineProperty(exports, "encodeXML", { enumerable: true, get: function () { return encode_2.encodeXML; } }); Object.defineProperty(exports, "encodeHTML", { enumerable: true, get: function () { return encode_2.encodeHTML; } }); Object.defineProperty(exports, "encodeNonAsciiHTML", { enumerable: true, get: function () { return encode_2.encodeNonAsciiHTML; } }); @@ -45639,7 +44114,7 @@ Object.defineProperty(exports, "escapeUTF8", { enumerable: true, get: function ( // Legacy aliases (deprecated) Object.defineProperty(exports, "encodeHTML4", { enumerable: true, get: function () { return encode_2.encodeHTML; } }); Object.defineProperty(exports, "encodeHTML5", { enumerable: true, get: function () { return encode_2.encodeHTML; } }); -var decode_2 = __webpack_require__(294); +var decode_2 = __webpack_require__(280); Object.defineProperty(exports, "decodeXML", { enumerable: true, get: function () { return decode_2.decodeXML; } }); Object.defineProperty(exports, "decodeHTML", { enumerable: true, get: function () { return decode_2.decodeHTML; } }); Object.defineProperty(exports, "decodeHTMLStrict", { enumerable: true, get: function () { return decode_2.decodeHTMLStrict; } }); @@ -45652,7 +44127,7 @@ Object.defineProperty(exports, "decodeXMLStrict", { enumerable: true, get: funct /***/ }), -/* 294 */ +/* 280 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -45662,10 +44137,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) { }; Object.defineProperty(exports, "__esModule", { value: true }); exports.decodeHTML = exports.decodeHTMLStrict = exports.decodeXML = void 0; -var entities_json_1 = __importDefault(__webpack_require__(295)); -var legacy_json_1 = __importDefault(__webpack_require__(296)); -var xml_json_1 = __importDefault(__webpack_require__(297)); -var decode_codepoint_1 = __importDefault(__webpack_require__(298)); +var entities_json_1 = __importDefault(__webpack_require__(281)); +var legacy_json_1 = __importDefault(__webpack_require__(282)); +var xml_json_1 = __importDefault(__webpack_require__(283)); +var decode_codepoint_1 = __importDefault(__webpack_require__(284)); var strictEntityRe = /&(?:[a-zA-Z0-9]+|#[xX][\da-fA-F]+|#\d+);/g; exports.decodeXML = getStrictDecoder(xml_json_1.default); exports.decodeHTMLStrict = getStrictDecoder(entities_json_1.default); @@ -45712,25 +44187,25 @@ function getReplacer(map) { /***/ }), -/* 295 */ +/* 281 */ /***/ (function(module) { module.exports = JSON.parse("{\"Aacute\":\"Ã\",\"aacute\":\"á\",\"Abreve\":\"Ä‚\",\"abreve\":\"ă\",\"ac\":\"∾\",\"acd\":\"∿\",\"acE\":\"∾̳\",\"Acirc\":\"Â\",\"acirc\":\"â\",\"acute\":\"´\",\"Acy\":\"Ð\",\"acy\":\"а\",\"AElig\":\"Æ\",\"aelig\":\"æ\",\"af\":\"â¡\",\"Afr\":\"ð”„\",\"afr\":\"ð”ž\",\"Agrave\":\"À\",\"agrave\":\"à \",\"alefsym\":\"ℵ\",\"aleph\":\"ℵ\",\"Alpha\":\"Α\",\"alpha\":\"α\",\"Amacr\":\"Ä€\",\"amacr\":\"Ä\",\"amalg\":\"⨿\",\"amp\":\"&\",\"AMP\":\"&\",\"andand\":\"â©•\",\"And\":\"â©“\",\"and\":\"∧\",\"andd\":\"⩜\",\"andslope\":\"⩘\",\"andv\":\"⩚\",\"ang\":\"∠\",\"ange\":\"⦤\",\"angle\":\"∠\",\"angmsdaa\":\"⦨\",\"angmsdab\":\"⦩\",\"angmsdac\":\"⦪\",\"angmsdad\":\"⦫\",\"angmsdae\":\"⦬\",\"angmsdaf\":\"â¦\",\"angmsdag\":\"⦮\",\"angmsdah\":\"⦯\",\"angmsd\":\"∡\",\"angrt\":\"∟\",\"angrtvb\":\"⊾\",\"angrtvbd\":\"â¦\",\"angsph\":\"∢\",\"angst\":\"Ã…\",\"angzarr\":\"â¼\",\"Aogon\":\"Ä„\",\"aogon\":\"Ä…\",\"Aopf\":\"ð”¸\",\"aopf\":\"ð•’\",\"apacir\":\"⩯\",\"ap\":\"≈\",\"apE\":\"â©°\",\"ape\":\"≊\",\"apid\":\"≋\",\"apos\":\"'\",\"ApplyFunction\":\"â¡\",\"approx\":\"≈\",\"approxeq\":\"≊\",\"Aring\":\"Ã…\",\"aring\":\"Ã¥\",\"Ascr\":\"ð’œ\",\"ascr\":\"ð’¶\",\"Assign\":\"≔\",\"ast\":\"*\",\"asymp\":\"≈\",\"asympeq\":\"â‰\",\"Atilde\":\"Ã\",\"atilde\":\"ã\",\"Auml\":\"Ä\",\"auml\":\"ä\",\"awconint\":\"∳\",\"awint\":\"⨑\",\"backcong\":\"≌\",\"backepsilon\":\"϶\",\"backprime\":\"‵\",\"backsim\":\"∽\",\"backsimeq\":\"â‹\",\"Backslash\":\"∖\",\"Barv\":\"â«§\",\"barvee\":\"⊽\",\"barwed\":\"⌅\",\"Barwed\":\"⌆\",\"barwedge\":\"⌅\",\"bbrk\":\"⎵\",\"bbrktbrk\":\"⎶\",\"bcong\":\"≌\",\"Bcy\":\"Б\",\"bcy\":\"б\",\"bdquo\":\"„\",\"becaus\":\"∵\",\"because\":\"∵\",\"Because\":\"∵\",\"bemptyv\":\"⦰\",\"bepsi\":\"϶\",\"bernou\":\"ℬ\",\"Bernoullis\":\"ℬ\",\"Beta\":\"Î’\",\"beta\":\"β\",\"beth\":\"â„¶\",\"between\":\"≬\",\"Bfr\":\"ð”…\",\"bfr\":\"ð”Ÿ\",\"bigcap\":\"â‹‚\",\"bigcirc\":\"â—¯\",\"bigcup\":\"⋃\",\"bigodot\":\"⨀\",\"bigoplus\":\"â¨\",\"bigotimes\":\"⨂\",\"bigsqcup\":\"⨆\",\"bigstar\":\"★\",\"bigtriangledown\":\"â–½\",\"bigtriangleup\":\"â–³\",\"biguplus\":\"⨄\",\"bigvee\":\"â‹\",\"bigwedge\":\"â‹€\",\"bkarow\":\"â¤\",\"blacklozenge\":\"â§«\",\"blacksquare\":\"â–ª\",\"blacktriangle\":\"â–´\",\"blacktriangledown\":\"â–¾\",\"blacktriangleleft\":\"â—‚\",\"blacktriangleright\":\"â–¸\",\"blank\":\"â£\",\"blk12\":\"â–’\",\"blk14\":\"â–‘\",\"blk34\":\"â–“\",\"block\":\"â–ˆ\",\"bne\":\"=⃥\",\"bnequiv\":\"≡⃥\",\"bNot\":\"â«\",\"bnot\":\"âŒ\",\"Bopf\":\"ð”¹\",\"bopf\":\"ð•“\",\"bot\":\"⊥\",\"bottom\":\"⊥\",\"bowtie\":\"⋈\",\"boxbox\":\"⧉\",\"boxdl\":\"â”\",\"boxdL\":\"â••\",\"boxDl\":\"â•–\",\"boxDL\":\"â•—\",\"boxdr\":\"┌\",\"boxdR\":\"â•’\",\"boxDr\":\"â•“\",\"boxDR\":\"â•”\",\"boxh\":\"─\",\"boxH\":\"â•\",\"boxhd\":\"┬\",\"boxHd\":\"╤\",\"boxhD\":\"â•¥\",\"boxHD\":\"╦\",\"boxhu\":\"â”´\",\"boxHu\":\"â•§\",\"boxhU\":\"╨\",\"boxHU\":\"â•©\",\"boxminus\":\"⊟\",\"boxplus\":\"⊞\",\"boxtimes\":\"⊠\",\"boxul\":\"┘\",\"boxuL\":\"â•›\",\"boxUl\":\"╜\",\"boxUL\":\"â•\",\"boxur\":\"â””\",\"boxuR\":\"╘\",\"boxUr\":\"â•™\",\"boxUR\":\"╚\",\"boxv\":\"│\",\"boxV\":\"â•‘\",\"boxvh\":\"┼\",\"boxvH\":\"╪\",\"boxVh\":\"â•«\",\"boxVH\":\"╬\",\"boxvl\":\"┤\",\"boxvL\":\"â•¡\",\"boxVl\":\"â•¢\",\"boxVL\":\"â•£\",\"boxvr\":\"├\",\"boxvR\":\"╞\",\"boxVr\":\"╟\",\"boxVR\":\"â• \",\"bprime\":\"‵\",\"breve\":\"˘\",\"Breve\":\"˘\",\"brvbar\":\"¦\",\"bscr\":\"ð’·\",\"Bscr\":\"ℬ\",\"bsemi\":\"â\",\"bsim\":\"∽\",\"bsime\":\"â‹\",\"bsolb\":\"â§…\",\"bsol\":\"\\\\\",\"bsolhsub\":\"⟈\",\"bull\":\"•\",\"bullet\":\"•\",\"bump\":\"≎\",\"bumpE\":\"⪮\",\"bumpe\":\"â‰\",\"Bumpeq\":\"≎\",\"bumpeq\":\"â‰\",\"Cacute\":\"Ć\",\"cacute\":\"ć\",\"capand\":\"â©„\",\"capbrcup\":\"⩉\",\"capcap\":\"â©‹\",\"cap\":\"∩\",\"Cap\":\"â‹’\",\"capcup\":\"⩇\",\"capdot\":\"â©€\",\"CapitalDifferentialD\":\"â……\",\"caps\":\"∩︀\",\"caret\":\"â\",\"caron\":\"ˇ\",\"Cayleys\":\"â„\",\"ccaps\":\"â©\",\"Ccaron\":\"ÄŒ\",\"ccaron\":\"Ä\",\"Ccedil\":\"Ç\",\"ccedil\":\"ç\",\"Ccirc\":\"Ĉ\",\"ccirc\":\"ĉ\",\"Cconint\":\"∰\",\"ccups\":\"⩌\",\"ccupssm\":\"â©\",\"Cdot\":\"ÄŠ\",\"cdot\":\"Ä‹\",\"cedil\":\"¸\",\"Cedilla\":\"¸\",\"cemptyv\":\"⦲\",\"cent\":\"¢\",\"centerdot\":\"·\",\"CenterDot\":\"·\",\"cfr\":\"ð” \",\"Cfr\":\"â„\",\"CHcy\":\"Ч\",\"chcy\":\"ч\",\"check\":\"✓\",\"checkmark\":\"✓\",\"Chi\":\"Χ\",\"chi\":\"χ\",\"circ\":\"ˆ\",\"circeq\":\"≗\",\"circlearrowleft\":\"↺\",\"circlearrowright\":\"↻\",\"circledast\":\"⊛\",\"circledcirc\":\"⊚\",\"circleddash\":\"âŠ\",\"CircleDot\":\"⊙\",\"circledR\":\"®\",\"circledS\":\"Ⓢ\",\"CircleMinus\":\"⊖\",\"CirclePlus\":\"⊕\",\"CircleTimes\":\"⊗\",\"cir\":\"â—‹\",\"cirE\":\"⧃\",\"cire\":\"≗\",\"cirfnint\":\"â¨\",\"cirmid\":\"⫯\",\"cirscir\":\"â§‚\",\"ClockwiseContourIntegral\":\"∲\",\"CloseCurlyDoubleQuote\":\"â€\",\"CloseCurlyQuote\":\"’\",\"clubs\":\"♣\",\"clubsuit\":\"♣\",\"colon\":\":\",\"Colon\":\"∷\",\"Colone\":\"â©´\",\"colone\":\"≔\",\"coloneq\":\"≔\",\"comma\":\",\",\"commat\":\"@\",\"comp\":\"âˆ\",\"compfn\":\"∘\",\"complement\":\"âˆ\",\"complexes\":\"â„‚\",\"cong\":\"≅\",\"congdot\":\"â©\",\"Congruent\":\"≡\",\"conint\":\"∮\",\"Conint\":\"∯\",\"ContourIntegral\":\"∮\",\"copf\":\"ð•”\",\"Copf\":\"â„‚\",\"coprod\":\"âˆ\",\"Coproduct\":\"âˆ\",\"copy\":\"©\",\"COPY\":\"©\",\"copysr\":\"â„—\",\"CounterClockwiseContourIntegral\":\"∳\",\"crarr\":\"↵\",\"cross\":\"✗\",\"Cross\":\"⨯\",\"Cscr\":\"ð’ž\",\"cscr\":\"ð’¸\",\"csub\":\"â«\",\"csube\":\"â«‘\",\"csup\":\"â«\",\"csupe\":\"â«’\",\"ctdot\":\"⋯\",\"cudarrl\":\"⤸\",\"cudarrr\":\"⤵\",\"cuepr\":\"⋞\",\"cuesc\":\"⋟\",\"cularr\":\"↶\",\"cularrp\":\"⤽\",\"cupbrcap\":\"⩈\",\"cupcap\":\"⩆\",\"CupCap\":\"â‰\",\"cup\":\"∪\",\"Cup\":\"â‹“\",\"cupcup\":\"⩊\",\"cupdot\":\"âŠ\",\"cupor\":\"â©…\",\"cups\":\"∪︀\",\"curarr\":\"↷\",\"curarrm\":\"⤼\",\"curlyeqprec\":\"⋞\",\"curlyeqsucc\":\"⋟\",\"curlyvee\":\"⋎\",\"curlywedge\":\"â‹\",\"curren\":\"¤\",\"curvearrowleft\":\"↶\",\"curvearrowright\":\"↷\",\"cuvee\":\"⋎\",\"cuwed\":\"â‹\",\"cwconint\":\"∲\",\"cwint\":\"∱\",\"cylcty\":\"âŒ\",\"dagger\":\"†\",\"Dagger\":\"‡\",\"daleth\":\"ℸ\",\"darr\":\"↓\",\"Darr\":\"↡\",\"dArr\":\"⇓\",\"dash\":\"â€\",\"Dashv\":\"⫤\",\"dashv\":\"⊣\",\"dbkarow\":\"â¤\",\"dblac\":\"Ë\",\"Dcaron\":\"ÄŽ\",\"dcaron\":\"Ä\",\"Dcy\":\"Д\",\"dcy\":\"д\",\"ddagger\":\"‡\",\"ddarr\":\"⇊\",\"DD\":\"â……\",\"dd\":\"â…†\",\"DDotrahd\":\"⤑\",\"ddotseq\":\"â©·\",\"deg\":\"°\",\"Del\":\"∇\",\"Delta\":\"Δ\",\"delta\":\"δ\",\"demptyv\":\"⦱\",\"dfisht\":\"⥿\",\"Dfr\":\"ð”‡\",\"dfr\":\"ð”¡\",\"dHar\":\"⥥\",\"dharl\":\"⇃\",\"dharr\":\"⇂\",\"DiacriticalAcute\":\"´\",\"DiacriticalDot\":\"Ë™\",\"DiacriticalDoubleAcute\":\"Ë\",\"DiacriticalGrave\":\"`\",\"DiacriticalTilde\":\"Ëœ\",\"diam\":\"â‹„\",\"diamond\":\"â‹„\",\"Diamond\":\"â‹„\",\"diamondsuit\":\"♦\",\"diams\":\"♦\",\"die\":\"¨\",\"DifferentialD\":\"â…†\",\"digamma\":\"Ï\",\"disin\":\"⋲\",\"div\":\"÷\",\"divide\":\"÷\",\"divideontimes\":\"⋇\",\"divonx\":\"⋇\",\"DJcy\":\"Ђ\",\"djcy\":\"Ñ’\",\"dlcorn\":\"⌞\",\"dlcrop\":\"âŒ\",\"dollar\":\"$\",\"Dopf\":\"ð”»\",\"dopf\":\"ð••\",\"Dot\":\"¨\",\"dot\":\"Ë™\",\"DotDot\":\"⃜\",\"doteq\":\"â‰\",\"doteqdot\":\"≑\",\"DotEqual\":\"â‰\",\"dotminus\":\"∸\",\"dotplus\":\"∔\",\"dotsquare\":\"⊡\",\"doublebarwedge\":\"⌆\",\"DoubleContourIntegral\":\"∯\",\"DoubleDot\":\"¨\",\"DoubleDownArrow\":\"⇓\",\"DoubleLeftArrow\":\"â‡\",\"DoubleLeftRightArrow\":\"⇔\",\"DoubleLeftTee\":\"⫤\",\"DoubleLongLeftArrow\":\"⟸\",\"DoubleLongLeftRightArrow\":\"⟺\",\"DoubleLongRightArrow\":\"⟹\",\"DoubleRightArrow\":\"⇒\",\"DoubleRightTee\":\"⊨\",\"DoubleUpArrow\":\"⇑\",\"DoubleUpDownArrow\":\"⇕\",\"DoubleVerticalBar\":\"∥\",\"DownArrowBar\":\"⤓\",\"downarrow\":\"↓\",\"DownArrow\":\"↓\",\"Downarrow\":\"⇓\",\"DownArrowUpArrow\":\"⇵\",\"DownBreve\":\"Ì‘\",\"downdownarrows\":\"⇊\",\"downharpoonleft\":\"⇃\",\"downharpoonright\":\"⇂\",\"DownLeftRightVector\":\"â¥\",\"DownLeftTeeVector\":\"⥞\",\"DownLeftVectorBar\":\"⥖\",\"DownLeftVector\":\"↽\",\"DownRightTeeVector\":\"⥟\",\"DownRightVectorBar\":\"⥗\",\"DownRightVector\":\"â‡\",\"DownTeeArrow\":\"↧\",\"DownTee\":\"⊤\",\"drbkarow\":\"â¤\",\"drcorn\":\"⌟\",\"drcrop\":\"⌌\",\"Dscr\":\"ð’Ÿ\",\"dscr\":\"ð’¹\",\"DScy\":\"Ð…\",\"dscy\":\"Ñ•\",\"dsol\":\"â§¶\",\"Dstrok\":\"Ä\",\"dstrok\":\"Ä‘\",\"dtdot\":\"⋱\",\"dtri\":\"â–¿\",\"dtrif\":\"â–¾\",\"duarr\":\"⇵\",\"duhar\":\"⥯\",\"dwangle\":\"⦦\",\"DZcy\":\"Ð\",\"dzcy\":\"ÑŸ\",\"dzigrarr\":\"⟿\",\"Eacute\":\"É\",\"eacute\":\"é\",\"easter\":\"â©®\",\"Ecaron\":\"Äš\",\"ecaron\":\"Ä›\",\"Ecirc\":\"Ê\",\"ecirc\":\"ê\",\"ecir\":\"≖\",\"ecolon\":\"≕\",\"Ecy\":\"Ð\",\"ecy\":\"Ñ\",\"eDDot\":\"â©·\",\"Edot\":\"Ä–\",\"edot\":\"Ä—\",\"eDot\":\"≑\",\"ee\":\"â…‡\",\"efDot\":\"≒\",\"Efr\":\"ð”ˆ\",\"efr\":\"ð”¢\",\"eg\":\"⪚\",\"Egrave\":\"È\",\"egrave\":\"è\",\"egs\":\"⪖\",\"egsdot\":\"⪘\",\"el\":\"⪙\",\"Element\":\"∈\",\"elinters\":\"â§\",\"ell\":\"â„“\",\"els\":\"⪕\",\"elsdot\":\"⪗\",\"Emacr\":\"Ä’\",\"emacr\":\"Ä“\",\"empty\":\"∅\",\"emptyset\":\"∅\",\"EmptySmallSquare\":\"â—»\",\"emptyv\":\"∅\",\"EmptyVerySmallSquare\":\"â–«\",\"emsp13\":\" \",\"emsp14\":\" \",\"emsp\":\" \",\"ENG\":\"ÅŠ\",\"eng\":\"Å‹\",\"ensp\":\" \",\"Eogon\":\"Ę\",\"eogon\":\"Ä™\",\"Eopf\":\"ð”¼\",\"eopf\":\"ð•–\",\"epar\":\"â‹•\",\"eparsl\":\"â§£\",\"eplus\":\"⩱\",\"epsi\":\"ε\",\"Epsilon\":\"Ε\",\"epsilon\":\"ε\",\"epsiv\":\"ϵ\",\"eqcirc\":\"≖\",\"eqcolon\":\"≕\",\"eqsim\":\"≂\",\"eqslantgtr\":\"⪖\",\"eqslantless\":\"⪕\",\"Equal\":\"⩵\",\"equals\":\"=\",\"EqualTilde\":\"≂\",\"equest\":\"≟\",\"Equilibrium\":\"⇌\",\"equiv\":\"≡\",\"equivDD\":\"⩸\",\"eqvparsl\":\"â§¥\",\"erarr\":\"⥱\",\"erDot\":\"≓\",\"escr\":\"ℯ\",\"Escr\":\"â„°\",\"esdot\":\"â‰\",\"Esim\":\"⩳\",\"esim\":\"≂\",\"Eta\":\"Η\",\"eta\":\"η\",\"ETH\":\"Ã\",\"eth\":\"ð\",\"Euml\":\"Ë\",\"euml\":\"ë\",\"euro\":\"€\",\"excl\":\"!\",\"exist\":\"∃\",\"Exists\":\"∃\",\"expectation\":\"â„°\",\"exponentiale\":\"â…‡\",\"ExponentialE\":\"â…‡\",\"fallingdotseq\":\"≒\",\"Fcy\":\"Ф\",\"fcy\":\"Ñ„\",\"female\":\"♀\",\"ffilig\":\"ffi\",\"fflig\":\"ff\",\"ffllig\":\"ffl\",\"Ffr\":\"ð”‰\",\"ffr\":\"ð”£\",\"filig\":\"ï¬\",\"FilledSmallSquare\":\"â—¼\",\"FilledVerySmallSquare\":\"â–ª\",\"fjlig\":\"fj\",\"flat\":\"â™\",\"fllig\":\"fl\",\"fltns\":\"â–±\",\"fnof\":\"Æ’\",\"Fopf\":\"ð”½\",\"fopf\":\"ð•—\",\"forall\":\"∀\",\"ForAll\":\"∀\",\"fork\":\"â‹”\",\"forkv\":\"â«™\",\"Fouriertrf\":\"ℱ\",\"fpartint\":\"â¨\",\"frac12\":\"½\",\"frac13\":\"â…“\",\"frac14\":\"¼\",\"frac15\":\"â…•\",\"frac16\":\"â…™\",\"frac18\":\"â…›\",\"frac23\":\"â…”\",\"frac25\":\"â…–\",\"frac34\":\"¾\",\"frac35\":\"â…—\",\"frac38\":\"â…œ\",\"frac45\":\"â…˜\",\"frac56\":\"â…š\",\"frac58\":\"â…\",\"frac78\":\"â…ž\",\"frasl\":\"â„\",\"frown\":\"⌢\",\"fscr\":\"ð’»\",\"Fscr\":\"ℱ\",\"gacute\":\"ǵ\",\"Gamma\":\"Γ\",\"gamma\":\"γ\",\"Gammad\":\"Ïœ\",\"gammad\":\"Ï\",\"gap\":\"⪆\",\"Gbreve\":\"Äž\",\"gbreve\":\"ÄŸ\",\"Gcedil\":\"Ä¢\",\"Gcirc\":\"Äœ\",\"gcirc\":\"Ä\",\"Gcy\":\"Г\",\"gcy\":\"г\",\"Gdot\":\"Ä \",\"gdot\":\"Ä¡\",\"ge\":\"≥\",\"gE\":\"≧\",\"gEl\":\"⪌\",\"gel\":\"â‹›\",\"geq\":\"≥\",\"geqq\":\"≧\",\"geqslant\":\"⩾\",\"gescc\":\"⪩\",\"ges\":\"⩾\",\"gesdot\":\"⪀\",\"gesdoto\":\"⪂\",\"gesdotol\":\"⪄\",\"gesl\":\"⋛︀\",\"gesles\":\"⪔\",\"Gfr\":\"ð”Š\",\"gfr\":\"ð”¤\",\"gg\":\"≫\",\"Gg\":\"â‹™\",\"ggg\":\"â‹™\",\"gimel\":\"â„·\",\"GJcy\":\"Ѓ\",\"gjcy\":\"Ñ“\",\"gla\":\"⪥\",\"gl\":\"≷\",\"glE\":\"⪒\",\"glj\":\"⪤\",\"gnap\":\"⪊\",\"gnapprox\":\"⪊\",\"gne\":\"⪈\",\"gnE\":\"≩\",\"gneq\":\"⪈\",\"gneqq\":\"≩\",\"gnsim\":\"â‹§\",\"Gopf\":\"ð”¾\",\"gopf\":\"ð•˜\",\"grave\":\"`\",\"GreaterEqual\":\"≥\",\"GreaterEqualLess\":\"â‹›\",\"GreaterFullEqual\":\"≧\",\"GreaterGreater\":\"⪢\",\"GreaterLess\":\"≷\",\"GreaterSlantEqual\":\"⩾\",\"GreaterTilde\":\"≳\",\"Gscr\":\"ð’¢\",\"gscr\":\"ℊ\",\"gsim\":\"≳\",\"gsime\":\"⪎\",\"gsiml\":\"âª\",\"gtcc\":\"⪧\",\"gtcir\":\"⩺\",\"gt\":\">\",\"GT\":\">\",\"Gt\":\"≫\",\"gtdot\":\"â‹—\",\"gtlPar\":\"⦕\",\"gtquest\":\"⩼\",\"gtrapprox\":\"⪆\",\"gtrarr\":\"⥸\",\"gtrdot\":\"â‹—\",\"gtreqless\":\"â‹›\",\"gtreqqless\":\"⪌\",\"gtrless\":\"≷\",\"gtrsim\":\"≳\",\"gvertneqq\":\"≩︀\",\"gvnE\":\"≩︀\",\"Hacek\":\"ˇ\",\"hairsp\":\" \",\"half\":\"½\",\"hamilt\":\"â„‹\",\"HARDcy\":\"Ъ\",\"hardcy\":\"ÑŠ\",\"harrcir\":\"⥈\",\"harr\":\"↔\",\"hArr\":\"⇔\",\"harrw\":\"â†\",\"Hat\":\"^\",\"hbar\":\"â„\",\"Hcirc\":\"Ĥ\",\"hcirc\":\"Ä¥\",\"hearts\":\"♥\",\"heartsuit\":\"♥\",\"hellip\":\"…\",\"hercon\":\"⊹\",\"hfr\":\"ð”¥\",\"Hfr\":\"ℌ\",\"HilbertSpace\":\"â„‹\",\"hksearow\":\"⤥\",\"hkswarow\":\"⤦\",\"hoarr\":\"⇿\",\"homtht\":\"∻\",\"hookleftarrow\":\"↩\",\"hookrightarrow\":\"↪\",\"hopf\":\"ð•™\",\"Hopf\":\"â„\",\"horbar\":\"―\",\"HorizontalLine\":\"─\",\"hscr\":\"ð’½\",\"Hscr\":\"â„‹\",\"hslash\":\"â„\",\"Hstrok\":\"Ħ\",\"hstrok\":\"ħ\",\"HumpDownHump\":\"≎\",\"HumpEqual\":\"â‰\",\"hybull\":\"âƒ\",\"hyphen\":\"â€\",\"Iacute\":\"Ã\",\"iacute\":\"Ã\",\"ic\":\"â£\",\"Icirc\":\"ÃŽ\",\"icirc\":\"î\",\"Icy\":\"И\",\"icy\":\"и\",\"Idot\":\"İ\",\"IEcy\":\"Е\",\"iecy\":\"е\",\"iexcl\":\"¡\",\"iff\":\"⇔\",\"ifr\":\"ð”¦\",\"Ifr\":\"â„‘\",\"Igrave\":\"ÃŒ\",\"igrave\":\"ì\",\"ii\":\"â…ˆ\",\"iiiint\":\"⨌\",\"iiint\":\"âˆ\",\"iinfin\":\"â§œ\",\"iiota\":\"â„©\",\"IJlig\":\"IJ\",\"ijlig\":\"ij\",\"Imacr\":\"Ī\",\"imacr\":\"Ä«\",\"image\":\"â„‘\",\"ImaginaryI\":\"â…ˆ\",\"imagline\":\"â„\",\"imagpart\":\"â„‘\",\"imath\":\"ı\",\"Im\":\"â„‘\",\"imof\":\"⊷\",\"imped\":\"Ƶ\",\"Implies\":\"⇒\",\"incare\":\"â„…\",\"in\":\"∈\",\"infin\":\"∞\",\"infintie\":\"â§\",\"inodot\":\"ı\",\"intcal\":\"⊺\",\"int\":\"∫\",\"Int\":\"∬\",\"integers\":\"ℤ\",\"Integral\":\"∫\",\"intercal\":\"⊺\",\"Intersection\":\"â‹‚\",\"intlarhk\":\"⨗\",\"intprod\":\"⨼\",\"InvisibleComma\":\"â£\",\"InvisibleTimes\":\"â¢\",\"IOcy\":\"Ð\",\"iocy\":\"Ñ‘\",\"Iogon\":\"Ä®\",\"iogon\":\"į\",\"Iopf\":\"ð•€\",\"iopf\":\"ð•š\",\"Iota\":\"Ι\",\"iota\":\"ι\",\"iprod\":\"⨼\",\"iquest\":\"¿\",\"iscr\":\"ð’¾\",\"Iscr\":\"â„\",\"isin\":\"∈\",\"isindot\":\"⋵\",\"isinE\":\"⋹\",\"isins\":\"â‹´\",\"isinsv\":\"⋳\",\"isinv\":\"∈\",\"it\":\"â¢\",\"Itilde\":\"Ĩ\",\"itilde\":\"Ä©\",\"Iukcy\":\"І\",\"iukcy\":\"Ñ–\",\"Iuml\":\"Ã\",\"iuml\":\"ï\",\"Jcirc\":\"Ä´\",\"jcirc\":\"ĵ\",\"Jcy\":\"Й\",\"jcy\":\"й\",\"Jfr\":\"ð”\",\"jfr\":\"ð”§\",\"jmath\":\"È·\",\"Jopf\":\"ð•\",\"jopf\":\"ð•›\",\"Jscr\":\"ð’¥\",\"jscr\":\"ð’¿\",\"Jsercy\":\"Ј\",\"jsercy\":\"ј\",\"Jukcy\":\"Є\",\"jukcy\":\"Ñ”\",\"Kappa\":\"Κ\",\"kappa\":\"κ\",\"kappav\":\"ϰ\",\"Kcedil\":\"Ķ\",\"kcedil\":\"Ä·\",\"Kcy\":\"К\",\"kcy\":\"к\",\"Kfr\":\"ð”Ž\",\"kfr\":\"ð”¨\",\"kgreen\":\"ĸ\",\"KHcy\":\"Ð¥\",\"khcy\":\"Ñ…\",\"KJcy\":\"ÐŒ\",\"kjcy\":\"Ñœ\",\"Kopf\":\"ð•‚\",\"kopf\":\"ð•œ\",\"Kscr\":\"ð’¦\",\"kscr\":\"ð“€\",\"lAarr\":\"⇚\",\"Lacute\":\"Ĺ\",\"lacute\":\"ĺ\",\"laemptyv\":\"⦴\",\"lagran\":\"â„’\",\"Lambda\":\"Λ\",\"lambda\":\"λ\",\"lang\":\"⟨\",\"Lang\":\"⟪\",\"langd\":\"⦑\",\"langle\":\"⟨\",\"lap\":\"⪅\",\"Laplacetrf\":\"â„’\",\"laquo\":\"«\",\"larrb\":\"⇤\",\"larrbfs\":\"⤟\",\"larr\":\"â†\",\"Larr\":\"↞\",\"lArr\":\"â‡\",\"larrfs\":\"â¤\",\"larrhk\":\"↩\",\"larrlp\":\"↫\",\"larrpl\":\"⤹\",\"larrsim\":\"⥳\",\"larrtl\":\"↢\",\"latail\":\"⤙\",\"lAtail\":\"⤛\",\"lat\":\"⪫\",\"late\":\"âª\",\"lates\":\"âªï¸€\",\"lbarr\":\"⤌\",\"lBarr\":\"⤎\",\"lbbrk\":\"â²\",\"lbrace\":\"{\",\"lbrack\":\"[\",\"lbrke\":\"⦋\",\"lbrksld\":\"â¦\",\"lbrkslu\":\"â¦\",\"Lcaron\":\"Ľ\",\"lcaron\":\"ľ\",\"Lcedil\":\"Ä»\",\"lcedil\":\"ļ\",\"lceil\":\"⌈\",\"lcub\":\"{\",\"Lcy\":\"Л\",\"lcy\":\"л\",\"ldca\":\"⤶\",\"ldquo\":\"“\",\"ldquor\":\"„\",\"ldrdhar\":\"⥧\",\"ldrushar\":\"⥋\",\"ldsh\":\"↲\",\"le\":\"≤\",\"lE\":\"≦\",\"LeftAngleBracket\":\"⟨\",\"LeftArrowBar\":\"⇤\",\"leftarrow\":\"â†\",\"LeftArrow\":\"â†\",\"Leftarrow\":\"â‡\",\"LeftArrowRightArrow\":\"⇆\",\"leftarrowtail\":\"↢\",\"LeftCeiling\":\"⌈\",\"LeftDoubleBracket\":\"⟦\",\"LeftDownTeeVector\":\"⥡\",\"LeftDownVectorBar\":\"⥙\",\"LeftDownVector\":\"⇃\",\"LeftFloor\":\"⌊\",\"leftharpoondown\":\"↽\",\"leftharpoonup\":\"↼\",\"leftleftarrows\":\"⇇\",\"leftrightarrow\":\"↔\",\"LeftRightArrow\":\"↔\",\"Leftrightarrow\":\"⇔\",\"leftrightarrows\":\"⇆\",\"leftrightharpoons\":\"⇋\",\"leftrightsquigarrow\":\"â†\",\"LeftRightVector\":\"⥎\",\"LeftTeeArrow\":\"↤\",\"LeftTee\":\"⊣\",\"LeftTeeVector\":\"⥚\",\"leftthreetimes\":\"â‹‹\",\"LeftTriangleBar\":\"â§\",\"LeftTriangle\":\"⊲\",\"LeftTriangleEqual\":\"⊴\",\"LeftUpDownVector\":\"⥑\",\"LeftUpTeeVector\":\"⥠\",\"LeftUpVectorBar\":\"⥘\",\"LeftUpVector\":\"↿\",\"LeftVectorBar\":\"⥒\",\"LeftVector\":\"↼\",\"lEg\":\"⪋\",\"leg\":\"⋚\",\"leq\":\"≤\",\"leqq\":\"≦\",\"leqslant\":\"⩽\",\"lescc\":\"⪨\",\"les\":\"⩽\",\"lesdot\":\"â©¿\",\"lesdoto\":\"âª\",\"lesdotor\":\"⪃\",\"lesg\":\"⋚︀\",\"lesges\":\"⪓\",\"lessapprox\":\"⪅\",\"lessdot\":\"â‹–\",\"lesseqgtr\":\"⋚\",\"lesseqqgtr\":\"⪋\",\"LessEqualGreater\":\"⋚\",\"LessFullEqual\":\"≦\",\"LessGreater\":\"≶\",\"lessgtr\":\"≶\",\"LessLess\":\"⪡\",\"lesssim\":\"≲\",\"LessSlantEqual\":\"⩽\",\"LessTilde\":\"≲\",\"lfisht\":\"⥼\",\"lfloor\":\"⌊\",\"Lfr\":\"ð”\",\"lfr\":\"ð”©\",\"lg\":\"≶\",\"lgE\":\"⪑\",\"lHar\":\"⥢\",\"lhard\":\"↽\",\"lharu\":\"↼\",\"lharul\":\"⥪\",\"lhblk\":\"â–„\",\"LJcy\":\"Љ\",\"ljcy\":\"Ñ™\",\"llarr\":\"⇇\",\"ll\":\"≪\",\"Ll\":\"⋘\",\"llcorner\":\"⌞\",\"Lleftarrow\":\"⇚\",\"llhard\":\"⥫\",\"lltri\":\"â—º\",\"Lmidot\":\"Ä¿\",\"lmidot\":\"Å€\",\"lmoustache\":\"⎰\",\"lmoust\":\"⎰\",\"lnap\":\"⪉\",\"lnapprox\":\"⪉\",\"lne\":\"⪇\",\"lnE\":\"≨\",\"lneq\":\"⪇\",\"lneqq\":\"≨\",\"lnsim\":\"⋦\",\"loang\":\"⟬\",\"loarr\":\"⇽\",\"lobrk\":\"⟦\",\"longleftarrow\":\"⟵\",\"LongLeftArrow\":\"⟵\",\"Longleftarrow\":\"⟸\",\"longleftrightarrow\":\"⟷\",\"LongLeftRightArrow\":\"⟷\",\"Longleftrightarrow\":\"⟺\",\"longmapsto\":\"⟼\",\"longrightarrow\":\"⟶\",\"LongRightArrow\":\"⟶\",\"Longrightarrow\":\"⟹\",\"looparrowleft\":\"↫\",\"looparrowright\":\"↬\",\"lopar\":\"⦅\",\"Lopf\":\"ð•ƒ\",\"lopf\":\"ð•\",\"loplus\":\"â¨\",\"lotimes\":\"⨴\",\"lowast\":\"∗\",\"lowbar\":\"_\",\"LowerLeftArrow\":\"↙\",\"LowerRightArrow\":\"↘\",\"loz\":\"â—Š\",\"lozenge\":\"â—Š\",\"lozf\":\"â§«\",\"lpar\":\"(\",\"lparlt\":\"⦓\",\"lrarr\":\"⇆\",\"lrcorner\":\"⌟\",\"lrhar\":\"⇋\",\"lrhard\":\"â¥\",\"lrm\":\"‎\",\"lrtri\":\"⊿\",\"lsaquo\":\"‹\",\"lscr\":\"ð“\",\"Lscr\":\"â„’\",\"lsh\":\"↰\",\"Lsh\":\"↰\",\"lsim\":\"≲\",\"lsime\":\"âª\",\"lsimg\":\"âª\",\"lsqb\":\"[\",\"lsquo\":\"‘\",\"lsquor\":\"‚\",\"Lstrok\":\"Å\",\"lstrok\":\"Å‚\",\"ltcc\":\"⪦\",\"ltcir\":\"⩹\",\"lt\":\"<\",\"LT\":\"<\",\"Lt\":\"≪\",\"ltdot\":\"â‹–\",\"lthree\":\"â‹‹\",\"ltimes\":\"⋉\",\"ltlarr\":\"⥶\",\"ltquest\":\"â©»\",\"ltri\":\"â—ƒ\",\"ltrie\":\"⊴\",\"ltrif\":\"â—‚\",\"ltrPar\":\"⦖\",\"lurdshar\":\"⥊\",\"luruhar\":\"⥦\",\"lvertneqq\":\"≨︀\",\"lvnE\":\"≨︀\",\"macr\":\"¯\",\"male\":\"♂\",\"malt\":\"✠\",\"maltese\":\"✠\",\"Map\":\"⤅\",\"map\":\"↦\",\"mapsto\":\"↦\",\"mapstodown\":\"↧\",\"mapstoleft\":\"↤\",\"mapstoup\":\"↥\",\"marker\":\"â–®\",\"mcomma\":\"⨩\",\"Mcy\":\"М\",\"mcy\":\"м\",\"mdash\":\"—\",\"mDDot\":\"∺\",\"measuredangle\":\"∡\",\"MediumSpace\":\"âŸ\",\"Mellintrf\":\"ℳ\",\"Mfr\":\"ð”\",\"mfr\":\"ð”ª\",\"mho\":\"â„§\",\"micro\":\"µ\",\"midast\":\"*\",\"midcir\":\"â«°\",\"mid\":\"∣\",\"middot\":\"·\",\"minusb\":\"⊟\",\"minus\":\"−\",\"minusd\":\"∸\",\"minusdu\":\"⨪\",\"MinusPlus\":\"∓\",\"mlcp\":\"â«›\",\"mldr\":\"…\",\"mnplus\":\"∓\",\"models\":\"⊧\",\"Mopf\":\"ð•„\",\"mopf\":\"ð•ž\",\"mp\":\"∓\",\"mscr\":\"ð“‚\",\"Mscr\":\"ℳ\",\"mstpos\":\"∾\",\"Mu\":\"Μ\",\"mu\":\"μ\",\"multimap\":\"⊸\",\"mumap\":\"⊸\",\"nabla\":\"∇\",\"Nacute\":\"Ń\",\"nacute\":\"Å„\",\"nang\":\"∠⃒\",\"nap\":\"≉\",\"napE\":\"⩰̸\",\"napid\":\"≋̸\",\"napos\":\"ʼn\",\"napprox\":\"≉\",\"natural\":\"â™®\",\"naturals\":\"â„•\",\"natur\":\"â™®\",\"nbsp\":\" \",\"nbump\":\"≎̸\",\"nbumpe\":\"â‰Ì¸\",\"ncap\":\"⩃\",\"Ncaron\":\"Ň\",\"ncaron\":\"ň\",\"Ncedil\":\"Å…\",\"ncedil\":\"ņ\",\"ncong\":\"≇\",\"ncongdot\":\"â©Ì¸\",\"ncup\":\"â©‚\",\"Ncy\":\"Ð\",\"ncy\":\"н\",\"ndash\":\"–\",\"nearhk\":\"⤤\",\"nearr\":\"↗\",\"neArr\":\"⇗\",\"nearrow\":\"↗\",\"ne\":\"≠\",\"nedot\":\"â‰Ì¸\",\"NegativeMediumSpace\":\"​\",\"NegativeThickSpace\":\"​\",\"NegativeThinSpace\":\"​\",\"NegativeVeryThinSpace\":\"​\",\"nequiv\":\"≢\",\"nesear\":\"⤨\",\"nesim\":\"≂̸\",\"NestedGreaterGreater\":\"≫\",\"NestedLessLess\":\"≪\",\"NewLine\":\"\\n\",\"nexist\":\"∄\",\"nexists\":\"∄\",\"Nfr\":\"ð”‘\",\"nfr\":\"ð”«\",\"ngE\":\"≧̸\",\"nge\":\"≱\",\"ngeq\":\"≱\",\"ngeqq\":\"≧̸\",\"ngeqslant\":\"⩾̸\",\"nges\":\"⩾̸\",\"nGg\":\"⋙̸\",\"ngsim\":\"≵\",\"nGt\":\"≫⃒\",\"ngt\":\"≯\",\"ngtr\":\"≯\",\"nGtv\":\"≫̸\",\"nharr\":\"↮\",\"nhArr\":\"⇎\",\"nhpar\":\"⫲\",\"ni\":\"∋\",\"nis\":\"⋼\",\"nisd\":\"⋺\",\"niv\":\"∋\",\"NJcy\":\"Њ\",\"njcy\":\"Ñš\",\"nlarr\":\"↚\",\"nlArr\":\"â‡\",\"nldr\":\"‥\",\"nlE\":\"≦̸\",\"nle\":\"≰\",\"nleftarrow\":\"↚\",\"nLeftarrow\":\"â‡\",\"nleftrightarrow\":\"↮\",\"nLeftrightarrow\":\"⇎\",\"nleq\":\"≰\",\"nleqq\":\"≦̸\",\"nleqslant\":\"⩽̸\",\"nles\":\"⩽̸\",\"nless\":\"≮\",\"nLl\":\"⋘̸\",\"nlsim\":\"≴\",\"nLt\":\"≪⃒\",\"nlt\":\"≮\",\"nltri\":\"⋪\",\"nltrie\":\"⋬\",\"nLtv\":\"≪̸\",\"nmid\":\"∤\",\"NoBreak\":\"â \",\"NonBreakingSpace\":\" \",\"nopf\":\"ð•Ÿ\",\"Nopf\":\"â„•\",\"Not\":\"⫬\",\"not\":\"¬\",\"NotCongruent\":\"≢\",\"NotCupCap\":\"â‰\",\"NotDoubleVerticalBar\":\"∦\",\"NotElement\":\"∉\",\"NotEqual\":\"≠\",\"NotEqualTilde\":\"≂̸\",\"NotExists\":\"∄\",\"NotGreater\":\"≯\",\"NotGreaterEqual\":\"≱\",\"NotGreaterFullEqual\":\"≧̸\",\"NotGreaterGreater\":\"≫̸\",\"NotGreaterLess\":\"≹\",\"NotGreaterSlantEqual\":\"⩾̸\",\"NotGreaterTilde\":\"≵\",\"NotHumpDownHump\":\"≎̸\",\"NotHumpEqual\":\"â‰Ì¸\",\"notin\":\"∉\",\"notindot\":\"⋵̸\",\"notinE\":\"⋹̸\",\"notinva\":\"∉\",\"notinvb\":\"â‹·\",\"notinvc\":\"â‹¶\",\"NotLeftTriangleBar\":\"â§Ì¸\",\"NotLeftTriangle\":\"⋪\",\"NotLeftTriangleEqual\":\"⋬\",\"NotLess\":\"≮\",\"NotLessEqual\":\"≰\",\"NotLessGreater\":\"≸\",\"NotLessLess\":\"≪̸\",\"NotLessSlantEqual\":\"⩽̸\",\"NotLessTilde\":\"≴\",\"NotNestedGreaterGreater\":\"⪢̸\",\"NotNestedLessLess\":\"⪡̸\",\"notni\":\"∌\",\"notniva\":\"∌\",\"notnivb\":\"⋾\",\"notnivc\":\"⋽\",\"NotPrecedes\":\"⊀\",\"NotPrecedesEqual\":\"⪯̸\",\"NotPrecedesSlantEqual\":\"â‹ \",\"NotReverseElement\":\"∌\",\"NotRightTriangleBar\":\"â§Ì¸\",\"NotRightTriangle\":\"â‹«\",\"NotRightTriangleEqual\":\"â‹\",\"NotSquareSubset\":\"âŠÌ¸\",\"NotSquareSubsetEqual\":\"â‹¢\",\"NotSquareSuperset\":\"âŠÌ¸\",\"NotSquareSupersetEqual\":\"â‹£\",\"NotSubset\":\"⊂⃒\",\"NotSubsetEqual\":\"⊈\",\"NotSucceeds\":\"âŠ\",\"NotSucceedsEqual\":\"⪰̸\",\"NotSucceedsSlantEqual\":\"â‹¡\",\"NotSucceedsTilde\":\"≿̸\",\"NotSuperset\":\"⊃⃒\",\"NotSupersetEqual\":\"⊉\",\"NotTilde\":\"â‰\",\"NotTildeEqual\":\"≄\",\"NotTildeFullEqual\":\"≇\",\"NotTildeTilde\":\"≉\",\"NotVerticalBar\":\"∤\",\"nparallel\":\"∦\",\"npar\":\"∦\",\"nparsl\":\"⫽⃥\",\"npart\":\"∂̸\",\"npolint\":\"⨔\",\"npr\":\"⊀\",\"nprcue\":\"â‹ \",\"nprec\":\"⊀\",\"npreceq\":\"⪯̸\",\"npre\":\"⪯̸\",\"nrarrc\":\"⤳̸\",\"nrarr\":\"↛\",\"nrArr\":\"â‡\",\"nrarrw\":\"â†Ì¸\",\"nrightarrow\":\"↛\",\"nRightarrow\":\"â‡\",\"nrtri\":\"â‹«\",\"nrtrie\":\"â‹\",\"nsc\":\"âŠ\",\"nsccue\":\"â‹¡\",\"nsce\":\"⪰̸\",\"Nscr\":\"ð’©\",\"nscr\":\"ð“ƒ\",\"nshortmid\":\"∤\",\"nshortparallel\":\"∦\",\"nsim\":\"â‰\",\"nsime\":\"≄\",\"nsimeq\":\"≄\",\"nsmid\":\"∤\",\"nspar\":\"∦\",\"nsqsube\":\"â‹¢\",\"nsqsupe\":\"â‹£\",\"nsub\":\"⊄\",\"nsubE\":\"⫅̸\",\"nsube\":\"⊈\",\"nsubset\":\"⊂⃒\",\"nsubseteq\":\"⊈\",\"nsubseteqq\":\"⫅̸\",\"nsucc\":\"âŠ\",\"nsucceq\":\"⪰̸\",\"nsup\":\"⊅\",\"nsupE\":\"⫆̸\",\"nsupe\":\"⊉\",\"nsupset\":\"⊃⃒\",\"nsupseteq\":\"⊉\",\"nsupseteqq\":\"⫆̸\",\"ntgl\":\"≹\",\"Ntilde\":\"Ñ\",\"ntilde\":\"ñ\",\"ntlg\":\"≸\",\"ntriangleleft\":\"⋪\",\"ntrianglelefteq\":\"⋬\",\"ntriangleright\":\"â‹«\",\"ntrianglerighteq\":\"â‹\",\"Nu\":\"Î\",\"nu\":\"ν\",\"num\":\"#\",\"numero\":\"â„–\",\"numsp\":\" \",\"nvap\":\"â‰âƒ’\",\"nvdash\":\"⊬\",\"nvDash\":\"âŠ\",\"nVdash\":\"⊮\",\"nVDash\":\"⊯\",\"nvge\":\"≥⃒\",\"nvgt\":\">⃒\",\"nvHarr\":\"⤄\",\"nvinfin\":\"â§ž\",\"nvlArr\":\"⤂\",\"nvle\":\"≤⃒\",\"nvlt\":\"<⃒\",\"nvltrie\":\"⊴⃒\",\"nvrArr\":\"⤃\",\"nvrtrie\":\"⊵⃒\",\"nvsim\":\"∼⃒\",\"nwarhk\":\"⤣\",\"nwarr\":\"↖\",\"nwArr\":\"⇖\",\"nwarrow\":\"↖\",\"nwnear\":\"⤧\",\"Oacute\":\"Ó\",\"oacute\":\"ó\",\"oast\":\"⊛\",\"Ocirc\":\"Ô\",\"ocirc\":\"ô\",\"ocir\":\"⊚\",\"Ocy\":\"О\",\"ocy\":\"о\",\"odash\":\"âŠ\",\"Odblac\":\"Å\",\"odblac\":\"Å‘\",\"odiv\":\"⨸\",\"odot\":\"⊙\",\"odsold\":\"⦼\",\"OElig\":\"Å’\",\"oelig\":\"Å“\",\"ofcir\":\"⦿\",\"Ofr\":\"ð”’\",\"ofr\":\"ð”¬\",\"ogon\":\"Ë›\",\"Ograve\":\"Ã’\",\"ograve\":\"ò\",\"ogt\":\"â§\",\"ohbar\":\"⦵\",\"ohm\":\"Ω\",\"oint\":\"∮\",\"olarr\":\"↺\",\"olcir\":\"⦾\",\"olcross\":\"⦻\",\"oline\":\"‾\",\"olt\":\"â§€\",\"Omacr\":\"ÅŒ\",\"omacr\":\"Å\",\"Omega\":\"Ω\",\"omega\":\"ω\",\"Omicron\":\"Ο\",\"omicron\":\"ο\",\"omid\":\"⦶\",\"ominus\":\"⊖\",\"Oopf\":\"ð•†\",\"oopf\":\"ð• \",\"opar\":\"⦷\",\"OpenCurlyDoubleQuote\":\"“\",\"OpenCurlyQuote\":\"‘\",\"operp\":\"⦹\",\"oplus\":\"⊕\",\"orarr\":\"↻\",\"Or\":\"â©”\",\"or\":\"∨\",\"ord\":\"â©\",\"order\":\"â„´\",\"orderof\":\"â„´\",\"ordf\":\"ª\",\"ordm\":\"º\",\"origof\":\"⊶\",\"oror\":\"â©–\",\"orslope\":\"â©—\",\"orv\":\"â©›\",\"oS\":\"Ⓢ\",\"Oscr\":\"ð’ª\",\"oscr\":\"â„´\",\"Oslash\":\"Ø\",\"oslash\":\"ø\",\"osol\":\"⊘\",\"Otilde\":\"Õ\",\"otilde\":\"õ\",\"otimesas\":\"⨶\",\"Otimes\":\"⨷\",\"otimes\":\"⊗\",\"Ouml\":\"Ö\",\"ouml\":\"ö\",\"ovbar\":\"⌽\",\"OverBar\":\"‾\",\"OverBrace\":\"âž\",\"OverBracket\":\"⎴\",\"OverParenthesis\":\"âœ\",\"para\":\"¶\",\"parallel\":\"∥\",\"par\":\"∥\",\"parsim\":\"⫳\",\"parsl\":\"⫽\",\"part\":\"∂\",\"PartialD\":\"∂\",\"Pcy\":\"П\",\"pcy\":\"п\",\"percnt\":\"%\",\"period\":\".\",\"permil\":\"‰\",\"perp\":\"⊥\",\"pertenk\":\"‱\",\"Pfr\":\"ð”“\",\"pfr\":\"ð”\",\"Phi\":\"Φ\",\"phi\":\"φ\",\"phiv\":\"Ï•\",\"phmmat\":\"ℳ\",\"phone\":\"☎\",\"Pi\":\"Î \",\"pi\":\"Ï€\",\"pitchfork\":\"â‹”\",\"piv\":\"Ï–\",\"planck\":\"â„\",\"planckh\":\"ℎ\",\"plankv\":\"â„\",\"plusacir\":\"⨣\",\"plusb\":\"⊞\",\"pluscir\":\"⨢\",\"plus\":\"+\",\"plusdo\":\"∔\",\"plusdu\":\"⨥\",\"pluse\":\"⩲\",\"PlusMinus\":\"±\",\"plusmn\":\"±\",\"plussim\":\"⨦\",\"plustwo\":\"⨧\",\"pm\":\"±\",\"Poincareplane\":\"ℌ\",\"pointint\":\"⨕\",\"popf\":\"ð•¡\",\"Popf\":\"â„™\",\"pound\":\"£\",\"prap\":\"⪷\",\"Pr\":\"⪻\",\"pr\":\"≺\",\"prcue\":\"≼\",\"precapprox\":\"⪷\",\"prec\":\"≺\",\"preccurlyeq\":\"≼\",\"Precedes\":\"≺\",\"PrecedesEqual\":\"⪯\",\"PrecedesSlantEqual\":\"≼\",\"PrecedesTilde\":\"≾\",\"preceq\":\"⪯\",\"precnapprox\":\"⪹\",\"precneqq\":\"⪵\",\"precnsim\":\"⋨\",\"pre\":\"⪯\",\"prE\":\"⪳\",\"precsim\":\"≾\",\"prime\":\"′\",\"Prime\":\"″\",\"primes\":\"â„™\",\"prnap\":\"⪹\",\"prnE\":\"⪵\",\"prnsim\":\"⋨\",\"prod\":\"âˆ\",\"Product\":\"âˆ\",\"profalar\":\"⌮\",\"profline\":\"⌒\",\"profsurf\":\"⌓\",\"prop\":\"âˆ\",\"Proportional\":\"âˆ\",\"Proportion\":\"∷\",\"propto\":\"âˆ\",\"prsim\":\"≾\",\"prurel\":\"⊰\",\"Pscr\":\"ð’«\",\"pscr\":\"ð“…\",\"Psi\":\"Ψ\",\"psi\":\"ψ\",\"puncsp\":\" \",\"Qfr\":\"ð””\",\"qfr\":\"ð”®\",\"qint\":\"⨌\",\"qopf\":\"ð•¢\",\"Qopf\":\"ℚ\",\"qprime\":\"â—\",\"Qscr\":\"ð’¬\",\"qscr\":\"ð“†\",\"quaternions\":\"â„\",\"quatint\":\"⨖\",\"quest\":\"?\",\"questeq\":\"≟\",\"quot\":\"\\\"\",\"QUOT\":\"\\\"\",\"rAarr\":\"⇛\",\"race\":\"∽̱\",\"Racute\":\"Å”\",\"racute\":\"Å•\",\"radic\":\"√\",\"raemptyv\":\"⦳\",\"rang\":\"⟩\",\"Rang\":\"⟫\",\"rangd\":\"⦒\",\"range\":\"⦥\",\"rangle\":\"⟩\",\"raquo\":\"»\",\"rarrap\":\"⥵\",\"rarrb\":\"⇥\",\"rarrbfs\":\"⤠\",\"rarrc\":\"⤳\",\"rarr\":\"→\",\"Rarr\":\"↠\",\"rArr\":\"⇒\",\"rarrfs\":\"⤞\",\"rarrhk\":\"↪\",\"rarrlp\":\"↬\",\"rarrpl\":\"⥅\",\"rarrsim\":\"⥴\",\"Rarrtl\":\"⤖\",\"rarrtl\":\"↣\",\"rarrw\":\"â†\",\"ratail\":\"⤚\",\"rAtail\":\"⤜\",\"ratio\":\"∶\",\"rationals\":\"ℚ\",\"rbarr\":\"â¤\",\"rBarr\":\"â¤\",\"RBarr\":\"â¤\",\"rbbrk\":\"â³\",\"rbrace\":\"}\",\"rbrack\":\"]\",\"rbrke\":\"⦌\",\"rbrksld\":\"⦎\",\"rbrkslu\":\"â¦\",\"Rcaron\":\"Ř\",\"rcaron\":\"Å™\",\"Rcedil\":\"Å–\",\"rcedil\":\"Å—\",\"rceil\":\"⌉\",\"rcub\":\"}\",\"Rcy\":\"Ð \",\"rcy\":\"Ñ€\",\"rdca\":\"⤷\",\"rdldhar\":\"⥩\",\"rdquo\":\"â€\",\"rdquor\":\"â€\",\"rdsh\":\"↳\",\"real\":\"ℜ\",\"realine\":\"â„›\",\"realpart\":\"ℜ\",\"reals\":\"â„\",\"Re\":\"ℜ\",\"rect\":\"â–\",\"reg\":\"®\",\"REG\":\"®\",\"ReverseElement\":\"∋\",\"ReverseEquilibrium\":\"⇋\",\"ReverseUpEquilibrium\":\"⥯\",\"rfisht\":\"⥽\",\"rfloor\":\"⌋\",\"rfr\":\"ð”¯\",\"Rfr\":\"ℜ\",\"rHar\":\"⥤\",\"rhard\":\"â‡\",\"rharu\":\"⇀\",\"rharul\":\"⥬\",\"Rho\":\"Ρ\",\"rho\":\"Ï\",\"rhov\":\"ϱ\",\"RightAngleBracket\":\"⟩\",\"RightArrowBar\":\"⇥\",\"rightarrow\":\"→\",\"RightArrow\":\"→\",\"Rightarrow\":\"⇒\",\"RightArrowLeftArrow\":\"⇄\",\"rightarrowtail\":\"↣\",\"RightCeiling\":\"⌉\",\"RightDoubleBracket\":\"⟧\",\"RightDownTeeVector\":\"â¥\",\"RightDownVectorBar\":\"⥕\",\"RightDownVector\":\"⇂\",\"RightFloor\":\"⌋\",\"rightharpoondown\":\"â‡\",\"rightharpoonup\":\"⇀\",\"rightleftarrows\":\"⇄\",\"rightleftharpoons\":\"⇌\",\"rightrightarrows\":\"⇉\",\"rightsquigarrow\":\"â†\",\"RightTeeArrow\":\"↦\",\"RightTee\":\"⊢\",\"RightTeeVector\":\"⥛\",\"rightthreetimes\":\"⋌\",\"RightTriangleBar\":\"â§\",\"RightTriangle\":\"⊳\",\"RightTriangleEqual\":\"⊵\",\"RightUpDownVector\":\"â¥\",\"RightUpTeeVector\":\"⥜\",\"RightUpVectorBar\":\"⥔\",\"RightUpVector\":\"↾\",\"RightVectorBar\":\"⥓\",\"RightVector\":\"⇀\",\"ring\":\"Ëš\",\"risingdotseq\":\"≓\",\"rlarr\":\"⇄\",\"rlhar\":\"⇌\",\"rlm\":\"â€\",\"rmoustache\":\"⎱\",\"rmoust\":\"⎱\",\"rnmid\":\"â«®\",\"roang\":\"âŸ\",\"roarr\":\"⇾\",\"robrk\":\"⟧\",\"ropar\":\"⦆\",\"ropf\":\"ð•£\",\"Ropf\":\"â„\",\"roplus\":\"⨮\",\"rotimes\":\"⨵\",\"RoundImplies\":\"⥰\",\"rpar\":\")\",\"rpargt\":\"⦔\",\"rppolint\":\"⨒\",\"rrarr\":\"⇉\",\"Rrightarrow\":\"⇛\",\"rsaquo\":\"›\",\"rscr\":\"ð“‡\",\"Rscr\":\"â„›\",\"rsh\":\"↱\",\"Rsh\":\"↱\",\"rsqb\":\"]\",\"rsquo\":\"’\",\"rsquor\":\"’\",\"rthree\":\"⋌\",\"rtimes\":\"⋊\",\"rtri\":\"â–¹\",\"rtrie\":\"⊵\",\"rtrif\":\"â–¸\",\"rtriltri\":\"â§Ž\",\"RuleDelayed\":\"â§´\",\"ruluhar\":\"⥨\",\"rx\":\"℞\",\"Sacute\":\"Åš\",\"sacute\":\"Å›\",\"sbquo\":\"‚\",\"scap\":\"⪸\",\"Scaron\":\"Å \",\"scaron\":\"Å¡\",\"Sc\":\"⪼\",\"sc\":\"≻\",\"sccue\":\"≽\",\"sce\":\"⪰\",\"scE\":\"⪴\",\"Scedil\":\"Åž\",\"scedil\":\"ÅŸ\",\"Scirc\":\"Åœ\",\"scirc\":\"Å\",\"scnap\":\"⪺\",\"scnE\":\"⪶\",\"scnsim\":\"â‹©\",\"scpolint\":\"⨓\",\"scsim\":\"≿\",\"Scy\":\"С\",\"scy\":\"Ñ\",\"sdotb\":\"⊡\",\"sdot\":\"â‹…\",\"sdote\":\"⩦\",\"searhk\":\"⤥\",\"searr\":\"↘\",\"seArr\":\"⇘\",\"searrow\":\"↘\",\"sect\":\"§\",\"semi\":\";\",\"seswar\":\"⤩\",\"setminus\":\"∖\",\"setmn\":\"∖\",\"sext\":\"✶\",\"Sfr\":\"ð”–\",\"sfr\":\"ð”°\",\"sfrown\":\"⌢\",\"sharp\":\"♯\",\"SHCHcy\":\"Щ\",\"shchcy\":\"щ\",\"SHcy\":\"Ш\",\"shcy\":\"ш\",\"ShortDownArrow\":\"↓\",\"ShortLeftArrow\":\"â†\",\"shortmid\":\"∣\",\"shortparallel\":\"∥\",\"ShortRightArrow\":\"→\",\"ShortUpArrow\":\"↑\",\"shy\":\"Â\",\"Sigma\":\"Σ\",\"sigma\":\"σ\",\"sigmaf\":\"Ï‚\",\"sigmav\":\"Ï‚\",\"sim\":\"∼\",\"simdot\":\"⩪\",\"sime\":\"≃\",\"simeq\":\"≃\",\"simg\":\"⪞\",\"simgE\":\"⪠\",\"siml\":\"âª\",\"simlE\":\"⪟\",\"simne\":\"≆\",\"simplus\":\"⨤\",\"simrarr\":\"⥲\",\"slarr\":\"â†\",\"SmallCircle\":\"∘\",\"smallsetminus\":\"∖\",\"smashp\":\"⨳\",\"smeparsl\":\"⧤\",\"smid\":\"∣\",\"smile\":\"⌣\",\"smt\":\"⪪\",\"smte\":\"⪬\",\"smtes\":\"⪬︀\",\"SOFTcy\":\"Ь\",\"softcy\":\"ÑŒ\",\"solbar\":\"⌿\",\"solb\":\"â§„\",\"sol\":\"/\",\"Sopf\":\"ð•Š\",\"sopf\":\"ð•¤\",\"spades\":\"â™ \",\"spadesuit\":\"â™ \",\"spar\":\"∥\",\"sqcap\":\"⊓\",\"sqcaps\":\"⊓︀\",\"sqcup\":\"⊔\",\"sqcups\":\"⊔︀\",\"Sqrt\":\"√\",\"sqsub\":\"âŠ\",\"sqsube\":\"⊑\",\"sqsubset\":\"âŠ\",\"sqsubseteq\":\"⊑\",\"sqsup\":\"âŠ\",\"sqsupe\":\"⊒\",\"sqsupset\":\"âŠ\",\"sqsupseteq\":\"⊒\",\"square\":\"â–¡\",\"Square\":\"â–¡\",\"SquareIntersection\":\"⊓\",\"SquareSubset\":\"âŠ\",\"SquareSubsetEqual\":\"⊑\",\"SquareSuperset\":\"âŠ\",\"SquareSupersetEqual\":\"⊒\",\"SquareUnion\":\"⊔\",\"squarf\":\"â–ª\",\"squ\":\"â–¡\",\"squf\":\"â–ª\",\"srarr\":\"→\",\"Sscr\":\"ð’®\",\"sscr\":\"ð“ˆ\",\"ssetmn\":\"∖\",\"ssmile\":\"⌣\",\"sstarf\":\"⋆\",\"Star\":\"⋆\",\"star\":\"☆\",\"starf\":\"★\",\"straightepsilon\":\"ϵ\",\"straightphi\":\"Ï•\",\"strns\":\"¯\",\"sub\":\"⊂\",\"Sub\":\"â‹\",\"subdot\":\"⪽\",\"subE\":\"â«…\",\"sube\":\"⊆\",\"subedot\":\"⫃\",\"submult\":\"â«\",\"subnE\":\"â«‹\",\"subne\":\"⊊\",\"subplus\":\"⪿\",\"subrarr\":\"⥹\",\"subset\":\"⊂\",\"Subset\":\"â‹\",\"subseteq\":\"⊆\",\"subseteqq\":\"â«…\",\"SubsetEqual\":\"⊆\",\"subsetneq\":\"⊊\",\"subsetneqq\":\"â«‹\",\"subsim\":\"⫇\",\"subsub\":\"â«•\",\"subsup\":\"â«“\",\"succapprox\":\"⪸\",\"succ\":\"≻\",\"succcurlyeq\":\"≽\",\"Succeeds\":\"≻\",\"SucceedsEqual\":\"⪰\",\"SucceedsSlantEqual\":\"≽\",\"SucceedsTilde\":\"≿\",\"succeq\":\"⪰\",\"succnapprox\":\"⪺\",\"succneqq\":\"⪶\",\"succnsim\":\"â‹©\",\"succsim\":\"≿\",\"SuchThat\":\"∋\",\"sum\":\"∑\",\"Sum\":\"∑\",\"sung\":\"♪\",\"sup1\":\"¹\",\"sup2\":\"²\",\"sup3\":\"³\",\"sup\":\"⊃\",\"Sup\":\"â‹‘\",\"supdot\":\"⪾\",\"supdsub\":\"⫘\",\"supE\":\"⫆\",\"supe\":\"⊇\",\"supedot\":\"â«„\",\"Superset\":\"⊃\",\"SupersetEqual\":\"⊇\",\"suphsol\":\"⟉\",\"suphsub\":\"â«—\",\"suplarr\":\"⥻\",\"supmult\":\"â«‚\",\"supnE\":\"⫌\",\"supne\":\"⊋\",\"supplus\":\"â«€\",\"supset\":\"⊃\",\"Supset\":\"â‹‘\",\"supseteq\":\"⊇\",\"supseteqq\":\"⫆\",\"supsetneq\":\"⊋\",\"supsetneqq\":\"⫌\",\"supsim\":\"⫈\",\"supsub\":\"â«”\",\"supsup\":\"â«–\",\"swarhk\":\"⤦\",\"swarr\":\"↙\",\"swArr\":\"⇙\",\"swarrow\":\"↙\",\"swnwar\":\"⤪\",\"szlig\":\"ß\",\"Tab\":\"\\t\",\"target\":\"⌖\",\"Tau\":\"Τ\",\"tau\":\"Ï„\",\"tbrk\":\"⎴\",\"Tcaron\":\"Ť\",\"tcaron\":\"Å¥\",\"Tcedil\":\"Å¢\",\"tcedil\":\"Å£\",\"Tcy\":\"Т\",\"tcy\":\"Ñ‚\",\"tdot\":\"⃛\",\"telrec\":\"⌕\",\"Tfr\":\"ð”—\",\"tfr\":\"ð”±\",\"there4\":\"∴\",\"therefore\":\"∴\",\"Therefore\":\"∴\",\"Theta\":\"Θ\",\"theta\":\"θ\",\"thetasym\":\"Ï‘\",\"thetav\":\"Ï‘\",\"thickapprox\":\"≈\",\"thicksim\":\"∼\",\"ThickSpace\":\"âŸâ€Š\",\"ThinSpace\":\" \",\"thinsp\":\" \",\"thkap\":\"≈\",\"thksim\":\"∼\",\"THORN\":\"Þ\",\"thorn\":\"þ\",\"tilde\":\"Ëœ\",\"Tilde\":\"∼\",\"TildeEqual\":\"≃\",\"TildeFullEqual\":\"≅\",\"TildeTilde\":\"≈\",\"timesbar\":\"⨱\",\"timesb\":\"⊠\",\"times\":\"×\",\"timesd\":\"⨰\",\"tint\":\"âˆ\",\"toea\":\"⤨\",\"topbot\":\"⌶\",\"topcir\":\"⫱\",\"top\":\"⊤\",\"Topf\":\"ð•‹\",\"topf\":\"ð•¥\",\"topfork\":\"⫚\",\"tosa\":\"⤩\",\"tprime\":\"‴\",\"trade\":\"â„¢\",\"TRADE\":\"â„¢\",\"triangle\":\"â–µ\",\"triangledown\":\"â–¿\",\"triangleleft\":\"â—ƒ\",\"trianglelefteq\":\"⊴\",\"triangleq\":\"≜\",\"triangleright\":\"â–¹\",\"trianglerighteq\":\"⊵\",\"tridot\":\"â—¬\",\"trie\":\"≜\",\"triminus\":\"⨺\",\"TripleDot\":\"⃛\",\"triplus\":\"⨹\",\"trisb\":\"â§\",\"tritime\":\"⨻\",\"trpezium\":\"â¢\",\"Tscr\":\"ð’¯\",\"tscr\":\"ð“‰\",\"TScy\":\"Ц\",\"tscy\":\"ц\",\"TSHcy\":\"Ћ\",\"tshcy\":\"Ñ›\",\"Tstrok\":\"Ŧ\",\"tstrok\":\"ŧ\",\"twixt\":\"≬\",\"twoheadleftarrow\":\"↞\",\"twoheadrightarrow\":\"↠\",\"Uacute\":\"Ú\",\"uacute\":\"ú\",\"uarr\":\"↑\",\"Uarr\":\"↟\",\"uArr\":\"⇑\",\"Uarrocir\":\"⥉\",\"Ubrcy\":\"ÐŽ\",\"ubrcy\":\"Ñž\",\"Ubreve\":\"Ŭ\",\"ubreve\":\"Å\",\"Ucirc\":\"Û\",\"ucirc\":\"û\",\"Ucy\":\"У\",\"ucy\":\"у\",\"udarr\":\"⇅\",\"Udblac\":\"Ű\",\"udblac\":\"ű\",\"udhar\":\"⥮\",\"ufisht\":\"⥾\",\"Ufr\":\"ð”˜\",\"ufr\":\"ð”²\",\"Ugrave\":\"Ù\",\"ugrave\":\"ù\",\"uHar\":\"⥣\",\"uharl\":\"↿\",\"uharr\":\"↾\",\"uhblk\":\"â–€\",\"ulcorn\":\"⌜\",\"ulcorner\":\"⌜\",\"ulcrop\":\"âŒ\",\"ultri\":\"â—¸\",\"Umacr\":\"Ū\",\"umacr\":\"Å«\",\"uml\":\"¨\",\"UnderBar\":\"_\",\"UnderBrace\":\"âŸ\",\"UnderBracket\":\"⎵\",\"UnderParenthesis\":\"â\",\"Union\":\"⋃\",\"UnionPlus\":\"⊎\",\"Uogon\":\"Ų\",\"uogon\":\"ų\",\"Uopf\":\"ð•Œ\",\"uopf\":\"ð•¦\",\"UpArrowBar\":\"⤒\",\"uparrow\":\"↑\",\"UpArrow\":\"↑\",\"Uparrow\":\"⇑\",\"UpArrowDownArrow\":\"⇅\",\"updownarrow\":\"↕\",\"UpDownArrow\":\"↕\",\"Updownarrow\":\"⇕\",\"UpEquilibrium\":\"⥮\",\"upharpoonleft\":\"↿\",\"upharpoonright\":\"↾\",\"uplus\":\"⊎\",\"UpperLeftArrow\":\"↖\",\"UpperRightArrow\":\"↗\",\"upsi\":\"Ï…\",\"Upsi\":\"Ï’\",\"upsih\":\"Ï’\",\"Upsilon\":\"Î¥\",\"upsilon\":\"Ï…\",\"UpTeeArrow\":\"↥\",\"UpTee\":\"⊥\",\"upuparrows\":\"⇈\",\"urcorn\":\"âŒ\",\"urcorner\":\"âŒ\",\"urcrop\":\"⌎\",\"Uring\":\"Å®\",\"uring\":\"ů\",\"urtri\":\"â—¹\",\"Uscr\":\"ð’°\",\"uscr\":\"ð“Š\",\"utdot\":\"â‹°\",\"Utilde\":\"Ũ\",\"utilde\":\"Å©\",\"utri\":\"â–µ\",\"utrif\":\"â–´\",\"uuarr\":\"⇈\",\"Uuml\":\"Ü\",\"uuml\":\"ü\",\"uwangle\":\"⦧\",\"vangrt\":\"⦜\",\"varepsilon\":\"ϵ\",\"varkappa\":\"ϰ\",\"varnothing\":\"∅\",\"varphi\":\"Ï•\",\"varpi\":\"Ï–\",\"varpropto\":\"âˆ\",\"varr\":\"↕\",\"vArr\":\"⇕\",\"varrho\":\"ϱ\",\"varsigma\":\"Ï‚\",\"varsubsetneq\":\"⊊︀\",\"varsubsetneqq\":\"⫋︀\",\"varsupsetneq\":\"⊋︀\",\"varsupsetneqq\":\"⫌︀\",\"vartheta\":\"Ï‘\",\"vartriangleleft\":\"⊲\",\"vartriangleright\":\"⊳\",\"vBar\":\"⫨\",\"Vbar\":\"â««\",\"vBarv\":\"â«©\",\"Vcy\":\"Ð’\",\"vcy\":\"в\",\"vdash\":\"⊢\",\"vDash\":\"⊨\",\"Vdash\":\"⊩\",\"VDash\":\"⊫\",\"Vdashl\":\"⫦\",\"veebar\":\"⊻\",\"vee\":\"∨\",\"Vee\":\"â‹\",\"veeeq\":\"≚\",\"vellip\":\"â‹®\",\"verbar\":\"|\",\"Verbar\":\"‖\",\"vert\":\"|\",\"Vert\":\"‖\",\"VerticalBar\":\"∣\",\"VerticalLine\":\"|\",\"VerticalSeparator\":\"â˜\",\"VerticalTilde\":\"≀\",\"VeryThinSpace\":\" \",\"Vfr\":\"ð”™\",\"vfr\":\"ð”³\",\"vltri\":\"⊲\",\"vnsub\":\"⊂⃒\",\"vnsup\":\"⊃⃒\",\"Vopf\":\"ð•\",\"vopf\":\"ð•§\",\"vprop\":\"âˆ\",\"vrtri\":\"⊳\",\"Vscr\":\"ð’±\",\"vscr\":\"ð“‹\",\"vsubnE\":\"⫋︀\",\"vsubne\":\"⊊︀\",\"vsupnE\":\"⫌︀\",\"vsupne\":\"⊋︀\",\"Vvdash\":\"⊪\",\"vzigzag\":\"⦚\",\"Wcirc\":\"Å´\",\"wcirc\":\"ŵ\",\"wedbar\":\"⩟\",\"wedge\":\"∧\",\"Wedge\":\"â‹€\",\"wedgeq\":\"≙\",\"weierp\":\"℘\",\"Wfr\":\"ð”š\",\"wfr\":\"ð”´\",\"Wopf\":\"ð•Ž\",\"wopf\":\"ð•¨\",\"wp\":\"℘\",\"wr\":\"≀\",\"wreath\":\"≀\",\"Wscr\":\"ð’²\",\"wscr\":\"ð“Œ\",\"xcap\":\"â‹‚\",\"xcirc\":\"â—¯\",\"xcup\":\"⋃\",\"xdtri\":\"â–½\",\"Xfr\":\"ð”›\",\"xfr\":\"ð”µ\",\"xharr\":\"⟷\",\"xhArr\":\"⟺\",\"Xi\":\"Ξ\",\"xi\":\"ξ\",\"xlarr\":\"⟵\",\"xlArr\":\"⟸\",\"xmap\":\"⟼\",\"xnis\":\"â‹»\",\"xodot\":\"⨀\",\"Xopf\":\"ð•\",\"xopf\":\"ð•©\",\"xoplus\":\"â¨\",\"xotime\":\"⨂\",\"xrarr\":\"⟶\",\"xrArr\":\"⟹\",\"Xscr\":\"ð’³\",\"xscr\":\"ð“\",\"xsqcup\":\"⨆\",\"xuplus\":\"⨄\",\"xutri\":\"â–³\",\"xvee\":\"â‹\",\"xwedge\":\"â‹€\",\"Yacute\":\"Ã\",\"yacute\":\"ý\",\"YAcy\":\"Я\",\"yacy\":\"Ñ\",\"Ycirc\":\"Ŷ\",\"ycirc\":\"Å·\",\"Ycy\":\"Ы\",\"ycy\":\"Ñ‹\",\"yen\":\"Â¥\",\"Yfr\":\"ð”œ\",\"yfr\":\"ð”¶\",\"YIcy\":\"Ї\",\"yicy\":\"Ñ—\",\"Yopf\":\"ð•\",\"yopf\":\"ð•ª\",\"Yscr\":\"ð’´\",\"yscr\":\"ð“Ž\",\"YUcy\":\"Ю\",\"yucy\":\"ÑŽ\",\"yuml\":\"ÿ\",\"Yuml\":\"Ÿ\",\"Zacute\":\"Ź\",\"zacute\":\"ź\",\"Zcaron\":\"Ž\",\"zcaron\":\"ž\",\"Zcy\":\"З\",\"zcy\":\"з\",\"Zdot\":\"Å»\",\"zdot\":\"ż\",\"zeetrf\":\"ℨ\",\"ZeroWidthSpace\":\"​\",\"Zeta\":\"Ζ\",\"zeta\":\"ζ\",\"zfr\":\"ð”·\",\"Zfr\":\"ℨ\",\"ZHcy\":\"Ж\",\"zhcy\":\"ж\",\"zigrarr\":\"â‡\",\"zopf\":\"ð•«\",\"Zopf\":\"ℤ\",\"Zscr\":\"ð’µ\",\"zscr\":\"ð“\",\"zwj\":\"â€\",\"zwnj\":\"‌\"}"); /***/ }), -/* 296 */ +/* 282 */ /***/ (function(module) { module.exports = JSON.parse("{\"Aacute\":\"Ã\",\"aacute\":\"á\",\"Acirc\":\"Â\",\"acirc\":\"â\",\"acute\":\"´\",\"AElig\":\"Æ\",\"aelig\":\"æ\",\"Agrave\":\"À\",\"agrave\":\"à \",\"amp\":\"&\",\"AMP\":\"&\",\"Aring\":\"Ã…\",\"aring\":\"Ã¥\",\"Atilde\":\"Ã\",\"atilde\":\"ã\",\"Auml\":\"Ä\",\"auml\":\"ä\",\"brvbar\":\"¦\",\"Ccedil\":\"Ç\",\"ccedil\":\"ç\",\"cedil\":\"¸\",\"cent\":\"¢\",\"copy\":\"©\",\"COPY\":\"©\",\"curren\":\"¤\",\"deg\":\"°\",\"divide\":\"÷\",\"Eacute\":\"É\",\"eacute\":\"é\",\"Ecirc\":\"Ê\",\"ecirc\":\"ê\",\"Egrave\":\"È\",\"egrave\":\"è\",\"ETH\":\"Ã\",\"eth\":\"ð\",\"Euml\":\"Ë\",\"euml\":\"ë\",\"frac12\":\"½\",\"frac14\":\"¼\",\"frac34\":\"¾\",\"gt\":\">\",\"GT\":\">\",\"Iacute\":\"Ã\",\"iacute\":\"Ã\",\"Icirc\":\"ÃŽ\",\"icirc\":\"î\",\"iexcl\":\"¡\",\"Igrave\":\"ÃŒ\",\"igrave\":\"ì\",\"iquest\":\"¿\",\"Iuml\":\"Ã\",\"iuml\":\"ï\",\"laquo\":\"«\",\"lt\":\"<\",\"LT\":\"<\",\"macr\":\"¯\",\"micro\":\"µ\",\"middot\":\"·\",\"nbsp\":\" \",\"not\":\"¬\",\"Ntilde\":\"Ñ\",\"ntilde\":\"ñ\",\"Oacute\":\"Ó\",\"oacute\":\"ó\",\"Ocirc\":\"Ô\",\"ocirc\":\"ô\",\"Ograve\":\"Ã’\",\"ograve\":\"ò\",\"ordf\":\"ª\",\"ordm\":\"º\",\"Oslash\":\"Ø\",\"oslash\":\"ø\",\"Otilde\":\"Õ\",\"otilde\":\"õ\",\"Ouml\":\"Ö\",\"ouml\":\"ö\",\"para\":\"¶\",\"plusmn\":\"±\",\"pound\":\"£\",\"quot\":\"\\\"\",\"QUOT\":\"\\\"\",\"raquo\":\"»\",\"reg\":\"®\",\"REG\":\"®\",\"sect\":\"§\",\"shy\":\"Â\",\"sup1\":\"¹\",\"sup2\":\"²\",\"sup3\":\"³\",\"szlig\":\"ß\",\"THORN\":\"Þ\",\"thorn\":\"þ\",\"times\":\"×\",\"Uacute\":\"Ú\",\"uacute\":\"ú\",\"Ucirc\":\"Û\",\"ucirc\":\"û\",\"Ugrave\":\"Ù\",\"ugrave\":\"ù\",\"uml\":\"¨\",\"Uuml\":\"Ü\",\"uuml\":\"ü\",\"Yacute\":\"Ã\",\"yacute\":\"ý\",\"yen\":\"Â¥\",\"yuml\":\"ÿ\"}"); /***/ }), -/* 297 */ +/* 283 */ /***/ (function(module) { module.exports = JSON.parse("{\"amp\":\"&\",\"apos\":\"'\",\"gt\":\">\",\"lt\":\"<\",\"quot\":\"\\\"\"}"); /***/ }), -/* 298 */ +/* 284 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -45739,7 +44214,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); -var decode_json_1 = __importDefault(__webpack_require__(299)); +var decode_json_1 = __importDefault(__webpack_require__(285)); // Adapted from https://github.com/mathiasbynens/he/blob/master/src/he.js#L94-L119 var fromCodePoint = // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition @@ -45767,13 +44242,13 @@ exports.default = decodeCodePoint; /***/ }), -/* 299 */ +/* 285 */ /***/ (function(module) { module.exports = JSON.parse("{\"0\":65533,\"128\":8364,\"130\":8218,\"131\":402,\"132\":8222,\"133\":8230,\"134\":8224,\"135\":8225,\"136\":710,\"137\":8240,\"138\":352,\"139\":8249,\"140\":338,\"142\":381,\"145\":8216,\"146\":8217,\"147\":8220,\"148\":8221,\"149\":8226,\"150\":8211,\"151\":8212,\"152\":732,\"153\":8482,\"154\":353,\"155\":8250,\"156\":339,\"158\":382,\"159\":376}"); /***/ }), -/* 300 */ +/* 286 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -45783,7 +44258,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) { }; Object.defineProperty(exports, "__esModule", { value: true }); exports.escapeUTF8 = exports.escape = exports.encodeNonAsciiHTML = exports.encodeHTML = exports.encodeXML = void 0; -var xml_json_1 = __importDefault(__webpack_require__(297)); +var xml_json_1 = __importDefault(__webpack_require__(283)); var inverseXML = getInverseObj(xml_json_1.default); var xmlReplacer = getInverseReplacer(inverseXML); /** @@ -45794,7 +44269,7 @@ var xmlReplacer = getInverseReplacer(inverseXML); * numeric hexadecimal reference (eg. `ü`) will be used. */ exports.encodeXML = getASCIIEncoder(inverseXML); -var entities_json_1 = __importDefault(__webpack_require__(295)); +var entities_json_1 = __importDefault(__webpack_require__(281)); var inverseHTML = getInverseObj(entities_json_1.default); var htmlReplacer = getInverseReplacer(inverseHTML); /** @@ -45916,7 +44391,7 @@ function getASCIIEncoder(obj) { /***/ }), -/* 301 */ +/* 287 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -46026,1525 +44501,1276 @@ exports.attributeNames = new Map([ /***/ }), -/* 302 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; +/* 288 */ +/***/ (function(module, exports) { -Object.defineProperty(exports, "__esModule", { value: true }); -exports.Doctype = exports.CDATA = exports.Tag = exports.Style = exports.Script = exports.Comment = exports.Directive = exports.Text = exports.Root = exports.isTag = exports.ElementType = void 0; -/** Types of elements found in htmlparser2's DOM */ -var ElementType; -(function (ElementType) { - /** Type for the root element of a document */ - ElementType["Root"] = "root"; - /** Type for Text */ - ElementType["Text"] = "text"; - /** Type for <? ... ?> */ - ElementType["Directive"] = "directive"; - /** Type for <!-- ... --> */ - ElementType["Comment"] = "comment"; - /** Type for <script> tags */ - ElementType["Script"] = "script"; - /** Type for <style> tags */ - ElementType["Style"] = "style"; - /** Type for Any tag */ - ElementType["Tag"] = "tag"; - /** Type for <![CDATA[ ... ]]> */ - ElementType["CDATA"] = "cdata"; - /** Type for <!doctype ...> */ - ElementType["Doctype"] = "doctype"; -})(ElementType = exports.ElementType || (exports.ElementType = {})); -/** - * Tests whether an element is a tag or not. - * - * @param elem Element to test +/* + * Cheerio default options */ -function isTag(elem) { - return (elem.type === ElementType.Tag || - elem.type === ElementType.Script || - elem.type === ElementType.Style); -} -exports.isTag = isTag; -// Exports for backwards compatibility -/** Type for the root element of a document */ -exports.Root = ElementType.Root; -/** Type for Text */ -exports.Text = ElementType.Text; -/** Type for <? ... ?> */ -exports.Directive = ElementType.Directive; -/** Type for <!-- ... --> */ -exports.Comment = ElementType.Comment; -/** Type for <script> tags */ -exports.Script = ElementType.Script; -/** Type for <style> tags */ -exports.Style = ElementType.Style; -/** Type for Any tag */ -exports.Tag = ElementType.Tag; -/** Type for <![CDATA[ ... ]]> */ -exports.CDATA = ElementType.CDATA; -/** Type for <!doctype ...> */ -exports.Doctype = ElementType.Doctype; + +exports.default = { + xml: false, + decodeEntities: true, +}; + +var xmlModeDefault = { _useHtmlParser2: true, xmlMode: true }; + +exports.flatten = function (options) { + return options && options.xml + ? typeof options.xml === 'boolean' + ? xmlModeDefault + : Object.assign({}, xmlModeDefault, options.xml) + : options; +}; /***/ }), -/* 303 */ +/* 289 */ /***/ (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); +}; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +var __spreadArrays = (this && this.__spreadArrays) || function () { + for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; + for (var r = Array(s), k = 0, i = 0; i < il; i++) + for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) + r[k] = a[j]; + return r; +}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.prevElementSibling = exports.nextElementSibling = exports.getName = exports.hasAttrib = exports.getAttributeValue = exports.getSiblings = exports.getParent = exports.getChildren = void 0; -var domhandler_1 = __webpack_require__(288); -var emptyArray = []; -/** - * Get a node's children. - * - * @param elem Node to get the children of. - * @returns `elem`'s children, or an empty array. - */ -function getChildren(elem) { - var _a; - return (_a = elem.children) !== null && _a !== void 0 ? _a : emptyArray; +exports.select = exports.filter = void 0; +var css_what_1 = __webpack_require__(290); +var css_select_1 = __webpack_require__(293); +var DomUtils = __importStar(__webpack_require__(294)); +var helpers_1 = __webpack_require__(325); +var positionals_1 = __webpack_require__(326); +/** Used to indicate a scope should be filtered. Might be ignored when filtering. */ +var SCOPE_PSEUDO = { + type: "pseudo", + name: "scope", + data: null, +}; +/** Used for actually filtering for scope. */ +var CUSTOM_SCOPE_PSEUDO = __assign({}, SCOPE_PSEUDO); +var UNIVERSAL_SELECTOR = { type: "universal", namespace: null }; +function filterByPosition(filter, elems, data, options) { + var num = typeof data === "string" ? parseInt(data, 10) : NaN; + switch (filter) { + case "first": + case "lt": + // Already done in `getLimit` + return elems; + case "last": + return elems.length > 0 ? [elems[elems.length - 1]] : elems; + case "nth": + case "eq": + return isFinite(num) && Math.abs(num) < elems.length + ? [num < 0 ? elems[elems.length + num] : elems[num]] + : []; + case "gt": + return isFinite(num) ? elems.slice(num + 1) : []; + case "even": + return elems.filter(function (_, i) { return i % 2 === 0; }); + case "odd": + return elems.filter(function (_, i) { return i % 2 === 1; }); + case "not": { + var filtered_1 = new Set(filterParsed(data, elems, options)); + return elems.filter(function (e) { return !filtered_1.has(e); }); + } + } } -exports.getChildren = getChildren; -/** - * Get a node's parent. - * - * @param elem Node to get the parent of. - * @returns `elem`'s parent node. - */ -function getParent(elem) { - return elem.parent || null; +function filter(selector, elements, options) { + if (options === void 0) { options = {}; } + return DomUtils.uniqueSort(filterParsed(css_what_1.parse(selector, options), elements, options)); } -exports.getParent = getParent; +exports.filter = filter; /** - * Gets an elements siblings, including the element itself. + * Filter a set of elements by a selector. * - * Attempts to get the children through the element's parent first. - * If we don't have a parent (the element is a root node), - * we walk the element's `prev` & `next` to get all remaining nodes. + * If there are multiple selectors, this can + * return elements multiple times; use `uniqueSort` + * to eliminate duplicates afterwards. * - * @param elem Element to get the siblings of. - * @returns `elem`'s siblings. + * @param selector Selector to filter by. + * @param elements Elements to filter. + * @param options Options for selector. */ -function getSiblings(elem) { - var _a, _b; - var parent = getParent(elem); - if (parent != null) - return getChildren(parent); - var siblings = [elem]; - var prev = elem.prev, next = elem.next; - while (prev != null) { - siblings.unshift(prev); - (_a = prev, prev = _a.prev); +function filterParsed(selector, elements, options) { + if (elements.length === 0) + return []; + var _a = helpers_1.groupSelectors(selector), plainSelectors = _a[0], filteredSelectors = _a[1]; + var results = []; + if (plainSelectors.length) { + results.push(filterElements(elements, plainSelectors, options)); } - while (next != null) { - siblings.push(next); - (_b = next, next = _b.next); + for (var _i = 0, filteredSelectors_1 = filteredSelectors; _i < filteredSelectors_1.length; _i++) { + var filteredSelector = filteredSelectors_1[_i]; + if (filteredSelector.some(css_what_1.isTraversal)) { + /* + * Get one root node, run selector with the scope + * set to all of our nodes. + */ + var root = helpers_1.getDocumentRoot(elements[0]); + var sel = __spreadArrays(filteredSelector, [CUSTOM_SCOPE_PSEUDO]); + results.push(findFilterElements(root, sel, options, true, elements)); + } + else { + // Performance optimization: If we don't have to traverse, just filter set. + results.push(findFilterElements(elements, filteredSelector, options, false)); + } } - return siblings; + if (results.length === 1) { + return results[0]; + } + return results.reduce(function (arr, rest) { return __spreadArrays(arr, rest); }, []); } -exports.getSiblings = getSiblings; -/** - * Gets an attribute from an element. - * - * @param elem Element to check. - * @param name Attribute name to retrieve. - * @returns The element's attribute value, or `undefined`. - */ -function getAttributeValue(elem, name) { - var _a; - return (_a = elem.attribs) === null || _a === void 0 ? void 0 : _a[name]; +function select(selector, root, options) { + if (options === void 0) { options = {}; } + var _a = helpers_1.groupSelectors(css_what_1.parse(selector, options)), plain = _a[0], filtered = _a[1]; + var results = filtered.map(function (sel) { + return findFilterElements(root, sel, options, true); + }); + // Plain selectors can be queried in a single go + if (plain.length) { + results.push(findElements(root, plain, options, Infinity)); + } + // If there was only a single selector, just return the result + if (results.length === 1) { + return results[0]; + } + // Sort results, filtering for duplicates + return DomUtils.uniqueSort(results.reduce(function (a, b) { return __spreadArrays(a, b); })); } -exports.getAttributeValue = getAttributeValue; -/** - * Checks whether an element has an attribute. - * - * @param elem Element to check. - * @param name Attribute name to look for. - * @returns Returns whether `elem` has the attribute `name`. - */ -function hasAttrib(elem, name) { - return (elem.attribs != null && - Object.prototype.hasOwnProperty.call(elem.attribs, name) && - elem.attribs[name] != null); +exports.select = select; +// Traversals that are treated differently in css-select. +var specialTraversal = new Set(["descendant", "adjacent"]); +function includesScopePseudo(t) { + return (t !== SCOPE_PSEUDO && + t.type === "pseudo" && + (t.name === "scope" || + (Array.isArray(t.data) && + t.data.some(function (data) { return data.some(includesScopePseudo); })))); } -exports.hasAttrib = hasAttrib; -/** - * Get the tag name of an element. - * - * @param elem The element to get the name for. - * @returns The tag name of `elem`. - */ -function getName(elem) { - return elem.name; +function addContextIfScope(selector, options, scopeContext) { + return scopeContext && selector.some(includesScopePseudo) + ? __assign(__assign({}, options), { context: scopeContext }) : options; } -exports.getName = getName; /** - * Returns the next element sibling of a node. * - * @param elem The element to get the next sibling of. - * @returns `elem`'s next sibling that is a tag. + * @param root Element(s) to search from. + * @param selector Selector to look for. + * @param options Options for querying. + * @param queryForSelector Query multiple levels deep for the initial selector, even if it doesn't contain a traversal. + * @param scopeContext Optional context for a :scope. */ -function nextElementSibling(elem) { - var _a; - var next = elem.next; - while (next !== null && !(0, domhandler_1.isTag)(next)) - (_a = next, next = _a.next); - return next; +function findFilterElements(root, selector, options, queryForSelector, scopeContext) { + var filterIndex = selector.findIndex(positionals_1.isFilter); + var sub = selector.slice(0, filterIndex); + var filter = selector[filterIndex]; + /* + * Set the number of elements to retrieve. + * Eg. for :first, we only have to get a single element. + */ + var limit = positionals_1.getLimit(filter.name, filter.data); + if (limit === 0) + return []; + var subOpts = addContextIfScope(sub, options, scopeContext); + /* + * Skip `findElements` call if our selector starts with a positional + * pseudo. + */ + var elemsNoLimit = sub.length === 0 && !Array.isArray(root) + ? DomUtils.getChildren(root).filter(DomUtils.isTag) + : sub.length === 0 || (sub.length === 1 && sub[0] === SCOPE_PSEUDO) + ? Array.isArray(root) + ? root + : [root] + : queryForSelector || sub.some(css_what_1.isTraversal) + ? findElements(root, [sub], subOpts, limit) + : // We know that this cannot be reached with root not being an array. + filterElements(root, [sub], subOpts); + var elems = elemsNoLimit.slice(0, limit); + var result = filterByPosition(filter.name, elems, filter.data, options); + if (result.length === 0 || selector.length === filterIndex + 1) { + return result; + } + var remainingSelector = selector.slice(filterIndex + 1); + var remainingHasTraversal = remainingSelector.some(css_what_1.isTraversal); + var remainingOpts = addContextIfScope(remainingSelector, options, scopeContext); + if (remainingHasTraversal) { + /* + * Some types of traversals have special logic when they start a selector + * in css-select. If this is the case, add a universal selector in front of + * the selector to avoid this behavior. + */ + if (specialTraversal.has(remainingSelector[0].type)) { + remainingSelector.unshift(UNIVERSAL_SELECTOR); + } + /* + * Add a scope token in front of the remaining selector, + * to make sure traversals don't match elements that aren't a + * part of the considered tree. + */ + remainingSelector.unshift(SCOPE_PSEUDO); + } + /* + * If we have another filter, recursively call `findFilterElements`, + * with the `recursive` flag disabled. We only have to look for more + * elements when we see a traversal. + * + * Otherwise, + */ + return remainingSelector.some(positionals_1.isFilter) + ? findFilterElements(result, remainingSelector, options, false, scopeContext) + : remainingHasTraversal + ? // Query existing elements to resolve traversal. + findElements(result, [remainingSelector], remainingOpts, Infinity) + : // If we don't have any more traversals, simply filter elements. + filterElements(result, [remainingSelector], remainingOpts); } -exports.nextElementSibling = nextElementSibling; -/** - * Returns the previous element sibling of a node. - * - * @param elem The element to get the previous sibling of. - * @returns `elem`'s previous sibling that is a tag. - */ -function prevElementSibling(elem) { - var _a; - var prev = elem.prev; - while (prev !== null && !(0, domhandler_1.isTag)(prev)) - (_a = prev, prev = _a.prev); - return prev; +function findElements(root, sel, options, limit) { + if (limit === 0) + return []; + // @ts-expect-error TS seems to mess up the type here ¯\_(ツ)_/¯ + var query = css_select_1._compileToken(sel, options, root); + var elems = css_select_1.prepareContext(root, DomUtils, query.shouldTestNextSiblings); + return DomUtils.find(function (node) { return DomUtils.isTag(node) && query(node); }, elems, true, limit); +} +function filterElements(elements, sel, options) { + // @ts-expect-error TS seems to mess up the type here ¯\_(ツ)_/¯ + var query = css_select_1._compileToken(sel, options); + return elements.filter(query); } -exports.prevElementSibling = prevElementSibling; /***/ }), -/* 304 */ +/* 290 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __exportStar = (this && this.__exportStar) || function(m, exports) { + for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.prepend = exports.prependChild = exports.append = exports.appendChild = exports.replaceElement = exports.removeElement = void 0; -/** - * Remove an element from the dom - * - * @param elem The element to be removed - */ -function removeElement(elem) { - if (elem.prev) - elem.prev.next = elem.next; - if (elem.next) - elem.next.prev = elem.prev; - if (elem.parent) { - var childs = elem.parent.children; - childs.splice(childs.lastIndexOf(elem), 1); - } -} -exports.removeElement = removeElement; +exports.stringify = exports.parse = void 0; +__exportStar(__webpack_require__(291), exports); +var parse_1 = __webpack_require__(291); +Object.defineProperty(exports, "parse", { enumerable: true, get: function () { return __importDefault(parse_1).default; } }); +var stringify_1 = __webpack_require__(292); +Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return __importDefault(stringify_1).default; } }); + + +/***/ }), +/* 291 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __spreadArrays = (this && this.__spreadArrays) || function () { + for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; + for (var r = Array(s), k = 0, i = 0; i < il; i++) + for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) + r[k] = a[j]; + return r; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.isTraversal = void 0; +var reName = /^[^\\#]?(?:\\(?:[\da-f]{1,6}\s?|.)|[\w\-\u00b0-\uFFFF])+/; +var reEscape = /\\([\da-f]{1,6}\s?|(\s)|.)/gi; +// Modified version of https://github.com/jquery/sizzle/blob/master/src/sizzle.js#L87 +var reAttr = /^\s*(?:(\*|[-\w]*)\|)?((?:\\.|[\w\u00b0-\uFFFF-])+)\s*(?:(\S?)=\s*(?:(['"])((?:[^\\]|\\[^])*?)\4|(#?(?:\\.|[\w\u00b0-\uFFFF-])*)|)|)\s*([iI])?\]/; +var actionTypes = { + undefined: "exists", + "": "equals", + "~": "element", + "^": "start", + $: "end", + "*": "any", + "!": "not", + "|": "hyphen", +}; +var Traversals = { + ">": "child", + "<": "parent", + "~": "sibling", + "+": "adjacent", +}; +var attribSelectors = { + "#": ["id", "equals"], + ".": ["class", "element"], +}; +// Pseudos, whose data property is parsed as well. +var unpackPseudos = new Set([ + "has", + "not", + "matches", + "is", + "host", + "host-context", +]); +var traversalNames = new Set(__spreadArrays([ + "descendant" +], Object.keys(Traversals).map(function (k) { return Traversals[k]; }))); /** - * Replace an element in the dom + * Checks whether a specific selector is a traversal. + * This is useful eg. in swapping the order of elements that + * are not traversals. * - * @param elem The element to be replaced - * @param replacement The element to be added + * @param selector Selector to check. */ -function replaceElement(elem, replacement) { - var prev = (replacement.prev = elem.prev); - if (prev) { - prev.next = replacement; - } - var next = (replacement.next = elem.next); - if (next) { - next.prev = replacement; - } - var parent = (replacement.parent = elem.parent); - if (parent) { - var childs = parent.children; - childs[childs.lastIndexOf(elem)] = replacement; - } +function isTraversal(selector) { + return traversalNames.has(selector.type); +} +exports.isTraversal = isTraversal; +var stripQuotesFromPseudos = new Set(["contains", "icontains"]); +var quotes = new Set(['"', "'"]); +// Unescape function taken from https://github.com/jquery/sizzle/blob/master/src/sizzle.js#L152 +function funescape(_, escaped, escapedWhitespace) { + var high = parseInt(escaped, 16) - 0x10000; + // NaN means non-codepoint + return high !== high || escapedWhitespace + ? escaped + : high < 0 + ? // BMP codepoint + String.fromCharCode(high + 0x10000) + : // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode((high >> 10) | 0xd800, (high & 0x3ff) | 0xdc00); +} +function unescapeCSS(str) { + return str.replace(reEscape, funescape); +} +function isWhitespace(c) { + return c === " " || c === "\n" || c === "\t" || c === "\f" || c === "\r"; } -exports.replaceElement = replaceElement; /** - * Append a child to an element. + * Parses `selector`, optionally with the passed `options`. * - * @param elem The element to append to. - * @param child The element to be added as a child. + * @param selector Selector to parse. + * @param options Options for parsing. + * @returns Returns a two-dimensional array. + * The first dimension represents selectors separated by commas (eg. `sub1, sub2`), + * the second contains the relevant tokens for that selector. */ -function appendChild(elem, child) { - removeElement(child); - child.next = null; - child.parent = elem; - if (elem.children.push(child) > 1) { - var sibling = elem.children[elem.children.length - 2]; - sibling.next = child; - child.prev = sibling; - } - else { - child.prev = null; +function parse(selector, options) { + var subselects = []; + var endIndex = parseSelector(subselects, "" + selector, options, 0); + if (endIndex < selector.length) { + throw new Error("Unmatched selector: " + selector.slice(endIndex)); } + return subselects; } -exports.appendChild = appendChild; -/** - * Append an element after another. - * - * @param elem The element to append after. - * @param next The element be added. - */ -function append(elem, next) { - removeElement(next); - var parent = elem.parent; - var currNext = elem.next; - next.next = currNext; - next.prev = elem; - elem.next = next; - next.parent = parent; - if (currNext) { - currNext.prev = next; - if (parent) { - var childs = parent.children; - childs.splice(childs.lastIndexOf(currNext), 0, next); +exports.default = parse; +function parseSelector(subselects, selector, options, selectorIndex) { + var _a, _b; + if (options === void 0) { options = {}; } + var tokens = []; + var sawWS = false; + function getName(offset) { + var match = selector.slice(selectorIndex + offset).match(reName); + if (!match) { + throw new Error("Expected name, found " + selector.slice(selectorIndex)); } + var name = match[0]; + selectorIndex += offset + name.length; + return unescapeCSS(name); } - else if (parent) { - parent.children.push(next); + function stripWhitespace(offset) { + while (isWhitespace(selector.charAt(selectorIndex + offset))) + offset++; + selectorIndex += offset; } -} -exports.append = append; -/** - * Prepend a child to an element. - * - * @param elem The element to prepend before. - * @param child The element to be added as a child. - */ -function prependChild(elem, child) { - removeElement(child); - child.parent = elem; - child.prev = null; - if (elem.children.unshift(child) !== 1) { - var sibling = elem.children[1]; - sibling.prev = child; - child.next = sibling; + function isEscaped(pos) { + var slashCount = 0; + while (selector.charAt(--pos) === "\\") + slashCount++; + return (slashCount & 1) === 1; } - else { - child.next = null; + function ensureNotTraversal() { + if (tokens.length > 0 && isTraversal(tokens[tokens.length - 1])) { + throw new Error("Did not expect successive traversals."); + } } -} -exports.prependChild = prependChild; -/** - * Prepend an element before another. - * - * @param elem The element to prepend before. - * @param prev The element be added. - */ -function prepend(elem, prev) { - removeElement(prev); - var parent = elem.parent; - if (parent) { - var childs = parent.children; - childs.splice(childs.indexOf(elem), 0, prev); + stripWhitespace(0); + while (selector !== "") { + var firstChar = selector.charAt(selectorIndex); + if (isWhitespace(firstChar)) { + sawWS = true; + stripWhitespace(1); + } + else if (firstChar in Traversals) { + ensureNotTraversal(); + tokens.push({ type: Traversals[firstChar] }); + sawWS = false; + stripWhitespace(1); + } + else if (firstChar === ",") { + if (tokens.length === 0) { + throw new Error("Empty sub-selector"); + } + subselects.push(tokens); + tokens = []; + sawWS = false; + stripWhitespace(1); + } + else { + if (sawWS) { + ensureNotTraversal(); + tokens.push({ type: "descendant" }); + sawWS = false; + } + if (firstChar in attribSelectors) { + var _c = attribSelectors[firstChar], name_1 = _c[0], action = _c[1]; + tokens.push({ + type: "attribute", + name: name_1, + action: action, + value: getName(1), + ignoreCase: false, + namespace: null, + }); + } + else if (firstChar === "[") { + var attributeMatch = selector + .slice(selectorIndex + 1) + .match(reAttr); + if (!attributeMatch) { + throw new Error("Malformed attribute selector: " + selector.slice(selectorIndex)); + } + var completeSelector = attributeMatch[0], _d = attributeMatch[1], namespace = _d === void 0 ? null : _d, baseName = attributeMatch[2], actionType = attributeMatch[3], _e = attributeMatch[5], quotedValue = _e === void 0 ? "" : _e, _f = attributeMatch[6], value = _f === void 0 ? quotedValue : _f, ignoreCase = attributeMatch[7]; + selectorIndex += completeSelector.length + 1; + var name_2 = unescapeCSS(baseName); + if ((_a = options.lowerCaseAttributeNames) !== null && _a !== void 0 ? _a : !options.xmlMode) { + name_2 = name_2.toLowerCase(); + } + tokens.push({ + type: "attribute", + name: name_2, + action: actionTypes[actionType], + value: unescapeCSS(value), + namespace: namespace, + ignoreCase: !!ignoreCase, + }); + } + else if (firstChar === ":") { + if (selector.charAt(selectorIndex + 1) === ":") { + tokens.push({ + type: "pseudo-element", + name: getName(2).toLowerCase(), + }); + continue; + } + var name_3 = getName(1).toLowerCase(); + var data = null; + if (selector.charAt(selectorIndex) === "(") { + if (unpackPseudos.has(name_3)) { + if (quotes.has(selector.charAt(selectorIndex + 1))) { + throw new Error("Pseudo-selector " + name_3 + " cannot be quoted"); + } + data = []; + selectorIndex = parseSelector(data, selector, options, selectorIndex + 1); + if (selector.charAt(selectorIndex) !== ")") { + throw new Error("Missing closing parenthesis in :" + name_3 + " (" + selector + ")"); + } + selectorIndex += 1; + } + else { + selectorIndex += 1; + var start = selectorIndex; + var counter = 1; + for (; counter > 0 && selectorIndex < selector.length; selectorIndex++) { + if (selector.charAt(selectorIndex) === "(" && + !isEscaped(selectorIndex)) { + counter++; + } + else if (selector.charAt(selectorIndex) === ")" && + !isEscaped(selectorIndex)) { + counter--; + } + } + if (counter) { + throw new Error("Parenthesis not matched"); + } + data = selector.slice(start, selectorIndex - 1); + if (stripQuotesFromPseudos.has(name_3)) { + var quot = data.charAt(0); + if (quot === data.slice(-1) && quotes.has(quot)) { + data = data.slice(1, -1); + } + data = unescapeCSS(data); + } + } + } + tokens.push({ type: "pseudo", name: name_3, data: data }); + } + else { + var namespace = null; + var name_4 = void 0; + if (firstChar === "*") { + selectorIndex += 1; + name_4 = "*"; + } + else if (reName.test(selector.slice(selectorIndex))) { + name_4 = getName(0); + } + else { + /* + * We have finished parsing the selector. + * Remove descendant tokens at the end if they exist, + * and return the last index, so that parsing can be + * picked up from here. + */ + if (tokens.length && + tokens[tokens.length - 1].type === "descendant") { + tokens.pop(); + } + addToken(subselects, tokens); + return selectorIndex; + } + if (selector.charAt(selectorIndex) === "|") { + namespace = name_4; + if (selector.charAt(selectorIndex + 1) === "*") { + name_4 = "*"; + selectorIndex += 2; + } + else { + name_4 = getName(1); + } + } + if (name_4 === "*") { + tokens.push({ type: "universal", namespace: namespace }); + } + else { + if ((_b = options.lowerCaseTags) !== null && _b !== void 0 ? _b : !options.xmlMode) { + name_4 = name_4.toLowerCase(); + } + tokens.push({ type: "tag", name: name_4, namespace: namespace }); + } + } + } } - if (elem.prev) { - elem.prev.next = prev; + addToken(subselects, tokens); + return selectorIndex; +} +function addToken(subselects, tokens) { + if (subselects.length > 0 && tokens.length === 0) { + throw new Error("Empty sub-selector"); } - prev.parent = parent; - prev.prev = elem.prev; - prev.next = elem; - elem.prev = prev; + subselects.push(tokens); } -exports.prepend = prepend; /***/ }), -/* 305 */ +/* 292 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +var __spreadArrays = (this && this.__spreadArrays) || function () { + for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; + for (var r = Array(s), k = 0, i = 0; i < il; i++) + for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) + r[k] = a[j]; + return r; +}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.findAll = exports.existsOne = exports.findOne = exports.findOneChild = exports.find = exports.filter = void 0; -var domhandler_1 = __webpack_require__(288); -/** - * Search a node and its children for nodes passing a test function. - * - * @param test Function to test nodes on. - * @param node Node to search. Will be included in the result set if it matches. - * @param recurse Also consider child nodes. - * @param limit Maximum number of nodes to return. - * @returns All nodes passing `test`. - */ -function filter(test, node, recurse, limit) { - if (recurse === void 0) { recurse = true; } - if (limit === void 0) { limit = Infinity; } - if (!Array.isArray(node)) - node = [node]; - return find(test, node, recurse, limit); -} -exports.filter = filter; +var actionTypes = { + equals: "", + element: "~", + start: "^", + end: "$", + any: "*", + not: "!", + hyphen: "|", +}; +var charsToEscape = new Set(__spreadArrays(Object.keys(actionTypes) + .map(function (typeKey) { return actionTypes[typeKey]; }) + .filter(Boolean), [ + ":", + "[", + "]", + " ", + "\\", + "(", + ")", +])); /** - * Search an array of node and its children for nodes passing a test function. + * Turns `selector` back into a string. * - * @param test Function to test nodes on. - * @param nodes Array of nodes to search. - * @param recurse Also consider child nodes. - * @param limit Maximum number of nodes to return. - * @returns All nodes passing `test`. + * @param selector Selector to stringify. */ -function find(test, nodes, recurse, limit) { - var result = []; - for (var _i = 0, nodes_1 = nodes; _i < nodes_1.length; _i++) { - var elem = nodes_1[_i]; - if (test(elem)) { - result.push(elem); - if (--limit <= 0) - break; - } - if (recurse && (0, domhandler_1.hasChildren)(elem) && elem.children.length > 0) { - var children = find(test, elem.children, recurse, limit); - result.push.apply(result, children); - limit -= children.length; - if (limit <= 0) - break; - } - } - return result; +function stringify(selector) { + return selector.map(stringifySubselector).join(", "); } -exports.find = find; -/** - * Finds the first element inside of an array that matches a test function. - * - * @param test Function to test nodes on. - * @param nodes Array of nodes to search. - * @returns The first node in the array that passes `test`. - */ -function findOneChild(test, nodes) { - return nodes.find(test); +exports.default = stringify; +function stringifySubselector(token) { + return token.map(stringifyToken).join(""); } -exports.findOneChild = findOneChild; -/** - * Finds one element in a tree that passes a test. - * - * @param test Function to test nodes on. - * @param nodes Array of nodes to search. - * @param recurse Also consider child nodes. - * @returns The first child node that passes `test`. - */ -function findOne(test, nodes, recurse) { - if (recurse === void 0) { recurse = true; } - var elem = null; - for (var i = 0; i < nodes.length && !elem; i++) { - var checked = nodes[i]; - if (!(0, domhandler_1.isTag)(checked)) { - continue; - } - else if (test(checked)) { - elem = checked; - } - else if (recurse && checked.children.length > 0) { - elem = findOne(test, checked.children); +function stringifyToken(token) { + switch (token.type) { + // Simple types + case "child": + return " > "; + case "parent": + return " < "; + case "sibling": + return " ~ "; + case "adjacent": + return " + "; + case "descendant": + return " "; + case "universal": + return getNamespace(token.namespace) + "*"; + case "tag": + return getNamespacedName(token); + case "pseudo-element": + return "::" + escapeName(token.name); + case "pseudo": + if (token.data === null) + return ":" + escapeName(token.name); + if (typeof token.data === "string") { + return ":" + escapeName(token.name) + "(" + escapeName(token.data) + ")"; + } + return ":" + escapeName(token.name) + "(" + stringify(token.data) + ")"; + case "attribute": { + if (token.name === "id" && + token.action === "equals" && + !token.ignoreCase && + !token.namespace) { + return "#" + escapeName(token.value); + } + if (token.name === "class" && + token.action === "element" && + !token.ignoreCase && + !token.namespace) { + return "." + escapeName(token.value); + } + var name_1 = getNamespacedName(token); + if (token.action === "exists") { + return "[" + name_1 + "]"; + } + return "[" + name_1 + actionTypes[token.action] + "='" + escapeName(token.value) + "'" + (token.ignoreCase ? "i" : "") + "]"; } } - return elem; } -exports.findOne = findOne; -/** - * @param test Function to test nodes on. - * @param nodes Array of nodes to search. - * @returns Whether a tree of nodes contains at least one node passing a test. - */ -function existsOne(test, nodes) { - return nodes.some(function (checked) { - return (0, domhandler_1.isTag)(checked) && - (test(checked) || - (checked.children.length > 0 && - existsOne(test, checked.children))); - }); +function getNamespacedName(token) { + return "" + getNamespace(token.namespace) + escapeName(token.name); } -exports.existsOne = existsOne; -/** - * Search and array of nodes and its children for nodes passing a test function. - * - * Same as `find`, only with less options, leading to reduced complexity. - * - * @param test Function to test nodes on. - * @param nodes Array of nodes to search. - * @returns All nodes passing `test`. - */ -function findAll(test, nodes) { - var _a; - var result = []; - var stack = nodes.filter(domhandler_1.isTag); - var elem; - while ((elem = stack.shift())) { - var children = (_a = elem.children) === null || _a === void 0 ? void 0 : _a.filter(domhandler_1.isTag); - if (children && children.length > 0) { - stack.unshift.apply(stack, children); - } - if (test(elem)) - result.push(elem); - } - return result; +function getNamespace(namespace) { + return namespace + ? (namespace === "*" ? "*" : escapeName(namespace)) + "|" + : ""; +} +function escapeName(str) { + return str + .split("") + .map(function (c) { return (charsToEscape.has(c) ? "\\" + c : c); }) + .join(""); } -exports.findAll = findAll; /***/ }), -/* 306 */ +/* 293 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.getElementsByTagType = exports.getElementsByTagName = exports.getElementById = exports.getElements = exports.testElement = void 0; -var domhandler_1 = __webpack_require__(288); -var querying_1 = __webpack_require__(305); -var Checks = { - tag_name: function (name) { - if (typeof name === "function") { - return function (elem) { return (0, domhandler_1.isTag)(elem) && name(elem.name); }; - } - else if (name === "*") { - return domhandler_1.isTag; - } - return function (elem) { return (0, domhandler_1.isTag)(elem) && elem.name === name; }; - }, - tag_type: function (type) { - if (typeof type === "function") { - return function (elem) { return type(elem.type); }; - } - return function (elem) { return elem.type === type; }; - }, - tag_contains: function (data) { - if (typeof data === "function") { - return function (elem) { return (0, domhandler_1.isText)(elem) && data(elem.data); }; - } - return function (elem) { return (0, domhandler_1.isText)(elem) && elem.data === data; }; - }, +exports.pseudos = exports.filters = exports.is = exports.selectOne = exports.selectAll = exports.prepareContext = exports._compileToken = exports._compileUnsafe = exports.compile = void 0; +var DomUtils = __importStar(__webpack_require__(294)); +var boolbase_1 = __webpack_require__(312); +var compile_1 = __webpack_require__(313); +var subselects_1 = __webpack_require__(324); +var defaultEquals = function (a, b) { return a === b; }; +var defaultOptions = { + adapter: DomUtils, + equals: defaultEquals, }; -/** - * @param attrib Attribute to check. - * @param value Attribute value to look for. - * @returns A function to check whether the a node has an attribute with a particular value. - */ -function getAttribCheck(attrib, value) { - if (typeof value === "function") { - return function (elem) { return (0, domhandler_1.isTag)(elem) && value(elem.attribs[attrib]); }; - } - return function (elem) { return (0, domhandler_1.isTag)(elem) && elem.attribs[attrib] === value; }; +function convertOptionFormats(options) { + var _a, _b, _c, _d; + /* + * We force one format of options to the other one. + */ + // @ts-expect-error Default options may have incompatible `Node` / `ElementNode`. + var opts = options !== null && options !== void 0 ? options : defaultOptions; + // @ts-expect-error Same as above. + (_a = opts.adapter) !== null && _a !== void 0 ? _a : (opts.adapter = DomUtils); + // @ts-expect-error `equals` does not exist on `Options` + (_b = opts.equals) !== null && _b !== void 0 ? _b : (opts.equals = (_d = (_c = opts.adapter) === null || _c === void 0 ? void 0 : _c.equals) !== null && _d !== void 0 ? _d : defaultEquals); + return opts; } -/** - * @param a First function to combine. - * @param b Second function to combine. - * @returns A function taking a node and returning `true` if either - * of the input functions returns `true` for the node. - */ -function combineFuncs(a, b) { - return function (elem) { return a(elem) || b(elem); }; +function wrapCompile(func) { + return function addAdapter(selector, options, context) { + var opts = convertOptionFormats(options); + return func(selector, opts, context); + }; } /** - * @param options An object describing nodes to look for. - * @returns A function executing all checks in `options` and returning `true` - * if any of them match a node. + * Compiles the query, returns a function. */ -function compileTest(options) { - var funcs = Object.keys(options).map(function (key) { - var value = options[key]; - return Object.prototype.hasOwnProperty.call(Checks, key) - ? Checks[key](value) - : getAttribCheck(key, value); - }); - return funcs.length === 0 ? null : funcs.reduce(combineFuncs); +exports.compile = wrapCompile(compile_1.compile); +exports._compileUnsafe = wrapCompile(compile_1.compileUnsafe); +exports._compileToken = wrapCompile(compile_1.compileToken); +function getSelectorFunc(searchFunc) { + return function select(query, elements, options) { + var opts = convertOptionFormats(options); + if (typeof query !== "function") { + query = compile_1.compileUnsafe(query, opts, elements); + } + var filteredElements = prepareContext(elements, opts.adapter, query.shouldTestNextSiblings); + return searchFunc(query, filteredElements, opts); + }; } -/** - * @param options An object describing nodes to look for. - * @param node The element to test. - * @returns Whether the element matches the description in `options`. - */ -function testElement(options, node) { - var test = compileTest(options); - return test ? test(node) : true; +function prepareContext(elems, adapter, shouldTestNextSiblings) { + if (shouldTestNextSiblings === void 0) { shouldTestNextSiblings = false; } + /* + * Add siblings if the query requires them. + * See https://github.com/fb55/css-select/pull/43#issuecomment-225414692 + */ + if (shouldTestNextSiblings) { + elems = appendNextSiblings(elems, adapter); + } + return Array.isArray(elems) + ? adapter.removeSubsets(elems) + : adapter.getChildren(elems); +} +exports.prepareContext = prepareContext; +function appendNextSiblings(elem, adapter) { + // Order matters because jQuery seems to check the children before the siblings + var elems = Array.isArray(elem) ? elem.slice(0) : [elem]; + for (var i = 0; i < elems.length; i++) { + var nextSiblings = subselects_1.getNextSiblings(elems[i], adapter); + elems.push.apply(elems, nextSiblings); + } + return elems; } -exports.testElement = testElement; /** - * @param options An object describing nodes to look for. - * @param nodes Nodes to search through. - * @param recurse Also consider child nodes. - * @param limit Maximum number of nodes to return. - * @returns All nodes that match `options`. + * @template Node The generic Node type for the DOM adapter being used. + * @template ElementNode The Node type for elements for the DOM adapter being used. + * @param elems Elements to query. If it is an element, its children will be queried.. + * @param query can be either a CSS selector string or a compiled query function. + * @param [options] options for querying the document. + * @see compile for supported selector queries. + * @returns All matching elements. + * */ -function getElements(options, nodes, recurse, limit) { - if (limit === void 0) { limit = Infinity; } - var test = compileTest(options); - return test ? (0, querying_1.filter)(test, nodes, recurse, limit) : []; -} -exports.getElements = getElements; +exports.selectAll = getSelectorFunc(function (query, elems, options) { + return query === boolbase_1.falseFunc || !elems || elems.length === 0 + ? [] + : options.adapter.findAll(query, elems); +}); /** - * @param id The unique ID attribute value to look for. - * @param nodes Nodes to search through. - * @param recurse Also consider child nodes. - * @returns The node with the supplied ID. + * @template Node The generic Node type for the DOM adapter being used. + * @template ElementNode The Node type for elements for the DOM adapter being used. + * @param elems Elements to query. If it is an element, its children will be queried.. + * @param query can be either a CSS selector string or a compiled query function. + * @param [options] options for querying the document. + * @see compile for supported selector queries. + * @returns the first match, or null if there was no match. */ -function getElementById(id, nodes, recurse) { - if (recurse === void 0) { recurse = true; } - if (!Array.isArray(nodes)) - nodes = [nodes]; - return (0, querying_1.findOne)(getAttribCheck("id", id), nodes, recurse); -} -exports.getElementById = getElementById; +exports.selectOne = getSelectorFunc(function (query, elems, options) { + return query === boolbase_1.falseFunc || !elems || elems.length === 0 + ? null + : options.adapter.findOne(query, elems); +}); /** - * @param tagName Tag name to search for. - * @param nodes Nodes to search through. - * @param recurse Also consider child nodes. - * @param limit Maximum number of nodes to return. - * @returns All nodes with the supplied `tagName`. + * Tests whether or not an element is matched by query. + * + * @template Node The generic Node type for the DOM adapter being used. + * @template ElementNode The Node type for elements for the DOM adapter being used. + * @param elem The element to test if it matches the query. + * @param query can be either a CSS selector string or a compiled query function. + * @param [options] options for querying the document. + * @see compile for supported selector queries. + * @returns */ -function getElementsByTagName(tagName, nodes, recurse, limit) { - if (recurse === void 0) { recurse = true; } - if (limit === void 0) { limit = Infinity; } - return (0, querying_1.filter)(Checks.tag_name(tagName), nodes, recurse, limit); +function is(elem, query, options) { + var opts = convertOptionFormats(options); + return (typeof query === "function" ? query : compile_1.compile(query, opts))(elem); } -exports.getElementsByTagName = getElementsByTagName; +exports.is = is; /** - * @param type Element type to look for. - * @param nodes Nodes to search through. - * @param recurse Also consider child nodes. - * @param limit Maximum number of nodes to return. - * @returns All nodes with the supplied `type`. + * Alias for selectAll(query, elems, options). + * @see [compile] for supported selector queries. */ -function getElementsByTagType(type, nodes, recurse, limit) { - if (recurse === void 0) { recurse = true; } - if (limit === void 0) { limit = Infinity; } - return (0, querying_1.filter)(Checks.tag_type(type), nodes, recurse, limit); -} -exports.getElementsByTagType = getElementsByTagType; +exports.default = exports.selectAll; +// Export filters and pseudos to allow users to supply their own. +var pseudo_selectors_1 = __webpack_require__(318); +Object.defineProperty(exports, "filters", { enumerable: true, get: function () { return pseudo_selectors_1.filters; } }); +Object.defineProperty(exports, "pseudos", { enumerable: true, get: function () { return pseudo_selectors_1.pseudos; } }); /***/ }), -/* 307 */ +/* 294 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __exportStar = (this && this.__exportStar) || function(m, exports) { + for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); +}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.uniqueSort = exports.compareDocumentPosition = exports.removeSubsets = void 0; -var domhandler_1 = __webpack_require__(288); +__exportStar(__webpack_require__(295), exports); +__exportStar(__webpack_require__(307), exports); +__exportStar(__webpack_require__(308), exports); +__exportStar(__webpack_require__(309), exports); +__exportStar(__webpack_require__(310), exports); +__exportStar(__webpack_require__(311), exports); +__exportStar(__webpack_require__(296), exports); + + +/***/ }), +/* 295 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getText = exports.getInnerHTML = exports.getOuterHTML = void 0; +var tagtypes_1 = __webpack_require__(296); +var dom_serializer_1 = __importDefault(__webpack_require__(297)); /** - * Given an array of nodes, remove any member that is contained by another. - * - * @param nodes Nodes to filter. - * @returns Remaining nodes that aren't subtrees of each other. + * @param node Node to get the outer HTML of. + * @param options Options for serialization. + * @deprecated Use the `dom-serializer` module directly. + * @returns `node`'s outer HTML. */ -function removeSubsets(nodes) { - var idx = nodes.length; - /* - * Check if each node (or one of its ancestors) is already contained in the - * array. - */ - while (--idx >= 0) { - var node = nodes[idx]; - /* - * Remove the node if it is not unique. - * We are going through the array from the end, so we only - * have to check nodes that preceed the node under consideration in the array. - */ - if (idx > 0 && nodes.lastIndexOf(node, idx - 1) >= 0) { - nodes.splice(idx, 1); - continue; - } - for (var ancestor = node.parent; ancestor; ancestor = ancestor.parent) { - if (nodes.includes(ancestor)) { - nodes.splice(idx, 1); - break; - } - } - } - return nodes; +function getOuterHTML(node, options) { + return dom_serializer_1.default(node, options); } -exports.removeSubsets = removeSubsets; +exports.getOuterHTML = getOuterHTML; /** - * Compare the position of one node against another node in any other document. - * The return value is a bitmask with the following values: - * - * Document order: - * > There is an ordering, document order, defined on all the nodes in the - * > document corresponding to the order in which the first character of the - * > XML representation of each node occurs in the XML representation of the - * > document after expansion of general entities. Thus, the document element - * > node will be the first node. Element nodes occur before their children. - * > Thus, document order orders element nodes in order of the occurrence of - * > their start-tag in the XML (after expansion of entities). The attribute - * > nodes of an element occur after the element and before its children. The - * > relative order of attribute nodes is implementation-dependent./ - * - * Source: - * http://www.w3.org/TR/DOM-Level-3-Core/glossary.html#dt-document-order - * - * @param nodeA The first node to use in the comparison - * @param nodeB The second node to use in the comparison - * @returns A bitmask describing the input nodes' relative position. - * - * See http://dom.spec.whatwg.org/#dom-node-comparedocumentposition for - * a description of these values. + * @param node Node to get the inner HTML of. + * @param options Options for serialization. + * @deprecated Use the `dom-serializer` module directly. + * @returns `node`'s inner HTML. */ -function compareDocumentPosition(nodeA, nodeB) { - var aParents = []; - var bParents = []; - if (nodeA === nodeB) { - return 0; - } - var current = (0, domhandler_1.hasChildren)(nodeA) ? nodeA : nodeA.parent; - while (current) { - aParents.unshift(current); - current = current.parent; - } - current = (0, domhandler_1.hasChildren)(nodeB) ? nodeB : nodeB.parent; - while (current) { - bParents.unshift(current); - current = current.parent; - } - var maxIdx = Math.min(aParents.length, bParents.length); - var idx = 0; - while (idx < maxIdx && aParents[idx] === bParents[idx]) { - idx++; - } - if (idx === 0) { - return 1 /* DISCONNECTED */; - } - var sharedParent = aParents[idx - 1]; - var siblings = sharedParent.children; - var aSibling = aParents[idx]; - var bSibling = bParents[idx]; - if (siblings.indexOf(aSibling) > siblings.indexOf(bSibling)) { - if (sharedParent === nodeB) { - return 4 /* FOLLOWING */ | 16 /* CONTAINED_BY */; - } - return 4 /* FOLLOWING */; - } - if (sharedParent === nodeA) { - return 2 /* PRECEDING */ | 8 /* CONTAINS */; - } - return 2 /* PRECEDING */; +function getInnerHTML(node, options) { + return tagtypes_1.hasChildren(node) + ? node.children.map(function (node) { return getOuterHTML(node, options); }).join("") + : ""; } -exports.compareDocumentPosition = compareDocumentPosition; +exports.getInnerHTML = getInnerHTML; /** - * Sort an array of nodes based on their relative position in the document and - * remove any duplicate nodes. If the array contains nodes that do not belong - * to the same document, sort order is unspecified. + * Get a node's inner text. * - * @param nodes Array of DOM nodes. - * @returns Collection of unique nodes, sorted in document order. + * @param node Node to get the inner text of. + * @returns `node`'s inner text. */ -function uniqueSort(nodes) { - nodes = nodes.filter(function (node, i, arr) { return !arr.includes(node, i + 1); }); - nodes.sort(function (a, b) { - var relative = compareDocumentPosition(a, b); - if (relative & 2 /* PRECEDING */) { - return -1; - } - else if (relative & 4 /* FOLLOWING */) { - return 1; - } - return 0; - }); - return nodes; +function getText(node) { + if (Array.isArray(node)) + return node.map(getText).join(""); + if (tagtypes_1.isTag(node)) + return node.name === "br" ? "\n" : getText(node.children); + if (tagtypes_1.isCDATA(node)) + return getText(node.children); + if (tagtypes_1.isText(node)) + return node.data; + return ""; } -exports.uniqueSort = uniqueSort; +exports.getText = getText; /***/ }), -/* 308 */ +/* 296 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.getFeed = void 0; -var stringify_1 = __webpack_require__(287); -var legacy_1 = __webpack_require__(306); -/** - * Get the feed object from the root of a DOM tree. - * - * @param doc - The DOM to to extract the feed from. - * @returns The feed. - */ -function getFeed(doc) { - var feedRoot = getOneElement(isValidFeed, doc); - return !feedRoot - ? null - : feedRoot.name === "feed" - ? getAtomFeed(feedRoot) - : getRssFeed(feedRoot); -} -exports.getFeed = getFeed; -/** - * Parse an Atom feed. - * - * @param feedRoot The root of the feed. - * @returns The parsed feed. - */ -function getAtomFeed(feedRoot) { - var _a; - var childs = feedRoot.children; - var feed = { - type: "atom", - items: (0, legacy_1.getElementsByTagName)("entry", childs).map(function (item) { - var _a; - var children = item.children; - var entry = { media: getMediaElements(children) }; - addConditionally(entry, "id", "id", children); - addConditionally(entry, "title", "title", children); - var href = (_a = getOneElement("link", children)) === null || _a === void 0 ? void 0 : _a.attribs.href; - if (href) { - entry.link = href; - } - var description = fetch("summary", children) || fetch("content", children); - if (description) { - entry.description = description; - } - var pubDate = fetch("updated", children); - if (pubDate) { - entry.pubDate = new Date(pubDate); - } - return entry; - }), - }; - addConditionally(feed, "id", "id", childs); - addConditionally(feed, "title", "title", childs); - var href = (_a = getOneElement("link", childs)) === null || _a === void 0 ? void 0 : _a.attribs.href; - if (href) { - feed.link = href; - } - addConditionally(feed, "description", "subtitle", childs); - var updated = fetch("updated", childs); - if (updated) { - feed.updated = new Date(updated); - } - addConditionally(feed, "author", "email", childs, true); - return feed; -} -/** - * Parse a RSS feed. - * - * @param feedRoot The root of the feed. - * @returns The parsed feed. - */ -function getRssFeed(feedRoot) { - var _a, _b; - var childs = (_b = (_a = getOneElement("channel", feedRoot.children)) === null || _a === void 0 ? void 0 : _a.children) !== null && _b !== void 0 ? _b : []; - var feed = { - type: feedRoot.name.substr(0, 3), - id: "", - items: (0, legacy_1.getElementsByTagName)("item", feedRoot.children).map(function (item) { - var children = item.children; - var entry = { media: getMediaElements(children) }; - addConditionally(entry, "id", "guid", children); - addConditionally(entry, "title", "title", children); - addConditionally(entry, "link", "link", children); - addConditionally(entry, "description", "description", children); - var pubDate = fetch("pubDate", children); - if (pubDate) - entry.pubDate = new Date(pubDate); - return entry; - }), - }; - addConditionally(feed, "title", "title", childs); - addConditionally(feed, "link", "link", childs); - addConditionally(feed, "description", "description", childs); - var updated = fetch("lastBuildDate", childs); - if (updated) { - feed.updated = new Date(updated); - } - addConditionally(feed, "author", "managingEditor", childs, true); - return feed; -} -var MEDIA_KEYS_STRING = ["url", "type", "lang"]; -var MEDIA_KEYS_INT = [ - "fileSize", - "bitrate", - "framerate", - "samplingrate", - "channels", - "duration", - "height", - "width", -]; +exports.hasChildren = exports.isComment = exports.isText = exports.isCDATA = exports.isTag = void 0; +var domelementtype_1 = __webpack_require__(278); /** - * Get all media elements of a feed item. - * - * @param where Nodes to search in. - * @returns Media elements. + * @param node Node to check. + * @returns `true` if the node is a `Element`, `false` otherwise. */ -function getMediaElements(where) { - return (0, legacy_1.getElementsByTagName)("media:content", where).map(function (elem) { - var attribs = elem.attribs; - var media = { - medium: attribs.medium, - isDefault: !!attribs.isDefault, - }; - for (var _i = 0, MEDIA_KEYS_STRING_1 = MEDIA_KEYS_STRING; _i < MEDIA_KEYS_STRING_1.length; _i++) { - var attrib = MEDIA_KEYS_STRING_1[_i]; - if (attribs[attrib]) { - media[attrib] = attribs[attrib]; - } - } - for (var _a = 0, MEDIA_KEYS_INT_1 = MEDIA_KEYS_INT; _a < MEDIA_KEYS_INT_1.length; _a++) { - var attrib = MEDIA_KEYS_INT_1[_a]; - if (attribs[attrib]) { - media[attrib] = parseInt(attribs[attrib], 10); - } - } - if (attribs.expression) { - media.expression = - attribs.expression; - } - return media; - }); +function isTag(node) { + return domelementtype_1.isTag(node); } +exports.isTag = isTag; /** - * Get one element by tag name. - * - * @param tagName Tag name to look for - * @param node Node to search in - * @returns The element or null + * @param node Node to check. + * @returns `true` if the node is a `NodeWithChildren`, `false` otherwise. */ -function getOneElement(tagName, node) { - return (0, legacy_1.getElementsByTagName)(tagName, node, true, 1)[0]; +function isCDATA(node) { + return node.type === "cdata" /* CDATA */; } +exports.isCDATA = isCDATA; /** - * Get the text content of an element with a certain tag name. - * - * @param tagName Tag name to look for. - * @param where Node to search in. - * @param recurse Whether to recurse into child nodes. - * @returns The text content of the element. + * @param node Node to check. + * @returns `true` if the node is a `DataNode`, `false` otherwise. */ -function fetch(tagName, where, recurse) { - if (recurse === void 0) { recurse = false; } - return (0, stringify_1.textContent)((0, legacy_1.getElementsByTagName)(tagName, where, recurse, 1)).trim(); +function isText(node) { + return node.type === "text" /* Text */; } +exports.isText = isText; /** - * Adds a property to an object if it has a value. - * - * @param obj Object to be extended - * @param prop Property name - * @param tagName Tag name that contains the conditionally added property - * @param where Element to search for the property - * @param recurse Whether to recurse into child nodes. + * @param node Node to check. + * @returns `true` if the node is a `DataNode`, `false` otherwise. */ -function addConditionally(obj, prop, tagName, where, recurse) { - if (recurse === void 0) { recurse = false; } - var val = fetch(tagName, where, recurse); - if (val) - obj[prop] = val; +function isComment(node) { + return node.type === "comment" /* Comment */; } +exports.isComment = isComment; /** - * Checks if an element is a feed root node. - * - * @param value The name of the element to check. - * @returns Whether an element is a feed root node. + * @param node Node to check. + * @returns `true` if the node is a `NodeWithChildren` (has children), `false` otherwise. */ -function isValidFeed(value) { - return value === "rss" || value === "feed" || value === "rdf:RDF"; +function hasChildren(node) { + return Object.prototype.hasOwnProperty.call(node, "children"); } +exports.hasChildren = hasChildren; /***/ }), -/* 309 */ -/***/ (function(module, exports) { - -module.exports = { - trueFunc: function trueFunc(){ - return true; - }, - falseFunc: function falseFunc(){ - return false; - } -}; - -/***/ }), -/* 310 */ +/* 297 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; +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); +}; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; }; Object.defineProperty(exports, "__esModule", { value: true }); -exports.compileToken = exports.compileUnsafe = exports.compile = void 0; -var css_what_1 = __webpack_require__(282); -var boolbase_1 = __webpack_require__(309); -var sort_1 = __importDefault(__webpack_require__(311)); -var procedure_1 = __webpack_require__(312); -var general_1 = __webpack_require__(313); -var subselects_1 = __webpack_require__(322); -/** - * Compiles a selector to an executable function. - * - * @param selector Selector to compile. - * @param options Compilation options. - * @param context Optional context for the selector. +/* + * Module dependencies */ -function compile(selector, options, context) { - var next = compileUnsafe(selector, options, context); - return subselects_1.ensureIsTag(next, options.adapter); -} -exports.compile = compile; -function compileUnsafe(selector, options, context) { - var token = typeof selector === "string" ? css_what_1.parse(selector, options) : selector; - return compileToken(token, options, context); -} -exports.compileUnsafe = compileUnsafe; -function includesScopePseudo(t) { - return (t.type === "pseudo" && - (t.name === "scope" || - (Array.isArray(t.data) && - t.data.some(function (data) { return data.some(includesScopePseudo); })))); -} -var DESCENDANT_TOKEN = { type: "descendant" }; -var FLEXIBLE_DESCENDANT_TOKEN = { - type: "_flexibleDescendant", -}; -var SCOPE_TOKEN = { type: "pseudo", name: "scope", data: null }; +var ElementType = __importStar(__webpack_require__(278)); +var entities_1 = __webpack_require__(298); /* - * CSS 4 Spec (Draft): 3.3.1. Absolutizing a Scope-relative Selector - * http://www.w3.org/TR/selectors4/#absolutizing + * Mixed-case SVG and MathML tags & attributes + * recognized by the HTML parser, see + * https://html.spec.whatwg.org/multipage/parsing.html#parsing-main-inforeign */ -function absolutize(token, _a, context) { - var adapter = _a.adapter; - // TODO Use better check if the context is a document - var hasContext = !!(context === null || context === void 0 ? void 0 : context.every(function (e) { - var parent = adapter.isTag(e) && adapter.getParent(e); - return e === subselects_1.PLACEHOLDER_ELEMENT || (parent && adapter.isTag(parent)); - })); - for (var _i = 0, token_1 = token; _i < token_1.length; _i++) { - var t = token_1[_i]; - if (t.length > 0 && procedure_1.isTraversal(t[0]) && t[0].type !== "descendant") { - // Don't continue in else branch - } - else if (hasContext && !t.some(includesScopePseudo)) { - t.unshift(DESCENDANT_TOKEN); - } - else { - continue; +var foreignNames_1 = __webpack_require__(306); +var unencodedElements = new Set([ + "style", + "script", + "xmp", + "iframe", + "noembed", + "noframes", + "plaintext", + "noscript", +]); +/** + * Format attributes + */ +function formatAttributes(attributes, opts) { + if (!attributes) + return; + return Object.keys(attributes) + .map(function (key) { + var _a, _b; + var value = (_a = attributes[key]) !== null && _a !== void 0 ? _a : ""; + if (opts.xmlMode === "foreign") { + /* Fix up mixed-case attribute names */ + key = (_b = foreignNames_1.attributeNames.get(key)) !== null && _b !== void 0 ? _b : key; } - t.unshift(SCOPE_TOKEN); - } -} -function compileToken(token, options, context) { - var _a; - token = token.filter(function (t) { return t.length > 0; }); - token.forEach(sort_1.default); - context = (_a = options.context) !== null && _a !== void 0 ? _a : context; - var isArrayContext = Array.isArray(context); - var finalContext = context && (Array.isArray(context) ? context : [context]); - absolutize(token, options, finalContext); - var shouldTestNextSiblings = false; - var query = token - .map(function (rules) { - if (rules.length >= 2) { - var first = rules[0], second = rules[1]; - if (first.type !== "pseudo" || first.name !== "scope") { - // Ignore - } - else if (isArrayContext && second.type === "descendant") { - rules[1] = FLEXIBLE_DESCENDANT_TOKEN; - } - else if (second.type === "adjacent" || - second.type === "sibling") { - shouldTestNextSiblings = true; - } + if (!opts.emptyAttrs && !opts.xmlMode && value === "") { + return key; } - return compileRules(rules, options, finalContext); + return key + "=\"" + (opts.decodeEntities ? entities_1.encodeXML(value) : value.replace(/"/g, """)) + "\""; }) - .reduce(reduceRules, boolbase_1.falseFunc); - query.shouldTestNextSiblings = shouldTestNextSiblings; - return query; -} -exports.compileToken = compileToken; -function compileRules(rules, options, context) { - var _a; - return rules.reduce(function (previous, rule) { - return previous === boolbase_1.falseFunc - ? boolbase_1.falseFunc - : general_1.compileGeneralSelector(previous, rule, options, context, compileToken); - }, (_a = options.rootFunc) !== null && _a !== void 0 ? _a : boolbase_1.trueFunc); -} -function reduceRules(a, b) { - if (b === boolbase_1.falseFunc || a === boolbase_1.trueFunc) { - return a; - } - if (a === boolbase_1.falseFunc || b === boolbase_1.trueFunc) { - return b; - } - return function combine(elem) { - return a(elem) || b(elem); - }; + .join(" "); } - - -/***/ }), -/* 311 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -var procedure_1 = __webpack_require__(312); -var attributes = { - exists: 10, - equals: 8, - not: 7, - start: 6, - end: 6, - any: 5, - hyphen: 4, - element: 4, -}; /** - * Sort the parts of the passed selector, - * as there is potential for optimization - * (some types of selectors are faster than others) + * Self-enclosing tags + */ +var singleTag = new Set([ + "area", + "base", + "basefont", + "br", + "col", + "command", + "embed", + "frame", + "hr", + "img", + "input", + "isindex", + "keygen", + "link", + "meta", + "param", + "source", + "track", + "wbr", +]); +/** + * Renders a DOM node or an array of DOM nodes to a string. * - * @param arr Selector to sort + * Can be thought of as the equivalent of the `outerHTML` of the passed node(s). + * + * @param node Node to be rendered. + * @param options Changes serialization behavior */ -function sortByProcedure(arr) { - var procs = arr.map(getProcedure); - for (var i = 1; i < arr.length; i++) { - var procNew = procs[i]; - if (procNew < 0) - continue; - for (var j = i - 1; j >= 0 && procNew < procs[j]; j--) { - var token = arr[j + 1]; - arr[j + 1] = arr[j]; - arr[j] = token; - procs[j + 1] = procs[j]; - procs[j] = procNew; - } +function render(node, options) { + if (options === void 0) { options = {}; } + // TODO: This is a bit hacky. + var nodes = Array.isArray(node) || node.cheerio ? node : [node]; + var output = ""; + for (var i = 0; i < nodes.length; i++) { + output += renderNode(nodes[i], options); } + return output; } -exports.default = sortByProcedure; -function getProcedure(token) { - var proc = procedure_1.procedure[token.type]; - if (token.type === "attribute") { - proc = attributes[token.action]; - if (proc === attributes.equals && token.name === "id") { - // Prefer ID selectors (eg. #ID) - proc = 9; - } - if (token.ignoreCase) { - /* - * IgnoreCase adds some overhead, prefer "normal" token - * this is a binary operation, to ensure it's still an int - */ - proc >>= 1; - } +exports.default = render; +function renderNode(node, options) { + switch (node.type) { + case ElementType.Root: + return render(node.children, options); + case ElementType.Directive: + case ElementType.Doctype: + return renderDirective(node); + case ElementType.Comment: + return renderComment(node); + case ElementType.CDATA: + return renderCdata(node); + case ElementType.Script: + case ElementType.Style: + case ElementType.Tag: + return renderTag(node, options); + case ElementType.Text: + return renderText(node, options); } - else if (token.type === "pseudo") { - if (!token.data) { - proc = 3; - } - else if (token.name === "has" || token.name === "contains") { - proc = 0; // Expensive in any case +} +var foreignModeIntegrationPoints = new Set([ + "mi", + "mo", + "mn", + "ms", + "mtext", + "annotation-xml", + "foreignObject", + "desc", + "title", +]); +var foreignElements = new Set(["svg", "math"]); +function renderTag(elem, opts) { + var _a; + // Handle SVG / MathML in HTML + if (opts.xmlMode === "foreign") { + /* Fix up mixed-case element names */ + elem.name = (_a = foreignNames_1.elementNames.get(elem.name)) !== null && _a !== void 0 ? _a : elem.name; + /* Exit foreign mode at integration points */ + if (elem.parent && + foreignModeIntegrationPoints.has(elem.parent.name)) { + opts = __assign(__assign({}, opts), { xmlMode: false }); } - else if (Array.isArray(token.data)) { - // "matches" and "not" - proc = 0; - for (var i = 0; i < token.data.length; i++) { - // TODO better handling of complex selectors - if (token.data[i].length !== 1) - continue; - var cur = getProcedure(token.data[i][0]); - // Avoid executing :has or :contains - if (cur === 0) { - proc = 0; - break; - } - if (cur > proc) - proc = cur; - } - if (token.data.length > 1 && proc > 0) - proc -= 1; + } + if (!opts.xmlMode && foreignElements.has(elem.name)) { + opts = __assign(__assign({}, opts), { xmlMode: "foreign" }); + } + var tag = "<" + elem.name; + var attribs = formatAttributes(elem.attribs, opts); + if (attribs) { + tag += " " + attribs; + } + if (elem.children.length === 0 && + (opts.xmlMode + ? // In XML mode or foreign mode, and user hasn't explicitly turned off self-closing tags + opts.selfClosingTags !== false + : // User explicitly asked for self-closing tags, even in HTML mode + opts.selfClosingTags && singleTag.has(elem.name))) { + if (!opts.xmlMode) + tag += " "; + tag += "/>"; + } + else { + tag += ">"; + if (elem.children.length > 0) { + tag += render(elem.children, opts); } - else { - proc = 1; + if (opts.xmlMode || !singleTag.has(elem.name)) { + tag += "</" + elem.name + ">"; } } - return proc; + return tag; } - - -/***/ }), -/* 312 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.isTraversal = exports.procedure = void 0; -exports.procedure = { - universal: 50, - tag: 30, - attribute: 1, - pseudo: 0, - "pseudo-element": 0, - descendant: -1, - child: -1, - parent: -1, - sibling: -1, - adjacent: -1, - _flexibleDescendant: -1, -}; -function isTraversal(t) { - return exports.procedure[t.type] < 0; +function renderDirective(elem) { + return "<" + elem.data + ">"; } -exports.isTraversal = isTraversal; - - -/***/ }), -/* 313 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.compileGeneralSelector = void 0; -var attributes_1 = __webpack_require__(314); -var pseudo_selectors_1 = __webpack_require__(315); -/* - * All available rules - */ -function compileGeneralSelector(next, selector, options, context, compileToken) { - var adapter = options.adapter, equals = options.equals; - switch (selector.type) { - case "pseudo-element": - throw new Error("Pseudo-elements are not supported by css-select"); - case "attribute": - return attributes_1.attributeRules[selector.action](next, selector, options); - case "pseudo": - return pseudo_selectors_1.compilePseudoSelector(next, selector, options, context, compileToken); - // Tags - case "tag": - return function tag(elem) { - return adapter.getName(elem) === selector.name && next(elem); - }; - // Traversal - case "descendant": - if (options.cacheResults === false || - typeof WeakSet === "undefined") { - return function descendant(elem) { - var current = elem; - while ((current = adapter.getParent(current))) { - if (adapter.isTag(current) && next(current)) { - return true; - } - } - return false; - }; - } - // @ts-expect-error `ElementNode` is not extending object - // eslint-disable-next-line no-case-declarations - var isFalseCache_1 = new WeakSet(); - return function cachedDescendant(elem) { - var current = elem; - while ((current = adapter.getParent(current))) { - if (!isFalseCache_1.has(current)) { - if (adapter.isTag(current) && next(current)) { - return true; - } - isFalseCache_1.add(current); - } - } - return false; - }; - case "_flexibleDescendant": - // Include element itself, only used while querying an array - return function flexibleDescendant(elem) { - var current = elem; - do { - if (adapter.isTag(current) && next(current)) - return true; - } while ((current = adapter.getParent(current))); - return false; - }; - case "parent": - return function parent(elem) { - return adapter - .getChildren(elem) - .some(function (elem) { return adapter.isTag(elem) && next(elem); }); - }; - case "child": - return function child(elem) { - var parent = adapter.getParent(elem); - return parent != null && adapter.isTag(parent) && next(parent); - }; - case "sibling": - return function sibling(elem) { - var siblings = adapter.getSiblings(elem); - for (var i = 0; i < siblings.length; i++) { - var currentSibling = siblings[i]; - if (equals(elem, currentSibling)) - break; - if (adapter.isTag(currentSibling) && next(currentSibling)) { - return true; - } - } - return false; - }; - case "adjacent": - return function adjacent(elem) { - var siblings = adapter.getSiblings(elem); - var lastElement; - for (var i = 0; i < siblings.length; i++) { - var currentSibling = siblings[i]; - if (equals(elem, currentSibling)) - break; - if (adapter.isTag(currentSibling)) { - lastElement = currentSibling; - } - } - return !!lastElement && next(lastElement); - }; - case "universal": - return next; +function renderText(elem, opts) { + var data = elem.data || ""; + // If entities weren't decoded, no need to encode them back + if (opts.decodeEntities && + !(elem.parent && unencodedElements.has(elem.parent.name))) { + data = entities_1.encodeXML(data); } + return data; +} +function renderCdata(elem) { + return "<![CDATA[" + elem.children[0].data + "]]>"; +} +function renderComment(elem) { + return "<!--" + elem.data + "-->"; } -exports.compileGeneralSelector = compileGeneralSelector; /***/ }), -/* 314 */ +/* 298 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.attributeRules = void 0; -var boolbase_1 = __webpack_require__(309); +exports.decodeXMLStrict = exports.decodeHTML5Strict = exports.decodeHTML4Strict = exports.decodeHTML5 = exports.decodeHTML4 = exports.decodeHTMLStrict = exports.decodeHTML = exports.decodeXML = exports.encodeHTML5 = exports.encodeHTML4 = exports.escapeUTF8 = exports.escape = exports.encodeNonAsciiHTML = exports.encodeHTML = exports.encodeXML = exports.encode = exports.decodeStrict = exports.decode = void 0; +var decode_1 = __webpack_require__(299); +var encode_1 = __webpack_require__(305); /** - * All reserved characters in a regex, used for escaping. + * Decodes a string with entities. * - * Taken from XRegExp, (c) 2007-2020 Steven Levithan under the MIT license - * https://github.com/slevithan/xregexp/blob/95eeebeb8fac8754d54eafe2b4743661ac1cf028/src/xregexp.js#L794 + * @param data String to decode. + * @param level Optional level to decode at. 0 = XML, 1 = HTML. Default is 0. + * @deprecated Use `decodeXML` or `decodeHTML` directly. */ -var reChars = /[-[\]{}()*+?.,\\^$|#\s]/g; -function escapeRegex(value) { - return value.replace(reChars, "\\$&"); +function decode(data, level) { + return (!level || level <= 0 ? decode_1.decodeXML : decode_1.decodeHTML)(data); } +exports.decode = decode; /** - * Attribute selectors - */ -exports.attributeRules = { - equals: function (next, data, _a) { - var adapter = _a.adapter; - var name = data.name; - var value = data.value; - if (data.ignoreCase) { - value = value.toLowerCase(); - return function (elem) { - var attr = adapter.getAttributeValue(elem, name); - return (attr != null && - attr.length === value.length && - attr.toLowerCase() === value && - next(elem)); - }; - } - return function (elem) { - return adapter.getAttributeValue(elem, name) === value && next(elem); - }; - }, - hyphen: function (next, data, _a) { - var adapter = _a.adapter; - var name = data.name; - var value = data.value; - var len = value.length; - if (data.ignoreCase) { - value = value.toLowerCase(); - return function hyphenIC(elem) { - var attr = adapter.getAttributeValue(elem, name); - return (attr != null && - (attr.length === len || attr.charAt(len) === "-") && - attr.substr(0, len).toLowerCase() === value && - next(elem)); - }; - } - return function hyphen(elem) { - var attr = adapter.getAttributeValue(elem, name); - return (attr != null && - (attr.length === len || attr.charAt(len) === "-") && - attr.substr(0, len) === value && - next(elem)); - }; - }, - element: function (next, _a, _b) { - var name = _a.name, value = _a.value, ignoreCase = _a.ignoreCase; - var adapter = _b.adapter; - if (/\s/.test(value)) { - return boolbase_1.falseFunc; - } - var regex = new RegExp("(?:^|\\s)" + escapeRegex(value) + "(?:$|\\s)", ignoreCase ? "i" : ""); - return function element(elem) { - var attr = adapter.getAttributeValue(elem, name); - return (attr != null && - attr.length >= value.length && - regex.test(attr) && - next(elem)); - }; - }, - exists: function (next, _a, _b) { - var name = _a.name; - var adapter = _b.adapter; - return function (elem) { return adapter.hasAttrib(elem, name) && next(elem); }; - }, - start: function (next, data, _a) { - var adapter = _a.adapter; - var name = data.name; - var value = data.value; - var len = value.length; - if (len === 0) { - return boolbase_1.falseFunc; - } - if (data.ignoreCase) { - value = value.toLowerCase(); - return function (elem) { - var attr = adapter.getAttributeValue(elem, name); - return (attr != null && - attr.length >= len && - attr.substr(0, len).toLowerCase() === value && - next(elem)); - }; - } - return function (elem) { - var _a; - return !!((_a = adapter.getAttributeValue(elem, name)) === null || _a === void 0 ? void 0 : _a.startsWith(value)) && - next(elem); - }; - }, - end: function (next, data, _a) { - var adapter = _a.adapter; - var name = data.name; - var value = data.value; - var len = -value.length; - if (len === 0) { - return boolbase_1.falseFunc; - } - if (data.ignoreCase) { - value = value.toLowerCase(); - return function (elem) { - var _a; - return ((_a = adapter - .getAttributeValue(elem, name)) === null || _a === void 0 ? void 0 : _a.substr(len).toLowerCase()) === value && next(elem); - }; - } - return function (elem) { - var _a; - return !!((_a = adapter.getAttributeValue(elem, name)) === null || _a === void 0 ? void 0 : _a.endsWith(value)) && - next(elem); - }; - }, - any: function (next, data, _a) { - var adapter = _a.adapter; - var name = data.name, value = data.value; - if (value === "") { - return boolbase_1.falseFunc; - } - if (data.ignoreCase) { - var regex_1 = new RegExp(escapeRegex(value), "i"); - return function anyIC(elem) { - var attr = adapter.getAttributeValue(elem, name); - return (attr != null && - attr.length >= value.length && - regex_1.test(attr) && - next(elem)); - }; - } - return function (elem) { - var _a; - return !!((_a = adapter.getAttributeValue(elem, name)) === null || _a === void 0 ? void 0 : _a.includes(value)) && - next(elem); - }; - }, - not: function (next, data, _a) { - var adapter = _a.adapter; - var name = data.name; - var value = data.value; - if (value === "") { - return function (elem) { - return !!adapter.getAttributeValue(elem, name) && next(elem); - }; - } - else if (data.ignoreCase) { - value = value.toLowerCase(); - return function (elem) { - var attr = adapter.getAttributeValue(elem, name); - return ((attr == null || - attr.length !== value.length || - attr.toLowerCase() !== value) && - next(elem)); - }; - } - return function (elem) { - return adapter.getAttributeValue(elem, name) !== value && next(elem); - }; - }, -}; - - -/***/ }), -/* 315 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.compilePseudoSelector = exports.aliases = exports.pseudos = exports.filters = void 0; -/* - * Pseudo selectors - * - * Pseudo selectors are available in three forms: + * Decodes a string with entities. Does not allow missing trailing semicolons for entities. * - * 1. Filters are called when the selector is compiled and return a function - * that has to return either false, or the results of `next()`. - * 2. Pseudos are called on execution. They have to return a boolean. - * 3. Subselects work like filters, but have an embedded selector that will be run separately. + * @param data String to decode. + * @param level Optional level to decode at. 0 = XML, 1 = HTML. Default is 0. + * @deprecated Use `decodeHTMLStrict` or `decodeXML` directly. + */ +function decodeStrict(data, level) { + return (!level || level <= 0 ? decode_1.decodeXML : decode_1.decodeHTMLStrict)(data); +} +exports.decodeStrict = decodeStrict; +/** + * Encodes a string with entities. * - * Filters are great if you want to do some pre-processing, or change the call order - * of `next()` and your code. - * Pseudos should be used to implement simple checks. + * @param data String to encode. + * @param level Optional level to encode at. 0 = XML, 1 = HTML. Default is 0. + * @deprecated Use `encodeHTML`, `encodeXML` or `encodeNonAsciiHTML` directly. */ -var boolbase_1 = __webpack_require__(309); -var css_what_1 = __webpack_require__(282); -var filters_1 = __webpack_require__(316); -Object.defineProperty(exports, "filters", { enumerable: true, get: function () { return filters_1.filters; } }); -var pseudos_1 = __webpack_require__(320); -Object.defineProperty(exports, "pseudos", { enumerable: true, get: function () { return pseudos_1.pseudos; } }); -var aliases_1 = __webpack_require__(321); -Object.defineProperty(exports, "aliases", { enumerable: true, get: function () { return aliases_1.aliases; } }); -var subselects_1 = __webpack_require__(322); -function compilePseudoSelector(next, selector, options, context, compileToken) { - var name = selector.name, data = selector.data; - if (Array.isArray(data)) { - return subselects_1.subselects[name](next, data, options, context, compileToken); - } - if (name in aliases_1.aliases) { - if (data != null) { - throw new Error("Pseudo " + name + " doesn't have any arguments"); - } - // The alias has to be parsed here, to make sure options are respected. - var alias = css_what_1.parse(aliases_1.aliases[name], options); - return subselects_1.subselects.is(next, alias, options, context, compileToken); - } - if (name in filters_1.filters) { - return filters_1.filters[name](next, data, options, context); - } - if (name in pseudos_1.pseudos) { - var pseudo_1 = pseudos_1.pseudos[name]; - pseudos_1.verifyPseudoArgs(pseudo_1, name, data); - return pseudo_1 === boolbase_1.falseFunc - ? boolbase_1.falseFunc - : next === boolbase_1.trueFunc - ? function (elem) { return pseudo_1(elem, options, data); } - : function (elem) { return pseudo_1(elem, options, data) && next(elem); }; - } - throw new Error("unmatched pseudo-class :" + name); +function encode(data, level) { + return (!level || level <= 0 ? encode_1.encodeXML : encode_1.encodeHTML)(data); } -exports.compilePseudoSelector = compilePseudoSelector; +exports.encode = encode; +var encode_2 = __webpack_require__(305); +Object.defineProperty(exports, "encodeXML", { enumerable: true, get: function () { return encode_2.encodeXML; } }); +Object.defineProperty(exports, "encodeHTML", { enumerable: true, get: function () { return encode_2.encodeHTML; } }); +Object.defineProperty(exports, "encodeNonAsciiHTML", { enumerable: true, get: function () { return encode_2.encodeNonAsciiHTML; } }); +Object.defineProperty(exports, "escape", { enumerable: true, get: function () { return encode_2.escape; } }); +Object.defineProperty(exports, "escapeUTF8", { enumerable: true, get: function () { return encode_2.escapeUTF8; } }); +// Legacy aliases (deprecated) +Object.defineProperty(exports, "encodeHTML4", { enumerable: true, get: function () { return encode_2.encodeHTML; } }); +Object.defineProperty(exports, "encodeHTML5", { enumerable: true, get: function () { return encode_2.encodeHTML; } }); +var decode_2 = __webpack_require__(299); +Object.defineProperty(exports, "decodeXML", { enumerable: true, get: function () { return decode_2.decodeXML; } }); +Object.defineProperty(exports, "decodeHTML", { enumerable: true, get: function () { return decode_2.decodeHTML; } }); +Object.defineProperty(exports, "decodeHTMLStrict", { enumerable: true, get: function () { return decode_2.decodeHTMLStrict; } }); +// Legacy aliases (deprecated) +Object.defineProperty(exports, "decodeHTML4", { enumerable: true, get: function () { return decode_2.decodeHTML; } }); +Object.defineProperty(exports, "decodeHTML5", { enumerable: true, get: function () { return decode_2.decodeHTML; } }); +Object.defineProperty(exports, "decodeHTML4Strict", { enumerable: true, get: function () { return decode_2.decodeHTMLStrict; } }); +Object.defineProperty(exports, "decodeHTML5Strict", { enumerable: true, get: function () { return decode_2.decodeHTMLStrict; } }); +Object.defineProperty(exports, "decodeXMLStrict", { enumerable: true, get: function () { return decode_2.decodeXML; } }); /***/ }), -/* 316 */ +/* 299 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -47553,1118 +45779,1027 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); -exports.filters = void 0; -var nth_check_1 = __importDefault(__webpack_require__(317)); -var boolbase_1 = __webpack_require__(309); -function getChildFunc(next, adapter) { - return function (elem) { - var parent = adapter.getParent(elem); - return parent != null && adapter.isTag(parent) && next(elem); - }; +exports.decodeHTML = exports.decodeHTMLStrict = exports.decodeXML = void 0; +var entities_json_1 = __importDefault(__webpack_require__(300)); +var legacy_json_1 = __importDefault(__webpack_require__(301)); +var xml_json_1 = __importDefault(__webpack_require__(302)); +var decode_codepoint_1 = __importDefault(__webpack_require__(303)); +var strictEntityRe = /&(?:[a-zA-Z0-9]+|#[xX][\da-fA-F]+|#\d+);/g; +exports.decodeXML = getStrictDecoder(xml_json_1.default); +exports.decodeHTMLStrict = getStrictDecoder(entities_json_1.default); +function getStrictDecoder(map) { + var replace = getReplacer(map); + return function (str) { return String(str).replace(strictEntityRe, replace); }; } -exports.filters = { - contains: function (next, text, _a) { - var adapter = _a.adapter; - return function contains(elem) { - return next(elem) && adapter.getText(elem).includes(text); - }; - }, - icontains: function (next, text, _a) { - var adapter = _a.adapter; - var itext = text.toLowerCase(); - return function icontains(elem) { - return (next(elem) && - adapter.getText(elem).toLowerCase().includes(itext)); - }; - }, - // Location specific methods - "nth-child": function (next, rule, _a) { - var adapter = _a.adapter, equals = _a.equals; - var func = nth_check_1.default(rule); - if (func === boolbase_1.falseFunc) - return boolbase_1.falseFunc; - if (func === boolbase_1.trueFunc) - return getChildFunc(next, adapter); - return function nthChild(elem) { - var siblings = adapter.getSiblings(elem); - var pos = 0; - for (var i = 0; i < siblings.length; i++) { - if (equals(elem, siblings[i])) - break; - if (adapter.isTag(siblings[i])) { - pos++; - } - } - return func(pos) && next(elem); - }; - }, - "nth-last-child": function (next, rule, _a) { - var adapter = _a.adapter, equals = _a.equals; - var func = nth_check_1.default(rule); - if (func === boolbase_1.falseFunc) - return boolbase_1.falseFunc; - if (func === boolbase_1.trueFunc) - return getChildFunc(next, adapter); - return function nthLastChild(elem) { - var siblings = adapter.getSiblings(elem); - var pos = 0; - for (var i = siblings.length - 1; i >= 0; i--) { - if (equals(elem, siblings[i])) - break; - if (adapter.isTag(siblings[i])) { - pos++; - } - } - return func(pos) && next(elem); - }; - }, - "nth-of-type": function (next, rule, _a) { - var adapter = _a.adapter, equals = _a.equals; - var func = nth_check_1.default(rule); - if (func === boolbase_1.falseFunc) - return boolbase_1.falseFunc; - if (func === boolbase_1.trueFunc) - return getChildFunc(next, adapter); - return function nthOfType(elem) { - var siblings = adapter.getSiblings(elem); - var pos = 0; - for (var i = 0; i < siblings.length; i++) { - var currentSibling = siblings[i]; - if (equals(elem, currentSibling)) - break; - if (adapter.isTag(currentSibling) && - adapter.getName(currentSibling) === adapter.getName(elem)) { - pos++; - } - } - return func(pos) && next(elem); - }; - }, - "nth-last-of-type": function (next, rule, _a) { - var adapter = _a.adapter, equals = _a.equals; - var func = nth_check_1.default(rule); - if (func === boolbase_1.falseFunc) - return boolbase_1.falseFunc; - if (func === boolbase_1.trueFunc) - return getChildFunc(next, adapter); - return function nthLastOfType(elem) { - var siblings = adapter.getSiblings(elem); - var pos = 0; - for (var i = siblings.length - 1; i >= 0; i--) { - var currentSibling = siblings[i]; - if (equals(elem, currentSibling)) - break; - if (adapter.isTag(currentSibling) && - adapter.getName(currentSibling) === adapter.getName(elem)) { - pos++; - } - } - return func(pos) && next(elem); - }; - }, - // TODO determine the actual root element - root: function (next, _rule, _a) { - var adapter = _a.adapter; - return function (elem) { - var parent = adapter.getParent(elem); - return (parent == null || !adapter.isTag(parent)) && next(elem); - }; - }, - scope: function (next, rule, options, context) { - var equals = options.equals; - if (!context || context.length === 0) { - // Equivalent to :root - return exports.filters.root(next, rule, options); +var sorter = function (a, b) { return (a < b ? 1 : -1); }; +exports.decodeHTML = (function () { + var legacy = Object.keys(legacy_json_1.default).sort(sorter); + var keys = Object.keys(entities_json_1.default).sort(sorter); + for (var i = 0, j = 0; i < keys.length; i++) { + if (legacy[j] === keys[i]) { + keys[i] += ";?"; + j++; } - if (context.length === 1) { - // NOTE: can't be unpacked, as :has uses this for side-effects - return function (elem) { return equals(context[0], elem) && next(elem); }; + else { + keys[i] += ";"; } - return function (elem) { return context.includes(elem) && next(elem); }; - }, - hover: dynamicStatePseudo("isHovered"), - visited: dynamicStatePseudo("isVisited"), - active: dynamicStatePseudo("isActive"), -}; -/** - * Dynamic state pseudos. These depend on optional Adapter methods. - * - * @param name The name of the adapter method to call. - * @returns Pseudo for the `filters` object. - */ -function dynamicStatePseudo(name) { - return function dynamicPseudo(next, _rule, _a) { - var adapter = _a.adapter; - var func = adapter[name]; - if (typeof func !== "function") { - return boolbase_1.falseFunc; + } + var re = new RegExp("&(?:" + keys.join("|") + "|#[xX][\\da-fA-F]+;?|#\\d+;?)", "g"); + var replace = getReplacer(entities_json_1.default); + function replacer(str) { + if (str.substr(-1) !== ";") + str += ";"; + return replace(str); + } + // TODO consider creating a merged map + return function (str) { return String(str).replace(re, replacer); }; +})(); +function getReplacer(map) { + return function replace(str) { + if (str.charAt(1) === "#") { + var secondChar = str.charAt(2); + if (secondChar === "X" || secondChar === "x") { + return decode_codepoint_1.default(parseInt(str.substr(3), 16)); + } + return decode_codepoint_1.default(parseInt(str.substr(2), 10)); } - return function active(elem) { - return func(elem) && next(elem); - }; + // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing + return map[str.slice(1, -1)] || str; }; } /***/ }), -/* 317 */ -/***/ (function(module, exports, __webpack_require__) { +/* 300 */ +/***/ (function(module) { -"use strict"; +module.exports = JSON.parse("{\"Aacute\":\"Ã\",\"aacute\":\"á\",\"Abreve\":\"Ä‚\",\"abreve\":\"ă\",\"ac\":\"∾\",\"acd\":\"∿\",\"acE\":\"∾̳\",\"Acirc\":\"Â\",\"acirc\":\"â\",\"acute\":\"´\",\"Acy\":\"Ð\",\"acy\":\"а\",\"AElig\":\"Æ\",\"aelig\":\"æ\",\"af\":\"â¡\",\"Afr\":\"ð”„\",\"afr\":\"ð”ž\",\"Agrave\":\"À\",\"agrave\":\"à \",\"alefsym\":\"ℵ\",\"aleph\":\"ℵ\",\"Alpha\":\"Α\",\"alpha\":\"α\",\"Amacr\":\"Ä€\",\"amacr\":\"Ä\",\"amalg\":\"⨿\",\"amp\":\"&\",\"AMP\":\"&\",\"andand\":\"â©•\",\"And\":\"â©“\",\"and\":\"∧\",\"andd\":\"⩜\",\"andslope\":\"⩘\",\"andv\":\"⩚\",\"ang\":\"∠\",\"ange\":\"⦤\",\"angle\":\"∠\",\"angmsdaa\":\"⦨\",\"angmsdab\":\"⦩\",\"angmsdac\":\"⦪\",\"angmsdad\":\"⦫\",\"angmsdae\":\"⦬\",\"angmsdaf\":\"â¦\",\"angmsdag\":\"⦮\",\"angmsdah\":\"⦯\",\"angmsd\":\"∡\",\"angrt\":\"∟\",\"angrtvb\":\"⊾\",\"angrtvbd\":\"â¦\",\"angsph\":\"∢\",\"angst\":\"Ã…\",\"angzarr\":\"â¼\",\"Aogon\":\"Ä„\",\"aogon\":\"Ä…\",\"Aopf\":\"ð”¸\",\"aopf\":\"ð•’\",\"apacir\":\"⩯\",\"ap\":\"≈\",\"apE\":\"â©°\",\"ape\":\"≊\",\"apid\":\"≋\",\"apos\":\"'\",\"ApplyFunction\":\"â¡\",\"approx\":\"≈\",\"approxeq\":\"≊\",\"Aring\":\"Ã…\",\"aring\":\"Ã¥\",\"Ascr\":\"ð’œ\",\"ascr\":\"ð’¶\",\"Assign\":\"≔\",\"ast\":\"*\",\"asymp\":\"≈\",\"asympeq\":\"â‰\",\"Atilde\":\"Ã\",\"atilde\":\"ã\",\"Auml\":\"Ä\",\"auml\":\"ä\",\"awconint\":\"∳\",\"awint\":\"⨑\",\"backcong\":\"≌\",\"backepsilon\":\"϶\",\"backprime\":\"‵\",\"backsim\":\"∽\",\"backsimeq\":\"â‹\",\"Backslash\":\"∖\",\"Barv\":\"â«§\",\"barvee\":\"⊽\",\"barwed\":\"⌅\",\"Barwed\":\"⌆\",\"barwedge\":\"⌅\",\"bbrk\":\"⎵\",\"bbrktbrk\":\"⎶\",\"bcong\":\"≌\",\"Bcy\":\"Б\",\"bcy\":\"б\",\"bdquo\":\"„\",\"becaus\":\"∵\",\"because\":\"∵\",\"Because\":\"∵\",\"bemptyv\":\"⦰\",\"bepsi\":\"϶\",\"bernou\":\"ℬ\",\"Bernoullis\":\"ℬ\",\"Beta\":\"Î’\",\"beta\":\"β\",\"beth\":\"â„¶\",\"between\":\"≬\",\"Bfr\":\"ð”…\",\"bfr\":\"ð”Ÿ\",\"bigcap\":\"â‹‚\",\"bigcirc\":\"â—¯\",\"bigcup\":\"⋃\",\"bigodot\":\"⨀\",\"bigoplus\":\"â¨\",\"bigotimes\":\"⨂\",\"bigsqcup\":\"⨆\",\"bigstar\":\"★\",\"bigtriangledown\":\"â–½\",\"bigtriangleup\":\"â–³\",\"biguplus\":\"⨄\",\"bigvee\":\"â‹\",\"bigwedge\":\"â‹€\",\"bkarow\":\"â¤\",\"blacklozenge\":\"â§«\",\"blacksquare\":\"â–ª\",\"blacktriangle\":\"â–´\",\"blacktriangledown\":\"â–¾\",\"blacktriangleleft\":\"â—‚\",\"blacktriangleright\":\"â–¸\",\"blank\":\"â£\",\"blk12\":\"â–’\",\"blk14\":\"â–‘\",\"blk34\":\"â–“\",\"block\":\"â–ˆ\",\"bne\":\"=⃥\",\"bnequiv\":\"≡⃥\",\"bNot\":\"â«\",\"bnot\":\"âŒ\",\"Bopf\":\"ð”¹\",\"bopf\":\"ð•“\",\"bot\":\"⊥\",\"bottom\":\"⊥\",\"bowtie\":\"⋈\",\"boxbox\":\"⧉\",\"boxdl\":\"â”\",\"boxdL\":\"â••\",\"boxDl\":\"â•–\",\"boxDL\":\"â•—\",\"boxdr\":\"┌\",\"boxdR\":\"â•’\",\"boxDr\":\"â•“\",\"boxDR\":\"â•”\",\"boxh\":\"─\",\"boxH\":\"â•\",\"boxhd\":\"┬\",\"boxHd\":\"╤\",\"boxhD\":\"â•¥\",\"boxHD\":\"╦\",\"boxhu\":\"â”´\",\"boxHu\":\"â•§\",\"boxhU\":\"╨\",\"boxHU\":\"â•©\",\"boxminus\":\"⊟\",\"boxplus\":\"⊞\",\"boxtimes\":\"⊠\",\"boxul\":\"┘\",\"boxuL\":\"â•›\",\"boxUl\":\"╜\",\"boxUL\":\"â•\",\"boxur\":\"â””\",\"boxuR\":\"╘\",\"boxUr\":\"â•™\",\"boxUR\":\"╚\",\"boxv\":\"│\",\"boxV\":\"â•‘\",\"boxvh\":\"┼\",\"boxvH\":\"╪\",\"boxVh\":\"â•«\",\"boxVH\":\"╬\",\"boxvl\":\"┤\",\"boxvL\":\"â•¡\",\"boxVl\":\"â•¢\",\"boxVL\":\"â•£\",\"boxvr\":\"├\",\"boxvR\":\"╞\",\"boxVr\":\"╟\",\"boxVR\":\"â• \",\"bprime\":\"‵\",\"breve\":\"˘\",\"Breve\":\"˘\",\"brvbar\":\"¦\",\"bscr\":\"ð’·\",\"Bscr\":\"ℬ\",\"bsemi\":\"â\",\"bsim\":\"∽\",\"bsime\":\"â‹\",\"bsolb\":\"â§…\",\"bsol\":\"\\\\\",\"bsolhsub\":\"⟈\",\"bull\":\"•\",\"bullet\":\"•\",\"bump\":\"≎\",\"bumpE\":\"⪮\",\"bumpe\":\"â‰\",\"Bumpeq\":\"≎\",\"bumpeq\":\"â‰\",\"Cacute\":\"Ć\",\"cacute\":\"ć\",\"capand\":\"â©„\",\"capbrcup\":\"⩉\",\"capcap\":\"â©‹\",\"cap\":\"∩\",\"Cap\":\"â‹’\",\"capcup\":\"⩇\",\"capdot\":\"â©€\",\"CapitalDifferentialD\":\"â……\",\"caps\":\"∩︀\",\"caret\":\"â\",\"caron\":\"ˇ\",\"Cayleys\":\"â„\",\"ccaps\":\"â©\",\"Ccaron\":\"ÄŒ\",\"ccaron\":\"Ä\",\"Ccedil\":\"Ç\",\"ccedil\":\"ç\",\"Ccirc\":\"Ĉ\",\"ccirc\":\"ĉ\",\"Cconint\":\"∰\",\"ccups\":\"⩌\",\"ccupssm\":\"â©\",\"Cdot\":\"ÄŠ\",\"cdot\":\"Ä‹\",\"cedil\":\"¸\",\"Cedilla\":\"¸\",\"cemptyv\":\"⦲\",\"cent\":\"¢\",\"centerdot\":\"·\",\"CenterDot\":\"·\",\"cfr\":\"ð” \",\"Cfr\":\"â„\",\"CHcy\":\"Ч\",\"chcy\":\"ч\",\"check\":\"✓\",\"checkmark\":\"✓\",\"Chi\":\"Χ\",\"chi\":\"χ\",\"circ\":\"ˆ\",\"circeq\":\"≗\",\"circlearrowleft\":\"↺\",\"circlearrowright\":\"↻\",\"circledast\":\"⊛\",\"circledcirc\":\"⊚\",\"circleddash\":\"âŠ\",\"CircleDot\":\"⊙\",\"circledR\":\"®\",\"circledS\":\"Ⓢ\",\"CircleMinus\":\"⊖\",\"CirclePlus\":\"⊕\",\"CircleTimes\":\"⊗\",\"cir\":\"â—‹\",\"cirE\":\"⧃\",\"cire\":\"≗\",\"cirfnint\":\"â¨\",\"cirmid\":\"⫯\",\"cirscir\":\"â§‚\",\"ClockwiseContourIntegral\":\"∲\",\"CloseCurlyDoubleQuote\":\"â€\",\"CloseCurlyQuote\":\"’\",\"clubs\":\"♣\",\"clubsuit\":\"♣\",\"colon\":\":\",\"Colon\":\"∷\",\"Colone\":\"â©´\",\"colone\":\"≔\",\"coloneq\":\"≔\",\"comma\":\",\",\"commat\":\"@\",\"comp\":\"âˆ\",\"compfn\":\"∘\",\"complement\":\"âˆ\",\"complexes\":\"â„‚\",\"cong\":\"≅\",\"congdot\":\"â©\",\"Congruent\":\"≡\",\"conint\":\"∮\",\"Conint\":\"∯\",\"ContourIntegral\":\"∮\",\"copf\":\"ð•”\",\"Copf\":\"â„‚\",\"coprod\":\"âˆ\",\"Coproduct\":\"âˆ\",\"copy\":\"©\",\"COPY\":\"©\",\"copysr\":\"â„—\",\"CounterClockwiseContourIntegral\":\"∳\",\"crarr\":\"↵\",\"cross\":\"✗\",\"Cross\":\"⨯\",\"Cscr\":\"ð’ž\",\"cscr\":\"ð’¸\",\"csub\":\"â«\",\"csube\":\"â«‘\",\"csup\":\"â«\",\"csupe\":\"â«’\",\"ctdot\":\"⋯\",\"cudarrl\":\"⤸\",\"cudarrr\":\"⤵\",\"cuepr\":\"⋞\",\"cuesc\":\"⋟\",\"cularr\":\"↶\",\"cularrp\":\"⤽\",\"cupbrcap\":\"⩈\",\"cupcap\":\"⩆\",\"CupCap\":\"â‰\",\"cup\":\"∪\",\"Cup\":\"â‹“\",\"cupcup\":\"⩊\",\"cupdot\":\"âŠ\",\"cupor\":\"â©…\",\"cups\":\"∪︀\",\"curarr\":\"↷\",\"curarrm\":\"⤼\",\"curlyeqprec\":\"⋞\",\"curlyeqsucc\":\"⋟\",\"curlyvee\":\"⋎\",\"curlywedge\":\"â‹\",\"curren\":\"¤\",\"curvearrowleft\":\"↶\",\"curvearrowright\":\"↷\",\"cuvee\":\"⋎\",\"cuwed\":\"â‹\",\"cwconint\":\"∲\",\"cwint\":\"∱\",\"cylcty\":\"âŒ\",\"dagger\":\"†\",\"Dagger\":\"‡\",\"daleth\":\"ℸ\",\"darr\":\"↓\",\"Darr\":\"↡\",\"dArr\":\"⇓\",\"dash\":\"â€\",\"Dashv\":\"⫤\",\"dashv\":\"⊣\",\"dbkarow\":\"â¤\",\"dblac\":\"Ë\",\"Dcaron\":\"ÄŽ\",\"dcaron\":\"Ä\",\"Dcy\":\"Д\",\"dcy\":\"д\",\"ddagger\":\"‡\",\"ddarr\":\"⇊\",\"DD\":\"â……\",\"dd\":\"â…†\",\"DDotrahd\":\"⤑\",\"ddotseq\":\"â©·\",\"deg\":\"°\",\"Del\":\"∇\",\"Delta\":\"Δ\",\"delta\":\"δ\",\"demptyv\":\"⦱\",\"dfisht\":\"⥿\",\"Dfr\":\"ð”‡\",\"dfr\":\"ð”¡\",\"dHar\":\"⥥\",\"dharl\":\"⇃\",\"dharr\":\"⇂\",\"DiacriticalAcute\":\"´\",\"DiacriticalDot\":\"Ë™\",\"DiacriticalDoubleAcute\":\"Ë\",\"DiacriticalGrave\":\"`\",\"DiacriticalTilde\":\"Ëœ\",\"diam\":\"â‹„\",\"diamond\":\"â‹„\",\"Diamond\":\"â‹„\",\"diamondsuit\":\"♦\",\"diams\":\"♦\",\"die\":\"¨\",\"DifferentialD\":\"â…†\",\"digamma\":\"Ï\",\"disin\":\"⋲\",\"div\":\"÷\",\"divide\":\"÷\",\"divideontimes\":\"⋇\",\"divonx\":\"⋇\",\"DJcy\":\"Ђ\",\"djcy\":\"Ñ’\",\"dlcorn\":\"⌞\",\"dlcrop\":\"âŒ\",\"dollar\":\"$\",\"Dopf\":\"ð”»\",\"dopf\":\"ð••\",\"Dot\":\"¨\",\"dot\":\"Ë™\",\"DotDot\":\"⃜\",\"doteq\":\"â‰\",\"doteqdot\":\"≑\",\"DotEqual\":\"â‰\",\"dotminus\":\"∸\",\"dotplus\":\"∔\",\"dotsquare\":\"⊡\",\"doublebarwedge\":\"⌆\",\"DoubleContourIntegral\":\"∯\",\"DoubleDot\":\"¨\",\"DoubleDownArrow\":\"⇓\",\"DoubleLeftArrow\":\"â‡\",\"DoubleLeftRightArrow\":\"⇔\",\"DoubleLeftTee\":\"⫤\",\"DoubleLongLeftArrow\":\"⟸\",\"DoubleLongLeftRightArrow\":\"⟺\",\"DoubleLongRightArrow\":\"⟹\",\"DoubleRightArrow\":\"⇒\",\"DoubleRightTee\":\"⊨\",\"DoubleUpArrow\":\"⇑\",\"DoubleUpDownArrow\":\"⇕\",\"DoubleVerticalBar\":\"∥\",\"DownArrowBar\":\"⤓\",\"downarrow\":\"↓\",\"DownArrow\":\"↓\",\"Downarrow\":\"⇓\",\"DownArrowUpArrow\":\"⇵\",\"DownBreve\":\"Ì‘\",\"downdownarrows\":\"⇊\",\"downharpoonleft\":\"⇃\",\"downharpoonright\":\"⇂\",\"DownLeftRightVector\":\"â¥\",\"DownLeftTeeVector\":\"⥞\",\"DownLeftVectorBar\":\"⥖\",\"DownLeftVector\":\"↽\",\"DownRightTeeVector\":\"⥟\",\"DownRightVectorBar\":\"⥗\",\"DownRightVector\":\"â‡\",\"DownTeeArrow\":\"↧\",\"DownTee\":\"⊤\",\"drbkarow\":\"â¤\",\"drcorn\":\"⌟\",\"drcrop\":\"⌌\",\"Dscr\":\"ð’Ÿ\",\"dscr\":\"ð’¹\",\"DScy\":\"Ð…\",\"dscy\":\"Ñ•\",\"dsol\":\"â§¶\",\"Dstrok\":\"Ä\",\"dstrok\":\"Ä‘\",\"dtdot\":\"⋱\",\"dtri\":\"â–¿\",\"dtrif\":\"â–¾\",\"duarr\":\"⇵\",\"duhar\":\"⥯\",\"dwangle\":\"⦦\",\"DZcy\":\"Ð\",\"dzcy\":\"ÑŸ\",\"dzigrarr\":\"⟿\",\"Eacute\":\"É\",\"eacute\":\"é\",\"easter\":\"â©®\",\"Ecaron\":\"Äš\",\"ecaron\":\"Ä›\",\"Ecirc\":\"Ê\",\"ecirc\":\"ê\",\"ecir\":\"≖\",\"ecolon\":\"≕\",\"Ecy\":\"Ð\",\"ecy\":\"Ñ\",\"eDDot\":\"â©·\",\"Edot\":\"Ä–\",\"edot\":\"Ä—\",\"eDot\":\"≑\",\"ee\":\"â…‡\",\"efDot\":\"≒\",\"Efr\":\"ð”ˆ\",\"efr\":\"ð”¢\",\"eg\":\"⪚\",\"Egrave\":\"È\",\"egrave\":\"è\",\"egs\":\"⪖\",\"egsdot\":\"⪘\",\"el\":\"⪙\",\"Element\":\"∈\",\"elinters\":\"â§\",\"ell\":\"â„“\",\"els\":\"⪕\",\"elsdot\":\"⪗\",\"Emacr\":\"Ä’\",\"emacr\":\"Ä“\",\"empty\":\"∅\",\"emptyset\":\"∅\",\"EmptySmallSquare\":\"â—»\",\"emptyv\":\"∅\",\"EmptyVerySmallSquare\":\"â–«\",\"emsp13\":\" \",\"emsp14\":\" \",\"emsp\":\" \",\"ENG\":\"ÅŠ\",\"eng\":\"Å‹\",\"ensp\":\" \",\"Eogon\":\"Ę\",\"eogon\":\"Ä™\",\"Eopf\":\"ð”¼\",\"eopf\":\"ð•–\",\"epar\":\"â‹•\",\"eparsl\":\"â§£\",\"eplus\":\"⩱\",\"epsi\":\"ε\",\"Epsilon\":\"Ε\",\"epsilon\":\"ε\",\"epsiv\":\"ϵ\",\"eqcirc\":\"≖\",\"eqcolon\":\"≕\",\"eqsim\":\"≂\",\"eqslantgtr\":\"⪖\",\"eqslantless\":\"⪕\",\"Equal\":\"⩵\",\"equals\":\"=\",\"EqualTilde\":\"≂\",\"equest\":\"≟\",\"Equilibrium\":\"⇌\",\"equiv\":\"≡\",\"equivDD\":\"⩸\",\"eqvparsl\":\"â§¥\",\"erarr\":\"⥱\",\"erDot\":\"≓\",\"escr\":\"ℯ\",\"Escr\":\"â„°\",\"esdot\":\"â‰\",\"Esim\":\"⩳\",\"esim\":\"≂\",\"Eta\":\"Η\",\"eta\":\"η\",\"ETH\":\"Ã\",\"eth\":\"ð\",\"Euml\":\"Ë\",\"euml\":\"ë\",\"euro\":\"€\",\"excl\":\"!\",\"exist\":\"∃\",\"Exists\":\"∃\",\"expectation\":\"â„°\",\"exponentiale\":\"â…‡\",\"ExponentialE\":\"â…‡\",\"fallingdotseq\":\"≒\",\"Fcy\":\"Ф\",\"fcy\":\"Ñ„\",\"female\":\"♀\",\"ffilig\":\"ffi\",\"fflig\":\"ff\",\"ffllig\":\"ffl\",\"Ffr\":\"ð”‰\",\"ffr\":\"ð”£\",\"filig\":\"ï¬\",\"FilledSmallSquare\":\"â—¼\",\"FilledVerySmallSquare\":\"â–ª\",\"fjlig\":\"fj\",\"flat\":\"â™\",\"fllig\":\"fl\",\"fltns\":\"â–±\",\"fnof\":\"Æ’\",\"Fopf\":\"ð”½\",\"fopf\":\"ð•—\",\"forall\":\"∀\",\"ForAll\":\"∀\",\"fork\":\"â‹”\",\"forkv\":\"â«™\",\"Fouriertrf\":\"ℱ\",\"fpartint\":\"â¨\",\"frac12\":\"½\",\"frac13\":\"â…“\",\"frac14\":\"¼\",\"frac15\":\"â…•\",\"frac16\":\"â…™\",\"frac18\":\"â…›\",\"frac23\":\"â…”\",\"frac25\":\"â…–\",\"frac34\":\"¾\",\"frac35\":\"â…—\",\"frac38\":\"â…œ\",\"frac45\":\"â…˜\",\"frac56\":\"â…š\",\"frac58\":\"â…\",\"frac78\":\"â…ž\",\"frasl\":\"â„\",\"frown\":\"⌢\",\"fscr\":\"ð’»\",\"Fscr\":\"ℱ\",\"gacute\":\"ǵ\",\"Gamma\":\"Γ\",\"gamma\":\"γ\",\"Gammad\":\"Ïœ\",\"gammad\":\"Ï\",\"gap\":\"⪆\",\"Gbreve\":\"Äž\",\"gbreve\":\"ÄŸ\",\"Gcedil\":\"Ä¢\",\"Gcirc\":\"Äœ\",\"gcirc\":\"Ä\",\"Gcy\":\"Г\",\"gcy\":\"г\",\"Gdot\":\"Ä \",\"gdot\":\"Ä¡\",\"ge\":\"≥\",\"gE\":\"≧\",\"gEl\":\"⪌\",\"gel\":\"â‹›\",\"geq\":\"≥\",\"geqq\":\"≧\",\"geqslant\":\"⩾\",\"gescc\":\"⪩\",\"ges\":\"⩾\",\"gesdot\":\"⪀\",\"gesdoto\":\"⪂\",\"gesdotol\":\"⪄\",\"gesl\":\"⋛︀\",\"gesles\":\"⪔\",\"Gfr\":\"ð”Š\",\"gfr\":\"ð”¤\",\"gg\":\"≫\",\"Gg\":\"â‹™\",\"ggg\":\"â‹™\",\"gimel\":\"â„·\",\"GJcy\":\"Ѓ\",\"gjcy\":\"Ñ“\",\"gla\":\"⪥\",\"gl\":\"≷\",\"glE\":\"⪒\",\"glj\":\"⪤\",\"gnap\":\"⪊\",\"gnapprox\":\"⪊\",\"gne\":\"⪈\",\"gnE\":\"≩\",\"gneq\":\"⪈\",\"gneqq\":\"≩\",\"gnsim\":\"â‹§\",\"Gopf\":\"ð”¾\",\"gopf\":\"ð•˜\",\"grave\":\"`\",\"GreaterEqual\":\"≥\",\"GreaterEqualLess\":\"â‹›\",\"GreaterFullEqual\":\"≧\",\"GreaterGreater\":\"⪢\",\"GreaterLess\":\"≷\",\"GreaterSlantEqual\":\"⩾\",\"GreaterTilde\":\"≳\",\"Gscr\":\"ð’¢\",\"gscr\":\"ℊ\",\"gsim\":\"≳\",\"gsime\":\"⪎\",\"gsiml\":\"âª\",\"gtcc\":\"⪧\",\"gtcir\":\"⩺\",\"gt\":\">\",\"GT\":\">\",\"Gt\":\"≫\",\"gtdot\":\"â‹—\",\"gtlPar\":\"⦕\",\"gtquest\":\"⩼\",\"gtrapprox\":\"⪆\",\"gtrarr\":\"⥸\",\"gtrdot\":\"â‹—\",\"gtreqless\":\"â‹›\",\"gtreqqless\":\"⪌\",\"gtrless\":\"≷\",\"gtrsim\":\"≳\",\"gvertneqq\":\"≩︀\",\"gvnE\":\"≩︀\",\"Hacek\":\"ˇ\",\"hairsp\":\" \",\"half\":\"½\",\"hamilt\":\"â„‹\",\"HARDcy\":\"Ъ\",\"hardcy\":\"ÑŠ\",\"harrcir\":\"⥈\",\"harr\":\"↔\",\"hArr\":\"⇔\",\"harrw\":\"â†\",\"Hat\":\"^\",\"hbar\":\"â„\",\"Hcirc\":\"Ĥ\",\"hcirc\":\"Ä¥\",\"hearts\":\"♥\",\"heartsuit\":\"♥\",\"hellip\":\"…\",\"hercon\":\"⊹\",\"hfr\":\"ð”¥\",\"Hfr\":\"ℌ\",\"HilbertSpace\":\"â„‹\",\"hksearow\":\"⤥\",\"hkswarow\":\"⤦\",\"hoarr\":\"⇿\",\"homtht\":\"∻\",\"hookleftarrow\":\"↩\",\"hookrightarrow\":\"↪\",\"hopf\":\"ð•™\",\"Hopf\":\"â„\",\"horbar\":\"―\",\"HorizontalLine\":\"─\",\"hscr\":\"ð’½\",\"Hscr\":\"â„‹\",\"hslash\":\"â„\",\"Hstrok\":\"Ħ\",\"hstrok\":\"ħ\",\"HumpDownHump\":\"≎\",\"HumpEqual\":\"â‰\",\"hybull\":\"âƒ\",\"hyphen\":\"â€\",\"Iacute\":\"Ã\",\"iacute\":\"Ã\",\"ic\":\"â£\",\"Icirc\":\"ÃŽ\",\"icirc\":\"î\",\"Icy\":\"И\",\"icy\":\"и\",\"Idot\":\"İ\",\"IEcy\":\"Е\",\"iecy\":\"е\",\"iexcl\":\"¡\",\"iff\":\"⇔\",\"ifr\":\"ð”¦\",\"Ifr\":\"â„‘\",\"Igrave\":\"ÃŒ\",\"igrave\":\"ì\",\"ii\":\"â…ˆ\",\"iiiint\":\"⨌\",\"iiint\":\"âˆ\",\"iinfin\":\"â§œ\",\"iiota\":\"â„©\",\"IJlig\":\"IJ\",\"ijlig\":\"ij\",\"Imacr\":\"Ī\",\"imacr\":\"Ä«\",\"image\":\"â„‘\",\"ImaginaryI\":\"â…ˆ\",\"imagline\":\"â„\",\"imagpart\":\"â„‘\",\"imath\":\"ı\",\"Im\":\"â„‘\",\"imof\":\"⊷\",\"imped\":\"Ƶ\",\"Implies\":\"⇒\",\"incare\":\"â„…\",\"in\":\"∈\",\"infin\":\"∞\",\"infintie\":\"â§\",\"inodot\":\"ı\",\"intcal\":\"⊺\",\"int\":\"∫\",\"Int\":\"∬\",\"integers\":\"ℤ\",\"Integral\":\"∫\",\"intercal\":\"⊺\",\"Intersection\":\"â‹‚\",\"intlarhk\":\"⨗\",\"intprod\":\"⨼\",\"InvisibleComma\":\"â£\",\"InvisibleTimes\":\"â¢\",\"IOcy\":\"Ð\",\"iocy\":\"Ñ‘\",\"Iogon\":\"Ä®\",\"iogon\":\"į\",\"Iopf\":\"ð•€\",\"iopf\":\"ð•š\",\"Iota\":\"Ι\",\"iota\":\"ι\",\"iprod\":\"⨼\",\"iquest\":\"¿\",\"iscr\":\"ð’¾\",\"Iscr\":\"â„\",\"isin\":\"∈\",\"isindot\":\"⋵\",\"isinE\":\"⋹\",\"isins\":\"â‹´\",\"isinsv\":\"⋳\",\"isinv\":\"∈\",\"it\":\"â¢\",\"Itilde\":\"Ĩ\",\"itilde\":\"Ä©\",\"Iukcy\":\"І\",\"iukcy\":\"Ñ–\",\"Iuml\":\"Ã\",\"iuml\":\"ï\",\"Jcirc\":\"Ä´\",\"jcirc\":\"ĵ\",\"Jcy\":\"Й\",\"jcy\":\"й\",\"Jfr\":\"ð”\",\"jfr\":\"ð”§\",\"jmath\":\"È·\",\"Jopf\":\"ð•\",\"jopf\":\"ð•›\",\"Jscr\":\"ð’¥\",\"jscr\":\"ð’¿\",\"Jsercy\":\"Ј\",\"jsercy\":\"ј\",\"Jukcy\":\"Є\",\"jukcy\":\"Ñ”\",\"Kappa\":\"Κ\",\"kappa\":\"κ\",\"kappav\":\"ϰ\",\"Kcedil\":\"Ķ\",\"kcedil\":\"Ä·\",\"Kcy\":\"К\",\"kcy\":\"к\",\"Kfr\":\"ð”Ž\",\"kfr\":\"ð”¨\",\"kgreen\":\"ĸ\",\"KHcy\":\"Ð¥\",\"khcy\":\"Ñ…\",\"KJcy\":\"ÐŒ\",\"kjcy\":\"Ñœ\",\"Kopf\":\"ð•‚\",\"kopf\":\"ð•œ\",\"Kscr\":\"ð’¦\",\"kscr\":\"ð“€\",\"lAarr\":\"⇚\",\"Lacute\":\"Ĺ\",\"lacute\":\"ĺ\",\"laemptyv\":\"⦴\",\"lagran\":\"â„’\",\"Lambda\":\"Λ\",\"lambda\":\"λ\",\"lang\":\"⟨\",\"Lang\":\"⟪\",\"langd\":\"⦑\",\"langle\":\"⟨\",\"lap\":\"⪅\",\"Laplacetrf\":\"â„’\",\"laquo\":\"«\",\"larrb\":\"⇤\",\"larrbfs\":\"⤟\",\"larr\":\"â†\",\"Larr\":\"↞\",\"lArr\":\"â‡\",\"larrfs\":\"â¤\",\"larrhk\":\"↩\",\"larrlp\":\"↫\",\"larrpl\":\"⤹\",\"larrsim\":\"⥳\",\"larrtl\":\"↢\",\"latail\":\"⤙\",\"lAtail\":\"⤛\",\"lat\":\"⪫\",\"late\":\"âª\",\"lates\":\"âªï¸€\",\"lbarr\":\"⤌\",\"lBarr\":\"⤎\",\"lbbrk\":\"â²\",\"lbrace\":\"{\",\"lbrack\":\"[\",\"lbrke\":\"⦋\",\"lbrksld\":\"â¦\",\"lbrkslu\":\"â¦\",\"Lcaron\":\"Ľ\",\"lcaron\":\"ľ\",\"Lcedil\":\"Ä»\",\"lcedil\":\"ļ\",\"lceil\":\"⌈\",\"lcub\":\"{\",\"Lcy\":\"Л\",\"lcy\":\"л\",\"ldca\":\"⤶\",\"ldquo\":\"“\",\"ldquor\":\"„\",\"ldrdhar\":\"⥧\",\"ldrushar\":\"⥋\",\"ldsh\":\"↲\",\"le\":\"≤\",\"lE\":\"≦\",\"LeftAngleBracket\":\"⟨\",\"LeftArrowBar\":\"⇤\",\"leftarrow\":\"â†\",\"LeftArrow\":\"â†\",\"Leftarrow\":\"â‡\",\"LeftArrowRightArrow\":\"⇆\",\"leftarrowtail\":\"↢\",\"LeftCeiling\":\"⌈\",\"LeftDoubleBracket\":\"⟦\",\"LeftDownTeeVector\":\"⥡\",\"LeftDownVectorBar\":\"⥙\",\"LeftDownVector\":\"⇃\",\"LeftFloor\":\"⌊\",\"leftharpoondown\":\"↽\",\"leftharpoonup\":\"↼\",\"leftleftarrows\":\"⇇\",\"leftrightarrow\":\"↔\",\"LeftRightArrow\":\"↔\",\"Leftrightarrow\":\"⇔\",\"leftrightarrows\":\"⇆\",\"leftrightharpoons\":\"⇋\",\"leftrightsquigarrow\":\"â†\",\"LeftRightVector\":\"⥎\",\"LeftTeeArrow\":\"↤\",\"LeftTee\":\"⊣\",\"LeftTeeVector\":\"⥚\",\"leftthreetimes\":\"â‹‹\",\"LeftTriangleBar\":\"â§\",\"LeftTriangle\":\"⊲\",\"LeftTriangleEqual\":\"⊴\",\"LeftUpDownVector\":\"⥑\",\"LeftUpTeeVector\":\"⥠\",\"LeftUpVectorBar\":\"⥘\",\"LeftUpVector\":\"↿\",\"LeftVectorBar\":\"⥒\",\"LeftVector\":\"↼\",\"lEg\":\"⪋\",\"leg\":\"⋚\",\"leq\":\"≤\",\"leqq\":\"≦\",\"leqslant\":\"⩽\",\"lescc\":\"⪨\",\"les\":\"⩽\",\"lesdot\":\"â©¿\",\"lesdoto\":\"âª\",\"lesdotor\":\"⪃\",\"lesg\":\"⋚︀\",\"lesges\":\"⪓\",\"lessapprox\":\"⪅\",\"lessdot\":\"â‹–\",\"lesseqgtr\":\"⋚\",\"lesseqqgtr\":\"⪋\",\"LessEqualGreater\":\"⋚\",\"LessFullEqual\":\"≦\",\"LessGreater\":\"≶\",\"lessgtr\":\"≶\",\"LessLess\":\"⪡\",\"lesssim\":\"≲\",\"LessSlantEqual\":\"⩽\",\"LessTilde\":\"≲\",\"lfisht\":\"⥼\",\"lfloor\":\"⌊\",\"Lfr\":\"ð”\",\"lfr\":\"ð”©\",\"lg\":\"≶\",\"lgE\":\"⪑\",\"lHar\":\"⥢\",\"lhard\":\"↽\",\"lharu\":\"↼\",\"lharul\":\"⥪\",\"lhblk\":\"â–„\",\"LJcy\":\"Љ\",\"ljcy\":\"Ñ™\",\"llarr\":\"⇇\",\"ll\":\"≪\",\"Ll\":\"⋘\",\"llcorner\":\"⌞\",\"Lleftarrow\":\"⇚\",\"llhard\":\"⥫\",\"lltri\":\"â—º\",\"Lmidot\":\"Ä¿\",\"lmidot\":\"Å€\",\"lmoustache\":\"⎰\",\"lmoust\":\"⎰\",\"lnap\":\"⪉\",\"lnapprox\":\"⪉\",\"lne\":\"⪇\",\"lnE\":\"≨\",\"lneq\":\"⪇\",\"lneqq\":\"≨\",\"lnsim\":\"⋦\",\"loang\":\"⟬\",\"loarr\":\"⇽\",\"lobrk\":\"⟦\",\"longleftarrow\":\"⟵\",\"LongLeftArrow\":\"⟵\",\"Longleftarrow\":\"⟸\",\"longleftrightarrow\":\"⟷\",\"LongLeftRightArrow\":\"⟷\",\"Longleftrightarrow\":\"⟺\",\"longmapsto\":\"⟼\",\"longrightarrow\":\"⟶\",\"LongRightArrow\":\"⟶\",\"Longrightarrow\":\"⟹\",\"looparrowleft\":\"↫\",\"looparrowright\":\"↬\",\"lopar\":\"⦅\",\"Lopf\":\"ð•ƒ\",\"lopf\":\"ð•\",\"loplus\":\"â¨\",\"lotimes\":\"⨴\",\"lowast\":\"∗\",\"lowbar\":\"_\",\"LowerLeftArrow\":\"↙\",\"LowerRightArrow\":\"↘\",\"loz\":\"â—Š\",\"lozenge\":\"â—Š\",\"lozf\":\"â§«\",\"lpar\":\"(\",\"lparlt\":\"⦓\",\"lrarr\":\"⇆\",\"lrcorner\":\"⌟\",\"lrhar\":\"⇋\",\"lrhard\":\"â¥\",\"lrm\":\"‎\",\"lrtri\":\"⊿\",\"lsaquo\":\"‹\",\"lscr\":\"ð“\",\"Lscr\":\"â„’\",\"lsh\":\"↰\",\"Lsh\":\"↰\",\"lsim\":\"≲\",\"lsime\":\"âª\",\"lsimg\":\"âª\",\"lsqb\":\"[\",\"lsquo\":\"‘\",\"lsquor\":\"‚\",\"Lstrok\":\"Å\",\"lstrok\":\"Å‚\",\"ltcc\":\"⪦\",\"ltcir\":\"⩹\",\"lt\":\"<\",\"LT\":\"<\",\"Lt\":\"≪\",\"ltdot\":\"â‹–\",\"lthree\":\"â‹‹\",\"ltimes\":\"⋉\",\"ltlarr\":\"⥶\",\"ltquest\":\"â©»\",\"ltri\":\"â—ƒ\",\"ltrie\":\"⊴\",\"ltrif\":\"â—‚\",\"ltrPar\":\"⦖\",\"lurdshar\":\"⥊\",\"luruhar\":\"⥦\",\"lvertneqq\":\"≨︀\",\"lvnE\":\"≨︀\",\"macr\":\"¯\",\"male\":\"♂\",\"malt\":\"✠\",\"maltese\":\"✠\",\"Map\":\"⤅\",\"map\":\"↦\",\"mapsto\":\"↦\",\"mapstodown\":\"↧\",\"mapstoleft\":\"↤\",\"mapstoup\":\"↥\",\"marker\":\"â–®\",\"mcomma\":\"⨩\",\"Mcy\":\"М\",\"mcy\":\"м\",\"mdash\":\"—\",\"mDDot\":\"∺\",\"measuredangle\":\"∡\",\"MediumSpace\":\"âŸ\",\"Mellintrf\":\"ℳ\",\"Mfr\":\"ð”\",\"mfr\":\"ð”ª\",\"mho\":\"â„§\",\"micro\":\"µ\",\"midast\":\"*\",\"midcir\":\"â«°\",\"mid\":\"∣\",\"middot\":\"·\",\"minusb\":\"⊟\",\"minus\":\"−\",\"minusd\":\"∸\",\"minusdu\":\"⨪\",\"MinusPlus\":\"∓\",\"mlcp\":\"â«›\",\"mldr\":\"…\",\"mnplus\":\"∓\",\"models\":\"⊧\",\"Mopf\":\"ð•„\",\"mopf\":\"ð•ž\",\"mp\":\"∓\",\"mscr\":\"ð“‚\",\"Mscr\":\"ℳ\",\"mstpos\":\"∾\",\"Mu\":\"Μ\",\"mu\":\"μ\",\"multimap\":\"⊸\",\"mumap\":\"⊸\",\"nabla\":\"∇\",\"Nacute\":\"Ń\",\"nacute\":\"Å„\",\"nang\":\"∠⃒\",\"nap\":\"≉\",\"napE\":\"⩰̸\",\"napid\":\"≋̸\",\"napos\":\"ʼn\",\"napprox\":\"≉\",\"natural\":\"â™®\",\"naturals\":\"â„•\",\"natur\":\"â™®\",\"nbsp\":\" \",\"nbump\":\"≎̸\",\"nbumpe\":\"â‰Ì¸\",\"ncap\":\"⩃\",\"Ncaron\":\"Ň\",\"ncaron\":\"ň\",\"Ncedil\":\"Å…\",\"ncedil\":\"ņ\",\"ncong\":\"≇\",\"ncongdot\":\"â©Ì¸\",\"ncup\":\"â©‚\",\"Ncy\":\"Ð\",\"ncy\":\"н\",\"ndash\":\"–\",\"nearhk\":\"⤤\",\"nearr\":\"↗\",\"neArr\":\"⇗\",\"nearrow\":\"↗\",\"ne\":\"≠\",\"nedot\":\"â‰Ì¸\",\"NegativeMediumSpace\":\"​\",\"NegativeThickSpace\":\"​\",\"NegativeThinSpace\":\"​\",\"NegativeVeryThinSpace\":\"​\",\"nequiv\":\"≢\",\"nesear\":\"⤨\",\"nesim\":\"≂̸\",\"NestedGreaterGreater\":\"≫\",\"NestedLessLess\":\"≪\",\"NewLine\":\"\\n\",\"nexist\":\"∄\",\"nexists\":\"∄\",\"Nfr\":\"ð”‘\",\"nfr\":\"ð”«\",\"ngE\":\"≧̸\",\"nge\":\"≱\",\"ngeq\":\"≱\",\"ngeqq\":\"≧̸\",\"ngeqslant\":\"⩾̸\",\"nges\":\"⩾̸\",\"nGg\":\"⋙̸\",\"ngsim\":\"≵\",\"nGt\":\"≫⃒\",\"ngt\":\"≯\",\"ngtr\":\"≯\",\"nGtv\":\"≫̸\",\"nharr\":\"↮\",\"nhArr\":\"⇎\",\"nhpar\":\"⫲\",\"ni\":\"∋\",\"nis\":\"⋼\",\"nisd\":\"⋺\",\"niv\":\"∋\",\"NJcy\":\"Њ\",\"njcy\":\"Ñš\",\"nlarr\":\"↚\",\"nlArr\":\"â‡\",\"nldr\":\"‥\",\"nlE\":\"≦̸\",\"nle\":\"≰\",\"nleftarrow\":\"↚\",\"nLeftarrow\":\"â‡\",\"nleftrightarrow\":\"↮\",\"nLeftrightarrow\":\"⇎\",\"nleq\":\"≰\",\"nleqq\":\"≦̸\",\"nleqslant\":\"⩽̸\",\"nles\":\"⩽̸\",\"nless\":\"≮\",\"nLl\":\"⋘̸\",\"nlsim\":\"≴\",\"nLt\":\"≪⃒\",\"nlt\":\"≮\",\"nltri\":\"⋪\",\"nltrie\":\"⋬\",\"nLtv\":\"≪̸\",\"nmid\":\"∤\",\"NoBreak\":\"â \",\"NonBreakingSpace\":\" \",\"nopf\":\"ð•Ÿ\",\"Nopf\":\"â„•\",\"Not\":\"⫬\",\"not\":\"¬\",\"NotCongruent\":\"≢\",\"NotCupCap\":\"â‰\",\"NotDoubleVerticalBar\":\"∦\",\"NotElement\":\"∉\",\"NotEqual\":\"≠\",\"NotEqualTilde\":\"≂̸\",\"NotExists\":\"∄\",\"NotGreater\":\"≯\",\"NotGreaterEqual\":\"≱\",\"NotGreaterFullEqual\":\"≧̸\",\"NotGreaterGreater\":\"≫̸\",\"NotGreaterLess\":\"≹\",\"NotGreaterSlantEqual\":\"⩾̸\",\"NotGreaterTilde\":\"≵\",\"NotHumpDownHump\":\"≎̸\",\"NotHumpEqual\":\"â‰Ì¸\",\"notin\":\"∉\",\"notindot\":\"⋵̸\",\"notinE\":\"⋹̸\",\"notinva\":\"∉\",\"notinvb\":\"â‹·\",\"notinvc\":\"â‹¶\",\"NotLeftTriangleBar\":\"â§Ì¸\",\"NotLeftTriangle\":\"⋪\",\"NotLeftTriangleEqual\":\"⋬\",\"NotLess\":\"≮\",\"NotLessEqual\":\"≰\",\"NotLessGreater\":\"≸\",\"NotLessLess\":\"≪̸\",\"NotLessSlantEqual\":\"⩽̸\",\"NotLessTilde\":\"≴\",\"NotNestedGreaterGreater\":\"⪢̸\",\"NotNestedLessLess\":\"⪡̸\",\"notni\":\"∌\",\"notniva\":\"∌\",\"notnivb\":\"⋾\",\"notnivc\":\"⋽\",\"NotPrecedes\":\"⊀\",\"NotPrecedesEqual\":\"⪯̸\",\"NotPrecedesSlantEqual\":\"â‹ \",\"NotReverseElement\":\"∌\",\"NotRightTriangleBar\":\"â§Ì¸\",\"NotRightTriangle\":\"â‹«\",\"NotRightTriangleEqual\":\"â‹\",\"NotSquareSubset\":\"âŠÌ¸\",\"NotSquareSubsetEqual\":\"â‹¢\",\"NotSquareSuperset\":\"âŠÌ¸\",\"NotSquareSupersetEqual\":\"â‹£\",\"NotSubset\":\"⊂⃒\",\"NotSubsetEqual\":\"⊈\",\"NotSucceeds\":\"âŠ\",\"NotSucceedsEqual\":\"⪰̸\",\"NotSucceedsSlantEqual\":\"â‹¡\",\"NotSucceedsTilde\":\"≿̸\",\"NotSuperset\":\"⊃⃒\",\"NotSupersetEqual\":\"⊉\",\"NotTilde\":\"â‰\",\"NotTildeEqual\":\"≄\",\"NotTildeFullEqual\":\"≇\",\"NotTildeTilde\":\"≉\",\"NotVerticalBar\":\"∤\",\"nparallel\":\"∦\",\"npar\":\"∦\",\"nparsl\":\"⫽⃥\",\"npart\":\"∂̸\",\"npolint\":\"⨔\",\"npr\":\"⊀\",\"nprcue\":\"â‹ \",\"nprec\":\"⊀\",\"npreceq\":\"⪯̸\",\"npre\":\"⪯̸\",\"nrarrc\":\"⤳̸\",\"nrarr\":\"↛\",\"nrArr\":\"â‡\",\"nrarrw\":\"â†Ì¸\",\"nrightarrow\":\"↛\",\"nRightarrow\":\"â‡\",\"nrtri\":\"â‹«\",\"nrtrie\":\"â‹\",\"nsc\":\"âŠ\",\"nsccue\":\"â‹¡\",\"nsce\":\"⪰̸\",\"Nscr\":\"ð’©\",\"nscr\":\"ð“ƒ\",\"nshortmid\":\"∤\",\"nshortparallel\":\"∦\",\"nsim\":\"â‰\",\"nsime\":\"≄\",\"nsimeq\":\"≄\",\"nsmid\":\"∤\",\"nspar\":\"∦\",\"nsqsube\":\"â‹¢\",\"nsqsupe\":\"â‹£\",\"nsub\":\"⊄\",\"nsubE\":\"⫅̸\",\"nsube\":\"⊈\",\"nsubset\":\"⊂⃒\",\"nsubseteq\":\"⊈\",\"nsubseteqq\":\"⫅̸\",\"nsucc\":\"âŠ\",\"nsucceq\":\"⪰̸\",\"nsup\":\"⊅\",\"nsupE\":\"⫆̸\",\"nsupe\":\"⊉\",\"nsupset\":\"⊃⃒\",\"nsupseteq\":\"⊉\",\"nsupseteqq\":\"⫆̸\",\"ntgl\":\"≹\",\"Ntilde\":\"Ñ\",\"ntilde\":\"ñ\",\"ntlg\":\"≸\",\"ntriangleleft\":\"⋪\",\"ntrianglelefteq\":\"⋬\",\"ntriangleright\":\"â‹«\",\"ntrianglerighteq\":\"â‹\",\"Nu\":\"Î\",\"nu\":\"ν\",\"num\":\"#\",\"numero\":\"â„–\",\"numsp\":\" \",\"nvap\":\"â‰âƒ’\",\"nvdash\":\"⊬\",\"nvDash\":\"âŠ\",\"nVdash\":\"⊮\",\"nVDash\":\"⊯\",\"nvge\":\"≥⃒\",\"nvgt\":\">⃒\",\"nvHarr\":\"⤄\",\"nvinfin\":\"â§ž\",\"nvlArr\":\"⤂\",\"nvle\":\"≤⃒\",\"nvlt\":\"<⃒\",\"nvltrie\":\"⊴⃒\",\"nvrArr\":\"⤃\",\"nvrtrie\":\"⊵⃒\",\"nvsim\":\"∼⃒\",\"nwarhk\":\"⤣\",\"nwarr\":\"↖\",\"nwArr\":\"⇖\",\"nwarrow\":\"↖\",\"nwnear\":\"⤧\",\"Oacute\":\"Ó\",\"oacute\":\"ó\",\"oast\":\"⊛\",\"Ocirc\":\"Ô\",\"ocirc\":\"ô\",\"ocir\":\"⊚\",\"Ocy\":\"О\",\"ocy\":\"о\",\"odash\":\"âŠ\",\"Odblac\":\"Å\",\"odblac\":\"Å‘\",\"odiv\":\"⨸\",\"odot\":\"⊙\",\"odsold\":\"⦼\",\"OElig\":\"Å’\",\"oelig\":\"Å“\",\"ofcir\":\"⦿\",\"Ofr\":\"ð”’\",\"ofr\":\"ð”¬\",\"ogon\":\"Ë›\",\"Ograve\":\"Ã’\",\"ograve\":\"ò\",\"ogt\":\"â§\",\"ohbar\":\"⦵\",\"ohm\":\"Ω\",\"oint\":\"∮\",\"olarr\":\"↺\",\"olcir\":\"⦾\",\"olcross\":\"⦻\",\"oline\":\"‾\",\"olt\":\"â§€\",\"Omacr\":\"ÅŒ\",\"omacr\":\"Å\",\"Omega\":\"Ω\",\"omega\":\"ω\",\"Omicron\":\"Ο\",\"omicron\":\"ο\",\"omid\":\"⦶\",\"ominus\":\"⊖\",\"Oopf\":\"ð•†\",\"oopf\":\"ð• \",\"opar\":\"⦷\",\"OpenCurlyDoubleQuote\":\"“\",\"OpenCurlyQuote\":\"‘\",\"operp\":\"⦹\",\"oplus\":\"⊕\",\"orarr\":\"↻\",\"Or\":\"â©”\",\"or\":\"∨\",\"ord\":\"â©\",\"order\":\"â„´\",\"orderof\":\"â„´\",\"ordf\":\"ª\",\"ordm\":\"º\",\"origof\":\"⊶\",\"oror\":\"â©–\",\"orslope\":\"â©—\",\"orv\":\"â©›\",\"oS\":\"Ⓢ\",\"Oscr\":\"ð’ª\",\"oscr\":\"â„´\",\"Oslash\":\"Ø\",\"oslash\":\"ø\",\"osol\":\"⊘\",\"Otilde\":\"Õ\",\"otilde\":\"õ\",\"otimesas\":\"⨶\",\"Otimes\":\"⨷\",\"otimes\":\"⊗\",\"Ouml\":\"Ö\",\"ouml\":\"ö\",\"ovbar\":\"⌽\",\"OverBar\":\"‾\",\"OverBrace\":\"âž\",\"OverBracket\":\"⎴\",\"OverParenthesis\":\"âœ\",\"para\":\"¶\",\"parallel\":\"∥\",\"par\":\"∥\",\"parsim\":\"⫳\",\"parsl\":\"⫽\",\"part\":\"∂\",\"PartialD\":\"∂\",\"Pcy\":\"П\",\"pcy\":\"п\",\"percnt\":\"%\",\"period\":\".\",\"permil\":\"‰\",\"perp\":\"⊥\",\"pertenk\":\"‱\",\"Pfr\":\"ð”“\",\"pfr\":\"ð”\",\"Phi\":\"Φ\",\"phi\":\"φ\",\"phiv\":\"Ï•\",\"phmmat\":\"ℳ\",\"phone\":\"☎\",\"Pi\":\"Î \",\"pi\":\"Ï€\",\"pitchfork\":\"â‹”\",\"piv\":\"Ï–\",\"planck\":\"â„\",\"planckh\":\"ℎ\",\"plankv\":\"â„\",\"plusacir\":\"⨣\",\"plusb\":\"⊞\",\"pluscir\":\"⨢\",\"plus\":\"+\",\"plusdo\":\"∔\",\"plusdu\":\"⨥\",\"pluse\":\"⩲\",\"PlusMinus\":\"±\",\"plusmn\":\"±\",\"plussim\":\"⨦\",\"plustwo\":\"⨧\",\"pm\":\"±\",\"Poincareplane\":\"ℌ\",\"pointint\":\"⨕\",\"popf\":\"ð•¡\",\"Popf\":\"â„™\",\"pound\":\"£\",\"prap\":\"⪷\",\"Pr\":\"⪻\",\"pr\":\"≺\",\"prcue\":\"≼\",\"precapprox\":\"⪷\",\"prec\":\"≺\",\"preccurlyeq\":\"≼\",\"Precedes\":\"≺\",\"PrecedesEqual\":\"⪯\",\"PrecedesSlantEqual\":\"≼\",\"PrecedesTilde\":\"≾\",\"preceq\":\"⪯\",\"precnapprox\":\"⪹\",\"precneqq\":\"⪵\",\"precnsim\":\"⋨\",\"pre\":\"⪯\",\"prE\":\"⪳\",\"precsim\":\"≾\",\"prime\":\"′\",\"Prime\":\"″\",\"primes\":\"â„™\",\"prnap\":\"⪹\",\"prnE\":\"⪵\",\"prnsim\":\"⋨\",\"prod\":\"âˆ\",\"Product\":\"âˆ\",\"profalar\":\"⌮\",\"profline\":\"⌒\",\"profsurf\":\"⌓\",\"prop\":\"âˆ\",\"Proportional\":\"âˆ\",\"Proportion\":\"∷\",\"propto\":\"âˆ\",\"prsim\":\"≾\",\"prurel\":\"⊰\",\"Pscr\":\"ð’«\",\"pscr\":\"ð“…\",\"Psi\":\"Ψ\",\"psi\":\"ψ\",\"puncsp\":\" \",\"Qfr\":\"ð””\",\"qfr\":\"ð”®\",\"qint\":\"⨌\",\"qopf\":\"ð•¢\",\"Qopf\":\"ℚ\",\"qprime\":\"â—\",\"Qscr\":\"ð’¬\",\"qscr\":\"ð“†\",\"quaternions\":\"â„\",\"quatint\":\"⨖\",\"quest\":\"?\",\"questeq\":\"≟\",\"quot\":\"\\\"\",\"QUOT\":\"\\\"\",\"rAarr\":\"⇛\",\"race\":\"∽̱\",\"Racute\":\"Å”\",\"racute\":\"Å•\",\"radic\":\"√\",\"raemptyv\":\"⦳\",\"rang\":\"⟩\",\"Rang\":\"⟫\",\"rangd\":\"⦒\",\"range\":\"⦥\",\"rangle\":\"⟩\",\"raquo\":\"»\",\"rarrap\":\"⥵\",\"rarrb\":\"⇥\",\"rarrbfs\":\"⤠\",\"rarrc\":\"⤳\",\"rarr\":\"→\",\"Rarr\":\"↠\",\"rArr\":\"⇒\",\"rarrfs\":\"⤞\",\"rarrhk\":\"↪\",\"rarrlp\":\"↬\",\"rarrpl\":\"⥅\",\"rarrsim\":\"⥴\",\"Rarrtl\":\"⤖\",\"rarrtl\":\"↣\",\"rarrw\":\"â†\",\"ratail\":\"⤚\",\"rAtail\":\"⤜\",\"ratio\":\"∶\",\"rationals\":\"ℚ\",\"rbarr\":\"â¤\",\"rBarr\":\"â¤\",\"RBarr\":\"â¤\",\"rbbrk\":\"â³\",\"rbrace\":\"}\",\"rbrack\":\"]\",\"rbrke\":\"⦌\",\"rbrksld\":\"⦎\",\"rbrkslu\":\"â¦\",\"Rcaron\":\"Ř\",\"rcaron\":\"Å™\",\"Rcedil\":\"Å–\",\"rcedil\":\"Å—\",\"rceil\":\"⌉\",\"rcub\":\"}\",\"Rcy\":\"Ð \",\"rcy\":\"Ñ€\",\"rdca\":\"⤷\",\"rdldhar\":\"⥩\",\"rdquo\":\"â€\",\"rdquor\":\"â€\",\"rdsh\":\"↳\",\"real\":\"ℜ\",\"realine\":\"â„›\",\"realpart\":\"ℜ\",\"reals\":\"â„\",\"Re\":\"ℜ\",\"rect\":\"â–\",\"reg\":\"®\",\"REG\":\"®\",\"ReverseElement\":\"∋\",\"ReverseEquilibrium\":\"⇋\",\"ReverseUpEquilibrium\":\"⥯\",\"rfisht\":\"⥽\",\"rfloor\":\"⌋\",\"rfr\":\"ð”¯\",\"Rfr\":\"ℜ\",\"rHar\":\"⥤\",\"rhard\":\"â‡\",\"rharu\":\"⇀\",\"rharul\":\"⥬\",\"Rho\":\"Ρ\",\"rho\":\"Ï\",\"rhov\":\"ϱ\",\"RightAngleBracket\":\"⟩\",\"RightArrowBar\":\"⇥\",\"rightarrow\":\"→\",\"RightArrow\":\"→\",\"Rightarrow\":\"⇒\",\"RightArrowLeftArrow\":\"⇄\",\"rightarrowtail\":\"↣\",\"RightCeiling\":\"⌉\",\"RightDoubleBracket\":\"⟧\",\"RightDownTeeVector\":\"â¥\",\"RightDownVectorBar\":\"⥕\",\"RightDownVector\":\"⇂\",\"RightFloor\":\"⌋\",\"rightharpoondown\":\"â‡\",\"rightharpoonup\":\"⇀\",\"rightleftarrows\":\"⇄\",\"rightleftharpoons\":\"⇌\",\"rightrightarrows\":\"⇉\",\"rightsquigarrow\":\"â†\",\"RightTeeArrow\":\"↦\",\"RightTee\":\"⊢\",\"RightTeeVector\":\"⥛\",\"rightthreetimes\":\"⋌\",\"RightTriangleBar\":\"â§\",\"RightTriangle\":\"⊳\",\"RightTriangleEqual\":\"⊵\",\"RightUpDownVector\":\"â¥\",\"RightUpTeeVector\":\"⥜\",\"RightUpVectorBar\":\"⥔\",\"RightUpVector\":\"↾\",\"RightVectorBar\":\"⥓\",\"RightVector\":\"⇀\",\"ring\":\"Ëš\",\"risingdotseq\":\"≓\",\"rlarr\":\"⇄\",\"rlhar\":\"⇌\",\"rlm\":\"â€\",\"rmoustache\":\"⎱\",\"rmoust\":\"⎱\",\"rnmid\":\"â«®\",\"roang\":\"âŸ\",\"roarr\":\"⇾\",\"robrk\":\"⟧\",\"ropar\":\"⦆\",\"ropf\":\"ð•£\",\"Ropf\":\"â„\",\"roplus\":\"⨮\",\"rotimes\":\"⨵\",\"RoundImplies\":\"⥰\",\"rpar\":\")\",\"rpargt\":\"⦔\",\"rppolint\":\"⨒\",\"rrarr\":\"⇉\",\"Rrightarrow\":\"⇛\",\"rsaquo\":\"›\",\"rscr\":\"ð“‡\",\"Rscr\":\"â„›\",\"rsh\":\"↱\",\"Rsh\":\"↱\",\"rsqb\":\"]\",\"rsquo\":\"’\",\"rsquor\":\"’\",\"rthree\":\"⋌\",\"rtimes\":\"⋊\",\"rtri\":\"â–¹\",\"rtrie\":\"⊵\",\"rtrif\":\"â–¸\",\"rtriltri\":\"â§Ž\",\"RuleDelayed\":\"â§´\",\"ruluhar\":\"⥨\",\"rx\":\"℞\",\"Sacute\":\"Åš\",\"sacute\":\"Å›\",\"sbquo\":\"‚\",\"scap\":\"⪸\",\"Scaron\":\"Å \",\"scaron\":\"Å¡\",\"Sc\":\"⪼\",\"sc\":\"≻\",\"sccue\":\"≽\",\"sce\":\"⪰\",\"scE\":\"⪴\",\"Scedil\":\"Åž\",\"scedil\":\"ÅŸ\",\"Scirc\":\"Åœ\",\"scirc\":\"Å\",\"scnap\":\"⪺\",\"scnE\":\"⪶\",\"scnsim\":\"â‹©\",\"scpolint\":\"⨓\",\"scsim\":\"≿\",\"Scy\":\"С\",\"scy\":\"Ñ\",\"sdotb\":\"⊡\",\"sdot\":\"â‹…\",\"sdote\":\"⩦\",\"searhk\":\"⤥\",\"searr\":\"↘\",\"seArr\":\"⇘\",\"searrow\":\"↘\",\"sect\":\"§\",\"semi\":\";\",\"seswar\":\"⤩\",\"setminus\":\"∖\",\"setmn\":\"∖\",\"sext\":\"✶\",\"Sfr\":\"ð”–\",\"sfr\":\"ð”°\",\"sfrown\":\"⌢\",\"sharp\":\"♯\",\"SHCHcy\":\"Щ\",\"shchcy\":\"щ\",\"SHcy\":\"Ш\",\"shcy\":\"ш\",\"ShortDownArrow\":\"↓\",\"ShortLeftArrow\":\"â†\",\"shortmid\":\"∣\",\"shortparallel\":\"∥\",\"ShortRightArrow\":\"→\",\"ShortUpArrow\":\"↑\",\"shy\":\"Â\",\"Sigma\":\"Σ\",\"sigma\":\"σ\",\"sigmaf\":\"Ï‚\",\"sigmav\":\"Ï‚\",\"sim\":\"∼\",\"simdot\":\"⩪\",\"sime\":\"≃\",\"simeq\":\"≃\",\"simg\":\"⪞\",\"simgE\":\"⪠\",\"siml\":\"âª\",\"simlE\":\"⪟\",\"simne\":\"≆\",\"simplus\":\"⨤\",\"simrarr\":\"⥲\",\"slarr\":\"â†\",\"SmallCircle\":\"∘\",\"smallsetminus\":\"∖\",\"smashp\":\"⨳\",\"smeparsl\":\"⧤\",\"smid\":\"∣\",\"smile\":\"⌣\",\"smt\":\"⪪\",\"smte\":\"⪬\",\"smtes\":\"⪬︀\",\"SOFTcy\":\"Ь\",\"softcy\":\"ÑŒ\",\"solbar\":\"⌿\",\"solb\":\"â§„\",\"sol\":\"/\",\"Sopf\":\"ð•Š\",\"sopf\":\"ð•¤\",\"spades\":\"â™ \",\"spadesuit\":\"â™ \",\"spar\":\"∥\",\"sqcap\":\"⊓\",\"sqcaps\":\"⊓︀\",\"sqcup\":\"⊔\",\"sqcups\":\"⊔︀\",\"Sqrt\":\"√\",\"sqsub\":\"âŠ\",\"sqsube\":\"⊑\",\"sqsubset\":\"âŠ\",\"sqsubseteq\":\"⊑\",\"sqsup\":\"âŠ\",\"sqsupe\":\"⊒\",\"sqsupset\":\"âŠ\",\"sqsupseteq\":\"⊒\",\"square\":\"â–¡\",\"Square\":\"â–¡\",\"SquareIntersection\":\"⊓\",\"SquareSubset\":\"âŠ\",\"SquareSubsetEqual\":\"⊑\",\"SquareSuperset\":\"âŠ\",\"SquareSupersetEqual\":\"⊒\",\"SquareUnion\":\"⊔\",\"squarf\":\"â–ª\",\"squ\":\"â–¡\",\"squf\":\"â–ª\",\"srarr\":\"→\",\"Sscr\":\"ð’®\",\"sscr\":\"ð“ˆ\",\"ssetmn\":\"∖\",\"ssmile\":\"⌣\",\"sstarf\":\"⋆\",\"Star\":\"⋆\",\"star\":\"☆\",\"starf\":\"★\",\"straightepsilon\":\"ϵ\",\"straightphi\":\"Ï•\",\"strns\":\"¯\",\"sub\":\"⊂\",\"Sub\":\"â‹\",\"subdot\":\"⪽\",\"subE\":\"â«…\",\"sube\":\"⊆\",\"subedot\":\"⫃\",\"submult\":\"â«\",\"subnE\":\"â«‹\",\"subne\":\"⊊\",\"subplus\":\"⪿\",\"subrarr\":\"⥹\",\"subset\":\"⊂\",\"Subset\":\"â‹\",\"subseteq\":\"⊆\",\"subseteqq\":\"â«…\",\"SubsetEqual\":\"⊆\",\"subsetneq\":\"⊊\",\"subsetneqq\":\"â«‹\",\"subsim\":\"⫇\",\"subsub\":\"â«•\",\"subsup\":\"â«“\",\"succapprox\":\"⪸\",\"succ\":\"≻\",\"succcurlyeq\":\"≽\",\"Succeeds\":\"≻\",\"SucceedsEqual\":\"⪰\",\"SucceedsSlantEqual\":\"≽\",\"SucceedsTilde\":\"≿\",\"succeq\":\"⪰\",\"succnapprox\":\"⪺\",\"succneqq\":\"⪶\",\"succnsim\":\"â‹©\",\"succsim\":\"≿\",\"SuchThat\":\"∋\",\"sum\":\"∑\",\"Sum\":\"∑\",\"sung\":\"♪\",\"sup1\":\"¹\",\"sup2\":\"²\",\"sup3\":\"³\",\"sup\":\"⊃\",\"Sup\":\"â‹‘\",\"supdot\":\"⪾\",\"supdsub\":\"⫘\",\"supE\":\"⫆\",\"supe\":\"⊇\",\"supedot\":\"â«„\",\"Superset\":\"⊃\",\"SupersetEqual\":\"⊇\",\"suphsol\":\"⟉\",\"suphsub\":\"â«—\",\"suplarr\":\"⥻\",\"supmult\":\"â«‚\",\"supnE\":\"⫌\",\"supne\":\"⊋\",\"supplus\":\"â«€\",\"supset\":\"⊃\",\"Supset\":\"â‹‘\",\"supseteq\":\"⊇\",\"supseteqq\":\"⫆\",\"supsetneq\":\"⊋\",\"supsetneqq\":\"⫌\",\"supsim\":\"⫈\",\"supsub\":\"â«”\",\"supsup\":\"â«–\",\"swarhk\":\"⤦\",\"swarr\":\"↙\",\"swArr\":\"⇙\",\"swarrow\":\"↙\",\"swnwar\":\"⤪\",\"szlig\":\"ß\",\"Tab\":\"\\t\",\"target\":\"⌖\",\"Tau\":\"Τ\",\"tau\":\"Ï„\",\"tbrk\":\"⎴\",\"Tcaron\":\"Ť\",\"tcaron\":\"Å¥\",\"Tcedil\":\"Å¢\",\"tcedil\":\"Å£\",\"Tcy\":\"Т\",\"tcy\":\"Ñ‚\",\"tdot\":\"⃛\",\"telrec\":\"⌕\",\"Tfr\":\"ð”—\",\"tfr\":\"ð”±\",\"there4\":\"∴\",\"therefore\":\"∴\",\"Therefore\":\"∴\",\"Theta\":\"Θ\",\"theta\":\"θ\",\"thetasym\":\"Ï‘\",\"thetav\":\"Ï‘\",\"thickapprox\":\"≈\",\"thicksim\":\"∼\",\"ThickSpace\":\"âŸâ€Š\",\"ThinSpace\":\" \",\"thinsp\":\" \",\"thkap\":\"≈\",\"thksim\":\"∼\",\"THORN\":\"Þ\",\"thorn\":\"þ\",\"tilde\":\"Ëœ\",\"Tilde\":\"∼\",\"TildeEqual\":\"≃\",\"TildeFullEqual\":\"≅\",\"TildeTilde\":\"≈\",\"timesbar\":\"⨱\",\"timesb\":\"⊠\",\"times\":\"×\",\"timesd\":\"⨰\",\"tint\":\"âˆ\",\"toea\":\"⤨\",\"topbot\":\"⌶\",\"topcir\":\"⫱\",\"top\":\"⊤\",\"Topf\":\"ð•‹\",\"topf\":\"ð•¥\",\"topfork\":\"⫚\",\"tosa\":\"⤩\",\"tprime\":\"‴\",\"trade\":\"â„¢\",\"TRADE\":\"â„¢\",\"triangle\":\"â–µ\",\"triangledown\":\"â–¿\",\"triangleleft\":\"â—ƒ\",\"trianglelefteq\":\"⊴\",\"triangleq\":\"≜\",\"triangleright\":\"â–¹\",\"trianglerighteq\":\"⊵\",\"tridot\":\"â—¬\",\"trie\":\"≜\",\"triminus\":\"⨺\",\"TripleDot\":\"⃛\",\"triplus\":\"⨹\",\"trisb\":\"â§\",\"tritime\":\"⨻\",\"trpezium\":\"â¢\",\"Tscr\":\"ð’¯\",\"tscr\":\"ð“‰\",\"TScy\":\"Ц\",\"tscy\":\"ц\",\"TSHcy\":\"Ћ\",\"tshcy\":\"Ñ›\",\"Tstrok\":\"Ŧ\",\"tstrok\":\"ŧ\",\"twixt\":\"≬\",\"twoheadleftarrow\":\"↞\",\"twoheadrightarrow\":\"↠\",\"Uacute\":\"Ú\",\"uacute\":\"ú\",\"uarr\":\"↑\",\"Uarr\":\"↟\",\"uArr\":\"⇑\",\"Uarrocir\":\"⥉\",\"Ubrcy\":\"ÐŽ\",\"ubrcy\":\"Ñž\",\"Ubreve\":\"Ŭ\",\"ubreve\":\"Å\",\"Ucirc\":\"Û\",\"ucirc\":\"û\",\"Ucy\":\"У\",\"ucy\":\"у\",\"udarr\":\"⇅\",\"Udblac\":\"Ű\",\"udblac\":\"ű\",\"udhar\":\"⥮\",\"ufisht\":\"⥾\",\"Ufr\":\"ð”˜\",\"ufr\":\"ð”²\",\"Ugrave\":\"Ù\",\"ugrave\":\"ù\",\"uHar\":\"⥣\",\"uharl\":\"↿\",\"uharr\":\"↾\",\"uhblk\":\"â–€\",\"ulcorn\":\"⌜\",\"ulcorner\":\"⌜\",\"ulcrop\":\"âŒ\",\"ultri\":\"â—¸\",\"Umacr\":\"Ū\",\"umacr\":\"Å«\",\"uml\":\"¨\",\"UnderBar\":\"_\",\"UnderBrace\":\"âŸ\",\"UnderBracket\":\"⎵\",\"UnderParenthesis\":\"â\",\"Union\":\"⋃\",\"UnionPlus\":\"⊎\",\"Uogon\":\"Ų\",\"uogon\":\"ų\",\"Uopf\":\"ð•Œ\",\"uopf\":\"ð•¦\",\"UpArrowBar\":\"⤒\",\"uparrow\":\"↑\",\"UpArrow\":\"↑\",\"Uparrow\":\"⇑\",\"UpArrowDownArrow\":\"⇅\",\"updownarrow\":\"↕\",\"UpDownArrow\":\"↕\",\"Updownarrow\":\"⇕\",\"UpEquilibrium\":\"⥮\",\"upharpoonleft\":\"↿\",\"upharpoonright\":\"↾\",\"uplus\":\"⊎\",\"UpperLeftArrow\":\"↖\",\"UpperRightArrow\":\"↗\",\"upsi\":\"Ï…\",\"Upsi\":\"Ï’\",\"upsih\":\"Ï’\",\"Upsilon\":\"Î¥\",\"upsilon\":\"Ï…\",\"UpTeeArrow\":\"↥\",\"UpTee\":\"⊥\",\"upuparrows\":\"⇈\",\"urcorn\":\"âŒ\",\"urcorner\":\"âŒ\",\"urcrop\":\"⌎\",\"Uring\":\"Å®\",\"uring\":\"ů\",\"urtri\":\"â—¹\",\"Uscr\":\"ð’°\",\"uscr\":\"ð“Š\",\"utdot\":\"â‹°\",\"Utilde\":\"Ũ\",\"utilde\":\"Å©\",\"utri\":\"â–µ\",\"utrif\":\"â–´\",\"uuarr\":\"⇈\",\"Uuml\":\"Ü\",\"uuml\":\"ü\",\"uwangle\":\"⦧\",\"vangrt\":\"⦜\",\"varepsilon\":\"ϵ\",\"varkappa\":\"ϰ\",\"varnothing\":\"∅\",\"varphi\":\"Ï•\",\"varpi\":\"Ï–\",\"varpropto\":\"âˆ\",\"varr\":\"↕\",\"vArr\":\"⇕\",\"varrho\":\"ϱ\",\"varsigma\":\"Ï‚\",\"varsubsetneq\":\"⊊︀\",\"varsubsetneqq\":\"⫋︀\",\"varsupsetneq\":\"⊋︀\",\"varsupsetneqq\":\"⫌︀\",\"vartheta\":\"Ï‘\",\"vartriangleleft\":\"⊲\",\"vartriangleright\":\"⊳\",\"vBar\":\"⫨\",\"Vbar\":\"â««\",\"vBarv\":\"â«©\",\"Vcy\":\"Ð’\",\"vcy\":\"в\",\"vdash\":\"⊢\",\"vDash\":\"⊨\",\"Vdash\":\"⊩\",\"VDash\":\"⊫\",\"Vdashl\":\"⫦\",\"veebar\":\"⊻\",\"vee\":\"∨\",\"Vee\":\"â‹\",\"veeeq\":\"≚\",\"vellip\":\"â‹®\",\"verbar\":\"|\",\"Verbar\":\"‖\",\"vert\":\"|\",\"Vert\":\"‖\",\"VerticalBar\":\"∣\",\"VerticalLine\":\"|\",\"VerticalSeparator\":\"â˜\",\"VerticalTilde\":\"≀\",\"VeryThinSpace\":\" \",\"Vfr\":\"ð”™\",\"vfr\":\"ð”³\",\"vltri\":\"⊲\",\"vnsub\":\"⊂⃒\",\"vnsup\":\"⊃⃒\",\"Vopf\":\"ð•\",\"vopf\":\"ð•§\",\"vprop\":\"âˆ\",\"vrtri\":\"⊳\",\"Vscr\":\"ð’±\",\"vscr\":\"ð“‹\",\"vsubnE\":\"⫋︀\",\"vsubne\":\"⊊︀\",\"vsupnE\":\"⫌︀\",\"vsupne\":\"⊋︀\",\"Vvdash\":\"⊪\",\"vzigzag\":\"⦚\",\"Wcirc\":\"Å´\",\"wcirc\":\"ŵ\",\"wedbar\":\"⩟\",\"wedge\":\"∧\",\"Wedge\":\"â‹€\",\"wedgeq\":\"≙\",\"weierp\":\"℘\",\"Wfr\":\"ð”š\",\"wfr\":\"ð”´\",\"Wopf\":\"ð•Ž\",\"wopf\":\"ð•¨\",\"wp\":\"℘\",\"wr\":\"≀\",\"wreath\":\"≀\",\"Wscr\":\"ð’²\",\"wscr\":\"ð“Œ\",\"xcap\":\"â‹‚\",\"xcirc\":\"â—¯\",\"xcup\":\"⋃\",\"xdtri\":\"â–½\",\"Xfr\":\"ð”›\",\"xfr\":\"ð”µ\",\"xharr\":\"⟷\",\"xhArr\":\"⟺\",\"Xi\":\"Ξ\",\"xi\":\"ξ\",\"xlarr\":\"⟵\",\"xlArr\":\"⟸\",\"xmap\":\"⟼\",\"xnis\":\"â‹»\",\"xodot\":\"⨀\",\"Xopf\":\"ð•\",\"xopf\":\"ð•©\",\"xoplus\":\"â¨\",\"xotime\":\"⨂\",\"xrarr\":\"⟶\",\"xrArr\":\"⟹\",\"Xscr\":\"ð’³\",\"xscr\":\"ð“\",\"xsqcup\":\"⨆\",\"xuplus\":\"⨄\",\"xutri\":\"â–³\",\"xvee\":\"â‹\",\"xwedge\":\"â‹€\",\"Yacute\":\"Ã\",\"yacute\":\"ý\",\"YAcy\":\"Я\",\"yacy\":\"Ñ\",\"Ycirc\":\"Ŷ\",\"ycirc\":\"Å·\",\"Ycy\":\"Ы\",\"ycy\":\"Ñ‹\",\"yen\":\"Â¥\",\"Yfr\":\"ð”œ\",\"yfr\":\"ð”¶\",\"YIcy\":\"Ї\",\"yicy\":\"Ñ—\",\"Yopf\":\"ð•\",\"yopf\":\"ð•ª\",\"Yscr\":\"ð’´\",\"yscr\":\"ð“Ž\",\"YUcy\":\"Ю\",\"yucy\":\"ÑŽ\",\"yuml\":\"ÿ\",\"Yuml\":\"Ÿ\",\"Zacute\":\"Ź\",\"zacute\":\"ź\",\"Zcaron\":\"Ž\",\"zcaron\":\"ž\",\"Zcy\":\"З\",\"zcy\":\"з\",\"Zdot\":\"Å»\",\"zdot\":\"ż\",\"zeetrf\":\"ℨ\",\"ZeroWidthSpace\":\"​\",\"Zeta\":\"Ζ\",\"zeta\":\"ζ\",\"zfr\":\"ð”·\",\"Zfr\":\"ℨ\",\"ZHcy\":\"Ж\",\"zhcy\":\"ж\",\"zigrarr\":\"â‡\",\"zopf\":\"ð•«\",\"Zopf\":\"ℤ\",\"Zscr\":\"ð’µ\",\"zscr\":\"ð“\",\"zwj\":\"â€\",\"zwnj\":\"‌\"}"); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.compile = exports.parse = void 0; -var parse_1 = __webpack_require__(318); -Object.defineProperty(exports, "parse", { enumerable: true, get: function () { return parse_1.parse; } }); -var compile_1 = __webpack_require__(319); -Object.defineProperty(exports, "compile", { enumerable: true, get: function () { return compile_1.compile; } }); -/** - * Parses and compiles a formula to a highly optimized function. - * Combination of `parse` and `compile`. - * - * If the formula doesn't match any elements, - * it returns [`boolbase`](https://github.com/fb55/boolbase)'s `falseFunc`. - * Otherwise, a function accepting an _index_ is returned, which returns - * whether or not the passed _index_ matches the formula. - * - * Note: The nth-rule starts counting at `1`, the returned function at `0`. - * - * @param formula The formula to compile. - * @example - * const check = nthCheck("2n+3"); - * - * check(0); // `false` - * check(1); // `false` - * check(2); // `true` - * check(3); // `false` - * check(4); // `true` - * check(5); // `false` - * check(6); // `true` - */ -function nthCheck(formula) { - return compile_1.compile(parse_1.parse(formula)); -} -exports.default = nthCheck; +/***/ }), +/* 301 */ +/***/ (function(module) { +module.exports = JSON.parse("{\"Aacute\":\"Ã\",\"aacute\":\"á\",\"Acirc\":\"Â\",\"acirc\":\"â\",\"acute\":\"´\",\"AElig\":\"Æ\",\"aelig\":\"æ\",\"Agrave\":\"À\",\"agrave\":\"à \",\"amp\":\"&\",\"AMP\":\"&\",\"Aring\":\"Ã…\",\"aring\":\"Ã¥\",\"Atilde\":\"Ã\",\"atilde\":\"ã\",\"Auml\":\"Ä\",\"auml\":\"ä\",\"brvbar\":\"¦\",\"Ccedil\":\"Ç\",\"ccedil\":\"ç\",\"cedil\":\"¸\",\"cent\":\"¢\",\"copy\":\"©\",\"COPY\":\"©\",\"curren\":\"¤\",\"deg\":\"°\",\"divide\":\"÷\",\"Eacute\":\"É\",\"eacute\":\"é\",\"Ecirc\":\"Ê\",\"ecirc\":\"ê\",\"Egrave\":\"È\",\"egrave\":\"è\",\"ETH\":\"Ã\",\"eth\":\"ð\",\"Euml\":\"Ë\",\"euml\":\"ë\",\"frac12\":\"½\",\"frac14\":\"¼\",\"frac34\":\"¾\",\"gt\":\">\",\"GT\":\">\",\"Iacute\":\"Ã\",\"iacute\":\"Ã\",\"Icirc\":\"ÃŽ\",\"icirc\":\"î\",\"iexcl\":\"¡\",\"Igrave\":\"ÃŒ\",\"igrave\":\"ì\",\"iquest\":\"¿\",\"Iuml\":\"Ã\",\"iuml\":\"ï\",\"laquo\":\"«\",\"lt\":\"<\",\"LT\":\"<\",\"macr\":\"¯\",\"micro\":\"µ\",\"middot\":\"·\",\"nbsp\":\" \",\"not\":\"¬\",\"Ntilde\":\"Ñ\",\"ntilde\":\"ñ\",\"Oacute\":\"Ó\",\"oacute\":\"ó\",\"Ocirc\":\"Ô\",\"ocirc\":\"ô\",\"Ograve\":\"Ã’\",\"ograve\":\"ò\",\"ordf\":\"ª\",\"ordm\":\"º\",\"Oslash\":\"Ø\",\"oslash\":\"ø\",\"Otilde\":\"Õ\",\"otilde\":\"õ\",\"Ouml\":\"Ö\",\"ouml\":\"ö\",\"para\":\"¶\",\"plusmn\":\"±\",\"pound\":\"£\",\"quot\":\"\\\"\",\"QUOT\":\"\\\"\",\"raquo\":\"»\",\"reg\":\"®\",\"REG\":\"®\",\"sect\":\"§\",\"shy\":\"Â\",\"sup1\":\"¹\",\"sup2\":\"²\",\"sup3\":\"³\",\"szlig\":\"ß\",\"THORN\":\"Þ\",\"thorn\":\"þ\",\"times\":\"×\",\"Uacute\":\"Ú\",\"uacute\":\"ú\",\"Ucirc\":\"Û\",\"ucirc\":\"û\",\"Ugrave\":\"Ù\",\"ugrave\":\"ù\",\"uml\":\"¨\",\"Uuml\":\"Ü\",\"uuml\":\"ü\",\"Yacute\":\"Ã\",\"yacute\":\"ý\",\"yen\":\"Â¥\",\"yuml\":\"ÿ\"}"); /***/ }), -/* 318 */ +/* 302 */ +/***/ (function(module) { + +module.exports = JSON.parse("{\"amp\":\"&\",\"apos\":\"'\",\"gt\":\">\",\"lt\":\"<\",\"quot\":\"\\\"\"}"); + +/***/ }), +/* 303 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -// Following http://www.w3.org/TR/css3-selectors/#nth-child-pseudo +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.parse = void 0; -// [ ['-'|'+']? INTEGER? {N} [ S* ['-'|'+'] S* INTEGER ]? -var RE_NTH_ELEMENT = /^([+-]?\d*n)?\s*(?:([+-]?)\s*(\d+))?$/; -/** - * Parses an expression. - * - * @throws An `Error` if parsing fails. - * @returns An array containing the integer step size and the integer offset of the nth rule. - * @example nthCheck.parse("2n+3"); // returns [2, 3] - */ -function parse(formula) { - formula = formula.trim().toLowerCase(); - if (formula === "even") { - return [2, 0]; - } - else if (formula === "odd") { - return [2, 1]; - } - var parsed = formula.match(RE_NTH_ELEMENT); - if (!parsed) { - throw new Error("n-th rule couldn't be parsed ('" + formula + "')"); - } - var a; - if (parsed[1]) { - a = parseInt(parsed[1], 10); - if (isNaN(a)) { - a = parsed[1].startsWith("-") ? -1 : 1; +var decode_json_1 = __importDefault(__webpack_require__(304)); +// Adapted from https://github.com/mathiasbynens/he/blob/master/src/he.js#L94-L119 +var fromCodePoint = +// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition +String.fromCodePoint || + function (codePoint) { + var output = ""; + if (codePoint > 0xffff) { + codePoint -= 0x10000; + output += String.fromCharCode(((codePoint >>> 10) & 0x3ff) | 0xd800); + codePoint = 0xdc00 | (codePoint & 0x3ff); } + output += String.fromCharCode(codePoint); + return output; + }; +function decodeCodePoint(codePoint) { + if ((codePoint >= 0xd800 && codePoint <= 0xdfff) || codePoint > 0x10ffff) { + return "\uFFFD"; } - else - a = 0; - var b = (parsed[2] === "-" ? -1 : 1) * - (parsed[3] ? parseInt(parsed[3], 10) : 0); - return [a, b]; + if (codePoint in decode_json_1.default) { + codePoint = decode_json_1.default[codePoint]; + } + return fromCodePoint(codePoint); } -exports.parse = parse; +exports.default = decodeCodePoint; /***/ }), -/* 319 */ +/* 304 */ +/***/ (function(module) { + +module.exports = JSON.parse("{\"0\":65533,\"128\":8364,\"130\":8218,\"131\":402,\"132\":8222,\"133\":8230,\"134\":8224,\"135\":8225,\"136\":710,\"137\":8240,\"138\":352,\"139\":8249,\"140\":338,\"142\":381,\"145\":8216,\"146\":8217,\"147\":8220,\"148\":8221,\"149\":8226,\"150\":8211,\"151\":8212,\"152\":732,\"153\":8482,\"154\":353,\"155\":8250,\"156\":339,\"158\":382,\"159\":376}"); + +/***/ }), +/* 305 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.compile = void 0; -var boolbase_1 = __webpack_require__(309); +exports.escapeUTF8 = exports.escape = exports.encodeNonAsciiHTML = exports.encodeHTML = exports.encodeXML = void 0; +var xml_json_1 = __importDefault(__webpack_require__(302)); +var inverseXML = getInverseObj(xml_json_1.default); +var xmlReplacer = getInverseReplacer(inverseXML); /** - * Returns a function that checks if an elements index matches the given rule - * highly optimized to return the fastest solution. + * Encodes all non-ASCII characters, as well as characters not valid in XML + * documents using XML entities. * - * @param parsed A tuple [a, b], as returned by `parse`. - * @returns A highly optimized function that returns whether an index matches the nth-check. - * @example - * const check = nthCheck.compile([2, 3]); + * If a character has no equivalent entity, a + * numeric hexadecimal reference (eg. `ü`) will be used. + */ +exports.encodeXML = getASCIIEncoder(inverseXML); +var entities_json_1 = __importDefault(__webpack_require__(300)); +var inverseHTML = getInverseObj(entities_json_1.default); +var htmlReplacer = getInverseReplacer(inverseHTML); +/** + * Encodes all entities and non-ASCII characters in the input. * - * check(0); // `false` - * check(1); // `false` - * check(2); // `true` - * check(3); // `false` - * check(4); // `true` - * check(5); // `false` - * check(6); // `true` + * This includes characters that are valid ASCII characters in HTML documents. + * For example `#` will be encoded as `#`. To get a more compact output, + * consider using the `encodeNonAsciiHTML` function. + * + * If a character has no equivalent entity, a + * numeric hexadecimal reference (eg. `ü`) will be used. */ -function compile(parsed) { - var a = parsed[0]; - // Subtract 1 from `b`, to convert from one- to zero-indexed. - var b = parsed[1] - 1; - /* - * When `b <= 0`, `a * n` won't be lead to any matches for `a < 0`. - * Besides, the specification states that no elements are - * matched when `a` and `b` are 0. - * - * `b < 0` here as we subtracted 1 from `b` above. - */ - if (b < 0 && a <= 0) - return boolbase_1.falseFunc; - // When `a` is in the range -1..1, it matches any element (so only `b` is checked). - if (a === -1) - return function (index) { return index <= b; }; - if (a === 0) - return function (index) { return index === b; }; - // When `b <= 0` and `a === 1`, they match any element. - if (a === 1) - return b < 0 ? boolbase_1.trueFunc : function (index) { return index >= b; }; - /* - * Otherwise, modulo can be used to check if there is a match. - * - * Modulo doesn't care about the sign, so let's use `a`s absolute value. - */ - var absA = Math.abs(a); - // Get `b mod a`, + a if this is negative. - var bMod = ((b % absA) + absA) % absA; - return a > 1 - ? function (index) { return index >= b && index % absA === bMod; } - : function (index) { return index <= b && index % absA === bMod; }; +exports.encodeHTML = getInverse(inverseHTML, htmlReplacer); +/** + * Encodes all non-ASCII characters, as well as characters not valid in HTML + * documents using HTML entities. + * + * If a character has no equivalent entity, a + * numeric hexadecimal reference (eg. `ü`) will be used. + */ +exports.encodeNonAsciiHTML = getASCIIEncoder(inverseHTML); +function getInverseObj(obj) { + return Object.keys(obj) + .sort() + .reduce(function (inverse, name) { + inverse[obj[name]] = "&" + name + ";"; + return inverse; + }, {}); } -exports.compile = compile; - - -/***/ }), -/* 320 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.verifyPseudoArgs = exports.pseudos = void 0; -// While filters are precompiled, pseudos get called when they are needed -exports.pseudos = { - empty: function (elem, _a) { - var adapter = _a.adapter; - return !adapter.getChildren(elem).some(function (elem) { - // FIXME: `getText` call is potentially expensive. - return adapter.isTag(elem) || adapter.getText(elem) !== ""; - }); - }, - "first-child": function (elem, _a) { - var adapter = _a.adapter, equals = _a.equals; - var firstChild = adapter - .getSiblings(elem) - .find(function (elem) { return adapter.isTag(elem); }); - return firstChild != null && equals(elem, firstChild); - }, - "last-child": function (elem, _a) { - var adapter = _a.adapter, equals = _a.equals; - var siblings = adapter.getSiblings(elem); - for (var i = siblings.length - 1; i >= 0; i--) { - if (equals(elem, siblings[i])) - return true; - if (adapter.isTag(siblings[i])) - break; - } - return false; - }, - "first-of-type": function (elem, _a) { - var adapter = _a.adapter, equals = _a.equals; - var siblings = adapter.getSiblings(elem); - var elemName = adapter.getName(elem); - for (var i = 0; i < siblings.length; i++) { - var currentSibling = siblings[i]; - if (equals(elem, currentSibling)) - return true; - if (adapter.isTag(currentSibling) && - adapter.getName(currentSibling) === elemName) { - break; - } - } - return false; - }, - "last-of-type": function (elem, _a) { - var adapter = _a.adapter, equals = _a.equals; - var siblings = adapter.getSiblings(elem); - var elemName = adapter.getName(elem); - for (var i = siblings.length - 1; i >= 0; i--) { - var currentSibling = siblings[i]; - if (equals(elem, currentSibling)) - return true; - if (adapter.isTag(currentSibling) && - adapter.getName(currentSibling) === elemName) { - break; - } +function getInverseReplacer(inverse) { + var single = []; + var multiple = []; + for (var _i = 0, _a = Object.keys(inverse); _i < _a.length; _i++) { + var k = _a[_i]; + if (k.length === 1) { + // Add value to single array + single.push("\\" + k); } - return false; - }, - "only-of-type": function (elem, _a) { - var adapter = _a.adapter, equals = _a.equals; - var elemName = adapter.getName(elem); - return adapter - .getSiblings(elem) - .every(function (sibling) { - return equals(elem, sibling) || - !adapter.isTag(sibling) || - adapter.getName(sibling) !== elemName; - }); - }, - "only-child": function (elem, _a) { - var adapter = _a.adapter, equals = _a.equals; - return adapter - .getSiblings(elem) - .every(function (sibling) { return equals(elem, sibling) || !adapter.isTag(sibling); }); - }, -}; -function verifyPseudoArgs(func, name, subselect) { - if (subselect === null) { - if (func.length > 2) { - throw new Error("pseudo-selector :" + name + " requires an argument"); + else { + // Add value to multiple array + multiple.push(k); } } - else if (func.length === 2) { - throw new Error("pseudo-selector :" + name + " doesn't have any arguments"); + // Add ranges to single characters. + single.sort(); + for (var start = 0; start < single.length - 1; start++) { + // Find the end of a run of characters + var end = start; + while (end < single.length - 1 && + single[end].charCodeAt(1) + 1 === single[end + 1].charCodeAt(1)) { + end += 1; + } + var count = 1 + end - start; + // We want to replace at least three characters + if (count < 3) + continue; + single.splice(start, count, single[start] + "-" + single[end]); } + multiple.unshift("[" + single.join("") + "]"); + return new RegExp(multiple.join("|"), "g"); +} +// /[^\0-\x7F]/gu +var reNonASCII = /(?:[\x80-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/g; +var getCodePoint = +// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition +String.prototype.codePointAt != null + ? // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + function (str) { return str.codePointAt(0); } + : // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae + function (c) { + return (c.charCodeAt(0) - 0xd800) * 0x400 + + c.charCodeAt(1) - + 0xdc00 + + 0x10000; + }; +function singleCharReplacer(c) { + return "&#x" + (c.length > 1 ? getCodePoint(c) : c.charCodeAt(0)) + .toString(16) + .toUpperCase() + ";"; +} +function getInverse(inverse, re) { + return function (data) { + return data + .replace(re, function (name) { return inverse[name]; }) + .replace(reNonASCII, singleCharReplacer); + }; +} +var reEscapeChars = new RegExp(xmlReplacer.source + "|" + reNonASCII.source, "g"); +/** + * Encodes all non-ASCII characters, as well as characters not valid in XML + * documents using numeric hexadecimal reference (eg. `ü`). + * + * Have a look at `escapeUTF8` if you want a more concise output at the expense + * of reduced transportability. + * + * @param data String to escape. + */ +function escape(data) { + return data.replace(reEscapeChars, singleCharReplacer); +} +exports.escape = escape; +/** + * Encodes all characters not valid in XML documents using numeric hexadecimal + * reference (eg. `ü`). + * + * Note that the output will be character-set dependent. + * + * @param data String to escape. + */ +function escapeUTF8(data) { + return data.replace(xmlReplacer, singleCharReplacer); +} +exports.escapeUTF8 = escapeUTF8; +function getASCIIEncoder(obj) { + return function (data) { + return data.replace(reEscapeChars, function (c) { return obj[c] || singleCharReplacer(c); }); + }; } -exports.verifyPseudoArgs = verifyPseudoArgs; /***/ }), -/* 321 */ +/* 306 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.aliases = void 0; -/** - * Aliases are pseudos that are expressed as selectors. - */ -exports.aliases = { - // Links - "any-link": ":is(a, area, link)[href]", - link: ":any-link:not(:visited)", - // Forms - // https://html.spec.whatwg.org/multipage/scripting.html#disabled-elements - disabled: ":is(\n :is(button, input, select, textarea, optgroup, option)[disabled],\n optgroup[disabled] > option,\n fieldset[disabled]:not(fieldset[disabled] legend:first-of-type *)\n )", - enabled: ":not(:disabled)", - checked: ":is(:is(input[type=radio], input[type=checkbox])[checked], option:selected)", - required: ":is(input, select, textarea)[required]", - optional: ":is(input, select, textarea):not([required])", - // JQuery extensions - // https://html.spec.whatwg.org/multipage/form-elements.html#concept-option-selectedness - selected: "option:is([selected], select:not([multiple]):not(:has(> option[selected])) > :first-of-type)", - checkbox: "[type=checkbox]", - file: "[type=file]", - password: "[type=password]", - radio: "[type=radio]", - reset: "[type=reset]", - image: "[type=image]", - submit: "[type=submit]", - parent: ":not(:empty)", - header: ":is(h1, h2, h3, h4, h5, h6)", - button: ":is(button, input[type=button])", - input: ":is(input, textarea, select, button)", - text: "input:is(:not([type!='']), [type=text])", -}; +exports.attributeNames = exports.elementNames = void 0; +exports.elementNames = new Map([ + ["altglyph", "altGlyph"], + ["altglyphdef", "altGlyphDef"], + ["altglyphitem", "altGlyphItem"], + ["animatecolor", "animateColor"], + ["animatemotion", "animateMotion"], + ["animatetransform", "animateTransform"], + ["clippath", "clipPath"], + ["feblend", "feBlend"], + ["fecolormatrix", "feColorMatrix"], + ["fecomponenttransfer", "feComponentTransfer"], + ["fecomposite", "feComposite"], + ["feconvolvematrix", "feConvolveMatrix"], + ["fediffuselighting", "feDiffuseLighting"], + ["fedisplacementmap", "feDisplacementMap"], + ["fedistantlight", "feDistantLight"], + ["fedropshadow", "feDropShadow"], + ["feflood", "feFlood"], + ["fefunca", "feFuncA"], + ["fefuncb", "feFuncB"], + ["fefuncg", "feFuncG"], + ["fefuncr", "feFuncR"], + ["fegaussianblur", "feGaussianBlur"], + ["feimage", "feImage"], + ["femerge", "feMerge"], + ["femergenode", "feMergeNode"], + ["femorphology", "feMorphology"], + ["feoffset", "feOffset"], + ["fepointlight", "fePointLight"], + ["fespecularlighting", "feSpecularLighting"], + ["fespotlight", "feSpotLight"], + ["fetile", "feTile"], + ["feturbulence", "feTurbulence"], + ["foreignobject", "foreignObject"], + ["glyphref", "glyphRef"], + ["lineargradient", "linearGradient"], + ["radialgradient", "radialGradient"], + ["textpath", "textPath"], +]); +exports.attributeNames = new Map([ + ["definitionurl", "definitionURL"], + ["attributename", "attributeName"], + ["attributetype", "attributeType"], + ["basefrequency", "baseFrequency"], + ["baseprofile", "baseProfile"], + ["calcmode", "calcMode"], + ["clippathunits", "clipPathUnits"], + ["diffuseconstant", "diffuseConstant"], + ["edgemode", "edgeMode"], + ["filterunits", "filterUnits"], + ["glyphref", "glyphRef"], + ["gradienttransform", "gradientTransform"], + ["gradientunits", "gradientUnits"], + ["kernelmatrix", "kernelMatrix"], + ["kernelunitlength", "kernelUnitLength"], + ["keypoints", "keyPoints"], + ["keysplines", "keySplines"], + ["keytimes", "keyTimes"], + ["lengthadjust", "lengthAdjust"], + ["limitingconeangle", "limitingConeAngle"], + ["markerheight", "markerHeight"], + ["markerunits", "markerUnits"], + ["markerwidth", "markerWidth"], + ["maskcontentunits", "maskContentUnits"], + ["maskunits", "maskUnits"], + ["numoctaves", "numOctaves"], + ["pathlength", "pathLength"], + ["patterncontentunits", "patternContentUnits"], + ["patterntransform", "patternTransform"], + ["patternunits", "patternUnits"], + ["pointsatx", "pointsAtX"], + ["pointsaty", "pointsAtY"], + ["pointsatz", "pointsAtZ"], + ["preservealpha", "preserveAlpha"], + ["preserveaspectratio", "preserveAspectRatio"], + ["primitiveunits", "primitiveUnits"], + ["refx", "refX"], + ["refy", "refY"], + ["repeatcount", "repeatCount"], + ["repeatdur", "repeatDur"], + ["requiredextensions", "requiredExtensions"], + ["requiredfeatures", "requiredFeatures"], + ["specularconstant", "specularConstant"], + ["specularexponent", "specularExponent"], + ["spreadmethod", "spreadMethod"], + ["startoffset", "startOffset"], + ["stddeviation", "stdDeviation"], + ["stitchtiles", "stitchTiles"], + ["surfacescale", "surfaceScale"], + ["systemlanguage", "systemLanguage"], + ["tablevalues", "tableValues"], + ["targetx", "targetX"], + ["targety", "targetY"], + ["textlength", "textLength"], + ["viewbox", "viewBox"], + ["viewtarget", "viewTarget"], + ["xchannelselector", "xChannelSelector"], + ["ychannelselector", "yChannelSelector"], + ["zoomandpan", "zoomAndPan"], +]); /***/ }), -/* 322 */ +/* 307 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var __spreadArray = (this && this.__spreadArray) || function (to, from) { - for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) - to[j] = from[i]; - return to; -}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.subselects = exports.getNextSiblings = exports.ensureIsTag = exports.PLACEHOLDER_ELEMENT = void 0; -var boolbase_1 = __webpack_require__(309); -var procedure_1 = __webpack_require__(312); -/** Used as a placeholder for :has. Will be replaced with the actual element. */ -exports.PLACEHOLDER_ELEMENT = {}; -function ensureIsTag(next, adapter) { - if (next === boolbase_1.falseFunc) - return boolbase_1.falseFunc; - return function (elem) { return adapter.isTag(elem) && next(elem); }; +exports.nextElementSibling = exports.getName = exports.hasAttrib = exports.getAttributeValue = exports.getSiblings = exports.getParent = exports.getChildren = void 0; +var tagtypes_1 = __webpack_require__(296); +var emptyArray = []; +/** + * Get a node's children. + * + * @param elem Node to get the children of. + * @returns `elem`'s children, or an empty array. + */ +function getChildren(elem) { + var _a; + return (_a = elem.children) !== null && _a !== void 0 ? _a : emptyArray; } -exports.ensureIsTag = ensureIsTag; -function getNextSiblings(elem, adapter) { - var siblings = adapter.getSiblings(elem); - if (siblings.length <= 1) - return []; - var elemIndex = siblings.indexOf(elem); - if (elemIndex < 0 || elemIndex === siblings.length - 1) - return []; - return siblings.slice(elemIndex + 1).filter(adapter.isTag); +exports.getChildren = getChildren; +/** + * Get a node's parent. + * + * @param elem Node to get the parent of. + * @returns `elem`'s parent node. + */ +function getParent(elem) { + return elem.parent || null; } -exports.getNextSiblings = getNextSiblings; -var is = function (next, token, options, context, compileToken) { - var opts = { - xmlMode: !!options.xmlMode, - adapter: options.adapter, - equals: options.equals, - }; - var func = compileToken(token, opts, context); - return function (elem) { return func(elem) && next(elem); }; -}; -/* - * :not, :has, :is and :matches have to compile selectors - * doing this in src/pseudos.ts would lead to circular dependencies, - * so we add them here +exports.getParent = getParent; +/** + * Gets an elements siblings, including the element itself. + * + * Attempts to get the children through the element's parent first. + * If we don't have a parent (the element is a root node), + * we walk the element's `prev` & `next` to get all remaining nodes. + * + * @param elem Element to get the siblings of. + * @returns `elem`'s siblings. */ -exports.subselects = { - is: is, - /** - * `:matches` is an alias for `:is`. - */ - matches: is, - not: function (next, token, options, context, compileToken) { - var opts = { - xmlMode: !!options.xmlMode, - adapter: options.adapter, - equals: options.equals, - }; - var func = compileToken(token, opts, context); - if (func === boolbase_1.falseFunc) - return next; - if (func === boolbase_1.trueFunc) - return boolbase_1.falseFunc; - return function not(elem) { - return !func(elem) && next(elem); - }; - }, - has: function (next, subselect, options, _context, compileToken) { - var adapter = options.adapter; - var opts = { - xmlMode: !!options.xmlMode, - adapter: adapter, - equals: options.equals, - }; - // @ts-expect-error Uses an array as a pointer to the current element (side effects) - var context = subselect.some(function (s) { - return s.some(procedure_1.isTraversal); - }) - ? [exports.PLACEHOLDER_ELEMENT] - : undefined; - var compiled = compileToken(subselect, opts, context); - if (compiled === boolbase_1.falseFunc) - return boolbase_1.falseFunc; - if (compiled === boolbase_1.trueFunc) { - return function (elem) { - return adapter.getChildren(elem).some(adapter.isTag) && next(elem); - }; - } - var hasElement = ensureIsTag(compiled, adapter); - var _a = compiled.shouldTestNextSiblings, shouldTestNextSiblings = _a === void 0 ? false : _a; - /* - * `shouldTestNextSiblings` will only be true if the query starts with - * a traversal (sibling or adjacent). That means we will always have a context. - */ - if (context) { - return function (elem) { - context[0] = elem; - var childs = adapter.getChildren(elem); - var nextElements = shouldTestNextSiblings - ? __spreadArray(__spreadArray([], childs), getNextSiblings(elem, adapter)) : childs; - return (next(elem) && adapter.existsOne(hasElement, nextElements)); - }; - } - return function (elem) { - return next(elem) && - adapter.existsOne(hasElement, adapter.getChildren(elem)); - }; - }, -}; +function getSiblings(elem) { + var _a, _b; + var parent = getParent(elem); + if (parent != null) + return getChildren(parent); + var siblings = [elem]; + var prev = elem.prev, next = elem.next; + while (prev != null) { + siblings.unshift(prev); + (_a = prev, prev = _a.prev); + } + while (next != null) { + siblings.push(next); + (_b = next, next = _b.next); + } + return siblings; +} +exports.getSiblings = getSiblings; +/** + * Gets an attribute from an element. + * + * @param elem Element to check. + * @param name Attribute name to retrieve. + * @returns The element's attribute value, or `undefined`. + */ +function getAttributeValue(elem, name) { + var _a; + return (_a = elem.attribs) === null || _a === void 0 ? void 0 : _a[name]; +} +exports.getAttributeValue = getAttributeValue; +/** + * Checks whether an element has an attribute. + * + * @param elem Element to check. + * @param name Attribute name to look for. + * @returns Returns whether `elem` has the attribute `name`. + */ +function hasAttrib(elem, name) { + return (elem.attribs != null && + Object.prototype.hasOwnProperty.call(elem.attribs, name) && + elem.attribs[name] != null); +} +exports.hasAttrib = hasAttrib; +/** + * Get the tag name of an element. + * + * @param elem The element to get the name for. + * @returns The tag name of `elem`. + */ +function getName(elem) { + return elem.name; +} +exports.getName = getName; +/** + * Returns the next element sibling of a node. + * + * @param elem The element to get the next sibling of. + * @returns `elem`'s next sibling that is a tag. + */ +function nextElementSibling(elem) { + var _a; + var next = elem.next; + while (next !== null && !tagtypes_1.isTag(next)) + (_a = next, next = _a.next); + return next; +} +exports.nextElementSibling = nextElementSibling; /***/ }), -/* 323 */ +/* 308 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -exports.groupSelectors = exports.getDocumentRoot = void 0; -var positionals_1 = __webpack_require__(324); -function getDocumentRoot(node) { - while (node.parent) - node = node.parent; - return node; +exports.prepend = exports.prependChild = exports.append = exports.appendChild = exports.replaceElement = exports.removeElement = void 0; +/** + * Remove an element from the dom + * + * @param elem The element to be removed + */ +function removeElement(elem) { + if (elem.prev) + elem.prev.next = elem.next; + if (elem.next) + elem.next.prev = elem.prev; + if (elem.parent) { + var childs = elem.parent.children; + childs.splice(childs.lastIndexOf(elem), 1); + } } -exports.getDocumentRoot = getDocumentRoot; -function groupSelectors(selectors) { - var filteredSelectors = []; - var plainSelectors = []; - for (var _i = 0, selectors_1 = selectors; _i < selectors_1.length; _i++) { - var selector = selectors_1[_i]; - if (selector.some(positionals_1.isFilter)) { - filteredSelectors.push(selector); - } - else { - plainSelectors.push(selector); +exports.removeElement = removeElement; +/** + * Replace an element in the dom + * + * @param elem The element to be replaced + * @param replacement The element to be added + */ +function replaceElement(elem, replacement) { + var prev = (replacement.prev = elem.prev); + if (prev) { + prev.next = replacement; + } + var next = (replacement.next = elem.next); + if (next) { + next.prev = replacement; + } + var parent = (replacement.parent = elem.parent); + if (parent) { + var childs = parent.children; + childs[childs.lastIndexOf(elem)] = replacement; + } +} +exports.replaceElement = replaceElement; +/** + * Append a child to an element. + * + * @param elem The element to append to. + * @param child The element to be added as a child. + */ +function appendChild(elem, child) { + removeElement(child); + child.next = null; + child.parent = elem; + if (elem.children.push(child) > 1) { + var sibling = elem.children[elem.children.length - 2]; + sibling.next = child; + child.prev = sibling; + } + else { + child.prev = null; + } +} +exports.appendChild = appendChild; +/** + * Append an element after another. + * + * @param elem The element to append after. + * @param next The element be added. + */ +function append(elem, next) { + removeElement(next); + var parent = elem.parent; + var currNext = elem.next; + next.next = currNext; + next.prev = elem; + elem.next = next; + next.parent = parent; + if (currNext) { + currNext.prev = next; + if (parent) { + var childs = parent.children; + childs.splice(childs.lastIndexOf(currNext), 0, next); } } - return [plainSelectors, filteredSelectors]; + else if (parent) { + parent.children.push(next); + } } -exports.groupSelectors = groupSelectors; - - -/***/ }), -/* 324 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getLimit = exports.isFilter = exports.filterNames = void 0; -exports.filterNames = new Set([ - "first", - "last", - "eq", - "gt", - "nth", - "lt", - "even", - "odd", -]); -function isFilter(s) { - if (s.type !== "pseudo") - return false; - if (exports.filterNames.has(s.name)) - return true; - if (s.name === "not" && Array.isArray(s.data)) { - // Only consider `:not` with embedded filters - return s.data.some(function (s) { return s.some(isFilter); }); +exports.append = append; +/** + * Prepend a child to an element. + * + * @param elem The element to prepend before. + * @param child The element to be added as a child. + */ +function prependChild(elem, child) { + removeElement(child); + child.parent = elem; + child.prev = null; + if (elem.children.unshift(child) !== 1) { + var sibling = elem.children[1]; + sibling.prev = child; + child.next = sibling; + } + else { + child.next = null; } - return false; } -exports.isFilter = isFilter; -function getLimit(filter, data) { - var num = data != null ? parseInt(data, 10) : NaN; - switch (filter) { - case "first": - return 1; - case "nth": - case "eq": - return isFinite(num) ? (num >= 0 ? num + 1 : Infinity) : 0; - case "lt": - return isFinite(num) ? (num >= 0 ? num : Infinity) : 0; - case "gt": - return isFinite(num) ? Infinity : 0; - default: - return Infinity; +exports.prependChild = prependChild; +/** + * Prepend an element before another. + * + * @param elem The element to prepend before. + * @param prev The element be added. + */ +function prepend(elem, prev) { + removeElement(prev); + var parent = elem.parent; + if (parent) { + var childs = parent.children; + childs.splice(childs.indexOf(elem), 0, prev); + } + if (elem.prev) { + elem.prev.next = prev; } + prev.parent = parent; + prev.prev = elem.prev; + prev.next = elem; + elem.prev = prev; } -exports.getLimit = getLimit; +exports.prepend = prepend; /***/ }), -/* 325 */ +/* 309 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; -}; -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.RssHandler = exports.DefaultHandler = exports.DomUtils = exports.ElementType = exports.Tokenizer = exports.createDomStream = exports.parseDOM = exports.parseDocument = exports.DomHandler = exports.Parser = void 0; -var Parser_1 = __webpack_require__(326); -Object.defineProperty(exports, "Parser", { enumerable: true, get: function () { return Parser_1.Parser; } }); -var domhandler_1 = __webpack_require__(328); -Object.defineProperty(exports, "DomHandler", { enumerable: true, get: function () { return domhandler_1.DomHandler; } }); -Object.defineProperty(exports, "DefaultHandler", { enumerable: true, get: function () { return domhandler_1.DomHandler; } }); -// Helper methods +exports.findAll = exports.existsOne = exports.findOne = exports.findOneChild = exports.find = exports.filter = void 0; +var tagtypes_1 = __webpack_require__(296); /** - * Parses the data, returns the resulting document. + * Search a node and its children for nodes passing a test function. * - * @param data The data that should be parsed. - * @param options Optional options for the parser and DOM builder. + * @param test Function to test nodes on. + * @param node Node to search. Will be included in the result set if it matches. + * @param recurse Also consider child nodes. + * @param limit Maximum number of nodes to return. + * @returns All nodes passing `test`. */ -function parseDocument(data, options) { - var handler = new domhandler_1.DomHandler(undefined, options); - new Parser_1.Parser(handler, options).end(data); - return handler.root; +function filter(test, node, recurse, limit) { + if (recurse === void 0) { recurse = true; } + if (limit === void 0) { limit = Infinity; } + if (!Array.isArray(node)) + node = [node]; + return find(test, node, recurse, limit); } -exports.parseDocument = parseDocument; +exports.filter = filter; /** - * Parses data, returns an array of the root nodes. + * Search an array of node and its children for nodes passing a test function. * - * Note that the root nodes still have a `Document` node as their parent. - * Use `parseDocument` to get the `Document` node instead. + * @param test Function to test nodes on. + * @param nodes Array of nodes to search. + * @param recurse Also consider child nodes. + * @param limit Maximum number of nodes to return. + * @returns All nodes passing `test`. + */ +function find(test, nodes, recurse, limit) { + var result = []; + for (var _i = 0, nodes_1 = nodes; _i < nodes_1.length; _i++) { + var elem = nodes_1[_i]; + if (test(elem)) { + result.push(elem); + if (--limit <= 0) + break; + } + if (recurse && tagtypes_1.hasChildren(elem) && elem.children.length > 0) { + var children = find(test, elem.children, recurse, limit); + result.push.apply(result, children); + limit -= children.length; + if (limit <= 0) + break; + } + } + return result; +} +exports.find = find; +/** + * Finds the first element inside of an array that matches a test function. * - * @param data The data that should be parsed. - * @param options Optional options for the parser and DOM builder. - * @deprecated Use `parseDocument` instead. + * @param test Function to test nodes on. + * @param nodes Array of nodes to search. + * @returns The first node in the array that passes `test`. */ -function parseDOM(data, options) { - return parseDocument(data, options).children; +function findOneChild(test, nodes) { + return nodes.find(test); } -exports.parseDOM = parseDOM; +exports.findOneChild = findOneChild; /** - * Creates a parser instance, with an attached DOM handler. + * Finds one element in a tree that passes a test. * - * @param cb A callback that will be called once parsing has been completed. - * @param options Optional options for the parser and DOM builder. - * @param elementCb An optional callback that will be called every time a tag has been completed inside of the DOM. + * @param test Function to test nodes on. + * @param nodes Array of nodes to search. + * @param recurse Also consider child nodes. + * @returns The first child node that passes `test`. */ -function createDomStream(cb, options, elementCb) { - var handler = new domhandler_1.DomHandler(cb, options, elementCb); - return new Parser_1.Parser(handler, options); +function findOne(test, nodes, recurse) { + if (recurse === void 0) { recurse = true; } + var elem = null; + for (var i = 0; i < nodes.length && !elem; i++) { + var checked = nodes[i]; + if (!tagtypes_1.isTag(checked)) { + continue; + } + else if (test(checked)) { + elem = checked; + } + else if (recurse && checked.children.length > 0) { + elem = findOne(test, checked.children); + } + } + return elem; } -exports.createDomStream = createDomStream; -var Tokenizer_1 = __webpack_require__(327); -Object.defineProperty(exports, "Tokenizer", { enumerable: true, get: function () { return __importDefault(Tokenizer_1).default; } }); -var ElementType = __importStar(__webpack_require__(330)); -exports.ElementType = ElementType; -/* - * All of the following exports exist for backwards-compatibility. - * They should probably be removed eventually. +exports.findOne = findOne; +/** + * @param test Function to test nodes on. + * @param nodes Array of nodes to search. + * @returns Whether a tree of nodes contains at least one node passing a test. */ -__exportStar(__webpack_require__(331), exports); -exports.DomUtils = __importStar(__webpack_require__(286)); -var FeedHandler_1 = __webpack_require__(331); -Object.defineProperty(exports, "RssHandler", { enumerable: true, get: function () { return FeedHandler_1.FeedHandler; } }); +function existsOne(test, nodes) { + return nodes.some(function (checked) { + return tagtypes_1.isTag(checked) && + (test(checked) || + (checked.children.length > 0 && + existsOne(test, checked.children))); + }); +} +exports.existsOne = existsOne; +/** + * Search and array of nodes and its children for nodes passing a test function. + * + * Same as `find`, only with less options, leading to reduced complexity. + * + * @param test Function to test nodes on. + * @param nodes Array of nodes to search. + * @returns All nodes passing `test`. + */ +function findAll(test, nodes) { + var _a; + var result = []; + var stack = nodes.filter(tagtypes_1.isTag); + var elem; + while ((elem = stack.shift())) { + var children = (_a = elem.children) === null || _a === void 0 ? void 0 : _a.filter(tagtypes_1.isTag); + if (children && children.length > 0) { + stack.unshift.apply(stack, children); + } + if (test(elem)) + result.push(elem); + } + return result; +} +exports.findAll = findAll; /***/ }), -/* 326 */ +/* 310 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.Parser = void 0; -var Tokenizer_1 = __importDefault(__webpack_require__(327)); -var formTags = new Set([ - "input", - "option", - "optgroup", - "select", - "button", - "datalist", - "textarea", -]); -var pTag = new Set(["p"]); -var openImpliesClose = { - tr: new Set(["tr", "th", "td"]), - th: new Set(["th"]), - td: new Set(["thead", "th", "td"]), - body: new Set(["head", "link", "script"]), - li: new Set(["li"]), - p: pTag, - h1: pTag, - h2: pTag, - h3: pTag, - h4: pTag, - h5: pTag, - h6: pTag, - select: formTags, - input: formTags, - output: formTags, - button: formTags, - datalist: formTags, - textarea: formTags, - option: new Set(["option"]), - optgroup: new Set(["optgroup", "option"]), - dd: new Set(["dt", "dd"]), - dt: new Set(["dt", "dd"]), - address: pTag, - article: pTag, - aside: pTag, - blockquote: pTag, - details: pTag, - div: pTag, - dl: pTag, - fieldset: pTag, - figcaption: pTag, - figure: pTag, - footer: pTag, - form: pTag, - header: pTag, - hr: pTag, - main: pTag, - nav: pTag, - ol: pTag, - pre: pTag, - section: pTag, - table: pTag, - ul: pTag, - rt: new Set(["rt", "rp"]), - rp: new Set(["rt", "rp"]), - tbody: new Set(["thead", "tbody"]), - tfoot: new Set(["thead", "tbody"]), -}; -var voidElements = new Set([ - "area", - "base", - "basefont", - "br", - "col", - "command", - "embed", - "frame", - "hr", - "img", - "input", - "isindex", - "keygen", - "link", - "meta", - "param", - "source", - "track", - "wbr", -]); -var foreignContextElements = new Set(["math", "svg"]); -var htmlIntegrationElements = new Set([ - "mi", - "mo", - "mn", - "ms", - "mtext", - "annotation-xml", - "foreignObject", - "desc", - "title", -]); -var reNameEnd = /\s|\//; -var Parser = /** @class */ (function () { - function Parser(cbs, options) { - if (options === void 0) { options = {}; } - var _a, _b, _c, _d, _e; - /** The start index of the last event. */ - this.startIndex = 0; - /** The end index of the last event. */ - this.endIndex = null; - this.tagname = ""; - this.attribname = ""; - this.attribvalue = ""; - this.attribs = null; - this.stack = []; - this.foreignContext = []; - this.options = options; - this.cbs = cbs !== null && cbs !== void 0 ? cbs : {}; - this.lowerCaseTagNames = (_a = options.lowerCaseTags) !== null && _a !== void 0 ? _a : !options.xmlMode; - this.lowerCaseAttributeNames = - (_b = options.lowerCaseAttributeNames) !== null && _b !== void 0 ? _b : !options.xmlMode; - this.tokenizer = new ((_c = options.Tokenizer) !== null && _c !== void 0 ? _c : Tokenizer_1.default)(this.options, this); - (_e = (_d = this.cbs).onparserinit) === null || _e === void 0 ? void 0 : _e.call(_d, this); - } - Parser.prototype.updatePosition = function (initialOffset) { - if (this.endIndex === null) { - if (this.tokenizer.sectionStart <= initialOffset) { - this.startIndex = 0; - } - else { - this.startIndex = this.tokenizer.sectionStart - initialOffset; - } - } - else { - this.startIndex = this.endIndex + 1; +exports.getElementsByTagType = exports.getElementsByTagName = exports.getElementById = exports.getElements = exports.testElement = void 0; +var querying_1 = __webpack_require__(309); +var tagtypes_1 = __webpack_require__(296); +var Checks = { + tag_name: function (name) { + if (typeof name === "function") { + return function (elem) { return tagtypes_1.isTag(elem) && name(elem.name); }; } - this.endIndex = this.tokenizer.getAbsoluteIndex(); - }; - // Tokenizer event handlers - Parser.prototype.ontext = function (data) { - var _a, _b; - this.updatePosition(1); - this.endIndex--; - (_b = (_a = this.cbs).ontext) === null || _b === void 0 ? void 0 : _b.call(_a, data); - }; - Parser.prototype.onopentagname = function (name) { - var _a, _b; - if (this.lowerCaseTagNames) { - name = name.toLowerCase(); + else if (name === "*") { + return tagtypes_1.isTag; } - this.tagname = name; - if (!this.options.xmlMode && - Object.prototype.hasOwnProperty.call(openImpliesClose, name)) { - var el = void 0; - while (this.stack.length > 0 && - openImpliesClose[name].has((el = this.stack[this.stack.length - 1]))) { - this.onclosetag(el); - } + return function (elem) { return tagtypes_1.isTag(elem) && elem.name === name; }; + }, + tag_type: function (type) { + if (typeof type === "function") { + return function (elem) { return type(elem.type); }; } - if (this.options.xmlMode || !voidElements.has(name)) { - this.stack.push(name); - if (foreignContextElements.has(name)) { - this.foreignContext.push(true); - } - else if (htmlIntegrationElements.has(name)) { - this.foreignContext.push(false); - } + return function (elem) { return elem.type === type; }; + }, + tag_contains: function (data) { + if (typeof data === "function") { + return function (elem) { return tagtypes_1.isText(elem) && data(elem.data); }; } - (_b = (_a = this.cbs).onopentagname) === null || _b === void 0 ? void 0 : _b.call(_a, name); - if (this.cbs.onopentag) - this.attribs = {}; - }; - Parser.prototype.onopentagend = function () { - var _a, _b; - this.updatePosition(1); - if (this.attribs) { - (_b = (_a = this.cbs).onopentag) === null || _b === void 0 ? void 0 : _b.call(_a, this.tagname, this.attribs); - this.attribs = null; - } - if (!this.options.xmlMode && - this.cbs.onclosetag && - voidElements.has(this.tagname)) { - this.cbs.onclosetag(this.tagname); - } - this.tagname = ""; - }; - Parser.prototype.onclosetag = function (name) { - this.updatePosition(1); - if (this.lowerCaseTagNames) { - name = name.toLowerCase(); - } - if (foreignContextElements.has(name) || - htmlIntegrationElements.has(name)) { - this.foreignContext.pop(); - } - if (this.stack.length && - (this.options.xmlMode || !voidElements.has(name))) { - var pos = this.stack.lastIndexOf(name); - if (pos !== -1) { - if (this.cbs.onclosetag) { - pos = this.stack.length - pos; - while (pos--) { - // We know the stack has sufficient elements. - this.cbs.onclosetag(this.stack.pop()); - } - } - else - this.stack.length = pos; - } - else if (name === "p" && !this.options.xmlMode) { - this.onopentagname(name); - this.closeCurrentTag(); - } - } - else if (!this.options.xmlMode && (name === "br" || name === "p")) { - this.onopentagname(name); - this.closeCurrentTag(); - } - }; - Parser.prototype.onselfclosingtag = function () { - if (this.options.xmlMode || - this.options.recognizeSelfClosing || - this.foreignContext[this.foreignContext.length - 1]) { - this.closeCurrentTag(); - } - else { - this.onopentagend(); - } - }; - Parser.prototype.closeCurrentTag = function () { - var _a, _b; - var name = this.tagname; - this.onopentagend(); + return function (elem) { return tagtypes_1.isText(elem) && elem.data === data; }; + }, +}; +/** + * @param attrib Attribute to check. + * @param value Attribute value to look for. + * @returns A function to check whether the a node has an attribute with a particular value. + */ +function getAttribCheck(attrib, value) { + if (typeof value === "function") { + return function (elem) { return tagtypes_1.isTag(elem) && value(elem.attribs[attrib]); }; + } + return function (elem) { return tagtypes_1.isTag(elem) && elem.attribs[attrib] === value; }; +} +/** + * @param a First function to combine. + * @param b Second function to combine. + * @returns A function taking a node and returning `true` if either + * of the input functions returns `true` for the node. + */ +function combineFuncs(a, b) { + return function (elem) { return a(elem) || b(elem); }; +} +/** + * @param options An object describing nodes to look for. + * @returns A function executing all checks in `options` and returning `true` + * if any of them match a node. + */ +function compileTest(options) { + var funcs = Object.keys(options).map(function (key) { + var value = options[key]; + return key in Checks + ? Checks[key](value) + : getAttribCheck(key, value); + }); + return funcs.length === 0 ? null : funcs.reduce(combineFuncs); +} +/** + * @param options An object describing nodes to look for. + * @param node The element to test. + * @returns Whether the element matches the description in `options`. + */ +function testElement(options, node) { + var test = compileTest(options); + return test ? test(node) : true; +} +exports.testElement = testElement; +/** + * @param options An object describing nodes to look for. + * @param nodes Nodes to search through. + * @param recurse Also consider child nodes. + * @param limit Maximum number of nodes to return. + * @returns All nodes that match `options`. + */ +function getElements(options, nodes, recurse, limit) { + if (limit === void 0) { limit = Infinity; } + var test = compileTest(options); + return test ? querying_1.filter(test, nodes, recurse, limit) : []; +} +exports.getElements = getElements; +/** + * @param id The unique ID attribute value to look for. + * @param nodes Nodes to search through. + * @param recurse Also consider child nodes. + * @returns The node with the supplied ID. + */ +function getElementById(id, nodes, recurse) { + if (recurse === void 0) { recurse = true; } + if (!Array.isArray(nodes)) + nodes = [nodes]; + return querying_1.findOne(getAttribCheck("id", id), nodes, recurse); +} +exports.getElementById = getElementById; +/** + * @param tagName Tag name to search for. + * @param nodes Nodes to search through. + * @param recurse Also consider child nodes. + * @param limit Maximum number of nodes to return. + * @returns All nodes with the supplied `tagName`. + */ +function getElementsByTagName(tagName, nodes, recurse, limit) { + if (recurse === void 0) { recurse = true; } + if (limit === void 0) { limit = Infinity; } + return querying_1.filter(Checks.tag_name(tagName), nodes, recurse, limit); +} +exports.getElementsByTagName = getElementsByTagName; +/** + * @param type Element type to look for. + * @param nodes Nodes to search through. + * @param recurse Also consider child nodes. + * @param limit Maximum number of nodes to return. + * @returns All nodes with the supplied `type`. + */ +function getElementsByTagType(type, nodes, recurse, limit) { + if (recurse === void 0) { recurse = true; } + if (limit === void 0) { limit = Infinity; } + return querying_1.filter(Checks.tag_type(type), nodes, recurse, limit); +} +exports.getElementsByTagType = getElementsByTagType; + + +/***/ }), +/* 311 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.uniqueSort = exports.compareDocumentPosition = exports.removeSubsets = void 0; +var tagtypes_1 = __webpack_require__(296); +/** + * Given an array of nodes, remove any member that is contained by another. + * + * @param nodes Nodes to filter. + * @returns Remaining nodes that aren't subtrees of each other. + */ +function removeSubsets(nodes) { + var idx = nodes.length; + /* + * Check if each node (or one of its ancestors) is already contained in the + * array. + */ + while (--idx >= 0) { + var node = nodes[idx]; /* - * Self-closing tags will be on the top of the stack - * (cheaper check than in onclosetag) + * Remove the node if it is not unique. + * We are going through the array from the end, so we only + * have to check nodes that preceed the node under consideration in the array. */ - if (this.stack[this.stack.length - 1] === name) { - (_b = (_a = this.cbs).onclosetag) === null || _b === void 0 ? void 0 : _b.call(_a, name); - this.stack.pop(); - } - }; - Parser.prototype.onattribname = function (name) { - if (this.lowerCaseAttributeNames) { - name = name.toLowerCase(); - } - this.attribname = name; - }; - Parser.prototype.onattribdata = function (value) { - this.attribvalue += value; - }; - Parser.prototype.onattribend = function (quote) { - var _a, _b; - (_b = (_a = this.cbs).onattribute) === null || _b === void 0 ? void 0 : _b.call(_a, this.attribname, this.attribvalue, quote); - if (this.attribs && - !Object.prototype.hasOwnProperty.call(this.attribs, this.attribname)) { - this.attribs[this.attribname] = this.attribvalue; - } - this.attribname = ""; - this.attribvalue = ""; - }; - Parser.prototype.getInstructionName = function (value) { - var idx = value.search(reNameEnd); - var name = idx < 0 ? value : value.substr(0, idx); - if (this.lowerCaseTagNames) { - name = name.toLowerCase(); - } - return name; - }; - Parser.prototype.ondeclaration = function (value) { - if (this.cbs.onprocessinginstruction) { - var name_1 = this.getInstructionName(value); - this.cbs.onprocessinginstruction("!" + name_1, "!" + value); + if (idx > 0 && nodes.lastIndexOf(node, idx - 1) >= 0) { + nodes.splice(idx, 1); + continue; } - }; - Parser.prototype.onprocessinginstruction = function (value) { - if (this.cbs.onprocessinginstruction) { - var name_2 = this.getInstructionName(value); - this.cbs.onprocessinginstruction("?" + name_2, "?" + value); + for (var ancestor = node.parent; ancestor; ancestor = ancestor.parent) { + if (nodes.includes(ancestor)) { + nodes.splice(idx, 1); + break; + } } - }; - Parser.prototype.oncomment = function (value) { - var _a, _b, _c, _d; - this.updatePosition(4); - (_b = (_a = this.cbs).oncomment) === null || _b === void 0 ? void 0 : _b.call(_a, value); - (_d = (_c = this.cbs).oncommentend) === null || _d === void 0 ? void 0 : _d.call(_c); - }; - Parser.prototype.oncdata = function (value) { - var _a, _b, _c, _d, _e, _f; - this.updatePosition(1); - if (this.options.xmlMode || this.options.recognizeCDATA) { - (_b = (_a = this.cbs).oncdatastart) === null || _b === void 0 ? void 0 : _b.call(_a); - (_d = (_c = this.cbs).ontext) === null || _d === void 0 ? void 0 : _d.call(_c, value); - (_f = (_e = this.cbs).oncdataend) === null || _f === void 0 ? void 0 : _f.call(_e); + } + return nodes; +} +exports.removeSubsets = removeSubsets; +/** + * Compare the position of one node against another node in any other document. + * The return value is a bitmask with the following values: + * + * Document order: + * > There is an ordering, document order, defined on all the nodes in the + * > document corresponding to the order in which the first character of the + * > XML representation of each node occurs in the XML representation of the + * > document after expansion of general entities. Thus, the document element + * > node will be the first node. Element nodes occur before their children. + * > Thus, document order orders element nodes in order of the occurrence of + * > their start-tag in the XML (after expansion of entities). The attribute + * > nodes of an element occur after the element and before its children. The + * > relative order of attribute nodes is implementation-dependent./ + * + * Source: + * http://www.w3.org/TR/DOM-Level-3-Core/glossary.html#dt-document-order + * + * @param nodeA The first node to use in the comparison + * @param nodeB The second node to use in the comparison + * @returns A bitmask describing the input nodes' relative position. + * + * See http://dom.spec.whatwg.org/#dom-node-comparedocumentposition for + * a description of these values. + */ +function compareDocumentPosition(nodeA, nodeB) { + var aParents = []; + var bParents = []; + if (nodeA === nodeB) { + return 0; + } + var current = tagtypes_1.hasChildren(nodeA) ? nodeA : nodeA.parent; + while (current) { + aParents.unshift(current); + current = current.parent; + } + current = tagtypes_1.hasChildren(nodeB) ? nodeB : nodeB.parent; + while (current) { + bParents.unshift(current); + current = current.parent; + } + var maxIdx = Math.min(aParents.length, bParents.length); + var idx = 0; + while (idx < maxIdx && aParents[idx] === bParents[idx]) { + idx++; + } + if (idx === 0) { + return 1 /* DISCONNECTED */; + } + var sharedParent = aParents[idx - 1]; + var siblings = sharedParent.children; + var aSibling = aParents[idx]; + var bSibling = bParents[idx]; + if (siblings.indexOf(aSibling) > siblings.indexOf(bSibling)) { + if (sharedParent === nodeB) { + return 4 /* FOLLOWING */ | 16 /* CONTAINED_BY */; } - else { - this.oncomment("[CDATA[" + value + "]]"); + return 4 /* FOLLOWING */; + } + if (sharedParent === nodeA) { + return 2 /* PRECEDING */ | 8 /* CONTAINS */; + } + return 2 /* PRECEDING */; +} +exports.compareDocumentPosition = compareDocumentPosition; +/** + * Sort an array of nodes based on their relative position in the document and + * remove any duplicate nodes. If the array contains nodes that do not belong + * to the same document, sort order is unspecified. + * + * @param nodes Array of DOM nodes. + * @returns Collection of unique nodes, sorted in document order. + */ +function uniqueSort(nodes) { + nodes = nodes.filter(function (node, i, arr) { return !arr.includes(node, i + 1); }); + nodes.sort(function (a, b) { + var relative = compareDocumentPosition(a, b); + if (relative & 2 /* PRECEDING */) { + return -1; } - }; - Parser.prototype.onerror = function (err) { - var _a, _b; - (_b = (_a = this.cbs).onerror) === null || _b === void 0 ? void 0 : _b.call(_a, err); - }; - Parser.prototype.onend = function () { - var _a, _b; - if (this.cbs.onclosetag) { - for (var i = this.stack.length; i > 0; this.cbs.onclosetag(this.stack[--i])) - ; + else if (relative & 4 /* FOLLOWING */) { + return 1; } - (_b = (_a = this.cbs).onend) === null || _b === void 0 ? void 0 : _b.call(_a); - }; - /** - * Resets the parser to a blank state, ready to parse a new HTML document - */ - Parser.prototype.reset = function () { - var _a, _b, _c, _d; - (_b = (_a = this.cbs).onreset) === null || _b === void 0 ? void 0 : _b.call(_a); - this.tokenizer.reset(); - this.tagname = ""; - this.attribname = ""; - this.attribs = null; - this.stack = []; - (_d = (_c = this.cbs).onparserinit) === null || _d === void 0 ? void 0 : _d.call(_c, this); - }; - /** - * Resets the parser, then parses a complete document and - * pushes it to the handler. - * - * @param data Document to parse. - */ - Parser.prototype.parseComplete = function (data) { - this.reset(); - this.end(data); - }; - /** - * Parses a chunk of data and calls the corresponding callbacks. - * - * @param chunk Chunk to parse. - */ - Parser.prototype.write = function (chunk) { - this.tokenizer.write(chunk); - }; - /** - * Parses the end of the buffer and clears the stack, calls onend. - * - * @param chunk Optional final chunk to parse. - */ - Parser.prototype.end = function (chunk) { - this.tokenizer.end(chunk); - }; - /** - * Pauses parsing. The parser won't emit events until `resume` is called. - */ - Parser.prototype.pause = function () { - this.tokenizer.pause(); - }; - /** - * Resumes parsing after `pause` was called. - */ - Parser.prototype.resume = function () { - this.tokenizer.resume(); - }; - /** - * Alias of `write`, for backwards compatibility. - * - * @param chunk Chunk to parse. - * @deprecated - */ - Parser.prototype.parseChunk = function (chunk) { - this.write(chunk); - }; - /** - * Alias of `end`, for backwards compatibility. - * - * @param chunk Optional final chunk to parse. - * @deprecated - */ - Parser.prototype.done = function (chunk) { - this.end(chunk); - }; - return Parser; -}()); -exports.Parser = Parser; + return 0; + }); + return nodes; +} +exports.uniqueSort = uniqueSort; /***/ }), -/* 327 */ +/* 312 */ +/***/ (function(module, exports) { + +module.exports = { + trueFunc: function trueFunc(){ + return true; + }, + falseFunc: function falseFunc(){ + return false; + } +}; + +/***/ }), +/* 313 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -48673,1882 +46808,1452 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); -var decode_codepoint_1 = __importDefault(__webpack_require__(298)); -var entities_json_1 = __importDefault(__webpack_require__(295)); -var legacy_json_1 = __importDefault(__webpack_require__(296)); -var xml_json_1 = __importDefault(__webpack_require__(297)); -function whitespace(c) { - return c === " " || c === "\n" || c === "\t" || c === "\f" || c === "\r"; +exports.compileToken = exports.compileUnsafe = exports.compile = void 0; +var css_what_1 = __webpack_require__(290); +var boolbase_1 = __webpack_require__(312); +var sort_1 = __importDefault(__webpack_require__(314)); +var procedure_1 = __webpack_require__(315); +var general_1 = __webpack_require__(316); +var subselects_1 = __webpack_require__(324); +/** + * Compiles a selector to an executable function. + * + * @param selector Selector to compile. + * @param options Compilation options. + * @param context Optional context for the selector. + */ +function compile(selector, options, context) { + var next = compileUnsafe(selector, options, context); + return subselects_1.ensureIsTag(next, options.adapter); } -function isASCIIAlpha(c) { - return (c >= "a" && c <= "z") || (c >= "A" && c <= "Z"); +exports.compile = compile; +function compileUnsafe(selector, options, context) { + var token = css_what_1.parse(selector, options); + return compileToken(token, options, context); } -function ifElseState(upper, SUCCESS, FAILURE) { - var lower = upper.toLowerCase(); - if (upper === lower) { - return function (t, c) { - if (c === lower) { - t._state = SUCCESS; - } - else { - t._state = FAILURE; - t._index--; - } - }; - } - return function (t, c) { - if (c === lower || c === upper) { - t._state = SUCCESS; - } - else { - t._state = FAILURE; - t._index--; - } - }; +exports.compileUnsafe = compileUnsafe; +function includesScopePseudo(t) { + return (t.type === "pseudo" && + (t.name === "scope" || + (Array.isArray(t.data) && + t.data.some(function (data) { return data.some(includesScopePseudo); })))); } -function consumeSpecialNameChar(upper, NEXT_STATE) { - var lower = upper.toLowerCase(); - return function (t, c) { - if (c === lower || c === upper) { - t._state = NEXT_STATE; +var DESCENDANT_TOKEN = { type: "descendant" }; +var FLEXIBLE_DESCENDANT_TOKEN = { + type: "_flexibleDescendant", +}; +var SCOPE_TOKEN = { type: "pseudo", name: "scope", data: null }; +/* + * CSS 4 Spec (Draft): 3.3.1. Absolutizing a Scope-relative Selector + * http://www.w3.org/TR/selectors4/#absolutizing + */ +function absolutize(token, _a, context) { + var adapter = _a.adapter; + // TODO Use better check if the context is a document + var hasContext = !!(context === null || context === void 0 ? void 0 : context.every(function (e) { + var parent = adapter.getParent(e); + return e === subselects_1.PLACEHOLDER_ELEMENT || !!(parent && adapter.isTag(parent)); + })); + for (var _i = 0, token_1 = token; _i < token_1.length; _i++) { + var t = token_1[_i]; + if (t.length > 0 && procedure_1.isTraversal(t[0]) && t[0].type !== "descendant") { + // Don't continue in else branch + } + else if (hasContext && !t.some(includesScopePseudo)) { + t.unshift(DESCENDANT_TOKEN); } else { - t._state = 3 /* InTagName */; - t._index--; // Consume the token again + continue; } - }; -} -var stateBeforeCdata1 = ifElseState("C", 24 /* BeforeCdata2 */, 16 /* InDeclaration */); -var stateBeforeCdata2 = ifElseState("D", 25 /* BeforeCdata3 */, 16 /* InDeclaration */); -var stateBeforeCdata3 = ifElseState("A", 26 /* BeforeCdata4 */, 16 /* InDeclaration */); -var stateBeforeCdata4 = ifElseState("T", 27 /* BeforeCdata5 */, 16 /* InDeclaration */); -var stateBeforeCdata5 = ifElseState("A", 28 /* BeforeCdata6 */, 16 /* InDeclaration */); -var stateBeforeScript1 = consumeSpecialNameChar("R", 35 /* BeforeScript2 */); -var stateBeforeScript2 = consumeSpecialNameChar("I", 36 /* BeforeScript3 */); -var stateBeforeScript3 = consumeSpecialNameChar("P", 37 /* BeforeScript4 */); -var stateBeforeScript4 = consumeSpecialNameChar("T", 38 /* BeforeScript5 */); -var stateAfterScript1 = ifElseState("R", 40 /* AfterScript2 */, 1 /* Text */); -var stateAfterScript2 = ifElseState("I", 41 /* AfterScript3 */, 1 /* Text */); -var stateAfterScript3 = ifElseState("P", 42 /* AfterScript4 */, 1 /* Text */); -var stateAfterScript4 = ifElseState("T", 43 /* AfterScript5 */, 1 /* Text */); -var stateBeforeStyle1 = consumeSpecialNameChar("Y", 45 /* BeforeStyle2 */); -var stateBeforeStyle2 = consumeSpecialNameChar("L", 46 /* BeforeStyle3 */); -var stateBeforeStyle3 = consumeSpecialNameChar("E", 47 /* BeforeStyle4 */); -var stateAfterStyle1 = ifElseState("Y", 49 /* AfterStyle2 */, 1 /* Text */); -var stateAfterStyle2 = ifElseState("L", 50 /* AfterStyle3 */, 1 /* Text */); -var stateAfterStyle3 = ifElseState("E", 51 /* AfterStyle4 */, 1 /* Text */); -var stateBeforeSpecialT = consumeSpecialNameChar("I", 54 /* BeforeTitle1 */); -var stateBeforeTitle1 = consumeSpecialNameChar("T", 55 /* BeforeTitle2 */); -var stateBeforeTitle2 = consumeSpecialNameChar("L", 56 /* BeforeTitle3 */); -var stateBeforeTitle3 = consumeSpecialNameChar("E", 57 /* BeforeTitle4 */); -var stateAfterSpecialTEnd = ifElseState("I", 58 /* AfterTitle1 */, 1 /* Text */); -var stateAfterTitle1 = ifElseState("T", 59 /* AfterTitle2 */, 1 /* Text */); -var stateAfterTitle2 = ifElseState("L", 60 /* AfterTitle3 */, 1 /* Text */); -var stateAfterTitle3 = ifElseState("E", 61 /* AfterTitle4 */, 1 /* Text */); -var stateBeforeEntity = ifElseState("#", 63 /* BeforeNumericEntity */, 64 /* InNamedEntity */); -var stateBeforeNumericEntity = ifElseState("X", 66 /* InHexEntity */, 65 /* InNumericEntity */); -var Tokenizer = /** @class */ (function () { - function Tokenizer(options, cbs) { - var _a; - /** The current state the tokenizer is in. */ - this._state = 1 /* Text */; - /** The read buffer. */ - this.buffer = ""; - /** The beginning of the section that is currently being read. */ - this.sectionStart = 0; - /** The index within the buffer that we are currently looking at. */ - this._index = 0; - /** - * Data that has already been processed will be removed from the buffer occasionally. - * `_bufferOffset` keeps track of how many characters have been removed, to make sure position information is accurate. - */ - this.bufferOffset = 0; - /** Some behavior, eg. when decoding entities, is done while we are in another state. This keeps track of the other state type. */ - this.baseState = 1 /* Text */; - /** For special parsing behavior inside of script and style tags. */ - this.special = 1 /* None */; - /** Indicates whether the tokenizer has been paused. */ - this.running = true; - /** Indicates whether the tokenizer has finished running / `.end` has been called. */ - this.ended = false; - this.cbs = cbs; - this.xmlMode = !!(options === null || options === void 0 ? void 0 : options.xmlMode); - this.decodeEntities = (_a = options === null || options === void 0 ? void 0 : options.decodeEntities) !== null && _a !== void 0 ? _a : true; + t.unshift(SCOPE_TOKEN); } - Tokenizer.prototype.reset = function () { - this._state = 1 /* Text */; - this.buffer = ""; - this.sectionStart = 0; - this._index = 0; - this.bufferOffset = 0; - this.baseState = 1 /* Text */; - this.special = 1 /* None */; - this.running = true; - this.ended = false; - }; - Tokenizer.prototype.write = function (chunk) { - if (this.ended) - this.cbs.onerror(Error(".write() after done!")); - this.buffer += chunk; - this.parse(); - }; - Tokenizer.prototype.end = function (chunk) { - if (this.ended) - this.cbs.onerror(Error(".end() after done!")); - if (chunk) - this.write(chunk); - this.ended = true; - if (this.running) - this.finish(); - }; - Tokenizer.prototype.pause = function () { - this.running = false; - }; - Tokenizer.prototype.resume = function () { - this.running = true; - if (this._index < this.buffer.length) { - this.parse(); - } - if (this.ended) { - this.finish(); - } - }; - /** - * The current index within all of the written data. - */ - Tokenizer.prototype.getAbsoluteIndex = function () { - return this.bufferOffset + this._index; - }; - Tokenizer.prototype.stateText = function (c) { - if (c === "<") { - if (this._index > this.sectionStart) { - this.cbs.ontext(this.getSection()); +} +function compileToken(token, options, context) { + var _a; + token = token.filter(function (t) { return t.length > 0; }); + token.forEach(sort_1.default); + context = (_a = options.context) !== null && _a !== void 0 ? _a : context; + var isArrayContext = Array.isArray(context); + var finalContext = context && (Array.isArray(context) ? context : [context]); + absolutize(token, options, finalContext); + var shouldTestNextSiblings = false; + var query = token + .map(function (rules) { + if (rules.length >= 2) { + var first = rules[0], second = rules[1]; + if (first.type !== "pseudo" || first.name !== "scope") { + // Ignore } - this._state = 2 /* BeforeTagName */; - this.sectionStart = this._index; - } - else if (this.decodeEntities && - c === "&" && - (this.special === 1 /* None */ || this.special === 4 /* Title */)) { - if (this._index > this.sectionStart) { - this.cbs.ontext(this.getSection()); + else if (isArrayContext && second.type === "descendant") { + rules[1] = FLEXIBLE_DESCENDANT_TOKEN; + } + else if (second.type === "adjacent" || + second.type === "sibling") { + shouldTestNextSiblings = true; } - this.baseState = 1 /* Text */; - this._state = 62 /* BeforeEntity */; - this.sectionStart = this._index; } + return compileRules(rules, options, finalContext); + }) + .reduce(reduceRules, boolbase_1.falseFunc); + query.shouldTestNextSiblings = shouldTestNextSiblings; + return query; +} +exports.compileToken = compileToken; +function compileRules(rules, options, context) { + var _a; + return rules.reduce(function (previous, rule) { + return previous === boolbase_1.falseFunc + ? boolbase_1.falseFunc + : general_1.compileGeneralSelector(previous, rule, options, context, compileToken); + }, (_a = options.rootFunc) !== null && _a !== void 0 ? _a : boolbase_1.trueFunc); +} +function reduceRules(a, b) { + if (b === boolbase_1.falseFunc || a === boolbase_1.trueFunc) { + return a; + } + if (a === boolbase_1.falseFunc || b === boolbase_1.trueFunc) { + return b; + } + return function combine(elem) { + return a(elem) || b(elem); }; - /** - * HTML only allows ASCII alpha characters (a-z and A-Z) at the beginning of a tag name. - * - * XML allows a lot more characters here (@see https://www.w3.org/TR/REC-xml/#NT-NameStartChar). - * We allow anything that wouldn't end the tag. - */ - Tokenizer.prototype.isTagStartChar = function (c) { - return (isASCIIAlpha(c) || - (this.xmlMode && !whitespace(c) && c !== "/" && c !== ">")); - }; - Tokenizer.prototype.stateBeforeTagName = function (c) { - if (c === "/") { - this._state = 5 /* BeforeClosingTagName */; +} + + +/***/ }), +/* 314 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +var procedure_1 = __webpack_require__(315); +var attributes = { + exists: 10, + equals: 8, + not: 7, + start: 6, + end: 6, + any: 5, + hyphen: 4, + element: 4, +}; +/** + * Sort the parts of the passed selector, + * as there is potential for optimization + * (some types of selectors are faster than others) + * + * @param arr Selector to sort + */ +function sortByProcedure(arr) { + var procs = arr.map(getProcedure); + for (var i = 1; i < arr.length; i++) { + var procNew = procs[i]; + if (procNew < 0) + continue; + for (var j = i - 1; j >= 0 && procNew < procs[j]; j--) { + var token = arr[j + 1]; + arr[j + 1] = arr[j]; + arr[j] = token; + procs[j + 1] = procs[j]; + procs[j] = procNew; } - else if (c === "<") { - this.cbs.ontext(this.getSection()); - this.sectionStart = this._index; + } +} +exports.default = sortByProcedure; +function getProcedure(token) { + var proc = procedure_1.procedure[token.type]; + if (token.type === "attribute") { + proc = attributes[token.action]; + if (proc === attributes.equals && token.name === "id") { + // Prefer ID selectors (eg. #ID) + proc = 9; } - else if (c === ">" || - this.special !== 1 /* None */ || - whitespace(c)) { - this._state = 1 /* Text */; + if (token.ignoreCase) { + /* + * IgnoreCase adds some overhead, prefer "normal" token + * this is a binary operation, to ensure it's still an int + */ + proc >>= 1; } - else if (c === "!") { - this._state = 15 /* BeforeDeclaration */; - this.sectionStart = this._index + 1; + } + else if (token.type === "pseudo") { + if (!token.data) { + proc = 3; } - else if (c === "?") { - this._state = 17 /* InProcessingInstruction */; - this.sectionStart = this._index + 1; + else if (token.name === "has" || token.name === "contains") { + proc = 0; // Expensive in any case } - else if (!this.isTagStartChar(c)) { - this._state = 1 /* Text */; + else if (Array.isArray(token.data)) { + // "matches" and "not" + proc = 0; + for (var i = 0; i < token.data.length; i++) { + // TODO better handling of complex selectors + if (token.data[i].length !== 1) + continue; + var cur = getProcedure(token.data[i][0]); + // Avoid executing :has or :contains + if (cur === 0) { + proc = 0; + break; + } + if (cur > proc) + proc = cur; + } + if (token.data.length > 1 && proc > 0) + proc -= 1; } else { - this._state = - !this.xmlMode && (c === "s" || c === "S") - ? 32 /* BeforeSpecialS */ - : !this.xmlMode && (c === "t" || c === "T") - ? 52 /* BeforeSpecialT */ - : 3 /* InTagName */; - this.sectionStart = this._index; - } - }; - Tokenizer.prototype.stateInTagName = function (c) { - if (c === "/" || c === ">" || whitespace(c)) { - this.emitToken("onopentagname"); - this._state = 8 /* BeforeAttributeName */; - this._index--; - } - }; - Tokenizer.prototype.stateBeforeClosingTagName = function (c) { - if (whitespace(c)) { - // Ignore - } - else if (c === ">") { - this._state = 1 /* Text */; + proc = 1; } - else if (this.special !== 1 /* None */) { - if (this.special !== 4 /* Title */ && (c === "s" || c === "S")) { - this._state = 33 /* BeforeSpecialSEnd */; + } + return proc; +} + + +/***/ }), +/* 315 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.isTraversal = exports.procedure = void 0; +exports.procedure = { + universal: 50, + tag: 30, + attribute: 1, + pseudo: 0, + "pseudo-element": 0, + descendant: -1, + child: -1, + parent: -1, + sibling: -1, + adjacent: -1, + _flexibleDescendant: -1, +}; +function isTraversal(t) { + return exports.procedure[t.type] < 0; +} +exports.isTraversal = isTraversal; + + +/***/ }), +/* 316 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.compileGeneralSelector = void 0; +var attributes_1 = __webpack_require__(317); +var pseudo_selectors_1 = __webpack_require__(318); +/* + * All available rules + */ +function compileGeneralSelector(next, selector, options, context, compileToken) { + var adapter = options.adapter, equals = options.equals; + switch (selector.type) { + case "pseudo-element": + throw new Error("Pseudo-elements are not supported by css-select"); + case "attribute": + if (options.strict && + (selector.ignoreCase || selector.action === "not")) { + throw new Error("Unsupported attribute selector"); } - else if (this.special === 4 /* Title */ && - (c === "t" || c === "T")) { - this._state = 53 /* BeforeSpecialTEnd */; + return attributes_1.attributeRules[selector.action](next, selector, options); + case "pseudo": + return pseudo_selectors_1.compilePseudoSelector(next, selector, options, context, compileToken); + // Tags + case "tag": + return function tag(elem) { + return adapter.getName(elem) === selector.name && next(elem); + }; + // Traversal + case "descendant": + if (options.cacheResults === false || + typeof WeakSet === "undefined") { + return function descendant(elem) { + var current = elem; + while ((current = adapter.getParent(current))) { + if (adapter.isTag(current) && next(current)) { + return true; + } + } + return false; + }; } - else { - this._state = 1 /* Text */; - this._index--; + // @ts-expect-error `ElementNode` is not extending object + // eslint-disable-next-line no-case-declarations + var isFalseCache_1 = new WeakSet(); + return function cachedDescendant(elem) { + var current = elem; + while ((current = adapter.getParent(current))) { + if (!isFalseCache_1.has(current)) { + if (adapter.isTag(current) && next(current)) { + return true; + } + isFalseCache_1.add(current); + } + } + return false; + }; + case "_flexibleDescendant": + // Include element itself, only used while querying an array + return function flexibleDescendant(elem) { + var current = elem; + do { + if (adapter.isTag(current) && next(current)) + return true; + } while ((current = adapter.getParent(current))); + return false; + }; + case "parent": + if (options.strict) { + throw new Error("Parent selector isn't part of CSS3"); } + return function parent(elem) { + return adapter + .getChildren(elem) + .some(function (elem) { return adapter.isTag(elem) && next(elem); }); + }; + case "child": + return function child(elem) { + var parent = adapter.getParent(elem); + return !!parent && adapter.isTag(parent) && next(parent); + }; + case "sibling": + return function sibling(elem) { + var siblings = adapter.getSiblings(elem); + for (var i = 0; i < siblings.length; i++) { + var currentSibling = siblings[i]; + if (equals(elem, currentSibling)) + break; + if (adapter.isTag(currentSibling) && next(currentSibling)) { + return true; + } + } + return false; + }; + case "adjacent": + return function adjacent(elem) { + var siblings = adapter.getSiblings(elem); + var lastElement; + for (var i = 0; i < siblings.length; i++) { + var currentSibling = siblings[i]; + if (equals(elem, currentSibling)) + break; + if (adapter.isTag(currentSibling)) { + lastElement = currentSibling; + } + } + return !!lastElement && next(lastElement); + }; + case "universal": + return next; + } +} +exports.compileGeneralSelector = compileGeneralSelector; + + +/***/ }), +/* 317 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.attributeRules = void 0; +var boolbase_1 = __webpack_require__(312); +/** + * All reserved characters in a regex, used for escaping. + * + * Taken from XRegExp, (c) 2007-2020 Steven Levithan under the MIT license + * https://github.com/slevithan/xregexp/blob/95eeebeb8fac8754d54eafe2b4743661ac1cf028/src/xregexp.js#L794 + */ +var reChars = /[-[\]{}()*+?.,\\^$|#\s]/g; +function escapeRegex(value) { + return value.replace(reChars, "\\$&"); +} +/** + * Attribute selectors + */ +exports.attributeRules = { + equals: function (next, data, _a) { + var adapter = _a.adapter; + var name = data.name; + var value = data.value; + if (data.ignoreCase) { + value = value.toLowerCase(); + return function (elem) { + var _a; + return ((_a = adapter.getAttributeValue(elem, name)) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === + value && next(elem); + }; } - else if (!this.isTagStartChar(c)) { - this._state = 20 /* InSpecialComment */; - this.sectionStart = this._index; - } - else { - this._state = 6 /* InClosingTagName */; - this.sectionStart = this._index; - } - }; - Tokenizer.prototype.stateInClosingTagName = function (c) { - if (c === ">" || whitespace(c)) { - this.emitToken("onclosetag"); - this._state = 7 /* AfterClosingTagName */; - this._index--; - } - }; - Tokenizer.prototype.stateAfterClosingTagName = function (c) { - // Skip everything until ">" - if (c === ">") { - this._state = 1 /* Text */; - this.sectionStart = this._index + 1; + return function (elem) { + return adapter.getAttributeValue(elem, name) === value && next(elem); + }; + }, + hyphen: function (next, data, _a) { + var adapter = _a.adapter; + var name = data.name; + var value = data.value; + var len = value.length; + if (data.ignoreCase) { + value = value.toLowerCase(); + return function hyphenIC(elem) { + var attr = adapter.getAttributeValue(elem, name); + return (attr != null && + (attr.length === len || attr.charAt(len) === "-") && + attr.substr(0, len).toLowerCase() === value && + next(elem)); + }; } - }; - Tokenizer.prototype.stateBeforeAttributeName = function (c) { - if (c === ">") { - this.cbs.onopentagend(); - this._state = 1 /* Text */; - this.sectionStart = this._index + 1; + return function hyphen(elem) { + var attr = adapter.getAttributeValue(elem, name); + return (attr != null && + attr.substr(0, len) === value && + (attr.length === len || attr.charAt(len) === "-") && + next(elem)); + }; + }, + element: function (next, _a, _b) { + var name = _a.name, value = _a.value, ignoreCase = _a.ignoreCase; + var adapter = _b.adapter; + if (/\s/.test(value)) { + return boolbase_1.falseFunc; } - else if (c === "/") { - this._state = 4 /* InSelfClosingTag */; - } - else if (!whitespace(c)) { - this._state = 9 /* InAttributeName */; - this.sectionStart = this._index; - } - }; - Tokenizer.prototype.stateInSelfClosingTag = function (c) { - if (c === ">") { - this.cbs.onselfclosingtag(); - this._state = 1 /* Text */; - this.sectionStart = this._index + 1; - this.special = 1 /* None */; // Reset special state, in case of self-closing special tags - } - else if (!whitespace(c)) { - this._state = 8 /* BeforeAttributeName */; - this._index--; - } - }; - Tokenizer.prototype.stateInAttributeName = function (c) { - if (c === "=" || c === "/" || c === ">" || whitespace(c)) { - this.cbs.onattribname(this.getSection()); - this.sectionStart = -1; - this._state = 10 /* AfterAttributeName */; - this._index--; - } - }; - Tokenizer.prototype.stateAfterAttributeName = function (c) { - if (c === "=") { - this._state = 11 /* BeforeAttributeValue */; - } - else if (c === "/" || c === ">") { - this.cbs.onattribend(undefined); - this._state = 8 /* BeforeAttributeName */; - this._index--; - } - else if (!whitespace(c)) { - this.cbs.onattribend(undefined); - this._state = 9 /* InAttributeName */; - this.sectionStart = this._index; - } - }; - Tokenizer.prototype.stateBeforeAttributeValue = function (c) { - if (c === '"') { - this._state = 12 /* InAttributeValueDq */; - this.sectionStart = this._index + 1; - } - else if (c === "'") { - this._state = 13 /* InAttributeValueSq */; - this.sectionStart = this._index + 1; - } - else if (!whitespace(c)) { - this._state = 14 /* InAttributeValueNq */; - this.sectionStart = this._index; - this._index--; // Reconsume token - } - }; - Tokenizer.prototype.handleInAttributeValue = function (c, quote) { - if (c === quote) { - this.emitToken("onattribdata"); - this.cbs.onattribend(quote); - this._state = 8 /* BeforeAttributeName */; - } - else if (this.decodeEntities && c === "&") { - this.emitToken("onattribdata"); - this.baseState = this._state; - this._state = 62 /* BeforeEntity */; - this.sectionStart = this._index; - } - }; - Tokenizer.prototype.stateInAttributeValueDoubleQuotes = function (c) { - this.handleInAttributeValue(c, '"'); - }; - Tokenizer.prototype.stateInAttributeValueSingleQuotes = function (c) { - this.handleInAttributeValue(c, "'"); - }; - Tokenizer.prototype.stateInAttributeValueNoQuotes = function (c) { - if (whitespace(c) || c === ">") { - this.emitToken("onattribdata"); - this.cbs.onattribend(null); - this._state = 8 /* BeforeAttributeName */; - this._index--; - } - else if (this.decodeEntities && c === "&") { - this.emitToken("onattribdata"); - this.baseState = this._state; - this._state = 62 /* BeforeEntity */; - this.sectionStart = this._index; - } - }; - Tokenizer.prototype.stateBeforeDeclaration = function (c) { - this._state = - c === "[" - ? 23 /* BeforeCdata1 */ - : c === "-" - ? 18 /* BeforeComment */ - : 16 /* InDeclaration */; - }; - Tokenizer.prototype.stateInDeclaration = function (c) { - if (c === ">") { - this.cbs.ondeclaration(this.getSection()); - this._state = 1 /* Text */; - this.sectionStart = this._index + 1; - } - }; - Tokenizer.prototype.stateInProcessingInstruction = function (c) { - if (c === ">") { - this.cbs.onprocessinginstruction(this.getSection()); - this._state = 1 /* Text */; - this.sectionStart = this._index + 1; - } - }; - Tokenizer.prototype.stateBeforeComment = function (c) { - if (c === "-") { - this._state = 19 /* InComment */; - this.sectionStart = this._index + 1; - } - else { - this._state = 16 /* InDeclaration */; + var regex = new RegExp("(?:^|\\s)" + escapeRegex(value) + "(?:$|\\s)", ignoreCase ? "i" : ""); + return function element(elem) { + var attr = adapter.getAttributeValue(elem, name); + return attr != null && regex.test(attr) && next(elem); + }; + }, + exists: function (next, _a, _b) { + var name = _a.name; + var adapter = _b.adapter; + return function (elem) { return adapter.hasAttrib(elem, name) && next(elem); }; + }, + start: function (next, data, _a) { + var adapter = _a.adapter; + var name = data.name; + var value = data.value; + var len = value.length; + if (len === 0) { + return boolbase_1.falseFunc; } - }; - Tokenizer.prototype.stateInComment = function (c) { - if (c === "-") - this._state = 21 /* AfterComment1 */; - }; - Tokenizer.prototype.stateInSpecialComment = function (c) { - if (c === ">") { - this.cbs.oncomment(this.buffer.substring(this.sectionStart, this._index)); - this._state = 1 /* Text */; - this.sectionStart = this._index + 1; + if (data.ignoreCase) { + value = value.toLowerCase(); + return function (elem) { + var _a; + return ((_a = adapter + .getAttributeValue(elem, name)) === null || _a === void 0 ? void 0 : _a.substr(0, len).toLowerCase()) === value && next(elem); + }; } - }; - Tokenizer.prototype.stateAfterComment1 = function (c) { - if (c === "-") { - this._state = 22 /* AfterComment2 */; + return function (elem) { + var _a; + return !!((_a = adapter.getAttributeValue(elem, name)) === null || _a === void 0 ? void 0 : _a.startsWith(value)) && + next(elem); + }; + }, + end: function (next, data, _a) { + var adapter = _a.adapter; + var name = data.name; + var value = data.value; + var len = -value.length; + if (len === 0) { + return boolbase_1.falseFunc; } - else { - this._state = 19 /* InComment */; + if (data.ignoreCase) { + value = value.toLowerCase(); + return function (elem) { + var _a; + return ((_a = adapter + .getAttributeValue(elem, name)) === null || _a === void 0 ? void 0 : _a.substr(len).toLowerCase()) === value && next(elem); + }; } - }; - Tokenizer.prototype.stateAfterComment2 = function (c) { - if (c === ">") { - // Remove 2 trailing chars - this.cbs.oncomment(this.buffer.substring(this.sectionStart, this._index - 2)); - this._state = 1 /* Text */; - this.sectionStart = this._index + 1; + return function (elem) { + var _a; + return !!((_a = adapter.getAttributeValue(elem, name)) === null || _a === void 0 ? void 0 : _a.endsWith(value)) && + next(elem); + }; + }, + any: function (next, data, _a) { + var adapter = _a.adapter; + var name = data.name, value = data.value; + if (value === "") { + return boolbase_1.falseFunc; } - else if (c !== "-") { - this._state = 19 /* InComment */; + if (data.ignoreCase) { + var regex_1 = new RegExp(escapeRegex(value), "i"); + return function anyIC(elem) { + var attr = adapter.getAttributeValue(elem, name); + return attr != null && regex_1.test(attr) && next(elem); + }; } - // Else: stay in AFTER_COMMENT_2 (`--->`) - }; - Tokenizer.prototype.stateBeforeCdata6 = function (c) { - if (c === "[") { - this._state = 29 /* InCdata */; - this.sectionStart = this._index + 1; + return function (elem) { + var _a; + return !!((_a = adapter.getAttributeValue(elem, name)) === null || _a === void 0 ? void 0 : _a.includes(value)) && + next(elem); + }; + }, + not: function (next, data, _a) { + var adapter = _a.adapter; + var name = data.name; + var value = data.value; + if (value === "") { + return function (elem) { + return !!adapter.getAttributeValue(elem, name) && next(elem); + }; } - else { - this._state = 16 /* InDeclaration */; - this._index--; + else if (data.ignoreCase) { + value = value.toLowerCase(); + return function (elem) { + var attr = adapter.getAttributeValue(elem, name); + return (attr != null && + attr.toLocaleLowerCase() !== value && + next(elem)); + }; } + return function (elem) { + return adapter.getAttributeValue(elem, name) !== value && next(elem); + }; + }, +}; + + +/***/ }), +/* 318 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.compilePseudoSelector = exports.pseudos = exports.filters = void 0; +/* + * Pseudo selectors + * + * Pseudo selectors are available in three forms: + * + * 1. Filters are called when the selector is compiled and return a function + * that has to return either false, or the results of `next()`. + * 2. Pseudos are called on execution. They have to return a boolean. + * 3. Subselects work like filters, but have an embedded selector that will be run separately. + * + * Filters are great if you want to do some pre-processing, or change the call order + * of `next()` and your code. + * Pseudos should be used to implement simple checks. + */ +var boolbase_1 = __webpack_require__(312); +var filters_1 = __webpack_require__(319); +Object.defineProperty(exports, "filters", { enumerable: true, get: function () { return filters_1.filters; } }); +var pseudos_1 = __webpack_require__(323); +Object.defineProperty(exports, "pseudos", { enumerable: true, get: function () { return pseudos_1.pseudos; } }); +var subselects_1 = __webpack_require__(324); +// FIXME This is pretty hacky +var reCSS3 = /^(?:(?:nth|last|first|only)-(?:child|of-type)|root|empty|(?:en|dis)abled|checked|not)$/; +function compilePseudoSelector(next, selector, options, context, compileToken) { + var name = selector.name, data = selector.data; + if (options.strict && !reCSS3.test(name)) { + throw new Error(":" + name + " isn't part of CSS3"); + } + if (Array.isArray(data)) { + return subselects_1.subselects[name](next, data, options, context, compileToken); + } + if (name in filters_1.filters) { + return filters_1.filters[name](next, data, options, context); + } + if (name in pseudos_1.pseudos) { + var pseudo_1 = pseudos_1.pseudos[name]; + pseudos_1.verifyPseudoArgs(pseudo_1, name, data); + return pseudo_1 === boolbase_1.falseFunc + ? boolbase_1.falseFunc + : next === boolbase_1.trueFunc + ? function (elem) { return pseudo_1(elem, options, data); } + : function (elem) { return pseudo_1(elem, options, data) && next(elem); }; + } + throw new Error("unmatched pseudo-class :" + name); +} +exports.compilePseudoSelector = compilePseudoSelector; + + +/***/ }), +/* 319 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.filters = void 0; +var nth_check_1 = __importDefault(__webpack_require__(320)); +var boolbase_1 = __webpack_require__(312); +var attributes_1 = __webpack_require__(317); +var checkAttrib = attributes_1.attributeRules.equals; +function getAttribFunc(name, value) { + var data = { + type: "attribute", + action: "equals", + ignoreCase: false, + namespace: null, + name: name, + value: value, }; - Tokenizer.prototype.stateInCdata = function (c) { - if (c === "]") - this._state = 30 /* AfterCdata1 */; - }; - Tokenizer.prototype.stateAfterCdata1 = function (c) { - if (c === "]") - this._state = 31 /* AfterCdata2 */; - else - this._state = 29 /* InCdata */; + return function attribFunc(next, _rule, options) { + return checkAttrib(next, data, options); }; - Tokenizer.prototype.stateAfterCdata2 = function (c) { - if (c === ">") { - // Remove 2 trailing chars - this.cbs.oncdata(this.buffer.substring(this.sectionStart, this._index - 2)); - this._state = 1 /* Text */; - this.sectionStart = this._index + 1; - } - else if (c !== "]") { - this._state = 29 /* InCdata */; - } - // Else: stay in AFTER_CDATA_2 (`]]]>`) +} +function getChildFunc(next, adapter) { + return function (elem) { + var parent = adapter.getParent(elem); + return !!parent && adapter.isTag(parent) && next(elem); }; - Tokenizer.prototype.stateBeforeSpecialS = function (c) { - if (c === "c" || c === "C") { - this._state = 34 /* BeforeScript1 */; +} +exports.filters = { + contains: function (next, text, _a) { + var adapter = _a.adapter; + return function contains(elem) { + return next(elem) && adapter.getText(elem).includes(text); + }; + }, + icontains: function (next, text, _a) { + var adapter = _a.adapter; + var itext = text.toLowerCase(); + return function icontains(elem) { + return (next(elem) && + adapter.getText(elem).toLowerCase().includes(itext)); + }; + }, + // Location specific methods + "nth-child": function (next, rule, _a) { + var adapter = _a.adapter, equals = _a.equals; + var func = nth_check_1.default(rule); + if (func === boolbase_1.falseFunc) + return boolbase_1.falseFunc; + if (func === boolbase_1.trueFunc) + return getChildFunc(next, adapter); + return function nthChild(elem) { + var siblings = adapter.getSiblings(elem); + var pos = 0; + for (var i = 0; i < siblings.length; i++) { + if (equals(elem, siblings[i])) + break; + if (adapter.isTag(siblings[i])) { + pos++; + } + } + return func(pos) && next(elem); + }; + }, + "nth-last-child": function (next, rule, _a) { + var adapter = _a.adapter, equals = _a.equals; + var func = nth_check_1.default(rule); + if (func === boolbase_1.falseFunc) + return boolbase_1.falseFunc; + if (func === boolbase_1.trueFunc) + return getChildFunc(next, adapter); + return function nthLastChild(elem) { + var siblings = adapter.getSiblings(elem); + var pos = 0; + for (var i = siblings.length - 1; i >= 0; i--) { + if (equals(elem, siblings[i])) + break; + if (adapter.isTag(siblings[i])) { + pos++; + } + } + return func(pos) && next(elem); + }; + }, + "nth-of-type": function (next, rule, _a) { + var adapter = _a.adapter, equals = _a.equals; + var func = nth_check_1.default(rule); + if (func === boolbase_1.falseFunc) + return boolbase_1.falseFunc; + if (func === boolbase_1.trueFunc) + return getChildFunc(next, adapter); + return function nthOfType(elem) { + var siblings = adapter.getSiblings(elem); + var pos = 0; + for (var i = 0; i < siblings.length; i++) { + var currentSibling = siblings[i]; + if (equals(elem, currentSibling)) + break; + if (adapter.isTag(currentSibling) && + adapter.getName(currentSibling) === adapter.getName(elem)) { + pos++; + } + } + return func(pos) && next(elem); + }; + }, + "nth-last-of-type": function (next, rule, _a) { + var adapter = _a.adapter, equals = _a.equals; + var func = nth_check_1.default(rule); + if (func === boolbase_1.falseFunc) + return boolbase_1.falseFunc; + if (func === boolbase_1.trueFunc) + return getChildFunc(next, adapter); + return function nthLastOfType(elem) { + var siblings = adapter.getSiblings(elem); + var pos = 0; + for (var i = siblings.length - 1; i >= 0; i--) { + var currentSibling = siblings[i]; + if (equals(elem, currentSibling)) + break; + if (adapter.isTag(currentSibling) && + adapter.getName(currentSibling) === adapter.getName(elem)) { + pos++; + } + } + return func(pos) && next(elem); + }; + }, + // TODO determine the actual root element + root: function (next, _rule, _a) { + var adapter = _a.adapter; + return function (elem) { + var parent = adapter.getParent(elem); + return (parent == null || !adapter.isTag(parent)) && next(elem); + }; + }, + scope: function (next, rule, options, context) { + var equals = options.equals; + if (!context || context.length === 0) { + // Equivalent to :root + return exports.filters.root(next, rule, options); } - else if (c === "t" || c === "T") { - this._state = 44 /* BeforeStyle1 */; + if (context.length === 1) { + // NOTE: can't be unpacked, as :has uses this for side-effects + return function (elem) { return equals(context[0], elem) && next(elem); }; } - else { - this._state = 3 /* InTagName */; - this._index--; // Consume the token again + return function (elem) { return context.includes(elem) && next(elem); }; + }, + // JQuery extensions (others follow as pseudos) + checkbox: getAttribFunc("type", "checkbox"), + file: getAttribFunc("type", "file"), + password: getAttribFunc("type", "password"), + radio: getAttribFunc("type", "radio"), + reset: getAttribFunc("type", "reset"), + image: getAttribFunc("type", "image"), + submit: getAttribFunc("type", "submit"), + // Dynamic state pseudos. These depend on optional Adapter methods. + hover: function (next, _rule, _a) { + var adapter = _a.adapter; + var isHovered = adapter.isHovered; + if (typeof isHovered !== "function") { + return boolbase_1.falseFunc; } - }; - Tokenizer.prototype.stateBeforeSpecialSEnd = function (c) { - if (this.special === 2 /* Script */ && (c === "c" || c === "C")) { - this._state = 39 /* AfterScript1 */; + return function hover(elem) { + return isHovered(elem) && next(elem); + }; + }, + visited: function (next, _rule, _a) { + var adapter = _a.adapter; + var isVisited = adapter.isVisited; + if (typeof isVisited !== "function") { + return boolbase_1.falseFunc; } - else if (this.special === 3 /* Style */ && (c === "t" || c === "T")) { - this._state = 48 /* AfterStyle1 */; + return function visited(elem) { + return isVisited(elem) && next(elem); + }; + }, + active: function (next, _rule, _a) { + var adapter = _a.adapter; + var isActive = adapter.isActive; + if (typeof isActive !== "function") { + return boolbase_1.falseFunc; } - else - this._state = 1 /* Text */; - }; - Tokenizer.prototype.stateBeforeSpecialLast = function (c, special) { - if (c === "/" || c === ">" || whitespace(c)) { - this.special = special; + return function active(elem) { + return isActive(elem) && next(elem); + }; + }, +}; + + +/***/ }), +/* 320 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.compile = exports.parse = void 0; +var parse_1 = __webpack_require__(321); +Object.defineProperty(exports, "parse", { enumerable: true, get: function () { return parse_1.parse; } }); +var compile_1 = __webpack_require__(322); +Object.defineProperty(exports, "compile", { enumerable: true, get: function () { return compile_1.compile; } }); +/** + * Parses and compiles a formula to a highly optimized function. + * Combination of `parse` and `compile`. + * + * If the formula doesn't match any elements, + * it returns [`boolbase`](https://github.com/fb55/boolbase)'s `falseFunc`. + * Otherwise, a function accepting an _index_ is returned, which returns + * whether or not the passed _index_ matches the formula. + * + * Note: The nth-rule starts counting at `1`, the returned function at `0`. + * + * @param formula The formula to compile. + * @example + * const check = nthCheck("2n+3"); + * + * check(0); // `false` + * check(1); // `false` + * check(2); // `true` + * check(3); // `false` + * check(4); // `true` + * check(5); // `false` + * check(6); // `true` + */ +function nthCheck(formula) { + return compile_1.compile(parse_1.parse(formula)); +} +exports.default = nthCheck; + + +/***/ }), +/* 321 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +// Following http://www.w3.org/TR/css3-selectors/#nth-child-pseudo +Object.defineProperty(exports, "__esModule", { value: true }); +exports.parse = void 0; +// [ ['-'|'+']? INTEGER? {N} [ S* ['-'|'+'] S* INTEGER ]? +var RE_NTH_ELEMENT = /^([+-]?\d*n)?\s*(?:([+-]?)\s*(\d+))?$/; +/** + * Parses an expression. + * + * @throws An `Error` if parsing fails. + * @returns An array containing the integer step size and the integer offset of the nth rule. + * @example nthCheck.parse("2n+3"); // returns [2, 3] + */ +function parse(formula) { + formula = formula.trim().toLowerCase(); + if (formula === "even") { + return [2, 0]; + } + else if (formula === "odd") { + return [2, 1]; + } + var parsed = formula.match(RE_NTH_ELEMENT); + if (!parsed) { + throw new Error("n-th rule couldn't be parsed ('" + formula + "')"); + } + var a; + if (parsed[1]) { + a = parseInt(parsed[1], 10); + if (isNaN(a)) { + a = parsed[1].startsWith("-") ? -1 : 1; } - this._state = 3 /* InTagName */; - this._index--; // Consume the token again - }; - Tokenizer.prototype.stateAfterSpecialLast = function (c, sectionStartOffset) { - if (c === ">" || whitespace(c)) { - this.special = 1 /* None */; - this._state = 6 /* InClosingTagName */; - this.sectionStart = this._index - sectionStartOffset; - this._index--; // Reconsume the token + } + else + a = 0; + var b = (parsed[2] === "-" ? -1 : 1) * + (parsed[3] ? parseInt(parsed[3], 10) : 0); + return [a, b]; +} +exports.parse = parse; + + +/***/ }), +/* 322 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.compile = void 0; +var boolbase_1 = __webpack_require__(312); +/** + * Returns a function that checks if an elements index matches the given rule + * highly optimized to return the fastest solution. + * + * @param parsed A tuple [a, b], as returned by `parse`. + * @returns A highly optimized function that returns whether an index matches the nth-check. + * @example + * const check = nthCheck.compile([2, 3]); + * + * check(0); // `false` + * check(1); // `false` + * check(2); // `true` + * check(3); // `false` + * check(4); // `true` + * check(5); // `false` + * check(6); // `true` + */ +function compile(parsed) { + var a = parsed[0]; + // Subtract 1 from `b`, to convert from one- to zero-indexed. + var b = parsed[1] - 1; + /* + * When `b <= 0`, `a * n` won't be lead to any matches for `a < 0`. + * Besides, the specification states that no elements are + * matched when `a` and `b` are 0. + * + * `b < 0` here as we subtracted 1 from `b` above. + */ + if (b < 0 && a <= 0) + return boolbase_1.falseFunc; + // When `a` is in the range -1..1, it matches any element (so only `b` is checked). + if (a === -1) + return function (index) { return index <= b; }; + if (a === 0) + return function (index) { return index === b; }; + // When `b <= 0` and `a === 1`, they match any element. + if (a === 1) + return b < 0 ? boolbase_1.trueFunc : function (index) { return index >= b; }; + /* + * Otherwise, modulo can be used to check if there is a match. + * + * Modulo doesn't care about the sign, so let's use `a`s absolute value. + */ + var absA = Math.abs(a); + // Get `b mod a`, + a if this is negative. + var bMod = ((b % absA) + absA) % absA; + return a > 1 + ? function (index) { return index >= b && index % absA === bMod; } + : function (index) { return index <= b && index % absA === bMod; }; +} +exports.compile = compile; + + +/***/ }), +/* 323 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.verifyPseudoArgs = exports.pseudos = void 0; +var isLinkTag = namePseudo(["a", "area", "link"]); +// While filters are precompiled, pseudos get called when they are needed +exports.pseudos = { + empty: function (elem, _a) { + var adapter = _a.adapter; + return !adapter.getChildren(elem).some(function (elem) { + // FIXME: `getText` call is potentially expensive. + return adapter.isTag(elem) || adapter.getText(elem) !== ""; + }); + }, + "first-child": function (elem, _a) { + var adapter = _a.adapter, equals = _a.equals; + var firstChild = adapter + .getSiblings(elem) + .find(function (elem) { return adapter.isTag(elem); }); + return firstChild != null && equals(elem, firstChild); + }, + "last-child": function (elem, _a) { + var adapter = _a.adapter, equals = _a.equals; + var siblings = adapter.getSiblings(elem); + for (var i = siblings.length - 1; i >= 0; i--) { + if (equals(elem, siblings[i])) + return true; + if (adapter.isTag(siblings[i])) + break; } - else - this._state = 1 /* Text */; - }; - // For entities terminated with a semicolon - Tokenizer.prototype.parseFixedEntity = function (map) { - if (map === void 0) { map = this.xmlMode ? xml_json_1.default : entities_json_1.default; } - // Offset = 1 - if (this.sectionStart + 1 < this._index) { - var entity = this.buffer.substring(this.sectionStart + 1, this._index); - if (Object.prototype.hasOwnProperty.call(map, entity)) { - this.emitPartial(map[entity]); - this.sectionStart = this._index + 1; + return false; + }, + "first-of-type": function (elem, _a) { + var adapter = _a.adapter, equals = _a.equals; + var siblings = adapter.getSiblings(elem); + var elemName = adapter.getName(elem); + for (var i = 0; i < siblings.length; i++) { + var currentSibling = siblings[i]; + if (equals(elem, currentSibling)) + return true; + if (adapter.isTag(currentSibling) && + adapter.getName(currentSibling) === elemName) { + break; } } - }; - // Parses legacy entities (without trailing semicolon) - Tokenizer.prototype.parseLegacyEntity = function () { - var start = this.sectionStart + 1; - // The max length of legacy entities is 6 - var limit = Math.min(this._index - start, 6); - while (limit >= 2) { - // The min length of legacy entities is 2 - var entity = this.buffer.substr(start, limit); - if (Object.prototype.hasOwnProperty.call(legacy_json_1.default, entity)) { - this.emitPartial(legacy_json_1.default[entity]); - this.sectionStart += limit + 1; - return; + return false; + }, + "last-of-type": function (elem, _a) { + var adapter = _a.adapter, equals = _a.equals; + var siblings = adapter.getSiblings(elem); + var elemName = adapter.getName(elem); + for (var i = siblings.length - 1; i >= 0; i--) { + var currentSibling = siblings[i]; + if (equals(elem, currentSibling)) + return true; + if (adapter.isTag(currentSibling) && + adapter.getName(currentSibling) === elemName) { + break; } - limit--; } - }; - Tokenizer.prototype.stateInNamedEntity = function (c) { - if (c === ";") { - this.parseFixedEntity(); - // Retry as legacy entity if entity wasn't parsed - if (this.baseState === 1 /* Text */ && - this.sectionStart + 1 < this._index && - !this.xmlMode) { - this.parseLegacyEntity(); - } - this._state = this.baseState; + return false; + }, + "only-of-type": function (elem, _a) { + var adapter = _a.adapter, equals = _a.equals; + var elemName = adapter.getName(elem); + return adapter + .getSiblings(elem) + .every(function (sibling) { + return equals(elem, sibling) || + !adapter.isTag(sibling) || + adapter.getName(sibling) !== elemName; + }); + }, + "only-child": function (elem, _a) { + var adapter = _a.adapter, equals = _a.equals; + return adapter + .getSiblings(elem) + .every(function (sibling) { return equals(elem, sibling) || !adapter.isTag(sibling); }); + }, + // :matches(a, area, link)[href] + "any-link": function (elem, options) { + return (isLinkTag(elem, options) && options.adapter.hasAttrib(elem, "href")); + }, + // :any-link:not(:visited) + link: function (elem, options) { + var _a, _b; + return (((_b = (_a = options.adapter).isVisited) === null || _b === void 0 ? void 0 : _b.call(_a, elem)) !== true && + exports.pseudos["any-link"](elem, options)); + }, + /* + * Forms + * to consider: :target + */ + // :matches([selected], select:not([multiple]):not(> option[selected]) > option:first-of-type) + selected: function (elem, _a) { + var adapter = _a.adapter, equals = _a.equals; + if (adapter.hasAttrib(elem, "selected")) + return true; + else if (adapter.getName(elem) !== "option") + return false; + // The first <option> in a <select> is also selected + var parent = adapter.getParent(elem); + if (!parent || + !adapter.isTag(parent) || + adapter.getName(parent) !== "select" || + adapter.hasAttrib(parent, "multiple")) { + return false; } - else if ((c < "0" || c > "9") && !isASCIIAlpha(c)) { - if (this.xmlMode || this.sectionStart + 1 === this._index) { - // Ignore - } - else if (this.baseState !== 1 /* Text */) { - if (c !== "=") { - // Parse as legacy entity, without allowing additional characters. - this.parseFixedEntity(legacy_json_1.default); + var siblings = adapter.getChildren(parent); + var sawElem = false; + for (var i = 0; i < siblings.length; i++) { + var currentSibling = siblings[i]; + if (adapter.isTag(currentSibling)) { + if (equals(elem, currentSibling)) { + sawElem = true; + } + else if (!sawElem) { + return false; + } + else if (adapter.hasAttrib(currentSibling, "selected")) { + return false; } } - else { - this.parseLegacyEntity(); - } - this._state = this.baseState; - this._index--; } + return sawElem; + }, + /* + * https://html.spec.whatwg.org/multipage/scripting.html#disabled-elements + * :matches( + * :matches(button, input, select, textarea, menuitem, optgroup, option)[disabled], + * optgroup[disabled] > option), + * fieldset[disabled] * //TODO not child of first <legend> + * ) + */ + disabled: function (elem, _a) { + var adapter = _a.adapter; + return adapter.hasAttrib(elem, "disabled"); + }, + enabled: function (elem, _a) { + var adapter = _a.adapter; + return !adapter.hasAttrib(elem, "disabled"); + }, + // :matches(:matches(:radio, :checkbox)[checked], :selected) (TODO menuitem) + checked: function (elem, options) { + return (options.adapter.hasAttrib(elem, "checked") || + exports.pseudos.selected(elem, options)); + }, + // :matches(input, select, textarea)[required] + required: function (elem, _a) { + var adapter = _a.adapter; + return adapter.hasAttrib(elem, "required"); + }, + // :matches(input, select, textarea):not([required]) + optional: function (elem, _a) { + var adapter = _a.adapter; + return !adapter.hasAttrib(elem, "required"); + }, + // JQuery extensions + // :not(:empty) + parent: function (elem, options) { + return !exports.pseudos.empty(elem, options); + }, + // :matches(h1, h2, h3, h4, h5, h6) + header: namePseudo(["h1", "h2", "h3", "h4", "h5", "h6"]), + // :matches(button, input[type=button]) + button: function (elem, _a) { + var adapter = _a.adapter; + var name = adapter.getName(elem); + return (name === "button" || + (name === "input" && + adapter.getAttributeValue(elem, "type") === "button")); + }, + // :matches(input, textarea, select, button) + input: namePseudo(["input", "textarea", "select", "button"]), + // `input:matches(:not([type!='']), [type='text' i])` + text: function (elem, _a) { + var adapter = _a.adapter; + var type = adapter.getAttributeValue(elem, "type"); + return (adapter.getName(elem) === "input" && + (!type || type.toLowerCase() === "text")); + }, +}; +function namePseudo(names) { + if (typeof Set !== "undefined") { + var nameSet_1 = new Set(names); + return function (elem, _a) { + var adapter = _a.adapter; + return nameSet_1.has(adapter.getName(elem)); + }; + } + return function (elem, _a) { + var adapter = _a.adapter; + return names.includes(adapter.getName(elem)); }; - Tokenizer.prototype.decodeNumericEntity = function (offset, base, strict) { - var sectionStart = this.sectionStart + offset; - if (sectionStart !== this._index) { - // Parse entity - var entity = this.buffer.substring(sectionStart, this._index); - var parsed = parseInt(entity, base); - this.emitPartial(decode_codepoint_1.default(parsed)); - this.sectionStart = strict ? this._index + 1 : this._index; +} +function verifyPseudoArgs(func, name, subselect) { + if (subselect === null) { + if (func.length > 2 && name !== "scope") { + throw new Error("pseudo-selector :" + name + " requires an argument"); } - this._state = this.baseState; - }; - Tokenizer.prototype.stateInNumericEntity = function (c) { - if (c === ";") { - this.decodeNumericEntity(2, 10, true); + } + else { + if (func.length === 2) { + throw new Error("pseudo-selector :" + name + " doesn't have any arguments"); } - else if (c < "0" || c > "9") { - if (!this.xmlMode) { - this.decodeNumericEntity(2, 10, false); - } - else { - this._state = this.baseState; + } +} +exports.verifyPseudoArgs = verifyPseudoArgs; + + +/***/ }), +/* 324 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __spreadArrays = (this && this.__spreadArrays) || function () { + for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; + for (var r = Array(s), k = 0, i = 0; i < il; i++) + for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) + r[k] = a[j]; + return r; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.subselects = exports.getNextSiblings = exports.ensureIsTag = exports.PLACEHOLDER_ELEMENT = void 0; +var boolbase_1 = __webpack_require__(312); +var procedure_1 = __webpack_require__(315); +/** Used as a placeholder for :has. Will be replaced with the actual element. */ +exports.PLACEHOLDER_ELEMENT = {}; +function containsTraversal(t) { + return t.some(procedure_1.isTraversal); +} +function ensureIsTag(next, adapter) { + if (next === boolbase_1.falseFunc) + return next; + return function (elem) { return adapter.isTag(elem) && next(elem); }; +} +exports.ensureIsTag = ensureIsTag; +function getNextSiblings(elem, adapter) { + var siblings = adapter.getSiblings(elem); + if (siblings.length <= 1) + return []; + var elemIndex = siblings.indexOf(elem); + if (elemIndex < 0 || elemIndex === siblings.length - 1) + return []; + return siblings.slice(elemIndex + 1).filter(adapter.isTag); +} +exports.getNextSiblings = getNextSiblings; +/* + * :not, :has and :matches have to compile selectors + * doing this in src/pseudos.ts would lead to circular dependencies, + * so we add them here + */ +exports.subselects = { + /** + * `:is` is an alias for `:matches`. + */ + is: function (next, token, options, context, compileToken) { + return exports.subselects.matches(next, token, options, context, compileToken); + }, + matches: function (next, token, options, context, compileToken) { + var opts = { + xmlMode: !!options.xmlMode, + strict: !!options.strict, + adapter: options.adapter, + equals: options.equals, + rootFunc: next, + }; + return compileToken(token, opts, context); + }, + not: function (next, token, options, context, compileToken) { + var opts = { + xmlMode: !!options.xmlMode, + strict: !!options.strict, + adapter: options.adapter, + equals: options.equals, + }; + if (opts.strict) { + if (token.length > 1 || token.some(containsTraversal)) { + throw new Error("complex selectors in :not aren't allowed in strict mode"); } - this._index--; } - }; - Tokenizer.prototype.stateInHexEntity = function (c) { - if (c === ";") { - this.decodeNumericEntity(3, 16, true); + var func = compileToken(token, opts, context); + if (func === boolbase_1.falseFunc) + return next; + if (func === boolbase_1.trueFunc) + return boolbase_1.falseFunc; + return function not(elem) { + return !func(elem) && next(elem); + }; + }, + has: function (next, subselect, options, _context, compileToken) { + var adapter = options.adapter; + var opts = { + xmlMode: !!options.xmlMode, + strict: !!options.strict, + adapter: adapter, + equals: options.equals, + }; + // @ts-expect-error Uses an array as a pointer to the current element (side effects) + var context = subselect.some(containsTraversal) + ? [exports.PLACEHOLDER_ELEMENT] + : undefined; + var compiled = compileToken(subselect, opts, context); + if (compiled === boolbase_1.falseFunc) + return boolbase_1.falseFunc; + if (compiled === boolbase_1.trueFunc) { + return function (elem) { + return adapter.getChildren(elem).some(adapter.isTag) && next(elem); + }; } - else if ((c < "a" || c > "f") && - (c < "A" || c > "F") && - (c < "0" || c > "9")) { - if (!this.xmlMode) { - this.decodeNumericEntity(3, 16, false); - } - else { - this._state = this.baseState; - } - this._index--; + var hasElement = ensureIsTag(compiled, adapter); + var _a = compiled.shouldTestNextSiblings, shouldTestNextSiblings = _a === void 0 ? false : _a; + /* + * `shouldTestNextSiblings` will only be true if the query starts with + * a traversal (sibling or adjacent). That means we will always have a context. + */ + if (context) { + return function (elem) { + context[0] = elem; + var childs = adapter.getChildren(elem); + var nextElements = shouldTestNextSiblings + ? __spreadArrays(childs, getNextSiblings(elem, adapter)) : childs; + return (next(elem) && adapter.existsOne(hasElement, nextElements)); + }; } - }; - Tokenizer.prototype.cleanup = function () { - if (this.sectionStart < 0) { - this.buffer = ""; - this.bufferOffset += this._index; - this._index = 0; + return function (elem) { + return next(elem) && + adapter.existsOne(hasElement, adapter.getChildren(elem)); + }; + }, +}; + + +/***/ }), +/* 325 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.groupSelectors = exports.getDocumentRoot = void 0; +var positionals_1 = __webpack_require__(326); +function getDocumentRoot(node) { + while (node.parent) + node = node.parent; + return node; +} +exports.getDocumentRoot = getDocumentRoot; +function groupSelectors(selectors) { + var filteredSelectors = []; + var plainSelectors = []; + for (var _i = 0, selectors_1 = selectors; _i < selectors_1.length; _i++) { + var selector = selectors_1[_i]; + if (selector.some(positionals_1.isFilter)) { + filteredSelectors.push(selector); } - else if (this.running) { - if (this._state === 1 /* Text */) { - if (this.sectionStart !== this._index) { - this.cbs.ontext(this.buffer.substr(this.sectionStart)); - } - this.buffer = ""; - this.bufferOffset += this._index; - this._index = 0; - } - else if (this.sectionStart === this._index) { - // The section just started - this.buffer = ""; - this.bufferOffset += this._index; - this._index = 0; - } - else { - // Remove everything unnecessary - this.buffer = this.buffer.substr(this.sectionStart); - this._index -= this.sectionStart; - this.bufferOffset += this.sectionStart; - } - this.sectionStart = 0; + else { + plainSelectors.push(selector); } - }; - /** - * Iterates through the buffer, calling the function corresponding to the current state. - * - * States that are more likely to be hit are higher up, as a performance improvement. - */ - Tokenizer.prototype.parse = function () { - while (this._index < this.buffer.length && this.running) { - var c = this.buffer.charAt(this._index); - if (this._state === 1 /* Text */) { - this.stateText(c); - } - else if (this._state === 12 /* InAttributeValueDq */) { - this.stateInAttributeValueDoubleQuotes(c); - } - else if (this._state === 9 /* InAttributeName */) { - this.stateInAttributeName(c); - } - else if (this._state === 19 /* InComment */) { - this.stateInComment(c); - } - else if (this._state === 20 /* InSpecialComment */) { - this.stateInSpecialComment(c); - } - else if (this._state === 8 /* BeforeAttributeName */) { - this.stateBeforeAttributeName(c); - } - else if (this._state === 3 /* InTagName */) { - this.stateInTagName(c); - } - else if (this._state === 6 /* InClosingTagName */) { - this.stateInClosingTagName(c); - } - else if (this._state === 2 /* BeforeTagName */) { - this.stateBeforeTagName(c); - } - else if (this._state === 10 /* AfterAttributeName */) { - this.stateAfterAttributeName(c); - } - else if (this._state === 13 /* InAttributeValueSq */) { - this.stateInAttributeValueSingleQuotes(c); - } - else if (this._state === 11 /* BeforeAttributeValue */) { - this.stateBeforeAttributeValue(c); - } - else if (this._state === 5 /* BeforeClosingTagName */) { - this.stateBeforeClosingTagName(c); - } - else if (this._state === 7 /* AfterClosingTagName */) { - this.stateAfterClosingTagName(c); - } - else if (this._state === 32 /* BeforeSpecialS */) { - this.stateBeforeSpecialS(c); - } - else if (this._state === 21 /* AfterComment1 */) { - this.stateAfterComment1(c); - } - else if (this._state === 14 /* InAttributeValueNq */) { - this.stateInAttributeValueNoQuotes(c); - } - else if (this._state === 4 /* InSelfClosingTag */) { - this.stateInSelfClosingTag(c); - } - else if (this._state === 16 /* InDeclaration */) { - this.stateInDeclaration(c); - } - else if (this._state === 15 /* BeforeDeclaration */) { - this.stateBeforeDeclaration(c); - } - else if (this._state === 22 /* AfterComment2 */) { - this.stateAfterComment2(c); - } - else if (this._state === 18 /* BeforeComment */) { - this.stateBeforeComment(c); - } - else if (this._state === 33 /* BeforeSpecialSEnd */) { - this.stateBeforeSpecialSEnd(c); - } - else if (this._state === 53 /* BeforeSpecialTEnd */) { - stateAfterSpecialTEnd(this, c); - } - else if (this._state === 39 /* AfterScript1 */) { - stateAfterScript1(this, c); - } - else if (this._state === 40 /* AfterScript2 */) { - stateAfterScript2(this, c); - } - else if (this._state === 41 /* AfterScript3 */) { - stateAfterScript3(this, c); - } - else if (this._state === 34 /* BeforeScript1 */) { - stateBeforeScript1(this, c); - } - else if (this._state === 35 /* BeforeScript2 */) { - stateBeforeScript2(this, c); - } - else if (this._state === 36 /* BeforeScript3 */) { - stateBeforeScript3(this, c); - } - else if (this._state === 37 /* BeforeScript4 */) { - stateBeforeScript4(this, c); - } - else if (this._state === 38 /* BeforeScript5 */) { - this.stateBeforeSpecialLast(c, 2 /* Script */); - } - else if (this._state === 42 /* AfterScript4 */) { - stateAfterScript4(this, c); - } - else if (this._state === 43 /* AfterScript5 */) { - this.stateAfterSpecialLast(c, 6); - } - else if (this._state === 44 /* BeforeStyle1 */) { - stateBeforeStyle1(this, c); - } - else if (this._state === 29 /* InCdata */) { - this.stateInCdata(c); - } - else if (this._state === 45 /* BeforeStyle2 */) { - stateBeforeStyle2(this, c); - } - else if (this._state === 46 /* BeforeStyle3 */) { - stateBeforeStyle3(this, c); - } - else if (this._state === 47 /* BeforeStyle4 */) { - this.stateBeforeSpecialLast(c, 3 /* Style */); - } - else if (this._state === 48 /* AfterStyle1 */) { - stateAfterStyle1(this, c); - } - else if (this._state === 49 /* AfterStyle2 */) { - stateAfterStyle2(this, c); - } - else if (this._state === 50 /* AfterStyle3 */) { - stateAfterStyle3(this, c); - } - else if (this._state === 51 /* AfterStyle4 */) { - this.stateAfterSpecialLast(c, 5); - } - else if (this._state === 52 /* BeforeSpecialT */) { - stateBeforeSpecialT(this, c); - } - else if (this._state === 54 /* BeforeTitle1 */) { - stateBeforeTitle1(this, c); - } - else if (this._state === 55 /* BeforeTitle2 */) { - stateBeforeTitle2(this, c); - } - else if (this._state === 56 /* BeforeTitle3 */) { - stateBeforeTitle3(this, c); - } - else if (this._state === 57 /* BeforeTitle4 */) { - this.stateBeforeSpecialLast(c, 4 /* Title */); - } - else if (this._state === 58 /* AfterTitle1 */) { - stateAfterTitle1(this, c); - } - else if (this._state === 59 /* AfterTitle2 */) { - stateAfterTitle2(this, c); - } - else if (this._state === 60 /* AfterTitle3 */) { - stateAfterTitle3(this, c); - } - else if (this._state === 61 /* AfterTitle4 */) { - this.stateAfterSpecialLast(c, 5); - } - else if (this._state === 17 /* InProcessingInstruction */) { - this.stateInProcessingInstruction(c); - } - else if (this._state === 64 /* InNamedEntity */) { - this.stateInNamedEntity(c); - } - else if (this._state === 23 /* BeforeCdata1 */) { - stateBeforeCdata1(this, c); - } - else if (this._state === 62 /* BeforeEntity */) { - stateBeforeEntity(this, c); - } - else if (this._state === 24 /* BeforeCdata2 */) { - stateBeforeCdata2(this, c); - } - else if (this._state === 25 /* BeforeCdata3 */) { - stateBeforeCdata3(this, c); - } - else if (this._state === 30 /* AfterCdata1 */) { - this.stateAfterCdata1(c); - } - else if (this._state === 31 /* AfterCdata2 */) { - this.stateAfterCdata2(c); - } - else if (this._state === 26 /* BeforeCdata4 */) { - stateBeforeCdata4(this, c); - } - else if (this._state === 27 /* BeforeCdata5 */) { - stateBeforeCdata5(this, c); - } - else if (this._state === 28 /* BeforeCdata6 */) { - this.stateBeforeCdata6(c); - } - else if (this._state === 66 /* InHexEntity */) { - this.stateInHexEntity(c); - } - else if (this._state === 65 /* InNumericEntity */) { - this.stateInNumericEntity(c); - // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition - } - else if (this._state === 63 /* BeforeNumericEntity */) { - stateBeforeNumericEntity(this, c); - } - else { - this.cbs.onerror(Error("unknown _state"), this._state); - } - this._index++; - } - this.cleanup(); - }; - Tokenizer.prototype.finish = function () { - // If there is remaining data, emit it in a reasonable way - if (this.sectionStart < this._index) { - this.handleTrailingData(); - } - this.cbs.onend(); - }; - Tokenizer.prototype.handleTrailingData = function () { - var data = this.buffer.substr(this.sectionStart); - if (this._state === 29 /* InCdata */ || - this._state === 30 /* AfterCdata1 */ || - this._state === 31 /* AfterCdata2 */) { - this.cbs.oncdata(data); - } - else if (this._state === 19 /* InComment */ || - this._state === 21 /* AfterComment1 */ || - this._state === 22 /* AfterComment2 */) { - this.cbs.oncomment(data); - } - else if (this._state === 64 /* InNamedEntity */ && !this.xmlMode) { - this.parseLegacyEntity(); - if (this.sectionStart < this._index) { - this._state = this.baseState; - this.handleTrailingData(); - } - } - else if (this._state === 65 /* InNumericEntity */ && !this.xmlMode) { - this.decodeNumericEntity(2, 10, false); - if (this.sectionStart < this._index) { - this._state = this.baseState; - this.handleTrailingData(); - } - } - else if (this._state === 66 /* InHexEntity */ && !this.xmlMode) { - this.decodeNumericEntity(3, 16, false); - if (this.sectionStart < this._index) { - this._state = this.baseState; - this.handleTrailingData(); - } - } - else if (this._state !== 3 /* InTagName */ && - this._state !== 8 /* BeforeAttributeName */ && - this._state !== 11 /* BeforeAttributeValue */ && - this._state !== 10 /* AfterAttributeName */ && - this._state !== 9 /* InAttributeName */ && - this._state !== 13 /* InAttributeValueSq */ && - this._state !== 12 /* InAttributeValueDq */ && - this._state !== 14 /* InAttributeValueNq */ && - this._state !== 6 /* InClosingTagName */) { - this.cbs.ontext(data); - } - /* - * Else, ignore remaining data - * TODO add a way to remove current tag - */ - }; - Tokenizer.prototype.getSection = function () { - return this.buffer.substring(this.sectionStart, this._index); - }; - Tokenizer.prototype.emitToken = function (name) { - this.cbs[name](this.getSection()); - this.sectionStart = -1; - }; - Tokenizer.prototype.emitPartial = function (value) { - if (this.baseState !== 1 /* Text */) { - this.cbs.onattribdata(value); // TODO implement the new event - } - else { - this.cbs.ontext(value); - } - }; - return Tokenizer; -}()); -exports.default = Tokenizer; + } + return [plainSelectors, filteredSelectors]; +} +exports.groupSelectors = groupSelectors; /***/ }), -/* 328 */ +/* 326 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __exportStar = (this && this.__exportStar) || function(m, exports) { - for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); -}; Object.defineProperty(exports, "__esModule", { value: true }); -exports.DomHandler = void 0; -var node_1 = __webpack_require__(329); -__exportStar(__webpack_require__(329), exports); -var reWhitespace = /\s+/g; -// Default options -var defaultOpts = { - normalizeWhitespace: false, - withStartIndices: false, - withEndIndices: false, -}; -var DomHandler = /** @class */ (function () { - /** - * @param callback Called once parsing has completed. - * @param options Settings for the handler. - * @param elementCB Callback whenever a tag is closed. - */ - function DomHandler(callback, options, elementCB) { - /** The elements of the DOM */ - this.dom = []; - /** The root element for the DOM */ - this.root = new node_1.Document(this.dom); - /** Indicated whether parsing has been completed. */ - this.done = false; - /** Stack of open tags. */ - this.tagStack = [this.root]; - /** A data node that is still being written to. */ - this.lastNode = null; - /** Reference to the parser instance. Used for location information. */ - this.parser = null; - // Make it possible to skip arguments, for backwards-compatibility - if (typeof options === "function") { - elementCB = options; - options = defaultOpts; - } - if (typeof callback === "object") { - options = callback; - callback = undefined; - } - this.callback = callback !== null && callback !== void 0 ? callback : null; - this.options = options !== null && options !== void 0 ? options : defaultOpts; - this.elementCB = elementCB !== null && elementCB !== void 0 ? elementCB : null; +exports.getLimit = exports.isFilter = exports.filterNames = void 0; +exports.filterNames = new Set([ + "first", + "last", + "eq", + "gt", + "nth", + "lt", + "even", + "odd", +]); +function isFilter(s) { + if (s.type !== "pseudo") + return false; + if (exports.filterNames.has(s.name)) + return true; + if (s.name === "not" && Array.isArray(s.data)) { + // Only consider `:not` with embedded filters + return s.data.some(function (s) { return s.some(isFilter); }); } - DomHandler.prototype.onparserinit = function (parser) { - this.parser = parser; - }; - // Resets the handler back to starting state - DomHandler.prototype.onreset = function () { - var _a; - this.dom = []; - this.root = new node_1.Document(this.dom); - this.done = false; - this.tagStack = [this.root]; - this.lastNode = null; - this.parser = (_a = this.parser) !== null && _a !== void 0 ? _a : null; - }; - // Signals the handler that parsing is done - DomHandler.prototype.onend = function () { - if (this.done) - return; - this.done = true; - this.parser = null; - this.handleCallback(null); - }; - DomHandler.prototype.onerror = function (error) { - this.handleCallback(error); - }; - DomHandler.prototype.onclosetag = function () { - this.lastNode = null; - var elem = this.tagStack.pop(); - if (this.options.withEndIndices) { - elem.endIndex = this.parser.endIndex; - } - if (this.elementCB) - this.elementCB(elem); - }; - DomHandler.prototype.onopentag = function (name, attribs) { - var element = new node_1.Element(name, attribs); - this.addNode(element); - this.tagStack.push(element); - }; - DomHandler.prototype.ontext = function (data) { - var normalizeWhitespace = this.options.normalizeWhitespace; - var lastNode = this.lastNode; - if (lastNode && lastNode.type === "text" /* Text */) { - if (normalizeWhitespace) { - lastNode.data = (lastNode.data + data).replace(reWhitespace, " "); - } - else { - lastNode.data += data; - } - } - else { - if (normalizeWhitespace) { - data = data.replace(reWhitespace, " "); - } - var node = new node_1.Text(data); - this.addNode(node); - this.lastNode = node; - } - }; - DomHandler.prototype.oncomment = function (data) { - if (this.lastNode && this.lastNode.type === "comment" /* Comment */) { - this.lastNode.data += data; - return; - } - var node = new node_1.Comment(data); - this.addNode(node); - this.lastNode = node; - }; - DomHandler.prototype.oncommentend = function () { - this.lastNode = null; - }; - DomHandler.prototype.oncdatastart = function () { - var text = new node_1.Text(""); - var node = new node_1.NodeWithChildren("cdata" /* CDATA */, [text]); - this.addNode(node); - text.parent = node; - this.lastNode = text; - }; - DomHandler.prototype.oncdataend = function () { - this.lastNode = null; - }; - DomHandler.prototype.onprocessinginstruction = function (name, data) { - var node = new node_1.ProcessingInstruction(name, data); - this.addNode(node); - }; - DomHandler.prototype.handleCallback = function (error) { - if (typeof this.callback === "function") { - this.callback(error, this.dom); - } - else if (error) { - throw error; - } - }; - DomHandler.prototype.addNode = function (node) { - var parent = this.tagStack[this.tagStack.length - 1]; - var previousSibling = parent.children[parent.children.length - 1]; - if (this.options.withStartIndices) { - node.startIndex = this.parser.startIndex; - } - if (this.options.withEndIndices) { - node.endIndex = this.parser.endIndex; - } - parent.children.push(node); - if (previousSibling) { - node.prev = previousSibling; - previousSibling.next = node; - } - node.parent = parent; - this.lastNode = null; - }; - DomHandler.prototype.addDataNode = function (node) { - this.addNode(node); - this.lastNode = node; - }; - return DomHandler; -}()); -exports.DomHandler = DomHandler; -exports.default = DomHandler; + return false; +} +exports.isFilter = isFilter; +function getLimit(filter, data) { + var num = data != null ? parseInt(data, 10) : NaN; + switch (filter) { + case "first": + return 1; + case "nth": + case "eq": + return isFinite(num) ? (num >= 0 ? num + 1 : Infinity) : 0; + case "lt": + return isFinite(num) ? (num >= 0 ? num : Infinity) : 0; + case "gt": + return isFinite(num) ? Infinity : 0; + default: + return Infinity; + } +} +exports.getLimit = getLimit; /***/ }), -/* 329 */ +/* 327 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); - }; - return function (d, b) { - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; -})(); -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); + +const Parser = __webpack_require__(328); +const Serializer = __webpack_require__(350); + +// Shorthands +exports.parse = function parse(html, options) { + const parser = new Parser(options); + + return parser.parse(html); }; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.cloneNode = exports.Element = exports.Document = exports.NodeWithChildren = exports.ProcessingInstruction = exports.Comment = exports.Text = exports.DataNode = exports.Node = void 0; -var nodeTypes = new Map([ - ["tag" /* Tag */, 1], - ["script" /* Script */, 1], - ["style" /* Style */, 1], - ["directive" /* Directive */, 1], - ["text" /* Text */, 3], - ["cdata" /* CDATA */, 4], - ["comment" /* Comment */, 8], - ["root" /* Root */, 9], -]); -/** - * This object will be used as the prototype for Nodes when creating a - * DOM-Level-1-compliant structure. - */ -var Node = /** @class */ (function () { - /** - * - * @param type The type of the node. - */ - function Node(type) { - this.type = type; - /** Parent of the node */ - this.parent = null; - /** Previous sibling */ - this.prev = null; - /** Next sibling */ - this.next = null; - /** The start index of the node. Requires `withStartIndices` on the handler to be `true. */ - this.startIndex = null; - /** The end index of the node. Requires `withEndIndices` on the handler to be `true. */ - this.endIndex = null; - } - Object.defineProperty(Node.prototype, "nodeType", { - // Read-only aliases - get: function () { - var _a; - return (_a = nodeTypes.get(this.type)) !== null && _a !== void 0 ? _a : 1; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(Node.prototype, "parentNode", { - // Read-write aliases for properties - get: function () { - return this.parent; - }, - set: function (parent) { - this.parent = parent; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(Node.prototype, "previousSibling", { - get: function () { - return this.prev; - }, - set: function (prev) { - this.prev = prev; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(Node.prototype, "nextSibling", { - get: function () { - return this.next; - }, - set: function (next) { - this.next = next; - }, - enumerable: false, - configurable: true - }); - /** - * Clone this node, and optionally its children. - * - * @param recursive Clone child nodes as well. - * @returns A clone of the node. - */ - Node.prototype.cloneNode = function (recursive) { - if (recursive === void 0) { recursive = false; } - return cloneNode(this, recursive); - }; - return Node; -}()); -exports.Node = Node; -var DataNode = /** @class */ (function (_super) { - __extends(DataNode, _super); - /** - * @param type The type of the node - * @param data The content of the data node - */ - function DataNode(type, data) { - var _this = _super.call(this, type) || this; - _this.data = data; - return _this; - } - Object.defineProperty(DataNode.prototype, "nodeValue", { - get: function () { - return this.data; - }, - set: function (data) { - this.data = data; - }, - enumerable: false, - configurable: true - }); - return DataNode; -}(Node)); -exports.DataNode = DataNode; -var Text = /** @class */ (function (_super) { - __extends(Text, _super); - function Text(data) { - return _super.call(this, "text" /* Text */, data) || this; - } - return Text; -}(DataNode)); -exports.Text = Text; -var Comment = /** @class */ (function (_super) { - __extends(Comment, _super); - function Comment(data) { - return _super.call(this, "comment" /* Comment */, data) || this; - } - return Comment; -}(DataNode)); -exports.Comment = Comment; -var ProcessingInstruction = /** @class */ (function (_super) { - __extends(ProcessingInstruction, _super); - function ProcessingInstruction(name, data) { - var _this = _super.call(this, "directive" /* Directive */, data) || this; - _this.name = name; - return _this; - } - return ProcessingInstruction; -}(DataNode)); -exports.ProcessingInstruction = ProcessingInstruction; -/** - * A `Node` that can have children. - */ -var NodeWithChildren = /** @class */ (function (_super) { - __extends(NodeWithChildren, _super); - /** - * @param type Type of the node. - * @param children Children of the node. Only certain node types can have children. - */ - function NodeWithChildren(type, children) { - var _this = _super.call(this, type) || this; - _this.children = children; - return _this; - } - Object.defineProperty(NodeWithChildren.prototype, "firstChild", { - // Aliases - get: function () { - var _a; - return (_a = this.children[0]) !== null && _a !== void 0 ? _a : null; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(NodeWithChildren.prototype, "lastChild", { - get: function () { - return this.children.length > 0 - ? this.children[this.children.length - 1] - : null; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(NodeWithChildren.prototype, "childNodes", { - get: function () { - return this.children; - }, - set: function (children) { - this.children = children; - }, - enumerable: false, - configurable: true - }); - return NodeWithChildren; -}(Node)); -exports.NodeWithChildren = NodeWithChildren; -var Document = /** @class */ (function (_super) { - __extends(Document, _super); - function Document(children) { - return _super.call(this, "root" /* Root */, children) || this; - } - return Document; -}(NodeWithChildren)); -exports.Document = Document; -var Element = /** @class */ (function (_super) { - __extends(Element, _super); - /** - * @param name Name of the tag, eg. `div`, `span`. - * @param attribs Object mapping attribute names to attribute values. - * @param children Children of the node. - */ - function Element(name, attribs, children) { - if (children === void 0) { children = []; } - var _this = _super.call(this, name === "script" - ? "script" /* Script */ - : name === "style" - ? "style" /* Style */ - : "tag" /* Tag */, children) || this; - _this.name = name; - _this.attribs = attribs; - _this.attribs = attribs; - return _this; - } - Object.defineProperty(Element.prototype, "tagName", { - // DOM Level 1 aliases - get: function () { - return this.name; - }, - set: function (name) { - this.name = name; - }, - enumerable: false, - configurable: true - }); - Object.defineProperty(Element.prototype, "attributes", { - get: function () { - var _this = this; - return Object.keys(this.attribs).map(function (name) { - var _a, _b; - return ({ - name: name, - value: _this.attribs[name], - namespace: (_a = _this["x-attribsNamespace"]) === null || _a === void 0 ? void 0 : _a[name], - prefix: (_b = _this["x-attribsPrefix"]) === null || _b === void 0 ? void 0 : _b[name], - }); - }); - }, - enumerable: false, - configurable: true - }); - return Element; -}(NodeWithChildren)); -exports.Element = Element; -/** - * Clone a node, and optionally its children. - * - * @param recursive Clone child nodes as well. - * @returns A clone of the node. - */ -function cloneNode(node, recursive) { - if (recursive === void 0) { recursive = false; } - var result; - switch (node.type) { - case "text" /* Text */: - result = new Text(node.data); - break; - case "directive" /* Directive */: { - var instr = node; - result = new ProcessingInstruction(instr.name, instr.data); - if (instr["x-name"] != null) { - result["x-name"] = instr["x-name"]; - result["x-publicId"] = instr["x-publicId"]; - result["x-systemId"] = instr["x-systemId"]; - } - break; - } - case "comment" /* Comment */: - result = new Comment(node.data); - break; - case "tag" /* Tag */: - case "script" /* Script */: - case "style" /* Style */: { - var elem = node; - var children = recursive ? cloneChildren(elem.children) : []; - var clone_1 = new Element(elem.name, __assign({}, elem.attribs), children); - children.forEach(function (child) { return (child.parent = clone_1); }); - if (elem["x-attribsNamespace"]) { - clone_1["x-attribsNamespace"] = __assign({}, elem["x-attribsNamespace"]); - } - if (elem["x-attribsPrefix"]) { - clone_1["x-attribsPrefix"] = __assign({}, elem["x-attribsPrefix"]); - } - result = clone_1; - break; - } - case "cdata" /* CDATA */: { - var cdata = node; - var children = recursive ? cloneChildren(cdata.children) : []; - var clone_2 = new NodeWithChildren(node.type, children); - children.forEach(function (child) { return (child.parent = clone_2); }); - result = clone_2; - break; - } - case "root" /* Root */: { - var doc = node; - var children = recursive ? cloneChildren(doc.children) : []; - var clone_3 = new Document(children); - children.forEach(function (child) { return (child.parent = clone_3); }); - if (doc["x-mode"]) { - clone_3["x-mode"] = doc["x-mode"]; - } - result = clone_3; - break; - } - case "doctype" /* Doctype */: { - // This type isn't used yet. - throw new Error("Not implemented yet: ElementType.Doctype case"); - } - } - result.startIndex = node.startIndex; - result.endIndex = node.endIndex; - return result; -} -exports.cloneNode = cloneNode; -function cloneChildren(childs) { - var children = childs.map(function (child) { return cloneNode(child, true); }); - for (var i = 1; i < children.length; i++) { - children[i].prev = children[i - 1]; - children[i - 1].next = children[i]; + +exports.parseFragment = function parseFragment(fragmentContext, html, options) { + if (typeof fragmentContext === 'string') { + options = html; + html = fragmentContext; + fragmentContext = null; } - return children; -} + const parser = new Parser(options); -/***/ }), -/* 330 */ -/***/ (function(module, exports, __webpack_require__) { + return parser.parseFragment(html, fragmentContext); +}; -"use strict"; +exports.serialize = function(node, options) { + const serializer = new Serializer(node, options); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.Doctype = exports.CDATA = exports.Tag = exports.Style = exports.Script = exports.Comment = exports.Directive = exports.Text = exports.Root = exports.isTag = void 0; -/** - * Tests whether an element is a tag or not. - * - * @param elem Element to test - */ -function isTag(elem) { - return (elem.type === "tag" /* Tag */ || - elem.type === "script" /* Script */ || - elem.type === "style" /* Style */); -} -exports.isTag = isTag; -// Exports for backwards compatibility -/** Type for the root element of a document */ -exports.Root = "root" /* Root */; -/** Type for Text */ -exports.Text = "text" /* Text */; -/** Type for <? ... ?> */ -exports.Directive = "directive" /* Directive */; -/** Type for <!-- ... --> */ -exports.Comment = "comment" /* Comment */; -/** Type for <script> tags */ -exports.Script = "script" /* Script */; -/** Type for <style> tags */ -exports.Style = "style" /* Style */; -/** Type for Any tag */ -exports.Tag = "tag" /* Tag */; -/** Type for <![CDATA[ ... ]]> */ -exports.CDATA = "cdata" /* CDATA */; -/** Type for <!doctype ...> */ -exports.Doctype = "doctype" /* Doctype */; + return serializer.serialize(); +}; /***/ }), -/* 331 */ +/* 328 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var __extends = (this && this.__extends) || (function () { - var extendStatics = function (d, b) { - extendStatics = Object.setPrototypeOf || - ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || - function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; - return extendStatics(d, b); - }; - return function (d, b) { - if (typeof b !== "function" && b !== null) - throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); - extendStatics(d, b); - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); - }; -})(); -var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); -}) : (function(o, m, k, k2) { - if (k2 === undefined) k2 = k; - o[k2] = m[k]; -})); -var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { - Object.defineProperty(o, "default", { enumerable: true, value: v }); -}) : function(o, v) { - o["default"] = v; -}); -var __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); - __setModuleDefault(result, mod); - return result; + +const Tokenizer = __webpack_require__(329); +const OpenElementStack = __webpack_require__(334); +const FormattingElementList = __webpack_require__(336); +const LocationInfoParserMixin = __webpack_require__(337); +const ErrorReportingParserMixin = __webpack_require__(342); +const Mixin = __webpack_require__(338); +const defaultTreeAdapter = __webpack_require__(346); +const mergeOptions = __webpack_require__(347); +const doctype = __webpack_require__(348); +const foreignContent = __webpack_require__(349); +const ERR = __webpack_require__(332); +const unicode = __webpack_require__(331); +const HTML = __webpack_require__(335); + +//Aliases +const $ = HTML.TAG_NAMES; +const NS = HTML.NAMESPACES; +const ATTRS = HTML.ATTRS; + +const DEFAULT_OPTIONS = { + scriptingEnabled: true, + sourceCodeLocationInfo: false, + onParseError: null, + treeAdapter: defaultTreeAdapter }; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.parseFeed = exports.FeedHandler = void 0; -var domhandler_1 = __importDefault(__webpack_require__(328)); -var DomUtils = __importStar(__webpack_require__(286)); -var Parser_1 = __webpack_require__(326); -var FeedItemMediaMedium; -(function (FeedItemMediaMedium) { - FeedItemMediaMedium[FeedItemMediaMedium["image"] = 0] = "image"; - FeedItemMediaMedium[FeedItemMediaMedium["audio"] = 1] = "audio"; - FeedItemMediaMedium[FeedItemMediaMedium["video"] = 2] = "video"; - FeedItemMediaMedium[FeedItemMediaMedium["document"] = 3] = "document"; - FeedItemMediaMedium[FeedItemMediaMedium["executable"] = 4] = "executable"; -})(FeedItemMediaMedium || (FeedItemMediaMedium = {})); -var FeedItemMediaExpression; -(function (FeedItemMediaExpression) { - FeedItemMediaExpression[FeedItemMediaExpression["sample"] = 0] = "sample"; - FeedItemMediaExpression[FeedItemMediaExpression["full"] = 1] = "full"; - FeedItemMediaExpression[FeedItemMediaExpression["nonstop"] = 2] = "nonstop"; -})(FeedItemMediaExpression || (FeedItemMediaExpression = {})); -// TODO: Consume data as it is coming in -var FeedHandler = /** @class */ (function (_super) { - __extends(FeedHandler, _super); - /** - * - * @param callback - * @param options - */ - function FeedHandler(callback, options) { - var _this = this; - if (typeof callback === "object") { - callback = undefined; - options = callback; - } - _this = _super.call(this, callback, options) || this; - return _this; - } - FeedHandler.prototype.onend = function () { - var _a, _b; - var feedRoot = getOneElement(isValidFeed, this.dom); - if (!feedRoot) { - this.handleCallback(new Error("couldn't find root of feed")); - return; - } - var feed = {}; - if (feedRoot.name === "feed") { - var childs = feedRoot.children; - feed.type = "atom"; - addConditionally(feed, "id", "id", childs); - addConditionally(feed, "title", "title", childs); - var href = getAttribute("href", getOneElement("link", childs)); - if (href) { - feed.link = href; - } - addConditionally(feed, "description", "subtitle", childs); - var updated = fetch("updated", childs); - if (updated) { - feed.updated = new Date(updated); - } - addConditionally(feed, "author", "email", childs, true); - feed.items = getElements("entry", childs).map(function (item) { - var entry = {}; - var children = item.children; - addConditionally(entry, "id", "id", children); - addConditionally(entry, "title", "title", children); - var href = getAttribute("href", getOneElement("link", children)); - if (href) { - entry.link = href; - } - var description = fetch("summary", children) || fetch("content", children); - if (description) { - entry.description = description; - } - var pubDate = fetch("updated", children); - if (pubDate) { - entry.pubDate = new Date(pubDate); - } - entry.media = getMediaElements(children); - return entry; - }); - } - else { - var childs = (_b = (_a = getOneElement("channel", feedRoot.children)) === null || _a === void 0 ? void 0 : _a.children) !== null && _b !== void 0 ? _b : []; - feed.type = feedRoot.name.substr(0, 3); - feed.id = ""; - addConditionally(feed, "title", "title", childs); - addConditionally(feed, "link", "link", childs); - addConditionally(feed, "description", "description", childs); - var updated = fetch("lastBuildDate", childs); - if (updated) { - feed.updated = new Date(updated); - } - addConditionally(feed, "author", "managingEditor", childs, true); - feed.items = getElements("item", feedRoot.children).map(function (item) { - var entry = {}; - var children = item.children; - addConditionally(entry, "id", "guid", children); - addConditionally(entry, "title", "title", children); - addConditionally(entry, "link", "link", children); - addConditionally(entry, "description", "description", children); - var pubDate = fetch("pubDate", children); - if (pubDate) - entry.pubDate = new Date(pubDate); - entry.media = getMediaElements(children); - return entry; - }); - } - this.feed = feed; - this.handleCallback(null); - }; - return FeedHandler; -}(domhandler_1.default)); -exports.FeedHandler = FeedHandler; -function getMediaElements(where) { - return getElements("media:content", where).map(function (elem) { - var media = { - medium: elem.attribs.medium, - isDefault: !!elem.attribs.isDefault, - }; - if (elem.attribs.url) { - media.url = elem.attribs.url; - } - if (elem.attribs.fileSize) { - media.fileSize = parseInt(elem.attribs.fileSize, 10); - } - if (elem.attribs.type) { - media.type = elem.attribs.type; - } - if (elem.attribs.expression) { - media.expression = elem.attribs - .expression; - } - if (elem.attribs.bitrate) { - media.bitrate = parseInt(elem.attribs.bitrate, 10); - } - if (elem.attribs.framerate) { - media.framerate = parseInt(elem.attribs.framerate, 10); - } - if (elem.attribs.samplingrate) { - media.samplingrate = parseInt(elem.attribs.samplingrate, 10); - } - if (elem.attribs.channels) { - media.channels = parseInt(elem.attribs.channels, 10); - } - if (elem.attribs.duration) { - media.duration = parseInt(elem.attribs.duration, 10); - } - if (elem.attribs.height) { - media.height = parseInt(elem.attribs.height, 10); - } - if (elem.attribs.width) { - media.width = parseInt(elem.attribs.width, 10); - } - if (elem.attribs.lang) { - media.lang = elem.attribs.lang; - } - return media; - }); -} -function getElements(tagName, where) { - return DomUtils.getElementsByTagName(tagName, where, true); -} -function getOneElement(tagName, node) { - return DomUtils.getElementsByTagName(tagName, node, true, 1)[0]; -} -function fetch(tagName, where, recurse) { - if (recurse === void 0) { recurse = false; } - return DomUtils.getText(DomUtils.getElementsByTagName(tagName, where, recurse, 1)).trim(); -} -function getAttribute(name, elem) { - if (!elem) { - return null; - } - var attribs = elem.attribs; - return attribs[name]; -} -function addConditionally(obj, prop, what, where, recurse) { - if (recurse === void 0) { recurse = false; } - var tmp = fetch(what, where, recurse); - if (tmp) - obj[prop] = tmp; -} -function isValidFeed(value) { - return value === "rss" || value === "feed" || value === "rdf:RDF"; -} -/** - * Parse a feed. - * - * @param feed The feed that should be parsed, as a string. - * @param options Optionally, options for parsing. When using this option, you should set `xmlMode` to `true`. - */ -function parseFeed(feed, options) { - if (options === void 0) { options = { xmlMode: true }; } - var handler = new FeedHandler(options); - new Parser_1.Parser(handler, options).end(feed); - return handler.feed; -} -exports.parseFeed = parseFeed; - - -/***/ }), -/* 332 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.render = exports.parse = void 0; -var tslib_1 = __webpack_require__(276); -var domhandler_1 = __webpack_require__(288); -var parse5_1 = __webpack_require__(333); -var parse5_htmlparser2_tree_adapter_1 = tslib_1.__importDefault(__webpack_require__(357)); -function parse(content, options, isDocument) { - var opts = { - scriptingEnabled: typeof options.scriptingEnabled === 'boolean' - ? options.scriptingEnabled - : true, - treeAdapter: parse5_htmlparser2_tree_adapter_1.default, - sourceCodeLocationInfo: options.sourceCodeLocationInfo, - }; - var context = options.context; - // @ts-expect-error The tree adapter unfortunately doesn't return the exact types. - return isDocument - ? parse5_1.parse(content, opts) - : // @ts-expect-error Same issue again. - parse5_1.parseFragment(context, content, opts); -} -exports.parse = parse; -function render(dom) { - var _a; - /* - * `dom-serializer` passes over the special "root" node and renders the - * node's children in its place. To mimic this behavior with `parse5`, an - * equivalent operation must be applied to the input array. - */ - var nodes = 'length' in dom ? dom : [dom]; - for (var index = 0; index < nodes.length; index += 1) { - var node = nodes[index]; - if (domhandler_1.isDocument(node)) { - (_a = Array.prototype.splice).call.apply(_a, tslib_1.__spreadArray([nodes, index, 1], node.children)); - } - } - // @ts-expect-error Types don't align here either. - return parse5_1.serialize({ children: nodes }, { treeAdapter: parse5_htmlparser2_tree_adapter_1.default }); -} -exports.render = render; - - -/***/ }), -/* 333 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -const Parser = __webpack_require__(334); -const Serializer = __webpack_require__(356); - -// Shorthands -exports.parse = function parse(html, options) { - const parser = new Parser(options); - - return parser.parse(html); -}; - -exports.parseFragment = function parseFragment(fragmentContext, html, options) { - if (typeof fragmentContext === 'string') { - options = html; - html = fragmentContext; - fragmentContext = null; - } - - const parser = new Parser(options); - - return parser.parseFragment(html, fragmentContext); -}; - -exports.serialize = function(node, options) { - const serializer = new Serializer(node, options); - - return serializer.serialize(); -}; - - -/***/ }), -/* 334 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -const Tokenizer = __webpack_require__(335); -const OpenElementStack = __webpack_require__(340); -const FormattingElementList = __webpack_require__(342); -const LocationInfoParserMixin = __webpack_require__(343); -const ErrorReportingParserMixin = __webpack_require__(348); -const Mixin = __webpack_require__(344); -const defaultTreeAdapter = __webpack_require__(352); -const mergeOptions = __webpack_require__(353); -const doctype = __webpack_require__(354); -const foreignContent = __webpack_require__(355); -const ERR = __webpack_require__(338); -const unicode = __webpack_require__(337); -const HTML = __webpack_require__(341); - -//Aliases -const $ = HTML.TAG_NAMES; -const NS = HTML.NAMESPACES; -const ATTRS = HTML.ATTRS; - -const DEFAULT_OPTIONS = { - scriptingEnabled: true, - sourceCodeLocationInfo: false, - onParseError: null, - treeAdapter: defaultTreeAdapter -}; - -//Misc constants -const HIDDEN_INPUT_TYPE = 'hidden'; - -//Adoption agency loops iteration count -const AA_OUTER_LOOP_ITER = 8; -const AA_INNER_LOOP_ITER = 3; - -//Insertion modes -const INITIAL_MODE = 'INITIAL_MODE'; -const BEFORE_HTML_MODE = 'BEFORE_HTML_MODE'; -const BEFORE_HEAD_MODE = 'BEFORE_HEAD_MODE'; -const IN_HEAD_MODE = 'IN_HEAD_MODE'; -const IN_HEAD_NO_SCRIPT_MODE = 'IN_HEAD_NO_SCRIPT_MODE'; -const AFTER_HEAD_MODE = 'AFTER_HEAD_MODE'; -const IN_BODY_MODE = 'IN_BODY_MODE'; -const TEXT_MODE = 'TEXT_MODE'; -const IN_TABLE_MODE = 'IN_TABLE_MODE'; -const IN_TABLE_TEXT_MODE = 'IN_TABLE_TEXT_MODE'; -const IN_CAPTION_MODE = 'IN_CAPTION_MODE'; -const IN_COLUMN_GROUP_MODE = 'IN_COLUMN_GROUP_MODE'; -const IN_TABLE_BODY_MODE = 'IN_TABLE_BODY_MODE'; -const IN_ROW_MODE = 'IN_ROW_MODE'; -const IN_CELL_MODE = 'IN_CELL_MODE'; -const IN_SELECT_MODE = 'IN_SELECT_MODE'; -const IN_SELECT_IN_TABLE_MODE = 'IN_SELECT_IN_TABLE_MODE'; -const IN_TEMPLATE_MODE = 'IN_TEMPLATE_MODE'; -const AFTER_BODY_MODE = 'AFTER_BODY_MODE'; -const IN_FRAMESET_MODE = 'IN_FRAMESET_MODE'; -const AFTER_FRAMESET_MODE = 'AFTER_FRAMESET_MODE'; -const AFTER_AFTER_BODY_MODE = 'AFTER_AFTER_BODY_MODE'; -const AFTER_AFTER_FRAMESET_MODE = 'AFTER_AFTER_FRAMESET_MODE'; - -//Insertion mode reset map -const INSERTION_MODE_RESET_MAP = { - [$.TR]: IN_ROW_MODE, - [$.TBODY]: IN_TABLE_BODY_MODE, - [$.THEAD]: IN_TABLE_BODY_MODE, - [$.TFOOT]: IN_TABLE_BODY_MODE, - [$.CAPTION]: IN_CAPTION_MODE, - [$.COLGROUP]: IN_COLUMN_GROUP_MODE, - [$.TABLE]: IN_TABLE_MODE, - [$.BODY]: IN_BODY_MODE, - [$.FRAMESET]: IN_FRAMESET_MODE + +//Misc constants +const HIDDEN_INPUT_TYPE = 'hidden'; + +//Adoption agency loops iteration count +const AA_OUTER_LOOP_ITER = 8; +const AA_INNER_LOOP_ITER = 3; + +//Insertion modes +const INITIAL_MODE = 'INITIAL_MODE'; +const BEFORE_HTML_MODE = 'BEFORE_HTML_MODE'; +const BEFORE_HEAD_MODE = 'BEFORE_HEAD_MODE'; +const IN_HEAD_MODE = 'IN_HEAD_MODE'; +const IN_HEAD_NO_SCRIPT_MODE = 'IN_HEAD_NO_SCRIPT_MODE'; +const AFTER_HEAD_MODE = 'AFTER_HEAD_MODE'; +const IN_BODY_MODE = 'IN_BODY_MODE'; +const TEXT_MODE = 'TEXT_MODE'; +const IN_TABLE_MODE = 'IN_TABLE_MODE'; +const IN_TABLE_TEXT_MODE = 'IN_TABLE_TEXT_MODE'; +const IN_CAPTION_MODE = 'IN_CAPTION_MODE'; +const IN_COLUMN_GROUP_MODE = 'IN_COLUMN_GROUP_MODE'; +const IN_TABLE_BODY_MODE = 'IN_TABLE_BODY_MODE'; +const IN_ROW_MODE = 'IN_ROW_MODE'; +const IN_CELL_MODE = 'IN_CELL_MODE'; +const IN_SELECT_MODE = 'IN_SELECT_MODE'; +const IN_SELECT_IN_TABLE_MODE = 'IN_SELECT_IN_TABLE_MODE'; +const IN_TEMPLATE_MODE = 'IN_TEMPLATE_MODE'; +const AFTER_BODY_MODE = 'AFTER_BODY_MODE'; +const IN_FRAMESET_MODE = 'IN_FRAMESET_MODE'; +const AFTER_FRAMESET_MODE = 'AFTER_FRAMESET_MODE'; +const AFTER_AFTER_BODY_MODE = 'AFTER_AFTER_BODY_MODE'; +const AFTER_AFTER_FRAMESET_MODE = 'AFTER_AFTER_FRAMESET_MODE'; + +//Insertion mode reset map +const INSERTION_MODE_RESET_MAP = { + [$.TR]: IN_ROW_MODE, + [$.TBODY]: IN_TABLE_BODY_MODE, + [$.THEAD]: IN_TABLE_BODY_MODE, + [$.TFOOT]: IN_TABLE_BODY_MODE, + [$.CAPTION]: IN_CAPTION_MODE, + [$.COLGROUP]: IN_COLUMN_GROUP_MODE, + [$.TABLE]: IN_TABLE_MODE, + [$.BODY]: IN_BODY_MODE, + [$.FRAMESET]: IN_FRAMESET_MODE }; //Template insertion mode switch map @@ -53437,16 +51142,16 @@ function endTagInForeignContent(p, token) { /***/ }), -/* 335 */ +/* 329 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const Preprocessor = __webpack_require__(336); -const unicode = __webpack_require__(337); -const neTree = __webpack_require__(339); -const ERR = __webpack_require__(338); +const Preprocessor = __webpack_require__(330); +const unicode = __webpack_require__(331); +const neTree = __webpack_require__(333); +const ERR = __webpack_require__(332); //Aliases const $ = unicode.CODE_POINTS; @@ -55640,14 +53345,14 @@ module.exports = Tokenizer; /***/ }), -/* 336 */ +/* 330 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const unicode = __webpack_require__(337); -const ERR = __webpack_require__(338); +const unicode = __webpack_require__(331); +const ERR = __webpack_require__(332); //Aliases const $ = unicode.CODE_POINTS; @@ -55806,7 +53511,7 @@ module.exports = Preprocessor; /***/ }), -/* 337 */ +/* 331 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -55922,7 +53627,7 @@ exports.isUndefinedCodePoint = function(cp) { /***/ }), -/* 338 */ +/* 332 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -55994,7 +53699,7 @@ module.exports = { /***/ }), -/* 339 */ +/* 333 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -56005,13 +53710,13 @@ module.exports = { module.exports = new Uint16Array([4,52,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,106,303,412,810,1432,1701,1796,1987,2114,2360,2420,2484,3170,3251,4140,4393,4575,4610,5106,5512,5728,6117,6274,6315,6345,6427,6516,7002,7910,8733,9323,9870,10170,10631,10893,11318,11386,11467,12773,13092,14474,14922,15448,15542,16419,17666,18166,18611,19004,19095,19298,19397,4,16,69,77,97,98,99,102,103,108,109,110,111,112,114,115,116,117,140,150,158,169,176,194,199,210,216,222,226,242,256,266,283,294,108,105,103,5,198,1,59,148,1,198,80,5,38,1,59,156,1,38,99,117,116,101,5,193,1,59,167,1,193,114,101,118,101,59,1,258,4,2,105,121,182,191,114,99,5,194,1,59,189,1,194,59,1,1040,114,59,3,55349,56580,114,97,118,101,5,192,1,59,208,1,192,112,104,97,59,1,913,97,99,114,59,1,256,100,59,1,10835,4,2,103,112,232,237,111,110,59,1,260,102,59,3,55349,56632,112,108,121,70,117,110,99,116,105,111,110,59,1,8289,105,110,103,5,197,1,59,264,1,197,4,2,99,115,272,277,114,59,3,55349,56476,105,103,110,59,1,8788,105,108,100,101,5,195,1,59,292,1,195,109,108,5,196,1,59,301,1,196,4,8,97,99,101,102,111,114,115,117,321,350,354,383,388,394,400,405,4,2,99,114,327,336,107,115,108,97,115,104,59,1,8726,4,2,118,119,342,345,59,1,10983,101,100,59,1,8966,121,59,1,1041,4,3,99,114,116,362,369,379,97,117,115,101,59,1,8757,110,111,117,108,108,105,115,59,1,8492,97,59,1,914,114,59,3,55349,56581,112,102,59,3,55349,56633,101,118,101,59,1,728,99,114,59,1,8492,109,112,101,113,59,1,8782,4,14,72,79,97,99,100,101,102,104,105,108,111,114,115,117,442,447,456,504,542,547,569,573,577,616,678,784,790,796,99,121,59,1,1063,80,89,5,169,1,59,454,1,169,4,3,99,112,121,464,470,497,117,116,101,59,1,262,4,2,59,105,476,478,1,8914,116,97,108,68,105,102,102,101,114,101,110,116,105,97,108,68,59,1,8517,108,101,121,115,59,1,8493,4,4,97,101,105,111,514,520,530,535,114,111,110,59,1,268,100,105,108,5,199,1,59,528,1,199,114,99,59,1,264,110,105,110,116,59,1,8752,111,116,59,1,266,4,2,100,110,553,560,105,108,108,97,59,1,184,116,101,114,68,111,116,59,1,183,114,59,1,8493,105,59,1,935,114,99,108,101,4,4,68,77,80,84,591,596,603,609,111,116,59,1,8857,105,110,117,115,59,1,8854,108,117,115,59,1,8853,105,109,101,115,59,1,8855,111,4,2,99,115,623,646,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8754,101,67,117,114,108,121,4,2,68,81,658,671,111,117,98,108,101,81,117,111,116,101,59,1,8221,117,111,116,101,59,1,8217,4,4,108,110,112,117,688,701,736,753,111,110,4,2,59,101,696,698,1,8759,59,1,10868,4,3,103,105,116,709,717,722,114,117,101,110,116,59,1,8801,110,116,59,1,8751,111,117,114,73,110,116,101,103,114,97,108,59,1,8750,4,2,102,114,742,745,59,1,8450,111,100,117,99,116,59,1,8720,110,116,101,114,67,108,111,99,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8755,111,115,115,59,1,10799,99,114,59,3,55349,56478,112,4,2,59,67,803,805,1,8915,97,112,59,1,8781,4,11,68,74,83,90,97,99,101,102,105,111,115,834,850,855,860,865,888,903,916,921,1011,1415,4,2,59,111,840,842,1,8517,116,114,97,104,100,59,1,10513,99,121,59,1,1026,99,121,59,1,1029,99,121,59,1,1039,4,3,103,114,115,873,879,883,103,101,114,59,1,8225,114,59,1,8609,104,118,59,1,10980,4,2,97,121,894,900,114,111,110,59,1,270,59,1,1044,108,4,2,59,116,910,912,1,8711,97,59,1,916,114,59,3,55349,56583,4,2,97,102,927,998,4,2,99,109,933,992,114,105,116,105,99,97,108,4,4,65,68,71,84,950,957,978,985,99,117,116,101,59,1,180,111,4,2,116,117,964,967,59,1,729,98,108,101,65,99,117,116,101,59,1,733,114,97,118,101,59,1,96,105,108,100,101,59,1,732,111,110,100,59,1,8900,102,101,114,101,110,116,105,97,108,68,59,1,8518,4,4,112,116,117,119,1021,1026,1048,1249,102,59,3,55349,56635,4,3,59,68,69,1034,1036,1041,1,168,111,116,59,1,8412,113,117,97,108,59,1,8784,98,108,101,4,6,67,68,76,82,85,86,1065,1082,1101,1189,1211,1236,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8751,111,4,2,116,119,1089,1092,59,1,168,110,65,114,114,111,119,59,1,8659,4,2,101,111,1107,1141,102,116,4,3,65,82,84,1117,1124,1136,114,114,111,119,59,1,8656,105,103,104,116,65,114,114,111,119,59,1,8660,101,101,59,1,10980,110,103,4,2,76,82,1149,1177,101,102,116,4,2,65,82,1158,1165,114,114,111,119,59,1,10232,105,103,104,116,65,114,114,111,119,59,1,10234,105,103,104,116,65,114,114,111,119,59,1,10233,105,103,104,116,4,2,65,84,1199,1206,114,114,111,119,59,1,8658,101,101,59,1,8872,112,4,2,65,68,1218,1225,114,114,111,119,59,1,8657,111,119,110,65,114,114,111,119,59,1,8661,101,114,116,105,99,97,108,66,97,114,59,1,8741,110,4,6,65,66,76,82,84,97,1264,1292,1299,1352,1391,1408,114,114,111,119,4,3,59,66,85,1276,1278,1283,1,8595,97,114,59,1,10515,112,65,114,114,111,119,59,1,8693,114,101,118,101,59,1,785,101,102,116,4,3,82,84,86,1310,1323,1334,105,103,104,116,86,101,99,116,111,114,59,1,10576,101,101,86,101,99,116,111,114,59,1,10590,101,99,116,111,114,4,2,59,66,1345,1347,1,8637,97,114,59,1,10582,105,103,104,116,4,2,84,86,1362,1373,101,101,86,101,99,116,111,114,59,1,10591,101,99,116,111,114,4,2,59,66,1384,1386,1,8641,97,114,59,1,10583,101,101,4,2,59,65,1399,1401,1,8868,114,114,111,119,59,1,8615,114,114,111,119,59,1,8659,4,2,99,116,1421,1426,114,59,3,55349,56479,114,111,107,59,1,272,4,16,78,84,97,99,100,102,103,108,109,111,112,113,115,116,117,120,1466,1470,1478,1489,1515,1520,1525,1536,1544,1593,1609,1617,1650,1664,1668,1677,71,59,1,330,72,5,208,1,59,1476,1,208,99,117,116,101,5,201,1,59,1487,1,201,4,3,97,105,121,1497,1503,1512,114,111,110,59,1,282,114,99,5,202,1,59,1510,1,202,59,1,1069,111,116,59,1,278,114,59,3,55349,56584,114,97,118,101,5,200,1,59,1534,1,200,101,109,101,110,116,59,1,8712,4,2,97,112,1550,1555,99,114,59,1,274,116,121,4,2,83,86,1563,1576,109,97,108,108,83,113,117,97,114,101,59,1,9723,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9643,4,2,103,112,1599,1604,111,110,59,1,280,102,59,3,55349,56636,115,105,108,111,110,59,1,917,117,4,2,97,105,1624,1640,108,4,2,59,84,1631,1633,1,10869,105,108,100,101,59,1,8770,108,105,98,114,105,117,109,59,1,8652,4,2,99,105,1656,1660,114,59,1,8496,109,59,1,10867,97,59,1,919,109,108,5,203,1,59,1675,1,203,4,2,105,112,1683,1689,115,116,115,59,1,8707,111,110,101,110,116,105,97,108,69,59,1,8519,4,5,99,102,105,111,115,1713,1717,1722,1762,1791,121,59,1,1060,114,59,3,55349,56585,108,108,101,100,4,2,83,86,1732,1745,109,97,108,108,83,113,117,97,114,101,59,1,9724,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9642,4,3,112,114,117,1770,1775,1781,102,59,3,55349,56637,65,108,108,59,1,8704,114,105,101,114,116,114,102,59,1,8497,99,114,59,1,8497,4,12,74,84,97,98,99,100,102,103,111,114,115,116,1822,1827,1834,1848,1855,1877,1882,1887,1890,1896,1978,1984,99,121,59,1,1027,5,62,1,59,1832,1,62,109,109,97,4,2,59,100,1843,1845,1,915,59,1,988,114,101,118,101,59,1,286,4,3,101,105,121,1863,1869,1874,100,105,108,59,1,290,114,99,59,1,284,59,1,1043,111,116,59,1,288,114,59,3,55349,56586,59,1,8921,112,102,59,3,55349,56638,101,97,116,101,114,4,6,69,70,71,76,83,84,1915,1933,1944,1953,1959,1971,113,117,97,108,4,2,59,76,1925,1927,1,8805,101,115,115,59,1,8923,117,108,108,69,113,117,97,108,59,1,8807,114,101,97,116,101,114,59,1,10914,101,115,115,59,1,8823,108,97,110,116,69,113,117,97,108,59,1,10878,105,108,100,101,59,1,8819,99,114,59,3,55349,56482,59,1,8811,4,8,65,97,99,102,105,111,115,117,2005,2012,2026,2032,2036,2049,2073,2089,82,68,99,121,59,1,1066,4,2,99,116,2018,2023,101,107,59,1,711,59,1,94,105,114,99,59,1,292,114,59,1,8460,108,98,101,114,116,83,112,97,99,101,59,1,8459,4,2,112,114,2055,2059,102,59,1,8461,105,122,111,110,116,97,108,76,105,110,101,59,1,9472,4,2,99,116,2079,2083,114,59,1,8459,114,111,107,59,1,294,109,112,4,2,68,69,2097,2107,111,119,110,72,117,109,112,59,1,8782,113,117,97,108,59,1,8783,4,14,69,74,79,97,99,100,102,103,109,110,111,115,116,117,2144,2149,2155,2160,2171,2189,2194,2198,2209,2245,2307,2329,2334,2341,99,121,59,1,1045,108,105,103,59,1,306,99,121,59,1,1025,99,117,116,101,5,205,1,59,2169,1,205,4,2,105,121,2177,2186,114,99,5,206,1,59,2184,1,206,59,1,1048,111,116,59,1,304,114,59,1,8465,114,97,118,101,5,204,1,59,2207,1,204,4,3,59,97,112,2217,2219,2238,1,8465,4,2,99,103,2225,2229,114,59,1,298,105,110,97,114,121,73,59,1,8520,108,105,101,115,59,1,8658,4,2,116,118,2251,2281,4,2,59,101,2257,2259,1,8748,4,2,103,114,2265,2271,114,97,108,59,1,8747,115,101,99,116,105,111,110,59,1,8898,105,115,105,98,108,101,4,2,67,84,2293,2300,111,109,109,97,59,1,8291,105,109,101,115,59,1,8290,4,3,103,112,116,2315,2320,2325,111,110,59,1,302,102,59,3,55349,56640,97,59,1,921,99,114,59,1,8464,105,108,100,101,59,1,296,4,2,107,109,2347,2352,99,121,59,1,1030,108,5,207,1,59,2358,1,207,4,5,99,102,111,115,117,2372,2386,2391,2397,2414,4,2,105,121,2378,2383,114,99,59,1,308,59,1,1049,114,59,3,55349,56589,112,102,59,3,55349,56641,4,2,99,101,2403,2408,114,59,3,55349,56485,114,99,121,59,1,1032,107,99,121,59,1,1028,4,7,72,74,97,99,102,111,115,2436,2441,2446,2452,2467,2472,2478,99,121,59,1,1061,99,121,59,1,1036,112,112,97,59,1,922,4,2,101,121,2458,2464,100,105,108,59,1,310,59,1,1050,114,59,3,55349,56590,112,102,59,3,55349,56642,99,114,59,3,55349,56486,4,11,74,84,97,99,101,102,108,109,111,115,116,2508,2513,2520,2562,2585,2981,2986,3004,3011,3146,3167,99,121,59,1,1033,5,60,1,59,2518,1,60,4,5,99,109,110,112,114,2532,2538,2544,2548,2558,117,116,101,59,1,313,98,100,97,59,1,923,103,59,1,10218,108,97,99,101,116,114,102,59,1,8466,114,59,1,8606,4,3,97,101,121,2570,2576,2582,114,111,110,59,1,317,100,105,108,59,1,315,59,1,1051,4,2,102,115,2591,2907,116,4,10,65,67,68,70,82,84,85,86,97,114,2614,2663,2672,2728,2735,2760,2820,2870,2888,2895,4,2,110,114,2620,2633,103,108,101,66,114,97,99,107,101,116,59,1,10216,114,111,119,4,3,59,66,82,2644,2646,2651,1,8592,97,114,59,1,8676,105,103,104,116,65,114,114,111,119,59,1,8646,101,105,108,105,110,103,59,1,8968,111,4,2,117,119,2679,2692,98,108,101,66,114,97,99,107,101,116,59,1,10214,110,4,2,84,86,2699,2710,101,101,86,101,99,116,111,114,59,1,10593,101,99,116,111,114,4,2,59,66,2721,2723,1,8643,97,114,59,1,10585,108,111,111,114,59,1,8970,105,103,104,116,4,2,65,86,2745,2752,114,114,111,119,59,1,8596,101,99,116,111,114,59,1,10574,4,2,101,114,2766,2792,101,4,3,59,65,86,2775,2777,2784,1,8867,114,114,111,119,59,1,8612,101,99,116,111,114,59,1,10586,105,97,110,103,108,101,4,3,59,66,69,2806,2808,2813,1,8882,97,114,59,1,10703,113,117,97,108,59,1,8884,112,4,3,68,84,86,2829,2841,2852,111,119,110,86,101,99,116,111,114,59,1,10577,101,101,86,101,99,116,111,114,59,1,10592,101,99,116,111,114,4,2,59,66,2863,2865,1,8639,97,114,59,1,10584,101,99,116,111,114,4,2,59,66,2881,2883,1,8636,97,114,59,1,10578,114,114,111,119,59,1,8656,105,103,104,116,97,114,114,111,119,59,1,8660,115,4,6,69,70,71,76,83,84,2922,2936,2947,2956,2962,2974,113,117,97,108,71,114,101,97,116,101,114,59,1,8922,117,108,108,69,113,117,97,108,59,1,8806,114,101,97,116,101,114,59,1,8822,101,115,115,59,1,10913,108,97,110,116,69,113,117,97,108,59,1,10877,105,108,100,101,59,1,8818,114,59,3,55349,56591,4,2,59,101,2992,2994,1,8920,102,116,97,114,114,111,119,59,1,8666,105,100,111,116,59,1,319,4,3,110,112,119,3019,3110,3115,103,4,4,76,82,108,114,3030,3058,3070,3098,101,102,116,4,2,65,82,3039,3046,114,114,111,119,59,1,10229,105,103,104,116,65,114,114,111,119,59,1,10231,105,103,104,116,65,114,114,111,119,59,1,10230,101,102,116,4,2,97,114,3079,3086,114,114,111,119,59,1,10232,105,103,104,116,97,114,114,111,119,59,1,10234,105,103,104,116,97,114,114,111,119,59,1,10233,102,59,3,55349,56643,101,114,4,2,76,82,3123,3134,101,102,116,65,114,114,111,119,59,1,8601,105,103,104,116,65,114,114,111,119,59,1,8600,4,3,99,104,116,3154,3158,3161,114,59,1,8466,59,1,8624,114,111,107,59,1,321,59,1,8810,4,8,97,99,101,102,105,111,115,117,3188,3192,3196,3222,3227,3237,3243,3248,112,59,1,10501,121,59,1,1052,4,2,100,108,3202,3213,105,117,109,83,112,97,99,101,59,1,8287,108,105,110,116,114,102,59,1,8499,114,59,3,55349,56592,110,117,115,80,108,117,115,59,1,8723,112,102,59,3,55349,56644,99,114,59,1,8499,59,1,924,4,9,74,97,99,101,102,111,115,116,117,3271,3276,3283,3306,3422,3427,4120,4126,4137,99,121,59,1,1034,99,117,116,101,59,1,323,4,3,97,101,121,3291,3297,3303,114,111,110,59,1,327,100,105,108,59,1,325,59,1,1053,4,3,103,115,119,3314,3380,3415,97,116,105,118,101,4,3,77,84,86,3327,3340,3365,101,100,105,117,109,83,112,97,99,101,59,1,8203,104,105,4,2,99,110,3348,3357,107,83,112,97,99,101,59,1,8203,83,112,97,99,101,59,1,8203,101,114,121,84,104,105,110,83,112,97,99,101,59,1,8203,116,101,100,4,2,71,76,3389,3405,114,101,97,116,101,114,71,114,101,97,116,101,114,59,1,8811,101,115,115,76,101,115,115,59,1,8810,76,105,110,101,59,1,10,114,59,3,55349,56593,4,4,66,110,112,116,3437,3444,3460,3464,114,101,97,107,59,1,8288,66,114,101,97,107,105,110,103,83,112,97,99,101,59,1,160,102,59,1,8469,4,13,59,67,68,69,71,72,76,78,80,82,83,84,86,3492,3494,3517,3536,3578,3657,3685,3784,3823,3860,3915,4066,4107,1,10988,4,2,111,117,3500,3510,110,103,114,117,101,110,116,59,1,8802,112,67,97,112,59,1,8813,111,117,98,108,101,86,101,114,116,105,99,97,108,66,97,114,59,1,8742,4,3,108,113,120,3544,3552,3571,101,109,101,110,116,59,1,8713,117,97,108,4,2,59,84,3561,3563,1,8800,105,108,100,101,59,3,8770,824,105,115,116,115,59,1,8708,114,101,97,116,101,114,4,7,59,69,70,71,76,83,84,3600,3602,3609,3621,3631,3637,3650,1,8815,113,117,97,108,59,1,8817,117,108,108,69,113,117,97,108,59,3,8807,824,114,101,97,116,101,114,59,3,8811,824,101,115,115,59,1,8825,108,97,110,116,69,113,117,97,108,59,3,10878,824,105,108,100,101,59,1,8821,117,109,112,4,2,68,69,3666,3677,111,119,110,72,117,109,112,59,3,8782,824,113,117,97,108,59,3,8783,824,101,4,2,102,115,3692,3724,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3709,3711,3717,1,8938,97,114,59,3,10703,824,113,117,97,108,59,1,8940,115,4,6,59,69,71,76,83,84,3739,3741,3748,3757,3764,3777,1,8814,113,117,97,108,59,1,8816,114,101,97,116,101,114,59,1,8824,101,115,115,59,3,8810,824,108,97,110,116,69,113,117,97,108,59,3,10877,824,105,108,100,101,59,1,8820,101,115,116,101,100,4,2,71,76,3795,3812,114,101,97,116,101,114,71,114,101,97,116,101,114,59,3,10914,824,101,115,115,76,101,115,115,59,3,10913,824,114,101,99,101,100,101,115,4,3,59,69,83,3838,3840,3848,1,8832,113,117,97,108,59,3,10927,824,108,97,110,116,69,113,117,97,108,59,1,8928,4,2,101,105,3866,3881,118,101,114,115,101,69,108,101,109,101,110,116,59,1,8716,103,104,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3900,3902,3908,1,8939,97,114,59,3,10704,824,113,117,97,108,59,1,8941,4,2,113,117,3921,3973,117,97,114,101,83,117,4,2,98,112,3933,3952,115,101,116,4,2,59,69,3942,3945,3,8847,824,113,117,97,108,59,1,8930,101,114,115,101,116,4,2,59,69,3963,3966,3,8848,824,113,117,97,108,59,1,8931,4,3,98,99,112,3981,4000,4045,115,101,116,4,2,59,69,3990,3993,3,8834,8402,113,117,97,108,59,1,8840,99,101,101,100,115,4,4,59,69,83,84,4015,4017,4025,4037,1,8833,113,117,97,108,59,3,10928,824,108,97,110,116,69,113,117,97,108,59,1,8929,105,108,100,101,59,3,8831,824,101,114,115,101,116,4,2,59,69,4056,4059,3,8835,8402,113,117,97,108,59,1,8841,105,108,100,101,4,4,59,69,70,84,4080,4082,4089,4100,1,8769,113,117,97,108,59,1,8772,117,108,108,69,113,117,97,108,59,1,8775,105,108,100,101,59,1,8777,101,114,116,105,99,97,108,66,97,114,59,1,8740,99,114,59,3,55349,56489,105,108,100,101,5,209,1,59,4135,1,209,59,1,925,4,14,69,97,99,100,102,103,109,111,112,114,115,116,117,118,4170,4176,4187,4205,4212,4217,4228,4253,4259,4292,4295,4316,4337,4346,108,105,103,59,1,338,99,117,116,101,5,211,1,59,4185,1,211,4,2,105,121,4193,4202,114,99,5,212,1,59,4200,1,212,59,1,1054,98,108,97,99,59,1,336,114,59,3,55349,56594,114,97,118,101,5,210,1,59,4226,1,210,4,3,97,101,105,4236,4241,4246,99,114,59,1,332,103,97,59,1,937,99,114,111,110,59,1,927,112,102,59,3,55349,56646,101,110,67,117,114,108,121,4,2,68,81,4272,4285,111,117,98,108,101,81,117,111,116,101,59,1,8220,117,111,116,101,59,1,8216,59,1,10836,4,2,99,108,4301,4306,114,59,3,55349,56490,97,115,104,5,216,1,59,4314,1,216,105,4,2,108,109,4323,4332,100,101,5,213,1,59,4330,1,213,101,115,59,1,10807,109,108,5,214,1,59,4344,1,214,101,114,4,2,66,80,4354,4380,4,2,97,114,4360,4364,114,59,1,8254,97,99,4,2,101,107,4372,4375,59,1,9182,101,116,59,1,9140,97,114,101,110,116,104,101,115,105,115,59,1,9180,4,9,97,99,102,104,105,108,111,114,115,4413,4422,4426,4431,4435,4438,4448,4471,4561,114,116,105,97,108,68,59,1,8706,121,59,1,1055,114,59,3,55349,56595,105,59,1,934,59,1,928,117,115,77,105,110,117,115,59,1,177,4,2,105,112,4454,4467,110,99,97,114,101,112,108,97,110,101,59,1,8460,102,59,1,8473,4,4,59,101,105,111,4481,4483,4526,4531,1,10939,99,101,100,101,115,4,4,59,69,83,84,4498,4500,4507,4519,1,8826,113,117,97,108,59,1,10927,108,97,110,116,69,113,117,97,108,59,1,8828,105,108,100,101,59,1,8830,109,101,59,1,8243,4,2,100,112,4537,4543,117,99,116,59,1,8719,111,114,116,105,111,110,4,2,59,97,4555,4557,1,8759,108,59,1,8733,4,2,99,105,4567,4572,114,59,3,55349,56491,59,1,936,4,4,85,102,111,115,4585,4594,4599,4604,79,84,5,34,1,59,4592,1,34,114,59,3,55349,56596,112,102,59,1,8474,99,114,59,3,55349,56492,4,12,66,69,97,99,101,102,104,105,111,114,115,117,4636,4642,4650,4681,4704,4763,4767,4771,5047,5069,5081,5094,97,114,114,59,1,10512,71,5,174,1,59,4648,1,174,4,3,99,110,114,4658,4664,4668,117,116,101,59,1,340,103,59,1,10219,114,4,2,59,116,4675,4677,1,8608,108,59,1,10518,4,3,97,101,121,4689,4695,4701,114,111,110,59,1,344,100,105,108,59,1,342,59,1,1056,4,2,59,118,4710,4712,1,8476,101,114,115,101,4,2,69,85,4722,4748,4,2,108,113,4728,4736,101,109,101,110,116,59,1,8715,117,105,108,105,98,114,105,117,109,59,1,8651,112,69,113,117,105,108,105,98,114,105,117,109,59,1,10607,114,59,1,8476,111,59,1,929,103,104,116,4,8,65,67,68,70,84,85,86,97,4792,4840,4849,4905,4912,4972,5022,5040,4,2,110,114,4798,4811,103,108,101,66,114,97,99,107,101,116,59,1,10217,114,111,119,4,3,59,66,76,4822,4824,4829,1,8594,97,114,59,1,8677,101,102,116,65,114,114,111,119,59,1,8644,101,105,108,105,110,103,59,1,8969,111,4,2,117,119,4856,4869,98,108,101,66,114,97,99,107,101,116,59,1,10215,110,4,2,84,86,4876,4887,101,101,86,101,99,116,111,114,59,1,10589,101,99,116,111,114,4,2,59,66,4898,4900,1,8642,97,114,59,1,10581,108,111,111,114,59,1,8971,4,2,101,114,4918,4944,101,4,3,59,65,86,4927,4929,4936,1,8866,114,114,111,119,59,1,8614,101,99,116,111,114,59,1,10587,105,97,110,103,108,101,4,3,59,66,69,4958,4960,4965,1,8883,97,114,59,1,10704,113,117,97,108,59,1,8885,112,4,3,68,84,86,4981,4993,5004,111,119,110,86,101,99,116,111,114,59,1,10575,101,101,86,101,99,116,111,114,59,1,10588,101,99,116,111,114,4,2,59,66,5015,5017,1,8638,97,114,59,1,10580,101,99,116,111,114,4,2,59,66,5033,5035,1,8640,97,114,59,1,10579,114,114,111,119,59,1,8658,4,2,112,117,5053,5057,102,59,1,8477,110,100,73,109,112,108,105,101,115,59,1,10608,105,103,104,116,97,114,114,111,119,59,1,8667,4,2,99,104,5087,5091,114,59,1,8475,59,1,8625,108,101,68,101,108,97,121,101,100,59,1,10740,4,13,72,79,97,99,102,104,105,109,111,113,115,116,117,5134,5150,5157,5164,5198,5203,5259,5265,5277,5283,5374,5380,5385,4,2,67,99,5140,5146,72,99,121,59,1,1065,121,59,1,1064,70,84,99,121,59,1,1068,99,117,116,101,59,1,346,4,5,59,97,101,105,121,5176,5178,5184,5190,5195,1,10940,114,111,110,59,1,352,100,105,108,59,1,350,114,99,59,1,348,59,1,1057,114,59,3,55349,56598,111,114,116,4,4,68,76,82,85,5216,5227,5238,5250,111,119,110,65,114,114,111,119,59,1,8595,101,102,116,65,114,114,111,119,59,1,8592,105,103,104,116,65,114,114,111,119,59,1,8594,112,65,114,114,111,119,59,1,8593,103,109,97,59,1,931,97,108,108,67,105,114,99,108,101,59,1,8728,112,102,59,3,55349,56650,4,2,114,117,5289,5293,116,59,1,8730,97,114,101,4,4,59,73,83,85,5306,5308,5322,5367,1,9633,110,116,101,114,115,101,99,116,105,111,110,59,1,8851,117,4,2,98,112,5329,5347,115,101,116,4,2,59,69,5338,5340,1,8847,113,117,97,108,59,1,8849,101,114,115,101,116,4,2,59,69,5358,5360,1,8848,113,117,97,108,59,1,8850,110,105,111,110,59,1,8852,99,114,59,3,55349,56494,97,114,59,1,8902,4,4,98,99,109,112,5395,5420,5475,5478,4,2,59,115,5401,5403,1,8912,101,116,4,2,59,69,5411,5413,1,8912,113,117,97,108,59,1,8838,4,2,99,104,5426,5468,101,101,100,115,4,4,59,69,83,84,5440,5442,5449,5461,1,8827,113,117,97,108,59,1,10928,108,97,110,116,69,113,117,97,108,59,1,8829,105,108,100,101,59,1,8831,84,104,97,116,59,1,8715,59,1,8721,4,3,59,101,115,5486,5488,5507,1,8913,114,115,101,116,4,2,59,69,5498,5500,1,8835,113,117,97,108,59,1,8839,101,116,59,1,8913,4,11,72,82,83,97,99,102,104,105,111,114,115,5536,5546,5552,5567,5579,5602,5607,5655,5695,5701,5711,79,82,78,5,222,1,59,5544,1,222,65,68,69,59,1,8482,4,2,72,99,5558,5563,99,121,59,1,1035,121,59,1,1062,4,2,98,117,5573,5576,59,1,9,59,1,932,4,3,97,101,121,5587,5593,5599,114,111,110,59,1,356,100,105,108,59,1,354,59,1,1058,114,59,3,55349,56599,4,2,101,105,5613,5631,4,2,114,116,5619,5627,101,102,111,114,101,59,1,8756,97,59,1,920,4,2,99,110,5637,5647,107,83,112,97,99,101,59,3,8287,8202,83,112,97,99,101,59,1,8201,108,100,101,4,4,59,69,70,84,5668,5670,5677,5688,1,8764,113,117,97,108,59,1,8771,117,108,108,69,113,117,97,108,59,1,8773,105,108,100,101,59,1,8776,112,102,59,3,55349,56651,105,112,108,101,68,111,116,59,1,8411,4,2,99,116,5717,5722,114,59,3,55349,56495,114,111,107,59,1,358,4,14,97,98,99,100,102,103,109,110,111,112,114,115,116,117,5758,5789,5805,5823,5830,5835,5846,5852,5921,5937,6089,6095,6101,6108,4,2,99,114,5764,5774,117,116,101,5,218,1,59,5772,1,218,114,4,2,59,111,5781,5783,1,8607,99,105,114,59,1,10569,114,4,2,99,101,5796,5800,121,59,1,1038,118,101,59,1,364,4,2,105,121,5811,5820,114,99,5,219,1,59,5818,1,219,59,1,1059,98,108,97,99,59,1,368,114,59,3,55349,56600,114,97,118,101,5,217,1,59,5844,1,217,97,99,114,59,1,362,4,2,100,105,5858,5905,101,114,4,2,66,80,5866,5892,4,2,97,114,5872,5876,114,59,1,95,97,99,4,2,101,107,5884,5887,59,1,9183,101,116,59,1,9141,97,114,101,110,116,104,101,115,105,115,59,1,9181,111,110,4,2,59,80,5913,5915,1,8899,108,117,115,59,1,8846,4,2,103,112,5927,5932,111,110,59,1,370,102,59,3,55349,56652,4,8,65,68,69,84,97,100,112,115,5955,5985,5996,6009,6026,6033,6044,6075,114,114,111,119,4,3,59,66,68,5967,5969,5974,1,8593,97,114,59,1,10514,111,119,110,65,114,114,111,119,59,1,8645,111,119,110,65,114,114,111,119,59,1,8597,113,117,105,108,105,98,114,105,117,109,59,1,10606,101,101,4,2,59,65,6017,6019,1,8869,114,114,111,119,59,1,8613,114,114,111,119,59,1,8657,111,119,110,97,114,114,111,119,59,1,8661,101,114,4,2,76,82,6052,6063,101,102,116,65,114,114,111,119,59,1,8598,105,103,104,116,65,114,114,111,119,59,1,8599,105,4,2,59,108,6082,6084,1,978,111,110,59,1,933,105,110,103,59,1,366,99,114,59,3,55349,56496,105,108,100,101,59,1,360,109,108,5,220,1,59,6115,1,220,4,9,68,98,99,100,101,102,111,115,118,6137,6143,6148,6152,6166,6250,6255,6261,6267,97,115,104,59,1,8875,97,114,59,1,10987,121,59,1,1042,97,115,104,4,2,59,108,6161,6163,1,8873,59,1,10982,4,2,101,114,6172,6175,59,1,8897,4,3,98,116,121,6183,6188,6238,97,114,59,1,8214,4,2,59,105,6194,6196,1,8214,99,97,108,4,4,66,76,83,84,6209,6214,6220,6231,97,114,59,1,8739,105,110,101,59,1,124,101,112,97,114,97,116,111,114,59,1,10072,105,108,100,101,59,1,8768,84,104,105,110,83,112,97,99,101,59,1,8202,114,59,3,55349,56601,112,102,59,3,55349,56653,99,114,59,3,55349,56497,100,97,115,104,59,1,8874,4,5,99,101,102,111,115,6286,6292,6298,6303,6309,105,114,99,59,1,372,100,103,101,59,1,8896,114,59,3,55349,56602,112,102,59,3,55349,56654,99,114,59,3,55349,56498,4,4,102,105,111,115,6325,6330,6333,6339,114,59,3,55349,56603,59,1,926,112,102,59,3,55349,56655,99,114,59,3,55349,56499,4,9,65,73,85,97,99,102,111,115,117,6365,6370,6375,6380,6391,6405,6410,6416,6422,99,121,59,1,1071,99,121,59,1,1031,99,121,59,1,1070,99,117,116,101,5,221,1,59,6389,1,221,4,2,105,121,6397,6402,114,99,59,1,374,59,1,1067,114,59,3,55349,56604,112,102,59,3,55349,56656,99,114,59,3,55349,56500,109,108,59,1,376,4,8,72,97,99,100,101,102,111,115,6445,6450,6457,6472,6477,6501,6505,6510,99,121,59,1,1046,99,117,116,101,59,1,377,4,2,97,121,6463,6469,114,111,110,59,1,381,59,1,1047,111,116,59,1,379,4,2,114,116,6483,6497,111,87,105,100,116,104,83,112,97,99,101,59,1,8203,97,59,1,918,114,59,1,8488,112,102,59,1,8484,99,114,59,3,55349,56501,4,16,97,98,99,101,102,103,108,109,110,111,112,114,115,116,117,119,6550,6561,6568,6612,6622,6634,6645,6672,6699,6854,6870,6923,6933,6963,6974,6983,99,117,116,101,5,225,1,59,6559,1,225,114,101,118,101,59,1,259,4,6,59,69,100,105,117,121,6582,6584,6588,6591,6600,6609,1,8766,59,3,8766,819,59,1,8767,114,99,5,226,1,59,6598,1,226,116,101,5,180,1,59,6607,1,180,59,1,1072,108,105,103,5,230,1,59,6620,1,230,4,2,59,114,6628,6630,1,8289,59,3,55349,56606,114,97,118,101,5,224,1,59,6643,1,224,4,2,101,112,6651,6667,4,2,102,112,6657,6663,115,121,109,59,1,8501,104,59,1,8501,104,97,59,1,945,4,2,97,112,6678,6692,4,2,99,108,6684,6688,114,59,1,257,103,59,1,10815,5,38,1,59,6697,1,38,4,2,100,103,6705,6737,4,5,59,97,100,115,118,6717,6719,6724,6727,6734,1,8743,110,100,59,1,10837,59,1,10844,108,111,112,101,59,1,10840,59,1,10842,4,7,59,101,108,109,114,115,122,6753,6755,6758,6762,6814,6835,6848,1,8736,59,1,10660,101,59,1,8736,115,100,4,2,59,97,6770,6772,1,8737,4,8,97,98,99,100,101,102,103,104,6790,6793,6796,6799,6802,6805,6808,6811,59,1,10664,59,1,10665,59,1,10666,59,1,10667,59,1,10668,59,1,10669,59,1,10670,59,1,10671,116,4,2,59,118,6821,6823,1,8735,98,4,2,59,100,6830,6832,1,8894,59,1,10653,4,2,112,116,6841,6845,104,59,1,8738,59,1,197,97,114,114,59,1,9084,4,2,103,112,6860,6865,111,110,59,1,261,102,59,3,55349,56658,4,7,59,69,97,101,105,111,112,6886,6888,6891,6897,6900,6904,6908,1,8776,59,1,10864,99,105,114,59,1,10863,59,1,8778,100,59,1,8779,115,59,1,39,114,111,120,4,2,59,101,6917,6919,1,8776,113,59,1,8778,105,110,103,5,229,1,59,6931,1,229,4,3,99,116,121,6941,6946,6949,114,59,3,55349,56502,59,1,42,109,112,4,2,59,101,6957,6959,1,8776,113,59,1,8781,105,108,100,101,5,227,1,59,6972,1,227,109,108,5,228,1,59,6981,1,228,4,2,99,105,6989,6997,111,110,105,110,116,59,1,8755,110,116,59,1,10769,4,16,78,97,98,99,100,101,102,105,107,108,110,111,112,114,115,117,7036,7041,7119,7135,7149,7155,7219,7224,7347,7354,7463,7489,7786,7793,7814,7866,111,116,59,1,10989,4,2,99,114,7047,7094,107,4,4,99,101,112,115,7058,7064,7073,7080,111,110,103,59,1,8780,112,115,105,108,111,110,59,1,1014,114,105,109,101,59,1,8245,105,109,4,2,59,101,7088,7090,1,8765,113,59,1,8909,4,2,118,119,7100,7105,101,101,59,1,8893,101,100,4,2,59,103,7113,7115,1,8965,101,59,1,8965,114,107,4,2,59,116,7127,7129,1,9141,98,114,107,59,1,9142,4,2,111,121,7141,7146,110,103,59,1,8780,59,1,1073,113,117,111,59,1,8222,4,5,99,109,112,114,116,7167,7181,7188,7193,7199,97,117,115,4,2,59,101,7176,7178,1,8757,59,1,8757,112,116,121,118,59,1,10672,115,105,59,1,1014,110,111,117,59,1,8492,4,3,97,104,119,7207,7210,7213,59,1,946,59,1,8502,101,101,110,59,1,8812,114,59,3,55349,56607,103,4,7,99,111,115,116,117,118,119,7241,7262,7288,7305,7328,7335,7340,4,3,97,105,117,7249,7253,7258,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,4,3,100,112,116,7270,7275,7281,111,116,59,1,10752,108,117,115,59,1,10753,105,109,101,115,59,1,10754,4,2,113,116,7294,7300,99,117,112,59,1,10758,97,114,59,1,9733,114,105,97,110,103,108,101,4,2,100,117,7318,7324,111,119,110,59,1,9661,112,59,1,9651,112,108,117,115,59,1,10756,101,101,59,1,8897,101,100,103,101,59,1,8896,97,114,111,119,59,1,10509,4,3,97,107,111,7362,7436,7458,4,2,99,110,7368,7432,107,4,3,108,115,116,7377,7386,7394,111,122,101,110,103,101,59,1,10731,113,117,97,114,101,59,1,9642,114,105,97,110,103,108,101,4,4,59,100,108,114,7411,7413,7419,7425,1,9652,111,119,110,59,1,9662,101,102,116,59,1,9666,105,103,104,116,59,1,9656,107,59,1,9251,4,2,49,51,7442,7454,4,2,50,52,7448,7451,59,1,9618,59,1,9617,52,59,1,9619,99,107,59,1,9608,4,2,101,111,7469,7485,4,2,59,113,7475,7478,3,61,8421,117,105,118,59,3,8801,8421,116,59,1,8976,4,4,112,116,119,120,7499,7504,7517,7523,102,59,3,55349,56659,4,2,59,116,7510,7512,1,8869,111,109,59,1,8869,116,105,101,59,1,8904,4,12,68,72,85,86,98,100,104,109,112,116,117,118,7549,7571,7597,7619,7655,7660,7682,7708,7715,7721,7728,7750,4,4,76,82,108,114,7559,7562,7565,7568,59,1,9559,59,1,9556,59,1,9558,59,1,9555,4,5,59,68,85,100,117,7583,7585,7588,7591,7594,1,9552,59,1,9574,59,1,9577,59,1,9572,59,1,9575,4,4,76,82,108,114,7607,7610,7613,7616,59,1,9565,59,1,9562,59,1,9564,59,1,9561,4,7,59,72,76,82,104,108,114,7635,7637,7640,7643,7646,7649,7652,1,9553,59,1,9580,59,1,9571,59,1,9568,59,1,9579,59,1,9570,59,1,9567,111,120,59,1,10697,4,4,76,82,108,114,7670,7673,7676,7679,59,1,9557,59,1,9554,59,1,9488,59,1,9484,4,5,59,68,85,100,117,7694,7696,7699,7702,7705,1,9472,59,1,9573,59,1,9576,59,1,9516,59,1,9524,105,110,117,115,59,1,8863,108,117,115,59,1,8862,105,109,101,115,59,1,8864,4,4,76,82,108,114,7738,7741,7744,7747,59,1,9563,59,1,9560,59,1,9496,59,1,9492,4,7,59,72,76,82,104,108,114,7766,7768,7771,7774,7777,7780,7783,1,9474,59,1,9578,59,1,9569,59,1,9566,59,1,9532,59,1,9508,59,1,9500,114,105,109,101,59,1,8245,4,2,101,118,7799,7804,118,101,59,1,728,98,97,114,5,166,1,59,7812,1,166,4,4,99,101,105,111,7824,7829,7834,7846,114,59,3,55349,56503,109,105,59,1,8271,109,4,2,59,101,7841,7843,1,8765,59,1,8909,108,4,3,59,98,104,7855,7857,7860,1,92,59,1,10693,115,117,98,59,1,10184,4,2,108,109,7872,7885,108,4,2,59,101,7879,7881,1,8226,116,59,1,8226,112,4,3,59,69,101,7894,7896,7899,1,8782,59,1,10926,4,2,59,113,7905,7907,1,8783,59,1,8783,4,15,97,99,100,101,102,104,105,108,111,114,115,116,117,119,121,7942,8021,8075,8080,8121,8126,8157,8279,8295,8430,8446,8485,8491,8707,8726,4,3,99,112,114,7950,7956,8007,117,116,101,59,1,263,4,6,59,97,98,99,100,115,7970,7972,7977,7984,7998,8003,1,8745,110,100,59,1,10820,114,99,117,112,59,1,10825,4,2,97,117,7990,7994,112,59,1,10827,112,59,1,10823,111,116,59,1,10816,59,3,8745,65024,4,2,101,111,8013,8017,116,59,1,8257,110,59,1,711,4,4,97,101,105,117,8031,8046,8056,8061,4,2,112,114,8037,8041,115,59,1,10829,111,110,59,1,269,100,105,108,5,231,1,59,8054,1,231,114,99,59,1,265,112,115,4,2,59,115,8069,8071,1,10828,109,59,1,10832,111,116,59,1,267,4,3,100,109,110,8088,8097,8104,105,108,5,184,1,59,8095,1,184,112,116,121,118,59,1,10674,116,5,162,2,59,101,8112,8114,1,162,114,100,111,116,59,1,183,114,59,3,55349,56608,4,3,99,101,105,8134,8138,8154,121,59,1,1095,99,107,4,2,59,109,8146,8148,1,10003,97,114,107,59,1,10003,59,1,967,114,4,7,59,69,99,101,102,109,115,8174,8176,8179,8258,8261,8268,8273,1,9675,59,1,10691,4,3,59,101,108,8187,8189,8193,1,710,113,59,1,8791,101,4,2,97,100,8200,8223,114,114,111,119,4,2,108,114,8210,8216,101,102,116,59,1,8634,105,103,104,116,59,1,8635,4,5,82,83,97,99,100,8235,8238,8241,8246,8252,59,1,174,59,1,9416,115,116,59,1,8859,105,114,99,59,1,8858,97,115,104,59,1,8861,59,1,8791,110,105,110,116,59,1,10768,105,100,59,1,10991,99,105,114,59,1,10690,117,98,115,4,2,59,117,8288,8290,1,9827,105,116,59,1,9827,4,4,108,109,110,112,8305,8326,8376,8400,111,110,4,2,59,101,8313,8315,1,58,4,2,59,113,8321,8323,1,8788,59,1,8788,4,2,109,112,8332,8344,97,4,2,59,116,8339,8341,1,44,59,1,64,4,3,59,102,108,8352,8354,8358,1,8705,110,59,1,8728,101,4,2,109,120,8365,8371,101,110,116,59,1,8705,101,115,59,1,8450,4,2,103,105,8382,8395,4,2,59,100,8388,8390,1,8773,111,116,59,1,10861,110,116,59,1,8750,4,3,102,114,121,8408,8412,8417,59,3,55349,56660,111,100,59,1,8720,5,169,2,59,115,8424,8426,1,169,114,59,1,8471,4,2,97,111,8436,8441,114,114,59,1,8629,115,115,59,1,10007,4,2,99,117,8452,8457,114,59,3,55349,56504,4,2,98,112,8463,8474,4,2,59,101,8469,8471,1,10959,59,1,10961,4,2,59,101,8480,8482,1,10960,59,1,10962,100,111,116,59,1,8943,4,7,100,101,108,112,114,118,119,8507,8522,8536,8550,8600,8697,8702,97,114,114,4,2,108,114,8516,8519,59,1,10552,59,1,10549,4,2,112,115,8528,8532,114,59,1,8926,99,59,1,8927,97,114,114,4,2,59,112,8545,8547,1,8630,59,1,10557,4,6,59,98,99,100,111,115,8564,8566,8573,8587,8592,8596,1,8746,114,99,97,112,59,1,10824,4,2,97,117,8579,8583,112,59,1,10822,112,59,1,10826,111,116,59,1,8845,114,59,1,10821,59,3,8746,65024,4,4,97,108,114,118,8610,8623,8663,8672,114,114,4,2,59,109,8618,8620,1,8631,59,1,10556,121,4,3,101,118,119,8632,8651,8656,113,4,2,112,115,8639,8645,114,101,99,59,1,8926,117,99,99,59,1,8927,101,101,59,1,8910,101,100,103,101,59,1,8911,101,110,5,164,1,59,8670,1,164,101,97,114,114,111,119,4,2,108,114,8684,8690,101,102,116,59,1,8630,105,103,104,116,59,1,8631,101,101,59,1,8910,101,100,59,1,8911,4,2,99,105,8713,8721,111,110,105,110,116,59,1,8754,110,116,59,1,8753,108,99,116,121,59,1,9005,4,19,65,72,97,98,99,100,101,102,104,105,106,108,111,114,115,116,117,119,122,8773,8778,8783,8821,8839,8854,8887,8914,8930,8944,9036,9041,9058,9197,9227,9258,9281,9297,9305,114,114,59,1,8659,97,114,59,1,10597,4,4,103,108,114,115,8793,8799,8805,8809,103,101,114,59,1,8224,101,116,104,59,1,8504,114,59,1,8595,104,4,2,59,118,8816,8818,1,8208,59,1,8867,4,2,107,108,8827,8834,97,114,111,119,59,1,10511,97,99,59,1,733,4,2,97,121,8845,8851,114,111,110,59,1,271,59,1,1076,4,3,59,97,111,8862,8864,8880,1,8518,4,2,103,114,8870,8876,103,101,114,59,1,8225,114,59,1,8650,116,115,101,113,59,1,10871,4,3,103,108,109,8895,8902,8907,5,176,1,59,8900,1,176,116,97,59,1,948,112,116,121,118,59,1,10673,4,2,105,114,8920,8926,115,104,116,59,1,10623,59,3,55349,56609,97,114,4,2,108,114,8938,8941,59,1,8643,59,1,8642,4,5,97,101,103,115,118,8956,8986,8989,8996,9001,109,4,3,59,111,115,8965,8967,8983,1,8900,110,100,4,2,59,115,8975,8977,1,8900,117,105,116,59,1,9830,59,1,9830,59,1,168,97,109,109,97,59,1,989,105,110,59,1,8946,4,3,59,105,111,9009,9011,9031,1,247,100,101,5,247,2,59,111,9020,9022,1,247,110,116,105,109,101,115,59,1,8903,110,120,59,1,8903,99,121,59,1,1106,99,4,2,111,114,9048,9053,114,110,59,1,8990,111,112,59,1,8973,4,5,108,112,116,117,119,9070,9076,9081,9130,9144,108,97,114,59,1,36,102,59,3,55349,56661,4,5,59,101,109,112,115,9093,9095,9109,9116,9122,1,729,113,4,2,59,100,9102,9104,1,8784,111,116,59,1,8785,105,110,117,115,59,1,8760,108,117,115,59,1,8724,113,117,97,114,101,59,1,8865,98,108,101,98,97,114,119,101,100,103,101,59,1,8966,110,4,3,97,100,104,9153,9160,9172,114,114,111,119,59,1,8595,111,119,110,97,114,114,111,119,115,59,1,8650,97,114,112,111,111,110,4,2,108,114,9184,9190,101,102,116,59,1,8643,105,103,104,116,59,1,8642,4,2,98,99,9203,9211,107,97,114,111,119,59,1,10512,4,2,111,114,9217,9222,114,110,59,1,8991,111,112,59,1,8972,4,3,99,111,116,9235,9248,9252,4,2,114,121,9241,9245,59,3,55349,56505,59,1,1109,108,59,1,10742,114,111,107,59,1,273,4,2,100,114,9264,9269,111,116,59,1,8945,105,4,2,59,102,9276,9278,1,9663,59,1,9662,4,2,97,104,9287,9292,114,114,59,1,8693,97,114,59,1,10607,97,110,103,108,101,59,1,10662,4,2,99,105,9311,9315,121,59,1,1119,103,114,97,114,114,59,1,10239,4,18,68,97,99,100,101,102,103,108,109,110,111,112,113,114,115,116,117,120,9361,9376,9398,9439,9444,9447,9462,9495,9531,9585,9598,9614,9659,9755,9771,9792,9808,9826,4,2,68,111,9367,9372,111,116,59,1,10871,116,59,1,8785,4,2,99,115,9382,9392,117,116,101,5,233,1,59,9390,1,233,116,101,114,59,1,10862,4,4,97,105,111,121,9408,9414,9430,9436,114,111,110,59,1,283,114,4,2,59,99,9421,9423,1,8790,5,234,1,59,9428,1,234,108,111,110,59,1,8789,59,1,1101,111,116,59,1,279,59,1,8519,4,2,68,114,9453,9458,111,116,59,1,8786,59,3,55349,56610,4,3,59,114,115,9470,9472,9482,1,10906,97,118,101,5,232,1,59,9480,1,232,4,2,59,100,9488,9490,1,10902,111,116,59,1,10904,4,4,59,105,108,115,9505,9507,9515,9518,1,10905,110,116,101,114,115,59,1,9191,59,1,8467,4,2,59,100,9524,9526,1,10901,111,116,59,1,10903,4,3,97,112,115,9539,9544,9564,99,114,59,1,275,116,121,4,3,59,115,118,9554,9556,9561,1,8709,101,116,59,1,8709,59,1,8709,112,4,2,49,59,9571,9583,4,2,51,52,9577,9580,59,1,8196,59,1,8197,1,8195,4,2,103,115,9591,9594,59,1,331,112,59,1,8194,4,2,103,112,9604,9609,111,110,59,1,281,102,59,3,55349,56662,4,3,97,108,115,9622,9635,9640,114,4,2,59,115,9629,9631,1,8917,108,59,1,10723,117,115,59,1,10865,105,4,3,59,108,118,9649,9651,9656,1,949,111,110,59,1,949,59,1,1013,4,4,99,115,117,118,9669,9686,9716,9747,4,2,105,111,9675,9680,114,99,59,1,8790,108,111,110,59,1,8789,4,2,105,108,9692,9696,109,59,1,8770,97,110,116,4,2,103,108,9705,9710,116,114,59,1,10902,101,115,115,59,1,10901,4,3,97,101,105,9724,9729,9734,108,115,59,1,61,115,116,59,1,8799,118,4,2,59,68,9741,9743,1,8801,68,59,1,10872,112,97,114,115,108,59,1,10725,4,2,68,97,9761,9766,111,116,59,1,8787,114,114,59,1,10609,4,3,99,100,105,9779,9783,9788,114,59,1,8495,111,116,59,1,8784,109,59,1,8770,4,2,97,104,9798,9801,59,1,951,5,240,1,59,9806,1,240,4,2,109,114,9814,9822,108,5,235,1,59,9820,1,235,111,59,1,8364,4,3,99,105,112,9834,9838,9843,108,59,1,33,115,116,59,1,8707,4,2,101,111,9849,9859,99,116,97,116,105,111,110,59,1,8496,110,101,110,116,105,97,108,101,59,1,8519,4,12,97,99,101,102,105,106,108,110,111,112,114,115,9896,9910,9914,9921,9954,9960,9967,9989,9994,10027,10036,10164,108,108,105,110,103,100,111,116,115,101,113,59,1,8786,121,59,1,1092,109,97,108,101,59,1,9792,4,3,105,108,114,9929,9935,9950,108,105,103,59,1,64259,4,2,105,108,9941,9945,103,59,1,64256,105,103,59,1,64260,59,3,55349,56611,108,105,103,59,1,64257,108,105,103,59,3,102,106,4,3,97,108,116,9975,9979,9984,116,59,1,9837,105,103,59,1,64258,110,115,59,1,9649,111,102,59,1,402,4,2,112,114,10000,10005,102,59,3,55349,56663,4,2,97,107,10011,10016,108,108,59,1,8704,4,2,59,118,10022,10024,1,8916,59,1,10969,97,114,116,105,110,116,59,1,10765,4,2,97,111,10042,10159,4,2,99,115,10048,10155,4,6,49,50,51,52,53,55,10062,10102,10114,10135,10139,10151,4,6,50,51,52,53,54,56,10076,10083,10086,10093,10096,10099,5,189,1,59,10081,1,189,59,1,8531,5,188,1,59,10091,1,188,59,1,8533,59,1,8537,59,1,8539,4,2,51,53,10108,10111,59,1,8532,59,1,8534,4,3,52,53,56,10122,10129,10132,5,190,1,59,10127,1,190,59,1,8535,59,1,8540,53,59,1,8536,4,2,54,56,10145,10148,59,1,8538,59,1,8541,56,59,1,8542,108,59,1,8260,119,110,59,1,8994,99,114,59,3,55349,56507,4,17,69,97,98,99,100,101,102,103,105,106,108,110,111,114,115,116,118,10206,10217,10247,10254,10268,10273,10358,10363,10374,10380,10385,10406,10458,10464,10470,10497,10610,4,2,59,108,10212,10214,1,8807,59,1,10892,4,3,99,109,112,10225,10231,10244,117,116,101,59,1,501,109,97,4,2,59,100,10239,10241,1,947,59,1,989,59,1,10886,114,101,118,101,59,1,287,4,2,105,121,10260,10265,114,99,59,1,285,59,1,1075,111,116,59,1,289,4,4,59,108,113,115,10283,10285,10288,10308,1,8805,59,1,8923,4,3,59,113,115,10296,10298,10301,1,8805,59,1,8807,108,97,110,116,59,1,10878,4,4,59,99,100,108,10318,10320,10324,10345,1,10878,99,59,1,10921,111,116,4,2,59,111,10332,10334,1,10880,4,2,59,108,10340,10342,1,10882,59,1,10884,4,2,59,101,10351,10354,3,8923,65024,115,59,1,10900,114,59,3,55349,56612,4,2,59,103,10369,10371,1,8811,59,1,8921,109,101,108,59,1,8503,99,121,59,1,1107,4,4,59,69,97,106,10395,10397,10400,10403,1,8823,59,1,10898,59,1,10917,59,1,10916,4,4,69,97,101,115,10416,10419,10434,10453,59,1,8809,112,4,2,59,112,10426,10428,1,10890,114,111,120,59,1,10890,4,2,59,113,10440,10442,1,10888,4,2,59,113,10448,10450,1,10888,59,1,8809,105,109,59,1,8935,112,102,59,3,55349,56664,97,118,101,59,1,96,4,2,99,105,10476,10480,114,59,1,8458,109,4,3,59,101,108,10489,10491,10494,1,8819,59,1,10894,59,1,10896,5,62,6,59,99,100,108,113,114,10512,10514,10527,10532,10538,10545,1,62,4,2,99,105,10520,10523,59,1,10919,114,59,1,10874,111,116,59,1,8919,80,97,114,59,1,10645,117,101,115,116,59,1,10876,4,5,97,100,101,108,115,10557,10574,10579,10599,10605,4,2,112,114,10563,10570,112,114,111,120,59,1,10886,114,59,1,10616,111,116,59,1,8919,113,4,2,108,113,10586,10592,101,115,115,59,1,8923,108,101,115,115,59,1,10892,101,115,115,59,1,8823,105,109,59,1,8819,4,2,101,110,10616,10626,114,116,110,101,113,113,59,3,8809,65024,69,59,3,8809,65024,4,10,65,97,98,99,101,102,107,111,115,121,10653,10658,10713,10718,10724,10760,10765,10786,10850,10875,114,114,59,1,8660,4,4,105,108,109,114,10668,10674,10678,10684,114,115,112,59,1,8202,102,59,1,189,105,108,116,59,1,8459,4,2,100,114,10690,10695,99,121,59,1,1098,4,3,59,99,119,10703,10705,10710,1,8596,105,114,59,1,10568,59,1,8621,97,114,59,1,8463,105,114,99,59,1,293,4,3,97,108,114,10732,10748,10754,114,116,115,4,2,59,117,10741,10743,1,9829,105,116,59,1,9829,108,105,112,59,1,8230,99,111,110,59,1,8889,114,59,3,55349,56613,115,4,2,101,119,10772,10779,97,114,111,119,59,1,10533,97,114,111,119,59,1,10534,4,5,97,109,111,112,114,10798,10803,10809,10839,10844,114,114,59,1,8703,116,104,116,59,1,8763,107,4,2,108,114,10816,10827,101,102,116,97,114,114,111,119,59,1,8617,105,103,104,116,97,114,114,111,119,59,1,8618,102,59,3,55349,56665,98,97,114,59,1,8213,4,3,99,108,116,10858,10863,10869,114,59,3,55349,56509,97,115,104,59,1,8463,114,111,107,59,1,295,4,2,98,112,10881,10887,117,108,108,59,1,8259,104,101,110,59,1,8208,4,15,97,99,101,102,103,105,106,109,110,111,112,113,115,116,117,10925,10936,10958,10977,10990,11001,11039,11045,11101,11192,11220,11226,11237,11285,11299,99,117,116,101,5,237,1,59,10934,1,237,4,3,59,105,121,10944,10946,10955,1,8291,114,99,5,238,1,59,10953,1,238,59,1,1080,4,2,99,120,10964,10968,121,59,1,1077,99,108,5,161,1,59,10975,1,161,4,2,102,114,10983,10986,59,1,8660,59,3,55349,56614,114,97,118,101,5,236,1,59,10999,1,236,4,4,59,105,110,111,11011,11013,11028,11034,1,8520,4,2,105,110,11019,11024,110,116,59,1,10764,116,59,1,8749,102,105,110,59,1,10716,116,97,59,1,8489,108,105,103,59,1,307,4,3,97,111,112,11053,11092,11096,4,3,99,103,116,11061,11065,11088,114,59,1,299,4,3,101,108,112,11073,11076,11082,59,1,8465,105,110,101,59,1,8464,97,114,116,59,1,8465,104,59,1,305,102,59,1,8887,101,100,59,1,437,4,5,59,99,102,111,116,11113,11115,11121,11136,11142,1,8712,97,114,101,59,1,8453,105,110,4,2,59,116,11129,11131,1,8734,105,101,59,1,10717,100,111,116,59,1,305,4,5,59,99,101,108,112,11154,11156,11161,11179,11186,1,8747,97,108,59,1,8890,4,2,103,114,11167,11173,101,114,115,59,1,8484,99,97,108,59,1,8890,97,114,104,107,59,1,10775,114,111,100,59,1,10812,4,4,99,103,112,116,11202,11206,11211,11216,121,59,1,1105,111,110,59,1,303,102,59,3,55349,56666,97,59,1,953,114,111,100,59,1,10812,117,101,115,116,5,191,1,59,11235,1,191,4,2,99,105,11243,11248,114,59,3,55349,56510,110,4,5,59,69,100,115,118,11261,11263,11266,11271,11282,1,8712,59,1,8953,111,116,59,1,8949,4,2,59,118,11277,11279,1,8948,59,1,8947,59,1,8712,4,2,59,105,11291,11293,1,8290,108,100,101,59,1,297,4,2,107,109,11305,11310,99,121,59,1,1110,108,5,239,1,59,11316,1,239,4,6,99,102,109,111,115,117,11332,11346,11351,11357,11363,11380,4,2,105,121,11338,11343,114,99,59,1,309,59,1,1081,114,59,3,55349,56615,97,116,104,59,1,567,112,102,59,3,55349,56667,4,2,99,101,11369,11374,114,59,3,55349,56511,114,99,121,59,1,1112,107,99,121,59,1,1108,4,8,97,99,102,103,104,106,111,115,11404,11418,11433,11438,11445,11450,11455,11461,112,112,97,4,2,59,118,11413,11415,1,954,59,1,1008,4,2,101,121,11424,11430,100,105,108,59,1,311,59,1,1082,114,59,3,55349,56616,114,101,101,110,59,1,312,99,121,59,1,1093,99,121,59,1,1116,112,102,59,3,55349,56668,99,114,59,3,55349,56512,4,23,65,66,69,72,97,98,99,100,101,102,103,104,106,108,109,110,111,112,114,115,116,117,118,11515,11538,11544,11555,11560,11721,11780,11818,11868,12136,12160,12171,12203,12208,12246,12275,12327,12509,12523,12569,12641,12732,12752,4,3,97,114,116,11523,11528,11532,114,114,59,1,8666,114,59,1,8656,97,105,108,59,1,10523,97,114,114,59,1,10510,4,2,59,103,11550,11552,1,8806,59,1,10891,97,114,59,1,10594,4,9,99,101,103,109,110,112,113,114,116,11580,11586,11594,11600,11606,11624,11627,11636,11694,117,116,101,59,1,314,109,112,116,121,118,59,1,10676,114,97,110,59,1,8466,98,100,97,59,1,955,103,4,3,59,100,108,11615,11617,11620,1,10216,59,1,10641,101,59,1,10216,59,1,10885,117,111,5,171,1,59,11634,1,171,114,4,8,59,98,102,104,108,112,115,116,11655,11657,11669,11673,11677,11681,11685,11690,1,8592,4,2,59,102,11663,11665,1,8676,115,59,1,10527,115,59,1,10525,107,59,1,8617,112,59,1,8619,108,59,1,10553,105,109,59,1,10611,108,59,1,8610,4,3,59,97,101,11702,11704,11709,1,10923,105,108,59,1,10521,4,2,59,115,11715,11717,1,10925,59,3,10925,65024,4,3,97,98,114,11729,11734,11739,114,114,59,1,10508,114,107,59,1,10098,4,2,97,107,11745,11758,99,4,2,101,107,11752,11755,59,1,123,59,1,91,4,2,101,115,11764,11767,59,1,10635,108,4,2,100,117,11774,11777,59,1,10639,59,1,10637,4,4,97,101,117,121,11790,11796,11811,11815,114,111,110,59,1,318,4,2,100,105,11802,11807,105,108,59,1,316,108,59,1,8968,98,59,1,123,59,1,1083,4,4,99,113,114,115,11828,11832,11845,11864,97,59,1,10550,117,111,4,2,59,114,11840,11842,1,8220,59,1,8222,4,2,100,117,11851,11857,104,97,114,59,1,10599,115,104,97,114,59,1,10571,104,59,1,8626,4,5,59,102,103,113,115,11880,11882,12008,12011,12031,1,8804,116,4,5,97,104,108,114,116,11895,11913,11935,11947,11996,114,114,111,119,4,2,59,116,11905,11907,1,8592,97,105,108,59,1,8610,97,114,112,111,111,110,4,2,100,117,11925,11931,111,119,110,59,1,8637,112,59,1,8636,101,102,116,97,114,114,111,119,115,59,1,8647,105,103,104,116,4,3,97,104,115,11959,11974,11984,114,114,111,119,4,2,59,115,11969,11971,1,8596,59,1,8646,97,114,112,111,111,110,115,59,1,8651,113,117,105,103,97,114,114,111,119,59,1,8621,104,114,101,101,116,105,109,101,115,59,1,8907,59,1,8922,4,3,59,113,115,12019,12021,12024,1,8804,59,1,8806,108,97,110,116,59,1,10877,4,5,59,99,100,103,115,12043,12045,12049,12070,12083,1,10877,99,59,1,10920,111,116,4,2,59,111,12057,12059,1,10879,4,2,59,114,12065,12067,1,10881,59,1,10883,4,2,59,101,12076,12079,3,8922,65024,115,59,1,10899,4,5,97,100,101,103,115,12095,12103,12108,12126,12131,112,112,114,111,120,59,1,10885,111,116,59,1,8918,113,4,2,103,113,12115,12120,116,114,59,1,8922,103,116,114,59,1,10891,116,114,59,1,8822,105,109,59,1,8818,4,3,105,108,114,12144,12150,12156,115,104,116,59,1,10620,111,111,114,59,1,8970,59,3,55349,56617,4,2,59,69,12166,12168,1,8822,59,1,10897,4,2,97,98,12177,12198,114,4,2,100,117,12184,12187,59,1,8637,4,2,59,108,12193,12195,1,8636,59,1,10602,108,107,59,1,9604,99,121,59,1,1113,4,5,59,97,99,104,116,12220,12222,12227,12235,12241,1,8810,114,114,59,1,8647,111,114,110,101,114,59,1,8990,97,114,100,59,1,10603,114,105,59,1,9722,4,2,105,111,12252,12258,100,111,116,59,1,320,117,115,116,4,2,59,97,12267,12269,1,9136,99,104,101,59,1,9136,4,4,69,97,101,115,12285,12288,12303,12322,59,1,8808,112,4,2,59,112,12295,12297,1,10889,114,111,120,59,1,10889,4,2,59,113,12309,12311,1,10887,4,2,59,113,12317,12319,1,10887,59,1,8808,105,109,59,1,8934,4,8,97,98,110,111,112,116,119,122,12345,12359,12364,12421,12446,12467,12474,12490,4,2,110,114,12351,12355,103,59,1,10220,114,59,1,8701,114,107,59,1,10214,103,4,3,108,109,114,12373,12401,12409,101,102,116,4,2,97,114,12382,12389,114,114,111,119,59,1,10229,105,103,104,116,97,114,114,111,119,59,1,10231,97,112,115,116,111,59,1,10236,105,103,104,116,97,114,114,111,119,59,1,10230,112,97,114,114,111,119,4,2,108,114,12433,12439,101,102,116,59,1,8619,105,103,104,116,59,1,8620,4,3,97,102,108,12454,12458,12462,114,59,1,10629,59,3,55349,56669,117,115,59,1,10797,105,109,101,115,59,1,10804,4,2,97,98,12480,12485,115,116,59,1,8727,97,114,59,1,95,4,3,59,101,102,12498,12500,12506,1,9674,110,103,101,59,1,9674,59,1,10731,97,114,4,2,59,108,12517,12519,1,40,116,59,1,10643,4,5,97,99,104,109,116,12535,12540,12548,12561,12564,114,114,59,1,8646,111,114,110,101,114,59,1,8991,97,114,4,2,59,100,12556,12558,1,8651,59,1,10605,59,1,8206,114,105,59,1,8895,4,6,97,99,104,105,113,116,12583,12589,12594,12597,12614,12635,113,117,111,59,1,8249,114,59,3,55349,56513,59,1,8624,109,4,3,59,101,103,12606,12608,12611,1,8818,59,1,10893,59,1,10895,4,2,98,117,12620,12623,59,1,91,111,4,2,59,114,12630,12632,1,8216,59,1,8218,114,111,107,59,1,322,5,60,8,59,99,100,104,105,108,113,114,12660,12662,12675,12680,12686,12692,12698,12705,1,60,4,2,99,105,12668,12671,59,1,10918,114,59,1,10873,111,116,59,1,8918,114,101,101,59,1,8907,109,101,115,59,1,8905,97,114,114,59,1,10614,117,101,115,116,59,1,10875,4,2,80,105,12711,12716,97,114,59,1,10646,4,3,59,101,102,12724,12726,12729,1,9667,59,1,8884,59,1,9666,114,4,2,100,117,12739,12746,115,104,97,114,59,1,10570,104,97,114,59,1,10598,4,2,101,110,12758,12768,114,116,110,101,113,113,59,3,8808,65024,69,59,3,8808,65024,4,14,68,97,99,100,101,102,104,105,108,110,111,112,115,117,12803,12809,12893,12908,12914,12928,12933,12937,13011,13025,13032,13049,13052,13069,68,111,116,59,1,8762,4,4,99,108,112,114,12819,12827,12849,12887,114,5,175,1,59,12825,1,175,4,2,101,116,12833,12836,59,1,9794,4,2,59,101,12842,12844,1,10016,115,101,59,1,10016,4,2,59,115,12855,12857,1,8614,116,111,4,4,59,100,108,117,12869,12871,12877,12883,1,8614,111,119,110,59,1,8615,101,102,116,59,1,8612,112,59,1,8613,107,101,114,59,1,9646,4,2,111,121,12899,12905,109,109,97,59,1,10793,59,1,1084,97,115,104,59,1,8212,97,115,117,114,101,100,97,110,103,108,101,59,1,8737,114,59,3,55349,56618,111,59,1,8487,4,3,99,100,110,12945,12954,12985,114,111,5,181,1,59,12952,1,181,4,4,59,97,99,100,12964,12966,12971,12976,1,8739,115,116,59,1,42,105,114,59,1,10992,111,116,5,183,1,59,12983,1,183,117,115,4,3,59,98,100,12995,12997,13000,1,8722,59,1,8863,4,2,59,117,13006,13008,1,8760,59,1,10794,4,2,99,100,13017,13021,112,59,1,10971,114,59,1,8230,112,108,117,115,59,1,8723,4,2,100,112,13038,13044,101,108,115,59,1,8871,102,59,3,55349,56670,59,1,8723,4,2,99,116,13058,13063,114,59,3,55349,56514,112,111,115,59,1,8766,4,3,59,108,109,13077,13079,13087,1,956,116,105,109,97,112,59,1,8888,97,112,59,1,8888,4,24,71,76,82,86,97,98,99,100,101,102,103,104,105,106,108,109,111,112,114,115,116,117,118,119,13142,13165,13217,13229,13247,13330,13359,13414,13420,13508,13513,13579,13602,13626,13631,13762,13767,13855,13936,13995,14214,14285,14312,14432,4,2,103,116,13148,13152,59,3,8921,824,4,2,59,118,13158,13161,3,8811,8402,59,3,8811,824,4,3,101,108,116,13173,13200,13204,102,116,4,2,97,114,13181,13188,114,114,111,119,59,1,8653,105,103,104,116,97,114,114,111,119,59,1,8654,59,3,8920,824,4,2,59,118,13210,13213,3,8810,8402,59,3,8810,824,105,103,104,116,97,114,114,111,119,59,1,8655,4,2,68,100,13235,13241,97,115,104,59,1,8879,97,115,104,59,1,8878,4,5,98,99,110,112,116,13259,13264,13270,13275,13308,108,97,59,1,8711,117,116,101,59,1,324,103,59,3,8736,8402,4,5,59,69,105,111,112,13287,13289,13293,13298,13302,1,8777,59,3,10864,824,100,59,3,8779,824,115,59,1,329,114,111,120,59,1,8777,117,114,4,2,59,97,13316,13318,1,9838,108,4,2,59,115,13325,13327,1,9838,59,1,8469,4,2,115,117,13336,13344,112,5,160,1,59,13342,1,160,109,112,4,2,59,101,13352,13355,3,8782,824,59,3,8783,824,4,5,97,101,111,117,121,13371,13385,13391,13407,13411,4,2,112,114,13377,13380,59,1,10819,111,110,59,1,328,100,105,108,59,1,326,110,103,4,2,59,100,13399,13401,1,8775,111,116,59,3,10861,824,112,59,1,10818,59,1,1085,97,115,104,59,1,8211,4,7,59,65,97,100,113,115,120,13436,13438,13443,13466,13472,13478,13494,1,8800,114,114,59,1,8663,114,4,2,104,114,13450,13454,107,59,1,10532,4,2,59,111,13460,13462,1,8599,119,59,1,8599,111,116,59,3,8784,824,117,105,118,59,1,8802,4,2,101,105,13484,13489,97,114,59,1,10536,109,59,3,8770,824,105,115,116,4,2,59,115,13503,13505,1,8708,59,1,8708,114,59,3,55349,56619,4,4,69,101,115,116,13523,13527,13563,13568,59,3,8807,824,4,3,59,113,115,13535,13537,13559,1,8817,4,3,59,113,115,13545,13547,13551,1,8817,59,3,8807,824,108,97,110,116,59,3,10878,824,59,3,10878,824,105,109,59,1,8821,4,2,59,114,13574,13576,1,8815,59,1,8815,4,3,65,97,112,13587,13592,13597,114,114,59,1,8654,114,114,59,1,8622,97,114,59,1,10994,4,3,59,115,118,13610,13612,13623,1,8715,4,2,59,100,13618,13620,1,8956,59,1,8954,59,1,8715,99,121,59,1,1114,4,7,65,69,97,100,101,115,116,13647,13652,13656,13661,13665,13737,13742,114,114,59,1,8653,59,3,8806,824,114,114,59,1,8602,114,59,1,8229,4,4,59,102,113,115,13675,13677,13703,13725,1,8816,116,4,2,97,114,13684,13691,114,114,111,119,59,1,8602,105,103,104,116,97,114,114,111,119,59,1,8622,4,3,59,113,115,13711,13713,13717,1,8816,59,3,8806,824,108,97,110,116,59,3,10877,824,4,2,59,115,13731,13734,3,10877,824,59,1,8814,105,109,59,1,8820,4,2,59,114,13748,13750,1,8814,105,4,2,59,101,13757,13759,1,8938,59,1,8940,105,100,59,1,8740,4,2,112,116,13773,13778,102,59,3,55349,56671,5,172,3,59,105,110,13787,13789,13829,1,172,110,4,4,59,69,100,118,13800,13802,13806,13812,1,8713,59,3,8953,824,111,116,59,3,8949,824,4,3,97,98,99,13820,13823,13826,59,1,8713,59,1,8951,59,1,8950,105,4,2,59,118,13836,13838,1,8716,4,3,97,98,99,13846,13849,13852,59,1,8716,59,1,8958,59,1,8957,4,3,97,111,114,13863,13892,13899,114,4,4,59,97,115,116,13874,13876,13883,13888,1,8742,108,108,101,108,59,1,8742,108,59,3,11005,8421,59,3,8706,824,108,105,110,116,59,1,10772,4,3,59,99,101,13907,13909,13914,1,8832,117,101,59,1,8928,4,2,59,99,13920,13923,3,10927,824,4,2,59,101,13929,13931,1,8832,113,59,3,10927,824,4,4,65,97,105,116,13946,13951,13971,13982,114,114,59,1,8655,114,114,4,3,59,99,119,13961,13963,13967,1,8603,59,3,10547,824,59,3,8605,824,103,104,116,97,114,114,111,119,59,1,8603,114,105,4,2,59,101,13990,13992,1,8939,59,1,8941,4,7,99,104,105,109,112,113,117,14011,14036,14060,14080,14085,14090,14106,4,4,59,99,101,114,14021,14023,14028,14032,1,8833,117,101,59,1,8929,59,3,10928,824,59,3,55349,56515,111,114,116,4,2,109,112,14045,14050,105,100,59,1,8740,97,114,97,108,108,101,108,59,1,8742,109,4,2,59,101,14067,14069,1,8769,4,2,59,113,14075,14077,1,8772,59,1,8772,105,100,59,1,8740,97,114,59,1,8742,115,117,4,2,98,112,14098,14102,101,59,1,8930,101,59,1,8931,4,3,98,99,112,14114,14157,14171,4,4,59,69,101,115,14124,14126,14130,14133,1,8836,59,3,10949,824,59,1,8840,101,116,4,2,59,101,14141,14144,3,8834,8402,113,4,2,59,113,14151,14153,1,8840,59,3,10949,824,99,4,2,59,101,14164,14166,1,8833,113,59,3,10928,824,4,4,59,69,101,115,14181,14183,14187,14190,1,8837,59,3,10950,824,59,1,8841,101,116,4,2,59,101,14198,14201,3,8835,8402,113,4,2,59,113,14208,14210,1,8841,59,3,10950,824,4,4,103,105,108,114,14224,14228,14238,14242,108,59,1,8825,108,100,101,5,241,1,59,14236,1,241,103,59,1,8824,105,97,110,103,108,101,4,2,108,114,14254,14269,101,102,116,4,2,59,101,14263,14265,1,8938,113,59,1,8940,105,103,104,116,4,2,59,101,14279,14281,1,8939,113,59,1,8941,4,2,59,109,14291,14293,1,957,4,3,59,101,115,14301,14303,14308,1,35,114,111,59,1,8470,112,59,1,8199,4,9,68,72,97,100,103,105,108,114,115,14332,14338,14344,14349,14355,14369,14376,14408,14426,97,115,104,59,1,8877,97,114,114,59,1,10500,112,59,3,8781,8402,97,115,104,59,1,8876,4,2,101,116,14361,14365,59,3,8805,8402,59,3,62,8402,110,102,105,110,59,1,10718,4,3,65,101,116,14384,14389,14393,114,114,59,1,10498,59,3,8804,8402,4,2,59,114,14399,14402,3,60,8402,105,101,59,3,8884,8402,4,2,65,116,14414,14419,114,114,59,1,10499,114,105,101,59,3,8885,8402,105,109,59,3,8764,8402,4,3,65,97,110,14440,14445,14468,114,114,59,1,8662,114,4,2,104,114,14452,14456,107,59,1,10531,4,2,59,111,14462,14464,1,8598,119,59,1,8598,101,97,114,59,1,10535,4,18,83,97,99,100,101,102,103,104,105,108,109,111,112,114,115,116,117,118,14512,14515,14535,14560,14597,14603,14618,14643,14657,14662,14701,14741,14747,14769,14851,14877,14907,14916,59,1,9416,4,2,99,115,14521,14531,117,116,101,5,243,1,59,14529,1,243,116,59,1,8859,4,2,105,121,14541,14557,114,4,2,59,99,14548,14550,1,8858,5,244,1,59,14555,1,244,59,1,1086,4,5,97,98,105,111,115,14572,14577,14583,14587,14591,115,104,59,1,8861,108,97,99,59,1,337,118,59,1,10808,116,59,1,8857,111,108,100,59,1,10684,108,105,103,59,1,339,4,2,99,114,14609,14614,105,114,59,1,10687,59,3,55349,56620,4,3,111,114,116,14626,14630,14640,110,59,1,731,97,118,101,5,242,1,59,14638,1,242,59,1,10689,4,2,98,109,14649,14654,97,114,59,1,10677,59,1,937,110,116,59,1,8750,4,4,97,99,105,116,14672,14677,14693,14698,114,114,59,1,8634,4,2,105,114,14683,14687,114,59,1,10686,111,115,115,59,1,10683,110,101,59,1,8254,59,1,10688,4,3,97,101,105,14709,14714,14719,99,114,59,1,333,103,97,59,1,969,4,3,99,100,110,14727,14733,14736,114,111,110,59,1,959,59,1,10678,117,115,59,1,8854,112,102,59,3,55349,56672,4,3,97,101,108,14755,14759,14764,114,59,1,10679,114,112,59,1,10681,117,115,59,1,8853,4,7,59,97,100,105,111,115,118,14785,14787,14792,14831,14837,14841,14848,1,8744,114,114,59,1,8635,4,4,59,101,102,109,14802,14804,14817,14824,1,10845,114,4,2,59,111,14811,14813,1,8500,102,59,1,8500,5,170,1,59,14822,1,170,5,186,1,59,14829,1,186,103,111,102,59,1,8886,114,59,1,10838,108,111,112,101,59,1,10839,59,1,10843,4,3,99,108,111,14859,14863,14873,114,59,1,8500,97,115,104,5,248,1,59,14871,1,248,108,59,1,8856,105,4,2,108,109,14884,14893,100,101,5,245,1,59,14891,1,245,101,115,4,2,59,97,14901,14903,1,8855,115,59,1,10806,109,108,5,246,1,59,14914,1,246,98,97,114,59,1,9021,4,12,97,99,101,102,104,105,108,109,111,114,115,117,14948,14992,14996,15033,15038,15068,15090,15189,15192,15222,15427,15441,114,4,4,59,97,115,116,14959,14961,14976,14989,1,8741,5,182,2,59,108,14968,14970,1,182,108,101,108,59,1,8741,4,2,105,108,14982,14986,109,59,1,10995,59,1,11005,59,1,8706,121,59,1,1087,114,4,5,99,105,109,112,116,15009,15014,15019,15024,15027,110,116,59,1,37,111,100,59,1,46,105,108,59,1,8240,59,1,8869,101,110,107,59,1,8241,114,59,3,55349,56621,4,3,105,109,111,15046,15057,15063,4,2,59,118,15052,15054,1,966,59,1,981,109,97,116,59,1,8499,110,101,59,1,9742,4,3,59,116,118,15076,15078,15087,1,960,99,104,102,111,114,107,59,1,8916,59,1,982,4,2,97,117,15096,15119,110,4,2,99,107,15103,15115,107,4,2,59,104,15110,15112,1,8463,59,1,8462,118,59,1,8463,115,4,9,59,97,98,99,100,101,109,115,116,15140,15142,15148,15151,15156,15168,15171,15179,15184,1,43,99,105,114,59,1,10787,59,1,8862,105,114,59,1,10786,4,2,111,117,15162,15165,59,1,8724,59,1,10789,59,1,10866,110,5,177,1,59,15177,1,177,105,109,59,1,10790,119,111,59,1,10791,59,1,177,4,3,105,112,117,15200,15208,15213,110,116,105,110,116,59,1,10773,102,59,3,55349,56673,110,100,5,163,1,59,15220,1,163,4,10,59,69,97,99,101,105,110,111,115,117,15244,15246,15249,15253,15258,15334,15347,15367,15416,15421,1,8826,59,1,10931,112,59,1,10935,117,101,59,1,8828,4,2,59,99,15264,15266,1,10927,4,6,59,97,99,101,110,115,15280,15282,15290,15299,15303,15329,1,8826,112,112,114,111,120,59,1,10935,117,114,108,121,101,113,59,1,8828,113,59,1,10927,4,3,97,101,115,15311,15319,15324,112,112,114,111,120,59,1,10937,113,113,59,1,10933,105,109,59,1,8936,105,109,59,1,8830,109,101,4,2,59,115,15342,15344,1,8242,59,1,8473,4,3,69,97,115,15355,15358,15362,59,1,10933,112,59,1,10937,105,109,59,1,8936,4,3,100,102,112,15375,15378,15404,59,1,8719,4,3,97,108,115,15386,15392,15398,108,97,114,59,1,9006,105,110,101,59,1,8978,117,114,102,59,1,8979,4,2,59,116,15410,15412,1,8733,111,59,1,8733,105,109,59,1,8830,114,101,108,59,1,8880,4,2,99,105,15433,15438,114,59,3,55349,56517,59,1,968,110,99,115,112,59,1,8200,4,6,102,105,111,112,115,117,15462,15467,15472,15478,15485,15491,114,59,3,55349,56622,110,116,59,1,10764,112,102,59,3,55349,56674,114,105,109,101,59,1,8279,99,114,59,3,55349,56518,4,3,97,101,111,15499,15520,15534,116,4,2,101,105,15506,15515,114,110,105,111,110,115,59,1,8461,110,116,59,1,10774,115,116,4,2,59,101,15528,15530,1,63,113,59,1,8799,116,5,34,1,59,15540,1,34,4,21,65,66,72,97,98,99,100,101,102,104,105,108,109,110,111,112,114,115,116,117,120,15586,15609,15615,15620,15796,15855,15893,15931,15977,16001,16039,16183,16204,16222,16228,16285,16312,16318,16363,16408,16416,4,3,97,114,116,15594,15599,15603,114,114,59,1,8667,114,59,1,8658,97,105,108,59,1,10524,97,114,114,59,1,10511,97,114,59,1,10596,4,7,99,100,101,110,113,114,116,15636,15651,15656,15664,15687,15696,15770,4,2,101,117,15642,15646,59,3,8765,817,116,101,59,1,341,105,99,59,1,8730,109,112,116,121,118,59,1,10675,103,4,4,59,100,101,108,15675,15677,15680,15683,1,10217,59,1,10642,59,1,10661,101,59,1,10217,117,111,5,187,1,59,15694,1,187,114,4,11,59,97,98,99,102,104,108,112,115,116,119,15721,15723,15727,15739,15742,15746,15750,15754,15758,15763,15767,1,8594,112,59,1,10613,4,2,59,102,15733,15735,1,8677,115,59,1,10528,59,1,10547,115,59,1,10526,107,59,1,8618,112,59,1,8620,108,59,1,10565,105,109,59,1,10612,108,59,1,8611,59,1,8605,4,2,97,105,15776,15781,105,108,59,1,10522,111,4,2,59,110,15788,15790,1,8758,97,108,115,59,1,8474,4,3,97,98,114,15804,15809,15814,114,114,59,1,10509,114,107,59,1,10099,4,2,97,107,15820,15833,99,4,2,101,107,15827,15830,59,1,125,59,1,93,4,2,101,115,15839,15842,59,1,10636,108,4,2,100,117,15849,15852,59,1,10638,59,1,10640,4,4,97,101,117,121,15865,15871,15886,15890,114,111,110,59,1,345,4,2,100,105,15877,15882,105,108,59,1,343,108,59,1,8969,98,59,1,125,59,1,1088,4,4,99,108,113,115,15903,15907,15914,15927,97,59,1,10551,100,104,97,114,59,1,10601,117,111,4,2,59,114,15922,15924,1,8221,59,1,8221,104,59,1,8627,4,3,97,99,103,15939,15966,15970,108,4,4,59,105,112,115,15950,15952,15957,15963,1,8476,110,101,59,1,8475,97,114,116,59,1,8476,59,1,8477,116,59,1,9645,5,174,1,59,15975,1,174,4,3,105,108,114,15985,15991,15997,115,104,116,59,1,10621,111,111,114,59,1,8971,59,3,55349,56623,4,2,97,111,16007,16028,114,4,2,100,117,16014,16017,59,1,8641,4,2,59,108,16023,16025,1,8640,59,1,10604,4,2,59,118,16034,16036,1,961,59,1,1009,4,3,103,110,115,16047,16167,16171,104,116,4,6,97,104,108,114,115,116,16063,16081,16103,16130,16143,16155,114,114,111,119,4,2,59,116,16073,16075,1,8594,97,105,108,59,1,8611,97,114,112,111,111,110,4,2,100,117,16093,16099,111,119,110,59,1,8641,112,59,1,8640,101,102,116,4,2,97,104,16112,16120,114,114,111,119,115,59,1,8644,97,114,112,111,111,110,115,59,1,8652,105,103,104,116,97,114,114,111,119,115,59,1,8649,113,117,105,103,97,114,114,111,119,59,1,8605,104,114,101,101,116,105,109,101,115,59,1,8908,103,59,1,730,105,110,103,100,111,116,115,101,113,59,1,8787,4,3,97,104,109,16191,16196,16201,114,114,59,1,8644,97,114,59,1,8652,59,1,8207,111,117,115,116,4,2,59,97,16214,16216,1,9137,99,104,101,59,1,9137,109,105,100,59,1,10990,4,4,97,98,112,116,16238,16252,16257,16278,4,2,110,114,16244,16248,103,59,1,10221,114,59,1,8702,114,107,59,1,10215,4,3,97,102,108,16265,16269,16273,114,59,1,10630,59,3,55349,56675,117,115,59,1,10798,105,109,101,115,59,1,10805,4,2,97,112,16291,16304,114,4,2,59,103,16298,16300,1,41,116,59,1,10644,111,108,105,110,116,59,1,10770,97,114,114,59,1,8649,4,4,97,99,104,113,16328,16334,16339,16342,113,117,111,59,1,8250,114,59,3,55349,56519,59,1,8625,4,2,98,117,16348,16351,59,1,93,111,4,2,59,114,16358,16360,1,8217,59,1,8217,4,3,104,105,114,16371,16377,16383,114,101,101,59,1,8908,109,101,115,59,1,8906,105,4,4,59,101,102,108,16394,16396,16399,16402,1,9657,59,1,8885,59,1,9656,116,114,105,59,1,10702,108,117,104,97,114,59,1,10600,59,1,8478,4,19,97,98,99,100,101,102,104,105,108,109,111,112,113,114,115,116,117,119,122,16459,16466,16472,16572,16590,16672,16687,16746,16844,16850,16924,16963,16988,17115,17121,17154,17206,17614,17656,99,117,116,101,59,1,347,113,117,111,59,1,8218,4,10,59,69,97,99,101,105,110,112,115,121,16494,16496,16499,16513,16518,16531,16536,16556,16564,16569,1,8827,59,1,10932,4,2,112,114,16505,16508,59,1,10936,111,110,59,1,353,117,101,59,1,8829,4,2,59,100,16524,16526,1,10928,105,108,59,1,351,114,99,59,1,349,4,3,69,97,115,16544,16547,16551,59,1,10934,112,59,1,10938,105,109,59,1,8937,111,108,105,110,116,59,1,10771,105,109,59,1,8831,59,1,1089,111,116,4,3,59,98,101,16582,16584,16587,1,8901,59,1,8865,59,1,10854,4,7,65,97,99,109,115,116,120,16606,16611,16634,16642,16646,16652,16668,114,114,59,1,8664,114,4,2,104,114,16618,16622,107,59,1,10533,4,2,59,111,16628,16630,1,8600,119,59,1,8600,116,5,167,1,59,16640,1,167,105,59,1,59,119,97,114,59,1,10537,109,4,2,105,110,16659,16665,110,117,115,59,1,8726,59,1,8726,116,59,1,10038,114,4,2,59,111,16679,16682,3,55349,56624,119,110,59,1,8994,4,4,97,99,111,121,16697,16702,16716,16739,114,112,59,1,9839,4,2,104,121,16708,16713,99,121,59,1,1097,59,1,1096,114,116,4,2,109,112,16724,16729,105,100,59,1,8739,97,114,97,108,108,101,108,59,1,8741,5,173,1,59,16744,1,173,4,2,103,109,16752,16770,109,97,4,3,59,102,118,16762,16764,16767,1,963,59,1,962,59,1,962,4,8,59,100,101,103,108,110,112,114,16788,16790,16795,16806,16817,16828,16832,16838,1,8764,111,116,59,1,10858,4,2,59,113,16801,16803,1,8771,59,1,8771,4,2,59,69,16812,16814,1,10910,59,1,10912,4,2,59,69,16823,16825,1,10909,59,1,10911,101,59,1,8774,108,117,115,59,1,10788,97,114,114,59,1,10610,97,114,114,59,1,8592,4,4,97,101,105,116,16860,16883,16891,16904,4,2,108,115,16866,16878,108,115,101,116,109,105,110,117,115,59,1,8726,104,112,59,1,10803,112,97,114,115,108,59,1,10724,4,2,100,108,16897,16900,59,1,8739,101,59,1,8995,4,2,59,101,16910,16912,1,10922,4,2,59,115,16918,16920,1,10924,59,3,10924,65024,4,3,102,108,112,16932,16938,16958,116,99,121,59,1,1100,4,2,59,98,16944,16946,1,47,4,2,59,97,16952,16954,1,10692,114,59,1,9023,102,59,3,55349,56676,97,4,2,100,114,16970,16985,101,115,4,2,59,117,16978,16980,1,9824,105,116,59,1,9824,59,1,8741,4,3,99,115,117,16996,17028,17089,4,2,97,117,17002,17015,112,4,2,59,115,17009,17011,1,8851,59,3,8851,65024,112,4,2,59,115,17022,17024,1,8852,59,3,8852,65024,117,4,2,98,112,17035,17062,4,3,59,101,115,17043,17045,17048,1,8847,59,1,8849,101,116,4,2,59,101,17056,17058,1,8847,113,59,1,8849,4,3,59,101,115,17070,17072,17075,1,8848,59,1,8850,101,116,4,2,59,101,17083,17085,1,8848,113,59,1,8850,4,3,59,97,102,17097,17099,17112,1,9633,114,4,2,101,102,17106,17109,59,1,9633,59,1,9642,59,1,9642,97,114,114,59,1,8594,4,4,99,101,109,116,17131,17136,17142,17148,114,59,3,55349,56520,116,109,110,59,1,8726,105,108,101,59,1,8995,97,114,102,59,1,8902,4,2,97,114,17160,17172,114,4,2,59,102,17167,17169,1,9734,59,1,9733,4,2,97,110,17178,17202,105,103,104,116,4,2,101,112,17188,17197,112,115,105,108,111,110,59,1,1013,104,105,59,1,981,115,59,1,175,4,5,98,99,109,110,112,17218,17351,17420,17423,17427,4,9,59,69,100,101,109,110,112,114,115,17238,17240,17243,17248,17261,17267,17279,17285,17291,1,8834,59,1,10949,111,116,59,1,10941,4,2,59,100,17254,17256,1,8838,111,116,59,1,10947,117,108,116,59,1,10945,4,2,69,101,17273,17276,59,1,10955,59,1,8842,108,117,115,59,1,10943,97,114,114,59,1,10617,4,3,101,105,117,17299,17335,17339,116,4,3,59,101,110,17308,17310,17322,1,8834,113,4,2,59,113,17317,17319,1,8838,59,1,10949,101,113,4,2,59,113,17330,17332,1,8842,59,1,10955,109,59,1,10951,4,2,98,112,17345,17348,59,1,10965,59,1,10963,99,4,6,59,97,99,101,110,115,17366,17368,17376,17385,17389,17415,1,8827,112,112,114,111,120,59,1,10936,117,114,108,121,101,113,59,1,8829,113,59,1,10928,4,3,97,101,115,17397,17405,17410,112,112,114,111,120,59,1,10938,113,113,59,1,10934,105,109,59,1,8937,105,109,59,1,8831,59,1,8721,103,59,1,9834,4,13,49,50,51,59,69,100,101,104,108,109,110,112,115,17455,17462,17469,17476,17478,17481,17496,17509,17524,17530,17536,17548,17554,5,185,1,59,17460,1,185,5,178,1,59,17467,1,178,5,179,1,59,17474,1,179,1,8835,59,1,10950,4,2,111,115,17487,17491,116,59,1,10942,117,98,59,1,10968,4,2,59,100,17502,17504,1,8839,111,116,59,1,10948,115,4,2,111,117,17516,17520,108,59,1,10185,98,59,1,10967,97,114,114,59,1,10619,117,108,116,59,1,10946,4,2,69,101,17542,17545,59,1,10956,59,1,8843,108,117,115,59,1,10944,4,3,101,105,117,17562,17598,17602,116,4,3,59,101,110,17571,17573,17585,1,8835,113,4,2,59,113,17580,17582,1,8839,59,1,10950,101,113,4,2,59,113,17593,17595,1,8843,59,1,10956,109,59,1,10952,4,2,98,112,17608,17611,59,1,10964,59,1,10966,4,3,65,97,110,17622,17627,17650,114,114,59,1,8665,114,4,2,104,114,17634,17638,107,59,1,10534,4,2,59,111,17644,17646,1,8601,119,59,1,8601,119,97,114,59,1,10538,108,105,103,5,223,1,59,17664,1,223,4,13,97,98,99,100,101,102,104,105,111,112,114,115,119,17694,17709,17714,17737,17742,17749,17754,17860,17905,17957,17964,18090,18122,4,2,114,117,17700,17706,103,101,116,59,1,8982,59,1,964,114,107,59,1,9140,4,3,97,101,121,17722,17728,17734,114,111,110,59,1,357,100,105,108,59,1,355,59,1,1090,111,116,59,1,8411,108,114,101,99,59,1,8981,114,59,3,55349,56625,4,4,101,105,107,111,17764,17805,17836,17851,4,2,114,116,17770,17786,101,4,2,52,102,17777,17780,59,1,8756,111,114,101,59,1,8756,97,4,3,59,115,118,17795,17797,17802,1,952,121,109,59,1,977,59,1,977,4,2,99,110,17811,17831,107,4,2,97,115,17818,17826,112,112,114,111,120,59,1,8776,105,109,59,1,8764,115,112,59,1,8201,4,2,97,115,17842,17846,112,59,1,8776,105,109,59,1,8764,114,110,5,254,1,59,17858,1,254,4,3,108,109,110,17868,17873,17901,100,101,59,1,732,101,115,5,215,3,59,98,100,17884,17886,17898,1,215,4,2,59,97,17892,17894,1,8864,114,59,1,10801,59,1,10800,116,59,1,8749,4,3,101,112,115,17913,17917,17953,97,59,1,10536,4,4,59,98,99,102,17927,17929,17934,17939,1,8868,111,116,59,1,9014,105,114,59,1,10993,4,2,59,111,17945,17948,3,55349,56677,114,107,59,1,10970,97,59,1,10537,114,105,109,101,59,1,8244,4,3,97,105,112,17972,17977,18082,100,101,59,1,8482,4,7,97,100,101,109,112,115,116,17993,18051,18056,18059,18066,18072,18076,110,103,108,101,4,5,59,100,108,113,114,18009,18011,18017,18032,18035,1,9653,111,119,110,59,1,9663,101,102,116,4,2,59,101,18026,18028,1,9667,113,59,1,8884,59,1,8796,105,103,104,116,4,2,59,101,18045,18047,1,9657,113,59,1,8885,111,116,59,1,9708,59,1,8796,105,110,117,115,59,1,10810,108,117,115,59,1,10809,98,59,1,10701,105,109,101,59,1,10811,101,122,105,117,109,59,1,9186,4,3,99,104,116,18098,18111,18116,4,2,114,121,18104,18108,59,3,55349,56521,59,1,1094,99,121,59,1,1115,114,111,107,59,1,359,4,2,105,111,18128,18133,120,116,59,1,8812,104,101,97,100,4,2,108,114,18143,18154,101,102,116,97,114,114,111,119,59,1,8606,105,103,104,116,97,114,114,111,119,59,1,8608,4,18,65,72,97,98,99,100,102,103,104,108,109,111,112,114,115,116,117,119,18204,18209,18214,18234,18250,18268,18292,18308,18319,18343,18379,18397,18413,18504,18547,18553,18584,18603,114,114,59,1,8657,97,114,59,1,10595,4,2,99,114,18220,18230,117,116,101,5,250,1,59,18228,1,250,114,59,1,8593,114,4,2,99,101,18241,18245,121,59,1,1118,118,101,59,1,365,4,2,105,121,18256,18265,114,99,5,251,1,59,18263,1,251,59,1,1091,4,3,97,98,104,18276,18281,18287,114,114,59,1,8645,108,97,99,59,1,369,97,114,59,1,10606,4,2,105,114,18298,18304,115,104,116,59,1,10622,59,3,55349,56626,114,97,118,101,5,249,1,59,18317,1,249,4,2,97,98,18325,18338,114,4,2,108,114,18332,18335,59,1,8639,59,1,8638,108,107,59,1,9600,4,2,99,116,18349,18374,4,2,111,114,18355,18369,114,110,4,2,59,101,18363,18365,1,8988,114,59,1,8988,111,112,59,1,8975,114,105,59,1,9720,4,2,97,108,18385,18390,99,114,59,1,363,5,168,1,59,18395,1,168,4,2,103,112,18403,18408,111,110,59,1,371,102,59,3,55349,56678,4,6,97,100,104,108,115,117,18427,18434,18445,18470,18475,18494,114,114,111,119,59,1,8593,111,119,110,97,114,114,111,119,59,1,8597,97,114,112,111,111,110,4,2,108,114,18457,18463,101,102,116,59,1,8639,105,103,104,116,59,1,8638,117,115,59,1,8846,105,4,3,59,104,108,18484,18486,18489,1,965,59,1,978,111,110,59,1,965,112,97,114,114,111,119,115,59,1,8648,4,3,99,105,116,18512,18537,18542,4,2,111,114,18518,18532,114,110,4,2,59,101,18526,18528,1,8989,114,59,1,8989,111,112,59,1,8974,110,103,59,1,367,114,105,59,1,9721,99,114,59,3,55349,56522,4,3,100,105,114,18561,18566,18572,111,116,59,1,8944,108,100,101,59,1,361,105,4,2,59,102,18579,18581,1,9653,59,1,9652,4,2,97,109,18590,18595,114,114,59,1,8648,108,5,252,1,59,18601,1,252,97,110,103,108,101,59,1,10663,4,15,65,66,68,97,99,100,101,102,108,110,111,112,114,115,122,18643,18648,18661,18667,18847,18851,18857,18904,18909,18915,18931,18937,18943,18949,18996,114,114,59,1,8661,97,114,4,2,59,118,18656,18658,1,10984,59,1,10985,97,115,104,59,1,8872,4,2,110,114,18673,18679,103,114,116,59,1,10652,4,7,101,107,110,112,114,115,116,18695,18704,18711,18720,18742,18754,18810,112,115,105,108,111,110,59,1,1013,97,112,112,97,59,1,1008,111,116,104,105,110,103,59,1,8709,4,3,104,105,114,18728,18732,18735,105,59,1,981,59,1,982,111,112,116,111,59,1,8733,4,2,59,104,18748,18750,1,8597,111,59,1,1009,4,2,105,117,18760,18766,103,109,97,59,1,962,4,2,98,112,18772,18791,115,101,116,110,101,113,4,2,59,113,18784,18787,3,8842,65024,59,3,10955,65024,115,101,116,110,101,113,4,2,59,113,18803,18806,3,8843,65024,59,3,10956,65024,4,2,104,114,18816,18822,101,116,97,59,1,977,105,97,110,103,108,101,4,2,108,114,18834,18840,101,102,116,59,1,8882,105,103,104,116,59,1,8883,121,59,1,1074,97,115,104,59,1,8866,4,3,101,108,114,18865,18884,18890,4,3,59,98,101,18873,18875,18880,1,8744,97,114,59,1,8891,113,59,1,8794,108,105,112,59,1,8942,4,2,98,116,18896,18901,97,114,59,1,124,59,1,124,114,59,3,55349,56627,116,114,105,59,1,8882,115,117,4,2,98,112,18923,18927,59,3,8834,8402,59,3,8835,8402,112,102,59,3,55349,56679,114,111,112,59,1,8733,116,114,105,59,1,8883,4,2,99,117,18955,18960,114,59,3,55349,56523,4,2,98,112,18966,18981,110,4,2,69,101,18973,18977,59,3,10955,65024,59,3,8842,65024,110,4,2,69,101,18988,18992,59,3,10956,65024,59,3,8843,65024,105,103,122,97,103,59,1,10650,4,7,99,101,102,111,112,114,115,19020,19026,19061,19066,19072,19075,19089,105,114,99,59,1,373,4,2,100,105,19032,19055,4,2,98,103,19038,19043,97,114,59,1,10847,101,4,2,59,113,19050,19052,1,8743,59,1,8793,101,114,112,59,1,8472,114,59,3,55349,56628,112,102,59,3,55349,56680,59,1,8472,4,2,59,101,19081,19083,1,8768,97,116,104,59,1,8768,99,114,59,3,55349,56524,4,14,99,100,102,104,105,108,109,110,111,114,115,117,118,119,19125,19146,19152,19157,19173,19176,19192,19197,19202,19236,19252,19269,19286,19291,4,3,97,105,117,19133,19137,19142,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,116,114,105,59,1,9661,114,59,3,55349,56629,4,2,65,97,19163,19168,114,114,59,1,10234,114,114,59,1,10231,59,1,958,4,2,65,97,19182,19187,114,114,59,1,10232,114,114,59,1,10229,97,112,59,1,10236,105,115,59,1,8955,4,3,100,112,116,19210,19215,19230,111,116,59,1,10752,4,2,102,108,19221,19225,59,3,55349,56681,117,115,59,1,10753,105,109,101,59,1,10754,4,2,65,97,19242,19247,114,114,59,1,10233,114,114,59,1,10230,4,2,99,113,19258,19263,114,59,3,55349,56525,99,117,112,59,1,10758,4,2,112,116,19275,19281,108,117,115,59,1,10756,114,105,59,1,9651,101,101,59,1,8897,101,100,103,101,59,1,8896,4,8,97,99,101,102,105,111,115,117,19316,19335,19349,19357,19362,19367,19373,19379,99,4,2,117,121,19323,19332,116,101,5,253,1,59,19330,1,253,59,1,1103,4,2,105,121,19341,19346,114,99,59,1,375,59,1,1099,110,5,165,1,59,19355,1,165,114,59,3,55349,56630,99,121,59,1,1111,112,102,59,3,55349,56682,99,114,59,3,55349,56526,4,2,99,109,19385,19389,121,59,1,1102,108,5,255,1,59,19395,1,255,4,10,97,99,100,101,102,104,105,111,115,119,19419,19426,19441,19446,19462,19467,19472,19480,19486,19492,99,117,116,101,59,1,378,4,2,97,121,19432,19438,114,111,110,59,1,382,59,1,1079,111,116,59,1,380,4,2,101,116,19452,19458,116,114,102,59,1,8488,97,59,1,950,114,59,3,55349,56631,99,121,59,1,1078,103,114,97,114,114,59,1,8669,112,102,59,3,55349,56683,99,114,59,3,55349,56527,4,2,106,110,19498,19501,59,1,8205,106,59,1,8204]); /***/ }), -/* 340 */ +/* 334 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const HTML = __webpack_require__(341); +const HTML = __webpack_require__(335); //Aliases const $ = HTML.TAG_NAMES; @@ -56494,7 +54199,7 @@ module.exports = OpenElementStack; /***/ }), -/* 341 */ +/* 335 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -56773,7 +54478,7 @@ exports.SPECIAL_ELEMENTS = { /***/ }), -/* 342 */ +/* 336 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -56961,17 +54666,17 @@ module.exports = FormattingElementList; /***/ }), -/* 343 */ +/* 337 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const Mixin = __webpack_require__(344); -const Tokenizer = __webpack_require__(335); -const LocationInfoTokenizerMixin = __webpack_require__(345); -const LocationInfoOpenElementStackMixin = __webpack_require__(347); -const HTML = __webpack_require__(341); +const Mixin = __webpack_require__(338); +const Tokenizer = __webpack_require__(329); +const LocationInfoTokenizerMixin = __webpack_require__(339); +const LocationInfoOpenElementStackMixin = __webpack_require__(341); +const HTML = __webpack_require__(335); //Aliases const $ = HTML.TAG_NAMES; @@ -57191,7 +54896,7 @@ module.exports = LocationInfoParserMixin; /***/ }), -/* 344 */ +/* 338 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -57237,15 +54942,15 @@ module.exports = Mixin; /***/ }), -/* 345 */ +/* 339 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const Mixin = __webpack_require__(344); -const Tokenizer = __webpack_require__(335); -const PositionTrackingPreprocessorMixin = __webpack_require__(346); +const Mixin = __webpack_require__(338); +const Tokenizer = __webpack_require__(329); +const PositionTrackingPreprocessorMixin = __webpack_require__(340); class LocationInfoTokenizerMixin extends Mixin { constructor(tokenizer) { @@ -57390,13 +55095,13 @@ module.exports = LocationInfoTokenizerMixin; /***/ }), -/* 346 */ +/* 340 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const Mixin = __webpack_require__(344); +const Mixin = __webpack_require__(338); class PositionTrackingPreprocessorMixin extends Mixin { constructor(preprocessor) { @@ -57461,13 +55166,13 @@ module.exports = PositionTrackingPreprocessorMixin; /***/ }), -/* 347 */ +/* 341 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const Mixin = __webpack_require__(344); +const Mixin = __webpack_require__(338); class LocationInfoOpenElementStackMixin extends Mixin { constructor(stack, opts) { @@ -57503,16 +55208,16 @@ module.exports = LocationInfoOpenElementStackMixin; /***/ }), -/* 348 */ +/* 342 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const ErrorReportingMixinBase = __webpack_require__(349); -const ErrorReportingTokenizerMixin = __webpack_require__(350); -const LocationInfoTokenizerMixin = __webpack_require__(345); -const Mixin = __webpack_require__(344); +const ErrorReportingMixinBase = __webpack_require__(343); +const ErrorReportingTokenizerMixin = __webpack_require__(344); +const LocationInfoTokenizerMixin = __webpack_require__(339); +const Mixin = __webpack_require__(338); class ErrorReportingParserMixin extends ErrorReportingMixinBase { constructor(parser, opts) { @@ -57562,13 +55267,13 @@ module.exports = ErrorReportingParserMixin; /***/ }), -/* 349 */ +/* 343 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const Mixin = __webpack_require__(344); +const Mixin = __webpack_require__(338); class ErrorReportingMixinBase extends Mixin { constructor(host, opts) { @@ -57612,15 +55317,15 @@ module.exports = ErrorReportingMixinBase; /***/ }), -/* 350 */ +/* 344 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const ErrorReportingMixinBase = __webpack_require__(349); -const ErrorReportingPreprocessorMixin = __webpack_require__(351); -const Mixin = __webpack_require__(344); +const ErrorReportingMixinBase = __webpack_require__(343); +const ErrorReportingPreprocessorMixin = __webpack_require__(345); +const Mixin = __webpack_require__(338); class ErrorReportingTokenizerMixin extends ErrorReportingMixinBase { constructor(tokenizer, opts) { @@ -57636,15 +55341,15 @@ module.exports = ErrorReportingTokenizerMixin; /***/ }), -/* 351 */ +/* 345 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const ErrorReportingMixinBase = __webpack_require__(349); -const PositionTrackingPreprocessorMixin = __webpack_require__(346); -const Mixin = __webpack_require__(344); +const ErrorReportingMixinBase = __webpack_require__(343); +const PositionTrackingPreprocessorMixin = __webpack_require__(340); +const Mixin = __webpack_require__(338); class ErrorReportingPreprocessorMixin extends ErrorReportingMixinBase { constructor(preprocessor, opts) { @@ -57667,13 +55372,13 @@ module.exports = ErrorReportingPreprocessorMixin; /***/ }), -/* 352 */ +/* 346 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const { DOCUMENT_MODE } = __webpack_require__(341); +const { DOCUMENT_MODE } = __webpack_require__(335); //Node construction exports.createDocument = function() { @@ -57895,7 +55600,7 @@ exports.updateNodeSourceCodeLocation = function(node, endLocation) { /***/ }), -/* 353 */ +/* 347 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -57915,13 +55620,13 @@ module.exports = function mergeOptions(defaults, options) { /***/ }), -/* 354 */ +/* 348 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const { DOCUMENT_MODE } = __webpack_require__(341); +const { DOCUMENT_MODE } = __webpack_require__(335); //Const const VALID_DOCTYPE_NAME = 'html'; @@ -58084,14 +55789,14 @@ exports.serializeContent = function(name, publicId, systemId) { /***/ }), -/* 355 */ +/* 349 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const Tokenizer = __webpack_require__(335); -const HTML = __webpack_require__(341); +const Tokenizer = __webpack_require__(329); +const HTML = __webpack_require__(335); //Aliases const $ = HTML.TAG_NAMES; @@ -58356,16 +56061,16 @@ exports.isIntegrationPoint = function(tn, ns, attrs, foreignNS) { /***/ }), -/* 356 */ +/* 350 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -const defaultTreeAdapter = __webpack_require__(352); -const mergeOptions = __webpack_require__(353); -const doctype = __webpack_require__(354); -const HTML = __webpack_require__(341); +const defaultTreeAdapter = __webpack_require__(346); +const mergeOptions = __webpack_require__(347); +const doctype = __webpack_require__(348); +const HTML = __webpack_require__(335); //Aliases const $ = HTML.TAG_NAMES; @@ -58539,383 +56244,1744 @@ module.exports = Serializer; /***/ }), -/* 357 */ +/* 351 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +/* + Module Dependencies +*/ +var htmlparser = __webpack_require__(352); +var parse5 = __webpack_require__(327); +var htmlparser2Adapter = __webpack_require__(274); +var domhandler = __webpack_require__(360); +var DomUtils = htmlparser.DomUtils; +/* + Parser +*/ +exports = module.exports = function parse(content, options, isDocument) { + // options = options || $.fn.options; -const doctype = __webpack_require__(354); -const { DOCUMENT_MODE } = __webpack_require__(341); + var dom; -//Conversion tables for DOM Level1 structure emulation -const nodeTypes = { - element: 1, - text: 3, - cdata: 4, - comment: 8 -}; + if (typeof Buffer !== 'undefined' && Buffer.isBuffer(content)) { + content = content.toString(); + } -const nodePropertyShorthands = { - tagName: 'name', - childNodes: 'children', - parentNode: 'parent', - previousSibling: 'prev', - nextSibling: 'next', - nodeValue: 'data' -}; + if (typeof content === 'string') { + var useHtmlParser2 = options.xmlMode || options._useHtmlParser2; -//Node -class Node { - constructor(props) { - for (const key of Object.keys(props)) { - this[key] = props[key]; - } - } - - get firstChild() { - const children = this.children; + dom = useHtmlParser2 + ? htmlparser.parseDocument(content, options) + : parseWithParse5(content, options, isDocument); + } else { + if ( + typeof content === 'object' && + content != null && + content.type === 'root' + ) { + dom = content; + } else { + // Generic root element + var root = new domhandler.Document(content); + content.forEach(function (node) { + node.parent = root; + }); - return (children && children[0]) || null; + dom = root; } + } - get lastChild() { - const children = this.children; + return dom; +}; - return (children && children[children.length - 1]) || null; - } +function parseWithParse5(content, options, isDocument) { + var parse = isDocument ? parse5.parse : parse5.parseFragment; - get nodeType() { - return nodeTypes[this.type] || nodeTypes.element; - } + return parse(content, { + treeAdapter: htmlparser2Adapter, + sourceCodeLocationInfo: options.sourceCodeLocationInfo, + }); } -Object.keys(nodePropertyShorthands).forEach(key => { - const shorthand = nodePropertyShorthands[key]; - - Object.defineProperty(Node.prototype, key, { - get: function() { - return this[shorthand] || null; - }, - set: function(val) { - this[shorthand] = val; - return val; - } - }); -}); - -//Node construction -exports.createDocument = function() { - return new Node({ - type: 'root', - name: 'root', - parent: null, - prev: null, - next: null, - children: [], - 'x-mode': DOCUMENT_MODE.NO_QUIRKS - }); -}; - -exports.createDocumentFragment = function() { - return new Node({ - type: 'root', - name: 'root', - parent: null, - prev: null, - next: null, - children: [] - }); -}; +/* + Update the dom structure, for one changed layer +*/ +exports.update = function (arr, parent) { + // normalize + if (!Array.isArray(arr)) arr = [arr]; -exports.createElement = function(tagName, namespaceURI, attrs) { - const attribs = Object.create(null); - const attribsNamespace = Object.create(null); - const attribsPrefix = Object.create(null); + // Update parent + if (parent) { + parent.children = arr; + } else { + parent = null; + } - for (let i = 0; i < attrs.length; i++) { - const attrName = attrs[i].name; + // Update neighbors + for (var i = 0; i < arr.length; i++) { + var node = arr[i]; - attribs[attrName] = attrs[i].value; - attribsNamespace[attrName] = attrs[i].namespace; - attribsPrefix[attrName] = attrs[i].prefix; + // Cleanly remove existing nodes from their previous structures. + if (node.parent && node.parent.children !== arr) { + DomUtils.removeElement(node); } - return new Node({ - type: tagName === 'script' || tagName === 'style' ? tagName : 'tag', - name: tagName, - namespace: namespaceURI, - attribs: attribs, - 'x-attribsNamespace': attribsNamespace, - 'x-attribsPrefix': attribsPrefix, - children: [], - parent: null, - prev: null, - next: null - }); -}; + if (parent) { + node.prev = arr[i - 1] || null; + node.next = arr[i + 1] || null; + } else { + node.prev = node.next = null; + } -exports.createCommentNode = function(data) { - return new Node({ - type: 'comment', - data: data, - parent: null, - prev: null, - next: null - }); -}; + node.parent = parent; + } -const createTextNode = function(value) { - return new Node({ - type: 'text', - data: value, - parent: null, - prev: null, - next: null - }); + return parent; }; -//Tree mutation -const appendChild = (exports.appendChild = function(parentNode, newNode) { - const prev = parentNode.children[parentNode.children.length - 1]; - - if (prev) { - prev.next = newNode; - newNode.prev = prev; - } - parentNode.children.push(newNode); - newNode.parent = parentNode; -}); - -const insertBefore = (exports.insertBefore = function(parentNode, newNode, referenceNode) { - const insertionIdx = parentNode.children.indexOf(referenceNode); - const prev = referenceNode.prev; - - if (prev) { - prev.next = newNode; - newNode.prev = prev; - } +/***/ }), +/* 352 */ +/***/ (function(module, exports, __webpack_require__) { - referenceNode.prev = newNode; - newNode.next = referenceNode; +"use strict"; - parentNode.children.splice(insertionIdx, 0, newNode); - newNode.parent = parentNode; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; }); - -exports.setTemplateContent = function(templateElement, contentElement) { - appendChild(templateElement, contentElement); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; }; - -exports.getTemplateContent = function(templateElement) { - return templateElement.children[0]; +var __exportStar = (this && this.__exportStar) || function(m, exports) { + for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.RssHandler = exports.DefaultHandler = exports.DomUtils = exports.ElementType = exports.Tokenizer = exports.createDomStream = exports.parseDOM = exports.parseDocument = exports.DomHandler = exports.Parser = void 0; +var Parser_1 = __webpack_require__(353); +Object.defineProperty(exports, "Parser", { enumerable: true, get: function () { return Parser_1.Parser; } }); +var domhandler_1 = __webpack_require__(360); +Object.defineProperty(exports, "DomHandler", { enumerable: true, get: function () { return domhandler_1.DomHandler; } }); +Object.defineProperty(exports, "DefaultHandler", { enumerable: true, get: function () { return domhandler_1.DomHandler; } }); +// Helper methods +/** + * Parses the data, returns the resulting document. + * + * @param data The data that should be parsed. + * @param options Optional options for the parser and DOM builder. + */ +function parseDocument(data, options) { + var handler = new domhandler_1.DomHandler(undefined, options); + new Parser_1.Parser(handler, options).end(data); + return handler.root; +} +exports.parseDocument = parseDocument; +/** + * Parses data, returns an array of the root nodes. + * + * Note that the root nodes still have a `Document` node as their parent. + * Use `parseDocument` to get the `Document` node instead. + * + * @param data The data that should be parsed. + * @param options Optional options for the parser and DOM builder. + * @deprecated Use `parseDocument` instead. + */ +function parseDOM(data, options) { + return parseDocument(data, options).children; +} +exports.parseDOM = parseDOM; +/** + * Creates a parser instance, with an attached DOM handler. + * + * @param cb A callback that will be called once parsing has been completed. + * @param options Optional options for the parser and DOM builder. + * @param elementCb An optional callback that will be called every time a tag has been completed inside of the DOM. + */ +function createDomStream(cb, options, elementCb) { + var handler = new domhandler_1.DomHandler(cb, options, elementCb); + return new Parser_1.Parser(handler, options); +} +exports.createDomStream = createDomStream; +var Tokenizer_1 = __webpack_require__(354); +Object.defineProperty(exports, "Tokenizer", { enumerable: true, get: function () { return __importDefault(Tokenizer_1).default; } }); +var ElementType = __importStar(__webpack_require__(278)); +exports.ElementType = ElementType; +/* + * All of the following exports exist for backwards-compatibility. + * They should probably be removed eventually. + */ +__exportStar(__webpack_require__(362), exports); +exports.DomUtils = __importStar(__webpack_require__(294)); +var FeedHandler_1 = __webpack_require__(362); +Object.defineProperty(exports, "RssHandler", { enumerable: true, get: function () { return FeedHandler_1.FeedHandler; } }); -exports.setDocumentType = function(document, name, publicId, systemId) { - const data = doctype.serializeContent(name, publicId, systemId); - let doctypeNode = null; - for (let i = 0; i < document.children.length; i++) { - if (document.children[i].type === 'directive' && document.children[i].name === '!doctype') { - doctypeNode = document.children[i]; - break; - } - } +/***/ }), +/* 353 */ +/***/ (function(module, exports, __webpack_require__) { - if (doctypeNode) { - doctypeNode.data = data; - doctypeNode['x-name'] = name; - doctypeNode['x-publicId'] = publicId; - doctypeNode['x-systemId'] = systemId; - } else { - appendChild( - document, - new Node({ - type: 'directive', - name: '!doctype', - data: data, - 'x-name': name, - 'x-publicId': publicId, - 'x-systemId': systemId - }) - ); - } -}; +"use strict"; -exports.setDocumentMode = function(document, mode) { - document['x-mode'] = mode; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; }; - -exports.getDocumentMode = function(document) { - return document['x-mode']; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Parser = void 0; +var Tokenizer_1 = __importDefault(__webpack_require__(354)); +var formTags = new Set([ + "input", + "option", + "optgroup", + "select", + "button", + "datalist", + "textarea", +]); +var pTag = new Set(["p"]); +var openImpliesClose = { + tr: new Set(["tr", "th", "td"]), + th: new Set(["th"]), + td: new Set(["thead", "th", "td"]), + body: new Set(["head", "link", "script"]), + li: new Set(["li"]), + p: pTag, + h1: pTag, + h2: pTag, + h3: pTag, + h4: pTag, + h5: pTag, + h6: pTag, + select: formTags, + input: formTags, + output: formTags, + button: formTags, + datalist: formTags, + textarea: formTags, + option: new Set(["option"]), + optgroup: new Set(["optgroup", "option"]), + dd: new Set(["dt", "dd"]), + dt: new Set(["dt", "dd"]), + address: pTag, + article: pTag, + aside: pTag, + blockquote: pTag, + details: pTag, + div: pTag, + dl: pTag, + fieldset: pTag, + figcaption: pTag, + figure: pTag, + footer: pTag, + form: pTag, + header: pTag, + hr: pTag, + main: pTag, + nav: pTag, + ol: pTag, + pre: pTag, + section: pTag, + table: pTag, + ul: pTag, + rt: new Set(["rt", "rp"]), + rp: new Set(["rt", "rp"]), + tbody: new Set(["thead", "tbody"]), + tfoot: new Set(["thead", "tbody"]), }; - -exports.detachNode = function(node) { - if (node.parent) { - const idx = node.parent.children.indexOf(node); - const prev = node.prev; - const next = node.next; - - node.prev = null; - node.next = null; - - if (prev) { - prev.next = next; +var voidElements = new Set([ + "area", + "base", + "basefont", + "br", + "col", + "command", + "embed", + "frame", + "hr", + "img", + "input", + "isindex", + "keygen", + "link", + "meta", + "param", + "source", + "track", + "wbr", +]); +var foreignContextElements = new Set(["math", "svg"]); +var htmlIntegrationElements = new Set([ + "mi", + "mo", + "mn", + "ms", + "mtext", + "annotation-xml", + "foreignObject", + "desc", + "title", +]); +var reNameEnd = /\s|\//; +var Parser = /** @class */ (function () { + function Parser(cbs, options) { + if (options === void 0) { options = {}; } + var _a, _b, _c, _d, _e; + /** The start index of the last event. */ + this.startIndex = 0; + /** The end index of the last event. */ + this.endIndex = null; + this.tagname = ""; + this.attribname = ""; + this.attribvalue = ""; + this.attribs = null; + this.stack = []; + this.foreignContext = []; + this.options = options; + this.cbs = cbs !== null && cbs !== void 0 ? cbs : {}; + this.lowerCaseTagNames = (_a = options.lowerCaseTags) !== null && _a !== void 0 ? _a : !options.xmlMode; + this.lowerCaseAttributeNames = (_b = options.lowerCaseAttributeNames) !== null && _b !== void 0 ? _b : !options.xmlMode; + this.tokenizer = new ((_c = options.Tokenizer) !== null && _c !== void 0 ? _c : Tokenizer_1.default)(this.options, this); + (_e = (_d = this.cbs).onparserinit) === null || _e === void 0 ? void 0 : _e.call(_d, this); + } + Parser.prototype.updatePosition = function (initialOffset) { + if (this.endIndex === null) { + if (this.tokenizer.sectionStart <= initialOffset) { + this.startIndex = 0; + } + else { + this.startIndex = this.tokenizer.sectionStart - initialOffset; + } } - - if (next) { - next.prev = prev; + else { + this.startIndex = this.endIndex + 1; } + this.endIndex = this.tokenizer.getAbsoluteIndex(); + }; + // Tokenizer event handlers + Parser.prototype.ontext = function (data) { + var _a, _b; + this.updatePosition(1); + this.endIndex--; + (_b = (_a = this.cbs).ontext) === null || _b === void 0 ? void 0 : _b.call(_a, data); + }; + Parser.prototype.onopentagname = function (name) { + var _a, _b; + if (this.lowerCaseTagNames) { + name = name.toLowerCase(); + } + this.tagname = name; + if (!this.options.xmlMode && + Object.prototype.hasOwnProperty.call(openImpliesClose, name)) { + var el = void 0; + while (this.stack.length > 0 && + openImpliesClose[name].has((el = this.stack[this.stack.length - 1]))) { + this.onclosetag(el); + } + } + if (this.options.xmlMode || !voidElements.has(name)) { + this.stack.push(name); + if (foreignContextElements.has(name)) { + this.foreignContext.push(true); + } + else if (htmlIntegrationElements.has(name)) { + this.foreignContext.push(false); + } + } + (_b = (_a = this.cbs).onopentagname) === null || _b === void 0 ? void 0 : _b.call(_a, name); + if (this.cbs.onopentag) + this.attribs = {}; + }; + Parser.prototype.onopentagend = function () { + var _a, _b; + this.updatePosition(1); + if (this.attribs) { + (_b = (_a = this.cbs).onopentag) === null || _b === void 0 ? void 0 : _b.call(_a, this.tagname, this.attribs); + this.attribs = null; + } + if (!this.options.xmlMode && + this.cbs.onclosetag && + voidElements.has(this.tagname)) { + this.cbs.onclosetag(this.tagname); + } + this.tagname = ""; + }; + Parser.prototype.onclosetag = function (name) { + this.updatePosition(1); + if (this.lowerCaseTagNames) { + name = name.toLowerCase(); + } + if (foreignContextElements.has(name) || + htmlIntegrationElements.has(name)) { + this.foreignContext.pop(); + } + if (this.stack.length && + (this.options.xmlMode || !voidElements.has(name))) { + var pos = this.stack.lastIndexOf(name); + if (pos !== -1) { + if (this.cbs.onclosetag) { + pos = this.stack.length - pos; + while (pos--) { + // We know the stack has sufficient elements. + this.cbs.onclosetag(this.stack.pop()); + } + } + else + this.stack.length = pos; + } + else if (name === "p" && !this.options.xmlMode) { + this.onopentagname(name); + this.closeCurrentTag(); + } + } + else if (!this.options.xmlMode && (name === "br" || name === "p")) { + this.onopentagname(name); + this.closeCurrentTag(); + } + }; + Parser.prototype.onselfclosingtag = function () { + if (this.options.xmlMode || + this.options.recognizeSelfClosing || + this.foreignContext[this.foreignContext.length - 1]) { + this.closeCurrentTag(); + } + else { + this.onopentagend(); + } + }; + Parser.prototype.closeCurrentTag = function () { + var _a, _b; + var name = this.tagname; + this.onopentagend(); + /* + * Self-closing tags will be on the top of the stack + * (cheaper check than in onclosetag) + */ + if (this.stack[this.stack.length - 1] === name) { + (_b = (_a = this.cbs).onclosetag) === null || _b === void 0 ? void 0 : _b.call(_a, name); + this.stack.pop(); + } + }; + Parser.prototype.onattribname = function (name) { + if (this.lowerCaseAttributeNames) { + name = name.toLowerCase(); + } + this.attribname = name; + }; + Parser.prototype.onattribdata = function (value) { + this.attribvalue += value; + }; + Parser.prototype.onattribend = function (quote) { + var _a, _b; + (_b = (_a = this.cbs).onattribute) === null || _b === void 0 ? void 0 : _b.call(_a, this.attribname, this.attribvalue, quote); + if (this.attribs && + !Object.prototype.hasOwnProperty.call(this.attribs, this.attribname)) { + this.attribs[this.attribname] = this.attribvalue; + } + this.attribname = ""; + this.attribvalue = ""; + }; + Parser.prototype.getInstructionName = function (value) { + var idx = value.search(reNameEnd); + var name = idx < 0 ? value : value.substr(0, idx); + if (this.lowerCaseTagNames) { + name = name.toLowerCase(); + } + return name; + }; + Parser.prototype.ondeclaration = function (value) { + if (this.cbs.onprocessinginstruction) { + var name_1 = this.getInstructionName(value); + this.cbs.onprocessinginstruction("!" + name_1, "!" + value); + } + }; + Parser.prototype.onprocessinginstruction = function (value) { + if (this.cbs.onprocessinginstruction) { + var name_2 = this.getInstructionName(value); + this.cbs.onprocessinginstruction("?" + name_2, "?" + value); + } + }; + Parser.prototype.oncomment = function (value) { + var _a, _b, _c, _d; + this.updatePosition(4); + (_b = (_a = this.cbs).oncomment) === null || _b === void 0 ? void 0 : _b.call(_a, value); + (_d = (_c = this.cbs).oncommentend) === null || _d === void 0 ? void 0 : _d.call(_c); + }; + Parser.prototype.oncdata = function (value) { + var _a, _b, _c, _d, _e, _f; + this.updatePosition(1); + if (this.options.xmlMode || this.options.recognizeCDATA) { + (_b = (_a = this.cbs).oncdatastart) === null || _b === void 0 ? void 0 : _b.call(_a); + (_d = (_c = this.cbs).ontext) === null || _d === void 0 ? void 0 : _d.call(_c, value); + (_f = (_e = this.cbs).oncdataend) === null || _f === void 0 ? void 0 : _f.call(_e); + } + else { + this.oncomment("[CDATA[" + value + "]]"); + } + }; + Parser.prototype.onerror = function (err) { + var _a, _b; + (_b = (_a = this.cbs).onerror) === null || _b === void 0 ? void 0 : _b.call(_a, err); + }; + Parser.prototype.onend = function () { + var _a, _b; + if (this.cbs.onclosetag) { + for (var i = this.stack.length; i > 0; this.cbs.onclosetag(this.stack[--i])) + ; + } + (_b = (_a = this.cbs).onend) === null || _b === void 0 ? void 0 : _b.call(_a); + }; + /** + * Resets the parser to a blank state, ready to parse a new HTML document + */ + Parser.prototype.reset = function () { + var _a, _b, _c, _d; + (_b = (_a = this.cbs).onreset) === null || _b === void 0 ? void 0 : _b.call(_a); + this.tokenizer.reset(); + this.tagname = ""; + this.attribname = ""; + this.attribs = null; + this.stack = []; + (_d = (_c = this.cbs).onparserinit) === null || _d === void 0 ? void 0 : _d.call(_c, this); + }; + /** + * Resets the parser, then parses a complete document and + * pushes it to the handler. + * + * @param data Document to parse. + */ + Parser.prototype.parseComplete = function (data) { + this.reset(); + this.end(data); + }; + /** + * Parses a chunk of data and calls the corresponding callbacks. + * + * @param chunk Chunk to parse. + */ + Parser.prototype.write = function (chunk) { + this.tokenizer.write(chunk); + }; + /** + * Parses the end of the buffer and clears the stack, calls onend. + * + * @param chunk Optional final chunk to parse. + */ + Parser.prototype.end = function (chunk) { + this.tokenizer.end(chunk); + }; + /** + * Pauses parsing. The parser won't emit events until `resume` is called. + */ + Parser.prototype.pause = function () { + this.tokenizer.pause(); + }; + /** + * Resumes parsing after `pause` was called. + */ + Parser.prototype.resume = function () { + this.tokenizer.resume(); + }; + /** + * Alias of `write`, for backwards compatibility. + * + * @param chunk Chunk to parse. + * @deprecated + */ + Parser.prototype.parseChunk = function (chunk) { + this.write(chunk); + }; + /** + * Alias of `end`, for backwards compatibility. + * + * @param chunk Optional final chunk to parse. + * @deprecated + */ + Parser.prototype.done = function (chunk) { + this.end(chunk); + }; + return Parser; +}()); +exports.Parser = Parser; - node.parent.children.splice(idx, 1); - node.parent = null; - } -}; - -exports.insertText = function(parentNode, text) { - const lastChild = parentNode.children[parentNode.children.length - 1]; - if (lastChild && lastChild.type === 'text') { - lastChild.data += text; - } else { - appendChild(parentNode, createTextNode(text)); - } -}; +/***/ }), +/* 354 */ +/***/ (function(module, exports, __webpack_require__) { -exports.insertTextBefore = function(parentNode, text, referenceNode) { - const prevNode = parentNode.children[parentNode.children.indexOf(referenceNode) - 1]; +"use strict"; - if (prevNode && prevNode.type === 'text') { - prevNode.data += text; - } else { - insertBefore(parentNode, createTextNode(text), referenceNode); - } +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; }; - -exports.adoptAttributes = function(recipient, attrs) { - for (let i = 0; i < attrs.length; i++) { - const attrName = attrs[i].name; - - if (typeof recipient.attribs[attrName] === 'undefined') { - recipient.attribs[attrName] = attrs[i].value; - recipient['x-attribsNamespace'][attrName] = attrs[i].namespace; - recipient['x-attribsPrefix'][attrName] = attrs[i].prefix; - } +Object.defineProperty(exports, "__esModule", { value: true }); +var decode_codepoint_1 = __importDefault(__webpack_require__(355)); +var entities_json_1 = __importDefault(__webpack_require__(357)); +var legacy_json_1 = __importDefault(__webpack_require__(358)); +var xml_json_1 = __importDefault(__webpack_require__(359)); +function whitespace(c) { + return c === " " || c === "\n" || c === "\t" || c === "\f" || c === "\r"; +} +function isASCIIAlpha(c) { + return (c >= "a" && c <= "z") || (c >= "A" && c <= "Z"); +} +function ifElseState(upper, SUCCESS, FAILURE) { + var lower = upper.toLowerCase(); + if (upper === lower) { + return function (t, c) { + if (c === lower) { + t._state = SUCCESS; + } + else { + t._state = FAILURE; + t._index--; + } + }; } -}; - -//Tree traversing -exports.getFirstChild = function(node) { - return node.children[0]; -}; - -exports.getChildNodes = function(node) { - return node.children; -}; - -exports.getParentNode = function(node) { - return node.parent; -}; - -exports.getAttrList = function(element) { - const attrList = []; - - for (const name in element.attribs) { - attrList.push({ - name: name, - value: element.attribs[name], - namespace: element['x-attribsNamespace'][name], - prefix: element['x-attribsPrefix'][name] - }); + return function (t, c) { + if (c === lower || c === upper) { + t._state = SUCCESS; + } + else { + t._state = FAILURE; + t._index--; + } + }; +} +function consumeSpecialNameChar(upper, NEXT_STATE) { + var lower = upper.toLowerCase(); + return function (t, c) { + if (c === lower || c === upper) { + t._state = NEXT_STATE; + } + else { + t._state = 3 /* InTagName */; + t._index--; // Consume the token again + } + }; +} +var stateBeforeCdata1 = ifElseState("C", 24 /* BeforeCdata2 */, 16 /* InDeclaration */); +var stateBeforeCdata2 = ifElseState("D", 25 /* BeforeCdata3 */, 16 /* InDeclaration */); +var stateBeforeCdata3 = ifElseState("A", 26 /* BeforeCdata4 */, 16 /* InDeclaration */); +var stateBeforeCdata4 = ifElseState("T", 27 /* BeforeCdata5 */, 16 /* InDeclaration */); +var stateBeforeCdata5 = ifElseState("A", 28 /* BeforeCdata6 */, 16 /* InDeclaration */); +var stateBeforeScript1 = consumeSpecialNameChar("R", 35 /* BeforeScript2 */); +var stateBeforeScript2 = consumeSpecialNameChar("I", 36 /* BeforeScript3 */); +var stateBeforeScript3 = consumeSpecialNameChar("P", 37 /* BeforeScript4 */); +var stateBeforeScript4 = consumeSpecialNameChar("T", 38 /* BeforeScript5 */); +var stateAfterScript1 = ifElseState("R", 40 /* AfterScript2 */, 1 /* Text */); +var stateAfterScript2 = ifElseState("I", 41 /* AfterScript3 */, 1 /* Text */); +var stateAfterScript3 = ifElseState("P", 42 /* AfterScript4 */, 1 /* Text */); +var stateAfterScript4 = ifElseState("T", 43 /* AfterScript5 */, 1 /* Text */); +var stateBeforeStyle1 = consumeSpecialNameChar("Y", 45 /* BeforeStyle2 */); +var stateBeforeStyle2 = consumeSpecialNameChar("L", 46 /* BeforeStyle3 */); +var stateBeforeStyle3 = consumeSpecialNameChar("E", 47 /* BeforeStyle4 */); +var stateAfterStyle1 = ifElseState("Y", 49 /* AfterStyle2 */, 1 /* Text */); +var stateAfterStyle2 = ifElseState("L", 50 /* AfterStyle3 */, 1 /* Text */); +var stateAfterStyle3 = ifElseState("E", 51 /* AfterStyle4 */, 1 /* Text */); +var stateBeforeSpecialT = consumeSpecialNameChar("I", 54 /* BeforeTitle1 */); +var stateBeforeTitle1 = consumeSpecialNameChar("T", 55 /* BeforeTitle2 */); +var stateBeforeTitle2 = consumeSpecialNameChar("L", 56 /* BeforeTitle3 */); +var stateBeforeTitle3 = consumeSpecialNameChar("E", 57 /* BeforeTitle4 */); +var stateAfterSpecialTEnd = ifElseState("I", 58 /* AfterTitle1 */, 1 /* Text */); +var stateAfterTitle1 = ifElseState("T", 59 /* AfterTitle2 */, 1 /* Text */); +var stateAfterTitle2 = ifElseState("L", 60 /* AfterTitle3 */, 1 /* Text */); +var stateAfterTitle3 = ifElseState("E", 61 /* AfterTitle4 */, 1 /* Text */); +var stateBeforeEntity = ifElseState("#", 63 /* BeforeNumericEntity */, 64 /* InNamedEntity */); +var stateBeforeNumericEntity = ifElseState("X", 66 /* InHexEntity */, 65 /* InNumericEntity */); +var Tokenizer = /** @class */ (function () { + function Tokenizer(options, cbs) { + var _a; + /** The current state the tokenizer is in. */ + this._state = 1 /* Text */; + /** The read buffer. */ + this.buffer = ""; + /** The beginning of the section that is currently being read. */ + this.sectionStart = 0; + /** The index within the buffer that we are currently looking at. */ + this._index = 0; + /** + * Data that has already been processed will be removed from the buffer occasionally. + * `_bufferOffset` keeps track of how many characters have been removed, to make sure position information is accurate. + */ + this.bufferOffset = 0; + /** Some behavior, eg. when decoding entities, is done while we are in another state. This keeps track of the other state type. */ + this.baseState = 1 /* Text */; + /** For special parsing behavior inside of script and style tags. */ + this.special = 1 /* None */; + /** Indicates whether the tokenizer has been paused. */ + this.running = true; + /** Indicates whether the tokenizer has finished running / `.end` has been called. */ + this.ended = false; + this.cbs = cbs; + this.xmlMode = !!(options === null || options === void 0 ? void 0 : options.xmlMode); + this.decodeEntities = (_a = options === null || options === void 0 ? void 0 : options.decodeEntities) !== null && _a !== void 0 ? _a : true; } + Tokenizer.prototype.reset = function () { + this._state = 1 /* Text */; + this.buffer = ""; + this.sectionStart = 0; + this._index = 0; + this.bufferOffset = 0; + this.baseState = 1 /* Text */; + this.special = 1 /* None */; + this.running = true; + this.ended = false; + }; + Tokenizer.prototype.write = function (chunk) { + if (this.ended) + this.cbs.onerror(Error(".write() after done!")); + this.buffer += chunk; + this.parse(); + }; + Tokenizer.prototype.end = function (chunk) { + if (this.ended) + this.cbs.onerror(Error(".end() after done!")); + if (chunk) + this.write(chunk); + this.ended = true; + if (this.running) + this.finish(); + }; + Tokenizer.prototype.pause = function () { + this.running = false; + }; + Tokenizer.prototype.resume = function () { + this.running = true; + if (this._index < this.buffer.length) { + this.parse(); + } + if (this.ended) { + this.finish(); + } + }; + /** + * The current index within all of the written data. + */ + Tokenizer.prototype.getAbsoluteIndex = function () { + return this.bufferOffset + this._index; + }; + Tokenizer.prototype.stateText = function (c) { + if (c === "<") { + if (this._index > this.sectionStart) { + this.cbs.ontext(this.getSection()); + } + this._state = 2 /* BeforeTagName */; + this.sectionStart = this._index; + } + else if (this.decodeEntities && + c === "&" && + (this.special === 1 /* None */ || this.special === 4 /* Title */)) { + if (this._index > this.sectionStart) { + this.cbs.ontext(this.getSection()); + } + this.baseState = 1 /* Text */; + this._state = 62 /* BeforeEntity */; + this.sectionStart = this._index; + } + }; + Tokenizer.prototype.stateBeforeTagName = function (c) { + if (c === "/") { + this._state = 5 /* BeforeClosingTagName */; + } + else if (c === "<") { + this.cbs.ontext(this.getSection()); + this.sectionStart = this._index; + } + else if (c === ">" || + this.special !== 1 /* None */ || + whitespace(c)) { + this._state = 1 /* Text */; + } + else if (c === "!") { + this._state = 15 /* BeforeDeclaration */; + this.sectionStart = this._index + 1; + } + else if (c === "?") { + this._state = 17 /* InProcessingInstruction */; + this.sectionStart = this._index + 1; + } + else if (!isASCIIAlpha(c)) { + this._state = 1 /* Text */; + } + else { + this._state = + !this.xmlMode && (c === "s" || c === "S") + ? 32 /* BeforeSpecialS */ + : !this.xmlMode && (c === "t" || c === "T") + ? 52 /* BeforeSpecialT */ + : 3 /* InTagName */; + this.sectionStart = this._index; + } + }; + Tokenizer.prototype.stateInTagName = function (c) { + if (c === "/" || c === ">" || whitespace(c)) { + this.emitToken("onopentagname"); + this._state = 8 /* BeforeAttributeName */; + this._index--; + } + }; + Tokenizer.prototype.stateBeforeClosingTagName = function (c) { + if (whitespace(c)) { + // Ignore + } + else if (c === ">") { + this._state = 1 /* Text */; + } + else if (this.special !== 1 /* None */) { + if (c === "s" || c === "S") { + this._state = 33 /* BeforeSpecialSEnd */; + } + else if (c === "t" || c === "T") { + this._state = 53 /* BeforeSpecialTEnd */; + } + else { + this._state = 1 /* Text */; + this._index--; + } + } + else if (!isASCIIAlpha(c)) { + this._state = 20 /* InSpecialComment */; + this.sectionStart = this._index; + } + else { + this._state = 6 /* InClosingTagName */; + this.sectionStart = this._index; + } + }; + Tokenizer.prototype.stateInClosingTagName = function (c) { + if (c === ">" || whitespace(c)) { + this.emitToken("onclosetag"); + this._state = 7 /* AfterClosingTagName */; + this._index--; + } + }; + Tokenizer.prototype.stateAfterClosingTagName = function (c) { + // Skip everything until ">" + if (c === ">") { + this._state = 1 /* Text */; + this.sectionStart = this._index + 1; + } + }; + Tokenizer.prototype.stateBeforeAttributeName = function (c) { + if (c === ">") { + this.cbs.onopentagend(); + this._state = 1 /* Text */; + this.sectionStart = this._index + 1; + } + else if (c === "/") { + this._state = 4 /* InSelfClosingTag */; + } + else if (!whitespace(c)) { + this._state = 9 /* InAttributeName */; + this.sectionStart = this._index; + } + }; + Tokenizer.prototype.stateInSelfClosingTag = function (c) { + if (c === ">") { + this.cbs.onselfclosingtag(); + this._state = 1 /* Text */; + this.sectionStart = this._index + 1; + this.special = 1 /* None */; // Reset special state, in case of self-closing special tags + } + else if (!whitespace(c)) { + this._state = 8 /* BeforeAttributeName */; + this._index--; + } + }; + Tokenizer.prototype.stateInAttributeName = function (c) { + if (c === "=" || c === "/" || c === ">" || whitespace(c)) { + this.cbs.onattribname(this.getSection()); + this.sectionStart = -1; + this._state = 10 /* AfterAttributeName */; + this._index--; + } + }; + Tokenizer.prototype.stateAfterAttributeName = function (c) { + if (c === "=") { + this._state = 11 /* BeforeAttributeValue */; + } + else if (c === "/" || c === ">") { + this.cbs.onattribend(undefined); + this._state = 8 /* BeforeAttributeName */; + this._index--; + } + else if (!whitespace(c)) { + this.cbs.onattribend(undefined); + this._state = 9 /* InAttributeName */; + this.sectionStart = this._index; + } + }; + Tokenizer.prototype.stateBeforeAttributeValue = function (c) { + if (c === '"') { + this._state = 12 /* InAttributeValueDq */; + this.sectionStart = this._index + 1; + } + else if (c === "'") { + this._state = 13 /* InAttributeValueSq */; + this.sectionStart = this._index + 1; + } + else if (!whitespace(c)) { + this._state = 14 /* InAttributeValueNq */; + this.sectionStart = this._index; + this._index--; // Reconsume token + } + }; + Tokenizer.prototype.handleInAttributeValue = function (c, quote) { + if (c === quote) { + this.emitToken("onattribdata"); + this.cbs.onattribend(quote); + this._state = 8 /* BeforeAttributeName */; + } + else if (this.decodeEntities && c === "&") { + this.emitToken("onattribdata"); + this.baseState = this._state; + this._state = 62 /* BeforeEntity */; + this.sectionStart = this._index; + } + }; + Tokenizer.prototype.stateInAttributeValueDoubleQuotes = function (c) { + this.handleInAttributeValue(c, '"'); + }; + Tokenizer.prototype.stateInAttributeValueSingleQuotes = function (c) { + this.handleInAttributeValue(c, "'"); + }; + Tokenizer.prototype.stateInAttributeValueNoQuotes = function (c) { + if (whitespace(c) || c === ">") { + this.emitToken("onattribdata"); + this.cbs.onattribend(null); + this._state = 8 /* BeforeAttributeName */; + this._index--; + } + else if (this.decodeEntities && c === "&") { + this.emitToken("onattribdata"); + this.baseState = this._state; + this._state = 62 /* BeforeEntity */; + this.sectionStart = this._index; + } + }; + Tokenizer.prototype.stateBeforeDeclaration = function (c) { + this._state = + c === "[" + ? 23 /* BeforeCdata1 */ + : c === "-" + ? 18 /* BeforeComment */ + : 16 /* InDeclaration */; + }; + Tokenizer.prototype.stateInDeclaration = function (c) { + if (c === ">") { + this.cbs.ondeclaration(this.getSection()); + this._state = 1 /* Text */; + this.sectionStart = this._index + 1; + } + }; + Tokenizer.prototype.stateInProcessingInstruction = function (c) { + if (c === ">") { + this.cbs.onprocessinginstruction(this.getSection()); + this._state = 1 /* Text */; + this.sectionStart = this._index + 1; + } + }; + Tokenizer.prototype.stateBeforeComment = function (c) { + if (c === "-") { + this._state = 19 /* InComment */; + this.sectionStart = this._index + 1; + } + else { + this._state = 16 /* InDeclaration */; + } + }; + Tokenizer.prototype.stateInComment = function (c) { + if (c === "-") + this._state = 21 /* AfterComment1 */; + }; + Tokenizer.prototype.stateInSpecialComment = function (c) { + if (c === ">") { + this.cbs.oncomment(this.buffer.substring(this.sectionStart, this._index)); + this._state = 1 /* Text */; + this.sectionStart = this._index + 1; + } + }; + Tokenizer.prototype.stateAfterComment1 = function (c) { + if (c === "-") { + this._state = 22 /* AfterComment2 */; + } + else { + this._state = 19 /* InComment */; + } + }; + Tokenizer.prototype.stateAfterComment2 = function (c) { + if (c === ">") { + // Remove 2 trailing chars + this.cbs.oncomment(this.buffer.substring(this.sectionStart, this._index - 2)); + this._state = 1 /* Text */; + this.sectionStart = this._index + 1; + } + else if (c !== "-") { + this._state = 19 /* InComment */; + } + // Else: stay in AFTER_COMMENT_2 (`--->`) + }; + Tokenizer.prototype.stateBeforeCdata6 = function (c) { + if (c === "[") { + this._state = 29 /* InCdata */; + this.sectionStart = this._index + 1; + } + else { + this._state = 16 /* InDeclaration */; + this._index--; + } + }; + Tokenizer.prototype.stateInCdata = function (c) { + if (c === "]") + this._state = 30 /* AfterCdata1 */; + }; + Tokenizer.prototype.stateAfterCdata1 = function (c) { + if (c === "]") + this._state = 31 /* AfterCdata2 */; + else + this._state = 29 /* InCdata */; + }; + Tokenizer.prototype.stateAfterCdata2 = function (c) { + if (c === ">") { + // Remove 2 trailing chars + this.cbs.oncdata(this.buffer.substring(this.sectionStart, this._index - 2)); + this._state = 1 /* Text */; + this.sectionStart = this._index + 1; + } + else if (c !== "]") { + this._state = 29 /* InCdata */; + } + // Else: stay in AFTER_CDATA_2 (`]]]>`) + }; + Tokenizer.prototype.stateBeforeSpecialS = function (c) { + if (c === "c" || c === "C") { + this._state = 34 /* BeforeScript1 */; + } + else if (c === "t" || c === "T") { + this._state = 44 /* BeforeStyle1 */; + } + else { + this._state = 3 /* InTagName */; + this._index--; // Consume the token again + } + }; + Tokenizer.prototype.stateBeforeSpecialSEnd = function (c) { + if (this.special === 2 /* Script */ && (c === "c" || c === "C")) { + this._state = 39 /* AfterScript1 */; + } + else if (this.special === 3 /* Style */ && (c === "t" || c === "T")) { + this._state = 48 /* AfterStyle1 */; + } + else + this._state = 1 /* Text */; + }; + Tokenizer.prototype.stateBeforeSpecialLast = function (c, special) { + if (c === "/" || c === ">" || whitespace(c)) { + this.special = special; + } + this._state = 3 /* InTagName */; + this._index--; // Consume the token again + }; + Tokenizer.prototype.stateAfterSpecialLast = function (c, sectionStartOffset) { + if (c === ">" || whitespace(c)) { + this.special = 1 /* None */; + this._state = 6 /* InClosingTagName */; + this.sectionStart = this._index - sectionStartOffset; + this._index--; // Reconsume the token + } + else + this._state = 1 /* Text */; + }; + // For entities terminated with a semicolon + Tokenizer.prototype.parseFixedEntity = function (map) { + if (map === void 0) { map = this.xmlMode ? xml_json_1.default : entities_json_1.default; } + // Offset = 1 + if (this.sectionStart + 1 < this._index) { + var entity = this.buffer.substring(this.sectionStart + 1, this._index); + if (Object.prototype.hasOwnProperty.call(map, entity)) { + this.emitPartial(map[entity]); + this.sectionStart = this._index + 1; + } + } + }; + // Parses legacy entities (without trailing semicolon) + Tokenizer.prototype.parseLegacyEntity = function () { + var start = this.sectionStart + 1; + // The max length of legacy entities is 6 + var limit = Math.min(this._index - start, 6); + while (limit >= 2) { + // The min length of legacy entities is 2 + var entity = this.buffer.substr(start, limit); + if (Object.prototype.hasOwnProperty.call(legacy_json_1.default, entity)) { + this.emitPartial(legacy_json_1.default[entity]); + this.sectionStart += limit + 1; + return; + } + limit--; + } + }; + Tokenizer.prototype.stateInNamedEntity = function (c) { + if (c === ";") { + this.parseFixedEntity(); + // Retry as legacy entity if entity wasn't parsed + if (this.baseState === 1 /* Text */ && + this.sectionStart + 1 < this._index && + !this.xmlMode) { + this.parseLegacyEntity(); + } + this._state = this.baseState; + } + else if ((c < "0" || c > "9") && !isASCIIAlpha(c)) { + if (this.xmlMode || this.sectionStart + 1 === this._index) { + // Ignore + } + else if (this.baseState !== 1 /* Text */) { + if (c !== "=") { + // Parse as legacy entity, without allowing additional characters. + this.parseFixedEntity(legacy_json_1.default); + } + } + else { + this.parseLegacyEntity(); + } + this._state = this.baseState; + this._index--; + } + }; + Tokenizer.prototype.decodeNumericEntity = function (offset, base, strict) { + var sectionStart = this.sectionStart + offset; + if (sectionStart !== this._index) { + // Parse entity + var entity = this.buffer.substring(sectionStart, this._index); + var parsed = parseInt(entity, base); + this.emitPartial(decode_codepoint_1.default(parsed)); + this.sectionStart = strict ? this._index + 1 : this._index; + } + this._state = this.baseState; + }; + Tokenizer.prototype.stateInNumericEntity = function (c) { + if (c === ";") { + this.decodeNumericEntity(2, 10, true); + } + else if (c < "0" || c > "9") { + if (!this.xmlMode) { + this.decodeNumericEntity(2, 10, false); + } + else { + this._state = this.baseState; + } + this._index--; + } + }; + Tokenizer.prototype.stateInHexEntity = function (c) { + if (c === ";") { + this.decodeNumericEntity(3, 16, true); + } + else if ((c < "a" || c > "f") && + (c < "A" || c > "F") && + (c < "0" || c > "9")) { + if (!this.xmlMode) { + this.decodeNumericEntity(3, 16, false); + } + else { + this._state = this.baseState; + } + this._index--; + } + }; + Tokenizer.prototype.cleanup = function () { + if (this.sectionStart < 0) { + this.buffer = ""; + this.bufferOffset += this._index; + this._index = 0; + } + else if (this.running) { + if (this._state === 1 /* Text */) { + if (this.sectionStart !== this._index) { + this.cbs.ontext(this.buffer.substr(this.sectionStart)); + } + this.buffer = ""; + this.bufferOffset += this._index; + this._index = 0; + } + else if (this.sectionStart === this._index) { + // The section just started + this.buffer = ""; + this.bufferOffset += this._index; + this._index = 0; + } + else { + // Remove everything unnecessary + this.buffer = this.buffer.substr(this.sectionStart); + this._index -= this.sectionStart; + this.bufferOffset += this.sectionStart; + } + this.sectionStart = 0; + } + }; + /** + * Iterates through the buffer, calling the function corresponding to the current state. + * + * States that are more likely to be hit are higher up, as a performance improvement. + */ + Tokenizer.prototype.parse = function () { + while (this._index < this.buffer.length && this.running) { + var c = this.buffer.charAt(this._index); + if (this._state === 1 /* Text */) { + this.stateText(c); + } + else if (this._state === 12 /* InAttributeValueDq */) { + this.stateInAttributeValueDoubleQuotes(c); + } + else if (this._state === 9 /* InAttributeName */) { + this.stateInAttributeName(c); + } + else if (this._state === 19 /* InComment */) { + this.stateInComment(c); + } + else if (this._state === 20 /* InSpecialComment */) { + this.stateInSpecialComment(c); + } + else if (this._state === 8 /* BeforeAttributeName */) { + this.stateBeforeAttributeName(c); + } + else if (this._state === 3 /* InTagName */) { + this.stateInTagName(c); + } + else if (this._state === 6 /* InClosingTagName */) { + this.stateInClosingTagName(c); + } + else if (this._state === 2 /* BeforeTagName */) { + this.stateBeforeTagName(c); + } + else if (this._state === 10 /* AfterAttributeName */) { + this.stateAfterAttributeName(c); + } + else if (this._state === 13 /* InAttributeValueSq */) { + this.stateInAttributeValueSingleQuotes(c); + } + else if (this._state === 11 /* BeforeAttributeValue */) { + this.stateBeforeAttributeValue(c); + } + else if (this._state === 5 /* BeforeClosingTagName */) { + this.stateBeforeClosingTagName(c); + } + else if (this._state === 7 /* AfterClosingTagName */) { + this.stateAfterClosingTagName(c); + } + else if (this._state === 32 /* BeforeSpecialS */) { + this.stateBeforeSpecialS(c); + } + else if (this._state === 21 /* AfterComment1 */) { + this.stateAfterComment1(c); + } + else if (this._state === 14 /* InAttributeValueNq */) { + this.stateInAttributeValueNoQuotes(c); + } + else if (this._state === 4 /* InSelfClosingTag */) { + this.stateInSelfClosingTag(c); + } + else if (this._state === 16 /* InDeclaration */) { + this.stateInDeclaration(c); + } + else if (this._state === 15 /* BeforeDeclaration */) { + this.stateBeforeDeclaration(c); + } + else if (this._state === 22 /* AfterComment2 */) { + this.stateAfterComment2(c); + } + else if (this._state === 18 /* BeforeComment */) { + this.stateBeforeComment(c); + } + else if (this._state === 33 /* BeforeSpecialSEnd */) { + this.stateBeforeSpecialSEnd(c); + } + else if (this._state === 53 /* BeforeSpecialTEnd */) { + stateAfterSpecialTEnd(this, c); + } + else if (this._state === 39 /* AfterScript1 */) { + stateAfterScript1(this, c); + } + else if (this._state === 40 /* AfterScript2 */) { + stateAfterScript2(this, c); + } + else if (this._state === 41 /* AfterScript3 */) { + stateAfterScript3(this, c); + } + else if (this._state === 34 /* BeforeScript1 */) { + stateBeforeScript1(this, c); + } + else if (this._state === 35 /* BeforeScript2 */) { + stateBeforeScript2(this, c); + } + else if (this._state === 36 /* BeforeScript3 */) { + stateBeforeScript3(this, c); + } + else if (this._state === 37 /* BeforeScript4 */) { + stateBeforeScript4(this, c); + } + else if (this._state === 38 /* BeforeScript5 */) { + this.stateBeforeSpecialLast(c, 2 /* Script */); + } + else if (this._state === 42 /* AfterScript4 */) { + stateAfterScript4(this, c); + } + else if (this._state === 43 /* AfterScript5 */) { + this.stateAfterSpecialLast(c, 6); + } + else if (this._state === 44 /* BeforeStyle1 */) { + stateBeforeStyle1(this, c); + } + else if (this._state === 29 /* InCdata */) { + this.stateInCdata(c); + } + else if (this._state === 45 /* BeforeStyle2 */) { + stateBeforeStyle2(this, c); + } + else if (this._state === 46 /* BeforeStyle3 */) { + stateBeforeStyle3(this, c); + } + else if (this._state === 47 /* BeforeStyle4 */) { + this.stateBeforeSpecialLast(c, 3 /* Style */); + } + else if (this._state === 48 /* AfterStyle1 */) { + stateAfterStyle1(this, c); + } + else if (this._state === 49 /* AfterStyle2 */) { + stateAfterStyle2(this, c); + } + else if (this._state === 50 /* AfterStyle3 */) { + stateAfterStyle3(this, c); + } + else if (this._state === 51 /* AfterStyle4 */) { + this.stateAfterSpecialLast(c, 5); + } + else if (this._state === 52 /* BeforeSpecialT */) { + stateBeforeSpecialT(this, c); + } + else if (this._state === 54 /* BeforeTitle1 */) { + stateBeforeTitle1(this, c); + } + else if (this._state === 55 /* BeforeTitle2 */) { + stateBeforeTitle2(this, c); + } + else if (this._state === 56 /* BeforeTitle3 */) { + stateBeforeTitle3(this, c); + } + else if (this._state === 57 /* BeforeTitle4 */) { + this.stateBeforeSpecialLast(c, 4 /* Title */); + } + else if (this._state === 58 /* AfterTitle1 */) { + stateAfterTitle1(this, c); + } + else if (this._state === 59 /* AfterTitle2 */) { + stateAfterTitle2(this, c); + } + else if (this._state === 60 /* AfterTitle3 */) { + stateAfterTitle3(this, c); + } + else if (this._state === 61 /* AfterTitle4 */) { + this.stateAfterSpecialLast(c, 5); + } + else if (this._state === 17 /* InProcessingInstruction */) { + this.stateInProcessingInstruction(c); + } + else if (this._state === 64 /* InNamedEntity */) { + this.stateInNamedEntity(c); + } + else if (this._state === 23 /* BeforeCdata1 */) { + stateBeforeCdata1(this, c); + } + else if (this._state === 62 /* BeforeEntity */) { + stateBeforeEntity(this, c); + } + else if (this._state === 24 /* BeforeCdata2 */) { + stateBeforeCdata2(this, c); + } + else if (this._state === 25 /* BeforeCdata3 */) { + stateBeforeCdata3(this, c); + } + else if (this._state === 30 /* AfterCdata1 */) { + this.stateAfterCdata1(c); + } + else if (this._state === 31 /* AfterCdata2 */) { + this.stateAfterCdata2(c); + } + else if (this._state === 26 /* BeforeCdata4 */) { + stateBeforeCdata4(this, c); + } + else if (this._state === 27 /* BeforeCdata5 */) { + stateBeforeCdata5(this, c); + } + else if (this._state === 28 /* BeforeCdata6 */) { + this.stateBeforeCdata6(c); + } + else if (this._state === 66 /* InHexEntity */) { + this.stateInHexEntity(c); + } + else if (this._state === 65 /* InNumericEntity */) { + this.stateInNumericEntity(c); + // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition + } + else if (this._state === 63 /* BeforeNumericEntity */) { + stateBeforeNumericEntity(this, c); + } + else { + this.cbs.onerror(Error("unknown _state"), this._state); + } + this._index++; + } + this.cleanup(); + }; + Tokenizer.prototype.finish = function () { + // If there is remaining data, emit it in a reasonable way + if (this.sectionStart < this._index) { + this.handleTrailingData(); + } + this.cbs.onend(); + }; + Tokenizer.prototype.handleTrailingData = function () { + var data = this.buffer.substr(this.sectionStart); + if (this._state === 29 /* InCdata */ || + this._state === 30 /* AfterCdata1 */ || + this._state === 31 /* AfterCdata2 */) { + this.cbs.oncdata(data); + } + else if (this._state === 19 /* InComment */ || + this._state === 21 /* AfterComment1 */ || + this._state === 22 /* AfterComment2 */) { + this.cbs.oncomment(data); + } + else if (this._state === 64 /* InNamedEntity */ && !this.xmlMode) { + this.parseLegacyEntity(); + if (this.sectionStart < this._index) { + this._state = this.baseState; + this.handleTrailingData(); + } + } + else if (this._state === 65 /* InNumericEntity */ && !this.xmlMode) { + this.decodeNumericEntity(2, 10, false); + if (this.sectionStart < this._index) { + this._state = this.baseState; + this.handleTrailingData(); + } + } + else if (this._state === 66 /* InHexEntity */ && !this.xmlMode) { + this.decodeNumericEntity(3, 16, false); + if (this.sectionStart < this._index) { + this._state = this.baseState; + this.handleTrailingData(); + } + } + else if (this._state !== 3 /* InTagName */ && + this._state !== 8 /* BeforeAttributeName */ && + this._state !== 11 /* BeforeAttributeValue */ && + this._state !== 10 /* AfterAttributeName */ && + this._state !== 9 /* InAttributeName */ && + this._state !== 13 /* InAttributeValueSq */ && + this._state !== 12 /* InAttributeValueDq */ && + this._state !== 14 /* InAttributeValueNq */ && + this._state !== 6 /* InClosingTagName */) { + this.cbs.ontext(data); + } + /* + * Else, ignore remaining data + * TODO add a way to remove current tag + */ + }; + Tokenizer.prototype.getSection = function () { + return this.buffer.substring(this.sectionStart, this._index); + }; + Tokenizer.prototype.emitToken = function (name) { + this.cbs[name](this.getSection()); + this.sectionStart = -1; + }; + Tokenizer.prototype.emitPartial = function (value) { + if (this.baseState !== 1 /* Text */) { + this.cbs.onattribdata(value); // TODO implement the new event + } + else { + this.cbs.ontext(value); + } + }; + return Tokenizer; +}()); +exports.default = Tokenizer; - return attrList; -}; - -//Node data -exports.getTagName = function(element) { - return element.name; -}; - -exports.getNamespaceURI = function(element) { - return element.namespace; -}; - -exports.getTextNodeContent = function(textNode) { - return textNode.data; -}; - -exports.getCommentNodeContent = function(commentNode) { - return commentNode.data; -}; - -exports.getDocumentTypeNodeName = function(doctypeNode) { - return doctypeNode['x-name']; -}; - -exports.getDocumentTypeNodePublicId = function(doctypeNode) { - return doctypeNode['x-publicId']; -}; - -exports.getDocumentTypeNodeSystemId = function(doctypeNode) { - return doctypeNode['x-systemId']; -}; -//Node types -exports.isTextNode = function(node) { - return node.type === 'text'; -}; +/***/ }), +/* 355 */ +/***/ (function(module, exports, __webpack_require__) { -exports.isCommentNode = function(node) { - return node.type === 'comment'; -}; +"use strict"; -exports.isDocumentTypeNode = function(node) { - return node.type === 'directive' && node.name === '!doctype'; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; }; +Object.defineProperty(exports, "__esModule", { value: true }); +var decode_json_1 = __importDefault(__webpack_require__(356)); +// Adapted from https://github.com/mathiasbynens/he/blob/master/src/he.js#L94-L119 +var fromCodePoint = +// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition +String.fromCodePoint || + function (codePoint) { + var output = ""; + if (codePoint > 0xffff) { + codePoint -= 0x10000; + output += String.fromCharCode(((codePoint >>> 10) & 0x3ff) | 0xd800); + codePoint = 0xdc00 | (codePoint & 0x3ff); + } + output += String.fromCharCode(codePoint); + return output; + }; +function decodeCodePoint(codePoint) { + if ((codePoint >= 0xd800 && codePoint <= 0xdfff) || codePoint > 0x10ffff) { + return "\uFFFD"; + } + if (codePoint in decode_json_1.default) { + codePoint = decode_json_1.default[codePoint]; + } + return fromCodePoint(codePoint); +} +exports.default = decodeCodePoint; -exports.isElementNode = function(node) { - return !!node.attribs; -}; -// Source code location -exports.setNodeSourceCodeLocation = function(node, location) { - node.sourceCodeLocation = location; -}; +/***/ }), +/* 356 */ +/***/ (function(module) { -exports.getNodeSourceCodeLocation = function(node) { - return node.sourceCodeLocation; -}; +module.exports = JSON.parse("{\"0\":65533,\"128\":8364,\"130\":8218,\"131\":402,\"132\":8222,\"133\":8230,\"134\":8224,\"135\":8225,\"136\":710,\"137\":8240,\"138\":352,\"139\":8249,\"140\":338,\"142\":381,\"145\":8216,\"146\":8217,\"147\":8220,\"148\":8221,\"149\":8226,\"150\":8211,\"151\":8212,\"152\":732,\"153\":8482,\"154\":353,\"155\":8250,\"156\":339,\"158\":382,\"159\":376}"); -exports.updateNodeSourceCodeLocation = function(node, endLocation) { - node.sourceCodeLocation = Object.assign(node.sourceCodeLocation, endLocation); -}; +/***/ }), +/* 357 */ +/***/ (function(module) { +module.exports = JSON.parse("{\"Aacute\":\"Ã\",\"aacute\":\"á\",\"Abreve\":\"Ä‚\",\"abreve\":\"ă\",\"ac\":\"∾\",\"acd\":\"∿\",\"acE\":\"∾̳\",\"Acirc\":\"Â\",\"acirc\":\"â\",\"acute\":\"´\",\"Acy\":\"Ð\",\"acy\":\"а\",\"AElig\":\"Æ\",\"aelig\":\"æ\",\"af\":\"â¡\",\"Afr\":\"ð”„\",\"afr\":\"ð”ž\",\"Agrave\":\"À\",\"agrave\":\"à \",\"alefsym\":\"ℵ\",\"aleph\":\"ℵ\",\"Alpha\":\"Α\",\"alpha\":\"α\",\"Amacr\":\"Ä€\",\"amacr\":\"Ä\",\"amalg\":\"⨿\",\"amp\":\"&\",\"AMP\":\"&\",\"andand\":\"â©•\",\"And\":\"â©“\",\"and\":\"∧\",\"andd\":\"⩜\",\"andslope\":\"⩘\",\"andv\":\"⩚\",\"ang\":\"∠\",\"ange\":\"⦤\",\"angle\":\"∠\",\"angmsdaa\":\"⦨\",\"angmsdab\":\"⦩\",\"angmsdac\":\"⦪\",\"angmsdad\":\"⦫\",\"angmsdae\":\"⦬\",\"angmsdaf\":\"â¦\",\"angmsdag\":\"⦮\",\"angmsdah\":\"⦯\",\"angmsd\":\"∡\",\"angrt\":\"∟\",\"angrtvb\":\"⊾\",\"angrtvbd\":\"â¦\",\"angsph\":\"∢\",\"angst\":\"Ã…\",\"angzarr\":\"â¼\",\"Aogon\":\"Ä„\",\"aogon\":\"Ä…\",\"Aopf\":\"ð”¸\",\"aopf\":\"ð•’\",\"apacir\":\"⩯\",\"ap\":\"≈\",\"apE\":\"â©°\",\"ape\":\"≊\",\"apid\":\"≋\",\"apos\":\"'\",\"ApplyFunction\":\"â¡\",\"approx\":\"≈\",\"approxeq\":\"≊\",\"Aring\":\"Ã…\",\"aring\":\"Ã¥\",\"Ascr\":\"ð’œ\",\"ascr\":\"ð’¶\",\"Assign\":\"≔\",\"ast\":\"*\",\"asymp\":\"≈\",\"asympeq\":\"â‰\",\"Atilde\":\"Ã\",\"atilde\":\"ã\",\"Auml\":\"Ä\",\"auml\":\"ä\",\"awconint\":\"∳\",\"awint\":\"⨑\",\"backcong\":\"≌\",\"backepsilon\":\"϶\",\"backprime\":\"‵\",\"backsim\":\"∽\",\"backsimeq\":\"â‹\",\"Backslash\":\"∖\",\"Barv\":\"â«§\",\"barvee\":\"⊽\",\"barwed\":\"⌅\",\"Barwed\":\"⌆\",\"barwedge\":\"⌅\",\"bbrk\":\"⎵\",\"bbrktbrk\":\"⎶\",\"bcong\":\"≌\",\"Bcy\":\"Б\",\"bcy\":\"б\",\"bdquo\":\"„\",\"becaus\":\"∵\",\"because\":\"∵\",\"Because\":\"∵\",\"bemptyv\":\"⦰\",\"bepsi\":\"϶\",\"bernou\":\"ℬ\",\"Bernoullis\":\"ℬ\",\"Beta\":\"Î’\",\"beta\":\"β\",\"beth\":\"â„¶\",\"between\":\"≬\",\"Bfr\":\"ð”…\",\"bfr\":\"ð”Ÿ\",\"bigcap\":\"â‹‚\",\"bigcirc\":\"â—¯\",\"bigcup\":\"⋃\",\"bigodot\":\"⨀\",\"bigoplus\":\"â¨\",\"bigotimes\":\"⨂\",\"bigsqcup\":\"⨆\",\"bigstar\":\"★\",\"bigtriangledown\":\"â–½\",\"bigtriangleup\":\"â–³\",\"biguplus\":\"⨄\",\"bigvee\":\"â‹\",\"bigwedge\":\"â‹€\",\"bkarow\":\"â¤\",\"blacklozenge\":\"â§«\",\"blacksquare\":\"â–ª\",\"blacktriangle\":\"â–´\",\"blacktriangledown\":\"â–¾\",\"blacktriangleleft\":\"â—‚\",\"blacktriangleright\":\"â–¸\",\"blank\":\"â£\",\"blk12\":\"â–’\",\"blk14\":\"â–‘\",\"blk34\":\"â–“\",\"block\":\"â–ˆ\",\"bne\":\"=⃥\",\"bnequiv\":\"≡⃥\",\"bNot\":\"â«\",\"bnot\":\"âŒ\",\"Bopf\":\"ð”¹\",\"bopf\":\"ð•“\",\"bot\":\"⊥\",\"bottom\":\"⊥\",\"bowtie\":\"⋈\",\"boxbox\":\"⧉\",\"boxdl\":\"â”\",\"boxdL\":\"â••\",\"boxDl\":\"â•–\",\"boxDL\":\"â•—\",\"boxdr\":\"┌\",\"boxdR\":\"â•’\",\"boxDr\":\"â•“\",\"boxDR\":\"â•”\",\"boxh\":\"─\",\"boxH\":\"â•\",\"boxhd\":\"┬\",\"boxHd\":\"╤\",\"boxhD\":\"â•¥\",\"boxHD\":\"╦\",\"boxhu\":\"â”´\",\"boxHu\":\"â•§\",\"boxhU\":\"╨\",\"boxHU\":\"â•©\",\"boxminus\":\"⊟\",\"boxplus\":\"⊞\",\"boxtimes\":\"⊠\",\"boxul\":\"┘\",\"boxuL\":\"â•›\",\"boxUl\":\"╜\",\"boxUL\":\"â•\",\"boxur\":\"â””\",\"boxuR\":\"╘\",\"boxUr\":\"â•™\",\"boxUR\":\"╚\",\"boxv\":\"│\",\"boxV\":\"â•‘\",\"boxvh\":\"┼\",\"boxvH\":\"╪\",\"boxVh\":\"â•«\",\"boxVH\":\"╬\",\"boxvl\":\"┤\",\"boxvL\":\"â•¡\",\"boxVl\":\"â•¢\",\"boxVL\":\"â•£\",\"boxvr\":\"├\",\"boxvR\":\"╞\",\"boxVr\":\"╟\",\"boxVR\":\"â• \",\"bprime\":\"‵\",\"breve\":\"˘\",\"Breve\":\"˘\",\"brvbar\":\"¦\",\"bscr\":\"ð’·\",\"Bscr\":\"ℬ\",\"bsemi\":\"â\",\"bsim\":\"∽\",\"bsime\":\"â‹\",\"bsolb\":\"â§…\",\"bsol\":\"\\\\\",\"bsolhsub\":\"⟈\",\"bull\":\"•\",\"bullet\":\"•\",\"bump\":\"≎\",\"bumpE\":\"⪮\",\"bumpe\":\"â‰\",\"Bumpeq\":\"≎\",\"bumpeq\":\"â‰\",\"Cacute\":\"Ć\",\"cacute\":\"ć\",\"capand\":\"â©„\",\"capbrcup\":\"⩉\",\"capcap\":\"â©‹\",\"cap\":\"∩\",\"Cap\":\"â‹’\",\"capcup\":\"⩇\",\"capdot\":\"â©€\",\"CapitalDifferentialD\":\"â……\",\"caps\":\"∩︀\",\"caret\":\"â\",\"caron\":\"ˇ\",\"Cayleys\":\"â„\",\"ccaps\":\"â©\",\"Ccaron\":\"ÄŒ\",\"ccaron\":\"Ä\",\"Ccedil\":\"Ç\",\"ccedil\":\"ç\",\"Ccirc\":\"Ĉ\",\"ccirc\":\"ĉ\",\"Cconint\":\"∰\",\"ccups\":\"⩌\",\"ccupssm\":\"â©\",\"Cdot\":\"ÄŠ\",\"cdot\":\"Ä‹\",\"cedil\":\"¸\",\"Cedilla\":\"¸\",\"cemptyv\":\"⦲\",\"cent\":\"¢\",\"centerdot\":\"·\",\"CenterDot\":\"·\",\"cfr\":\"ð” \",\"Cfr\":\"â„\",\"CHcy\":\"Ч\",\"chcy\":\"ч\",\"check\":\"✓\",\"checkmark\":\"✓\",\"Chi\":\"Χ\",\"chi\":\"χ\",\"circ\":\"ˆ\",\"circeq\":\"≗\",\"circlearrowleft\":\"↺\",\"circlearrowright\":\"↻\",\"circledast\":\"⊛\",\"circledcirc\":\"⊚\",\"circleddash\":\"âŠ\",\"CircleDot\":\"⊙\",\"circledR\":\"®\",\"circledS\":\"Ⓢ\",\"CircleMinus\":\"⊖\",\"CirclePlus\":\"⊕\",\"CircleTimes\":\"⊗\",\"cir\":\"â—‹\",\"cirE\":\"⧃\",\"cire\":\"≗\",\"cirfnint\":\"â¨\",\"cirmid\":\"⫯\",\"cirscir\":\"â§‚\",\"ClockwiseContourIntegral\":\"∲\",\"CloseCurlyDoubleQuote\":\"â€\",\"CloseCurlyQuote\":\"’\",\"clubs\":\"♣\",\"clubsuit\":\"♣\",\"colon\":\":\",\"Colon\":\"∷\",\"Colone\":\"â©´\",\"colone\":\"≔\",\"coloneq\":\"≔\",\"comma\":\",\",\"commat\":\"@\",\"comp\":\"âˆ\",\"compfn\":\"∘\",\"complement\":\"âˆ\",\"complexes\":\"â„‚\",\"cong\":\"≅\",\"congdot\":\"â©\",\"Congruent\":\"≡\",\"conint\":\"∮\",\"Conint\":\"∯\",\"ContourIntegral\":\"∮\",\"copf\":\"ð•”\",\"Copf\":\"â„‚\",\"coprod\":\"âˆ\",\"Coproduct\":\"âˆ\",\"copy\":\"©\",\"COPY\":\"©\",\"copysr\":\"â„—\",\"CounterClockwiseContourIntegral\":\"∳\",\"crarr\":\"↵\",\"cross\":\"✗\",\"Cross\":\"⨯\",\"Cscr\":\"ð’ž\",\"cscr\":\"ð’¸\",\"csub\":\"â«\",\"csube\":\"â«‘\",\"csup\":\"â«\",\"csupe\":\"â«’\",\"ctdot\":\"⋯\",\"cudarrl\":\"⤸\",\"cudarrr\":\"⤵\",\"cuepr\":\"⋞\",\"cuesc\":\"⋟\",\"cularr\":\"↶\",\"cularrp\":\"⤽\",\"cupbrcap\":\"⩈\",\"cupcap\":\"⩆\",\"CupCap\":\"â‰\",\"cup\":\"∪\",\"Cup\":\"â‹“\",\"cupcup\":\"⩊\",\"cupdot\":\"âŠ\",\"cupor\":\"â©…\",\"cups\":\"∪︀\",\"curarr\":\"↷\",\"curarrm\":\"⤼\",\"curlyeqprec\":\"⋞\",\"curlyeqsucc\":\"⋟\",\"curlyvee\":\"⋎\",\"curlywedge\":\"â‹\",\"curren\":\"¤\",\"curvearrowleft\":\"↶\",\"curvearrowright\":\"↷\",\"cuvee\":\"⋎\",\"cuwed\":\"â‹\",\"cwconint\":\"∲\",\"cwint\":\"∱\",\"cylcty\":\"âŒ\",\"dagger\":\"†\",\"Dagger\":\"‡\",\"daleth\":\"ℸ\",\"darr\":\"↓\",\"Darr\":\"↡\",\"dArr\":\"⇓\",\"dash\":\"â€\",\"Dashv\":\"⫤\",\"dashv\":\"⊣\",\"dbkarow\":\"â¤\",\"dblac\":\"Ë\",\"Dcaron\":\"ÄŽ\",\"dcaron\":\"Ä\",\"Dcy\":\"Д\",\"dcy\":\"д\",\"ddagger\":\"‡\",\"ddarr\":\"⇊\",\"DD\":\"â……\",\"dd\":\"â…†\",\"DDotrahd\":\"⤑\",\"ddotseq\":\"â©·\",\"deg\":\"°\",\"Del\":\"∇\",\"Delta\":\"Δ\",\"delta\":\"δ\",\"demptyv\":\"⦱\",\"dfisht\":\"⥿\",\"Dfr\":\"ð”‡\",\"dfr\":\"ð”¡\",\"dHar\":\"⥥\",\"dharl\":\"⇃\",\"dharr\":\"⇂\",\"DiacriticalAcute\":\"´\",\"DiacriticalDot\":\"Ë™\",\"DiacriticalDoubleAcute\":\"Ë\",\"DiacriticalGrave\":\"`\",\"DiacriticalTilde\":\"Ëœ\",\"diam\":\"â‹„\",\"diamond\":\"â‹„\",\"Diamond\":\"â‹„\",\"diamondsuit\":\"♦\",\"diams\":\"♦\",\"die\":\"¨\",\"DifferentialD\":\"â…†\",\"digamma\":\"Ï\",\"disin\":\"⋲\",\"div\":\"÷\",\"divide\":\"÷\",\"divideontimes\":\"⋇\",\"divonx\":\"⋇\",\"DJcy\":\"Ђ\",\"djcy\":\"Ñ’\",\"dlcorn\":\"⌞\",\"dlcrop\":\"âŒ\",\"dollar\":\"$\",\"Dopf\":\"ð”»\",\"dopf\":\"ð••\",\"Dot\":\"¨\",\"dot\":\"Ë™\",\"DotDot\":\"⃜\",\"doteq\":\"â‰\",\"doteqdot\":\"≑\",\"DotEqual\":\"â‰\",\"dotminus\":\"∸\",\"dotplus\":\"∔\",\"dotsquare\":\"⊡\",\"doublebarwedge\":\"⌆\",\"DoubleContourIntegral\":\"∯\",\"DoubleDot\":\"¨\",\"DoubleDownArrow\":\"⇓\",\"DoubleLeftArrow\":\"â‡\",\"DoubleLeftRightArrow\":\"⇔\",\"DoubleLeftTee\":\"⫤\",\"DoubleLongLeftArrow\":\"⟸\",\"DoubleLongLeftRightArrow\":\"⟺\",\"DoubleLongRightArrow\":\"⟹\",\"DoubleRightArrow\":\"⇒\",\"DoubleRightTee\":\"⊨\",\"DoubleUpArrow\":\"⇑\",\"DoubleUpDownArrow\":\"⇕\",\"DoubleVerticalBar\":\"∥\",\"DownArrowBar\":\"⤓\",\"downarrow\":\"↓\",\"DownArrow\":\"↓\",\"Downarrow\":\"⇓\",\"DownArrowUpArrow\":\"⇵\",\"DownBreve\":\"Ì‘\",\"downdownarrows\":\"⇊\",\"downharpoonleft\":\"⇃\",\"downharpoonright\":\"⇂\",\"DownLeftRightVector\":\"â¥\",\"DownLeftTeeVector\":\"⥞\",\"DownLeftVectorBar\":\"⥖\",\"DownLeftVector\":\"↽\",\"DownRightTeeVector\":\"⥟\",\"DownRightVectorBar\":\"⥗\",\"DownRightVector\":\"â‡\",\"DownTeeArrow\":\"↧\",\"DownTee\":\"⊤\",\"drbkarow\":\"â¤\",\"drcorn\":\"⌟\",\"drcrop\":\"⌌\",\"Dscr\":\"ð’Ÿ\",\"dscr\":\"ð’¹\",\"DScy\":\"Ð…\",\"dscy\":\"Ñ•\",\"dsol\":\"â§¶\",\"Dstrok\":\"Ä\",\"dstrok\":\"Ä‘\",\"dtdot\":\"⋱\",\"dtri\":\"â–¿\",\"dtrif\":\"â–¾\",\"duarr\":\"⇵\",\"duhar\":\"⥯\",\"dwangle\":\"⦦\",\"DZcy\":\"Ð\",\"dzcy\":\"ÑŸ\",\"dzigrarr\":\"⟿\",\"Eacute\":\"É\",\"eacute\":\"é\",\"easter\":\"â©®\",\"Ecaron\":\"Äš\",\"ecaron\":\"Ä›\",\"Ecirc\":\"Ê\",\"ecirc\":\"ê\",\"ecir\":\"≖\",\"ecolon\":\"≕\",\"Ecy\":\"Ð\",\"ecy\":\"Ñ\",\"eDDot\":\"â©·\",\"Edot\":\"Ä–\",\"edot\":\"Ä—\",\"eDot\":\"≑\",\"ee\":\"â…‡\",\"efDot\":\"≒\",\"Efr\":\"ð”ˆ\",\"efr\":\"ð”¢\",\"eg\":\"⪚\",\"Egrave\":\"È\",\"egrave\":\"è\",\"egs\":\"⪖\",\"egsdot\":\"⪘\",\"el\":\"⪙\",\"Element\":\"∈\",\"elinters\":\"â§\",\"ell\":\"â„“\",\"els\":\"⪕\",\"elsdot\":\"⪗\",\"Emacr\":\"Ä’\",\"emacr\":\"Ä“\",\"empty\":\"∅\",\"emptyset\":\"∅\",\"EmptySmallSquare\":\"â—»\",\"emptyv\":\"∅\",\"EmptyVerySmallSquare\":\"â–«\",\"emsp13\":\" \",\"emsp14\":\" \",\"emsp\":\" \",\"ENG\":\"ÅŠ\",\"eng\":\"Å‹\",\"ensp\":\" \",\"Eogon\":\"Ę\",\"eogon\":\"Ä™\",\"Eopf\":\"ð”¼\",\"eopf\":\"ð•–\",\"epar\":\"â‹•\",\"eparsl\":\"â§£\",\"eplus\":\"⩱\",\"epsi\":\"ε\",\"Epsilon\":\"Ε\",\"epsilon\":\"ε\",\"epsiv\":\"ϵ\",\"eqcirc\":\"≖\",\"eqcolon\":\"≕\",\"eqsim\":\"≂\",\"eqslantgtr\":\"⪖\",\"eqslantless\":\"⪕\",\"Equal\":\"⩵\",\"equals\":\"=\",\"EqualTilde\":\"≂\",\"equest\":\"≟\",\"Equilibrium\":\"⇌\",\"equiv\":\"≡\",\"equivDD\":\"⩸\",\"eqvparsl\":\"â§¥\",\"erarr\":\"⥱\",\"erDot\":\"≓\",\"escr\":\"ℯ\",\"Escr\":\"â„°\",\"esdot\":\"â‰\",\"Esim\":\"⩳\",\"esim\":\"≂\",\"Eta\":\"Η\",\"eta\":\"η\",\"ETH\":\"Ã\",\"eth\":\"ð\",\"Euml\":\"Ë\",\"euml\":\"ë\",\"euro\":\"€\",\"excl\":\"!\",\"exist\":\"∃\",\"Exists\":\"∃\",\"expectation\":\"â„°\",\"exponentiale\":\"â…‡\",\"ExponentialE\":\"â…‡\",\"fallingdotseq\":\"≒\",\"Fcy\":\"Ф\",\"fcy\":\"Ñ„\",\"female\":\"♀\",\"ffilig\":\"ffi\",\"fflig\":\"ff\",\"ffllig\":\"ffl\",\"Ffr\":\"ð”‰\",\"ffr\":\"ð”£\",\"filig\":\"ï¬\",\"FilledSmallSquare\":\"â—¼\",\"FilledVerySmallSquare\":\"â–ª\",\"fjlig\":\"fj\",\"flat\":\"â™\",\"fllig\":\"fl\",\"fltns\":\"â–±\",\"fnof\":\"Æ’\",\"Fopf\":\"ð”½\",\"fopf\":\"ð•—\",\"forall\":\"∀\",\"ForAll\":\"∀\",\"fork\":\"â‹”\",\"forkv\":\"â«™\",\"Fouriertrf\":\"ℱ\",\"fpartint\":\"â¨\",\"frac12\":\"½\",\"frac13\":\"â…“\",\"frac14\":\"¼\",\"frac15\":\"â…•\",\"frac16\":\"â…™\",\"frac18\":\"â…›\",\"frac23\":\"â…”\",\"frac25\":\"â…–\",\"frac34\":\"¾\",\"frac35\":\"â…—\",\"frac38\":\"â…œ\",\"frac45\":\"â…˜\",\"frac56\":\"â…š\",\"frac58\":\"â…\",\"frac78\":\"â…ž\",\"frasl\":\"â„\",\"frown\":\"⌢\",\"fscr\":\"ð’»\",\"Fscr\":\"ℱ\",\"gacute\":\"ǵ\",\"Gamma\":\"Γ\",\"gamma\":\"γ\",\"Gammad\":\"Ïœ\",\"gammad\":\"Ï\",\"gap\":\"⪆\",\"Gbreve\":\"Äž\",\"gbreve\":\"ÄŸ\",\"Gcedil\":\"Ä¢\",\"Gcirc\":\"Äœ\",\"gcirc\":\"Ä\",\"Gcy\":\"Г\",\"gcy\":\"г\",\"Gdot\":\"Ä \",\"gdot\":\"Ä¡\",\"ge\":\"≥\",\"gE\":\"≧\",\"gEl\":\"⪌\",\"gel\":\"â‹›\",\"geq\":\"≥\",\"geqq\":\"≧\",\"geqslant\":\"⩾\",\"gescc\":\"⪩\",\"ges\":\"⩾\",\"gesdot\":\"⪀\",\"gesdoto\":\"⪂\",\"gesdotol\":\"⪄\",\"gesl\":\"⋛︀\",\"gesles\":\"⪔\",\"Gfr\":\"ð”Š\",\"gfr\":\"ð”¤\",\"gg\":\"≫\",\"Gg\":\"â‹™\",\"ggg\":\"â‹™\",\"gimel\":\"â„·\",\"GJcy\":\"Ѓ\",\"gjcy\":\"Ñ“\",\"gla\":\"⪥\",\"gl\":\"≷\",\"glE\":\"⪒\",\"glj\":\"⪤\",\"gnap\":\"⪊\",\"gnapprox\":\"⪊\",\"gne\":\"⪈\",\"gnE\":\"≩\",\"gneq\":\"⪈\",\"gneqq\":\"≩\",\"gnsim\":\"â‹§\",\"Gopf\":\"ð”¾\",\"gopf\":\"ð•˜\",\"grave\":\"`\",\"GreaterEqual\":\"≥\",\"GreaterEqualLess\":\"â‹›\",\"GreaterFullEqual\":\"≧\",\"GreaterGreater\":\"⪢\",\"GreaterLess\":\"≷\",\"GreaterSlantEqual\":\"⩾\",\"GreaterTilde\":\"≳\",\"Gscr\":\"ð’¢\",\"gscr\":\"ℊ\",\"gsim\":\"≳\",\"gsime\":\"⪎\",\"gsiml\":\"âª\",\"gtcc\":\"⪧\",\"gtcir\":\"⩺\",\"gt\":\">\",\"GT\":\">\",\"Gt\":\"≫\",\"gtdot\":\"â‹—\",\"gtlPar\":\"⦕\",\"gtquest\":\"⩼\",\"gtrapprox\":\"⪆\",\"gtrarr\":\"⥸\",\"gtrdot\":\"â‹—\",\"gtreqless\":\"â‹›\",\"gtreqqless\":\"⪌\",\"gtrless\":\"≷\",\"gtrsim\":\"≳\",\"gvertneqq\":\"≩︀\",\"gvnE\":\"≩︀\",\"Hacek\":\"ˇ\",\"hairsp\":\" \",\"half\":\"½\",\"hamilt\":\"â„‹\",\"HARDcy\":\"Ъ\",\"hardcy\":\"ÑŠ\",\"harrcir\":\"⥈\",\"harr\":\"↔\",\"hArr\":\"⇔\",\"harrw\":\"â†\",\"Hat\":\"^\",\"hbar\":\"â„\",\"Hcirc\":\"Ĥ\",\"hcirc\":\"Ä¥\",\"hearts\":\"♥\",\"heartsuit\":\"♥\",\"hellip\":\"…\",\"hercon\":\"⊹\",\"hfr\":\"ð”¥\",\"Hfr\":\"ℌ\",\"HilbertSpace\":\"â„‹\",\"hksearow\":\"⤥\",\"hkswarow\":\"⤦\",\"hoarr\":\"⇿\",\"homtht\":\"∻\",\"hookleftarrow\":\"↩\",\"hookrightarrow\":\"↪\",\"hopf\":\"ð•™\",\"Hopf\":\"â„\",\"horbar\":\"―\",\"HorizontalLine\":\"─\",\"hscr\":\"ð’½\",\"Hscr\":\"â„‹\",\"hslash\":\"â„\",\"Hstrok\":\"Ħ\",\"hstrok\":\"ħ\",\"HumpDownHump\":\"≎\",\"HumpEqual\":\"â‰\",\"hybull\":\"âƒ\",\"hyphen\":\"â€\",\"Iacute\":\"Ã\",\"iacute\":\"Ã\",\"ic\":\"â£\",\"Icirc\":\"ÃŽ\",\"icirc\":\"î\",\"Icy\":\"И\",\"icy\":\"и\",\"Idot\":\"İ\",\"IEcy\":\"Е\",\"iecy\":\"е\",\"iexcl\":\"¡\",\"iff\":\"⇔\",\"ifr\":\"ð”¦\",\"Ifr\":\"â„‘\",\"Igrave\":\"ÃŒ\",\"igrave\":\"ì\",\"ii\":\"â…ˆ\",\"iiiint\":\"⨌\",\"iiint\":\"âˆ\",\"iinfin\":\"â§œ\",\"iiota\":\"â„©\",\"IJlig\":\"IJ\",\"ijlig\":\"ij\",\"Imacr\":\"Ī\",\"imacr\":\"Ä«\",\"image\":\"â„‘\",\"ImaginaryI\":\"â…ˆ\",\"imagline\":\"â„\",\"imagpart\":\"â„‘\",\"imath\":\"ı\",\"Im\":\"â„‘\",\"imof\":\"⊷\",\"imped\":\"Ƶ\",\"Implies\":\"⇒\",\"incare\":\"â„…\",\"in\":\"∈\",\"infin\":\"∞\",\"infintie\":\"â§\",\"inodot\":\"ı\",\"intcal\":\"⊺\",\"int\":\"∫\",\"Int\":\"∬\",\"integers\":\"ℤ\",\"Integral\":\"∫\",\"intercal\":\"⊺\",\"Intersection\":\"â‹‚\",\"intlarhk\":\"⨗\",\"intprod\":\"⨼\",\"InvisibleComma\":\"â£\",\"InvisibleTimes\":\"â¢\",\"IOcy\":\"Ð\",\"iocy\":\"Ñ‘\",\"Iogon\":\"Ä®\",\"iogon\":\"į\",\"Iopf\":\"ð•€\",\"iopf\":\"ð•š\",\"Iota\":\"Ι\",\"iota\":\"ι\",\"iprod\":\"⨼\",\"iquest\":\"¿\",\"iscr\":\"ð’¾\",\"Iscr\":\"â„\",\"isin\":\"∈\",\"isindot\":\"⋵\",\"isinE\":\"⋹\",\"isins\":\"â‹´\",\"isinsv\":\"⋳\",\"isinv\":\"∈\",\"it\":\"â¢\",\"Itilde\":\"Ĩ\",\"itilde\":\"Ä©\",\"Iukcy\":\"І\",\"iukcy\":\"Ñ–\",\"Iuml\":\"Ã\",\"iuml\":\"ï\",\"Jcirc\":\"Ä´\",\"jcirc\":\"ĵ\",\"Jcy\":\"Й\",\"jcy\":\"й\",\"Jfr\":\"ð”\",\"jfr\":\"ð”§\",\"jmath\":\"È·\",\"Jopf\":\"ð•\",\"jopf\":\"ð•›\",\"Jscr\":\"ð’¥\",\"jscr\":\"ð’¿\",\"Jsercy\":\"Ј\",\"jsercy\":\"ј\",\"Jukcy\":\"Є\",\"jukcy\":\"Ñ”\",\"Kappa\":\"Κ\",\"kappa\":\"κ\",\"kappav\":\"ϰ\",\"Kcedil\":\"Ķ\",\"kcedil\":\"Ä·\",\"Kcy\":\"К\",\"kcy\":\"к\",\"Kfr\":\"ð”Ž\",\"kfr\":\"ð”¨\",\"kgreen\":\"ĸ\",\"KHcy\":\"Ð¥\",\"khcy\":\"Ñ…\",\"KJcy\":\"ÐŒ\",\"kjcy\":\"Ñœ\",\"Kopf\":\"ð•‚\",\"kopf\":\"ð•œ\",\"Kscr\":\"ð’¦\",\"kscr\":\"ð“€\",\"lAarr\":\"⇚\",\"Lacute\":\"Ĺ\",\"lacute\":\"ĺ\",\"laemptyv\":\"⦴\",\"lagran\":\"â„’\",\"Lambda\":\"Λ\",\"lambda\":\"λ\",\"lang\":\"⟨\",\"Lang\":\"⟪\",\"langd\":\"⦑\",\"langle\":\"⟨\",\"lap\":\"⪅\",\"Laplacetrf\":\"â„’\",\"laquo\":\"«\",\"larrb\":\"⇤\",\"larrbfs\":\"⤟\",\"larr\":\"â†\",\"Larr\":\"↞\",\"lArr\":\"â‡\",\"larrfs\":\"â¤\",\"larrhk\":\"↩\",\"larrlp\":\"↫\",\"larrpl\":\"⤹\",\"larrsim\":\"⥳\",\"larrtl\":\"↢\",\"latail\":\"⤙\",\"lAtail\":\"⤛\",\"lat\":\"⪫\",\"late\":\"âª\",\"lates\":\"âªï¸€\",\"lbarr\":\"⤌\",\"lBarr\":\"⤎\",\"lbbrk\":\"â²\",\"lbrace\":\"{\",\"lbrack\":\"[\",\"lbrke\":\"⦋\",\"lbrksld\":\"â¦\",\"lbrkslu\":\"â¦\",\"Lcaron\":\"Ľ\",\"lcaron\":\"ľ\",\"Lcedil\":\"Ä»\",\"lcedil\":\"ļ\",\"lceil\":\"⌈\",\"lcub\":\"{\",\"Lcy\":\"Л\",\"lcy\":\"л\",\"ldca\":\"⤶\",\"ldquo\":\"“\",\"ldquor\":\"„\",\"ldrdhar\":\"⥧\",\"ldrushar\":\"⥋\",\"ldsh\":\"↲\",\"le\":\"≤\",\"lE\":\"≦\",\"LeftAngleBracket\":\"⟨\",\"LeftArrowBar\":\"⇤\",\"leftarrow\":\"â†\",\"LeftArrow\":\"â†\",\"Leftarrow\":\"â‡\",\"LeftArrowRightArrow\":\"⇆\",\"leftarrowtail\":\"↢\",\"LeftCeiling\":\"⌈\",\"LeftDoubleBracket\":\"⟦\",\"LeftDownTeeVector\":\"⥡\",\"LeftDownVectorBar\":\"⥙\",\"LeftDownVector\":\"⇃\",\"LeftFloor\":\"⌊\",\"leftharpoondown\":\"↽\",\"leftharpoonup\":\"↼\",\"leftleftarrows\":\"⇇\",\"leftrightarrow\":\"↔\",\"LeftRightArrow\":\"↔\",\"Leftrightarrow\":\"⇔\",\"leftrightarrows\":\"⇆\",\"leftrightharpoons\":\"⇋\",\"leftrightsquigarrow\":\"â†\",\"LeftRightVector\":\"⥎\",\"LeftTeeArrow\":\"↤\",\"LeftTee\":\"⊣\",\"LeftTeeVector\":\"⥚\",\"leftthreetimes\":\"â‹‹\",\"LeftTriangleBar\":\"â§\",\"LeftTriangle\":\"⊲\",\"LeftTriangleEqual\":\"⊴\",\"LeftUpDownVector\":\"⥑\",\"LeftUpTeeVector\":\"⥠\",\"LeftUpVectorBar\":\"⥘\",\"LeftUpVector\":\"↿\",\"LeftVectorBar\":\"⥒\",\"LeftVector\":\"↼\",\"lEg\":\"⪋\",\"leg\":\"⋚\",\"leq\":\"≤\",\"leqq\":\"≦\",\"leqslant\":\"⩽\",\"lescc\":\"⪨\",\"les\":\"⩽\",\"lesdot\":\"â©¿\",\"lesdoto\":\"âª\",\"lesdotor\":\"⪃\",\"lesg\":\"⋚︀\",\"lesges\":\"⪓\",\"lessapprox\":\"⪅\",\"lessdot\":\"â‹–\",\"lesseqgtr\":\"⋚\",\"lesseqqgtr\":\"⪋\",\"LessEqualGreater\":\"⋚\",\"LessFullEqual\":\"≦\",\"LessGreater\":\"≶\",\"lessgtr\":\"≶\",\"LessLess\":\"⪡\",\"lesssim\":\"≲\",\"LessSlantEqual\":\"⩽\",\"LessTilde\":\"≲\",\"lfisht\":\"⥼\",\"lfloor\":\"⌊\",\"Lfr\":\"ð”\",\"lfr\":\"ð”©\",\"lg\":\"≶\",\"lgE\":\"⪑\",\"lHar\":\"⥢\",\"lhard\":\"↽\",\"lharu\":\"↼\",\"lharul\":\"⥪\",\"lhblk\":\"â–„\",\"LJcy\":\"Љ\",\"ljcy\":\"Ñ™\",\"llarr\":\"⇇\",\"ll\":\"≪\",\"Ll\":\"⋘\",\"llcorner\":\"⌞\",\"Lleftarrow\":\"⇚\",\"llhard\":\"⥫\",\"lltri\":\"â—º\",\"Lmidot\":\"Ä¿\",\"lmidot\":\"Å€\",\"lmoustache\":\"⎰\",\"lmoust\":\"⎰\",\"lnap\":\"⪉\",\"lnapprox\":\"⪉\",\"lne\":\"⪇\",\"lnE\":\"≨\",\"lneq\":\"⪇\",\"lneqq\":\"≨\",\"lnsim\":\"⋦\",\"loang\":\"⟬\",\"loarr\":\"⇽\",\"lobrk\":\"⟦\",\"longleftarrow\":\"⟵\",\"LongLeftArrow\":\"⟵\",\"Longleftarrow\":\"⟸\",\"longleftrightarrow\":\"⟷\",\"LongLeftRightArrow\":\"⟷\",\"Longleftrightarrow\":\"⟺\",\"longmapsto\":\"⟼\",\"longrightarrow\":\"⟶\",\"LongRightArrow\":\"⟶\",\"Longrightarrow\":\"⟹\",\"looparrowleft\":\"↫\",\"looparrowright\":\"↬\",\"lopar\":\"⦅\",\"Lopf\":\"ð•ƒ\",\"lopf\":\"ð•\",\"loplus\":\"â¨\",\"lotimes\":\"⨴\",\"lowast\":\"∗\",\"lowbar\":\"_\",\"LowerLeftArrow\":\"↙\",\"LowerRightArrow\":\"↘\",\"loz\":\"â—Š\",\"lozenge\":\"â—Š\",\"lozf\":\"â§«\",\"lpar\":\"(\",\"lparlt\":\"⦓\",\"lrarr\":\"⇆\",\"lrcorner\":\"⌟\",\"lrhar\":\"⇋\",\"lrhard\":\"â¥\",\"lrm\":\"‎\",\"lrtri\":\"⊿\",\"lsaquo\":\"‹\",\"lscr\":\"ð“\",\"Lscr\":\"â„’\",\"lsh\":\"↰\",\"Lsh\":\"↰\",\"lsim\":\"≲\",\"lsime\":\"âª\",\"lsimg\":\"âª\",\"lsqb\":\"[\",\"lsquo\":\"‘\",\"lsquor\":\"‚\",\"Lstrok\":\"Å\",\"lstrok\":\"Å‚\",\"ltcc\":\"⪦\",\"ltcir\":\"⩹\",\"lt\":\"<\",\"LT\":\"<\",\"Lt\":\"≪\",\"ltdot\":\"â‹–\",\"lthree\":\"â‹‹\",\"ltimes\":\"⋉\",\"ltlarr\":\"⥶\",\"ltquest\":\"â©»\",\"ltri\":\"â—ƒ\",\"ltrie\":\"⊴\",\"ltrif\":\"â—‚\",\"ltrPar\":\"⦖\",\"lurdshar\":\"⥊\",\"luruhar\":\"⥦\",\"lvertneqq\":\"≨︀\",\"lvnE\":\"≨︀\",\"macr\":\"¯\",\"male\":\"♂\",\"malt\":\"✠\",\"maltese\":\"✠\",\"Map\":\"⤅\",\"map\":\"↦\",\"mapsto\":\"↦\",\"mapstodown\":\"↧\",\"mapstoleft\":\"↤\",\"mapstoup\":\"↥\",\"marker\":\"â–®\",\"mcomma\":\"⨩\",\"Mcy\":\"М\",\"mcy\":\"м\",\"mdash\":\"—\",\"mDDot\":\"∺\",\"measuredangle\":\"∡\",\"MediumSpace\":\"âŸ\",\"Mellintrf\":\"ℳ\",\"Mfr\":\"ð”\",\"mfr\":\"ð”ª\",\"mho\":\"â„§\",\"micro\":\"µ\",\"midast\":\"*\",\"midcir\":\"â«°\",\"mid\":\"∣\",\"middot\":\"·\",\"minusb\":\"⊟\",\"minus\":\"−\",\"minusd\":\"∸\",\"minusdu\":\"⨪\",\"MinusPlus\":\"∓\",\"mlcp\":\"â«›\",\"mldr\":\"…\",\"mnplus\":\"∓\",\"models\":\"⊧\",\"Mopf\":\"ð•„\",\"mopf\":\"ð•ž\",\"mp\":\"∓\",\"mscr\":\"ð“‚\",\"Mscr\":\"ℳ\",\"mstpos\":\"∾\",\"Mu\":\"Μ\",\"mu\":\"μ\",\"multimap\":\"⊸\",\"mumap\":\"⊸\",\"nabla\":\"∇\",\"Nacute\":\"Ń\",\"nacute\":\"Å„\",\"nang\":\"∠⃒\",\"nap\":\"≉\",\"napE\":\"⩰̸\",\"napid\":\"≋̸\",\"napos\":\"ʼn\",\"napprox\":\"≉\",\"natural\":\"â™®\",\"naturals\":\"â„•\",\"natur\":\"â™®\",\"nbsp\":\" \",\"nbump\":\"≎̸\",\"nbumpe\":\"â‰Ì¸\",\"ncap\":\"⩃\",\"Ncaron\":\"Ň\",\"ncaron\":\"ň\",\"Ncedil\":\"Å…\",\"ncedil\":\"ņ\",\"ncong\":\"≇\",\"ncongdot\":\"â©Ì¸\",\"ncup\":\"â©‚\",\"Ncy\":\"Ð\",\"ncy\":\"н\",\"ndash\":\"–\",\"nearhk\":\"⤤\",\"nearr\":\"↗\",\"neArr\":\"⇗\",\"nearrow\":\"↗\",\"ne\":\"≠\",\"nedot\":\"â‰Ì¸\",\"NegativeMediumSpace\":\"​\",\"NegativeThickSpace\":\"​\",\"NegativeThinSpace\":\"​\",\"NegativeVeryThinSpace\":\"​\",\"nequiv\":\"≢\",\"nesear\":\"⤨\",\"nesim\":\"≂̸\",\"NestedGreaterGreater\":\"≫\",\"NestedLessLess\":\"≪\",\"NewLine\":\"\\n\",\"nexist\":\"∄\",\"nexists\":\"∄\",\"Nfr\":\"ð”‘\",\"nfr\":\"ð”«\",\"ngE\":\"≧̸\",\"nge\":\"≱\",\"ngeq\":\"≱\",\"ngeqq\":\"≧̸\",\"ngeqslant\":\"⩾̸\",\"nges\":\"⩾̸\",\"nGg\":\"⋙̸\",\"ngsim\":\"≵\",\"nGt\":\"≫⃒\",\"ngt\":\"≯\",\"ngtr\":\"≯\",\"nGtv\":\"≫̸\",\"nharr\":\"↮\",\"nhArr\":\"⇎\",\"nhpar\":\"⫲\",\"ni\":\"∋\",\"nis\":\"⋼\",\"nisd\":\"⋺\",\"niv\":\"∋\",\"NJcy\":\"Њ\",\"njcy\":\"Ñš\",\"nlarr\":\"↚\",\"nlArr\":\"â‡\",\"nldr\":\"‥\",\"nlE\":\"≦̸\",\"nle\":\"≰\",\"nleftarrow\":\"↚\",\"nLeftarrow\":\"â‡\",\"nleftrightarrow\":\"↮\",\"nLeftrightarrow\":\"⇎\",\"nleq\":\"≰\",\"nleqq\":\"≦̸\",\"nleqslant\":\"⩽̸\",\"nles\":\"⩽̸\",\"nless\":\"≮\",\"nLl\":\"⋘̸\",\"nlsim\":\"≴\",\"nLt\":\"≪⃒\",\"nlt\":\"≮\",\"nltri\":\"⋪\",\"nltrie\":\"⋬\",\"nLtv\":\"≪̸\",\"nmid\":\"∤\",\"NoBreak\":\"â \",\"NonBreakingSpace\":\" \",\"nopf\":\"ð•Ÿ\",\"Nopf\":\"â„•\",\"Not\":\"⫬\",\"not\":\"¬\",\"NotCongruent\":\"≢\",\"NotCupCap\":\"â‰\",\"NotDoubleVerticalBar\":\"∦\",\"NotElement\":\"∉\",\"NotEqual\":\"≠\",\"NotEqualTilde\":\"≂̸\",\"NotExists\":\"∄\",\"NotGreater\":\"≯\",\"NotGreaterEqual\":\"≱\",\"NotGreaterFullEqual\":\"≧̸\",\"NotGreaterGreater\":\"≫̸\",\"NotGreaterLess\":\"≹\",\"NotGreaterSlantEqual\":\"⩾̸\",\"NotGreaterTilde\":\"≵\",\"NotHumpDownHump\":\"≎̸\",\"NotHumpEqual\":\"â‰Ì¸\",\"notin\":\"∉\",\"notindot\":\"⋵̸\",\"notinE\":\"⋹̸\",\"notinva\":\"∉\",\"notinvb\":\"â‹·\",\"notinvc\":\"â‹¶\",\"NotLeftTriangleBar\":\"â§Ì¸\",\"NotLeftTriangle\":\"⋪\",\"NotLeftTriangleEqual\":\"⋬\",\"NotLess\":\"≮\",\"NotLessEqual\":\"≰\",\"NotLessGreater\":\"≸\",\"NotLessLess\":\"≪̸\",\"NotLessSlantEqual\":\"⩽̸\",\"NotLessTilde\":\"≴\",\"NotNestedGreaterGreater\":\"⪢̸\",\"NotNestedLessLess\":\"⪡̸\",\"notni\":\"∌\",\"notniva\":\"∌\",\"notnivb\":\"⋾\",\"notnivc\":\"⋽\",\"NotPrecedes\":\"⊀\",\"NotPrecedesEqual\":\"⪯̸\",\"NotPrecedesSlantEqual\":\"â‹ \",\"NotReverseElement\":\"∌\",\"NotRightTriangleBar\":\"â§Ì¸\",\"NotRightTriangle\":\"â‹«\",\"NotRightTriangleEqual\":\"â‹\",\"NotSquareSubset\":\"âŠÌ¸\",\"NotSquareSubsetEqual\":\"â‹¢\",\"NotSquareSuperset\":\"âŠÌ¸\",\"NotSquareSupersetEqual\":\"â‹£\",\"NotSubset\":\"⊂⃒\",\"NotSubsetEqual\":\"⊈\",\"NotSucceeds\":\"âŠ\",\"NotSucceedsEqual\":\"⪰̸\",\"NotSucceedsSlantEqual\":\"â‹¡\",\"NotSucceedsTilde\":\"≿̸\",\"NotSuperset\":\"⊃⃒\",\"NotSupersetEqual\":\"⊉\",\"NotTilde\":\"â‰\",\"NotTildeEqual\":\"≄\",\"NotTildeFullEqual\":\"≇\",\"NotTildeTilde\":\"≉\",\"NotVerticalBar\":\"∤\",\"nparallel\":\"∦\",\"npar\":\"∦\",\"nparsl\":\"⫽⃥\",\"npart\":\"∂̸\",\"npolint\":\"⨔\",\"npr\":\"⊀\",\"nprcue\":\"â‹ \",\"nprec\":\"⊀\",\"npreceq\":\"⪯̸\",\"npre\":\"⪯̸\",\"nrarrc\":\"⤳̸\",\"nrarr\":\"↛\",\"nrArr\":\"â‡\",\"nrarrw\":\"â†Ì¸\",\"nrightarrow\":\"↛\",\"nRightarrow\":\"â‡\",\"nrtri\":\"â‹«\",\"nrtrie\":\"â‹\",\"nsc\":\"âŠ\",\"nsccue\":\"â‹¡\",\"nsce\":\"⪰̸\",\"Nscr\":\"ð’©\",\"nscr\":\"ð“ƒ\",\"nshortmid\":\"∤\",\"nshortparallel\":\"∦\",\"nsim\":\"â‰\",\"nsime\":\"≄\",\"nsimeq\":\"≄\",\"nsmid\":\"∤\",\"nspar\":\"∦\",\"nsqsube\":\"â‹¢\",\"nsqsupe\":\"â‹£\",\"nsub\":\"⊄\",\"nsubE\":\"⫅̸\",\"nsube\":\"⊈\",\"nsubset\":\"⊂⃒\",\"nsubseteq\":\"⊈\",\"nsubseteqq\":\"⫅̸\",\"nsucc\":\"âŠ\",\"nsucceq\":\"⪰̸\",\"nsup\":\"⊅\",\"nsupE\":\"⫆̸\",\"nsupe\":\"⊉\",\"nsupset\":\"⊃⃒\",\"nsupseteq\":\"⊉\",\"nsupseteqq\":\"⫆̸\",\"ntgl\":\"≹\",\"Ntilde\":\"Ñ\",\"ntilde\":\"ñ\",\"ntlg\":\"≸\",\"ntriangleleft\":\"⋪\",\"ntrianglelefteq\":\"⋬\",\"ntriangleright\":\"â‹«\",\"ntrianglerighteq\":\"â‹\",\"Nu\":\"Î\",\"nu\":\"ν\",\"num\":\"#\",\"numero\":\"â„–\",\"numsp\":\" \",\"nvap\":\"â‰âƒ’\",\"nvdash\":\"⊬\",\"nvDash\":\"âŠ\",\"nVdash\":\"⊮\",\"nVDash\":\"⊯\",\"nvge\":\"≥⃒\",\"nvgt\":\">⃒\",\"nvHarr\":\"⤄\",\"nvinfin\":\"â§ž\",\"nvlArr\":\"⤂\",\"nvle\":\"≤⃒\",\"nvlt\":\"<⃒\",\"nvltrie\":\"⊴⃒\",\"nvrArr\":\"⤃\",\"nvrtrie\":\"⊵⃒\",\"nvsim\":\"∼⃒\",\"nwarhk\":\"⤣\",\"nwarr\":\"↖\",\"nwArr\":\"⇖\",\"nwarrow\":\"↖\",\"nwnear\":\"⤧\",\"Oacute\":\"Ó\",\"oacute\":\"ó\",\"oast\":\"⊛\",\"Ocirc\":\"Ô\",\"ocirc\":\"ô\",\"ocir\":\"⊚\",\"Ocy\":\"О\",\"ocy\":\"о\",\"odash\":\"âŠ\",\"Odblac\":\"Å\",\"odblac\":\"Å‘\",\"odiv\":\"⨸\",\"odot\":\"⊙\",\"odsold\":\"⦼\",\"OElig\":\"Å’\",\"oelig\":\"Å“\",\"ofcir\":\"⦿\",\"Ofr\":\"ð”’\",\"ofr\":\"ð”¬\",\"ogon\":\"Ë›\",\"Ograve\":\"Ã’\",\"ograve\":\"ò\",\"ogt\":\"â§\",\"ohbar\":\"⦵\",\"ohm\":\"Ω\",\"oint\":\"∮\",\"olarr\":\"↺\",\"olcir\":\"⦾\",\"olcross\":\"⦻\",\"oline\":\"‾\",\"olt\":\"â§€\",\"Omacr\":\"ÅŒ\",\"omacr\":\"Å\",\"Omega\":\"Ω\",\"omega\":\"ω\",\"Omicron\":\"Ο\",\"omicron\":\"ο\",\"omid\":\"⦶\",\"ominus\":\"⊖\",\"Oopf\":\"ð•†\",\"oopf\":\"ð• \",\"opar\":\"⦷\",\"OpenCurlyDoubleQuote\":\"“\",\"OpenCurlyQuote\":\"‘\",\"operp\":\"⦹\",\"oplus\":\"⊕\",\"orarr\":\"↻\",\"Or\":\"â©”\",\"or\":\"∨\",\"ord\":\"â©\",\"order\":\"â„´\",\"orderof\":\"â„´\",\"ordf\":\"ª\",\"ordm\":\"º\",\"origof\":\"⊶\",\"oror\":\"â©–\",\"orslope\":\"â©—\",\"orv\":\"â©›\",\"oS\":\"Ⓢ\",\"Oscr\":\"ð’ª\",\"oscr\":\"â„´\",\"Oslash\":\"Ø\",\"oslash\":\"ø\",\"osol\":\"⊘\",\"Otilde\":\"Õ\",\"otilde\":\"õ\",\"otimesas\":\"⨶\",\"Otimes\":\"⨷\",\"otimes\":\"⊗\",\"Ouml\":\"Ö\",\"ouml\":\"ö\",\"ovbar\":\"⌽\",\"OverBar\":\"‾\",\"OverBrace\":\"âž\",\"OverBracket\":\"⎴\",\"OverParenthesis\":\"âœ\",\"para\":\"¶\",\"parallel\":\"∥\",\"par\":\"∥\",\"parsim\":\"⫳\",\"parsl\":\"⫽\",\"part\":\"∂\",\"PartialD\":\"∂\",\"Pcy\":\"П\",\"pcy\":\"п\",\"percnt\":\"%\",\"period\":\".\",\"permil\":\"‰\",\"perp\":\"⊥\",\"pertenk\":\"‱\",\"Pfr\":\"ð”“\",\"pfr\":\"ð”\",\"Phi\":\"Φ\",\"phi\":\"φ\",\"phiv\":\"Ï•\",\"phmmat\":\"ℳ\",\"phone\":\"☎\",\"Pi\":\"Î \",\"pi\":\"Ï€\",\"pitchfork\":\"â‹”\",\"piv\":\"Ï–\",\"planck\":\"â„\",\"planckh\":\"ℎ\",\"plankv\":\"â„\",\"plusacir\":\"⨣\",\"plusb\":\"⊞\",\"pluscir\":\"⨢\",\"plus\":\"+\",\"plusdo\":\"∔\",\"plusdu\":\"⨥\",\"pluse\":\"⩲\",\"PlusMinus\":\"±\",\"plusmn\":\"±\",\"plussim\":\"⨦\",\"plustwo\":\"⨧\",\"pm\":\"±\",\"Poincareplane\":\"ℌ\",\"pointint\":\"⨕\",\"popf\":\"ð•¡\",\"Popf\":\"â„™\",\"pound\":\"£\",\"prap\":\"⪷\",\"Pr\":\"⪻\",\"pr\":\"≺\",\"prcue\":\"≼\",\"precapprox\":\"⪷\",\"prec\":\"≺\",\"preccurlyeq\":\"≼\",\"Precedes\":\"≺\",\"PrecedesEqual\":\"⪯\",\"PrecedesSlantEqual\":\"≼\",\"PrecedesTilde\":\"≾\",\"preceq\":\"⪯\",\"precnapprox\":\"⪹\",\"precneqq\":\"⪵\",\"precnsim\":\"⋨\",\"pre\":\"⪯\",\"prE\":\"⪳\",\"precsim\":\"≾\",\"prime\":\"′\",\"Prime\":\"″\",\"primes\":\"â„™\",\"prnap\":\"⪹\",\"prnE\":\"⪵\",\"prnsim\":\"⋨\",\"prod\":\"âˆ\",\"Product\":\"âˆ\",\"profalar\":\"⌮\",\"profline\":\"⌒\",\"profsurf\":\"⌓\",\"prop\":\"âˆ\",\"Proportional\":\"âˆ\",\"Proportion\":\"∷\",\"propto\":\"âˆ\",\"prsim\":\"≾\",\"prurel\":\"⊰\",\"Pscr\":\"ð’«\",\"pscr\":\"ð“…\",\"Psi\":\"Ψ\",\"psi\":\"ψ\",\"puncsp\":\" \",\"Qfr\":\"ð””\",\"qfr\":\"ð”®\",\"qint\":\"⨌\",\"qopf\":\"ð•¢\",\"Qopf\":\"ℚ\",\"qprime\":\"â—\",\"Qscr\":\"ð’¬\",\"qscr\":\"ð“†\",\"quaternions\":\"â„\",\"quatint\":\"⨖\",\"quest\":\"?\",\"questeq\":\"≟\",\"quot\":\"\\\"\",\"QUOT\":\"\\\"\",\"rAarr\":\"⇛\",\"race\":\"∽̱\",\"Racute\":\"Å”\",\"racute\":\"Å•\",\"radic\":\"√\",\"raemptyv\":\"⦳\",\"rang\":\"⟩\",\"Rang\":\"⟫\",\"rangd\":\"⦒\",\"range\":\"⦥\",\"rangle\":\"⟩\",\"raquo\":\"»\",\"rarrap\":\"⥵\",\"rarrb\":\"⇥\",\"rarrbfs\":\"⤠\",\"rarrc\":\"⤳\",\"rarr\":\"→\",\"Rarr\":\"↠\",\"rArr\":\"⇒\",\"rarrfs\":\"⤞\",\"rarrhk\":\"↪\",\"rarrlp\":\"↬\",\"rarrpl\":\"⥅\",\"rarrsim\":\"⥴\",\"Rarrtl\":\"⤖\",\"rarrtl\":\"↣\",\"rarrw\":\"â†\",\"ratail\":\"⤚\",\"rAtail\":\"⤜\",\"ratio\":\"∶\",\"rationals\":\"ℚ\",\"rbarr\":\"â¤\",\"rBarr\":\"â¤\",\"RBarr\":\"â¤\",\"rbbrk\":\"â³\",\"rbrace\":\"}\",\"rbrack\":\"]\",\"rbrke\":\"⦌\",\"rbrksld\":\"⦎\",\"rbrkslu\":\"â¦\",\"Rcaron\":\"Ř\",\"rcaron\":\"Å™\",\"Rcedil\":\"Å–\",\"rcedil\":\"Å—\",\"rceil\":\"⌉\",\"rcub\":\"}\",\"Rcy\":\"Ð \",\"rcy\":\"Ñ€\",\"rdca\":\"⤷\",\"rdldhar\":\"⥩\",\"rdquo\":\"â€\",\"rdquor\":\"â€\",\"rdsh\":\"↳\",\"real\":\"ℜ\",\"realine\":\"â„›\",\"realpart\":\"ℜ\",\"reals\":\"â„\",\"Re\":\"ℜ\",\"rect\":\"â–\",\"reg\":\"®\",\"REG\":\"®\",\"ReverseElement\":\"∋\",\"ReverseEquilibrium\":\"⇋\",\"ReverseUpEquilibrium\":\"⥯\",\"rfisht\":\"⥽\",\"rfloor\":\"⌋\",\"rfr\":\"ð”¯\",\"Rfr\":\"ℜ\",\"rHar\":\"⥤\",\"rhard\":\"â‡\",\"rharu\":\"⇀\",\"rharul\":\"⥬\",\"Rho\":\"Ρ\",\"rho\":\"Ï\",\"rhov\":\"ϱ\",\"RightAngleBracket\":\"⟩\",\"RightArrowBar\":\"⇥\",\"rightarrow\":\"→\",\"RightArrow\":\"→\",\"Rightarrow\":\"⇒\",\"RightArrowLeftArrow\":\"⇄\",\"rightarrowtail\":\"↣\",\"RightCeiling\":\"⌉\",\"RightDoubleBracket\":\"⟧\",\"RightDownTeeVector\":\"â¥\",\"RightDownVectorBar\":\"⥕\",\"RightDownVector\":\"⇂\",\"RightFloor\":\"⌋\",\"rightharpoondown\":\"â‡\",\"rightharpoonup\":\"⇀\",\"rightleftarrows\":\"⇄\",\"rightleftharpoons\":\"⇌\",\"rightrightarrows\":\"⇉\",\"rightsquigarrow\":\"â†\",\"RightTeeArrow\":\"↦\",\"RightTee\":\"⊢\",\"RightTeeVector\":\"⥛\",\"rightthreetimes\":\"⋌\",\"RightTriangleBar\":\"â§\",\"RightTriangle\":\"⊳\",\"RightTriangleEqual\":\"⊵\",\"RightUpDownVector\":\"â¥\",\"RightUpTeeVector\":\"⥜\",\"RightUpVectorBar\":\"⥔\",\"RightUpVector\":\"↾\",\"RightVectorBar\":\"⥓\",\"RightVector\":\"⇀\",\"ring\":\"Ëš\",\"risingdotseq\":\"≓\",\"rlarr\":\"⇄\",\"rlhar\":\"⇌\",\"rlm\":\"â€\",\"rmoustache\":\"⎱\",\"rmoust\":\"⎱\",\"rnmid\":\"â«®\",\"roang\":\"âŸ\",\"roarr\":\"⇾\",\"robrk\":\"⟧\",\"ropar\":\"⦆\",\"ropf\":\"ð•£\",\"Ropf\":\"â„\",\"roplus\":\"⨮\",\"rotimes\":\"⨵\",\"RoundImplies\":\"⥰\",\"rpar\":\")\",\"rpargt\":\"⦔\",\"rppolint\":\"⨒\",\"rrarr\":\"⇉\",\"Rrightarrow\":\"⇛\",\"rsaquo\":\"›\",\"rscr\":\"ð“‡\",\"Rscr\":\"â„›\",\"rsh\":\"↱\",\"Rsh\":\"↱\",\"rsqb\":\"]\",\"rsquo\":\"’\",\"rsquor\":\"’\",\"rthree\":\"⋌\",\"rtimes\":\"⋊\",\"rtri\":\"â–¹\",\"rtrie\":\"⊵\",\"rtrif\":\"â–¸\",\"rtriltri\":\"â§Ž\",\"RuleDelayed\":\"â§´\",\"ruluhar\":\"⥨\",\"rx\":\"℞\",\"Sacute\":\"Åš\",\"sacute\":\"Å›\",\"sbquo\":\"‚\",\"scap\":\"⪸\",\"Scaron\":\"Å \",\"scaron\":\"Å¡\",\"Sc\":\"⪼\",\"sc\":\"≻\",\"sccue\":\"≽\",\"sce\":\"⪰\",\"scE\":\"⪴\",\"Scedil\":\"Åž\",\"scedil\":\"ÅŸ\",\"Scirc\":\"Åœ\",\"scirc\":\"Å\",\"scnap\":\"⪺\",\"scnE\":\"⪶\",\"scnsim\":\"â‹©\",\"scpolint\":\"⨓\",\"scsim\":\"≿\",\"Scy\":\"С\",\"scy\":\"Ñ\",\"sdotb\":\"⊡\",\"sdot\":\"â‹…\",\"sdote\":\"⩦\",\"searhk\":\"⤥\",\"searr\":\"↘\",\"seArr\":\"⇘\",\"searrow\":\"↘\",\"sect\":\"§\",\"semi\":\";\",\"seswar\":\"⤩\",\"setminus\":\"∖\",\"setmn\":\"∖\",\"sext\":\"✶\",\"Sfr\":\"ð”–\",\"sfr\":\"ð”°\",\"sfrown\":\"⌢\",\"sharp\":\"♯\",\"SHCHcy\":\"Щ\",\"shchcy\":\"щ\",\"SHcy\":\"Ш\",\"shcy\":\"ш\",\"ShortDownArrow\":\"↓\",\"ShortLeftArrow\":\"â†\",\"shortmid\":\"∣\",\"shortparallel\":\"∥\",\"ShortRightArrow\":\"→\",\"ShortUpArrow\":\"↑\",\"shy\":\"Â\",\"Sigma\":\"Σ\",\"sigma\":\"σ\",\"sigmaf\":\"Ï‚\",\"sigmav\":\"Ï‚\",\"sim\":\"∼\",\"simdot\":\"⩪\",\"sime\":\"≃\",\"simeq\":\"≃\",\"simg\":\"⪞\",\"simgE\":\"⪠\",\"siml\":\"âª\",\"simlE\":\"⪟\",\"simne\":\"≆\",\"simplus\":\"⨤\",\"simrarr\":\"⥲\",\"slarr\":\"â†\",\"SmallCircle\":\"∘\",\"smallsetminus\":\"∖\",\"smashp\":\"⨳\",\"smeparsl\":\"⧤\",\"smid\":\"∣\",\"smile\":\"⌣\",\"smt\":\"⪪\",\"smte\":\"⪬\",\"smtes\":\"⪬︀\",\"SOFTcy\":\"Ь\",\"softcy\":\"ÑŒ\",\"solbar\":\"⌿\",\"solb\":\"â§„\",\"sol\":\"/\",\"Sopf\":\"ð•Š\",\"sopf\":\"ð•¤\",\"spades\":\"â™ \",\"spadesuit\":\"â™ \",\"spar\":\"∥\",\"sqcap\":\"⊓\",\"sqcaps\":\"⊓︀\",\"sqcup\":\"⊔\",\"sqcups\":\"⊔︀\",\"Sqrt\":\"√\",\"sqsub\":\"âŠ\",\"sqsube\":\"⊑\",\"sqsubset\":\"âŠ\",\"sqsubseteq\":\"⊑\",\"sqsup\":\"âŠ\",\"sqsupe\":\"⊒\",\"sqsupset\":\"âŠ\",\"sqsupseteq\":\"⊒\",\"square\":\"â–¡\",\"Square\":\"â–¡\",\"SquareIntersection\":\"⊓\",\"SquareSubset\":\"âŠ\",\"SquareSubsetEqual\":\"⊑\",\"SquareSuperset\":\"âŠ\",\"SquareSupersetEqual\":\"⊒\",\"SquareUnion\":\"⊔\",\"squarf\":\"â–ª\",\"squ\":\"â–¡\",\"squf\":\"â–ª\",\"srarr\":\"→\",\"Sscr\":\"ð’®\",\"sscr\":\"ð“ˆ\",\"ssetmn\":\"∖\",\"ssmile\":\"⌣\",\"sstarf\":\"⋆\",\"Star\":\"⋆\",\"star\":\"☆\",\"starf\":\"★\",\"straightepsilon\":\"ϵ\",\"straightphi\":\"Ï•\",\"strns\":\"¯\",\"sub\":\"⊂\",\"Sub\":\"â‹\",\"subdot\":\"⪽\",\"subE\":\"â«…\",\"sube\":\"⊆\",\"subedot\":\"⫃\",\"submult\":\"â«\",\"subnE\":\"â«‹\",\"subne\":\"⊊\",\"subplus\":\"⪿\",\"subrarr\":\"⥹\",\"subset\":\"⊂\",\"Subset\":\"â‹\",\"subseteq\":\"⊆\",\"subseteqq\":\"â«…\",\"SubsetEqual\":\"⊆\",\"subsetneq\":\"⊊\",\"subsetneqq\":\"â«‹\",\"subsim\":\"⫇\",\"subsub\":\"â«•\",\"subsup\":\"â«“\",\"succapprox\":\"⪸\",\"succ\":\"≻\",\"succcurlyeq\":\"≽\",\"Succeeds\":\"≻\",\"SucceedsEqual\":\"⪰\",\"SucceedsSlantEqual\":\"≽\",\"SucceedsTilde\":\"≿\",\"succeq\":\"⪰\",\"succnapprox\":\"⪺\",\"succneqq\":\"⪶\",\"succnsim\":\"â‹©\",\"succsim\":\"≿\",\"SuchThat\":\"∋\",\"sum\":\"∑\",\"Sum\":\"∑\",\"sung\":\"♪\",\"sup1\":\"¹\",\"sup2\":\"²\",\"sup3\":\"³\",\"sup\":\"⊃\",\"Sup\":\"â‹‘\",\"supdot\":\"⪾\",\"supdsub\":\"⫘\",\"supE\":\"⫆\",\"supe\":\"⊇\",\"supedot\":\"â«„\",\"Superset\":\"⊃\",\"SupersetEqual\":\"⊇\",\"suphsol\":\"⟉\",\"suphsub\":\"â«—\",\"suplarr\":\"⥻\",\"supmult\":\"â«‚\",\"supnE\":\"⫌\",\"supne\":\"⊋\",\"supplus\":\"â«€\",\"supset\":\"⊃\",\"Supset\":\"â‹‘\",\"supseteq\":\"⊇\",\"supseteqq\":\"⫆\",\"supsetneq\":\"⊋\",\"supsetneqq\":\"⫌\",\"supsim\":\"⫈\",\"supsub\":\"â«”\",\"supsup\":\"â«–\",\"swarhk\":\"⤦\",\"swarr\":\"↙\",\"swArr\":\"⇙\",\"swarrow\":\"↙\",\"swnwar\":\"⤪\",\"szlig\":\"ß\",\"Tab\":\"\\t\",\"target\":\"⌖\",\"Tau\":\"Τ\",\"tau\":\"Ï„\",\"tbrk\":\"⎴\",\"Tcaron\":\"Ť\",\"tcaron\":\"Å¥\",\"Tcedil\":\"Å¢\",\"tcedil\":\"Å£\",\"Tcy\":\"Т\",\"tcy\":\"Ñ‚\",\"tdot\":\"⃛\",\"telrec\":\"⌕\",\"Tfr\":\"ð”—\",\"tfr\":\"ð”±\",\"there4\":\"∴\",\"therefore\":\"∴\",\"Therefore\":\"∴\",\"Theta\":\"Θ\",\"theta\":\"θ\",\"thetasym\":\"Ï‘\",\"thetav\":\"Ï‘\",\"thickapprox\":\"≈\",\"thicksim\":\"∼\",\"ThickSpace\":\"âŸâ€Š\",\"ThinSpace\":\" \",\"thinsp\":\" \",\"thkap\":\"≈\",\"thksim\":\"∼\",\"THORN\":\"Þ\",\"thorn\":\"þ\",\"tilde\":\"Ëœ\",\"Tilde\":\"∼\",\"TildeEqual\":\"≃\",\"TildeFullEqual\":\"≅\",\"TildeTilde\":\"≈\",\"timesbar\":\"⨱\",\"timesb\":\"⊠\",\"times\":\"×\",\"timesd\":\"⨰\",\"tint\":\"âˆ\",\"toea\":\"⤨\",\"topbot\":\"⌶\",\"topcir\":\"⫱\",\"top\":\"⊤\",\"Topf\":\"ð•‹\",\"topf\":\"ð•¥\",\"topfork\":\"⫚\",\"tosa\":\"⤩\",\"tprime\":\"‴\",\"trade\":\"â„¢\",\"TRADE\":\"â„¢\",\"triangle\":\"â–µ\",\"triangledown\":\"â–¿\",\"triangleleft\":\"â—ƒ\",\"trianglelefteq\":\"⊴\",\"triangleq\":\"≜\",\"triangleright\":\"â–¹\",\"trianglerighteq\":\"⊵\",\"tridot\":\"â—¬\",\"trie\":\"≜\",\"triminus\":\"⨺\",\"TripleDot\":\"⃛\",\"triplus\":\"⨹\",\"trisb\":\"â§\",\"tritime\":\"⨻\",\"trpezium\":\"â¢\",\"Tscr\":\"ð’¯\",\"tscr\":\"ð“‰\",\"TScy\":\"Ц\",\"tscy\":\"ц\",\"TSHcy\":\"Ћ\",\"tshcy\":\"Ñ›\",\"Tstrok\":\"Ŧ\",\"tstrok\":\"ŧ\",\"twixt\":\"≬\",\"twoheadleftarrow\":\"↞\",\"twoheadrightarrow\":\"↠\",\"Uacute\":\"Ú\",\"uacute\":\"ú\",\"uarr\":\"↑\",\"Uarr\":\"↟\",\"uArr\":\"⇑\",\"Uarrocir\":\"⥉\",\"Ubrcy\":\"ÐŽ\",\"ubrcy\":\"Ñž\",\"Ubreve\":\"Ŭ\",\"ubreve\":\"Å\",\"Ucirc\":\"Û\",\"ucirc\":\"û\",\"Ucy\":\"У\",\"ucy\":\"у\",\"udarr\":\"⇅\",\"Udblac\":\"Ű\",\"udblac\":\"ű\",\"udhar\":\"⥮\",\"ufisht\":\"⥾\",\"Ufr\":\"ð”˜\",\"ufr\":\"ð”²\",\"Ugrave\":\"Ù\",\"ugrave\":\"ù\",\"uHar\":\"⥣\",\"uharl\":\"↿\",\"uharr\":\"↾\",\"uhblk\":\"â–€\",\"ulcorn\":\"⌜\",\"ulcorner\":\"⌜\",\"ulcrop\":\"âŒ\",\"ultri\":\"â—¸\",\"Umacr\":\"Ū\",\"umacr\":\"Å«\",\"uml\":\"¨\",\"UnderBar\":\"_\",\"UnderBrace\":\"âŸ\",\"UnderBracket\":\"⎵\",\"UnderParenthesis\":\"â\",\"Union\":\"⋃\",\"UnionPlus\":\"⊎\",\"Uogon\":\"Ų\",\"uogon\":\"ų\",\"Uopf\":\"ð•Œ\",\"uopf\":\"ð•¦\",\"UpArrowBar\":\"⤒\",\"uparrow\":\"↑\",\"UpArrow\":\"↑\",\"Uparrow\":\"⇑\",\"UpArrowDownArrow\":\"⇅\",\"updownarrow\":\"↕\",\"UpDownArrow\":\"↕\",\"Updownarrow\":\"⇕\",\"UpEquilibrium\":\"⥮\",\"upharpoonleft\":\"↿\",\"upharpoonright\":\"↾\",\"uplus\":\"⊎\",\"UpperLeftArrow\":\"↖\",\"UpperRightArrow\":\"↗\",\"upsi\":\"Ï…\",\"Upsi\":\"Ï’\",\"upsih\":\"Ï’\",\"Upsilon\":\"Î¥\",\"upsilon\":\"Ï…\",\"UpTeeArrow\":\"↥\",\"UpTee\":\"⊥\",\"upuparrows\":\"⇈\",\"urcorn\":\"âŒ\",\"urcorner\":\"âŒ\",\"urcrop\":\"⌎\",\"Uring\":\"Å®\",\"uring\":\"ů\",\"urtri\":\"â—¹\",\"Uscr\":\"ð’°\",\"uscr\":\"ð“Š\",\"utdot\":\"â‹°\",\"Utilde\":\"Ũ\",\"utilde\":\"Å©\",\"utri\":\"â–µ\",\"utrif\":\"â–´\",\"uuarr\":\"⇈\",\"Uuml\":\"Ü\",\"uuml\":\"ü\",\"uwangle\":\"⦧\",\"vangrt\":\"⦜\",\"varepsilon\":\"ϵ\",\"varkappa\":\"ϰ\",\"varnothing\":\"∅\",\"varphi\":\"Ï•\",\"varpi\":\"Ï–\",\"varpropto\":\"âˆ\",\"varr\":\"↕\",\"vArr\":\"⇕\",\"varrho\":\"ϱ\",\"varsigma\":\"Ï‚\",\"varsubsetneq\":\"⊊︀\",\"varsubsetneqq\":\"⫋︀\",\"varsupsetneq\":\"⊋︀\",\"varsupsetneqq\":\"⫌︀\",\"vartheta\":\"Ï‘\",\"vartriangleleft\":\"⊲\",\"vartriangleright\":\"⊳\",\"vBar\":\"⫨\",\"Vbar\":\"â««\",\"vBarv\":\"â«©\",\"Vcy\":\"Ð’\",\"vcy\":\"в\",\"vdash\":\"⊢\",\"vDash\":\"⊨\",\"Vdash\":\"⊩\",\"VDash\":\"⊫\",\"Vdashl\":\"⫦\",\"veebar\":\"⊻\",\"vee\":\"∨\",\"Vee\":\"â‹\",\"veeeq\":\"≚\",\"vellip\":\"â‹®\",\"verbar\":\"|\",\"Verbar\":\"‖\",\"vert\":\"|\",\"Vert\":\"‖\",\"VerticalBar\":\"∣\",\"VerticalLine\":\"|\",\"VerticalSeparator\":\"â˜\",\"VerticalTilde\":\"≀\",\"VeryThinSpace\":\" \",\"Vfr\":\"ð”™\",\"vfr\":\"ð”³\",\"vltri\":\"⊲\",\"vnsub\":\"⊂⃒\",\"vnsup\":\"⊃⃒\",\"Vopf\":\"ð•\",\"vopf\":\"ð•§\",\"vprop\":\"âˆ\",\"vrtri\":\"⊳\",\"Vscr\":\"ð’±\",\"vscr\":\"ð“‹\",\"vsubnE\":\"⫋︀\",\"vsubne\":\"⊊︀\",\"vsupnE\":\"⫌︀\",\"vsupne\":\"⊋︀\",\"Vvdash\":\"⊪\",\"vzigzag\":\"⦚\",\"Wcirc\":\"Å´\",\"wcirc\":\"ŵ\",\"wedbar\":\"⩟\",\"wedge\":\"∧\",\"Wedge\":\"â‹€\",\"wedgeq\":\"≙\",\"weierp\":\"℘\",\"Wfr\":\"ð”š\",\"wfr\":\"ð”´\",\"Wopf\":\"ð•Ž\",\"wopf\":\"ð•¨\",\"wp\":\"℘\",\"wr\":\"≀\",\"wreath\":\"≀\",\"Wscr\":\"ð’²\",\"wscr\":\"ð“Œ\",\"xcap\":\"â‹‚\",\"xcirc\":\"â—¯\",\"xcup\":\"⋃\",\"xdtri\":\"â–½\",\"Xfr\":\"ð”›\",\"xfr\":\"ð”µ\",\"xharr\":\"⟷\",\"xhArr\":\"⟺\",\"Xi\":\"Ξ\",\"xi\":\"ξ\",\"xlarr\":\"⟵\",\"xlArr\":\"⟸\",\"xmap\":\"⟼\",\"xnis\":\"â‹»\",\"xodot\":\"⨀\",\"Xopf\":\"ð•\",\"xopf\":\"ð•©\",\"xoplus\":\"â¨\",\"xotime\":\"⨂\",\"xrarr\":\"⟶\",\"xrArr\":\"⟹\",\"Xscr\":\"ð’³\",\"xscr\":\"ð“\",\"xsqcup\":\"⨆\",\"xuplus\":\"⨄\",\"xutri\":\"â–³\",\"xvee\":\"â‹\",\"xwedge\":\"â‹€\",\"Yacute\":\"Ã\",\"yacute\":\"ý\",\"YAcy\":\"Я\",\"yacy\":\"Ñ\",\"Ycirc\":\"Ŷ\",\"ycirc\":\"Å·\",\"Ycy\":\"Ы\",\"ycy\":\"Ñ‹\",\"yen\":\"Â¥\",\"Yfr\":\"ð”œ\",\"yfr\":\"ð”¶\",\"YIcy\":\"Ї\",\"yicy\":\"Ñ—\",\"Yopf\":\"ð•\",\"yopf\":\"ð•ª\",\"Yscr\":\"ð’´\",\"yscr\":\"ð“Ž\",\"YUcy\":\"Ю\",\"yucy\":\"ÑŽ\",\"yuml\":\"ÿ\",\"Yuml\":\"Ÿ\",\"Zacute\":\"Ź\",\"zacute\":\"ź\",\"Zcaron\":\"Ž\",\"zcaron\":\"ž\",\"Zcy\":\"З\",\"zcy\":\"з\",\"Zdot\":\"Å»\",\"zdot\":\"ż\",\"zeetrf\":\"ℨ\",\"ZeroWidthSpace\":\"​\",\"Zeta\":\"Ζ\",\"zeta\":\"ζ\",\"zfr\":\"ð”·\",\"Zfr\":\"ℨ\",\"ZHcy\":\"Ж\",\"zhcy\":\"ж\",\"zigrarr\":\"â‡\",\"zopf\":\"ð•«\",\"Zopf\":\"ℤ\",\"Zscr\":\"ð’µ\",\"zscr\":\"ð“\",\"zwj\":\"â€\",\"zwnj\":\"‌\"}"); /***/ }), /* 358 */ +/***/ (function(module) { + +module.exports = JSON.parse("{\"Aacute\":\"Ã\",\"aacute\":\"á\",\"Acirc\":\"Â\",\"acirc\":\"â\",\"acute\":\"´\",\"AElig\":\"Æ\",\"aelig\":\"æ\",\"Agrave\":\"À\",\"agrave\":\"à \",\"amp\":\"&\",\"AMP\":\"&\",\"Aring\":\"Ã…\",\"aring\":\"Ã¥\",\"Atilde\":\"Ã\",\"atilde\":\"ã\",\"Auml\":\"Ä\",\"auml\":\"ä\",\"brvbar\":\"¦\",\"Ccedil\":\"Ç\",\"ccedil\":\"ç\",\"cedil\":\"¸\",\"cent\":\"¢\",\"copy\":\"©\",\"COPY\":\"©\",\"curren\":\"¤\",\"deg\":\"°\",\"divide\":\"÷\",\"Eacute\":\"É\",\"eacute\":\"é\",\"Ecirc\":\"Ê\",\"ecirc\":\"ê\",\"Egrave\":\"È\",\"egrave\":\"è\",\"ETH\":\"Ã\",\"eth\":\"ð\",\"Euml\":\"Ë\",\"euml\":\"ë\",\"frac12\":\"½\",\"frac14\":\"¼\",\"frac34\":\"¾\",\"gt\":\">\",\"GT\":\">\",\"Iacute\":\"Ã\",\"iacute\":\"Ã\",\"Icirc\":\"ÃŽ\",\"icirc\":\"î\",\"iexcl\":\"¡\",\"Igrave\":\"ÃŒ\",\"igrave\":\"ì\",\"iquest\":\"¿\",\"Iuml\":\"Ã\",\"iuml\":\"ï\",\"laquo\":\"«\",\"lt\":\"<\",\"LT\":\"<\",\"macr\":\"¯\",\"micro\":\"µ\",\"middot\":\"·\",\"nbsp\":\" \",\"not\":\"¬\",\"Ntilde\":\"Ñ\",\"ntilde\":\"ñ\",\"Oacute\":\"Ó\",\"oacute\":\"ó\",\"Ocirc\":\"Ô\",\"ocirc\":\"ô\",\"Ograve\":\"Ã’\",\"ograve\":\"ò\",\"ordf\":\"ª\",\"ordm\":\"º\",\"Oslash\":\"Ø\",\"oslash\":\"ø\",\"Otilde\":\"Õ\",\"otilde\":\"õ\",\"Ouml\":\"Ö\",\"ouml\":\"ö\",\"para\":\"¶\",\"plusmn\":\"±\",\"pound\":\"£\",\"quot\":\"\\\"\",\"QUOT\":\"\\\"\",\"raquo\":\"»\",\"reg\":\"®\",\"REG\":\"®\",\"sect\":\"§\",\"shy\":\"Â\",\"sup1\":\"¹\",\"sup2\":\"²\",\"sup3\":\"³\",\"szlig\":\"ß\",\"THORN\":\"Þ\",\"thorn\":\"þ\",\"times\":\"×\",\"Uacute\":\"Ú\",\"uacute\":\"ú\",\"Ucirc\":\"Û\",\"ucirc\":\"û\",\"Ugrave\":\"Ù\",\"ugrave\":\"ù\",\"uml\":\"¨\",\"Uuml\":\"Ü\",\"uuml\":\"ü\",\"Yacute\":\"Ã\",\"yacute\":\"ý\",\"yen\":\"Â¥\",\"yuml\":\"ÿ\"}"); + +/***/ }), +/* 359 */ +/***/ (function(module) { + +module.exports = JSON.parse("{\"amp\":\"&\",\"apos\":\"'\",\"gt\":\">\",\"lt\":\"<\",\"quot\":\"\\\"\"}"); + +/***/ }), +/* 360 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __exportStar = (this && this.__exportStar) || function(m, exports) { + for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); -exports.render = exports.parse = void 0; -var htmlparser2_1 = __webpack_require__(325); -Object.defineProperty(exports, "parse", { enumerable: true, get: function () { return htmlparser2_1.parseDocument; } }); -var dom_serializer_1 = __webpack_require__(359); -Object.defineProperty(exports, "render", { enumerable: true, get: function () { return __importDefault(dom_serializer_1).default; } }); +exports.DomHandler = void 0; +var node_1 = __webpack_require__(361); +__exportStar(__webpack_require__(361), exports); +var reWhitespace = /\s+/g; +// Default options +var defaultOpts = { + normalizeWhitespace: false, + withStartIndices: false, + withEndIndices: false, +}; +var DomHandler = /** @class */ (function () { + /** + * @param callback Called once parsing has completed. + * @param options Settings for the handler. + * @param elementCB Callback whenever a tag is closed. + */ + function DomHandler(callback, options, elementCB) { + /** The elements of the DOM */ + this.dom = []; + /** The root element for the DOM */ + this.root = new node_1.Document(this.dom); + /** Indicated whether parsing has been completed. */ + this.done = false; + /** Stack of open tags. */ + this.tagStack = [this.root]; + /** A data node that is still being written to. */ + this.lastNode = null; + /** Reference to the parser instance. Used for location information. */ + this.parser = null; + // Make it possible to skip arguments, for backwards-compatibility + if (typeof options === "function") { + elementCB = options; + options = defaultOpts; + } + if (typeof callback === "object") { + options = callback; + callback = undefined; + } + this.callback = callback !== null && callback !== void 0 ? callback : null; + this.options = options !== null && options !== void 0 ? options : defaultOpts; + this.elementCB = elementCB !== null && elementCB !== void 0 ? elementCB : null; + } + DomHandler.prototype.onparserinit = function (parser) { + this.parser = parser; + }; + // Resets the handler back to starting state + DomHandler.prototype.onreset = function () { + var _a; + this.dom = []; + this.root = new node_1.Document(this.dom); + this.done = false; + this.tagStack = [this.root]; + this.lastNode = null; + this.parser = (_a = this.parser) !== null && _a !== void 0 ? _a : null; + }; + // Signals the handler that parsing is done + DomHandler.prototype.onend = function () { + if (this.done) + return; + this.done = true; + this.parser = null; + this.handleCallback(null); + }; + DomHandler.prototype.onerror = function (error) { + this.handleCallback(error); + }; + DomHandler.prototype.onclosetag = function () { + this.lastNode = null; + var elem = this.tagStack.pop(); + if (this.options.withEndIndices) { + elem.endIndex = this.parser.endIndex; + } + if (this.elementCB) + this.elementCB(elem); + }; + DomHandler.prototype.onopentag = function (name, attribs) { + var element = new node_1.Element(name, attribs); + this.addNode(element); + this.tagStack.push(element); + }; + DomHandler.prototype.ontext = function (data) { + var normalizeWhitespace = this.options.normalizeWhitespace; + var lastNode = this.lastNode; + if (lastNode && lastNode.type === "text" /* Text */) { + if (normalizeWhitespace) { + lastNode.data = (lastNode.data + data).replace(reWhitespace, " "); + } + else { + lastNode.data += data; + } + } + else { + if (normalizeWhitespace) { + data = data.replace(reWhitespace, " "); + } + var node = new node_1.Text(data); + this.addNode(node); + this.lastNode = node; + } + }; + DomHandler.prototype.oncomment = function (data) { + if (this.lastNode && this.lastNode.type === "comment" /* Comment */) { + this.lastNode.data += data; + return; + } + var node = new node_1.Comment(data); + this.addNode(node); + this.lastNode = node; + }; + DomHandler.prototype.oncommentend = function () { + this.lastNode = null; + }; + DomHandler.prototype.oncdatastart = function () { + var text = new node_1.Text(""); + var node = new node_1.NodeWithChildren("cdata" /* CDATA */, [text]); + this.addNode(node); + text.parent = node; + this.lastNode = text; + }; + DomHandler.prototype.oncdataend = function () { + this.lastNode = null; + }; + DomHandler.prototype.onprocessinginstruction = function (name, data) { + var node = new node_1.ProcessingInstruction(name, data); + this.addNode(node); + }; + DomHandler.prototype.handleCallback = function (error) { + if (typeof this.callback === "function") { + this.callback(error, this.dom); + } + else if (error) { + throw error; + } + }; + DomHandler.prototype.addNode = function (node) { + var parent = this.tagStack[this.tagStack.length - 1]; + var previousSibling = parent.children[parent.children.length - 1]; + if (this.options.withStartIndices) { + node.startIndex = this.parser.startIndex; + } + if (this.options.withEndIndices) { + node.endIndex = this.parser.endIndex; + } + parent.children.push(node); + if (previousSibling) { + node.prev = previousSibling; + previousSibling.next = node; + } + node.parent = parent; + this.lastNode = null; + }; + DomHandler.prototype.addDataNode = function (node) { + this.addNode(node); + this.lastNode = node; + }; + return DomHandler; +}()); +exports.DomHandler = DomHandler; +exports.default = DomHandler; /***/ }), -/* 359 */ +/* 361 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +var __extends = (this && this.__extends) || (function () { + var extendStatics = function (d, b) { + extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; + return extendStatics(d, b); + }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { @@ -58927,6 +57993,345 @@ var __assign = (this && this.__assign) || function () { }; return __assign.apply(this, arguments); }; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.cloneNode = exports.Element = exports.Document = exports.NodeWithChildren = exports.ProcessingInstruction = exports.Comment = exports.Text = exports.DataNode = exports.Node = void 0; +var nodeTypes = new Map([ + ["tag" /* Tag */, 1], + ["script" /* Script */, 1], + ["style" /* Style */, 1], + ["directive" /* Directive */, 1], + ["text" /* Text */, 3], + ["cdata" /* CDATA */, 4], + ["comment" /* Comment */, 8], + ["root" /* Root */, 9], +]); +/** + * This object will be used as the prototype for Nodes when creating a + * DOM-Level-1-compliant structure. + */ +var Node = /** @class */ (function () { + /** + * + * @param type The type of the node. + */ + function Node(type) { + this.type = type; + /** Parent of the node */ + this.parent = null; + /** Previous sibling */ + this.prev = null; + /** Next sibling */ + this.next = null; + /** The start index of the node. Requires `withStartIndices` on the handler to be `true. */ + this.startIndex = null; + /** The end index of the node. Requires `withEndIndices` on the handler to be `true. */ + this.endIndex = null; + } + Object.defineProperty(Node.prototype, "nodeType", { + // Read-only aliases + get: function () { + var _a; + return (_a = nodeTypes.get(this.type)) !== null && _a !== void 0 ? _a : 1; + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(Node.prototype, "parentNode", { + // Read-write aliases for properties + get: function () { + return this.parent; + }, + set: function (parent) { + this.parent = parent; + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(Node.prototype, "previousSibling", { + get: function () { + return this.prev; + }, + set: function (prev) { + this.prev = prev; + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(Node.prototype, "nextSibling", { + get: function () { + return this.next; + }, + set: function (next) { + this.next = next; + }, + enumerable: false, + configurable: true + }); + /** + * Clone this node, and optionally its children. + * + * @param recursive Clone child nodes as well. + * @returns A clone of the node. + */ + Node.prototype.cloneNode = function (recursive) { + if (recursive === void 0) { recursive = false; } + return cloneNode(this, recursive); + }; + return Node; +}()); +exports.Node = Node; +var DataNode = /** @class */ (function (_super) { + __extends(DataNode, _super); + /** + * @param type The type of the node + * @param data The content of the data node + */ + function DataNode(type, data) { + var _this = _super.call(this, type) || this; + _this.data = data; + return _this; + } + Object.defineProperty(DataNode.prototype, "nodeValue", { + get: function () { + return this.data; + }, + set: function (data) { + this.data = data; + }, + enumerable: false, + configurable: true + }); + return DataNode; +}(Node)); +exports.DataNode = DataNode; +var Text = /** @class */ (function (_super) { + __extends(Text, _super); + function Text(data) { + return _super.call(this, "text" /* Text */, data) || this; + } + return Text; +}(DataNode)); +exports.Text = Text; +var Comment = /** @class */ (function (_super) { + __extends(Comment, _super); + function Comment(data) { + return _super.call(this, "comment" /* Comment */, data) || this; + } + return Comment; +}(DataNode)); +exports.Comment = Comment; +var ProcessingInstruction = /** @class */ (function (_super) { + __extends(ProcessingInstruction, _super); + function ProcessingInstruction(name, data) { + var _this = _super.call(this, "directive" /* Directive */, data) || this; + _this.name = name; + return _this; + } + return ProcessingInstruction; +}(DataNode)); +exports.ProcessingInstruction = ProcessingInstruction; +/** + * A `Node` that can have children. + */ +var NodeWithChildren = /** @class */ (function (_super) { + __extends(NodeWithChildren, _super); + /** + * @param type Type of the node. + * @param children Children of the node. Only certain node types can have children. + */ + function NodeWithChildren(type, children) { + var _this = _super.call(this, type) || this; + _this.children = children; + return _this; + } + Object.defineProperty(NodeWithChildren.prototype, "firstChild", { + // Aliases + get: function () { + var _a; + return (_a = this.children[0]) !== null && _a !== void 0 ? _a : null; + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(NodeWithChildren.prototype, "lastChild", { + get: function () { + return this.children.length > 0 + ? this.children[this.children.length - 1] + : null; + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(NodeWithChildren.prototype, "childNodes", { + get: function () { + return this.children; + }, + set: function (children) { + this.children = children; + }, + enumerable: false, + configurable: true + }); + return NodeWithChildren; +}(Node)); +exports.NodeWithChildren = NodeWithChildren; +var Document = /** @class */ (function (_super) { + __extends(Document, _super); + function Document(children) { + return _super.call(this, "root" /* Root */, children) || this; + } + return Document; +}(NodeWithChildren)); +exports.Document = Document; +var Element = /** @class */ (function (_super) { + __extends(Element, _super); + /** + * @param name Name of the tag, eg. `div`, `span`. + * @param attribs Object mapping attribute names to attribute values. + * @param children Children of the node. + */ + function Element(name, attribs, children) { + if (children === void 0) { children = []; } + var _this = _super.call(this, name === "script" + ? "script" /* Script */ + : name === "style" + ? "style" /* Style */ + : "tag" /* Tag */, children) || this; + _this.name = name; + _this.attribs = attribs; + _this.attribs = attribs; + return _this; + } + Object.defineProperty(Element.prototype, "tagName", { + // DOM Level 1 aliases + get: function () { + return this.name; + }, + set: function (name) { + this.name = name; + }, + enumerable: false, + configurable: true + }); + Object.defineProperty(Element.prototype, "attributes", { + get: function () { + var _this = this; + return Object.keys(this.attribs).map(function (name) { + var _a, _b; + return ({ + name: name, + value: _this.attribs[name], + namespace: (_a = _this["x-attribsNamespace"]) === null || _a === void 0 ? void 0 : _a[name], + prefix: (_b = _this["x-attribsPrefix"]) === null || _b === void 0 ? void 0 : _b[name], + }); + }); + }, + enumerable: false, + configurable: true + }); + return Element; +}(NodeWithChildren)); +exports.Element = Element; +/** + * Clone a node, and optionally its children. + * + * @param recursive Clone child nodes as well. + * @returns A clone of the node. + */ +function cloneNode(node, recursive) { + if (recursive === void 0) { recursive = false; } + var result; + switch (node.type) { + case "text" /* Text */: + result = new Text(node.data); + break; + case "directive" /* Directive */: { + var instr = node; + result = new ProcessingInstruction(instr.name, instr.data); + if (instr["x-name"] != null) { + result["x-name"] = instr["x-name"]; + result["x-publicId"] = instr["x-publicId"]; + result["x-systemId"] = instr["x-systemId"]; + } + break; + } + case "comment" /* Comment */: + result = new Comment(node.data); + break; + case "tag" /* Tag */: + case "script" /* Script */: + case "style" /* Style */: { + var elem = node; + var children = recursive ? cloneChildren(elem.children) : []; + var clone_1 = new Element(elem.name, __assign({}, elem.attribs), children); + children.forEach(function (child) { return (child.parent = clone_1); }); + if (elem["x-attribsNamespace"]) { + clone_1["x-attribsNamespace"] = __assign({}, elem["x-attribsNamespace"]); + } + if (elem["x-attribsPrefix"]) { + clone_1["x-attribsPrefix"] = __assign({}, elem["x-attribsPrefix"]); + } + result = clone_1; + break; + } + case "cdata" /* CDATA */: { + var cdata = node; + var children = recursive ? cloneChildren(cdata.children) : []; + var clone_2 = new NodeWithChildren(node.type, children); + children.forEach(function (child) { return (child.parent = clone_2); }); + result = clone_2; + break; + } + case "root" /* Root */: { + var doc = node; + var children = recursive ? cloneChildren(doc.children) : []; + var clone_3 = new Document(children); + children.forEach(function (child) { return (child.parent = clone_3); }); + if (doc["x-mode"]) { + clone_3["x-mode"] = doc["x-mode"]; + } + result = clone_3; + break; + } + case "doctype" /* Doctype */: { + // This type isn't used yet. + throw new Error("Not implemented yet: ElementType.Doctype case"); + } + } + result.startIndex = node.startIndex; + result.endIndex = node.endIndex; + return result; +} +exports.cloneNode = cloneNode; +function cloneChildren(childs) { + var children = childs.map(function (child) { return cloneNode(child, true); }); + for (var i = 1; i < children.length; i++) { + children[i].prev = children[i - 1]; + children[i - 1].next = children[i]; + } + return children; +} + + +/***/ }), +/* 362 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +var __extends = (this && this.__extends) || (function () { + var extendStatics = function (d, b) { + extendStatics = Object.setPrototypeOf || + ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || + function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; + return extendStatics(d, b); + }; + return function (d, b) { + extendStatics(d, b); + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); + }; +})(); var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); @@ -58946,1699 +58351,1730 @@ var __importStar = (this && this.__importStar) || function (mod) { __setModuleDefault(result, mod); return result; }; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; Object.defineProperty(exports, "__esModule", { value: true }); -/* - * Module dependencies - */ -var ElementType = __importStar(__webpack_require__(330)); -var entities_1 = __webpack_require__(293); -/** - * Mixed-case SVG and MathML tags & attributes - * recognized by the HTML parser. - * - * @see https://html.spec.whatwg.org/multipage/parsing.html#parsing-main-inforeign - */ -var foreignNames_1 = __webpack_require__(360); -var unencodedElements = new Set([ - "style", - "script", - "xmp", - "iframe", - "noembed", - "noframes", - "plaintext", - "noscript", -]); -/** - * Format attributes - */ -function formatAttributes(attributes, opts) { - if (!attributes) - return; - return Object.keys(attributes) - .map(function (key) { +exports.parseFeed = exports.FeedHandler = void 0; +var domhandler_1 = __importDefault(__webpack_require__(360)); +var DomUtils = __importStar(__webpack_require__(294)); +var Parser_1 = __webpack_require__(353); +var FeedItemMediaMedium; +(function (FeedItemMediaMedium) { + FeedItemMediaMedium[FeedItemMediaMedium["image"] = 0] = "image"; + FeedItemMediaMedium[FeedItemMediaMedium["audio"] = 1] = "audio"; + FeedItemMediaMedium[FeedItemMediaMedium["video"] = 2] = "video"; + FeedItemMediaMedium[FeedItemMediaMedium["document"] = 3] = "document"; + FeedItemMediaMedium[FeedItemMediaMedium["executable"] = 4] = "executable"; +})(FeedItemMediaMedium || (FeedItemMediaMedium = {})); +var FeedItemMediaExpression; +(function (FeedItemMediaExpression) { + FeedItemMediaExpression[FeedItemMediaExpression["sample"] = 0] = "sample"; + FeedItemMediaExpression[FeedItemMediaExpression["full"] = 1] = "full"; + FeedItemMediaExpression[FeedItemMediaExpression["nonstop"] = 2] = "nonstop"; +})(FeedItemMediaExpression || (FeedItemMediaExpression = {})); +// TODO: Consume data as it is coming in +var FeedHandler = /** @class */ (function (_super) { + __extends(FeedHandler, _super); + /** + * + * @param callback + * @param options + */ + function FeedHandler(callback, options) { + var _this = this; + if (typeof callback === "object") { + callback = undefined; + options = callback; + } + _this = _super.call(this, callback, options) || this; + return _this; + } + FeedHandler.prototype.onend = function () { var _a, _b; - var value = (_a = attributes[key]) !== null && _a !== void 0 ? _a : ""; - if (opts.xmlMode === "foreign") { - /* Fix up mixed-case attribute names */ - key = (_b = foreignNames_1.attributeNames.get(key)) !== null && _b !== void 0 ? _b : key; + var feedRoot = getOneElement(isValidFeed, this.dom); + if (!feedRoot) { + this.handleCallback(new Error("couldn't find root of feed")); + return; } - if (!opts.emptyAttrs && !opts.xmlMode && value === "") { - return key; + var feed = {}; + if (feedRoot.name === "feed") { + var childs = feedRoot.children; + feed.type = "atom"; + addConditionally(feed, "id", "id", childs); + addConditionally(feed, "title", "title", childs); + var href = getAttribute("href", getOneElement("link", childs)); + if (href) { + feed.link = href; + } + addConditionally(feed, "description", "subtitle", childs); + var updated = fetch("updated", childs); + if (updated) { + feed.updated = new Date(updated); + } + addConditionally(feed, "author", "email", childs, true); + feed.items = getElements("entry", childs).map(function (item) { + var entry = {}; + var children = item.children; + addConditionally(entry, "id", "id", children); + addConditionally(entry, "title", "title", children); + var href = getAttribute("href", getOneElement("link", children)); + if (href) { + entry.link = href; + } + var description = fetch("summary", children) || fetch("content", children); + if (description) { + entry.description = description; + } + var pubDate = fetch("updated", children); + if (pubDate) { + entry.pubDate = new Date(pubDate); + } + entry.media = getMediaElements(children); + return entry; + }); } - return key + "=\"" + (opts.decodeEntities !== false - ? entities_1.encodeXML(value) - : value.replace(/"/g, """)) + "\""; - }) - .join(" "); -} -/** - * Self-enclosing tags - */ -var singleTag = new Set([ - "area", - "base", - "basefont", - "br", - "col", - "command", - "embed", - "frame", - "hr", - "img", - "input", - "isindex", - "keygen", - "link", - "meta", - "param", - "source", - "track", - "wbr", -]); -/** - * Renders a DOM node or an array of DOM nodes to a string. - * - * Can be thought of as the equivalent of the `outerHTML` of the passed node(s). - * - * @param node Node to be rendered. - * @param options Changes serialization behavior - */ -function render(node, options) { - if (options === void 0) { options = {}; } - var nodes = "length" in node ? node : [node]; - var output = ""; - for (var i = 0; i < nodes.length; i++) { - output += renderNode(nodes[i], options); - } - return output; -} -exports.default = render; -function renderNode(node, options) { - switch (node.type) { - case ElementType.Root: - return render(node.children, options); - case ElementType.Directive: - case ElementType.Doctype: - return renderDirective(node); - case ElementType.Comment: - return renderComment(node); - case ElementType.CDATA: - return renderCdata(node); - case ElementType.Script: - case ElementType.Style: - case ElementType.Tag: - return renderTag(node, options); - case ElementType.Text: - return renderText(node, options); - } -} -var foreignModeIntegrationPoints = new Set([ - "mi", - "mo", - "mn", - "ms", - "mtext", - "annotation-xml", - "foreignObject", - "desc", - "title", -]); -var foreignElements = new Set(["svg", "math"]); -function renderTag(elem, opts) { - var _a; - // Handle SVG / MathML in HTML - if (opts.xmlMode === "foreign") { - /* Fix up mixed-case element names */ - elem.name = (_a = foreignNames_1.elementNames.get(elem.name)) !== null && _a !== void 0 ? _a : elem.name; - /* Exit foreign mode at integration points */ - if (elem.parent && - foreignModeIntegrationPoints.has(elem.parent.name)) { - opts = __assign(__assign({}, opts), { xmlMode: false }); + else { + var childs = (_b = (_a = getOneElement("channel", feedRoot.children)) === null || _a === void 0 ? void 0 : _a.children) !== null && _b !== void 0 ? _b : []; + feed.type = feedRoot.name.substr(0, 3); + feed.id = ""; + addConditionally(feed, "title", "title", childs); + addConditionally(feed, "link", "link", childs); + addConditionally(feed, "description", "description", childs); + var updated = fetch("lastBuildDate", childs); + if (updated) { + feed.updated = new Date(updated); + } + addConditionally(feed, "author", "managingEditor", childs, true); + feed.items = getElements("item", feedRoot.children).map(function (item) { + var entry = {}; + var children = item.children; + addConditionally(entry, "id", "guid", children); + addConditionally(entry, "title", "title", children); + addConditionally(entry, "link", "link", children); + addConditionally(entry, "description", "description", children); + var pubDate = fetch("pubDate", children); + if (pubDate) + entry.pubDate = new Date(pubDate); + entry.media = getMediaElements(children); + return entry; + }); } - } - if (!opts.xmlMode && foreignElements.has(elem.name)) { - opts = __assign(__assign({}, opts), { xmlMode: "foreign" }); - } - var tag = "<" + elem.name; - var attribs = formatAttributes(elem.attribs, opts); - if (attribs) { - tag += " " + attribs; - } - if (elem.children.length === 0 && - (opts.xmlMode - ? // In XML mode or foreign mode, and user hasn't explicitly turned off self-closing tags - opts.selfClosingTags !== false - : // User explicitly asked for self-closing tags, even in HTML mode - opts.selfClosingTags && singleTag.has(elem.name))) { - if (!opts.xmlMode) - tag += " "; - tag += "/>"; - } - else { - tag += ">"; - if (elem.children.length > 0) { - tag += render(elem.children, opts); + this.feed = feed; + this.handleCallback(null); + }; + return FeedHandler; +}(domhandler_1.default)); +exports.FeedHandler = FeedHandler; +function getMediaElements(where) { + return getElements("media:content", where).map(function (elem) { + var media = { + medium: elem.attribs.medium, + isDefault: !!elem.attribs.isDefault, + }; + if (elem.attribs.url) { + media.url = elem.attribs.url; } - if (opts.xmlMode || !singleTag.has(elem.name)) { - tag += "</" + elem.name + ">"; + if (elem.attribs.fileSize) { + media.fileSize = parseInt(elem.attribs.fileSize, 10); } - } - return tag; + if (elem.attribs.type) { + media.type = elem.attribs.type; + } + if (elem.attribs.expression) { + media.expression = elem.attribs + .expression; + } + if (elem.attribs.bitrate) { + media.bitrate = parseInt(elem.attribs.bitrate, 10); + } + if (elem.attribs.framerate) { + media.framerate = parseInt(elem.attribs.framerate, 10); + } + if (elem.attribs.samplingrate) { + media.samplingrate = parseInt(elem.attribs.samplingrate, 10); + } + if (elem.attribs.channels) { + media.channels = parseInt(elem.attribs.channels, 10); + } + if (elem.attribs.duration) { + media.duration = parseInt(elem.attribs.duration, 10); + } + if (elem.attribs.height) { + media.height = parseInt(elem.attribs.height, 10); + } + if (elem.attribs.width) { + media.width = parseInt(elem.attribs.width, 10); + } + if (elem.attribs.lang) { + media.lang = elem.attribs.lang; + } + return media; + }); } -function renderDirective(elem) { - return "<" + elem.data + ">"; +function getElements(tagName, where) { + return DomUtils.getElementsByTagName(tagName, where, true); } -function renderText(elem, opts) { - var data = elem.data || ""; - // If entities weren't decoded, no need to encode them back - if (opts.decodeEntities !== false && - !(!opts.xmlMode && - elem.parent && - unencodedElements.has(elem.parent.name))) { - data = entities_1.encodeXML(data); +function getOneElement(tagName, node) { + return DomUtils.getElementsByTagName(tagName, node, true, 1)[0]; +} +function fetch(tagName, where, recurse) { + if (recurse === void 0) { recurse = false; } + return DomUtils.getText(DomUtils.getElementsByTagName(tagName, where, recurse, 1)).trim(); +} +function getAttribute(name, elem) { + if (!elem) { + return null; } - return data; + var attribs = elem.attribs; + return attribs[name]; } -function renderCdata(elem) { - return "<![CDATA[" + elem.children[0].data + "]]>"; +function addConditionally(obj, prop, what, where, recurse) { + if (recurse === void 0) { recurse = false; } + var tmp = fetch(what, where, recurse); + if (tmp) + obj[prop] = tmp; } -function renderComment(elem) { - return "<!--" + elem.data + "-->"; +function isValidFeed(value) { + return value === "rss" || value === "feed" || value === "rdf:RDF"; } +/** + * Parse a feed. + * + * @param feed The feed that should be parsed, as a string. + * @param options Optionally, options for parsing. When using this option, you should set `xmlMode` to `true`. + */ +function parseFeed(feed, options) { + if (options === void 0) { options = { xmlMode: true }; } + var handler = new FeedHandler(options); + new Parser_1.Parser(handler, options).end(feed); + return handler.feed; +} +exports.parseFeed = parseFeed; /***/ }), -/* 360 */ +/* 363 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +/* + Module dependencies +*/ -Object.defineProperty(exports, "__esModule", { value: true }); -exports.attributeNames = exports.elementNames = void 0; -exports.elementNames = new Map([ - ["altglyph", "altGlyph"], - ["altglyphdef", "altGlyphDef"], - ["altglyphitem", "altGlyphItem"], - ["animatecolor", "animateColor"], - ["animatemotion", "animateMotion"], - ["animatetransform", "animateTransform"], - ["clippath", "clipPath"], - ["feblend", "feBlend"], - ["fecolormatrix", "feColorMatrix"], - ["fecomponenttransfer", "feComponentTransfer"], - ["fecomposite", "feComposite"], - ["feconvolvematrix", "feConvolveMatrix"], - ["fediffuselighting", "feDiffuseLighting"], - ["fedisplacementmap", "feDisplacementMap"], - ["fedistantlight", "feDistantLight"], - ["fedropshadow", "feDropShadow"], - ["feflood", "feFlood"], - ["fefunca", "feFuncA"], - ["fefuncb", "feFuncB"], - ["fefuncg", "feFuncG"], - ["fefuncr", "feFuncR"], - ["fegaussianblur", "feGaussianBlur"], - ["feimage", "feImage"], - ["femerge", "feMerge"], - ["femergenode", "feMergeNode"], - ["femorphology", "feMorphology"], - ["feoffset", "feOffset"], - ["fepointlight", "fePointLight"], - ["fespecularlighting", "feSpecularLighting"], - ["fespotlight", "feSpotLight"], - ["fetile", "feTile"], - ["feturbulence", "feTurbulence"], - ["foreignobject", "foreignObject"], - ["glyphref", "glyphRef"], - ["lineargradient", "linearGradient"], - ["radialgradient", "radialGradient"], - ["textpath", "textPath"], -]); -exports.attributeNames = new Map([ - ["definitionurl", "definitionURL"], - ["attributename", "attributeName"], - ["attributetype", "attributeType"], - ["basefrequency", "baseFrequency"], - ["baseprofile", "baseProfile"], - ["calcmode", "calcMode"], - ["clippathunits", "clipPathUnits"], - ["diffuseconstant", "diffuseConstant"], - ["edgemode", "edgeMode"], - ["filterunits", "filterUnits"], - ["glyphref", "glyphRef"], - ["gradienttransform", "gradientTransform"], - ["gradientunits", "gradientUnits"], - ["kernelmatrix", "kernelMatrix"], - ["kernelunitlength", "kernelUnitLength"], - ["keypoints", "keyPoints"], - ["keysplines", "keySplines"], - ["keytimes", "keyTimes"], - ["lengthadjust", "lengthAdjust"], - ["limitingconeangle", "limitingConeAngle"], - ["markerheight", "markerHeight"], - ["markerunits", "markerUnits"], - ["markerwidth", "markerWidth"], - ["maskcontentunits", "maskContentUnits"], - ["maskunits", "maskUnits"], - ["numoctaves", "numOctaves"], - ["pathlength", "pathLength"], - ["patterncontentunits", "patternContentUnits"], - ["patterntransform", "patternTransform"], - ["patternunits", "patternUnits"], - ["pointsatx", "pointsAtX"], - ["pointsaty", "pointsAtY"], - ["pointsatz", "pointsAtZ"], - ["preservealpha", "preserveAlpha"], - ["preserveaspectratio", "preserveAspectRatio"], - ["primitiveunits", "primitiveUnits"], - ["refx", "refX"], - ["refy", "refY"], - ["repeatcount", "repeatCount"], - ["repeatdur", "repeatDur"], - ["requiredextensions", "requiredExtensions"], - ["requiredfeatures", "requiredFeatures"], - ["specularconstant", "specularConstant"], - ["specularexponent", "specularExponent"], - ["spreadmethod", "spreadMethod"], - ["startoffset", "startOffset"], - ["stddeviation", "stdDeviation"], - ["stitchtiles", "stitchTiles"], - ["surfacescale", "surfaceScale"], - ["systemlanguage", "systemLanguage"], - ["tablevalues", "tableValues"], - ["targetx", "targetX"], - ["targety", "targetY"], - ["textlength", "textLength"], - ["viewbox", "viewBox"], - ["viewtarget", "viewTarget"], - ["xchannelselector", "xChannelSelector"], - ["ychannelselector", "yChannelSelector"], - ["zoomandpan", "zoomAndPan"], -]); +var parse = __webpack_require__(351); +var defaultOptions = __webpack_require__(288).default; +var flattenOptions = __webpack_require__(288).flatten; +var isHtml = __webpack_require__(364).isHtml; +/* + * The API + */ +var api = [ + __webpack_require__(365), + __webpack_require__(366), + __webpack_require__(367), + __webpack_require__(368), + __webpack_require__(369), +]; -/***/ }), -/* 361 */ -/***/ (function(module, exports, __webpack_require__) { +/** + * Instance of cheerio. Methods are specified in the modules. + * Usage of this constructor is not recommended. Please use $.load instead. + * + * @class + * @hideconstructor + * @param {string|cheerio|node|node[]} selector - The new selection. + * @param {string|cheerio|node|node[]} [context] - Context of the selection. + * @param {string|cheerio|node|node[]} [root] - Sets the root node. + * @param {object} [options] - Options for the instance. + * + * @mixes module:cheerio/attributes + * @mixes module:cheerio/css + * @mixes module:cheerio/forms + * @mixes module:cheerio/manipulation + * @mixes module:cheerio/traversing + */ +var Cheerio = (module.exports = function (selector, context, root, options) { + if (!(this instanceof Cheerio)) { + return new Cheerio(selector, context, root, options); + } + + this.options = Object.assign( + {}, + defaultOptions, + this.options, + flattenOptions(options) + ); + + // $(), $(null), $(undefined), $(false) + if (!selector) return this; + + if (root) { + if (typeof root === 'string') root = parse(root, this.options, false); + this._root = Cheerio.call(this, root); + } + + // $($) + if (selector.cheerio) return selector; + + // $(dom) + if (isNode(selector)) selector = [selector]; + + // $([dom]) + if (Array.isArray(selector)) { + selector.forEach(function (elem, idx) { + this[idx] = elem; + }, this); + this.length = selector.length; + return this; + } + + // $(<html>) + if (typeof selector === 'string' && isHtml(selector)) { + return Cheerio.call(this, parse(selector, this.options, false).children); + } + + // If we don't have a context, maybe we have a root, from loading + if (!context) { + context = this._root; + } else if (typeof context === 'string') { + if (isHtml(context)) { + // $('li', '<ul>...</ul>') + context = parse(context, this.options, false); + context = Cheerio.call(this, context); + } else { + // $('li', 'ul') + selector = [context, selector].join(' '); + context = this._root; + } + } else if (!context.cheerio) { + // $('li', node), $('li', [nodes]) + context = Cheerio.call(this, context); + } + + // If we still don't have a context, return + if (!context) return this; -"use strict"; + // #id, .class, tag + return context.find(selector); +}); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.Cheerio = void 0; -var tslib_1 = __webpack_require__(276); -var parse_1 = tslib_1.__importDefault(__webpack_require__(362)); -var options_1 = tslib_1.__importDefault(__webpack_require__(279)); -var utils_1 = __webpack_require__(363); -var Attributes = tslib_1.__importStar(__webpack_require__(364)); -var Traversing = tslib_1.__importStar(__webpack_require__(365)); -var Manipulation = tslib_1.__importStar(__webpack_require__(366)); -var Css = tslib_1.__importStar(__webpack_require__(367)); -var Forms = tslib_1.__importStar(__webpack_require__(368)); -var Cheerio = /** @class */ (function () { - /** - * Instance of cheerio. Methods are specified in the modules. Usage of this - * constructor is not recommended. Please use $.load instead. - * - * @private - * @param selector - The new selection. - * @param context - Context of the selection. - * @param root - Sets the root node. - * @param options - Options for the instance. - */ - function Cheerio(selector, context, root, options) { - var _this = this; - if (options === void 0) { options = options_1.default; } - this.length = 0; - this.options = options; - // $(), $(null), $(undefined), $(false) - if (!selector) - return this; - if (root) { - if (typeof root === 'string') - root = parse_1.default(root, this.options, false); - this._root = new this.constructor(root, null, null, this.options); - // Add a cyclic reference, so that calling methods on `_root` never fails. - this._root._root = this._root; - } - // $($) - if (utils_1.isCheerio(selector)) - return selector; - var elements = typeof selector === 'string' && utils_1.isHtml(selector) - ? // $(<html>) - parse_1.default(selector, this.options, false).children - : isNode(selector) - ? // $(dom) - [selector] - : Array.isArray(selector) - ? // $([dom]) - selector - : null; - if (elements) { - elements.forEach(function (elem, idx) { - _this[idx] = elem; - }); - this.length = elements.length; - return this; - } - // We know that our selector is a string now. - var search = selector; - var searchContext = !context - ? // If we don't have a context, maybe we have a root, from loading - this._root - : typeof context === 'string' - ? utils_1.isHtml(context) - ? // $('li', '<ul>...</ul>') - this._make(parse_1.default(context, this.options, false)) - : // $('li', 'ul') - ((search = context + " " + search), this._root) - : utils_1.isCheerio(context) - ? // $('li', $) - context - : // $('li', node), $('li', [nodes]) - this._make(context); - // If we still don't have a context, return - if (!searchContext) - return this; - /* - * #id, .class, tag - */ - // @ts-expect-error No good way to type this — we will always return `Cheerio<Element>` here. - return searchContext.find(search); - } - /** - * Make a cheerio object. - * - * @private - * @param dom - The contents of the new object. - * @param context - The context of the new object. - * @returns The new cheerio object. - */ - Cheerio.prototype._make = function (dom, context) { - var cheerio = new this.constructor(dom, context, this._root, this.options); - cheerio.prevObject = this; - return cheerio; - }; - return Cheerio; -}()); -exports.Cheerio = Cheerio; -/** Set a signature of the object. */ +/* + * Set a signature of the object + */ Cheerio.prototype.cheerio = '[cheerio object]'; + /* * Make cheerio an array-like object */ +Cheerio.prototype.length = 0; Cheerio.prototype.splice = Array.prototype.splice; -// Support for (const element of $(...)) iteration: -Cheerio.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator]; -// Plug in the API -Object.assign(Cheerio.prototype, Attributes, Traversing, Manipulation, Css, Forms); -function isNode(obj) { - return (!!obj.name || - obj.type === 'root' || - obj.type === 'text' || - obj.type === 'comment'); -} - - -/***/ }), -/* 362 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.update = void 0; -var htmlparser2_1 = __webpack_require__(325); -var htmlparser2_adapter_1 = __webpack_require__(358); -var parse5_adapter_1 = __webpack_require__(332); -var domhandler_1 = __webpack_require__(288); /* - * Parser + * Make a cheerio object + * + * @private */ -function parse(content, options, isDocument) { - if (typeof Buffer !== 'undefined' && Buffer.isBuffer(content)) { - content = content.toString(); - } - if (typeof content === 'string') { - return options.xmlMode || options._useHtmlParser2 - ? htmlparser2_adapter_1.parse(content, options) - : parse5_adapter_1.parse(content, options, isDocument); - } - var doc = content; - if (!Array.isArray(doc) && domhandler_1.isDocument(doc)) { - // If `doc` is already a root, just return it - return doc; - } - // Add conent to new root element - var root = new domhandler_1.Document([]); - // Update the DOM using the root - update(doc, root); - return root; -} -exports.default = parse; +Cheerio.prototype._make = function (dom, context) { + var cheerio = new this.constructor(dom, context, this._root, this.options); + cheerio.prevObject = this; + return cheerio; +}; + /** - * Update the dom structure, for one changed layer. + * Retrieve all the DOM elements contained in the jQuery set as an array. * - * @param newChilds - The new children. - * @param parent - The new parent. - * @returns The parent node. + * @example + * $('li').toArray() + * //=> [ {...}, {...}, {...} ] */ -function update(newChilds, parent) { - // Normalize - var arr = Array.isArray(newChilds) ? newChilds : [newChilds]; - // Update parent - if (parent) { - parent.children = arr; - } - else { - parent = null; - } - // Update neighbors - for (var i = 0; i < arr.length; i++) { - var node = arr[i]; - // Cleanly remove existing nodes from their previous structures. - if (node.parent && node.parent.children !== arr) { - htmlparser2_1.DomUtils.removeElement(node); - } - if (parent) { - node.prev = arr[i - 1] || null; - node.next = arr[i + 1] || null; - } - else { - node.prev = node.next = null; - } - node.parent = parent; - } - return parent; +Cheerio.prototype.toArray = function () { + return this.get(); +}; + +// Support for (const element of $(...)) iteration: +if (typeof Symbol !== 'undefined') { + Cheerio.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator]; } -exports.update = update; + +// Plug in the API +api.forEach(function (mod) { + Object.assign(Cheerio.prototype, mod); +}); + +var isNode = function (obj) { + return ( + obj.name || + obj.type === 'root' || + obj.type === 'text' || + obj.type === 'comment' + ); +}; /***/ }), -/* 363 */ +/* 364 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var htmlparser2 = __webpack_require__(352); +var domhandler = __webpack_require__(360); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.isHtml = exports.cloneDom = exports.domEach = exports.cssCase = exports.camelCase = exports.isCheerio = exports.isTag = void 0; -var htmlparser2_1 = __webpack_require__(325); -var domhandler_1 = __webpack_require__(288); /** * Check if the DOM element is a tag. * * `isTag(type)` includes `<script>` and `<style>` tags. * - * @private - * @category Utils - * @param type - DOM node to check. - * @returns Whether the node is a tag. - */ -exports.isTag = htmlparser2_1.DomUtils.isTag; -/** - * Checks if an object is a Cheerio instance. + * @param {node} type - DOM node to check. + * @returns {boolean} * - * @category Utils - * @param maybeCheerio - The object to check. - * @returns Whether the object is a Cheerio instance. + * @private */ -function isCheerio(maybeCheerio) { - return maybeCheerio.cheerio != null; -} -exports.isCheerio = isCheerio; +exports.isTag = htmlparser2.DomUtils.isTag; + /** * Convert a string to camel case notation. * + * @param {string} str - String to be converted. + * @returns {string} String in camel case notation. + * * @private - * @category Utils - * @param str - String to be converted. - * @returns String in camel case notation. */ -function camelCase(str) { - return str.replace(/[_.-](\w|$)/g, function (_, x) { return x.toUpperCase(); }); -} -exports.camelCase = camelCase; +exports.camelCase = function (str) { + return str.replace(/[_.-](\w|$)/g, function (_, x) { + return x.toUpperCase(); + }); +}; + /** * Convert a string from camel case to "CSS case", where word boundaries are * described by hyphens ("-") and all characters are lower-case. * + * @param {string} str - String to be converted. + * @returns {string} String in "CSS case". + * * @private - * @category Utils - * @param str - String to be converted. - * @returns String in "CSS case". */ -function cssCase(str) { - return str.replace(/[A-Z]/g, '-$&').toLowerCase(); -} -exports.cssCase = cssCase; +exports.cssCase = function (str) { + return str.replace(/[A-Z]/g, '-$&').toLowerCase(); +}; + /** - * Iterate over each DOM element without creating intermediary Cheerio instances. + * Iterate over each DOM element without creating intermediary Cheerio + * instances. * * This is indented for use internally to avoid otherwise unnecessary memory * pressure introduced by _make. * - * @category Utils - * @param array - Array to iterate over. - * @param fn - Function to call. - * @returns The original instance. + * @param {cheerio} cheerio - Cheerio object. + * @param {Function} fn - Function to call. */ -function domEach(array, fn) { - var len = array.length; - for (var i = 0; i < len; i++) - fn(array[i], i); - return array; -} -exports.domEach = domEach; -/** - * Create a deep copy of the given DOM structure. Sets the parents of the copies - * of the passed nodes to `null`. - * - * @private - * @category Utils - * @param dom - The htmlparser2-compliant DOM structure. - * @returns - The cloned DOM. - */ -function cloneDom(dom) { - var clone = 'length' in dom - ? Array.prototype.map.call(dom, function (el) { return domhandler_1.cloneNode(el, true); }) - : [domhandler_1.cloneNode(dom, true)]; - // Add a root node around the cloned nodes - var root = new domhandler_1.Document(clone); - clone.forEach(function (node) { - node.parent = root; - }); - return clone; -} -exports.cloneDom = cloneDom; +exports.domEach = function (cheerio, fn) { + var i = 0; + var len = cheerio.length; + while (i < len && fn.call(cheerio, i, cheerio[i]) !== false) ++i; + return cheerio; +}; + /** - * A simple way to check for HTML strings. Tests for a `<` within a string, - * immediate followed by a letter and eventually followed by a `>`. + * Create a deep copy of the given DOM structure. + * Sets the parents of the copies of the passed nodes to `null`. * + * @param {object} dom - The htmlparser2-compliant DOM structure. * @private */ -var quickExpr = /<[a-zA-Z][^]*>/; +exports.cloneDom = function (dom) { + var clone = + 'length' in dom + ? Array.prototype.map.call(dom, function (el) { + return domhandler.cloneNode(el, true); + }) + : [domhandler.cloneNode(dom, true)]; + + // Add a root node around the cloned nodes + var root = new domhandler.Document(clone); + clone.forEach(function (node) { + node.parent = root; + }); + + return clone; +}; + +/* + * A simple way to check for HTML strings or ID strings + */ +var quickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w-]*)$)/; + /** * Check if string is HTML. * + * @param {string} str - String to check. + * * @private - * @category Utils - * @param str - String to check. - * @returns Indicates if `str` is HTML. */ -function isHtml(str) { - // Run the regex - return quickExpr.test(str); -} -exports.isHtml = isHtml; +exports.isHtml = function (str) { + // Faster than running regex, if str starts with `<` and ends with `>`, assume it's HTML + if ( + str.charAt(0) === '<' && + str.charAt(str.length - 1) === '>' && + str.length >= 3 + ) { + return true; + } + + // Run the regex + var match = quickExpr.exec(str); + return !!(match && match[1]); +}; /***/ }), -/* 364 */ +/* 365 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - /** * Methods for getting and modifying attributes. * * @module cheerio/attributes */ -Object.defineProperty(exports, "__esModule", { value: true }); -exports.toggleClass = exports.removeClass = exports.addClass = exports.hasClass = exports.removeAttr = exports.val = exports.data = exports.prop = exports.attr = void 0; -var static_1 = __webpack_require__(280); -var utils_1 = __webpack_require__(363); + +var text = __webpack_require__(273).text; +var utils = __webpack_require__(364); +var isTag = utils.isTag; +var domEach = utils.domEach; var hasOwn = Object.prototype.hasOwnProperty; +var camelCase = utils.camelCase; +var cssCase = utils.cssCase; var rspace = /\s+/; var dataAttrPrefix = 'data-'; -/* - * Lookup table for coercing string data-* attributes to their corresponding - * JavaScript primitives - */ +// Lookup table for coercing string data-* attributes to their corresponding +// JavaScript primitives var primitives = { - null: null, - true: true, - false: false, + null: null, + true: true, + false: false, }; // Attributes that are booleans var rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i; // Matches strings that look like JSON objects or arrays -var rbrace = /^{[^]*}$|^\[[^]*]$/; -function getAttr(elem, name, xmlMode) { - var _a; - if (!elem || !utils_1.isTag(elem)) - return undefined; - (_a = elem.attribs) !== null && _a !== void 0 ? _a : (elem.attribs = {}); - // Return the entire attribs object if no attribute specified - if (!name) { - return elem.attribs; - } - if (hasOwn.call(elem.attribs, name)) { - // Get the (decoded) attribute - return !xmlMode && rboolean.test(name) ? name : elem.attribs[name]; - } - // Mimic the DOM and return text content as value for `option's` - if (elem.name === 'option' && name === 'value') { - return static_1.text(elem.children); - } - // Mimic DOM with default value for radios/checkboxes - if (elem.name === 'input' && - (elem.attribs.type === 'radio' || elem.attribs.type === 'checkbox') && - name === 'value') { - return 'on'; - } - return undefined; -} +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/; + +var getAttr = function (elem, name) { + if (!elem || !isTag(elem)) return; + + if (!elem.attribs) { + elem.attribs = {}; + } + + // Return the entire attribs object if no attribute specified + if (!name) { + return elem.attribs; + } + + if (hasOwn.call(elem.attribs, name)) { + // Get the (decoded) attribute + return rboolean.test(name) ? name : elem.attribs[name]; + } + + // Mimic the DOM and return text content as value for `option's` + if (elem.name === 'option' && name === 'value') { + return text(elem.children); + } + + // Mimic DOM with default value for radios/checkboxes + if ( + elem.name === 'input' && + (elem.attribs.type === 'radio' || elem.attribs.type === 'checkbox') && + name === 'value' + ) { + return 'on'; + } +}; + +var setAttr = function (el, name, value) { + if (value === null) { + removeAttribute(el, name); + } else { + el.attribs[name] = value + ''; + } +}; + /** - * Sets the value of an attribute. The attribute will be deleted if the value is `null`. + * Method for getting and setting attributes. Gets the attribute value for only + * the first element in the matched set. If you set an attribute's value to + * `null`, you remove that attribute. You may also pass a `map` and `function` + * like jQuery. * - * @private - * @param el - The element to set the attribute on. - * @param name - The attribute's name. - * @param value - The attribute's value. + * @example + * + * $('ul').attr('id') + * //=> fruits + * + * $('.apple').attr('id', 'favorite').html() + * //=> <li class="apple" id="favorite">Apple</li> + * + * @param {string} name - Name of the attribute. + * @param {string} [value] - If specified sets the value of the attribute. + * + * @see {@link http://api.jquery.com/attr/} */ -function setAttr(el, name, value) { - if (value === null) { - removeAttribute(el, name); - } - else { - el.attribs[name] = "" + value; +exports.attr = function (name, value) { + // Set the value (with attr map support) + if (typeof name === 'object' || value !== undefined) { + if (typeof value === 'function') { + return domEach(this, function (i, el) { + setAttr(el, name, value.call(el, i, el.attribs[name])); + }); } -} -function attr(name, value) { - // Set the value (with attr map support) - if (typeof name === 'object' || value !== undefined) { - if (typeof value === 'function') { - if (typeof name !== 'string') { - { - throw new Error('Bad combination of arguments.'); - } - } - return utils_1.domEach(this, function (el, i) { - if (utils_1.isTag(el)) - setAttr(el, name, value.call(el, i, el.attribs[name])); - }); - } - return utils_1.domEach(this, function (el) { - if (!utils_1.isTag(el)) - return; - if (typeof name === 'object') { - Object.keys(name).forEach(function (objName) { - var objValue = name[objName]; - setAttr(el, objName, objValue); - }); - } - else { - setAttr(el, name, value); - } + return domEach(this, function (i, el) { + if (!isTag(el)) return; + + if (typeof name === 'object') { + Object.keys(name).forEach(function (objName) { + var objValue = name[objName]; + setAttr(el, objName, objValue); }); - } - return arguments.length > 1 - ? this - : getAttr(this[0], name, this.options.xmlMode); -} -exports.attr = attr; + } else { + setAttr(el, name, value); + } + }); + } + + return getAttr(this[0], name); +}; + +var getProp = function (el, name) { + if (!el || !isTag(el)) return; + + return name in el + ? el[name] + : rboolean.test(name) + ? getAttr(el, name) !== undefined + : getAttr(el, name); +}; + +var setProp = function (el, name, value) { + el[name] = rboolean.test(name) ? !!value : value; +}; + /** - * Gets a node's prop. + * Method for getting and setting properties. Gets the property value for only + * the first element in the matched set. * - * @private - * @category Attributes - * @param el - Elenent to get the prop of. - * @param name - Name of the prop. - * @returns The prop's value. - */ -function getProp(el, name, xmlMode) { - if (!el || !utils_1.isTag(el)) - return; - return name in el - ? // @ts-expect-error TS doesn't like us accessing the value directly here. - el[name] - : !xmlMode && rboolean.test(name) - ? getAttr(el, name, false) !== undefined - : getAttr(el, name, xmlMode); -} -/** - * Sets the value of a prop. + * @example * - * @private - * @param el - The element to set the prop on. - * @param name - The prop's name. - * @param value - The prop's value. + * $('input[type="checkbox"]').prop('checked') + * //=> false + * + * $('input[type="checkbox"]').prop('checked', true).val() + * //=> ok + * + * @param {string} name - Name of the property. + * @param {any} [value] - If specified set the property to this. + * + * @see {@link http://api.jquery.com/prop/} */ -function setProp(el, name, value, xmlMode) { - if (name in el) { - // @ts-expect-error Overriding value - el[name] = value; - } - else { - setAttr(el, name, !xmlMode && rboolean.test(name) ? (value ? '' : null) : "" + value); +exports.prop = function (name, value) { + var i = 0; + var property; + + if (typeof name === 'string' && value === undefined) { + switch (name) { + case 'style': + property = this.css(); + + Object.keys(property).forEach(function (p) { + property[i++] = p; + }); + + property.length = i; + + break; + case 'tagName': + case 'nodeName': + property = this[0].name.toUpperCase(); + break; + case 'outerHTML': + property = this.clone().wrap('<container />').parent().html(); + break; + default: + property = getProp(this[0], name); } -} -function prop(name, value) { - var _this = this; - if (typeof name === 'string' && value === undefined) { - switch (name) { - case 'style': { - var property_1 = this.css(); - var keys = Object.keys(property_1); - keys.forEach(function (p, i) { - property_1[i] = p; - }); - property_1.length = keys.length; - return property_1; - } - case 'tagName': - case 'nodeName': { - var el = this[0]; - return utils_1.isTag(el) ? el.name.toUpperCase() : undefined; - } - case 'outerHTML': - return this.clone().wrap('<container />').parent().html(); - case 'innerHTML': - return this.html(); - default: - return getProp(this[0], name, this.options.xmlMode); - } + + return property; + } + + if (typeof name === 'object' || value !== undefined) { + if (typeof value === 'function') { + return domEach(this, function (j, el) { + setProp(el, name, value.call(el, j, getProp(el, name))); + }); } - if (typeof name === 'object' || value !== undefined) { - if (typeof value === 'function') { - if (typeof name === 'object') { - throw new Error('Bad combination of arguments.'); - } - return utils_1.domEach(this, function (el, i) { - if (utils_1.isTag(el)) - setProp(el, name, value.call(el, i, getProp(el, name, _this.options.xmlMode)), _this.options.xmlMode); - }); - } - return utils_1.domEach(this, function (el) { - if (!utils_1.isTag(el)) - return; - if (typeof name === 'object') { - Object.keys(name).forEach(function (key) { - var val = name[key]; - setProp(el, key, val, _this.options.xmlMode); - }); - } - else { - setProp(el, name, value, _this.options.xmlMode); - } + + return domEach(this, function (__, el) { + if (!isTag(el)) return; + + if (typeof name === 'object') { + Object.keys(name).forEach(function (key) { + var val = name[key]; + setProp(el, key, val); }); + } else { + setProp(el, name, value); + } + }); + } +}; + +var setData = function (el, name, value) { + if (!el.data) { + el.data = {}; + } + + if (typeof name === 'object') return Object.assign(el.data, name); + if (typeof name === 'string' && value !== undefined) { + el.data[name] = value; + } +}; + +// Read the specified attribute from the equivalent HTML5 `data-*` attribute, +// and (if present) cache the value in the node's internal data store. If no +// attribute name is specified, read *all* HTML5 `data-*` attributes in this +// manner. +var readData = function (el, name) { + var readAll = arguments.length === 1; + var domNames; + var domName; + var jsNames; + var jsName; + var value; + var idx; + var length; + + if (readAll) { + domNames = Object.keys(el.attribs).filter(function (attrName) { + return attrName.slice(0, dataAttrPrefix.length) === dataAttrPrefix; + }); + jsNames = domNames.map(function (_domName) { + return camelCase(_domName.slice(dataAttrPrefix.length)); + }); + } else { + domNames = [dataAttrPrefix + cssCase(name)]; + jsNames = [name]; + } + + for (idx = 0, length = domNames.length; idx < length; ++idx) { + domName = domNames[idx]; + jsName = jsNames[idx]; + if (hasOwn.call(el.attribs, domName) && !hasOwn.call(el.data, jsName)) { + value = el.attribs[domName]; + + if (hasOwn.call(primitives, value)) { + value = primitives[value]; + } else if (value === String(Number(value))) { + value = Number(value); + } else if (rbrace.test(value)) { + try { + value = JSON.parse(value); + } catch (e) { + /* ignore */ + } + } + + el.data[jsName] = value; } - return undefined; -} -exports.prop = prop; + } + + return readAll ? el.data : value; +}; + /** - * Sets the value of a data attribute. + * Method for getting and setting data attributes. Gets or sets the data + * attribute value for only the first element in the matched set. * - * @private - * @param el - The element to set the data attribute on. - * @param name - The data attribute's name. - * @param value - The data attribute's value. + * @example + * + * $('<div data-apple-color="red"></div>').data() + * //=> { appleColor: 'red' } + * + * $('<div data-apple-color="red"></div>').data('apple-color') + * //=> 'red' + * + * const apple = $('.apple').data('kind', 'mac') + * apple.data('kind') + * //=> 'mac' + * + * @param {string} name - Name of the attribute. + * @param {any} [value] - If specified new value. + * + * @see {@link http://api.jquery.com/data/} */ -function setData(el, name, value) { - var _a; - var elem = el; - (_a = elem.data) !== null && _a !== void 0 ? _a : (elem.data = {}); - if (typeof name === 'object') - Object.assign(elem.data, name); - else if (typeof name === 'string' && value !== undefined) { - elem.data[name] = value; - } -} +exports.data = function (name, value) { + var elem = this[0]; + + if (!elem || !isTag(elem)) return; + + if (!elem.data) { + elem.data = {}; + } + + // Return the entire data object if no data specified + if (!name) { + return readData(elem); + } + + // Set the value (with attr map support) + if (typeof name === 'object' || value !== undefined) { + domEach(this, function (i, el) { + setData(el, name, value); + }); + return this; + } else if (hasOwn.call(elem.data, name)) { + return elem.data[name]; + } + + return readData(elem, name); +}; + /** - * Read the specified attribute from the equivalent HTML5 `data-*` attribute, - * and (if present) cache the value in the node's internal data store. If no - * attribute name is specified, read *all* HTML5 `data-*` attributes in this manner. + * Method for getting and setting the value of input, select, and textarea. + * Note: Support for `map`, and `function` has not been added yet. * - * @private - * @category Attributes - * @param el - Elenent to get the data attribute of. - * @param name - Name of the data attribute. - * @returns The data attribute's value, or a map with all of the data attribute. - */ -function readData(el, name) { - var domNames; - var jsNames; - var value; - if (name == null) { - domNames = Object.keys(el.attribs).filter(function (attrName) { - return attrName.startsWith(dataAttrPrefix); - }); - jsNames = domNames.map(function (domName) { - return utils_1.camelCase(domName.slice(dataAttrPrefix.length)); - }); - } - else { - domNames = [dataAttrPrefix + utils_1.cssCase(name)]; - jsNames = [name]; - } - for (var idx = 0; idx < domNames.length; ++idx) { - var domName = domNames[idx]; - var jsName = jsNames[idx]; - if (hasOwn.call(el.attribs, domName) && - !hasOwn.call(el.data, jsName)) { - value = el.attribs[domName]; - if (hasOwn.call(primitives, value)) { - value = primitives[value]; - } - else if (value === String(Number(value))) { - value = Number(value); - } - else if (rbrace.test(value)) { - try { - value = JSON.parse(value); - } - catch (e) { - /* Ignore */ - } - } - el.data[jsName] = value; + * @example + * + * $('input[type="text"]').val() + * //=> input_text + * + * $('input[type="text"]').val('test').html() + * //=> <input type="text" value="test"/> + * + * @param {string} [value] - If specified new value. + * + * @see {@link http://api.jquery.com/val/} + */ +exports.val = function (value) { + var querying = arguments.length === 0; + var element = this[0]; + + if (!element) return; + + switch (element.name) { + case 'textarea': + return this.text(value); + case 'input': + if (this.attr('type') === 'radio') { + if (querying) { + return this.attr('value'); } - } - return name == null ? el.data : value; -} -function data(name, value) { - var _a; - var elem = this[0]; - if (!elem || !utils_1.isTag(elem)) - return; - var dataEl = elem; - (_a = dataEl.data) !== null && _a !== void 0 ? _a : (dataEl.data = {}); - // Return the entire data object if no data specified - if (!name) { - return readData(dataEl); - } - // Set the value (with attr map support) - if (typeof name === 'object' || value !== undefined) { - utils_1.domEach(this, function (el) { - if (utils_1.isTag(el)) - if (typeof name === 'object') - setData(el, name); - else - setData(el, name, value); - }); + + this.attr('value', value); return this; - } - if (hasOwn.call(dataEl.data, name)) { - return dataEl.data[name]; - } - return readData(dataEl, name); -} -exports.data = data; -function val(value) { - var querying = arguments.length === 0; - var element = this[0]; - if (!element || !utils_1.isTag(element)) - return querying ? undefined : this; - switch (element.name) { - case 'textarea': - return this.text(value); - case 'select': { - var option = this.find('option:selected'); - if (!querying) { - if (this.attr('multiple') == null && typeof value === 'object') { - return this; - } - this.find('option').removeAttr('selected'); - var values = typeof value !== 'object' ? [value] : value; - for (var i = 0; i < values.length; i++) { - this.find("option[value=\"" + values[i] + "\"]").attr('selected', ''); - } - return this; - } - return this.attr('multiple') - ? option.toArray().map(function (el) { return static_1.text(el.children); }) - : option.attr('value'); + } + + return this.attr('value', value); + case 'select': + var option = this.find('option:selected'); + var returnValue; + if (option === undefined) return undefined; + if (!querying) { + if (!hasOwn.call(this.attr(), 'multiple') && typeof value == 'object') { + return this; } - case 'input': - case 'option': - return querying - ? this.attr('value') - : this.attr('value', value); - } - return undefined; -} -exports.val = val; + if (typeof value != 'object') { + value = [value]; + } + this.find('option').removeAttr('selected'); + for (var i = 0; i < value.length; i++) { + this.find('option[value="' + value[i] + '"]').attr('selected', ''); + } + return this; + } + returnValue = option.attr('value'); + if (hasOwn.call(this.attr(), 'multiple')) { + returnValue = []; + domEach(option, function (__, el) { + returnValue.push(getAttr(el, 'value')); + }); + } + return returnValue; + case 'option': + if (!querying) { + this.attr('value', value); + return this; + } + return this.attr('value'); + } +}; + /** * Remove an attribute. * * @private - * @param elem - Node to remove attribute from. - * @param name - Name of the attribute to remove. + * @param {node} elem - Node to remove attribute from. + * @param {string} name - Name of the attribute to remove. */ -function removeAttribute(elem, name) { - if (!elem.attribs || !hasOwn.call(elem.attribs, name)) - return; - delete elem.attribs[name]; -} +var removeAttribute = function (elem, name) { + if (!elem.attribs || !hasOwn.call(elem.attribs, name)) return; + + delete elem.attribs[name]; +}; + /** - * Splits a space-separated list of names to individual names. + * Splits a space-separated list of names to individual + * names. * - * @category Attributes - * @param names - Names to split. - * @returns - Split names. + * @param {string} names - Names to split. + * @returns {string[]} - Split names. */ -function splitNames(names) { - return names ? names.trim().split(rspace) : []; -} +var splitNames = function (names) { + return names ? names.trim().split(rspace) : []; +}; + /** * Method for removing attributes by `name`. * - * @category Attributes * @example * - * ```js - * $('.pear').removeAttr('class').html(); + * $('.pear').removeAttr('class').html() * //=> <li>Pear</li> * - * $('.apple').attr('id', 'favorite'); - * $('.apple').removeAttr('id class').html(); + * $('.apple').attr('id', 'favorite') + * $('.apple').removeAttr('id class').html() * //=> <li>Apple</li> - * ``` * - * @param name - Name of the attribute. - * @returns The instance itself. - * @see {@link https://api.jquery.com/removeAttr/} + * @param {string} name - Name of the attribute. + * + * @see {@link http://api.jquery.com/removeAttr/} */ -function removeAttr(name) { - var attrNames = splitNames(name); - var _loop_1 = function (i) { - utils_1.domEach(this_1, function (elem) { - if (utils_1.isTag(elem)) - removeAttribute(elem, attrNames[i]); - }); - }; - var this_1 = this; - for (var i = 0; i < attrNames.length; i++) { - _loop_1(i); - } - return this; -} -exports.removeAttr = removeAttr; +exports.removeAttr = function (name) { + var attrNames = splitNames(name); + + for (var i = 0; i < attrNames.length; i++) { + domEach(this, function (j, elem) { + removeAttribute(elem, attrNames[i]); + }); + } + + return this; +}; + /** * Check to see if *any* of the matched elements have the given `className`. * - * @category Attributes * @example * - * ```js - * $('.pear').hasClass('pear'); + * $('.pear').hasClass('pear') * //=> true * - * $('apple').hasClass('fruit'); + * $('apple').hasClass('fruit') * //=> false * - * $('li').hasClass('pear'); + * $('li').hasClass('pear') * //=> true - * ``` * - * @param className - Name of the class. - * @returns Indicates if an element has the given `className`. - * @see {@link https://api.jquery.com/hasClass/} - */ -function hasClass(className) { - return this.toArray().some(function (elem) { - var clazz = utils_1.isTag(elem) && elem.attribs.class; - var idx = -1; - if (clazz && className.length) { - while ((idx = clazz.indexOf(className, idx + 1)) > -1) { - var end = idx + className.length; - if ((idx === 0 || rspace.test(clazz[idx - 1])) && - (end === clazz.length || rspace.test(clazz[end]))) { - return true; - } - } + * @param {string} className - Name of the class. + * + * @see {@link http://api.jquery.com/hasClass/} + */ +exports.hasClass = function (className) { + return this.toArray().some(function (elem) { + var attrs = elem.attribs; + var clazz = attrs && attrs['class']; + var idx = -1; + var end; + + if (clazz && className.length) { + while ((idx = clazz.indexOf(className, idx + 1)) > -1) { + end = idx + className.length; + + if ( + (idx === 0 || rspace.test(clazz[idx - 1])) && + (end === clazz.length || rspace.test(clazz[end])) + ) { + return true; } - return false; - }); -} -exports.hasClass = hasClass; + } + } + }); +}; + /** - * Adds class(es) to all of the matched elements. Also accepts a `function`. + * Adds class(es) to all of the matched elements. Also accepts a `function` + * like jQuery. * - * @category Attributes * @example * - * ```js - * $('.pear').addClass('fruit').html(); + * $('.pear').addClass('fruit').html() * //=> <li class="pear fruit">Pear</li> * - * $('.apple').addClass('fruit red').html(); + * $('.apple').addClass('fruit red').html() * //=> <li class="apple fruit red">Apple</li> - * ``` * - * @param value - Name of new class. - * @returns The instance itself. - * @see {@link https://api.jquery.com/addClass/} + * @param {string} value - Name of new class. + * + * @see {@link http://api.jquery.com/addClass/} */ -function addClass(value) { - // Support functions - if (typeof value === 'function') { - return utils_1.domEach(this, function (el, i) { - if (utils_1.isTag(el)) { - var className = el.attribs.class || ''; - addClass.call([el], value.call(el, i, className)); - } - }); - } - // Return if no value or not a string or function - if (!value || typeof value !== 'string') - return this; - var classNames = value.split(rspace); - var numElements = this.length; - for (var i = 0; i < numElements; i++) { - var el = this[i]; - // If selected element isn't a tag, move on - if (!utils_1.isTag(el)) - continue; - // If we don't already have classes — always set xmlMode to false here, as it doesn't matter for classes - var className = getAttr(el, 'class', false); - if (!className) { - setAttr(el, 'class', classNames.join(' ').trim()); - } - else { - var setClass = " " + className + " "; - // Check if class already exists - for (var j = 0; j < classNames.length; j++) { - var appendClass = classNames[j] + " "; - if (!setClass.includes(" " + appendClass)) - setClass += appendClass; - } - setAttr(el, 'class', setClass.trim()); - } +exports.addClass = function (value) { + // Support functions + if (typeof value === 'function') { + return domEach(this, function (i, el) { + var className = el.attribs['class'] || ''; + exports.addClass.call([el], value.call(el, i, className)); + }); + } + + // Return if no value or not a string or function + if (!value || typeof value !== 'string') return this; + + var classNames = value.split(rspace); + var numElements = this.length; + + for (var i = 0; i < numElements; i++) { + // If selected element isn't a tag, move on + if (!isTag(this[i])) continue; + + // If we don't already have classes + var className = getAttr(this[i], 'class'); + var numClasses; + var setClass; + + if (!className) { + setAttr(this[i], 'class', classNames.join(' ').trim()); + } else { + setClass = ' ' + className + ' '; + numClasses = classNames.length; + + // Check if class already exists + for (var j = 0; j < numClasses; j++) { + var appendClass = classNames[j] + ' '; + if (setClass.indexOf(' ' + appendClass) < 0) setClass += appendClass; + } + + setAttr(this[i], 'class', setClass.trim()); } - return this; -} -exports.addClass = addClass; + } + + return this; +}; + /** - * Removes one or more space-separated classes from the selected elements. If no - * `className` is defined, all classes will be removed. Also accepts a `function`. + * Removes one or more space-separated classes from the selected elements. If + * no `className` is defined, all classes will be removed. Also accepts a + * `function` like jQuery. * - * @category Attributes * @example * - * ```js - * $('.pear').removeClass('pear').html(); + * $('.pear').removeClass('pear').html() * //=> <li class="">Pear</li> * - * $('.apple').addClass('red').removeClass().html(); + * $('.apple').addClass('red').removeClass().html() * //=> <li class="">Apple</li> - * ``` + * @param {string} value - Name of the class. * - * @param name - Name of the class. If not specified, removes all elements. - * @returns The instance itself. - * @see {@link https://api.jquery.com/removeClass/} + * @see {@link http://api.jquery.com/removeClass/} */ -function removeClass(name) { - // Handle if value is a function - if (typeof name === 'function') { - return utils_1.domEach(this, function (el, i) { - if (utils_1.isTag(el)) - removeClass.call([el], name.call(el, i, el.attribs.class || '')); - }); - } - var classes = splitNames(name); - var numClasses = classes.length; - var removeAll = arguments.length === 0; - return utils_1.domEach(this, function (el) { - if (!utils_1.isTag(el)) - return; - if (removeAll) { - // Short circuit the remove all case as this is the nice one - el.attribs.class = ''; - } - else { - var elClasses = splitNames(el.attribs.class); - var changed = false; - for (var j = 0; j < numClasses; j++) { - var index = elClasses.indexOf(classes[j]); - if (index >= 0) { - elClasses.splice(index, 1); - changed = true; - /* - * We have to do another pass to ensure that there are not duplicate - * classes listed - */ - j--; - } - } - if (changed) { - el.attribs.class = elClasses.join(' '); - } - } +exports.removeClass = function (value) { + var classes; + var numClasses; + var removeAll; + + // Handle if value is a function + if (typeof value === 'function') { + return domEach(this, function (i, el) { + exports.removeClass.call( + [el], + value.call(el, i, el.attribs['class'] || '') + ); }); -} -exports.removeClass = removeClass; + } + + classes = splitNames(value); + numClasses = classes.length; + removeAll = arguments.length === 0; + + return domEach(this, function (i, el) { + if (!isTag(el)) return; + + if (removeAll) { + // Short circuit the remove all case as this is the nice one + el.attribs.class = ''; + } else { + var elClasses = splitNames(el.attribs.class); + var index; + var changed; + + for (var j = 0; j < numClasses; j++) { + index = elClasses.indexOf(classes[j]); + + if (index >= 0) { + elClasses.splice(index, 1); + changed = true; + + // We have to do another pass to ensure that there are not duplicate + // classes listed + j--; + } + } + if (changed) { + el.attribs.class = elClasses.join(' '); + } + } + }); +}; + /** * Add or remove class(es) from the matched elements, depending on either the - * class's presence or the value of the switch argument. Also accepts a `function`. + * class's presence or the value of the switch argument. Also accepts a + * `function` like jQuery. * - * @category Attributes * @example * - * ```js - * $('.apple.green').toggleClass('fruit green red').html(); + * $('.apple.green').toggleClass('fruit green red').html() * //=> <li class="apple fruit red">Apple</li> * - * $('.apple.green').toggleClass('fruit green red', true).html(); + * $('.apple.green').toggleClass('fruit green red', true).html() * //=> <li class="apple green fruit red">Apple</li> - * ``` * - * @param value - Name of the class. Can also be a function. - * @param stateVal - If specified the state of the class. - * @returns The instance itself. - * @see {@link https://api.jquery.com/toggleClass/} + * @param {(string|Function)} value - Name of the class. Can also be a function. + * @param {boolean} [stateVal] - If specified the state of the class. + * + * @see {@link http://api.jquery.com/toggleClass/} */ -function toggleClass(value, stateVal) { - // Support functions - if (typeof value === 'function') { - return utils_1.domEach(this, function (el, i) { - if (utils_1.isTag(el)) { - toggleClass.call([el], value.call(el, i, el.attribs.class || '', stateVal), stateVal); - } - }); - } - // Return if no value or not a string or function - if (!value || typeof value !== 'string') - return this; - var classNames = value.split(rspace); - var numClasses = classNames.length; - var state = typeof stateVal === 'boolean' ? (stateVal ? 1 : -1) : 0; - var numElements = this.length; - for (var i = 0; i < numElements; i++) { - var el = this[i]; - // If selected element isn't a tag, move on - if (!utils_1.isTag(el)) - continue; - var elementClasses = splitNames(el.attribs.class); - // Check if class already exists - for (var j = 0; j < numClasses; j++) { - // Check if the class name is currently defined - var index = elementClasses.indexOf(classNames[j]); - // Add if stateValue === true or we are toggling and there is no value - if (state >= 0 && index < 0) { - elementClasses.push(classNames[j]); - } - else if (state <= 0 && index >= 0) { - // Otherwise remove but only if the item exists - elementClasses.splice(index, 1); - } - } - el.attribs.class = elementClasses.join(' '); +exports.toggleClass = function (value, stateVal) { + // Support functions + if (typeof value === 'function') { + return domEach(this, function (i, el) { + exports.toggleClass.call( + [el], + value.call(el, i, el.attribs['class'] || '', stateVal), + stateVal + ); + }); + } + + // Return if no value or not a string or function + if (!value || typeof value !== 'string') return this; + + var classNames = value.split(rspace); + var numClasses = classNames.length; + var state = typeof stateVal === 'boolean' ? (stateVal ? 1 : -1) : 0; + var numElements = this.length; + var elementClasses; + var index; + + for (var i = 0; i < numElements; i++) { + // If selected element isn't a tag, move on + if (!isTag(this[i])) continue; + + elementClasses = splitNames(this[i].attribs.class); + + // Check if class already exists + for (var j = 0; j < numClasses; j++) { + // Check if the class name is currently defined + index = elementClasses.indexOf(classNames[j]); + + // Add if stateValue === true or we are toggling and there is no value + if (state >= 0 && index < 0) { + elementClasses.push(classNames[j]); + } else if (state <= 0 && index >= 0) { + // Otherwise remove but only if the item exists + elementClasses.splice(index, 1); + } } - return this; -} -exports.toggleClass = toggleClass; + + this[i].attribs.class = elementClasses.join(' '); + } + + return this; +}; + +/** + * Checks the current list of elements and returns `true` if _any_ of the + * elements match the selector. If using an element or Cheerio selection, + * returns `true` if _any_ of the elements match. If using a predicate + * function, the function is executed in the context of the selected element, + * so `this` refers to the current element. + * + * @param {string|Function|cheerio|node} selector - Selector for the selection. + * + * @see {@link http://api.jquery.com/is/} + */ +exports.is = function (selector) { + if (selector) { + return this.filter(selector).length > 0; + } + return false; +}; /***/ }), -/* 365 */ +/* 366 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - /** * Methods for traversing the DOM structure. * * @module cheerio/traversing */ -Object.defineProperty(exports, "__esModule", { value: true }); -exports.addBack = exports.add = exports.end = exports.slice = exports.index = exports.toArray = exports.get = exports.eq = exports.last = exports.first = exports.has = exports.not = exports.is = exports.filterArray = exports.filter = exports.map = exports.each = exports.contents = exports.children = exports.siblings = exports.prevUntil = exports.prevAll = exports.prev = exports.nextUntil = exports.nextAll = exports.next = exports.closest = exports.parentsUntil = exports.parents = exports.parent = exports.find = void 0; -var tslib_1 = __webpack_require__(276); -var domhandler_1 = __webpack_require__(288); -var select = tslib_1.__importStar(__webpack_require__(281)); -var utils_1 = __webpack_require__(363); -var static_1 = __webpack_require__(280); -var htmlparser2_1 = __webpack_require__(325); -var uniqueSort = htmlparser2_1.DomUtils.uniqueSort; -var reSiblingSelector = /^\s*[~+]/; + +var select = __webpack_require__(289); +var utils = __webpack_require__(364); +var domEach = utils.domEach; +var uniqueSort = __webpack_require__(352).DomUtils.uniqueSort; +var isTag = utils.isTag; + /** * Get the descendants of each element in the current set of matched elements, * filtered by a selector, jQuery object, or element. * - * @category Traversing * @example * - * ```js - * $('#fruits').find('li').length; + * $('#fruits').find('li').length * //=> 3 - * $('#fruits').find($('.apple')).length; + * $('#fruits').find($('.apple')).length * //=> 1 - * ``` * - * @param selectorOrHaystack - Element to look for. - * @returns The found elements. - * @see {@link https://api.jquery.com/find/} - */ -function find(selectorOrHaystack) { - var _a; - if (!selectorOrHaystack) { - return this._make([]); - } - var context = this.toArray(); - if (typeof selectorOrHaystack !== 'string') { - var haystack = utils_1.isCheerio(selectorOrHaystack) - ? selectorOrHaystack.toArray() - : [selectorOrHaystack]; - return this._make(haystack.filter(function (elem) { return context.some(function (node) { return static_1.contains(node, elem); }); })); - } - var elems = reSiblingSelector.test(selectorOrHaystack) - ? context - : this.children().toArray(); - var options = { - context: context, - root: (_a = this._root) === null || _a === void 0 ? void 0 : _a[0], - xmlMode: this.options.xmlMode, - }; - return this._make(select.select(selectorOrHaystack, elems, options)); -} -exports.find = find; -/** - * Creates a matcher, using a particular mapping function. Matchers provide a - * function that finds elements using a generating function, supporting filtering. + * @param {string|cheerio|node} selectorOrHaystack - Element to look for. * - * @private - * @param matchMap - Mapping function. - * @returns - Function for wrapping generating functions. + * @see {@link http://api.jquery.com/find/} */ -function _getMatcher(matchMap) { - return function (fn) { - var postFns = []; - for (var _i = 1; _i < arguments.length; _i++) { - postFns[_i - 1] = arguments[_i]; - } - return function (selector) { - var _a; - var matched = matchMap(fn, this); - if (selector) { - matched = filterArray(matched, selector, this.options.xmlMode, (_a = this._root) === null || _a === void 0 ? void 0 : _a[0]); - } - return this._make( - // Post processing is only necessary if there is more than one element. - this.length > 1 && matched.length > 1 - ? postFns.reduce(function (elems, fn) { return fn(elems); }, matched) - : matched); - }; - }; -} -/** Matcher that adds multiple elements for each entry in the input. */ -var _matcher = _getMatcher(function (fn, elems) { - var _a; - var ret = []; - for (var i = 0; i < elems.length; i++) { - var value = fn(elems[i]); - ret.push(value); +exports.find = function (selectorOrHaystack) { + var elems = this.toArray().reduce(function (newElems, elem) { + return newElems.concat(elem.children.filter(isTag)); + }, []); + var contains = this.constructor.contains; + var haystack; + + if (selectorOrHaystack && typeof selectorOrHaystack !== 'string') { + if (selectorOrHaystack.cheerio) { + haystack = selectorOrHaystack.get(); + } else { + haystack = [selectorOrHaystack]; } - return (_a = new Array()).concat.apply(_a, ret); -}); -/** Matcher that adds at most one element for each entry in the input. */ -var _singleMatcher = _getMatcher(function (fn, elems) { - var ret = []; - for (var i = 0; i < elems.length; i++) { - var value = fn(elems[i]); - if (value !== null) { - ret.push(value); + + return this._make( + haystack.filter(function (elem) { + var idx; + var len; + for (idx = 0, len = this.length; idx < len; ++idx) { + if (contains(this[idx], elem)) { + return true; + } } - } - return ret; -}); -/** - * Matcher that supports traversing until a condition is met. - * - * @returns A function usable for `*Until` methods. - */ -function _matchUntil(nextElem) { - var postFns = []; - for (var _i = 1; _i < arguments.length; _i++) { - postFns[_i - 1] = arguments[_i]; - } - // We use a variable here that is used from within the matcher. - var matches = null; - var innerMatcher = _getMatcher(function (nextElem, elems) { - var matched = []; - utils_1.domEach(elems, function (elem) { - for (var next_1; (next_1 = nextElem(elem)); elem = next_1) { - // FIXME: `matched` might contain duplicates here and the index is too large. - if (matches === null || matches === void 0 ? void 0 : matches(next_1, matched.length)) - break; - matched.push(next_1); - } - }); - return matched; - }).apply(void 0, tslib_1.__spreadArray([nextElem], postFns)); - return function (selector, filterSelector) { - var _this = this; - // Override `matches` variable with the new target. - matches = - typeof selector === 'string' - ? function (elem) { return select.is(elem, selector, _this.options); } - : selector - ? getFilterFn(selector) - : null; - var ret = innerMatcher.call(this, filterSelector); - // Set `matches` to `null`, so we don't waste memory. - matches = null; - return ret; - }; -} -function _removeDuplicates(elems) { - return Array.from(new Set(elems)); -} + }, this) + ); + } + + var options = { __proto__: this.options, context: this.toArray() }; + + return this._make(select.select(selectorOrHaystack || '', elems, options)); +}; + /** * Get the parent of each element in the current set of matched elements, * optionally filtered by a selector. * - * @category Traversing * @example * - * ```js - * $('.pear').parent().attr('id'); + * $('.pear').parent().attr('id') * //=> fruits - * ``` * - * @param selector - If specified filter for parent. - * @returns The parents. - * @see {@link https://api.jquery.com/parent/} + * @param {string} [selector] - If specified filter for parent. + * + * @see {@link http://api.jquery.com/parent/} */ -exports.parent = _singleMatcher(function (_a) { - var parent = _a.parent; - return (parent && !domhandler_1.isDocument(parent) ? parent : null); -}, _removeDuplicates); +exports.parent = function (selector) { + var set = []; + + domEach(this, function (idx, elem) { + var parentElem = elem.parent; + if ( + parentElem && + parentElem.type !== 'root' && + set.indexOf(parentElem) < 0 + ) { + set.push(parentElem); + } + }); + + if (arguments.length) { + set = exports.filter.call(set, selector, this); + } + + return this._make(set); +}; + /** * Get a set of parents filtered by `selector` of each element in the current * set of match elements. * - * @category Traversing * @example * - * ```js - * $('.orange').parents().length; - * //=> 2 - * $('.orange').parents('#fruits').length; - * //=> 1 - * ``` + * $('.orange').parents().length + * // => 2 + * $('.orange').parents('#fruits').length + * // => 1 * - * @param selector - If specified filter for parents. - * @returns The parents. - * @see {@link https://api.jquery.com/parents/} + * @param {string} [selector] - If specified filter for parents. + * + * @see {@link http://api.jquery.com/parents/} */ -exports.parents = _matcher(function (elem) { - var matched = []; - while (elem.parent && !domhandler_1.isDocument(elem.parent)) { - matched.push(elem.parent); - elem = elem.parent; - } - return matched; -}, uniqueSort, function (elems) { return elems.reverse(); }); +exports.parents = function (selector) { + var parentNodes = []; + + // When multiple DOM elements are in the original set, the resulting set will + // be in *reverse* order of the original elements as well, with duplicates + // removed. + this.get() + .reverse() + .forEach(function (elem) { + traverseParents(this, elem.parent, selector, Infinity).forEach(function ( + node + ) { + if (parentNodes.indexOf(node) === -1) { + parentNodes.push(node); + } + }); + }, this); + + return this._make(parentNodes); +}; + /** * Get the ancestors of each element in the current set of matched elements, up - * to but not including the element matched by the selector, DOM node, or cheerio object. + * to but not including the element matched by the selector, DOM node, or + * cheerio object. * - * @category Traversing * @example * - * ```js - * $('.orange').parentsUntil('#food').length; - * //=> 1 - * ``` + * $('.orange').parentsUntil('#food').length + * // => 1 + * + * @param {string|node|cheerio} selector - Selector for element to stop at. + * @param {string|Function} [filter] - Optional filter for parents. * - * @param selector - Selector for element to stop at. - * @param filterSelector - Optional filter for parents. - * @returns The parents. - * @see {@link https://api.jquery.com/parentsUntil/} + * @see {@link http://api.jquery.com/parentsUntil/} */ -exports.parentsUntil = _matchUntil(function (_a) { - var parent = _a.parent; - return (parent && !domhandler_1.isDocument(parent) ? parent : null); -}, uniqueSort, function (elems) { return elems.reverse(); }); +exports.parentsUntil = function (selector, filter) { + var parentNodes = []; + var untilNode; + var untilNodes; + + if (typeof selector === 'string') { + untilNode = select.select( + selector, + this.parents().toArray(), + this.options + )[0]; + } else if (selector && selector.cheerio) { + untilNodes = selector.toArray(); + } else if (selector) { + untilNode = selector; + } + + // When multiple DOM elements are in the original set, the resulting set will + // be in *reverse* order of the original elements as well, with duplicates + // removed. + + this.toArray() + .reverse() + .forEach(function (elem) { + while ((elem = elem.parent)) { + if ( + (untilNode && elem !== untilNode) || + (untilNodes && untilNodes.indexOf(elem) === -1) || + (!untilNode && !untilNodes) + ) { + if (isTag(elem) && parentNodes.indexOf(elem) === -1) { + parentNodes.push(elem); + } + } else { + break; + } + } + }, this); + + return this._make( + filter ? select.select(filter, parentNodes, this.options) : parentNodes + ); +}; + /** * For each element in the set, get the first element that matches the selector - * by testing the element itself and traversing up through its ancestors in the DOM tree. + * by testing the element itself and traversing up through its ancestors in + * the DOM tree. * - * @category Traversing * @example * - * ```js - * $('.orange').closest(); - * //=> [] - * - * $('.orange').closest('.apple'); + * $('.orange').closest() * // => [] + * $('.orange').closest('.apple') + * // => [] + * $('.orange').closest('li') + * // => [<li class="orange">Orange</li>] + * $('.orange').closest('#fruits') + * // => [<ul id="fruits"> ... </ul>] * - * $('.orange').closest('li'); - * //=> [<li class="orange">Orange</li>] - * - * $('.orange').closest('#fruits'); - * //=> [<ul id="fruits"> ... </ul>] - * ``` + * @param {string} [selector] - Selector for the element to find. * - * @param selector - Selector for the element to find. - * @returns The closest nodes. - * @see {@link https://api.jquery.com/closest/} + * @see {@link http://api.jquery.com/closest/} */ -function closest(selector) { - var _this = this; - var set = []; - if (!selector) { - return this._make(set); - } - utils_1.domEach(this, function (elem) { - var _a; - while (elem && elem.type !== 'root') { - if (!selector || - filterArray([elem], selector, _this.options.xmlMode, (_a = _this._root) === null || _a === void 0 ? void 0 : _a[0]) - .length) { - // Do not add duplicate elements to the set - if (elem && !set.includes(elem)) { - set.push(elem); - } - break; - } - elem = elem.parent; - } - }); +exports.closest = function (selector) { + var set = []; + + if (!selector) { return this._make(set); -} -exports.closest = closest; + } + + domEach(this, function (idx, elem) { + var closestElem = traverseParents(this, elem, selector, 1)[0]; + + // Do not add duplicate elements to the set + if (closestElem && set.indexOf(closestElem) < 0) { + set.push(closestElem); + } + }); + + return this._make(set); +}; + /** - * Gets the next sibling of the first selected element, optionally filtered by a selector. + * Gets the next sibling of the first selected element, optionally filtered by + * a selector. * - * @category Traversing * @example * - * ```js - * $('.apple').next().hasClass('orange'); + * $('.apple').next().hasClass('orange') * //=> true - * ``` * - * @param selector - If specified filter for sibling. - * @returns The next nodes. - * @see {@link https://api.jquery.com/next/} + * @param {string} [selector] - If specified filter for sibling. + * + * @see {@link http://api.jquery.com/next/} */ -exports.next = _singleMatcher(function (elem) { return htmlparser2_1.DomUtils.nextElementSibling(elem); }); +exports.next = function (selector) { + if (!this[0]) { + return this; + } + var elems = []; + + this.toArray().forEach(function (elem) { + while ((elem = elem.next)) { + if (isTag(elem)) { + elems.push(elem); + return; + } + } + }); + + return selector + ? exports.filter.call(elems, selector, this) + : this._make(elems); +}; + /** * Gets all the following siblings of the first selected element, optionally * filtered by a selector. * - * @category Traversing * @example * - * ```js - * $('.apple').nextAll(); + * $('.apple').nextAll() * //=> [<li class="orange">Orange</li>, <li class="pear">Pear</li>] - * $('.apple').nextAll('.orange'); + * $('.apple').nextAll('.orange') * //=> [<li class="orange">Orange</li>] - * ``` * - * @param selector - If specified filter for siblings. - * @returns The next nodes. - * @see {@link https://api.jquery.com/nextAll/} + * @param {string} [selector] - If specified filter for siblings. + * + * @see {@link http://api.jquery.com/nextAll/} */ -exports.nextAll = _matcher(function (elem) { - var matched = []; - while (elem.next) { - elem = elem.next; - if (utils_1.isTag(elem)) - matched.push(elem); +exports.nextAll = function (selector) { + if (!this[0]) { + return this; + } + var elems = []; + + this.toArray().forEach(function (elem) { + while ((elem = elem.next)) { + if (isTag(elem) && elems.indexOf(elem) === -1) { + elems.push(elem); + } } - return matched; -}, _removeDuplicates); + }); + + return selector + ? exports.filter.call(elems, selector, this) + : this._make(elems); +}; + /** * Gets all the following siblings up to but not including the element matched * by the selector, optionally filtered by another selector. * - * @category Traversing * @example * - * ```js - * $('.apple').nextUntil('.pear'); + * $('.apple').nextUntil('.pear') * //=> [<li class="orange">Orange</li>] - * ``` * - * @param selector - Selector for element to stop at. - * @param filterSelector - If specified filter for siblings. - * @returns The next nodes. - * @see {@link https://api.jquery.com/nextUntil/} + * @param {string|cheerio|node} selector - Selector for element to stop at. + * @param {string} [filterSelector] - If specified filter for siblings. + * + * @see {@link http://api.jquery.com/nextUntil/} */ -exports.nextUntil = _matchUntil(function (el) { return htmlparser2_1.DomUtils.nextElementSibling(el); }, _removeDuplicates); +exports.nextUntil = function (selector, filterSelector) { + if (!this[0]) { + return this; + } + var elems = []; + var untilNode; + var untilNodes; + + if (typeof selector === 'string') { + untilNode = select.select(selector, this.nextAll().get(), this.options)[0]; + } else if (selector && selector.cheerio) { + untilNodes = selector.get(); + } else if (selector) { + untilNode = selector; + } + + this.toArray().forEach(function (elem) { + while ((elem = elem.next)) { + if ( + (untilNode && elem !== untilNode) || + (untilNodes && untilNodes.indexOf(elem) === -1) || + (!untilNode && !untilNodes) + ) { + if (isTag(elem) && elems.indexOf(elem) === -1) { + elems.push(elem); + } + } else { + break; + } + } + }); + + return filterSelector + ? exports.filter.call(elems, filterSelector, this) + : this._make(elems); +}; + /** * Gets the previous sibling of the first selected element optionally filtered * by a selector. * - * @category Traversing * @example * - * ```js - * $('.orange').prev().hasClass('apple'); + * $('.orange').prev().hasClass('apple') * //=> true - * ``` * - * @param selector - If specified filter for siblings. - * @returns The previous nodes. - * @see {@link https://api.jquery.com/prev/} + * @param {string} [selector] - If specified filter for siblings. + * + * @see {@link http://api.jquery.com/prev/} */ -exports.prev = _singleMatcher(function (elem) { return htmlparser2_1.DomUtils.prevElementSibling(elem); }); +exports.prev = function (selector) { + if (!this[0]) { + return this; + } + var elems = []; + + this.toArray().forEach(function (elem) { + while ((elem = elem.prev)) { + if (isTag(elem)) { + elems.push(elem); + return; + } + } + }); + + return selector + ? exports.filter.call(elems, selector, this) + : this._make(elems); +}; + /** * Gets all the preceding siblings of the first selected element, optionally * filtered by a selector. * - * @category Traversing * @example * - * ```js - * $('.pear').prevAll(); + * $('.pear').prevAll() * //=> [<li class="orange">Orange</li>, <li class="apple">Apple</li>] - * - * $('.pear').prevAll('.orange'); + * $('.pear').prevAll('.orange') * //=> [<li class="orange">Orange</li>] - * ``` * - * @param selector - If specified filter for siblings. - * @returns The previous nodes. - * @see {@link https://api.jquery.com/prevAll/} + * @param {string} [selector] - If specified filter for siblings. + * + * @see {@link http://api.jquery.com/prevAll/} */ -exports.prevAll = _matcher(function (elem) { - var matched = []; - while (elem.prev) { - elem = elem.prev; - if (utils_1.isTag(elem)) - matched.push(elem); +exports.prevAll = function (selector) { + if (!this[0]) { + return this; + } + var elems = []; + + this.toArray().forEach(function (elem) { + while ((elem = elem.prev)) { + if (isTag(elem) && elems.indexOf(elem) === -1) { + elems.push(elem); + } } - return matched; -}, _removeDuplicates); + }); + + return selector + ? exports.filter.call(elems, selector, this) + : this._make(elems); +}; + /** * Gets all the preceding siblings up to but not including the element matched * by the selector, optionally filtered by another selector. * - * @category Traversing * @example * - * ```js - * $('.pear').prevUntil('.apple'); + * $('.pear').prevUntil('.apple') * //=> [<li class="orange">Orange</li>] - * ``` * - * @param selector - Selector for element to stop at. - * @param filterSelector - If specified filter for siblings. - * @returns The previous nodes. - * @see {@link https://api.jquery.com/prevUntil/} + * @param {string|cheerio|node} selector - Selector for element to stop at. + * @param {string} [filterSelector] - If specified filter for siblings. + * + * @see {@link http://api.jquery.com/prevUntil/} */ -exports.prevUntil = _matchUntil(function (el) { return htmlparser2_1.DomUtils.prevElementSibling(el); }, _removeDuplicates); +exports.prevUntil = function (selector, filterSelector) { + if (!this[0]) { + return this; + } + var elems = []; + var untilNode; + var untilNodes; + + if (typeof selector === 'string') { + untilNode = select.select(selector, this.prevAll().get(), this.options)[0]; + } else if (selector && selector.cheerio) { + untilNodes = selector.get(); + } else if (selector) { + untilNode = selector; + } + + this.toArray().forEach(function (elem) { + while ((elem = elem.prev)) { + if ( + (untilNode && elem !== untilNode) || + (untilNodes && untilNodes.indexOf(elem) === -1) || + (!untilNode && !untilNodes) + ) { + if (isTag(elem) && elems.indexOf(elem) === -1) { + elems.push(elem); + } + } else { + break; + } + } + }); + + return filterSelector + ? exports.filter.call(elems, filterSelector, this) + : this._make(elems); +}; + /** - * Get the siblings of each element (excluding the element) in the set of - * matched elements, optionally filtered by a selector. + * Gets the first selected element's siblings, excluding itself. * - * @category Traversing * @example * - * ```js - * $('.pear').siblings().length; + * $('.pear').siblings().length * //=> 2 * - * $('.pear').siblings('.orange').length; + * $('.pear').siblings('.orange').length * //=> 1 - * ``` * - * @param selector - If specified filter for siblings. - * @returns The siblings. - * @see {@link https://api.jquery.com/siblings/} + * @param {string} [selector] - If specified filter for siblings. + * + * @see {@link http://api.jquery.com/siblings/} */ -exports.siblings = _matcher(function (elem) { - return htmlparser2_1.DomUtils.getSiblings(elem).filter(function (el) { return utils_1.isTag(el) && el !== elem; }); -}, uniqueSort); +exports.siblings = function (selector) { + var parent = this.parent(); + + var elems = (parent ? parent.children() : this.siblingsAndMe()) + .toArray() + .filter(function (elem) { + return isTag(elem) && !this.is(elem); + }, this); + + if (selector !== undefined) { + return exports.filter.call(elems, selector, this); + } + return this._make(elems); +}; + /** * Gets the children of the first selected element. * - * @category Traversing * @example * - * ```js - * $('#fruits').children().length; + * $('#fruits').children().length * //=> 3 * - * $('#fruits').children('.pear').text(); + * $('#fruits').children('.pear').text() * //=> Pear - * ``` * - * @param selector - If specified filter for children. - * @returns The children. - * @see {@link https://api.jquery.com/children/} + * @param {string} [selector] - If specified filter for children. + * + * @see {@link http://api.jquery.com/children/} */ -exports.children = _matcher(function (elem) { return htmlparser2_1.DomUtils.getChildren(elem).filter(utils_1.isTag); }, _removeDuplicates); +exports.children = function (selector) { + var elems = this.toArray().reduce(function (newElems, elem) { + return newElems.concat(elem.children.filter(isTag)); + }, []); + + if (selector === undefined) return this._make(elems); + + return exports.filter.call(elems, selector, this); +}; + /** * Gets the children of each element in the set of matched elements, including * text and comment nodes. * - * @category Traversing * @example * - * ```js - * $('#fruits').contents().length; + * $('#fruits').contents().length * //=> 3 - * ``` * - * @returns The children. - * @see {@link https://api.jquery.com/contents/} + * @see {@link http://api.jquery.com/contents/} */ -function contents() { - var elems = this.toArray().reduce(function (newElems, elem) { - return domhandler_1.hasChildren(elem) ? newElems.concat(elem.children) : newElems; - }, []); - return this._make(elems); -} -exports.contents = contents; +exports.contents = function () { + var elems = this.toArray().reduce(function (newElems, elem) { + return newElems.concat(elem.children); + }, []); + return this._make(elems); +}; + /** * Iterates over a cheerio object, executing a function for each matched * element. When the callback is fired, the function is fired in the context of - * the DOM element, so `this` refers to the current element, which is equivalent - * to the function parameter `element`. To break out of the `each` loop early, - * return with `false`. + * the DOM element, so `this` refers to the current element, which is + * equivalent to the function parameter `element`. To break out of the `each` + * loop early, return with `false`. * - * @category Traversing * @example * - * ```js * const fruits = []; * - * $('li').each(function (i, elem) { + * $('li').each(function(i, elem) { * fruits[i] = $(this).text(); * }); * * fruits.join(', '); * //=> Apple, Orange, Pear - * ``` * - * @param fn - Function to execute. - * @returns The instance itself, useful for chaining. - * @see {@link https://api.jquery.com/each/} + * @param {Function} fn - Function to execute. + * + * @see {@link http://api.jquery.com/each/} */ -function each(fn) { - var i = 0; - var len = this.length; - while (i < len && fn.call(this[i], i, this[i]) !== false) - ++i; - return this; -} -exports.each = each; +exports.each = function (fn) { + var i = 0; + var len = this.length; + while (i < len && fn.call(this[i], i, this[i]) !== false) ++i; + return this; +}; + /** * Pass each element in the current matched set through a function, producing a * new Cheerio object containing the return values. The function can return an @@ -60647,649 +60083,662 @@ exports.each = each; * inserted into the set. If the function returns null or undefined, no element * will be inserted. * - * @category Traversing * @example * - * ```js - * $('li') - * .map(function (i, el) { - * // this === el - * return $(this).text(); - * }) - * .toArray() - * .join(' '); + * $('li').map(function(i, el) { + * // this === el + * return $(this).text(); + * }).get().join(' '); * //=> "apple orange pear" - * ``` * - * @param fn - Function to execute. - * @returns The mapped elements, wrapped in a Cheerio collection. - * @see {@link https://api.jquery.com/map/} - */ -function map(fn) { - var elems = []; - for (var i = 0; i < this.length; i++) { - var el = this[i]; - var val = fn.call(el, i, el); - if (val != null) { - elems = elems.concat(val); - } - } - return this._make(elems); -} -exports.map = map; -/** - * Creates a function to test if a filter is matched. + * @param {Function} fn - Function to execute. * - * @param match - A filter. - * @returns A function that determines if a filter has been matched. + * @see {@link http://api.jquery.com/map/} */ -function getFilterFn(match) { - if (typeof match === 'function') { - return function (el, i) { return match.call(el, i, el); }; - } - if (utils_1.isCheerio(match)) { - return function (el) { return Array.prototype.includes.call(match, el); }; +exports.map = function (fn) { + var elems = []; + for (var i = 0; i < this.length; i++) { + var el = this[i]; + var val = fn.call(el, i, el); + if (val != null) { + elems = elems.concat(val); } - return function (el) { - return match === el; + } + return this._make(elems); +}; + +function getFilterFn(match) { + if (typeof match === 'function') { + return function (el, i) { + return match.call(el, i, el); }; + } else if (match.cheerio) { + return match.is.bind(match); + } + return function (el) { + return match === el; + }; } -function filter(match) { - var _a; - return this._make(filterArray(this.toArray(), match, this.options.xmlMode, (_a = this._root) === null || _a === void 0 ? void 0 : _a[0])); -} -exports.filter = filter; -function filterArray(nodes, match, xmlMode, root) { - return typeof match === 'string' - ? select.filter(match, nodes, { xmlMode: xmlMode, root: root }) - : nodes.filter(getFilterFn(match)); -} -exports.filterArray = filterArray; + /** - * Checks the current list of elements and returns `true` if *any* of the - * elements match the selector. If using an element or Cheerio selection, - * returns `true` if *any* of the elements match. If using a predicate function, - * the function is executed in the context of the selected element, so `this` + * Iterates over a cheerio object, reducing the set of selector elements to + * those that match the selector or pass the function's test. When a Cheerio + * selection is specified, return only the elements contained in that + * selection. When an element is specified, return only that element (if it is + * contained in the original selection). If using the function method, the + * function is executed in the context of the selected element, so `this` * refers to the current element. * - * @category Attributes - * @param selector - Selector for the selection. - * @returns Whether or not the selector matches an element of the instance. - * @see {@link https://api.jquery.com/is/} + * @function + * @param {string | Function} match - Value to look for, following the rules above. + * @param {node[]} container - Optional node to filter instead. + * + * @example <caption>Selector</caption> + * + * $('li').filter('.orange').attr('class'); + * //=> orange + * + * @example <caption>Function</caption> + * + * $('li').filter(function(i, el) { + * // this === el + * return $(this).attr('class') === 'orange'; + * }).attr('class') + * //=> orange + * + * @see {@link http://api.jquery.com/filter/} */ -function is(selector) { - var nodes = this.toArray(); - return typeof selector === 'string' - ? select.some(nodes.filter(utils_1.isTag), selector, this.options) - : selector - ? nodes.some(getFilterFn(selector)) - : false; -} -exports.is = is; +exports.filter = function (match, container) { + container = container || this; + var elements = this.toArray ? this.toArray() : this; + + if (typeof match === 'string') { + elements = select.filter(match, elements, container.options); + } else { + elements = elements.filter(getFilterFn(match)); + } + + return container._make(elements); +}; + /** - * Remove elements from the set of matched elements. Given a Cheerio object that + * Remove elements from the set of matched elements. Given a jQuery object that * represents a set of DOM elements, the `.not()` method constructs a new - * Cheerio object from a subset of the matching elements. The supplied selector + * jQuery object from a subset of the matching elements. The supplied selector * is tested against each element; the elements that don't match the selector - * will be included in the result. + * will be included in the result. The `.not()` method can take a function as + * its argument in the same way that `.filter()` does. Elements for which the + * function returns true are excluded from the filtered set; all other elements + * are included. * - * The `.not()` method can take a function as its argument in the same way that - * `.filter()` does. Elements for which the function returns `true` are excluded - * from the filtered set; all other elements are included. + * @function + * @param {string | Function} match - Value to look for, following the rules above. + * @param {node[]} container - Optional node to filter instead. * - * @category Traversing * @example <caption>Selector</caption> * - * ```js * $('li').not('.apple').length; * //=> 2 - * ``` * * @example <caption>Function</caption> * - * ```js - * $('li').not(function (i, el) { + * $('li').not(function(i, el) { * // this === el * return $(this).attr('class') === 'orange'; - * }).length; //=> 2 - * ``` + * }).length; + * //=> 2 * - * @param match - Value to look for, following the rules above. - * @param container - Optional node to filter instead. - * @returns The filtered collection. - * @see {@link https://api.jquery.com/not/} + * @see {@link http://api.jquery.com/not/} */ -function not(match) { - var nodes = this.toArray(); - if (typeof match === 'string') { - var matches_1 = new Set(select.filter(match, nodes, this.options)); - nodes = nodes.filter(function (el) { return !matches_1.has(el); }); - } - else { - var filterFn_1 = getFilterFn(match); - nodes = nodes.filter(function (el, i) { return !filterFn_1(el, i); }); - } - return this._make(nodes); -} -exports.not = not; +exports.not = function (match, container) { + container = container || this; + var elements = container.toArray ? container.toArray() : container; + var matches; + var filterFn; + + if (typeof match === 'string') { + matches = new Set(select.filter(match, elements, this.options)); + elements = elements.filter(function (el) { + return !matches.has(el); + }); + } else { + filterFn = getFilterFn(match); + elements = elements.filter(function (el, i) { + return !filterFn(el, i); + }); + } + + return container._make(elements); +}; + /** * Filters the set of matched elements to only those which have the given DOM * element as a descendant or which have a descendant that matches the given * selector. Equivalent to `.filter(':has(selector)')`. * - * @category Traversing * @example <caption>Selector</caption> * - * ```js * $('ul').has('.pear').attr('id'); * //=> fruits - * ``` * * @example <caption>Element</caption> * - * ```js * $('ul').has($('.pear')[0]).attr('id'); * //=> fruits - * ``` * - * @param selectorOrHaystack - Element to look for. - * @returns The filtered collection. - * @see {@link https://api.jquery.com/has/} + * @param {string|cheerio|node} selectorOrHaystack - Element to look for. + * + * @see {@link http://api.jquery.com/has/} */ -function has(selectorOrHaystack) { - var _this = this; - return this.filter(typeof selectorOrHaystack === 'string' - ? // Using the `:has` selector here short-circuits searches. - ":has(" + selectorOrHaystack + ")" - : function (_, el) { return _this._make(el).find(selectorOrHaystack).length > 0; }); -} -exports.has = has; +exports.has = function (selectorOrHaystack) { + var that = this; + return exports.filter.call(this, function () { + return that._make(this).find(selectorOrHaystack).length > 0; + }); +}; + /** * Will select the first element of a cheerio object. * - * @category Traversing * @example * - * ```js - * $('#fruits').children().first().text(); + * $('#fruits').children().first().text() * //=> Apple - * ``` * - * @returns The first element. - * @see {@link https://api.jquery.com/first/} + * @see {@link http://api.jquery.com/first/} */ -function first() { - return this.length > 1 ? this._make(this[0]) : this; -} -exports.first = first; +exports.first = function () { + return this.length > 1 ? this._make(this[0]) : this; +}; + /** * Will select the last element of a cheerio object. * - * @category Traversing * @example * - * ```js - * $('#fruits').children().last().text(); + * $('#fruits').children().last().text() * //=> Pear - * ``` * - * @returns The last element. - * @see {@link https://api.jquery.com/last/} + * @see {@link http://api.jquery.com/last/} */ -function last() { - return this.length > 0 ? this._make(this[this.length - 1]) : this; -} -exports.last = last; +exports.last = function () { + return this.length > 1 ? this._make(this[this.length - 1]) : this; +}; + /** * Reduce the set of matched elements to the one at the specified index. Use * `.eq(-i)` to count backwards from the last selected element. * - * @category Traversing * @example * - * ```js - * $('li').eq(0).text(); + * $('li').eq(0).text() * //=> Apple * - * $('li').eq(-1).text(); + * $('li').eq(-1).text() * //=> Pear - * ``` * - * @param i - Index of the element to select. - * @returns The element at the `i`th position. - * @see {@link https://api.jquery.com/eq/} + * @param {number} i - Index of the element to select. + * + * @see {@link http://api.jquery.com/eq/} */ -function eq(i) { - var _a; - i = +i; - // Use the first identity optimization if possible - if (i === 0 && this.length <= 1) - return this; - if (i < 0) - i = this.length + i; - return this._make((_a = this[i]) !== null && _a !== void 0 ? _a : []); -} -exports.eq = eq; -function get(i) { - if (i == null) { - return this.toArray(); - } - return this[i < 0 ? this.length + i : i]; -} -exports.get = get; +exports.eq = function (i) { + i = +i; + + // Use the first identity optimization if possible + if (i === 0 && this.length <= 1) return this; + + if (i < 0) i = this.length + i; + return this[i] ? this._make(this[i]) : this._make([]); +}; + /** - * Retrieve all the DOM elements contained in the jQuery set as an array. + * Retrieve the DOM elements matched by the Cheerio object. If an index is + * specified, retrieve one of the elements matched by the Cheerio object. * * @example * - * ```js - * $('li').toArray(); - * //=> [ {...}, {...}, {...} ] - * ``` + * $('li').get(0).tagName + * //=> li + * + * If no index is specified, retrieve all elements matched by the Cheerio object: + * + * @example + * + * $('li').get().length + * //=> 3 + * + * @param {number} [i] - Element to retrieve. * - * @returns The contained items. + * @see {@link http://api.jquery.com/get/} */ -function toArray() { +exports.get = function (i) { + if (i == null) { return Array.prototype.slice.call(this); -} -exports.toArray = toArray; + } + return this[i < 0 ? this.length + i : i]; +}; + /** * Search for a given element from among the matched elements. * - * @category Traversing * @example * - * ```js - * $('.pear').index(); - * //=> 2 $('.orange').index('li'); + * $('.pear').index() + * //=> 2 + * $('.orange').index('li') * //=> 1 - * $('.apple').index($('#fruit, li')); + * $('.apple').index($('#fruit, li')) * //=> 1 - * ``` * - * @param selectorOrNeedle - Element to look for. - * @returns The index of the element. - * @see {@link https://api.jquery.com/index/} + * @param {string|cheerio|node} [selectorOrNeedle] - Element to look for. + * + * @see {@link http://api.jquery.com/index/} */ -function index(selectorOrNeedle) { - var $haystack; - var needle; - if (selectorOrNeedle == null) { - $haystack = this.parent().children(); - needle = this[0]; - } - else if (typeof selectorOrNeedle === 'string') { - $haystack = this._make(selectorOrNeedle); - needle = this[0]; - } - else { - $haystack = this; - needle = utils_1.isCheerio(selectorOrNeedle) - ? selectorOrNeedle[0] - : selectorOrNeedle; - } - return Array.prototype.indexOf.call($haystack, needle); -} -exports.index = index; +exports.index = function (selectorOrNeedle) { + var $haystack; + var needle; + + if (arguments.length === 0) { + $haystack = this.parent().children(); + needle = this[0]; + } else if (typeof selectorOrNeedle === 'string') { + $haystack = this._make(selectorOrNeedle); + needle = this[0]; + } else { + $haystack = this; + needle = selectorOrNeedle.cheerio ? selectorOrNeedle[0] : selectorOrNeedle; + } + + return $haystack.get().indexOf(needle); +}; + /** - * Gets the elements matching the specified range (0-based position). + * Gets the elements matching the specified range. * - * @category Traversing * @example * - * ```js - * $('li').slice(1).eq(0).text(); + * $('li').slice(1).eq(0).text() * //=> 'Orange' * - * $('li').slice(1, 2).length; + * $('li').slice(1, 2).length * //=> 1 - * ``` * - * @param start - An position at which the elements begin to be selected. If - * negative, it indicates an offset from the end of the set. - * @param end - An position at which the elements stop being selected. If - * negative, it indicates an offset from the end of the set. If omitted, the - * range continues until the end of the set. - * @returns The elements matching the specified range. - * @see {@link https://api.jquery.com/slice/} + * @see {@link http://api.jquery.com/slice/} */ -function slice(start, end) { - return this._make(Array.prototype.slice.call(this, start, end)); +exports.slice = function () { + return this._make([].slice.apply(this, arguments)); +}; + +function traverseParents(self, elem, selector, limit) { + var elems = []; + while (elem && elems.length < limit && elem.type !== 'root') { + if (!selector || exports.filter.call([elem], selector, self).length) { + elems.push(elem); + } + elem = elem.parent; + } + return elems; } -exports.slice = slice; + /** * End the most recent filtering operation in the current chain and return the * set of matched elements to its previous state. * - * @category Traversing * @example * - * ```js - * $('li').eq(0).end().length; + * $('li').eq(0).end().length * //=> 3 - * ``` * - * @returns The previous state of the set of matched elements. - * @see {@link https://api.jquery.com/end/} + * @see {@link http://api.jquery.com/end/} */ -function end() { - var _a; - return (_a = this.prevObject) !== null && _a !== void 0 ? _a : this._make([]); -} -exports.end = end; +exports.end = function () { + return this.prevObject || this._make([]); +}; + /** * Add elements to the set of matched elements. * - * @category Traversing * @example * - * ```js - * $('.apple').add('.orange').length; + * $('.apple').add('.orange').length * //=> 2 - * ``` * - * @param other - Elements to add. - * @param context - Optionally the context of the new selection. - * @returns The combined set. - * @see {@link https://api.jquery.com/add/} + * @param {string|cheerio} other - Elements to add. + * @param {cheerio} [context] - Optionally the context of the new selection. + * + * @see {@link http://api.jquery.com/add/} */ -function add(other, context) { - var selection = this._make(other, context); - var contents = uniqueSort(tslib_1.__spreadArray(tslib_1.__spreadArray([], this.get()), selection.get())); - return this._make(contents); -} -exports.add = add; +exports.add = function (other, context) { + var selection = this._make(other, context); + var contents = uniqueSort(selection.get().concat(this.get())); + + for (var i = 0; i < contents.length; ++i) { + selection[i] = contents[i]; + } + selection.length = contents.length; + + return selection; +}; + /** * Add the previous set of elements on the stack to the current set, optionally * filtered by a selector. * - * @category Traversing * @example * - * ```js - * $('li').eq(0).addBack('.orange').length; + * $('li').eq(0).addBack('.orange').length * //=> 2 - * ``` * - * @param selector - Selector for the elements to add. - * @returns The combined set. - * @see {@link https://api.jquery.com/addBack/} + * @param {string} selector - Selector for the elements to add. + * + * @see {@link http://api.jquery.com/addBack/} */ -function addBack(selector) { - return this.prevObject - ? this.add(selector ? this.prevObject.filter(selector) : this.prevObject) - : this; -} -exports.addBack = addBack; +exports.addBack = function (selector) { + return this.add( + arguments.length ? this.prevObject.filter(selector) : this.prevObject + ); +}; /***/ }), -/* 366 */ +/* 367 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - -Object.defineProperty(exports, "__esModule", { value: true }); -exports.clone = exports.text = exports.toString = exports.html = exports.empty = exports.replaceWith = exports.remove = exports.insertBefore = exports.before = exports.insertAfter = exports.after = exports.wrapAll = exports.unwrap = exports.wrapInner = exports.wrap = exports.prepend = exports.append = exports.prependTo = exports.appendTo = exports._makeDomArray = void 0; -var tslib_1 = __webpack_require__(276); -var domhandler_1 = __webpack_require__(288); /** * Methods for modifying the DOM structure. * * @module cheerio/manipulation */ -var domhandler_2 = __webpack_require__(288); -var parse_1 = tslib_1.__importStar(__webpack_require__(362)); -var static_1 = __webpack_require__(280); -var utils_1 = __webpack_require__(363); -var htmlparser2_1 = __webpack_require__(325); + +var parse = __webpack_require__(351); +var html = __webpack_require__(273).html; +var text = __webpack_require__(273).text; +var updateDOM = parse.update; +var utils = __webpack_require__(364); +var domEach = utils.domEach; +var cloneDom = utils.cloneDom; +var isHtml = utils.isHtml; +var slice = Array.prototype.slice; +var domhandler = __webpack_require__(360); +var DomUtils = __webpack_require__(352).DomUtils; + /** - * Create an array of nodes, recursing into arrays and parsing strings if necessary. + * Create an array of nodes, recursing into arrays and parsing strings if + * necessary. * + * @param {cheerio|string|cheerio[]|string[]} [elem] - Elements to make an array of. + * @param {boolean} [clone] - Optionally clone nodes. * @private - * @category Manipulation - * @param elem - Elements to make an array of. - * @param clone - Optionally clone nodes. - * @returns The array of nodes. */ -function _makeDomArray(elem, clone) { - var _this = this; - if (elem == null) { - return []; - } - if (utils_1.isCheerio(elem)) { - return clone ? utils_1.cloneDom(elem.get()) : elem.get(); - } - if (Array.isArray(elem)) { - return elem.reduce(function (newElems, el) { return newElems.concat(_this._makeDomArray(el, clone)); }, []); - } - if (typeof elem === 'string') { - return parse_1.default(elem, this.options, false).children; - } - return clone ? utils_1.cloneDom([elem]) : [elem]; -} -exports._makeDomArray = _makeDomArray; -function _insert(concatenator) { - return function () { - var _this = this; - var elems = []; - for (var _i = 0; _i < arguments.length; _i++) { - elems[_i] = arguments[_i]; - } - var lastIdx = this.length - 1; - return utils_1.domEach(this, function (el, i) { - if (!domhandler_1.hasChildren(el)) - return; - var domSrc = typeof elems[0] === 'function' - ? elems[0].call(el, i, static_1.html(el.children)) - : elems; - var dom = _this._makeDomArray(domSrc, i < lastIdx); - concatenator(dom, el.children, el); - }); - }; -} -/** +exports._makeDomArray = function makeDomArray(elem, clone) { + if (elem == null) { + return []; + } else if (elem.cheerio) { + return clone ? cloneDom(elem.get(), elem.options) : elem.get(); + } else if (Array.isArray(elem)) { + return elem.reduce( + function (newElems, el) { + return newElems.concat(this._makeDomArray(el, clone)); + }.bind(this), + [] + ); + } else if (typeof elem === 'string') { + return parse(elem, this.options, false).children; + } + return clone ? cloneDom([elem]) : [elem]; +}; + +var _insert = function (concatenator) { + return function () { + var elems = slice.call(arguments); + var lastIdx = this.length - 1; + + return domEach(this, function (i, el) { + var dom; + var domSrc; + + if (typeof elems[0] === 'function') { + domSrc = elems[0].call(el, i, html(el.children)); + } else { + domSrc = elems; + } + + dom = this._makeDomArray(domSrc, i < lastIdx); + concatenator(dom, el.children, el); + }); + }; +}; + +/* * Modify an array in-place, removing some number of elements and adding new * elements directly following them. * + * @param {Array} array Target array to splice. + * @param {Number} spliceIdx Index at which to begin changing the array. + * @param {Number} spliceCount Number of elements to remove from the array. + * @param {Array} newElems Elements to insert into the array. + * * @private - * @category Manipulation - * @param array - Target array to splice. - * @param spliceIdx - Index at which to begin changing the array. - * @param spliceCount - Number of elements to remove from the array. - * @param newElems - Elements to insert into the array. - * @param parent - The parent of the node. - * @returns The spliced array. - */ -function uniqueSplice(array, spliceIdx, spliceCount, newElems, parent) { - var _a, _b; - var spliceArgs = tslib_1.__spreadArray([ - spliceIdx, - spliceCount - ], newElems); - var prev = array[spliceIdx - 1] || null; - var next = array[spliceIdx + spliceCount] || null; - /* - * Before splicing in new elements, ensure they do not already appear in the - * current array. - */ - for (var idx = 0; idx < newElems.length; ++idx) { - var node = newElems[idx]; - var oldParent = node.parent; - if (oldParent) { - var prevIdx = oldParent.children.indexOf(newElems[idx]); - if (prevIdx > -1) { - oldParent.children.splice(prevIdx, 1); - if (parent === oldParent && spliceIdx > prevIdx) { - spliceArgs[0]--; - } - } - } - node.parent = parent; - if (node.prev) { - node.prev.next = (_a = node.next) !== null && _a !== void 0 ? _a : null; - } - if (node.next) { - node.next.prev = (_b = node.prev) !== null && _b !== void 0 ? _b : null; - } - node.prev = newElems[idx - 1] || prev; - node.next = newElems[idx + 1] || next; + */ +var uniqueSplice = function (array, spliceIdx, spliceCount, newElems, parent) { + var spliceArgs = [spliceIdx, spliceCount].concat(newElems); + var prev = array[spliceIdx - 1] || null; + var next = array[spliceIdx + spliceCount] || null; + var idx; + var len; + var prevIdx; + var node; + var oldParent; + + // Before splicing in new elements, ensure they do not already appear in the + // current array. + for (idx = 0, len = newElems.length; idx < len; ++idx) { + node = newElems[idx]; + oldParent = node.parent; + prevIdx = oldParent && oldParent.children.indexOf(newElems[idx]); + + if (oldParent && prevIdx > -1) { + oldParent.children.splice(prevIdx, 1); + if (parent === oldParent && spliceIdx > prevIdx) { + spliceArgs[0]--; + } } - if (prev) { - prev.next = newElems[0]; + + node.parent = parent; + + if (node.prev) { + node.prev.next = node.next || null; } - if (next) { - next.prev = newElems[newElems.length - 1]; + + if (node.next) { + node.next.prev = node.prev || null; } - return array.splice.apply(array, spliceArgs); -} + + node.prev = newElems[idx - 1] || prev; + node.next = newElems[idx + 1] || next; + } + + if (prev) { + prev.next = newElems[0]; + } + if (next) { + next.prev = newElems[newElems.length - 1]; + } + return array.splice.apply(array, spliceArgs); +}; + /** - * Insert every element in the set of matched elements to the end of the target. + * Insert every element in the set of matched elements to the end of the + * target. + * + * @param {string|cheerio} target - Element to append elements to. * - * @category Manipulation * @example * - * ```js - * $('<li class="plum">Plum</li>').appendTo('#fruits'); - * $.html(); + * $('<li class="plum">Plum</li>').appendTo('#fruits') + * $.html() * //=> <ul id="fruits"> * // <li class="apple">Apple</li> * // <li class="orange">Orange</li> * // <li class="pear">Pear</li> * // <li class="plum">Plum</li> * // </ul> - * ``` * - * @param target - Element to append elements to. - * @returns The instance itself. - * @see {@link https://api.jquery.com/appendTo/} + * @see {@link http://api.jquery.com/appendTo/} */ -function appendTo(target) { - var appendTarget = utils_1.isCheerio(target) ? target : this._make(target); - appendTarget.append(this); - return this; -} -exports.appendTo = appendTo; +exports.appendTo = function (target) { + if (!target.cheerio) { + target = this.constructor.call( + this.constructor, + target, + null, + this._originalRoot + ); + } + + target.append(this); + + return this; +}; + /** - * Insert every element in the set of matched elements to the beginning of the target. + * Insert every element in the set of matched elements to the beginning of the + * target. + * + * @param {string|cheerio} target - Element to prepend elements to. * - * @category Manipulation * @example * - * ```js - * $('<li class="plum">Plum</li>').prependTo('#fruits'); - * $.html(); + * $('<li class="plum">Plum</li>').prependTo('#fruits') + * $.html() * //=> <ul id="fruits"> * // <li class="plum">Plum</li> * // <li class="apple">Apple</li> * // <li class="orange">Orange</li> * // <li class="pear">Pear</li> * // </ul> - * ``` * - * @param target - Element to prepend elements to. - * @returns The instance itself. - * @see {@link https://api.jquery.com/prependTo/} + * @see {@link http://api.jquery.com/prependTo/} */ -function prependTo(target) { - var prependTarget = utils_1.isCheerio(target) ? target : this._make(target); - prependTarget.prepend(this); - return this; -} -exports.prependTo = prependTo; +exports.prependTo = function (target) { + if (!target.cheerio) { + target = this.constructor.call( + this.constructor, + target, + null, + this._originalRoot + ); + } + + target.prepend(this); + + return this; +}; + /** * Inserts content as the *last* child of each of the selected elements. * - * @category Manipulation + * @function + * * @example * - * ```js - * $('ul').append('<li class="plum">Plum</li>'); - * $.html(); + * $('ul').append('<li class="plum">Plum</li>') + * $.html() * //=> <ul id="fruits"> * // <li class="apple">Apple</li> * // <li class="orange">Orange</li> * // <li class="pear">Pear</li> * // <li class="plum">Plum</li> * // </ul> - * ``` * - * @see {@link https://api.jquery.com/append/} + * @see {@link http://api.jquery.com/append/} */ exports.append = _insert(function (dom, children, parent) { - uniqueSplice(children, children.length, 0, dom, parent); + uniqueSplice(children, children.length, 0, dom, parent); }); + /** * Inserts content as the *first* child of each of the selected elements. * - * @category Manipulation + * @function + * * @example * - * ```js - * $('ul').prepend('<li class="plum">Plum</li>'); - * $.html(); + * $('ul').prepend('<li class="plum">Plum</li>') + * $.html() * //=> <ul id="fruits"> * // <li class="plum">Plum</li> * // <li class="apple">Apple</li> * // <li class="orange">Orange</li> * // <li class="pear">Pear</li> * // </ul> - * ``` * - * @see {@link https://api.jquery.com/prepend/} + * @see {@link http://api.jquery.com/prepend/} */ exports.prepend = _insert(function (dom, children, parent) { - uniqueSplice(children, 0, 0, dom, parent); + uniqueSplice(children, 0, 0, dom, parent); }); + function _wrap(insert) { - return function (wrapper) { - var lastIdx = this.length - 1; - var lastParent = this.parents().last(); - for (var i = 0; i < this.length; i++) { - var el = this[i]; - var wrap_1 = typeof wrapper === 'function' - ? wrapper.call(el, i, el) - : typeof wrapper === 'string' && !utils_1.isHtml(wrapper) - ? lastParent.find(wrapper).clone() - : wrapper; - var wrapperDom = this._makeDomArray(wrap_1, i < lastIdx)[0]; - if (!wrapperDom || !htmlparser2_1.DomUtils.hasChildren(wrapperDom)) - continue; - var elInsertLocation = wrapperDom; - /* - * Find the deepest child. Only consider the first tag child of each node - * (ignore text); stop if no children are found. - */ - var j = 0; - while (j < elInsertLocation.children.length) { - var child = elInsertLocation.children[j]; - if (utils_1.isTag(child)) { - elInsertLocation = child; - j = 0; - } - else { - j++; - } - } - insert(el, elInsertLocation, [wrapperDom]); + return function (wrapper) { + var wrapperFn = typeof wrapper === 'function' && wrapper; + var lastIdx = this.length - 1; + var lastParent = this.parents().last(); + + for (var i = 0; i < this.length; i++) { + var el = this[i]; + var wrapperDom; + var elInsertLocation; + var j; + + if (wrapperFn) { + wrapper = wrapperFn.call(el, i); + } + + if (typeof wrapper === 'string' && !isHtml(wrapper)) { + wrapper = lastParent.find(wrapper).clone(); + } + + wrapperDom = this._makeDomArray(wrapper, i < lastIdx).slice(0, 1); + elInsertLocation = wrapperDom[0]; + // Find the deepest child. Only consider the first tag child of each node + // (ignore text); stop if no children are found. + j = 0; + + while (elInsertLocation && elInsertLocation.children) { + if (j >= elInsertLocation.children.length) { + break; } - return this; - }; + + if (elInsertLocation.children[j].type === 'tag') { + elInsertLocation = elInsertLocation.children[j]; + j = 0; + } else { + j++; + } + } + + insert(el, elInsertLocation, wrapperDom); + } + + return this; + }; } + /** * The .wrap() function can take any string or object that could be passed to * the $() factory function to specify a DOM structure. This structure may be * nested several levels deep, but should contain only one inmost element. A - * copy of this structure will be wrapped around each of the elements in the set - * of matched elements. This method returns the original set of elements for - * chaining purposes. + * copy of this structure will be wrapped around each of the elements in the + * set of matched elements. This method returns the original set of elements + * for chaining purposes. + * + * @param {cheerio} wrapper - The DOM structure to wrap around each element in the selection. * - * @category Manipulation * @example * - * ```js - * const redFruit = $('<div class="red-fruit"></div>'); - * $('.apple').wrap(redFruit); + * const redFruit = $('<div class="red-fruit"></div>') + * $('.apple').wrap(redFruit) * * //=> <ul id="fruits"> * // <div class="red-fruit"> @@ -61299,8 +60748,8 @@ function _wrap(insert) { * // <li class="plum">Plum</li> * // </ul> * - * const healthy = $('<div class="healthy"></div>'); - * $('li').wrap(healthy); + * const healthy = $('<div class="healthy"></div>') + * $('li').wrap(healthy) * * //=> <ul id="fruits"> * // <div class="healthy"> @@ -61313,38 +60762,34 @@ function _wrap(insert) { * // <li class="plum">Plum</li> * // </div> * // </ul> - * ``` * - * @param wrapper - The DOM structure to wrap around each element in the selection. - * @see {@link https://api.jquery.com/wrap/} + * @see {@link http://api.jquery.com/wrap/} */ exports.wrap = _wrap(function (el, elInsertLocation, wrapperDom) { - var parent = el.parent; - if (!parent) - return; - var siblings = parent.children; - var index = siblings.indexOf(el); - parse_1.update([el], elInsertLocation); - /* - * The previous operation removed the current element from the `siblings` - * array, so the `dom` array can be inserted without removing any - * additional elements. - */ - uniqueSplice(siblings, index, 0, wrapperDom, parent); + var parent = el.parent; + var siblings = parent.children; + var index = siblings.indexOf(el); + + updateDOM([el], elInsertLocation); + // The previous operation removed the current element from the `siblings` + // array, so the `dom` array can be inserted without removing any + // additional elements. + uniqueSplice(siblings, index, 0, wrapperDom, parent); }); + /** - * The .wrapInner() function can take any string or object that could be passed - * to the $() factory function to specify a DOM structure. This structure may be + * The .wrapInner() function can take any string or object that could be passed to + * the $() factory function to specify a DOM structure. This structure may be * nested several levels deep, but should contain only one inmost element. The - * structure will be wrapped around the content of each of the elements in the - * set of matched elements. + * structure will be wrapped around the content of each of the elements in the set + * of matched elements. + * + * @param {cheerio} wrapper - The DOM structure to wrap around the content of each element in the selection. * - * @category Manipulation * @example * - * ```js - * const redFruit = $('<div class="red-fruit"></div>'); - * $('.apple').wrapInner(redFruit); + * const redFruit = $('<div class="red-fruit"></div>') + * $('.apple').wrapInner(redFruit) * * //=> <ul id="fruits"> * // <li class="apple"> @@ -61354,8 +60799,8 @@ exports.wrap = _wrap(function (el, elInsertLocation, wrapperDom) { * // <li class="pear">Pear</li> * // </ul> * - * const healthy = $('<div class="healthy"></div>'); - * $('li').wrapInner(healthy); + * const healthy = $('<div class="healthy"></div>') + * $('li').wrapInner(healthy) * * //=> <ul id="fruits"> * // <li class="apple"> @@ -61368,715 +60813,642 @@ exports.wrap = _wrap(function (el, elInsertLocation, wrapperDom) { * // <div class="healthy">Pear</div> * // </li> * // </ul> - * ``` * - * @param wrapper - The DOM structure to wrap around the content of each element - * in the selection. - * @returns The instance itself, for chaining. - * @see {@link https://api.jquery.com/wrapInner/} + * @see {@link http://api.jquery.com/wrapInner/} */ exports.wrapInner = _wrap(function (el, elInsertLocation, wrapperDom) { - if (!domhandler_1.hasChildren(el)) - return; - parse_1.update(el.children, elInsertLocation); - parse_1.update(wrapperDom, el); + updateDOM(el.children, elInsertLocation); + updateDOM(wrapperDom, el); }); -/** - * The .unwrap() function, removes the parents of the set of matched elements - * from the DOM, leaving the matched elements in their place. - * - * @category Manipulation - * @example <caption>without selector</caption> - * - * ```js - * const $ = cheerio.load( - * '<div id=test>\n <div><p>Hello</p></div>\n <div><p>World</p></div>\n</div>' - * ); - * $('#test p').unwrap(); - * - * //=> <div id=test> - * // <p>Hello</p> - * // <p>World</p> - * // </div> - * ``` - * - * @example <caption>with selector</caption> - * - * ```js - * const $ = cheerio.load( - * '<div id=test>\n <p>Hello</p>\n <b><p>World</p></b>\n</div>' - * ); - * $('#test p').unwrap('b'); - * - * //=> <div id=test> - * // <p>Hello</p> - * // <p>World</p> - * // </div> - * ``` - * - * @param selector - A selector to check the parent element against. If an - * element's parent does not match the selector, the element won't be unwrapped. - * @returns The instance itself, for chaining. - * @see {@link https://api.jquery.com/unwrap/} - */ -function unwrap(selector) { - var _this = this; - this.parent(selector) - .not('body') - .each(function (_, el) { - _this._make(el).replaceWith(el.children); - }); - return this; -} -exports.unwrap = unwrap; -/** - * The .wrapAll() function can take any string or object that could be passed to - * the $() function to specify a DOM structure. This structure may be nested - * several levels deep, but should contain only one inmost element. The - * structure will be wrapped around all of the elements in the set of matched - * elements, as a single group. - * - * @category Manipulation - * @example <caption>With markup passed to `wrapAll`</caption> - * - * ```js - * const $ = cheerio.load( - * '<div class="container"><div class="inner">First</div><div class="inner">Second</div></div>' - * ); - * $('.inner').wrapAll("<div class='new'></div>"); - * - * //=> <div class="container"> - * // <div class='new'> - * // <div class="inner">First</div> - * // <div class="inner">Second</div> - * // </div> - * // </div> - * ``` - * - * @example <caption>With an existing cheerio instance</caption> - * - * ```js - * const $ = cheerio.load( - * '<span>Span 1</span><strong>Strong</strong><span>Span 2</span>' - * ); - * const wrap = $('<div><p><em><b></b></em></p></div>'); - * $('span').wrapAll(wrap); - * - * //=> <div> - * // <p> - * // <em> - * // <b> - * // <span>Span 1</span> - * // <span>Span 2</span> - * // </b> - * // </em> - * // </p> - * // </div> - * // <strong>Strong</strong> - * ``` - * - * @param wrapper - The DOM structure to wrap around all matched elements in the - * selection. - * @returns The instance itself. - * @see {@link https://api.jquery.com/wrapAll/} - */ -function wrapAll(wrapper) { - var el = this[0]; - if (el) { - var wrap_2 = this._make(typeof wrapper === 'function' ? wrapper.call(el, 0, el) : wrapper).insertBefore(el); - // If html is given as wrapper, wrap may contain text elements - var elInsertLocation = void 0; - for (var i = 0; i < wrap_2.length; i++) { - if (wrap_2[i].type === 'tag') - elInsertLocation = wrap_2[i]; - } - var j = 0; - /* - * Find the deepest child. Only consider the first tag child of each node - * (ignore text); stop if no children are found. - */ - while (elInsertLocation && j < elInsertLocation.children.length) { - var child = elInsertLocation.children[j]; - if (child.type === 'tag') { - elInsertLocation = child; - j = 0; - } - else { - j++; - } - } - if (elInsertLocation) - this._make(elInsertLocation).append(this); - } - return this; -} -exports.wrapAll = wrapAll; -/* eslint-disable jsdoc/check-param-names*/ + /** * Insert content next to each element in the set of matched elements. * - * @category Manipulation * @example * - * ```js - * $('.apple').after('<li class="plum">Plum</li>'); - * $.html(); + * $('.apple').after('<li class="plum">Plum</li>') + * $.html() * //=> <ul id="fruits"> * // <li class="apple">Apple</li> * // <li class="plum">Plum</li> * // <li class="orange">Orange</li> * // <li class="pear">Pear</li> * // </ul> - * ``` * - * @param content - HTML string, DOM element, array of DOM elements or Cheerio - * to insert after each element in the set of matched elements. - * @returns The instance itself. - * @see {@link https://api.jquery.com/after/} + * @see {@link http://api.jquery.com/after/} */ -function after() { - var _this = this; - var elems = []; - for (var _i = 0; _i < arguments.length; _i++) { - elems[_i] = arguments[_i]; +exports.after = function () { + var elems = slice.call(arguments); + var lastIdx = this.length - 1; + + domEach(this, function (i, el) { + var parent = el.parent; + if (!parent) { + return; } - var lastIdx = this.length - 1; - return utils_1.domEach(this, function (el, i) { - var parent = el.parent; - if (!htmlparser2_1.DomUtils.hasChildren(el) || !parent) { - return; - } - var siblings = parent.children; - var index = siblings.indexOf(el); - // If not found, move on - /* istanbul ignore next */ - if (index < 0) - return; - var domSrc = typeof elems[0] === 'function' - ? elems[0].call(el, i, static_1.html(el.children)) - : elems; - var dom = _this._makeDomArray(domSrc, i < lastIdx); - // Add element after `this` element - uniqueSplice(siblings, index + 1, 0, dom, parent); - }); -} -exports.after = after; -/* eslint-enable jsdoc/check-param-names*/ + + var siblings = parent.children; + var index = siblings.indexOf(el); + var domSrc; + var dom; + + // If not found, move on + if (index < 0) return; + + if (typeof elems[0] === 'function') { + domSrc = elems[0].call(el, i, html(el.children)); + } else { + domSrc = elems; + } + dom = this._makeDomArray(domSrc, i < lastIdx); + + // Add element after `this` element + uniqueSplice(siblings, index + 1, 0, dom, parent); + }); + + return this; +}; + /** * Insert every element in the set of matched elements after the target. * - * @category Manipulation * @example * - * ```js - * $('<li class="plum">Plum</li>').insertAfter('.apple'); - * $.html(); + * $('<li class="plum">Plum</li>').insertAfter('.apple') + * $.html() * //=> <ul id="fruits"> * // <li class="apple">Apple</li> * // <li class="plum">Plum</li> * // <li class="orange">Orange</li> * // <li class="pear">Pear</li> * // </ul> - * ``` * - * @param target - Element to insert elements after. - * @returns The set of newly inserted elements. - * @see {@link https://api.jquery.com/insertAfter/} + * @param {string|cheerio} target - Element to insert elements after. + * + * @see {@link http://api.jquery.com/insertAfter/} */ -function insertAfter(target) { - var _this = this; - if (typeof target === 'string') { - target = this._make(target); - } - this.remove(); - var clones = []; - this._makeDomArray(target).forEach(function (el) { - var clonedSelf = _this.clone().toArray(); - var parent = el.parent; - if (!parent) { - return; - } - var siblings = parent.children; - var index = siblings.indexOf(el); - // If not found, move on - /* istanbul ignore next */ - if (index < 0) - return; - // Add cloned `this` element(s) after target element - uniqueSplice(siblings, index + 1, 0, clonedSelf, parent); - clones.push.apply(clones, clonedSelf); - }); - return this._make(clones); -} -exports.insertAfter = insertAfter; -/* eslint-disable jsdoc/check-param-names*/ +exports.insertAfter = function (target) { + var clones = []; + var self = this; + if (typeof target === 'string') { + target = this.constructor.call( + this.constructor, + target, + null, + this._originalRoot + ); + } + target = this._makeDomArray(target); + self.remove(); + domEach(target, function (i, el) { + var clonedSelf = self._makeDomArray(self.clone()); + var parent = el.parent; + if (!parent) { + return; + } + + var siblings = parent.children; + var index = siblings.indexOf(el); + + // If not found, move on + if (index < 0) return; + + // Add cloned `this` element(s) after target element + uniqueSplice(siblings, index + 1, 0, clonedSelf, parent); + clones.push(clonedSelf); + }); + return this.constructor.call(this.constructor, this._makeDomArray(clones)); +}; + /** * Insert content previous to each element in the set of matched elements. * - * @category Manipulation * @example * - * ```js - * $('.apple').before('<li class="plum">Plum</li>'); - * $.html(); + * $('.apple').before('<li class="plum">Plum</li>') + * $.html() * //=> <ul id="fruits"> * // <li class="plum">Plum</li> * // <li class="apple">Apple</li> * // <li class="orange">Orange</li> * // <li class="pear">Pear</li> * // </ul> - * ``` * - * @param content - HTML string, DOM element, array of DOM elements or Cheerio - * to insert before each element in the set of matched elements. - * @returns The instance itself. - * @see {@link https://api.jquery.com/before/} + * @see {@link http://api.jquery.com/before/} */ -function before() { - var _this = this; - var elems = []; - for (var _i = 0; _i < arguments.length; _i++) { - elems[_i] = arguments[_i]; +exports.before = function () { + var elems = slice.call(arguments); + var lastIdx = this.length - 1; + + domEach(this, function (i, el) { + var parent = el.parent; + if (!parent) { + return; } - var lastIdx = this.length - 1; - return utils_1.domEach(this, function (el, i) { - var parent = el.parent; - if (!htmlparser2_1.DomUtils.hasChildren(el) || !parent) { - return; - } - var siblings = parent.children; - var index = siblings.indexOf(el); - // If not found, move on - /* istanbul ignore next */ - if (index < 0) - return; - var domSrc = typeof elems[0] === 'function' - ? elems[0].call(el, i, static_1.html(el.children)) - : elems; - var dom = _this._makeDomArray(domSrc, i < lastIdx); - // Add element before `el` element - uniqueSplice(siblings, index, 0, dom, parent); - }); -} -exports.before = before; -/* eslint-enable jsdoc/check-param-names*/ + + var siblings = parent.children; + var index = siblings.indexOf(el); + var domSrc; + var dom; + + // If not found, move on + if (index < 0) return; + + if (typeof elems[0] === 'function') { + domSrc = elems[0].call(el, i, html(el.children)); + } else { + domSrc = elems; + } + + dom = this._makeDomArray(domSrc, i < lastIdx); + + // Add element before `el` element + uniqueSplice(siblings, index, 0, dom, parent); + }); + + return this; +}; + /** * Insert every element in the set of matched elements before the target. * - * @category Manipulation * @example * - * ```js - * $('<li class="plum">Plum</li>').insertBefore('.apple'); - * $.html(); + * $('<li class="plum">Plum</li>').insertBefore('.apple') + * $.html() * //=> <ul id="fruits"> * // <li class="plum">Plum</li> * // <li class="apple">Apple</li> * // <li class="orange">Orange</li> * // <li class="pear">Pear</li> * // </ul> - * ``` * - * @param target - Element to insert elements before. - * @returns The set of newly inserted elements. - * @see {@link https://api.jquery.com/insertBefore/} + * @param {string|cheerio} target - Element to insert elements before. + * + * @see {@link http://api.jquery.com/insertBefore/} */ -function insertBefore(target) { - var _this = this; - var targetArr = this._make(target); - this.remove(); - var clones = []; - utils_1.domEach(targetArr, function (el) { - var clonedSelf = _this.clone().toArray(); - var parent = el.parent; - if (!parent) { - return; - } - var siblings = parent.children; - var index = siblings.indexOf(el); - // If not found, move on - /* istanbul ignore next */ - if (index < 0) - return; - // Add cloned `this` element(s) after target element - uniqueSplice(siblings, index, 0, clonedSelf, parent); - clones.push.apply(clones, clonedSelf); - }); - return this._make(clones); -} -exports.insertBefore = insertBefore; +exports.insertBefore = function (target) { + var clones = []; + var self = this; + if (typeof target === 'string') { + target = this.constructor.call( + this.constructor, + target, + null, + this._originalRoot + ); + } + target = this._makeDomArray(target); + self.remove(); + domEach(target, function (i, el) { + var clonedSelf = self._makeDomArray(self.clone()); + var parent = el.parent; + if (!parent) { + return; + } + + var siblings = parent.children; + var index = siblings.indexOf(el); + + // If not found, move on + if (index < 0) return; + + // Add cloned `this` element(s) after target element + uniqueSplice(siblings, index, 0, clonedSelf, parent); + clones.push(clonedSelf); + }); + return this.constructor.call(this.constructor, this._makeDomArray(clones)); +}; + /** * Removes the set of matched elements from the DOM and all their children. * `selector` filters the set of matched elements to be removed. * - * @category Manipulation * @example * - * ```js - * $('.pear').remove(); - * $.html(); + * $('.pear').remove() + * $.html() * //=> <ul id="fruits"> * // <li class="apple">Apple</li> * // <li class="orange">Orange</li> * // </ul> - * ``` * - * @param selector - Optional selector for elements to remove. - * @returns The instance itself. - * @see {@link https://api.jquery.com/remove/} + * @param {string} [selector] - Optional selector for elements to remove. + * + * @see {@link http://api.jquery.com/remove/} */ -function remove(selector) { - // Filter if we have selector - var elems = selector ? this.filter(selector) : this; - utils_1.domEach(elems, function (el) { - htmlparser2_1.DomUtils.removeElement(el); - el.prev = el.next = el.parent = null; - }); - return this; -} -exports.remove = remove; +exports.remove = function (selector) { + var elems = this; + + // Filter if we have selector + if (selector) elems = elems.filter(selector); + + domEach(elems, function (i, el) { + DomUtils.removeElement(el); + el.prev = el.next = el.parent = null; + }); + + return this; +}; + /** * Replaces matched elements with `content`. * - * @category Manipulation * @example * - * ```js - * const plum = $('<li class="plum">Plum</li>'); - * $('.pear').replaceWith(plum); - * $.html(); + * const plum = $('<li class="plum">Plum</li>') + * $('.pear').replaceWith(plum) + * $.html() * //=> <ul id="fruits"> * // <li class="apple">Apple</li> * // <li class="orange">Orange</li> * // <li class="plum">Plum</li> * // </ul> - * ``` * - * @param content - Replacement for matched elements. - * @returns The instance itself. - * @see {@link https://api.jquery.com/replaceWith/} + * @param {cheerio|Function} content - Replacement for matched elements. + * + * @see {@link http://api.jquery.com/replaceWith/} */ -function replaceWith(content) { - var _this = this; - return utils_1.domEach(this, function (el, i) { - var parent = el.parent; - if (!parent) { - return; - } - var siblings = parent.children; - var cont = typeof content === 'function' ? content.call(el, i, el) : content; - var dom = _this._makeDomArray(cont); - /* - * In the case that `dom` contains nodes that already exist in other - * structures, ensure those nodes are properly removed. - */ - parse_1.update(dom, null); - var index = siblings.indexOf(el); - // Completely remove old element - uniqueSplice(siblings, index, 1, dom, parent); - if (!dom.includes(el)) { - el.parent = el.prev = el.next = null; - } - }); -} -exports.replaceWith = replaceWith; +exports.replaceWith = function (content) { + var self = this; + + domEach(this, function (i, el) { + var parent = el.parent; + if (!parent) { + return; + } + + var siblings = parent.children; + var dom = self._makeDomArray( + typeof content === 'function' ? content.call(el, i, el) : content + ); + var index; + + // In the case that `dom` contains nodes that already exist in other + // structures, ensure those nodes are properly removed. + updateDOM(dom, null); + + index = siblings.indexOf(el); + + // Completely remove old element + uniqueSplice(siblings, index, 1, dom, parent); + el.parent = el.prev = el.next = null; + }); + + return this; +}; + /** * Empties an element, removing all its children. * - * @category Manipulation * @example * - * ```js - * $('ul').empty(); - * $.html(); + * $('ul').empty() + * $.html() * //=> <ul id="fruits"></ul> - * ``` * - * @returns The instance itself. - * @see {@link https://api.jquery.com/empty/} + * @see {@link http://api.jquery.com/empty/} */ -function empty() { - return utils_1.domEach(this, function (el) { - if (!htmlparser2_1.DomUtils.hasChildren(el)) - return; - el.children.forEach(function (child) { - child.next = child.prev = child.parent = null; - }); - el.children.length = 0; +exports.empty = function () { + domEach(this, function (i, el) { + el.children.forEach(function (child) { + child.next = child.prev = child.parent = null; }); -} -exports.empty = empty; -function html(str) { - if (str === undefined) { - var el = this[0]; - if (!el || !htmlparser2_1.DomUtils.hasChildren(el)) - return null; - return static_1.html(el.children, this.options); - } - // Keep main options unchanged - var opts = tslib_1.__assign(tslib_1.__assign({}, this.options), { context: null }); - return utils_1.domEach(this, function (el) { - if (!htmlparser2_1.DomUtils.hasChildren(el)) - return; - el.children.forEach(function (child) { - child.next = child.prev = child.parent = null; - }); - opts.context = el; - var content = utils_1.isCheerio(str) - ? str.toArray() - : parse_1.default("" + str, opts, false).children; - parse_1.update(content, el); + + el.children.length = 0; + }); + return this; +}; + +/** + * Gets an HTML content string from the first selected element. If `htmlString` + * is specified, each selected element's content is replaced by the new + * content. + * + * @param {string} str - If specified used to replace selection's contents. + * + * @example + * + * $('.orange').html() + * //=> Orange + * + * $('#fruits').html('<li class="mango">Mango</li>').html() + * //=> <li class="mango">Mango</li> + * + * @see {@link http://api.jquery.com/html/} + */ +exports.html = function (str) { + if (str === undefined) { + if (!this[0] || !this[0].children) return null; + return html(this[0].children, this.options); + } + + var opts = this.options; + + domEach(this, function (i, el) { + el.children.forEach(function (child) { + child.next = child.prev = child.parent = null; }); -} -exports.html = html; + + var content = str.cheerio + ? str.clone().get() + : parse('' + str, opts, false).children; + + updateDOM(content, el); + }); + + return this; +}; + +exports.toString = function () { + return html(this, this.options); +}; + /** - * Turns the collection to a string. Alias for `.html()`. + * Get the combined text contents of each element in the set of matched + * elements, including their descendants. If `textString` is specified, each + * selected element's content is replaced by the new text content. + * + * @param {string} [str] - If specified replacement for the selected element's contents. + * + * @example + * + * $('.orange').text() + * //=> Orange * - * @category Manipulation - * @returns The rendered document. + * $('ul').text() + * //=> Apple + * // Orange + * // Pear + * + * @see {@link http://api.jquery.com/text/} */ -function toString() { - return static_1.html(this, this.options); -} -exports.toString = toString; -function text(str) { - var _this = this; - // If `str` is undefined, act as a "getter" - if (str === undefined) { - return static_1.text(this); - } - if (typeof str === 'function') { - // Function support - return utils_1.domEach(this, function (el, i) { - text.call(_this._make(el), str.call(el, i, static_1.text([el]))); - }); - } - // Append text node to each selected elements - return utils_1.domEach(this, function (el) { - if (!htmlparser2_1.DomUtils.hasChildren(el)) - return; - el.children.forEach(function (child) { - child.next = child.prev = child.parent = null; - }); - var textNode = new domhandler_2.Text(str); - parse_1.update(textNode, el); +exports.text = function (str) { + // If `str` is undefined, act as a "getter" + if (str === undefined) { + return text(this); + } else if (typeof str === 'function') { + // Function support + var self = this; + return domEach(this, function (i, el) { + return exports.text.call(self._make(el), str.call(el, i, text([el]))); }); -} -exports.text = text; + } + + // Append text node to each selected elements + domEach(this, function (i, el) { + el.children.forEach(function (child) { + child.next = child.prev = child.parent = null; + }); + + var textNode = new domhandler.Text(str); + + updateDOM(textNode, el); + }); + + return this; +}; + /** * Clone the cheerio object. * - * @category Manipulation * @example * - * ```js - * const moreFruit = $('#fruits').clone(); - * ``` + * const moreFruit = $('#fruits').clone() * - * @returns The cloned object. - * @see {@link https://api.jquery.com/clone/} + * @see {@link http://api.jquery.com/clone/} */ -function clone() { - return this._make(utils_1.cloneDom(this.get())); -} -exports.clone = clone; +exports.clone = function () { + return this._make(cloneDom(this.get(), this.options)); +}; /***/ }), -/* 367 */ +/* 368 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +/** + * @module cheerio/css + */ + +var domEach = __webpack_require__(364).domEach; + +var toString = Object.prototype.toString; + +/** + * Get the value of a style property for the first element in the set of + * matched elements or set one or more CSS properties for every matched + * element. + * + * @param {string|object} prop - The name of the property. + * @param {string} [val] - If specified the new value. + * @returns {self} + * + * @see {@link http://api.jquery.com/css/} + */ +exports.css = function (prop, val) { + if ( + arguments.length === 2 || + // When `prop` is a "plain" object + toString.call(prop) === '[object Object]' + ) { + return domEach(this, function (idx, el) { + setCss(el, prop, val, idx); + }); + } + return getCss(this[0], prop); +}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.css = void 0; -var utils_1 = __webpack_require__(363); -function css(prop, val) { - if ((prop != null && val != null) || - // When `prop` is a "plain" object - (typeof prop === 'object' && !Array.isArray(prop))) { - return utils_1.domEach(this, function (el, i) { - if (utils_1.isTag(el)) { - // `prop` can't be an array here anymore. - setCss(el, prop, val, i); - } - }); - } - return getCss(this[0], prop); -} -exports.css = css; /** * Set styles of all elements. * + * @param {object} el - Element to set style of. + * @param {string|object} prop - Name of property. + * @param {string} val - Value to set property to. + * @param {number} [idx] - Optional index within the selection. + * @returns {self} * @private - * @param el - Element to set style of. - * @param prop - Name of property. - * @param value - Value to set property to. - * @param idx - Optional index within the selection. - */ -function setCss(el, prop, value, idx) { - if (typeof prop === 'string') { - var styles = getCss(el); - var val = typeof value === 'function' ? value.call(el, idx, styles[prop]) : value; - if (val === '') { - delete styles[prop]; - } - else if (val != null) { - styles[prop] = val; - } - el.attribs.style = stringify(styles); - } - else if (typeof prop === 'object') { - Object.keys(prop).forEach(function (k, i) { - setCss(el, k, prop[k], i); - }); + */ +function setCss(el, prop, val, idx) { + if ('string' == typeof prop) { + var styles = getCss(el); + if (typeof val === 'function') { + val = val.call(el, idx, styles[prop]); + } + + if (val === '') { + delete styles[prop]; + } else if (val != null) { + styles[prop] = val; } + + el.attribs.style = stringify(styles); + } else if ('object' == typeof prop) { + Object.keys(prop).forEach(function (k) { + setCss(el, k, prop[k]); + }); + } } + +/** + * Get parsed styles of the first element. + * + * @param {node} el - Element to get styles from. + * @param {string} prop - Name of the prop. + * @returns {object} + * @private + */ function getCss(el, prop) { - if (!el || !utils_1.isTag(el)) - return; - var styles = parse(el.attribs.style); - if (typeof prop === 'string') { - return styles[prop]; - } - if (Array.isArray(prop)) { - var newStyles_1 = {}; - prop.forEach(function (item) { - if (styles[item] != null) { - newStyles_1[item] = styles[item]; - } - }); - return newStyles_1; - } - return styles; + if (!el || !el.attribs) { + return undefined; + } + + var styles = parse(el.attribs.style); + if (typeof prop === 'string') { + return styles[prop]; + } else if (Array.isArray(prop)) { + var newStyles = {}; + prop.forEach(function (item) { + if (styles[item] != null) { + newStyles[item] = styles[item]; + } + }); + return newStyles; + } + return styles; } + /** * Stringify `obj` to styles. * + * @param {object} obj - Object to stringify. + * @returns {object} * @private - * @category CSS - * @param obj - Object to stringify. - * @returns The serialized styles. */ function stringify(obj) { - return Object.keys(obj).reduce(function (str, prop) { return "" + str + (str ? ' ' : '') + prop + ": " + obj[prop] + ";"; }, ''); + return Object.keys(obj || {}).reduce(function (str, prop) { + return (str += '' + (str ? ' ' : '') + prop + ': ' + obj[prop] + ';'); + }, ''); } + /** * Parse `styles`. * + * @param {string} styles - Styles to be parsed. + * @returns {object} * @private - * @category CSS - * @param styles - Styles to be parsed. - * @returns The parsed styles. */ function parse(styles) { - styles = (styles || '').trim(); - if (!styles) - return {}; - return styles.split(';').reduce(function (obj, str) { - var n = str.indexOf(':'); - // Skip if there is no :, or if it is the first/last character - if (n < 1 || n === str.length - 1) - return obj; - obj[str.slice(0, n).trim()] = str.slice(n + 1).trim(); - return obj; - }, {}); + styles = (styles || '').trim(); + + if (!styles) return {}; + + return styles.split(';').reduce(function (obj, str) { + var n = str.indexOf(':'); + // skip if there is no :, or if it is the first/last character + if (n < 1 || n === str.length - 1) return obj; + obj[str.slice(0, n).trim()] = str.slice(n + 1).trim(); + return obj; + }, {}); } /***/ }), -/* 368 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; +/* 369 */ +/***/ (function(module, exports) { -Object.defineProperty(exports, "__esModule", { value: true }); -exports.serializeArray = exports.serialize = void 0; -var utils_1 = __webpack_require__(363); -/* - * https://github.com/jquery/jquery/blob/2.1.3/src/manipulation/var/rcheckableType.js - * https://github.com/jquery/jquery/blob/2.1.3/src/serialize.js +/** + * @module cheerio/forms */ + +// https://github.com/jquery/jquery/blob/2.1.3/src/manipulation/var/rcheckableType.js +// https://github.com/jquery/jquery/blob/2.1.3/src/serialize.js var submittableSelector = 'input,select,textarea,keygen'; var r20 = /%20/g; var rCRLF = /\r?\n/g; + /** * Encode a set of form elements as a string for submission. * - * @category Forms - * @returns The serialized form. - * @see {@link https://api.jquery.com/serialize/} + * @see {@link http://api.jquery.com/serialize/} */ -function serialize() { - // Convert form elements into name/value objects - var arr = this.serializeArray(); - // Serialize each element into a key/value string - var retArr = arr.map(function (data) { - return encodeURIComponent(data.name) + "=" + encodeURIComponent(data.value); - }); - // Return the resulting serialization - return retArr.join('&').replace(r20, '+'); -} -exports.serialize = serialize; +exports.serialize = function () { + // Convert form elements into name/value objects + var arr = this.serializeArray(); + + // Serialize each element into a key/value string + var retArr = arr.map(function (data) { + return encodeURIComponent(data.name) + '=' + encodeURIComponent(data.value); + }); + + // Return the resulting serialization + return retArr.join('&').replace(r20, '+'); +}; + /** * Encode a set of form elements as an array of names and values. * - * @category Forms * @example - * - * ```js - * $('<form><input name="foo" value="bar" /></form>').serializeArray(); + * $('<form><input name="foo" value="bar" /></form>').serializeArray() * //=> [ { name: 'foo', value: 'bar' } ] - * ``` * - * @returns The serialized form. - * @see {@link https://api.jquery.com/serializeArray/} + * @see {@link http://api.jquery.com/serializeArray/} */ -function serializeArray() { - var _this = this; - // Resolve all form elements from either forms or collections of form elements - return this.map(function (_, elem) { - var $elem = _this._make(elem); - if (utils_1.isTag(elem) && elem.name === 'form') { - return $elem.find(submittableSelector).toArray(); - } - return $elem.filter(submittableSelector).toArray(); - }) - .filter( - // Verify elements have a name (`attr.name`) and are not disabled (`:enabled`) - '[name!=""]:enabled' + - // And cannot be clicked (`[type=submit]`) or are used in `x-www-form-urlencoded` (`[type=file]`) +exports.serializeArray = function () { + // Resolve all form elements from either forms or collections of form elements + var Cheerio = this.constructor; + return this.map(function () { + var elem = this; + var $elem = Cheerio(elem); + if (elem.name === 'form') { + return $elem.find(submittableSelector).toArray(); + } + return $elem.filter(submittableSelector).toArray(); + }) + .filter( + // Verify elements have a name (`attr.name`) and are not disabled (`:disabled`) + '[name!=""]:not(:disabled)' + + // and cannot be clicked (`[type=submit]`) or are used in `x-www-form-urlencoded` (`[type=file]`) ':not(:submit, :button, :image, :reset, :file)' + - // And are either checked/don't have a checkable state + // and are either checked/don't have a checkable state ':matches([checked], :not(:checkbox, :radio))' - // Convert each of the elements to its value(s) + // Convert each of the elements to its value(s) ) - .map(function (_, elem) { - var _a; - var $elem = _this._make(elem); - var name = $elem.attr('name'); // We have filtered for elements with a name before. - // If there is no value set (e.g. `undefined`, `null`), then default value to empty - var value = (_a = $elem.val()) !== null && _a !== void 0 ? _a : ''; - // If we have an array of values (e.g. `<select multiple>`), return an array of key/value pairs - if (Array.isArray(value)) { - return value.map(function (val) { - /* - * We trim replace any line endings (e.g. `\r` or `\r\n` with `\r\n`) to guarantee consistency across platforms - * These can occur inside of `<textarea>'s` - */ - return ({ name: name, value: val.replace(rCRLF, '\r\n') }); - }); - } + .map(function (i, elem) { + var $elem = Cheerio(elem); + var name = $elem.attr('name'); + var value = $elem.val(); + + // If there is no value set (e.g. `undefined`, `null`), then default value to empty + if (value == null) { + value = ''; + } + + // If we have an array of values (e.g. `<select multiple>`), return an array of key/value pairs + if (Array.isArray(value)) { + return value.map(function (val) { + // We trim replace any line endings (e.g. `\r` or `\r\n` with `\r\n`) to guarantee consistency across platforms + // These can occur inside of `<textarea>'s` + return { name: name, value: val.replace(rCRLF, '\r\n') }; + }); // Otherwise (e.g. `<input type="text">`, return only one key/value pair - return { name: name, value: value.replace(rCRLF, '\r\n') }; + } + return { name: name, value: value.replace(rCRLF, '\r\n') }; + + // Convert our result to an array }) - .toArray(); -} -exports.serializeArray = serializeArray; + .get(); +}; /***/ }), -/* 369 */ +/* 370 */ +/***/ (function(module) { + +module.exports = JSON.parse("{\"name\":\"cheerio\",\"version\":\"1.0.0-rc.5\",\"description\":\"Tiny, fast, and elegant implementation of core jQuery designed specifically for the server\",\"author\":\"Matt Mueller <mattmuelle@gmail.com> (mat.io)\",\"license\":\"MIT\",\"keywords\":[\"htmlparser\",\"jquery\",\"selector\",\"scraper\",\"parser\",\"html\"],\"repository\":{\"type\":\"git\",\"url\":\"git://github.com/cheeriojs/cheerio.git\"},\"main\":\"./index.js\",\"types\":\"types/index.d.ts\",\"files\":[\"index.js\",\"types/index.d.ts\",\"lib\"],\"engines\":{\"node\":\">= 0.12\"},\"dependencies\":{\"cheerio-select-tmp\":\"^0.1.0\",\"dom-serializer\":\"~1.2.0\",\"domhandler\":\"^4.0.0\",\"entities\":\"~2.1.0\",\"htmlparser2\":\"^6.0.0\",\"parse5\":\"^6.0.0\",\"parse5-htmlparser2-tree-adapter\":\"^6.0.0\"},\"devDependencies\":{\"@types/node\":\"^14.14.10\",\"benchmark\":\"^2.1.4\",\"coveralls\":\"^3.0.2\",\"eslint\":\"^7.10.0\",\"eslint-config-prettier\":\"^7.0.0\",\"eslint-plugin-jsdoc\":\"^30.6.2\",\"expect.js\":\"~0.3.1\",\"husky\":\"^4.2.5\",\"jquery\":\"^3.0.0\",\"jsdoc\":\"^3.6.6\",\"jsdom\":\"^16.2.2\",\"lint-staged\":\"^10.2.2\",\"mocha\":\"^8.1.1\",\"nyc\":\"^15.0.1\",\"prettier\":\"^2.1.1\",\"tsd\":\"^0.14.0\",\"xyz\":\"~4.0.0\"},\"scripts\":{\"test\":\"npm run lint && npm run test:mocha && npm run test:types\",\"test:mocha\":\"mocha --recursive --reporter dot --parallel\",\"test:types\":\"tsd\",\"lint\":\"npm run lint:es && npm run lint:prettier\",\"lint:es\":\"eslint --ignore-path .prettierignore .\",\"lint:prettier\":\"npm run format:prettier:raw -- --check\",\"format\":\"npm run format:es && npm run format:prettier\",\"format:es\":\"npm run lint:es -- --fix\",\"format:prettier\":\"npm run format:prettier:raw -- --write\",\"format:prettier:raw\":\"prettier '**/*.{js,ts,md,json,yml}' --ignore-path .prettierignore\",\"build:docs\":\"jsdoc --configure jsdoc-config.json\",\"pre-commit\":\"lint-staged\"},\"prettier\":{\"singleQuote\":true,\"tabWidth\":2},\"lint-staged\":{\"*.js\":[\"prettier --write\",\"npm run test:lint -- --fix\"],\"*.{json,md,ts,yml}\":[\"prettier --write\"]}}"); + +/***/ }), +/* 371 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -62089,13 +61461,13 @@ const bluebird = __webpack_require__(25); const log = __webpack_require__(2).namespace('hydrateAndFilter'); -const get = __webpack_require__(370); +const get = __webpack_require__(372); -const uniqBy = __webpack_require__(412); +const uniqBy = __webpack_require__(414); const { queryAll -} = __webpack_require__(484); +} = __webpack_require__(486); /** * Since we can use methods or basic functions for * `shouldSave` and `shouldUpdate` we pass the @@ -62128,9 +61500,9 @@ const suitableCall = (funcOrMethod, ...args) => { * * Parameters: * - * `documents`: an array of objects corresponding to the data you want to save in the cozy - * `doctype` (string): the doctype where you want to save data (ex: 'io.cozy.bills') - * `options` : + * * `documents`: an array of objects corresponding to the data you want to save in the cozy + * * `doctype` (string): the doctype where you want to save data (ex: 'io.cozy.bills') + * * `options` : * - `keys` (array) : List of keys used to check that two items are the same. By default it is set to `['id']'. * - `index` (optionnal) : Return value returned by `cozy.data.defineIndex`, the default will correspond to all documents of the selected doctype. * - `selector` (optionnal object) : Mango request to get records. Default is built from the keys `{selector: {_id: {"$gt": null}}}` to get all the records. @@ -62158,7 +61530,7 @@ const suitableCall = (funcOrMethod, ...args) => { const hydrateAndFilter = (documents = [], doctype, options = {}) => { - const cozy = __webpack_require__(485); + const cozy = __webpack_require__(487); log('debug', `${documents.length} items before hydrateAndFilter`); if (!doctype) return Promise.reject(new Error(`Doctype is mandatory to filter the connector data.`)); @@ -62240,10 +61612,10 @@ const hydrateAndFilter = (documents = [], doctype, options = {}) => { module.exports = hydrateAndFilter; /***/ }), -/* 370 */ +/* 372 */ /***/ (function(module, exports, __webpack_require__) { -var baseGet = __webpack_require__(371); +var baseGet = __webpack_require__(373); /** * Gets the value at `path` of `object`. If the resolved value is @@ -62279,11 +61651,11 @@ module.exports = get; /***/ }), -/* 371 */ +/* 373 */ /***/ (function(module, exports, __webpack_require__) { -var castPath = __webpack_require__(372), - toKey = __webpack_require__(411); +var castPath = __webpack_require__(374), + toKey = __webpack_require__(413); /** * The base implementation of `_.get` without support for default values. @@ -62309,13 +61681,13 @@ module.exports = baseGet; /***/ }), -/* 372 */ +/* 374 */ /***/ (function(module, exports, __webpack_require__) { var isArray = __webpack_require__(75), - isKey = __webpack_require__(373), - stringToPath = __webpack_require__(375), - toString = __webpack_require__(408); + isKey = __webpack_require__(375), + stringToPath = __webpack_require__(377), + toString = __webpack_require__(410); /** * Casts `value` to a path array if it's not one. @@ -62336,11 +61708,11 @@ module.exports = castPath; /***/ }), -/* 373 */ +/* 375 */ /***/ (function(module, exports, __webpack_require__) { var isArray = __webpack_require__(75), - isSymbol = __webpack_require__(374); + isSymbol = __webpack_require__(376); /** Used to match property names within property paths. */ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, @@ -62371,7 +61743,7 @@ module.exports = isKey; /***/ }), -/* 374 */ +/* 376 */ /***/ (function(module, exports, __webpack_require__) { var baseGetTag = __webpack_require__(66), @@ -62406,10 +61778,10 @@ module.exports = isSymbol; /***/ }), -/* 375 */ +/* 377 */ /***/ (function(module, exports, __webpack_require__) { -var memoizeCapped = __webpack_require__(376); +var memoizeCapped = __webpack_require__(378); /** Used to match property names within property paths. */ var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; @@ -62439,10 +61811,10 @@ module.exports = stringToPath; /***/ }), -/* 376 */ +/* 378 */ /***/ (function(module, exports, __webpack_require__) { -var memoize = __webpack_require__(377); +var memoize = __webpack_require__(379); /** Used as the maximum memoize cache size. */ var MAX_MEMOIZE_SIZE = 500; @@ -62471,10 +61843,10 @@ module.exports = memoizeCapped; /***/ }), -/* 377 */ +/* 379 */ /***/ (function(module, exports, __webpack_require__) { -var MapCache = __webpack_require__(378); +var MapCache = __webpack_require__(380); /** Error message constants. */ var FUNC_ERROR_TEXT = 'Expected a function'; @@ -62550,14 +61922,14 @@ module.exports = memoize; /***/ }), -/* 378 */ +/* 380 */ /***/ (function(module, exports, __webpack_require__) { -var mapCacheClear = __webpack_require__(379), - mapCacheDelete = __webpack_require__(402), - mapCacheGet = __webpack_require__(405), - mapCacheHas = __webpack_require__(406), - mapCacheSet = __webpack_require__(407); +var mapCacheClear = __webpack_require__(381), + mapCacheDelete = __webpack_require__(404), + mapCacheGet = __webpack_require__(407), + mapCacheHas = __webpack_require__(408), + mapCacheSet = __webpack_require__(409); /** * Creates a map cache object to store key-value pairs. @@ -62588,12 +61960,12 @@ module.exports = MapCache; /***/ }), -/* 379 */ +/* 381 */ /***/ (function(module, exports, __webpack_require__) { -var Hash = __webpack_require__(380), - ListCache = __webpack_require__(393), - Map = __webpack_require__(401); +var Hash = __webpack_require__(382), + ListCache = __webpack_require__(395), + Map = __webpack_require__(403); /** * Removes all key-value entries from the map. @@ -62615,14 +61987,14 @@ module.exports = mapCacheClear; /***/ }), -/* 380 */ +/* 382 */ /***/ (function(module, exports, __webpack_require__) { -var hashClear = __webpack_require__(381), - hashDelete = __webpack_require__(389), - hashGet = __webpack_require__(390), - hashHas = __webpack_require__(391), - hashSet = __webpack_require__(392); +var hashClear = __webpack_require__(383), + hashDelete = __webpack_require__(391), + hashGet = __webpack_require__(392), + hashHas = __webpack_require__(393), + hashSet = __webpack_require__(394); /** * Creates a hash object. @@ -62653,10 +62025,10 @@ module.exports = Hash; /***/ }), -/* 381 */ +/* 383 */ /***/ (function(module, exports, __webpack_require__) { -var nativeCreate = __webpack_require__(382); +var nativeCreate = __webpack_require__(384); /** * Removes all key-value entries from the hash. @@ -62674,10 +62046,10 @@ module.exports = hashClear; /***/ }), -/* 382 */ +/* 384 */ /***/ (function(module, exports, __webpack_require__) { -var getNative = __webpack_require__(383); +var getNative = __webpack_require__(385); /* Built-in method references that are verified to be native. */ var nativeCreate = getNative(Object, 'create'); @@ -62686,11 +62058,11 @@ module.exports = nativeCreate; /***/ }), -/* 383 */ +/* 385 */ /***/ (function(module, exports, __webpack_require__) { -var baseIsNative = __webpack_require__(384), - getValue = __webpack_require__(388); +var baseIsNative = __webpack_require__(386), + getValue = __webpack_require__(390); /** * Gets the native function at `key` of `object`. @@ -62709,13 +62081,13 @@ module.exports = getNative; /***/ }), -/* 384 */ +/* 386 */ /***/ (function(module, exports, __webpack_require__) { var isFunction = __webpack_require__(65), - isMasked = __webpack_require__(385), + isMasked = __webpack_require__(387), isObject = __webpack_require__(72), - toSource = __webpack_require__(387); + toSource = __webpack_require__(389); /** * Used to match `RegExp` @@ -62762,10 +62134,10 @@ module.exports = baseIsNative; /***/ }), -/* 385 */ +/* 387 */ /***/ (function(module, exports, __webpack_require__) { -var coreJsData = __webpack_require__(386); +var coreJsData = __webpack_require__(388); /** Used to detect methods masquerading as native. */ var maskSrcKey = (function() { @@ -62788,7 +62160,7 @@ module.exports = isMasked; /***/ }), -/* 386 */ +/* 388 */ /***/ (function(module, exports, __webpack_require__) { var root = __webpack_require__(68); @@ -62800,7 +62172,7 @@ module.exports = coreJsData; /***/ }), -/* 387 */ +/* 389 */ /***/ (function(module, exports) { /** Used for built-in method references. */ @@ -62832,7 +62204,7 @@ module.exports = toSource; /***/ }), -/* 388 */ +/* 390 */ /***/ (function(module, exports) { /** @@ -62851,7 +62223,7 @@ module.exports = getValue; /***/ }), -/* 389 */ +/* 391 */ /***/ (function(module, exports) { /** @@ -62874,10 +62246,10 @@ module.exports = hashDelete; /***/ }), -/* 390 */ +/* 392 */ /***/ (function(module, exports, __webpack_require__) { -var nativeCreate = __webpack_require__(382); +var nativeCreate = __webpack_require__(384); /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; @@ -62910,10 +62282,10 @@ module.exports = hashGet; /***/ }), -/* 391 */ +/* 393 */ /***/ (function(module, exports, __webpack_require__) { -var nativeCreate = __webpack_require__(382); +var nativeCreate = __webpack_require__(384); /** Used for built-in method references. */ var objectProto = Object.prototype; @@ -62939,10 +62311,10 @@ module.exports = hashHas; /***/ }), -/* 392 */ +/* 394 */ /***/ (function(module, exports, __webpack_require__) { -var nativeCreate = __webpack_require__(382); +var nativeCreate = __webpack_require__(384); /** Used to stand-in for `undefined` hash values. */ var HASH_UNDEFINED = '__lodash_hash_undefined__'; @@ -62968,14 +62340,14 @@ module.exports = hashSet; /***/ }), -/* 393 */ +/* 395 */ /***/ (function(module, exports, __webpack_require__) { -var listCacheClear = __webpack_require__(394), - listCacheDelete = __webpack_require__(395), - listCacheGet = __webpack_require__(398), - listCacheHas = __webpack_require__(399), - listCacheSet = __webpack_require__(400); +var listCacheClear = __webpack_require__(396), + listCacheDelete = __webpack_require__(397), + listCacheGet = __webpack_require__(400), + listCacheHas = __webpack_require__(401), + listCacheSet = __webpack_require__(402); /** * Creates an list cache object. @@ -63006,7 +62378,7 @@ module.exports = ListCache; /***/ }), -/* 394 */ +/* 396 */ /***/ (function(module, exports) { /** @@ -63025,10 +62397,10 @@ module.exports = listCacheClear; /***/ }), -/* 395 */ +/* 397 */ /***/ (function(module, exports, __webpack_require__) { -var assocIndexOf = __webpack_require__(396); +var assocIndexOf = __webpack_require__(398); /** Used for built-in method references. */ var arrayProto = Array.prototype; @@ -63066,10 +62438,10 @@ module.exports = listCacheDelete; /***/ }), -/* 396 */ +/* 398 */ /***/ (function(module, exports, __webpack_require__) { -var eq = __webpack_require__(397); +var eq = __webpack_require__(399); /** * Gets the index at which the `key` is found in `array` of key-value pairs. @@ -63093,7 +62465,7 @@ module.exports = assocIndexOf; /***/ }), -/* 397 */ +/* 399 */ /***/ (function(module, exports) { /** @@ -63136,10 +62508,10 @@ module.exports = eq; /***/ }), -/* 398 */ +/* 400 */ /***/ (function(module, exports, __webpack_require__) { -var assocIndexOf = __webpack_require__(396); +var assocIndexOf = __webpack_require__(398); /** * Gets the list cache value for `key`. @@ -63161,10 +62533,10 @@ module.exports = listCacheGet; /***/ }), -/* 399 */ +/* 401 */ /***/ (function(module, exports, __webpack_require__) { -var assocIndexOf = __webpack_require__(396); +var assocIndexOf = __webpack_require__(398); /** * Checks if a list cache value for `key` exists. @@ -63183,10 +62555,10 @@ module.exports = listCacheHas; /***/ }), -/* 400 */ +/* 402 */ /***/ (function(module, exports, __webpack_require__) { -var assocIndexOf = __webpack_require__(396); +var assocIndexOf = __webpack_require__(398); /** * Sets the list cache `key` to `value`. @@ -63215,10 +62587,10 @@ module.exports = listCacheSet; /***/ }), -/* 401 */ +/* 403 */ /***/ (function(module, exports, __webpack_require__) { -var getNative = __webpack_require__(383), +var getNative = __webpack_require__(385), root = __webpack_require__(68); /* Built-in method references that are verified to be native. */ @@ -63228,10 +62600,10 @@ module.exports = Map; /***/ }), -/* 402 */ +/* 404 */ /***/ (function(module, exports, __webpack_require__) { -var getMapData = __webpack_require__(403); +var getMapData = __webpack_require__(405); /** * Removes `key` and its value from the map. @@ -63252,10 +62624,10 @@ module.exports = mapCacheDelete; /***/ }), -/* 403 */ +/* 405 */ /***/ (function(module, exports, __webpack_require__) { -var isKeyable = __webpack_require__(404); +var isKeyable = __webpack_require__(406); /** * Gets the data for `map`. @@ -63276,7 +62648,7 @@ module.exports = getMapData; /***/ }), -/* 404 */ +/* 406 */ /***/ (function(module, exports) { /** @@ -63297,10 +62669,10 @@ module.exports = isKeyable; /***/ }), -/* 405 */ +/* 407 */ /***/ (function(module, exports, __webpack_require__) { -var getMapData = __webpack_require__(403); +var getMapData = __webpack_require__(405); /** * Gets the map value for `key`. @@ -63319,10 +62691,10 @@ module.exports = mapCacheGet; /***/ }), -/* 406 */ +/* 408 */ /***/ (function(module, exports, __webpack_require__) { -var getMapData = __webpack_require__(403); +var getMapData = __webpack_require__(405); /** * Checks if a map value for `key` exists. @@ -63341,10 +62713,10 @@ module.exports = mapCacheHas; /***/ }), -/* 407 */ +/* 409 */ /***/ (function(module, exports, __webpack_require__) { -var getMapData = __webpack_require__(403); +var getMapData = __webpack_require__(405); /** * Sets the map `key` to `value`. @@ -63369,10 +62741,10 @@ module.exports = mapCacheSet; /***/ }), -/* 408 */ +/* 410 */ /***/ (function(module, exports, __webpack_require__) { -var baseToString = __webpack_require__(409); +var baseToString = __webpack_require__(411); /** * Converts `value` to a string. An empty string is returned for `null` @@ -63403,13 +62775,13 @@ module.exports = toString; /***/ }), -/* 409 */ +/* 411 */ /***/ (function(module, exports, __webpack_require__) { var Symbol = __webpack_require__(67), - arrayMap = __webpack_require__(410), + arrayMap = __webpack_require__(412), isArray = __webpack_require__(75), - isSymbol = __webpack_require__(374); + isSymbol = __webpack_require__(376); /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0; @@ -63446,7 +62818,7 @@ module.exports = baseToString; /***/ }), -/* 410 */ +/* 412 */ /***/ (function(module, exports) { /** @@ -63473,10 +62845,10 @@ module.exports = arrayMap; /***/ }), -/* 411 */ +/* 413 */ /***/ (function(module, exports, __webpack_require__) { -var isSymbol = __webpack_require__(374); +var isSymbol = __webpack_require__(376); /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0; @@ -63500,11 +62872,11 @@ module.exports = toKey; /***/ }), -/* 412 */ +/* 414 */ /***/ (function(module, exports, __webpack_require__) { -var baseIteratee = __webpack_require__(413), - baseUniq = __webpack_require__(475); +var baseIteratee = __webpack_require__(415), + baseUniq = __webpack_require__(477); /** * This method is like `_.uniq` except that it accepts `iteratee` which is @@ -63537,14 +62909,14 @@ module.exports = uniqBy; /***/ }), -/* 413 */ +/* 415 */ /***/ (function(module, exports, __webpack_require__) { -var baseMatches = __webpack_require__(414), - baseMatchesProperty = __webpack_require__(467), - identity = __webpack_require__(471), +var baseMatches = __webpack_require__(416), + baseMatchesProperty = __webpack_require__(469), + identity = __webpack_require__(473), isArray = __webpack_require__(75), - property = __webpack_require__(472); + property = __webpack_require__(474); /** * The base implementation of `_.iteratee`. @@ -63574,12 +62946,12 @@ module.exports = baseIteratee; /***/ }), -/* 414 */ +/* 416 */ /***/ (function(module, exports, __webpack_require__) { -var baseIsMatch = __webpack_require__(415), - getMatchData = __webpack_require__(464), - matchesStrictComparable = __webpack_require__(466); +var baseIsMatch = __webpack_require__(417), + getMatchData = __webpack_require__(466), + matchesStrictComparable = __webpack_require__(468); /** * The base implementation of `_.matches` which doesn't clone `source`. @@ -63602,11 +62974,11 @@ module.exports = baseMatches; /***/ }), -/* 415 */ +/* 417 */ /***/ (function(module, exports, __webpack_require__) { -var Stack = __webpack_require__(416), - baseIsEqual = __webpack_require__(422); +var Stack = __webpack_require__(418), + baseIsEqual = __webpack_require__(424); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1, @@ -63670,15 +63042,15 @@ module.exports = baseIsMatch; /***/ }), -/* 416 */ +/* 418 */ /***/ (function(module, exports, __webpack_require__) { -var ListCache = __webpack_require__(393), - stackClear = __webpack_require__(417), - stackDelete = __webpack_require__(418), - stackGet = __webpack_require__(419), - stackHas = __webpack_require__(420), - stackSet = __webpack_require__(421); +var ListCache = __webpack_require__(395), + stackClear = __webpack_require__(419), + stackDelete = __webpack_require__(420), + stackGet = __webpack_require__(421), + stackHas = __webpack_require__(422), + stackSet = __webpack_require__(423); /** * Creates a stack cache object to store key-value pairs. @@ -63703,10 +63075,10 @@ module.exports = Stack; /***/ }), -/* 417 */ +/* 419 */ /***/ (function(module, exports, __webpack_require__) { -var ListCache = __webpack_require__(393); +var ListCache = __webpack_require__(395); /** * Removes all key-value entries from the stack. @@ -63724,7 +63096,7 @@ module.exports = stackClear; /***/ }), -/* 418 */ +/* 420 */ /***/ (function(module, exports) { /** @@ -63748,7 +63120,7 @@ module.exports = stackDelete; /***/ }), -/* 419 */ +/* 421 */ /***/ (function(module, exports) { /** @@ -63768,7 +63140,7 @@ module.exports = stackGet; /***/ }), -/* 420 */ +/* 422 */ /***/ (function(module, exports) { /** @@ -63788,12 +63160,12 @@ module.exports = stackHas; /***/ }), -/* 421 */ +/* 423 */ /***/ (function(module, exports, __webpack_require__) { -var ListCache = __webpack_require__(393), - Map = __webpack_require__(401), - MapCache = __webpack_require__(378); +var ListCache = __webpack_require__(395), + Map = __webpack_require__(403), + MapCache = __webpack_require__(380); /** Used as the size to enable large array optimizations. */ var LARGE_ARRAY_SIZE = 200; @@ -63828,10 +63200,10 @@ module.exports = stackSet; /***/ }), -/* 422 */ +/* 424 */ /***/ (function(module, exports, __webpack_require__) { -var baseIsEqualDeep = __webpack_require__(423), +var baseIsEqualDeep = __webpack_require__(425), isObjectLike = __webpack_require__(73); /** @@ -63862,17 +63234,17 @@ module.exports = baseIsEqual; /***/ }), -/* 423 */ +/* 425 */ /***/ (function(module, exports, __webpack_require__) { -var Stack = __webpack_require__(416), - equalArrays = __webpack_require__(424), - equalByTag = __webpack_require__(430), - equalObjects = __webpack_require__(434), - getTag = __webpack_require__(459), +var Stack = __webpack_require__(418), + equalArrays = __webpack_require__(426), + equalByTag = __webpack_require__(432), + equalObjects = __webpack_require__(436), + getTag = __webpack_require__(461), isArray = __webpack_require__(75), - isBuffer = __webpack_require__(446), - isTypedArray = __webpack_require__(449); + isBuffer = __webpack_require__(448), + isTypedArray = __webpack_require__(451); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1; @@ -63951,12 +63323,12 @@ module.exports = baseIsEqualDeep; /***/ }), -/* 424 */ +/* 426 */ /***/ (function(module, exports, __webpack_require__) { -var SetCache = __webpack_require__(425), - arraySome = __webpack_require__(428), - cacheHas = __webpack_require__(429); +var SetCache = __webpack_require__(427), + arraySome = __webpack_require__(430), + cacheHas = __webpack_require__(431); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1, @@ -64041,12 +63413,12 @@ module.exports = equalArrays; /***/ }), -/* 425 */ +/* 427 */ /***/ (function(module, exports, __webpack_require__) { -var MapCache = __webpack_require__(378), - setCacheAdd = __webpack_require__(426), - setCacheHas = __webpack_require__(427); +var MapCache = __webpack_require__(380), + setCacheAdd = __webpack_require__(428), + setCacheHas = __webpack_require__(429); /** * @@ -64074,7 +63446,7 @@ module.exports = SetCache; /***/ }), -/* 426 */ +/* 428 */ /***/ (function(module, exports) { /** Used to stand-in for `undefined` hash values. */ @@ -64099,7 +63471,7 @@ module.exports = setCacheAdd; /***/ }), -/* 427 */ +/* 429 */ /***/ (function(module, exports) { /** @@ -64119,7 +63491,7 @@ module.exports = setCacheHas; /***/ }), -/* 428 */ +/* 430 */ /***/ (function(module, exports) { /** @@ -64148,7 +63520,7 @@ module.exports = arraySome; /***/ }), -/* 429 */ +/* 431 */ /***/ (function(module, exports) { /** @@ -64167,15 +63539,15 @@ module.exports = cacheHas; /***/ }), -/* 430 */ +/* 432 */ /***/ (function(module, exports, __webpack_require__) { var Symbol = __webpack_require__(67), - Uint8Array = __webpack_require__(431), - eq = __webpack_require__(397), - equalArrays = __webpack_require__(424), - mapToArray = __webpack_require__(432), - setToArray = __webpack_require__(433); + Uint8Array = __webpack_require__(433), + eq = __webpack_require__(399), + equalArrays = __webpack_require__(426), + mapToArray = __webpack_require__(434), + setToArray = __webpack_require__(435); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1, @@ -64285,7 +63657,7 @@ module.exports = equalByTag; /***/ }), -/* 431 */ +/* 433 */ /***/ (function(module, exports, __webpack_require__) { var root = __webpack_require__(68); @@ -64297,7 +63669,7 @@ module.exports = Uint8Array; /***/ }), -/* 432 */ +/* 434 */ /***/ (function(module, exports) { /** @@ -64321,7 +63693,7 @@ module.exports = mapToArray; /***/ }), -/* 433 */ +/* 435 */ /***/ (function(module, exports) { /** @@ -64345,10 +63717,10 @@ module.exports = setToArray; /***/ }), -/* 434 */ +/* 436 */ /***/ (function(module, exports, __webpack_require__) { -var getAllKeys = __webpack_require__(435); +var getAllKeys = __webpack_require__(437); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1; @@ -64441,12 +63813,12 @@ module.exports = equalObjects; /***/ }), -/* 435 */ +/* 437 */ /***/ (function(module, exports, __webpack_require__) { -var baseGetAllKeys = __webpack_require__(436), - getSymbols = __webpack_require__(438), - keys = __webpack_require__(441); +var baseGetAllKeys = __webpack_require__(438), + getSymbols = __webpack_require__(440), + keys = __webpack_require__(443); /** * Creates an array of own enumerable property names and symbols of `object`. @@ -64463,10 +63835,10 @@ module.exports = getAllKeys; /***/ }), -/* 436 */ +/* 438 */ /***/ (function(module, exports, __webpack_require__) { -var arrayPush = __webpack_require__(437), +var arrayPush = __webpack_require__(439), isArray = __webpack_require__(75); /** @@ -64489,7 +63861,7 @@ module.exports = baseGetAllKeys; /***/ }), -/* 437 */ +/* 439 */ /***/ (function(module, exports) { /** @@ -64515,11 +63887,11 @@ module.exports = arrayPush; /***/ }), -/* 438 */ +/* 440 */ /***/ (function(module, exports, __webpack_require__) { -var arrayFilter = __webpack_require__(439), - stubArray = __webpack_require__(440); +var arrayFilter = __webpack_require__(441), + stubArray = __webpack_require__(442); /** Used for built-in method references. */ var objectProto = Object.prototype; @@ -64551,7 +63923,7 @@ module.exports = getSymbols; /***/ }), -/* 439 */ +/* 441 */ /***/ (function(module, exports) { /** @@ -64582,7 +63954,7 @@ module.exports = arrayFilter; /***/ }), -/* 440 */ +/* 442 */ /***/ (function(module, exports) { /** @@ -64611,12 +63983,12 @@ module.exports = stubArray; /***/ }), -/* 441 */ +/* 443 */ /***/ (function(module, exports, __webpack_require__) { -var arrayLikeKeys = __webpack_require__(442), - baseKeys = __webpack_require__(454), - isArrayLike = __webpack_require__(458); +var arrayLikeKeys = __webpack_require__(444), + baseKeys = __webpack_require__(456), + isArrayLike = __webpack_require__(460); /** * Creates an array of the own enumerable property names of `object`. @@ -64654,15 +64026,15 @@ module.exports = keys; /***/ }), -/* 442 */ +/* 444 */ /***/ (function(module, exports, __webpack_require__) { -var baseTimes = __webpack_require__(443), - isArguments = __webpack_require__(444), +var baseTimes = __webpack_require__(445), + isArguments = __webpack_require__(446), isArray = __webpack_require__(75), - isBuffer = __webpack_require__(446), - isIndex = __webpack_require__(448), - isTypedArray = __webpack_require__(449); + isBuffer = __webpack_require__(448), + isIndex = __webpack_require__(450), + isTypedArray = __webpack_require__(451); /** Used for built-in method references. */ var objectProto = Object.prototype; @@ -64709,7 +64081,7 @@ module.exports = arrayLikeKeys; /***/ }), -/* 443 */ +/* 445 */ /***/ (function(module, exports) { /** @@ -64735,10 +64107,10 @@ module.exports = baseTimes; /***/ }), -/* 444 */ +/* 446 */ /***/ (function(module, exports, __webpack_require__) { -var baseIsArguments = __webpack_require__(445), +var baseIsArguments = __webpack_require__(447), isObjectLike = __webpack_require__(73); /** Used for built-in method references. */ @@ -64777,7 +64149,7 @@ module.exports = isArguments; /***/ }), -/* 445 */ +/* 447 */ /***/ (function(module, exports, __webpack_require__) { var baseGetTag = __webpack_require__(66), @@ -64801,11 +64173,11 @@ module.exports = baseIsArguments; /***/ }), -/* 446 */ +/* 448 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(68), - stubFalse = __webpack_require__(447); + stubFalse = __webpack_require__(449); /** Detect free variable `exports`. */ var freeExports = true && exports && !exports.nodeType && exports; @@ -64846,7 +64218,7 @@ module.exports = isBuffer; /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) /***/ }), -/* 447 */ +/* 449 */ /***/ (function(module, exports) { /** @@ -64870,7 +64242,7 @@ module.exports = stubFalse; /***/ }), -/* 448 */ +/* 450 */ /***/ (function(module, exports) { /** Used as references for various `Number` constants. */ @@ -64901,12 +64273,12 @@ module.exports = isIndex; /***/ }), -/* 449 */ +/* 451 */ /***/ (function(module, exports, __webpack_require__) { -var baseIsTypedArray = __webpack_require__(450), - baseUnary = __webpack_require__(452), - nodeUtil = __webpack_require__(453); +var baseIsTypedArray = __webpack_require__(452), + baseUnary = __webpack_require__(454), + nodeUtil = __webpack_require__(455); /* Node.js helper references. */ var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray; @@ -64934,11 +64306,11 @@ module.exports = isTypedArray; /***/ }), -/* 450 */ +/* 452 */ /***/ (function(module, exports, __webpack_require__) { var baseGetTag = __webpack_require__(66), - isLength = __webpack_require__(451), + isLength = __webpack_require__(453), isObjectLike = __webpack_require__(73); /** `Object#toString` result references. */ @@ -65000,7 +64372,7 @@ module.exports = baseIsTypedArray; /***/ }), -/* 451 */ +/* 453 */ /***/ (function(module, exports) { /** Used as references for various `Number` constants. */ @@ -65041,7 +64413,7 @@ module.exports = isLength; /***/ }), -/* 452 */ +/* 454 */ /***/ (function(module, exports) { /** @@ -65061,7 +64433,7 @@ module.exports = baseUnary; /***/ }), -/* 453 */ +/* 455 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(module) {var freeGlobal = __webpack_require__(69); @@ -65098,11 +64470,11 @@ module.exports = nodeUtil; /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) /***/ }), -/* 454 */ +/* 456 */ /***/ (function(module, exports, __webpack_require__) { -var isPrototype = __webpack_require__(455), - nativeKeys = __webpack_require__(456); +var isPrototype = __webpack_require__(457), + nativeKeys = __webpack_require__(458); /** Used for built-in method references. */ var objectProto = Object.prototype; @@ -65134,7 +64506,7 @@ module.exports = baseKeys; /***/ }), -/* 455 */ +/* 457 */ /***/ (function(module, exports) { /** Used for built-in method references. */ @@ -65158,10 +64530,10 @@ module.exports = isPrototype; /***/ }), -/* 456 */ +/* 458 */ /***/ (function(module, exports, __webpack_require__) { -var overArg = __webpack_require__(457); +var overArg = __webpack_require__(459); /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeKeys = overArg(Object.keys, Object); @@ -65170,7 +64542,7 @@ module.exports = nativeKeys; /***/ }), -/* 457 */ +/* 459 */ /***/ (function(module, exports) { /** @@ -65191,11 +64563,11 @@ module.exports = overArg; /***/ }), -/* 458 */ +/* 460 */ /***/ (function(module, exports, __webpack_require__) { var isFunction = __webpack_require__(65), - isLength = __webpack_require__(451); + isLength = __webpack_require__(453); /** * Checks if `value` is array-like. A value is considered array-like if it's @@ -65230,16 +64602,16 @@ module.exports = isArrayLike; /***/ }), -/* 459 */ +/* 461 */ /***/ (function(module, exports, __webpack_require__) { -var DataView = __webpack_require__(460), - Map = __webpack_require__(401), - Promise = __webpack_require__(461), - Set = __webpack_require__(462), - WeakMap = __webpack_require__(463), +var DataView = __webpack_require__(462), + Map = __webpack_require__(403), + Promise = __webpack_require__(463), + Set = __webpack_require__(464), + WeakMap = __webpack_require__(465), baseGetTag = __webpack_require__(66), - toSource = __webpack_require__(387); + toSource = __webpack_require__(389); /** `Object#toString` result references. */ var mapTag = '[object Map]', @@ -65294,10 +64666,10 @@ module.exports = getTag; /***/ }), -/* 460 */ +/* 462 */ /***/ (function(module, exports, __webpack_require__) { -var getNative = __webpack_require__(383), +var getNative = __webpack_require__(385), root = __webpack_require__(68); /* Built-in method references that are verified to be native. */ @@ -65307,10 +64679,10 @@ module.exports = DataView; /***/ }), -/* 461 */ +/* 463 */ /***/ (function(module, exports, __webpack_require__) { -var getNative = __webpack_require__(383), +var getNative = __webpack_require__(385), root = __webpack_require__(68); /* Built-in method references that are verified to be native. */ @@ -65320,10 +64692,10 @@ module.exports = Promise; /***/ }), -/* 462 */ +/* 464 */ /***/ (function(module, exports, __webpack_require__) { -var getNative = __webpack_require__(383), +var getNative = __webpack_require__(385), root = __webpack_require__(68); /* Built-in method references that are verified to be native. */ @@ -65333,10 +64705,10 @@ module.exports = Set; /***/ }), -/* 463 */ +/* 465 */ /***/ (function(module, exports, __webpack_require__) { -var getNative = __webpack_require__(383), +var getNative = __webpack_require__(385), root = __webpack_require__(68); /* Built-in method references that are verified to be native. */ @@ -65346,11 +64718,11 @@ module.exports = WeakMap; /***/ }), -/* 464 */ +/* 466 */ /***/ (function(module, exports, __webpack_require__) { -var isStrictComparable = __webpack_require__(465), - keys = __webpack_require__(441); +var isStrictComparable = __webpack_require__(467), + keys = __webpack_require__(443); /** * Gets the property names, values, and compare flags of `object`. @@ -65376,7 +64748,7 @@ module.exports = getMatchData; /***/ }), -/* 465 */ +/* 467 */ /***/ (function(module, exports, __webpack_require__) { var isObject = __webpack_require__(72); @@ -65397,7 +64769,7 @@ module.exports = isStrictComparable; /***/ }), -/* 466 */ +/* 468 */ /***/ (function(module, exports) { /** @@ -65423,16 +64795,16 @@ module.exports = matchesStrictComparable; /***/ }), -/* 467 */ +/* 469 */ /***/ (function(module, exports, __webpack_require__) { -var baseIsEqual = __webpack_require__(422), - get = __webpack_require__(370), - hasIn = __webpack_require__(468), - isKey = __webpack_require__(373), - isStrictComparable = __webpack_require__(465), - matchesStrictComparable = __webpack_require__(466), - toKey = __webpack_require__(411); +var baseIsEqual = __webpack_require__(424), + get = __webpack_require__(372), + hasIn = __webpack_require__(470), + isKey = __webpack_require__(375), + isStrictComparable = __webpack_require__(467), + matchesStrictComparable = __webpack_require__(468), + toKey = __webpack_require__(413); /** Used to compose bitmasks for value comparisons. */ var COMPARE_PARTIAL_FLAG = 1, @@ -65462,11 +64834,11 @@ module.exports = baseMatchesProperty; /***/ }), -/* 468 */ +/* 470 */ /***/ (function(module, exports, __webpack_require__) { -var baseHasIn = __webpack_require__(469), - hasPath = __webpack_require__(470); +var baseHasIn = __webpack_require__(471), + hasPath = __webpack_require__(472); /** * Checks if `path` is a direct or inherited property of `object`. @@ -65502,7 +64874,7 @@ module.exports = hasIn; /***/ }), -/* 469 */ +/* 471 */ /***/ (function(module, exports) { /** @@ -65521,15 +64893,15 @@ module.exports = baseHasIn; /***/ }), -/* 470 */ +/* 472 */ /***/ (function(module, exports, __webpack_require__) { -var castPath = __webpack_require__(372), - isArguments = __webpack_require__(444), +var castPath = __webpack_require__(374), + isArguments = __webpack_require__(446), isArray = __webpack_require__(75), - isIndex = __webpack_require__(448), - isLength = __webpack_require__(451), - toKey = __webpack_require__(411); + isIndex = __webpack_require__(450), + isLength = __webpack_require__(453), + toKey = __webpack_require__(413); /** * Checks if `path` exists on `object`. @@ -65566,7 +64938,7 @@ module.exports = hasPath; /***/ }), -/* 471 */ +/* 473 */ /***/ (function(module, exports) { /** @@ -65593,13 +64965,13 @@ module.exports = identity; /***/ }), -/* 472 */ +/* 474 */ /***/ (function(module, exports, __webpack_require__) { -var baseProperty = __webpack_require__(473), - basePropertyDeep = __webpack_require__(474), - isKey = __webpack_require__(373), - toKey = __webpack_require__(411); +var baseProperty = __webpack_require__(475), + basePropertyDeep = __webpack_require__(476), + isKey = __webpack_require__(375), + toKey = __webpack_require__(413); /** * Creates a function that returns the value at `path` of a given object. @@ -65631,7 +65003,7 @@ module.exports = property; /***/ }), -/* 473 */ +/* 475 */ /***/ (function(module, exports) { /** @@ -65651,10 +65023,10 @@ module.exports = baseProperty; /***/ }), -/* 474 */ +/* 476 */ /***/ (function(module, exports, __webpack_require__) { -var baseGet = __webpack_require__(371); +var baseGet = __webpack_require__(373); /** * A specialized version of `baseProperty` which supports deep paths. @@ -65673,15 +65045,15 @@ module.exports = basePropertyDeep; /***/ }), -/* 475 */ +/* 477 */ /***/ (function(module, exports, __webpack_require__) { -var SetCache = __webpack_require__(425), - arrayIncludes = __webpack_require__(476), - arrayIncludesWith = __webpack_require__(481), - cacheHas = __webpack_require__(429), - createSet = __webpack_require__(482), - setToArray = __webpack_require__(433); +var SetCache = __webpack_require__(427), + arrayIncludes = __webpack_require__(478), + arrayIncludesWith = __webpack_require__(483), + cacheHas = __webpack_require__(431), + createSet = __webpack_require__(484), + setToArray = __webpack_require__(435); /** Used as the size to enable large array optimizations. */ var LARGE_ARRAY_SIZE = 200; @@ -65751,10 +65123,10 @@ module.exports = baseUniq; /***/ }), -/* 476 */ +/* 478 */ /***/ (function(module, exports, __webpack_require__) { -var baseIndexOf = __webpack_require__(477); +var baseIndexOf = __webpack_require__(479); /** * A specialized version of `_.includes` for arrays without support for @@ -65774,12 +65146,12 @@ module.exports = arrayIncludes; /***/ }), -/* 477 */ +/* 479 */ /***/ (function(module, exports, __webpack_require__) { -var baseFindIndex = __webpack_require__(478), - baseIsNaN = __webpack_require__(479), - strictIndexOf = __webpack_require__(480); +var baseFindIndex = __webpack_require__(480), + baseIsNaN = __webpack_require__(481), + strictIndexOf = __webpack_require__(482); /** * The base implementation of `_.indexOf` without `fromIndex` bounds checks. @@ -65800,7 +65172,7 @@ module.exports = baseIndexOf; /***/ }), -/* 478 */ +/* 480 */ /***/ (function(module, exports) { /** @@ -65830,7 +65202,7 @@ module.exports = baseFindIndex; /***/ }), -/* 479 */ +/* 481 */ /***/ (function(module, exports) { /** @@ -65848,7 +65220,7 @@ module.exports = baseIsNaN; /***/ }), -/* 480 */ +/* 482 */ /***/ (function(module, exports) { /** @@ -65877,7 +65249,7 @@ module.exports = strictIndexOf; /***/ }), -/* 481 */ +/* 483 */ /***/ (function(module, exports) { /** @@ -65905,12 +65277,12 @@ module.exports = arrayIncludesWith; /***/ }), -/* 482 */ +/* 484 */ /***/ (function(module, exports, __webpack_require__) { -var Set = __webpack_require__(462), - noop = __webpack_require__(483), - setToArray = __webpack_require__(433); +var Set = __webpack_require__(464), + noop = __webpack_require__(485), + setToArray = __webpack_require__(435); /** Used as references for various `Number` constants. */ var INFINITY = 1 / 0; @@ -65930,7 +65302,7 @@ module.exports = createSet; /***/ }), -/* 483 */ +/* 485 */ /***/ (function(module, exports) { /** @@ -65953,7 +65325,7 @@ module.exports = noop; /***/ }), -/* 484 */ +/* 486 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -65961,19 +65333,19 @@ module.exports = noop; * * @module utils */ -const cozyClient = __webpack_require__(485); +const cozyClient = __webpack_require__(487); -const groupBy = __webpack_require__(729); +const groupBy = __webpack_require__(752); -const keyBy = __webpack_require__(704); +const keyBy = __webpack_require__(665); -const sortBy = __webpack_require__(826); +const sortBy = __webpack_require__(839); -const range = __webpack_require__(886); +const range = __webpack_require__(894); const { format -} = __webpack_require__(889); +} = __webpack_require__(897); /** * This function allows to fetch all documents for a given doctype. It is the fastest to get all * documents but without filtering possibilities @@ -65981,7 +65353,7 @@ const { * * Parameters: * - * `doctype` (string): the doctype from which you want to fetch the data + * * `doctype` (string): the doctype from which you want to fetch the data * */ @@ -65996,9 +65368,9 @@ const fetchAll = async doctype => { * * Parameters: * - * `doctype` (string): the doctype from which you want to fetch the data - * `selector` (object): the mango query selector - * `index` (object): (optional) the query selector index. If not defined, the function will + * * `doctype` (string): the doctype from which you want to fetch the data + * * `selector` (object): the mango query selector + * * `index` (object): (optional) the query selector index. If not defined, the function will * create it's own index with the keys specified in the selector * * @@ -66039,16 +65411,16 @@ const queryAll = async (doctype, selector, index) => { * * Parameters: * - * `doctype` (string): the doctype from which you want to fetch the data - * `selector` (object): (optional) the mango query selector - * `options` : + * * `doctype` (string): the doctype from which you want to fetch the data + * * `selector` (object): (optional) the mango query selector + * * `options` : * - `keys` (array) : List of keys used to check that two items are the same. * - `index` (optionnal) : Return value returned by `cozy.data.defineIndex`, the default will correspond to all documents of the selected doctype. * - `selector` (optionnal object) : Mango request to get records. Gets all the records by default * * Returns an object with the following keys: - * `toKeep`: this is the list of unique documents that you should keep in db - * `toRemove`: this is the list of documents that can remove from db. If this is io.cozy.bills + * * `toKeep`: this is the list of unique documents that you should keep in db + * * `toRemove`: this is the list of documents that can remove from db. If this is io.cozy.bills * documents, do not forget to clean linked bank operations * * ```javascript @@ -66118,10 +65490,10 @@ const sortBillsByLinkedOperationNumber = (bills, operations) => { * * Parameters: * - * `doctype` (string): the doctype from which you want to fetch the data - * `ids` (array): array of ids of documents to update - * `transformation` (object): attributes to change with their values - * `options` : + * * `doctype` (string): the doctype from which you want to fetch the data + * * `ids` (array): array of ids of documents to update + * * `transformation` (object): attributes to change with their values + * * `options` : * - `keys` (array) : List of keys used to check that two items are the same. * - `index` (optionnal) : Return value returned by `cozy.data.defineIndex`, the default will correspond to all documents of the selected doctype. * - `selector` (optionnal object) : Mango request to get records. Gets all the records by default @@ -66149,10 +65521,10 @@ const batchUpdateAttributes = async (doctype, ids, transformation) => { * * Parameters: * - * `doctype` (string): the doctype from which you want to fetch the data - * `documents` (array): documents to delete with their ids - * `transformation` (object): attributes to change with their values - * `options` : + * * `doctype` (string): the doctype from which you want to fetch the data + * * `documents` (array): documents to delete with their ids + * * `transformation` (object): attributes to change with their values + * * `options` : * - `keys` (array) : List of keys used to check that two items are the same. * - `index` (optionnal) : Return value returned by `cozy.data.defineIndex`, the default will correspond to all documents of the selected doctype. * - `selector` (optionnal object) : Mango request to get records. Gets all the records by default @@ -66183,8 +65555,8 @@ const batchDelete = async (doctype, documents) => { * * Parameters: * - * `fileId` (string): the id of the file in the cozy - * `options` : + * * `fileId` (string): the id of the file in the cozy + * * `options` : * - `pages` (array or number) : The list of page you want to interpret * * @@ -66207,7 +65579,7 @@ const getPdfText = async (fileId, options = {}) => { let pdfjs; try { - pdfjs = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs-dist/es5/build/pdf'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); + pdfjs = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs-dist'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); } catch (err) { throw new Error('pdfjs-dist dependency is missing. Please add it in your package.json'); } @@ -66252,7 +65624,7 @@ module.exports = { * * Parameters: * - * `date` (Date): the id of the file in the cozy + * * `date` (Date): the id of the file in the cozy * * Returns a string * @@ -66268,7 +65640,7 @@ function formatDate(date) { } /***/ }), -/* 485 */ +/* 487 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -66282,24 +65654,15 @@ function formatDate(date) { const { Client, MemoryStorage -} = __webpack_require__(486); +} = __webpack_require__(488); -const NewCozyClient = __webpack_require__(527).default; +const NewCozyClient = __webpack_require__(529).default; -const { - models -} = __webpack_require__(527); - -const globalFetch = __webpack_require__(493).default; - -global.fetch = globalFetch; -global.Headers = globalFetch.Headers; // fixes an import problem of isomorphic fetch in cozy-client and cozy-client-js - -const manifest = __webpack_require__(833); +const manifest = __webpack_require__(845); const getCozyClient = function (environment = 'production') { if (environment === 'standalone' || environment === 'test') { - return __webpack_require__(834); + return __webpack_require__(846); } const cozyFields = JSON.parse(process.env.COZY_FIELDS || '{}'); @@ -66310,7 +65673,6 @@ const getCozyClient = function (environment = 'production') { version: manifest.data.version } }); - newCozyClient.models = models; const options = { cozyURL: newCozyClient.stackClient.uri }; @@ -66363,7 +65725,7 @@ const cozyClient = getCozyClient( // webpack 4 now changes the NODE_ENV environm module.exports = cozyClient; /***/ }), -/* 486 */ +/* 488 */ /***/ (function(module, exports, __webpack_require__) { (function(e, a) { for(var i in a) e[i] = a[i]; }(exports, /******/ (function(modules) { // webpackBootstrap @@ -67370,7 +66732,7 @@ function generateRandomState() { /* 4 */ /***/ (function(module, exports) { -module.exports = __webpack_require__(487); +module.exports = __webpack_require__(489); /***/ }), /* 5 */ @@ -67421,7 +66783,7 @@ function pickService(intent, filterServices) { /* 6 */ /***/ (function(module, exports) { -module.exports = __webpack_require__(490); +module.exports = __webpack_require__(492); /***/ }), /* 7 */ @@ -69033,10 +68395,7 @@ var doUpload = function () { 'Content-Type': contentType }; - if (contentLength) { - headers['Content-Length'] = String(contentLength); - finalpath = addQuerystringParam(finalpath, 'Size', String(contentLength)); - } + if (contentLength) headers['Content-Length'] = String(contentLength); if (checksum) headers['Content-MD5'] = checksum; if (lastModifiedDate) headers['Date'] = lastModifiedDate.toGMTString(); if (ifMatch) headers['If-Match'] = ifMatch; @@ -69183,12 +68542,9 @@ function createDirectory(cozy, options) { dirID = _ref5.dirID, createdAt = _ref5.createdAt, updatedAt = _ref5.updatedAt, - lastModifiedDate = _ref5.lastModifiedDate, - noSanitize = _ref5.noSanitize; + lastModifiedDate = _ref5.lastModifiedDate; - if (!noSanitize) { - name = sanitizeFileName(name); - } + name = sanitizeFileName(name); if (typeof name !== 'string' || name === '') { throw new Error('missing name argument'); @@ -69223,15 +68579,10 @@ function createDirectory(cozy, options) { }); } -function getDirectoryOrCreate(cozy, name, parentDirectory, options) { +function getDirectoryOrCreate(cozy, name, parentDirectory) { if (parentDirectory && !parentDirectory.attributes) throw new Error('Malformed parent directory'); - var _ref6 = options || {}, - noSanitize = _ref6.noSanitize; - - if (!noSanitize) { - name = sanitizeFileName(name); - } + name = sanitizeFileName(name); var path = (parentDirectory._id === ROOT_DIR_ID ? '' : parentDirectory.attributes.path) + '/' + name; @@ -69249,7 +68600,7 @@ function getDirectoryOrCreate(cozy, name, parentDirectory, options) { }); } -function createDirectoryByPath(cozy, path, offline, options) { +function createDirectoryByPath(cozy, path, offline) { var parts = path.split('/').filter(function (part) { return part !== ''; }); @@ -69258,7 +68609,7 @@ function createDirectoryByPath(cozy, path, offline, options) { return parts.length ? parts.reduce(function (parentDirectoryPromise, part) { return parentDirectoryPromise.then(function (parentDirectory) { - return getDirectoryOrCreate(cozy, part, parentDirectory, options); + return getDirectoryOrCreate(cozy, part, parentDirectory); }); }, rootDirectoryPromise) : rootDirectoryPromise; } @@ -69272,19 +68623,13 @@ function doUpdateAttributes(cozy, attrs, path, options) { throw new Error('missing attrs argument'); } - var _ref7 = options || {}, - ifMatch = _ref7.ifMatch, - noSanitize = _ref7.noSanitize; - - var name = attrs.name; - if (!noSanitize) { - name = sanitizeFileName(name); - } + var _ref6 = options || {}, + ifMatch = _ref6.ifMatch; var body = { data: { attributes: Object.assign({}, attrs, { - name: name + name: sanitizeFileName(attrs.name) }) } }; @@ -69308,8 +68653,8 @@ function trashById(cozy, id, options) { throw new Error('missing id argument'); } - var _ref8 = options || {}, - ifMatch = _ref8.ifMatch; + var _ref7 = options || {}, + ifMatch = _ref7.ifMatch; return (0, _fetch.cozyFetchJSON)(cozy, 'DELETE', '/files/' + encodeURIComponent(id), undefined, { headers: { @@ -69324,10 +68669,10 @@ function statById(cozy, id) { if (offline && cozy.offline.hasDatabase(_doctypes.DOCTYPE_FILES)) { var db = cozy.offline.getDatabase(_doctypes.DOCTYPE_FILES); - return Promise.all([db.get(id), db.find(Object.assign({ selector: { dir_id: id } }, options))]).then(function (_ref9) { - var _ref10 = _slicedToArray(_ref9, 2), - doc = _ref10[0], - children = _ref10[1]; + return Promise.all([db.get(id), db.find(Object.assign({ selector: { dir_id: id } }, options))]).then(function (_ref8) { + var _ref9 = _slicedToArray(_ref8, 2), + doc = _ref9[0], + children = _ref9[1]; if (id === ROOT_DIR_ID) { children.docs = children.docs.filter(function (doc) { @@ -69453,8 +68798,8 @@ function restoreById(cozy, id) { } function destroyById(cozy, id, options) { - var _ref11 = options || {}, - ifMatch = _ref11.ifMatch; + var _ref10 = options || {}, + ifMatch = _ref10.ifMatch; return (0, _fetch.cozyFetchJSON)(cozy, 'DELETE', '/files/trash/' + encodeURIComponent(id), undefined, { headers: { @@ -70320,19 +69665,19 @@ function stopAllRepeatedReplication(cozy) { /* 20 */ /***/ (function(module, exports) { -module.exports = __webpack_require__(491); +module.exports = __webpack_require__(493); /***/ }), /* 21 */ /***/ (function(module, exports) { -module.exports = __webpack_require__(494); +module.exports = __webpack_require__(496); /***/ }), /* 22 */ /***/ (function(module, exports) { -module.exports = __webpack_require__(506); +module.exports = __webpack_require__(508); /***/ }), /* 23 */ @@ -70452,14 +69797,14 @@ function makeReferencesPath(doc) { //# sourceMappingURL=cozy-client.node.js.map /***/ }), -/* 487 */ +/* 489 */ /***/ (function(module, exports, __webpack_require__) { -module.exports = __webpack_require__(488); +module.exports = __webpack_require__(490); /***/ }), -/* 488 */ +/* 490 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -70484,7 +69829,7 @@ var oldRuntime = hadRuntime && g.regeneratorRuntime; // Force reevalutation of runtime.js. g.regeneratorRuntime = undefined; -module.exports = __webpack_require__(489); +module.exports = __webpack_require__(491); if (hadRuntime) { // Restore the original runtime. @@ -70500,7 +69845,7 @@ if (hadRuntime) { /***/ }), -/* 489 */ +/* 491 */ /***/ (function(module, exports) { /** @@ -71233,7 +70578,7 @@ if (hadRuntime) { /***/ }), -/* 490 */ +/* 492 */ /***/ (function(module, exports) { (function () { @@ -71256,10 +70601,10 @@ if (hadRuntime) { /***/ }), -/* 491 */ +/* 493 */ /***/ (function(module, exports, __webpack_require__) { -var fetchNode = __webpack_require__(492) +var fetchNode = __webpack_require__(494) var fetch = fetchNode.fetch.bind({}) fetch.polyfill = true @@ -71273,10 +70618,10 @@ if (!global.fetch) { /***/ }), -/* 492 */ +/* 494 */ /***/ (function(module, exports, __webpack_require__) { -var nodeFetch = __webpack_require__(493) +var nodeFetch = __webpack_require__(495) var realFetch = nodeFetch.default || nodeFetch var fetch = function (url, options) { @@ -71299,7 +70644,7 @@ exports.default = fetch /***/ }), -/* 493 */ +/* 495 */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; @@ -72954,24 +72299,24 @@ fetch.Promise = global.Promise; /***/ }), -/* 494 */ +/* 496 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var argsarray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(495); +/* harmony import */ var argsarray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(497); /* harmony import */ var argsarray__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(argsarray__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var immediate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(496); +/* harmony import */ var immediate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(498); /* harmony import */ var immediate__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(immediate__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var events__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(271); +/* harmony import */ var events__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(268); /* harmony import */ var events__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(events__WEBPACK_IMPORTED_MODULE_2__); -/* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(497); +/* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(499); /* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(inherits__WEBPACK_IMPORTED_MODULE_3__); -/* harmony import */ var spark_md5__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(499); +/* harmony import */ var spark_md5__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(501); /* harmony import */ var spark_md5__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(spark_md5__WEBPACK_IMPORTED_MODULE_4__); -/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(500); +/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(502); /* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_5__); -/* harmony import */ var vuvuzela__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(505); +/* harmony import */ var vuvuzela__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(507); /* harmony import */ var vuvuzela__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(vuvuzela__WEBPACK_IMPORTED_MODULE_6__); @@ -83181,7 +82526,7 @@ PouchDB.plugin(IDBPouch) /***/ }), -/* 495 */ +/* 497 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -83206,7 +82551,7 @@ function argsArray(fun) { } /***/ }), -/* 496 */ +/* 498 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -83286,7 +82631,7 @@ function immediate(task) { /***/ }), -/* 497 */ +/* 499 */ /***/ (function(module, exports, __webpack_require__) { try { @@ -83294,12 +82639,12 @@ try { if (typeof util.inherits !== 'function') throw ''; module.exports = util.inherits; } catch (e) { - module.exports = __webpack_require__(498); + module.exports = __webpack_require__(500); } /***/ }), -/* 498 */ +/* 500 */ /***/ (function(module, exports) { if (typeof Object.create === 'function') { @@ -83328,7 +82673,7 @@ if (typeof Object.create === 'function') { /***/ }), -/* 499 */ +/* 501 */ /***/ (function(module, exports, __webpack_require__) { (function (factory) { @@ -84071,11 +83416,11 @@ if (typeof Object.create === 'function') { /***/ }), -/* 500 */ +/* 502 */ /***/ (function(module, exports, __webpack_require__) { -var v1 = __webpack_require__(501); -var v4 = __webpack_require__(504); +var v1 = __webpack_require__(503); +var v4 = __webpack_require__(506); var uuid = v4; uuid.v1 = v1; @@ -84085,11 +83430,11 @@ module.exports = uuid; /***/ }), -/* 501 */ +/* 503 */ /***/ (function(module, exports, __webpack_require__) { -var rng = __webpack_require__(502); -var bytesToUuid = __webpack_require__(503); +var rng = __webpack_require__(504); +var bytesToUuid = __webpack_require__(505); // **`v1()` - Generate time-based UUID** // @@ -84200,7 +83545,7 @@ module.exports = v1; /***/ }), -/* 502 */ +/* 504 */ /***/ (function(module, exports, __webpack_require__) { // Unique ID creation requires a high quality random # generator. In node.js @@ -84214,7 +83559,7 @@ module.exports = function nodeRNG() { /***/ }), -/* 503 */ +/* 505 */ /***/ (function(module, exports) { /** @@ -84243,11 +83588,11 @@ module.exports = bytesToUuid; /***/ }), -/* 504 */ +/* 506 */ /***/ (function(module, exports, __webpack_require__) { -var rng = __webpack_require__(502); -var bytesToUuid = __webpack_require__(503); +var rng = __webpack_require__(504); +var bytesToUuid = __webpack_require__(505); function v4(options, buf, offset) { var i = buf && offset || 0; @@ -84278,7 +83623,7 @@ module.exports = v4; /***/ }), -/* 505 */ +/* 507 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -84458,18 +83803,18 @@ exports.parse = function (str) { /***/ }), -/* 506 */ +/* 508 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var pouchdb_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(507); -/* harmony import */ var pouchdb_errors__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(512); -/* harmony import */ var pouchdb_fetch__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(516); -/* harmony import */ var pouchdb_selector_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(519); -/* harmony import */ var pouchdb_abstract_mapreduce__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(521); -/* harmony import */ var pouchdb_collate__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(520); -/* harmony import */ var pouchdb_md5__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(515); +/* harmony import */ var pouchdb_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(509); +/* harmony import */ var pouchdb_errors__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(514); +/* harmony import */ var pouchdb_fetch__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(518); +/* harmony import */ var pouchdb_selector_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(521); +/* harmony import */ var pouchdb_abstract_mapreduce__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(523); +/* harmony import */ var pouchdb_collate__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(522); +/* harmony import */ var pouchdb_md5__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(517); @@ -85889,7 +85234,7 @@ plugin.deleteIndex = Object(pouchdb_utils__WEBPACK_IMPORTED_MODULE_0__["toPromis /***/ }), -/* 507 */ +/* 509 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -85920,20 +85265,20 @@ __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toPromise", function() { return toPromise; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "upsert", function() { return upsert; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uuid", function() { return uuid; }); -/* harmony import */ var clone_buffer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(508); +/* harmony import */ var clone_buffer__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(510); /* harmony import */ var clone_buffer__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(clone_buffer__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var argsarray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(495); +/* harmony import */ var argsarray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(497); /* harmony import */ var argsarray__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(argsarray__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var pouchdb_collections__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(509); -/* harmony import */ var events__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(271); +/* harmony import */ var pouchdb_collections__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(511); +/* harmony import */ var events__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(268); /* harmony import */ var events__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(events__WEBPACK_IMPORTED_MODULE_3__); -/* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(510); +/* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(512); /* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(inherits__WEBPACK_IMPORTED_MODULE_4__); -/* harmony import */ var pouchdb_errors__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(512); -/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(500); +/* harmony import */ var pouchdb_errors__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(514); +/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(502); /* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(uuid__WEBPACK_IMPORTED_MODULE_6__); -/* harmony import */ var pouchdb_md5__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(515); -/* harmony import */ var pouchdb_utils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(507); +/* harmony import */ var pouchdb_md5__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(517); +/* harmony import */ var pouchdb_utils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(509); @@ -86672,7 +86017,7 @@ var uuid = uuid__WEBPACK_IMPORTED_MODULE_6___default.a.v4; /***/ }), -/* 508 */ +/* 510 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -86707,7 +86052,7 @@ module.exports = cloneBuffer; /***/ }), -/* 509 */ +/* 511 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -86815,7 +86160,7 @@ var ExportedMap; /***/ }), -/* 510 */ +/* 512 */ /***/ (function(module, exports, __webpack_require__) { try { @@ -86823,12 +86168,12 @@ try { if (typeof util.inherits !== 'function') throw ''; module.exports = util.inherits; } catch (e) { - module.exports = __webpack_require__(511); + module.exports = __webpack_require__(513); } /***/ }), -/* 511 */ +/* 513 */ /***/ (function(module, exports) { if (typeof Object.create === 'function') { @@ -86857,7 +86202,7 @@ if (typeof Object.create === 'function') { /***/ }), -/* 512 */ +/* 514 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -86888,7 +86233,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "INVALID_URL", function() { return INVALID_URL; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createError", function() { return createError; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "generateErrorFromResponse", function() { return generateErrorFromResponse; }); -/* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(513); +/* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(515); /* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(inherits__WEBPACK_IMPORTED_MODULE_0__); @@ -86987,7 +86332,7 @@ function generateErrorFromResponse(err) { /***/ }), -/* 513 */ +/* 515 */ /***/ (function(module, exports, __webpack_require__) { try { @@ -86995,12 +86340,12 @@ try { if (typeof util.inherits !== 'function') throw ''; module.exports = util.inherits; } catch (e) { - module.exports = __webpack_require__(514); + module.exports = __webpack_require__(516); } /***/ }), -/* 514 */ +/* 516 */ /***/ (function(module, exports) { if (typeof Object.create === 'function') { @@ -87029,7 +86374,7 @@ if (typeof Object.create === 'function') { /***/ }), -/* 515 */ +/* 517 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -87053,7 +86398,7 @@ function stringMd5(string) { /***/ }), -/* 516 */ +/* 518 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -87061,8 +86406,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fetch", function() { return fetch; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Headers", function() { return Headers; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AbortController", function() { return AbortController; }); -/* harmony import */ var node_fetch__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(493); -/* harmony import */ var fetch_cookie__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(517); +/* harmony import */ var node_fetch__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(495); +/* harmony import */ var fetch_cookie__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(519); /* harmony import */ var fetch_cookie__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(fetch_cookie__WEBPACK_IMPORTED_MODULE_1__); @@ -87081,10 +86426,10 @@ var Headers = node_fetch__WEBPACK_IMPORTED_MODULE_0__["default"].Headers; /***/ }), -/* 517 */ +/* 519 */ /***/ (function(module, exports, __webpack_require__) { -var denodeify = __webpack_require__(518)(Promise) +var denodeify = __webpack_require__(520)(Promise) var tough = __webpack_require__(81) module.exports = function fetchCookieDecorator (fetch, jar) { @@ -87130,7 +86475,7 @@ module.exports = function fetchCookieDecorator (fetch, jar) { /***/ }), -/* 518 */ +/* 520 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -87162,7 +86507,7 @@ module.exports = exports["default"]; /***/ }), -/* 519 */ +/* 521 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -87179,8 +86524,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "setFieldInDoc", function() { return setFieldInDoc; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "compare", function() { return compare; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "parseField", function() { return parseField; }); -/* harmony import */ var pouchdb_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(507); -/* harmony import */ var pouchdb_collate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(520); +/* harmony import */ var pouchdb_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(509); +/* harmony import */ var pouchdb_collate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(522); @@ -87740,7 +87085,7 @@ function matchesSelector(doc, selector) { /***/ }), -/* 520 */ +/* 522 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -88130,19 +87475,19 @@ function numToIndexableString(num) { /***/ }), -/* 521 */ +/* 523 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var pouchdb_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(507); -/* harmony import */ var pouchdb_md5__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(515); -/* harmony import */ var pouchdb_collections__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(509); -/* harmony import */ var pouchdb_binary_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(522); -/* harmony import */ var pouchdb_collate__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(520); -/* harmony import */ var pouchdb_errors__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(512); -/* harmony import */ var pouchdb_fetch__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(516); -/* harmony import */ var pouchdb_mapreduce_utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(524); +/* harmony import */ var pouchdb_utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(509); +/* harmony import */ var pouchdb_md5__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(517); +/* harmony import */ var pouchdb_collections__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(511); +/* harmony import */ var pouchdb_binary_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(524); +/* harmony import */ var pouchdb_collate__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(522); +/* harmony import */ var pouchdb_errors__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(514); +/* harmony import */ var pouchdb_fetch__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(518); +/* harmony import */ var pouchdb_mapreduce_utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(526); @@ -89207,7 +88552,7 @@ function createAbstractMapReduce(localDocName, mapper, reducer, ddocValidator) { /***/ }), -/* 522 */ +/* 524 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -89223,7 +88568,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "readAsArrayBuffer", function() { return readAsArrayBuffer; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "readAsBinaryString", function() { return readAsBinaryString; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "typedBuffer", function() { return typedBuffer; }); -/* harmony import */ var buffer_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(523); +/* harmony import */ var buffer_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(525); /* harmony import */ var buffer_from__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(buffer_from__WEBPACK_IMPORTED_MODULE_0__); @@ -89327,7 +88672,7 @@ function readAsBinaryString(blob, callback) { /***/ }), -/* 523 */ +/* 525 */ /***/ (function(module, exports) { var toString = Object.prototype.toString @@ -89402,7 +88747,7 @@ module.exports = bufferFrom /***/ }), -/* 524 */ +/* 526 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -89416,12 +88761,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "QueryParseError", function() { return QueryParseError; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "NotFoundError", function() { return NotFoundError; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BuiltInError", function() { return BuiltInError; }); -/* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(525); +/* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(527); /* harmony import */ var inherits__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(inherits__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var pouchdb_collections__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(509); -/* harmony import */ var argsarray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(495); +/* harmony import */ var pouchdb_collections__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(511); +/* harmony import */ var argsarray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(497); /* harmony import */ var argsarray__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(argsarray__WEBPACK_IMPORTED_MODULE_2__); -/* harmony import */ var pouchdb_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(507); +/* harmony import */ var pouchdb_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(509); @@ -89537,7 +88882,7 @@ function mapToKeysArray(map) { /***/ }), -/* 525 */ +/* 527 */ /***/ (function(module, exports, __webpack_require__) { try { @@ -89545,12 +88890,12 @@ try { if (typeof util.inherits !== 'function') throw ''; module.exports = util.inherits; } catch (e) { - module.exports = __webpack_require__(526); + module.exports = __webpack_require__(528); } /***/ }), -/* 526 */ +/* 528 */ /***/ (function(module, exports) { if (typeof Object.create === 'function') { @@ -89579,15 +88924,15 @@ if (typeof Object.create === 'function') { /***/ }), -/* 527 */ +/* 529 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireWildcard = __webpack_require__(528); +var _interopRequireWildcard = __webpack_require__(530); -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true @@ -89613,7 +88958,6 @@ var _exportNames = { getQueryFromState: true, Registry: true, manifest: true, - BulkEditError: true, models: true }; Object.defineProperty(exports, "default", { @@ -89736,44 +89080,37 @@ Object.defineProperty(exports, "Registry", { return _registry.default; } }); -Object.defineProperty(exports, "BulkEditError", { - enumerable: true, - get: function get() { - return _errors.BulkEditError; - } -}); exports.models = exports.manifest = void 0; -var _CozyClient = _interopRequireDefault(__webpack_require__(531)); +var _CozyClient = _interopRequireDefault(__webpack_require__(533)); -var _CozyLink = _interopRequireDefault(__webpack_require__(692)); +var _CozyLink = _interopRequireDefault(__webpack_require__(562)); -var _StackLink = _interopRequireDefault(__webpack_require__(691)); +var _StackLink = _interopRequireDefault(__webpack_require__(555)); -var _flow = _interopRequireDefault(__webpack_require__(795)); +var _flow = _interopRequireDefault(__webpack_require__(776)); -var _dsl = __webpack_require__(625); +var _dsl = __webpack_require__(561); -var _associations = __webpack_require__(696); +var _associations = __webpack_require__(563); -var _helpers = __webpack_require__(761); +var _helpers = __webpack_require__(681); -var _utils = __webpack_require__(807); +var _utils = __webpack_require__(788); -var _store = __webpack_require__(698); +var _store = __webpack_require__(617); -var _registry = _interopRequireDefault(__webpack_require__(614)); +var _registry = _interopRequireDefault(__webpack_require__(789)); -var manifest = _interopRequireWildcard(__webpack_require__(808)); +var manifest = _interopRequireWildcard(__webpack_require__(793)); exports.manifest = manifest; -var _mock = __webpack_require__(809); +var _mock = __webpack_require__(794); Object.keys(_mock).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; - if (key in exports && exports[key] === _mock[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { @@ -89782,14 +89119,11 @@ Object.keys(_mock).forEach(function (key) { }); }); -var _errors = __webpack_require__(693); - -var _cli = __webpack_require__(810); +var _cli = __webpack_require__(795); Object.keys(_cli).forEach(function (key) { if (key === "default" || key === "__esModule") return; if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return; - if (key in exports && exports[key] === _cli[key]) return; Object.defineProperty(exports, key, { enumerable: true, get: function get() { @@ -89798,15 +89132,15 @@ Object.keys(_cli).forEach(function (key) { }); }); -var models = _interopRequireWildcard(__webpack_require__(816)); +var models = _interopRequireWildcard(__webpack_require__(832)); exports.models = models; /***/ }), -/* 528 */ +/* 530 */ /***/ (function(module, exports, __webpack_require__) { -var _typeof = __webpack_require__(529)["default"]; +var _typeof = __webpack_require__(531)["default"]; function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; @@ -89864,7 +89198,7 @@ module.exports = _interopRequireWildcard; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 529 */ +/* 531 */ /***/ (function(module, exports) { function _typeof(obj) { @@ -89891,7 +89225,7 @@ module.exports = _typeof; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 530 */ +/* 532 */ /***/ (function(module, exports) { function _interopRequireDefault(obj) { @@ -89904,104 +89238,84 @@ module.exports = _interopRequireDefault; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 531 */ +/* 533 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireWildcard = __webpack_require__(528); +var _interopRequireWildcard = __webpack_require__(530); -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; -var _toArray2 = _interopRequireDefault(__webpack_require__(532)); - -var _slicedToArray2 = _interopRequireDefault(__webpack_require__(538)); - -var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(540)); - -var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(543)); - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +var _toArray2 = _interopRequireDefault(__webpack_require__(534)); -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +var _slicedToArray2 = _interopRequireDefault(__webpack_require__(540)); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(542)); -var _mapValues = _interopRequireDefault(__webpack_require__(551)); +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -var _fromPairs = _interopRequireDefault(__webpack_require__(557)); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -var _flatten = _interopRequireDefault(__webpack_require__(558)); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var _uniqBy = _interopRequireDefault(__webpack_require__(412)); +var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(550)); -var _zip = _interopRequireDefault(__webpack_require__(561)); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var _forEach = _interopRequireDefault(__webpack_require__(571)); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -var _get = _interopRequireDefault(__webpack_require__(370)); +var _const = __webpack_require__(554); -var _microee = _interopRequireDefault(__webpack_require__(576)); +var _StackLink = _interopRequireDefault(__webpack_require__(555)); -var _cozyStackClient = _interopRequireWildcard(__webpack_require__(577)); +var _associations = __webpack_require__(563); -var _const = __webpack_require__(690); +var _helpers = __webpack_require__(676); -var _StackLink = _interopRequireDefault(__webpack_require__(691)); +var _helpers2 = __webpack_require__(681); -var _associations = __webpack_require__(696); +var _dsl = __webpack_require__(561); -var _helpers = __webpack_require__(760); +var _cozyStackClient = _interopRequireWildcard(__webpack_require__(682)); -var _helpers2 = __webpack_require__(761); +var _mobile = __webpack_require__(734); -var _dsl = __webpack_require__(625); +var _optimize = _interopRequireDefault(__webpack_require__(751)); -var _mobile = __webpack_require__(762); +var _store = _interopRequireWildcard(__webpack_require__(617)); -var _optimize = _interopRequireDefault(__webpack_require__(779)); +var _policies = _interopRequireDefault(__webpack_require__(754)); -var _store = _interopRequireWildcard(__webpack_require__(698)); +var _Schema = _interopRequireDefault(__webpack_require__(755)); -var _policies = _interopRequireDefault(__webpack_require__(781)); +var _CozyLink = __webpack_require__(562); -var _Schema = _interopRequireDefault(__webpack_require__(782)); +var _ObservableQuery = _interopRequireDefault(__webpack_require__(769)); -var _CozyLink = __webpack_require__(692); +var _mapValues = _interopRequireDefault(__webpack_require__(641)); -var _ObservableQuery = _interopRequireDefault(__webpack_require__(788)); +var _fromPairs = _interopRequireDefault(__webpack_require__(770)); -var _snapshots = __webpack_require__(789); +var _flatten = _interopRequireDefault(__webpack_require__(606)); -var _logger = _interopRequireDefault(__webpack_require__(708)); +var _uniqBy = _interopRequireDefault(__webpack_require__(414)); -var _types = __webpack_require__(628); +var _zip = _interopRequireDefault(__webpack_require__(771)); -var _queries = __webpack_require__(728); +var _forEach = _interopRequireDefault(__webpack_require__(773)); -var _jsonStableStringify = _interopRequireDefault(__webpack_require__(790)); +var _get = _interopRequireDefault(__webpack_require__(372)); -var _promiseCache = _interopRequireDefault(__webpack_require__(794)); +var _microee = _interopRequireDefault(__webpack_require__(732)); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } - -function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } +var _snapshots = __webpack_require__(775); var ensureArray = function ensureArray(arr) { return Array.isArray(arr) ? arr : [arr]; @@ -90015,38 +89329,19 @@ var deprecatedHandler = function deprecatedHandler(msg) { } }; }; - -var supportsReferences = function supportsReferences(relationshipClass) { - return relationshipClass.prototype.addReferences && relationshipClass.prototype.removeReferences; -}; - -var referencesUnsupportedError = function referencesUnsupportedError(relationshipClassName) { - return new Error("The \"".concat(relationshipClassName, "\" relationship does not support references. If you need to add references to a document, its relationship class must have the methods {add,remove}References")); -}; - -var DOC_CREATION = 'creation'; -var DOC_UPDATE = 'update'; /** - * @typedef {object} ClientOptions - * @property {object} [client] - * @property {object} [link] - * @property {object} [links] - * @property {Token} [token] - * @property {string} [uri] - * @property {object} [stackClient] - * @property {boolean} [warningForCustomHandlers] - * @property {boolean} [autoHydrate] - * @property {object} [oauth] - * @property {Function} [onTokenRefresh] - * @property {Function} [onTokenRefresh] - * @property {Link} [link] - Backward compatibility - * @property {Array<Link>} [links] - List of links - * @property {object} [schema] - Schema description for each doctypes - * @property {AppMetadata} [appMetadata] - Metadata about the application that will be used in ensureCozyMetadata - * @property {ClientCapabilities} [capabilities] - Capabilities sent by the stack - * @property {boolean} [store] - If set to false, the client will not instantiate a Redux store automatically. Use this if you want to merge cozy-client's store with your own redux store. See [here](https://docs.cozy.io/en/cozy-client/react-integration/#1b-use-your-own-redux-store) for more information. + * @typedef {object} Link + * @typedef {object} Mutation + * @typedef {object} DocumentCollection + * @typedef {object} QueryResult + * @typedef {object} HydratedDocument + * @typedef {object} ReduxStore + * @typedef {object} QueryState */ + +var TRIGGER_CREATION = 'creation'; +var TRIGGER_UPDATE = 'update'; /** * Responsible for * @@ -90056,72 +89351,31 @@ var DOC_UPDATE = 'update'; * - Associations */ -var CozyClient = /*#__PURE__*/function () { +var CozyClient = +/*#__PURE__*/ +function () { /** - * @param {ClientOptions} rawOptions - Options - * - * @example - * ```js - * const client = new CozyClient({ - * schema: { - * todos: { - * doctype: 'io.cozy.todos', - * relationships: { - * authors: { - * type: 'has-many', - * doctype: 'io.cozy.persons' - * } - * } - * } - * } - * }) - * ``` + * @param {object} options - Options + * @param {Link} options.link - Backward compatibility + * @param {Array.Link} options.links - List of links + * @param {object} options.schema - Schema description for each doctypes + * @param {object} options.appMetadata - Metadata about the application that will be used in ensureCozyMetadata * * Cozy-Client will automatically call `this.login()` if provided with a token and an uri */ function CozyClient() { var _this = this; - var rawOptions = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - (0, _classCallCheck2.default)(this, CozyClient); - (0, _defineProperty2.default)(this, "fetchQueryAndGetFromState", /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(query) { - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - _context.prev = 0; - _context.next = 3; - return _this.query(query.definition, query.options); - - case 3: - return _context.abrupt("return", _this.getQueryFromState(query.options.as)); - - case 6: - _context.prev = 6; - _context.t0 = _context["catch"](0); - throw _context.t0; - - case 9: - case "end": - return _context.stop(); - } - } - }, _callee, null, [[0, 6]]); - })); + var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - return function (_x) { - return _ref.apply(this, arguments); - }; - }()); - var link = rawOptions.link, - links = rawOptions.links, - _rawOptions$schema = rawOptions.schema, - schema = _rawOptions$schema === void 0 ? {} : _rawOptions$schema, - _rawOptions$appMetada = rawOptions.appMetadata, - appMetadata = _rawOptions$appMetada === void 0 ? {} : _rawOptions$appMetada, - capabilities = rawOptions.capabilities, - options = (0, _objectWithoutProperties2.default)(rawOptions, ["link", "links", "schema", "appMetadata", "capabilities"]); + var link = _ref.link, + links = _ref.links, + _ref$schema = _ref.schema, + schema = _ref$schema === void 0 ? {} : _ref$schema, + _ref$appMetadata = _ref.appMetadata, + appMetadata = _ref$appMetadata === void 0 ? {} : _ref$appMetadata, + options = (0, _objectWithoutProperties2.default)(_ref, ["link", "links", "schema", "appMetadata"]); + (0, _classCallCheck2.default)(this, CozyClient); if (link) { console.warn('`link` is deprecated, use `links`'); @@ -90129,7 +89383,7 @@ var CozyClient = /*#__PURE__*/function () { this.appMetadata = appMetadata; this.options = options; - this.queryIdGenerator = new _queries.QueryIDGenerator(); + this.idCounter = 1; this.isLogged = false; this.instanceOptions = {}; // Bind handlers @@ -90147,12 +89401,7 @@ var CozyClient = /*#__PURE__*/function () { this.links = ensureArray(link || links || new _StackLink.default()); this.registerClientOnLinks(); this.chain = (0, _CozyLink.chain)(this.links); - this.schema = new _Schema.default(schema, stackClient); - /** - * @type {ClientCapabilities} - */ - - this.capabilities = capabilities || null; // Instances of plugins registered with registerPlugin + this.schema = new _Schema.default(schema, stackClient); // Instances of plugins registered with registerPlugin this.plugins = {}; @@ -90164,93 +89413,57 @@ var CozyClient = /*#__PURE__*/function () { if (options.uri && options.token) { this.login(); } - /** - * @type {object} - */ - - - this.storeAccesors = null; - - if (options.store !== false) { - this.ensureStore(); - } - /** - * Holds in-flight promises for deduplication purpose - * - * @private - * @type {PromiseCache} - */ - - - this._promiseCache = new _promiseCache.default(); } /** - * Gets overrided by MicroEE.mixin - * This is here just so typescript does not scream + * A plugin is a class whose constructor receives the client as first argument. + * The main mean of interaction with the client should be with events + * like "login"/"logout". + * + * The plugin system is meant to encourage separation of concerns, modularity + * and testability : instead of registering events at module level, please + * create a plugin that subscribes to events. + * + * Plugin instances are stored internally in the `plugins` attribute of the client + * and can be accessed via this mean. A plugin class must have the attribute + * `pluginName` that will be use as the key in the `plugins` object. * - * TODO Find a better way to make TS understand that emit is - * a method from cozy-client + * Two plugins with the same `pluginName` cannot co-exist. + * + * @example + * ``` + * class AlertPlugin { + * constructor(client, options) { + * this.client = client + * this.options = options + * this.handleLogin = this.handleLogin.bind(this) + * this.handleLogout = this.handleLogout.bind(this) + * this.client.on("login", this.handleLogin) + * this.client.on("logout", this.handleLogout) + * } + * + * handleLogin() { + * alert(this.options.onLoginAlert) + * } + * + * handleLogout() { + * alert(this.options.onLogoutAlert) + * } + * } + * + * AlertPlugin.pluginName = 'alerts' + * + * client.registerPlugin(AlertPlugin, { + * onLoginAlert: 'client has logged in !', + * onLogoutAlert: 'client has logged out !' + * }) + * + * // the instance of the plugin is accessible via + * client.plugins.alerts + * ``` */ (0, _createClass2.default)(CozyClient, [{ - key: "emit", - value: function emit() {} - }, { - key: "on", - value: function on() {} - }, { - key: "removeListener", - value: function removeListener() {} - /** - * A plugin is a class whose constructor receives the client as first argument. - * The main mean of interaction with the client should be with events - * like "login"/"logout". - * - * The plugin system is meant to encourage separation of concerns, modularity - * and testability : instead of registering events at module level, please - * create a plugin that subscribes to events. - * - * Plugin instances are stored internally in the `plugins` attribute of the client - * and can be accessed via this mean. A plugin class must have the attribute - * `pluginName` that will be use as the key in the `plugins` object. - * - * Two plugins with the same `pluginName` cannot co-exist. - * - * @example - * ```js - * class AlertPlugin { - * constructor(client, options) { - * this.client = client - * this.options = options - * this.handleLogin = this.handleLogin.bind(this) - * this.handleLogout = this.handleLogout.bind(this) - * this.client.on("login", this.handleLogin) - * this.client.on("logout", this.handleLogout) - * } - * - * handleLogin() { - * alert(this.options.onLoginAlert) - * } - * - * handleLogout() { - * alert(this.options.onLogoutAlert) - * } - * } - * - * AlertPlugin.pluginName = 'alerts' - * - * client.registerPlugin(AlertPlugin, { - * onLoginAlert: 'client has logged in !', - * onLogoutAlert: 'client has logged out !' - * }) - * - * // the instance of the plugin is accessible via - * client.plugins.alerts - * ``` - */ - - }, { key: "registerPlugin", value: function registerPlugin(Plugin, options) { if (!Plugin.pluginName) { @@ -90268,9 +89481,6 @@ var CozyClient = /*#__PURE__*/function () { /** * To help with the transition from cozy-client-js to cozy-client, it is possible to instantiate * a client with a cookie-based instance of cozy-client-js. - * - * @param {OldCozyClient} oldClient - An instance of the deprecated cozy-client - * @returns {CozyClient} */ }, { @@ -90281,11 +89491,12 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "registerClientOnLinks", value: function registerClientOnLinks() { - var _iterator = _createForOfIteratorHelper(this.links), - _step; + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; try { - for (_iterator.s(); !(_step = _iterator.n()).done;) { + for (var _iterator = this.links[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { var link = _step.value; if (link.registerClient) { @@ -90297,9 +89508,18 @@ var CozyClient = /*#__PURE__*/function () { } } } catch (err) { - _iterator.e(err); + _didIteratorError = true; + _iteratorError = err; } finally { - _iterator.f(); + try { + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } } } /** @@ -90313,7 +89533,7 @@ var CozyClient = /*#__PURE__*/function () { * - "beforeLogin" at the beginning, before links have been set up * - "login" when the client is fully logged in and links have been set up * - * @param {object} [options] - Options + * @param {object} options - Options * @param {string} options.token - If passed, the token is set on the client * @param {string} options.uri - If passed, the uri is set on the client * @returns {Promise} - Resolves when all links have been setup and client is fully logged in @@ -90336,12 +89556,14 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "_login", value: function () { - var _login2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(options) { - var _iterator2, _step2, link; + var _login2 = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(options) { + var _iteratorNormalCompletion2, _didIteratorError2, _iteratorError2, _iterator2, _step2, link; - return _regenerator.default.wrap(function _callee2$(_context2) { + return _regenerator.default.wrap(function _callee$(_context) { while (1) { - switch (_context2.prev = _context2.next) { + switch (_context.prev = _context.next) { case 0: this.emit('beforeLogin'); this.registerClientOnLinks(); @@ -90356,66 +89578,83 @@ var CozyClient = /*#__PURE__*/function () { } } - _iterator2 = _createForOfIteratorHelper(this.links); - _context2.prev = 4; - - _iterator2.s(); + _iteratorNormalCompletion2 = true; + _didIteratorError2 = false; + _iteratorError2 = undefined; + _context.prev = 6; + _iterator2 = this.links[Symbol.iterator](); - case 6: - if ((_step2 = _iterator2.n()).done) { - _context2.next = 13; + case 8: + if (_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done) { + _context.next = 16; break; } link = _step2.value; if (!link.onLogin) { - _context2.next = 11; + _context.next = 13; break; } - _context2.next = 11; + _context.next = 13; return link.onLogin(); - case 11: - _context2.next = 6; + case 13: + _iteratorNormalCompletion2 = true; + _context.next = 8; break; - case 13: - _context2.next = 18; + case 16: + _context.next = 22; break; - case 15: - _context2.prev = 15; - _context2.t0 = _context2["catch"](4); + case 18: + _context.prev = 18; + _context.t0 = _context["catch"](6); + _didIteratorError2 = true; + _iteratorError2 = _context.t0; - _iterator2.e(_context2.t0); + case 22: + _context.prev = 22; + _context.prev = 23; - case 18: - _context2.prev = 18; + if (!_iteratorNormalCompletion2 && _iterator2.return != null) { + _iterator2.return(); + } + + case 25: + _context.prev = 25; - _iterator2.f(); + if (!_didIteratorError2) { + _context.next = 28; + break; + } - return _context2.finish(18); + throw _iteratorError2; - case 21: + case 28: + return _context.finish(25); + + case 29: + return _context.finish(22); + + case 30: this.isLogged = true; this.isRevoked = false; this.emit('login'); - case 24: + case 33: case "end": - return _context2.stop(); + return _context.stop(); } } - }, _callee2, this, [[4, 15, 18, 21]]); + }, _callee, this, [[6, 18, 22, 30], [23,, 25, 29]]); })); - function _login(_x2) { + return function _login(_x) { return _login2.apply(this, arguments); - } - - return _login; + }; }() /** * Logs out the client and reset all the links @@ -90431,144 +89670,160 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "logout", value: function () { - var _logout = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3() { - var _iterator3, _step3, link; + var _logout = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2() { + var _iteratorNormalCompletion3, _didIteratorError3, _iteratorError3, _iterator3, _step3, link; - return _regenerator.default.wrap(function _callee3$(_context3) { + return _regenerator.default.wrap(function _callee2$(_context2) { while (1) { - switch (_context3.prev = _context3.next) { + switch (_context2.prev = _context2.next) { case 0: if (this.isLogged) { - _context3.next = 3; + _context2.next = 3; break; } - _logger.default.warn("CozyClient isn't logged."); - - return _context3.abrupt("return"); + console.warn("CozyClient isn't logged."); + return _context2.abrupt("return"); case 3: this.emit('beforeLogout'); this.isLogged = false; if (!(this.stackClient instanceof _cozyStackClient.OAuthClient)) { - _context3.next = 17; + _context2.next = 17; break; } - _context3.prev = 6; + _context2.prev = 6; if (!(this.stackClient.unregister && (!this.stackClient.isRegistered || this.stackClient.isRegistered()))) { - _context3.next = 10; + _context2.next = 10; break; } - _context3.next = 10; + _context2.next = 10; return this.stackClient.unregister(); case 10: - _context3.next = 15; + _context2.next = 15; break; case 12: - _context3.prev = 12; - _context3.t0 = _context3["catch"](6); - - _logger.default.warn("Impossible to unregister client on stack: ".concat(_context3.t0)); + _context2.prev = 12; + _context2.t0 = _context2["catch"](6); + console.warn("Impossible to unregister client on stack: ".concat(_context2.t0)); case 15: - _context3.next = 25; + _context2.next = 25; break; case 17: - _context3.prev = 17; - _context3.next = 20; + _context2.prev = 17; + _context2.next = 20; return this.stackClient.fetch('DELETE', '/auth/login'); case 20: - _context3.next = 25; + _context2.next = 25; break; case 22: - _context3.prev = 22; - _context3.t1 = _context3["catch"](17); - - _logger.default.warn("Impossible to log out: ".concat(_context3.t1)); + _context2.prev = 22; + _context2.t1 = _context2["catch"](17); + console.warn("Impossible to log out: ".concat(_context2.t1)); case 25: // clean information on links - _iterator3 = _createForOfIteratorHelper(this.links); - _context3.prev = 26; - - _iterator3.s(); + _iteratorNormalCompletion3 = true; + _didIteratorError3 = false; + _iteratorError3 = undefined; + _context2.prev = 28; + _iterator3 = this.links[Symbol.iterator](); - case 28: - if ((_step3 = _iterator3.n()).done) { - _context3.next = 41; + case 30: + if (_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done) { + _context2.next = 44; break; } link = _step3.value; if (!link.reset) { - _context3.next = 39; + _context2.next = 41; break; } - _context3.prev = 31; - _context3.next = 34; + _context2.prev = 33; + _context2.next = 36; return link.reset(); - case 34: - _context3.next = 39; + case 36: + _context2.next = 41; break; - case 36: - _context3.prev = 36; - _context3.t2 = _context3["catch"](31); - console.warn(_context3.t2); + case 38: + _context2.prev = 38; + _context2.t2 = _context2["catch"](33); + console.warn(_context2.t2); - case 39: - _context3.next = 28; + case 41: + _iteratorNormalCompletion3 = true; + _context2.next = 30; break; - case 41: - _context3.next = 46; + case 44: + _context2.next = 50; break; - case 43: - _context3.prev = 43; - _context3.t3 = _context3["catch"](26); + case 46: + _context2.prev = 46; + _context2.t3 = _context2["catch"](28); + _didIteratorError3 = true; + _iteratorError3 = _context2.t3; + + case 50: + _context2.prev = 50; + _context2.prev = 51; + + if (!_iteratorNormalCompletion3 && _iterator3.return != null) { + _iterator3.return(); + } - _iterator3.e(_context3.t3); + case 53: + _context2.prev = 53; - case 46: - _context3.prev = 46; + if (!_didIteratorError3) { + _context2.next = 56; + break; + } - _iterator3.f(); + throw _iteratorError3; - return _context3.finish(46); + case 56: + return _context2.finish(53); - case 49: + case 57: + return _context2.finish(50); + + case 58: if (this.store) { this.dispatch((0, _store.resetState)()); } this.emit('logout'); - case 51: + case 60: case "end": - return _context3.stop(); + return _context2.stop(); } } - }, _callee3, this, [[6, 12], [17, 22], [26, 43, 46, 49], [31, 36]]); + }, _callee2, this, [[6, 12], [17, 22], [28, 46, 50, 58], [33, 38], [51,, 53, 57]]); })); - function logout() { + return function logout() { return _logout.apply(this, arguments); - } - - return logout; + }; }() /** * Forwards to a stack client instance and returns @@ -90592,15 +89847,13 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "all", value: function all(doctype) { - _logger.default.warn("\nclient.all is deprecated, prefer to use the Q helper to build a new QueryDefinition.\n\nimport { Q } from 'cozy-client'\nclient.query(Q('io.cozy.bills'))"); - + console.warn("\nclient.all is deprecated, prefer to use the Q helper to build a new QueryDefinition.\n\nimport { Q } from 'cozy-client'\nclient.query(Q('io.cozy.bills'))"); return (0, _dsl.Q)(doctype); } }, { key: "find", value: function find(doctype) { var selector = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : undefined; - console.warn('client.find(doctype, selector) is deprecated, please use Q(doctype).where(selector) to build the same query.'); return new _dsl.QueryDefinition({ doctype: doctype, selector: selector @@ -90609,86 +89862,60 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "get", value: function get(doctype, id) { - console.warn('client.get(doctype, id) is deprecated, please use Q(doctype).getById(id) to build the same query.'); return new _dsl.QueryDefinition({ doctype: doctype, id: id }); } - /** - * Creates a document and saves it on the server - * - * @param {string} type - Doctype of the document - * @param {object} doc - Document to save - * @param {ReferenceMap} [references] - References are a special kind of relationship - * that is not stored inside the referencer document, they are used for example between a photo - * and its album. You should not need to use it normally. - * @param {object} options - Mutation options - * - * @example - * ```js - * await client.create('io.cozy.todos', { - * label: 'My todo', - * relationships: { - * authors: { - * data: [{_id: 1, _type: 'io.cozy.persons'}] - * } - * } - * }) - * ``` - * - * @returns {Promise} - */ - }, { key: "create", value: function () { - var _create = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(type, doc, references) { + var _create = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(type, _ref2, relationships) { var options, _type, attributes, - normalizedDoc, + document, ret, - _args4 = arguments; + _args3 = arguments; - return _regenerator.default.wrap(function _callee4$(_context4) { + return _regenerator.default.wrap(function _callee3$(_context3) { while (1) { - switch (_context4.prev = _context4.next) { + switch (_context3.prev = _context3.next) { case 0: - options = _args4.length > 3 && _args4[3] !== undefined ? _args4[3] : {}; - _type = doc._type, attributes = (0, _objectWithoutProperties2.default)(doc, ["_type"]); - normalizedDoc = _objectSpread({ + options = _args3.length > 3 && _args3[3] !== undefined ? _args3[3] : {}; + _type = _ref2._type, attributes = (0, _objectWithoutProperties2.default)(_ref2, ["_type"]); + document = (0, _objectSpread2.default)({ _type: type }, attributes); - _context4.next = 5; - return this.schema.validate(normalizedDoc); + _context3.next = 5; + return this.schema.validate(document); case 5: - ret = _context4.sent; + ret = _context3.sent; if (!(ret !== true)) { - _context4.next = 8; + _context3.next = 8; break; } throw new Error('Validation failed'); case 8: - return _context4.abrupt("return", this.mutate(this.getDocumentSavePlan(normalizedDoc, references), options)); + return _context3.abrupt("return", this.mutate(this.getDocumentSavePlan(document, relationships), options)); case 9: case "end": - return _context4.stop(); + return _context3.stop(); } } - }, _callee4, this); + }, _callee3, this); })); - function create(_x3, _x4, _x5) { + return function create(_x2, _x3, _x4) { return _create.apply(this, arguments); - } - - return create; + }; }() }, { key: "validate", @@ -90698,130 +89925,50 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "save", value: function () { - var _save = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(doc) { + var _save = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4(document) { var mutationOptions, ret, - _args5 = arguments; - return _regenerator.default.wrap(function _callee5$(_context5) { + _args4 = arguments; + return _regenerator.default.wrap(function _callee4$(_context4) { while (1) { - switch (_context5.prev = _context5.next) { + switch (_context4.prev = _context4.next) { case 0: - mutationOptions = _args5.length > 1 && _args5[1] !== undefined ? _args5[1] : {}; - _context5.next = 3; - return this.schema.validate(doc); + mutationOptions = _args4.length > 1 && _args4[1] !== undefined ? _args4[1] : {}; + _context4.next = 3; + return this.schema.validate(document); case 3: - ret = _context5.sent; + ret = _context4.sent; if (!(ret !== true)) { - _context5.next = 6; + _context4.next = 6; break; } throw new Error('Validation failed'); case 6: - return _context5.abrupt("return", this.mutate(this.getDocumentSavePlan(doc), mutationOptions)); + return _context4.abrupt("return", this.mutate(this.getDocumentSavePlan(document), mutationOptions)); case 7: case "end": - return _context5.stop(); + return _context4.stop(); } } - }, _callee5, this); + }, _callee4, this); })); - function save(_x6) { + return function save(_x5) { return _save.apply(this, arguments); - } - - return save; - }() - /** - * Saves multiple documents in one batch - * - Can only be called with documents from the same doctype - * - Does not support automatic creation of references - * - * @param {CozyClientDocument[]} docs - * @param {Object} mutationOptions - * @returns {Promise<void>} - */ - - }, { - key: "saveAll", - value: function () { - var _saveAll = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee6(docs) { - var _this2 = this; - - var mutationOptions, - doctypes, - validations, - errors, - toSaveDocs, - mutation, - _args6 = arguments; - return _regenerator.default.wrap(function _callee6$(_context6) { - while (1) { - switch (_context6.prev = _context6.next) { - case 0: - mutationOptions = _args6.length > 1 && _args6[1] !== undefined ? _args6[1] : {}; - doctypes = Array.from(new Set(docs.map(function (x) { - return x._type; - }))); - - if (!(doctypes.length !== 1)) { - _context6.next = 4; - break; - } - - throw new Error('saveAll can only save documents with the same doctype'); - - case 4: - _context6.next = 6; - return Promise.all(docs.map(function (d) { - return _this2.schema.validate(d); - })); - - case 6: - validations = _context6.sent; - errors = validations.filter(function (validation) { - return validation !== true; - }); - - if (!(errors.length > 0)) { - _context6.next = 11; - break; - } - - console.warn('There has been some validation errors while bulk saving', errors); - throw new Error('Validation failed for at least one doc'); - - case 11: - toSaveDocs = docs.map(function (d) { - return _this2.prepareDocumentForSave(d); - }); - mutation = _dsl.Mutations.updateDocuments(toSaveDocs); - return _context6.abrupt("return", this.mutate(mutation, mutationOptions)); - - case 14: - case "end": - return _context6.stop(); - } - } - }, _callee6, this); - })); - - function saveAll(_x7) { - return _saveAll.apply(this, arguments); - } - - return saveAll; + }; }() }, { key: "ensureCozyMetadata", value: function ensureCozyMetadata(document) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : { - event: DOC_CREATION + event: TRIGGER_CREATION }; var METADATA_VERSION = 1; if (this.appMetadata === undefined) return document; @@ -90839,8 +89986,8 @@ var CozyClient = /*#__PURE__*/function () { var now = new Date().toISOString(); var cozyMetadata = (0, _get.default)(document, 'cozyMetadata', {}); - if (options.event === DOC_CREATION) { - cozyMetadata = _objectSpread({ + if (options.event === TRIGGER_CREATION) { + cozyMetadata = (0, _objectSpread2.default)({ metadataVersion: METADATA_VERSION, doctypeVersion: doctypeVersion, createdByApp: slug, @@ -90854,8 +90001,8 @@ var CozyClient = /*#__PURE__*/function () { version: version }] : [] }, cozyMetadata); - } else if (options.event === DOC_UPDATE) { - cozyMetadata = _objectSpread(_objectSpread({}, cozyMetadata), {}, { + } else if (options.event === TRIGGER_UPDATE) { + cozyMetadata = (0, _objectSpread2.default)({}, cozyMetadata, { updatedAt: now, updatedByApps: [{ date: now, @@ -90867,26 +90014,10 @@ var CozyClient = /*#__PURE__*/function () { }); } - return _objectSpread(_objectSpread({}, document), {}, { + return (0, _objectSpread2.default)({}, document, { cozyMetadata: cozyMetadata }); } - /** - * Dehydrates and adds metadata before saving a document - * - * @param {CozyClientDocument} doc - Document that will be saved - * @returns {CozyClientDocument} - */ - - }, { - key: "prepareDocumentForSave", - value: function prepareDocumentForSave(doc) { - var isNewDoc = !doc._rev; - var dehydratedDoc = this.ensureCozyMetadata((0, _helpers2.dehydrate)(doc), { - event: isNewDoc ? DOC_CREATION : DOC_UPDATE - }); - return dehydratedDoc; - } /** * Creates a list of mutations to execute to create a document and its relationships. * @@ -90900,56 +90031,39 @@ var CozyClient = /*#__PURE__*/function () { * client.getDocumentSavePlan(baseDoc, relationships) * ``` * - * - * @param {object} document - Document to create - * @param {ReferenceMap} [referencesByName] - References to the created document. The - * relationship class associated to each reference list should support references, otherwise this - * method will throw. - * - * @returns {Mutation[]|Mutation} One or more mutation to execute + * @param {object} document The base document to create + * @param {object} relationships The list of relationships to add, as a dictionnary. Keys should be relationship names and values the documents to link. + * @returns {Mutation[]} One or more mutation to execute */ }, { key: "getDocumentSavePlan", - value: function getDocumentSavePlan(document, referencesByName) { - var _this3 = this; + value: function getDocumentSavePlan(document, relationships) { + var _this2 = this; - var isNewDoc = !document._rev; - var docToSave = this.prepareDocumentForSave(document); - var saveMutation = isNewDoc ? _dsl.Mutations.createDocument(docToSave) : _dsl.Mutations.updateDocument(docToSave); - var hasReferences = referencesByName && Object.values(referencesByName).filter(function (references) { - return Array.isArray(references) ? references.length > 0 : references; + var newDocument = !document._rev; + var dehydratedDoc = this.ensureCozyMetadata((0, _helpers2.dehydrate)(document), { + event: newDocument ? TRIGGER_CREATION : TRIGGER_UPDATE + }); + var saveMutation = newDocument ? _dsl.Mutations.createDocument(dehydratedDoc) : _dsl.Mutations.updateDocument(dehydratedDoc); + var hasRelationships = relationships && Object.values(relationships).filter(function (relations) { + return Array.isArray(relations) ? relations.length > 0 : relations; }).length > 0; - if (!hasReferences) { + if (!hasRelationships) { return saveMutation; - } else { - for (var _i = 0, _Object$keys = Object.keys(referencesByName); _i < _Object$keys.length; _i++) { - var relName = _Object$keys[_i]; - var doctype = document._type; - var doctypeRelationship = this.schema.getRelationship(doctype, relName); - var relationshipClass = doctypeRelationship.type; - - if (!supportsReferences(relationshipClass)) { - throw referencesUnsupportedError(doctypeRelationship.name); - } - } } - if (referencesByName && !isNewDoc) { - throw new Error('Unable to save external relationships on a not-new document'); + if (relationships && !newDocument) { + throw new Error('Unable to save relationships on a not-new document'); } return [saveMutation, function (response) { - var doc = _this3.hydrateDocument(response.data); - - return Object.entries(referencesByName).map(function (_ref2) { - var _ref3 = (0, _slicedToArray2.default)(_ref2, 2), - relName = _ref3[0], - references = _ref3[1]; + var document = _this2.hydrateDocument(response.data); - var relationship = doc[relName]; - return relationship.addReferences(references); + return Object.keys(relationships).map(function (name) { + var val = relationships[name]; + return Array.isArray(val) ? document[name].insertDocuments(val) : document[name].setDocument(val); }); }]; } @@ -90978,68 +90092,77 @@ var CozyClient = /*#__PURE__*/function () { if (!CozyClient.hooks) return; var allHooks = CozyClient.hooks[document._type] || {}; var hooks = allHooks[name] || []; - - var _iterator4 = _createForOfIteratorHelper(hooks), - _step4; + var _iteratorNormalCompletion4 = true; + var _didIteratorError4 = false; + var _iteratorError4 = undefined; try { - for (_iterator4.s(); !(_step4 = _iterator4.n()).done;) { + for (var _iterator4 = hooks[Symbol.iterator](), _step4; !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()).done); _iteratorNormalCompletion4 = true) { var h = _step4.value; h(this, document); } } catch (err) { - _iterator4.e(err); + _didIteratorError4 = true; + _iteratorError4 = err; } finally { - _iterator4.f(); + try { + if (!_iteratorNormalCompletion4 && _iterator4.return != null) { + _iterator4.return(); + } + } finally { + if (_didIteratorError4) { + throw _iteratorError4; + } + } } } /** * Destroys a document. {before,after}:destroy hooks will be fired. * - * @param {CozyClientDocument} document - Document to be deleted - * @returns {Promise<CozyClientDocument>} The document that has been deleted + * @param {Document} document - Document to be deleted + * @returns {Document} The document that has been deleted */ }, { key: "destroy", value: function () { - var _destroy = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee7(document) { + var _destroy = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee5(document) { var mutationOptions, res, - _args7 = arguments; - return _regenerator.default.wrap(function _callee7$(_context7) { + _args5 = arguments; + return _regenerator.default.wrap(function _callee5$(_context5) { while (1) { - switch (_context7.prev = _context7.next) { + switch (_context5.prev = _context5.next) { case 0: - mutationOptions = _args7.length > 1 && _args7[1] !== undefined ? _args7[1] : {}; - _context7.next = 3; + mutationOptions = _args5.length > 1 && _args5[1] !== undefined ? _args5[1] : {}; + _context5.next = 3; return this.triggerHook('before:destroy', document); case 3: - _context7.next = 5; + _context5.next = 5; return this.mutate(_dsl.Mutations.deleteDocument(document), mutationOptions); case 5: - res = _context7.sent; - _context7.next = 8; + res = _context5.sent; + _context5.next = 8; return this.triggerHook('after:destroy', document); case 8: - return _context7.abrupt("return", res); + return _context5.abrupt("return", res); case 9: case "end": - return _context7.stop(); + return _context5.stop(); } } - }, _callee7, this); + }, _callee5, this); })); - function destroy(_x8) { + return function destroy(_x6) { return _destroy.apply(this, arguments); - } - - return destroy; + }; }() }, { key: "upload", @@ -91047,22 +90170,14 @@ var CozyClient = /*#__PURE__*/function () { var mutationOptions = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; return this.mutate(_dsl.Mutations.uploadFile(file, dirPath), mutationOptions); } - /** - * Makes sure that the query exists in the store - * - * @param {string} queryId - Id of the query - * @param {QueryDefinition} queryDefinition - Definition of the query - * @param {QueryOptions} [options] - Additional options - */ - }, { key: "ensureQueryExists", - value: function ensureQueryExists(queryId, queryDefinition, options) { + value: function ensureQueryExists(queryId, queryDefinition) { this.ensureStore(); var existingQuery = (0, _store.getQueryFromState)(this.store.getState(), queryId); // Don't trigger the INIT_QUERY for fetchMore() calls if (existingQuery.fetchStatus !== 'loaded' || !queryDefinition.skip && !queryDefinition.bookmark) { - this.dispatch((0, _store.initQuery)(queryId, queryDefinition, options)); + this.dispatch((0, _store.initQuery)(queryId, queryDefinition)); } } /** @@ -91073,109 +90188,89 @@ var CozyClient = /*#__PURE__*/function () { * executes its query when mounted if no fetch policy has been indicated. * * @param {QueryDefinition} queryDefinition - Definition that will be executed - * @param {QueryOptions} [options] - Options - * @returns {Promise<QueryResult>} + * @param {string} options - Options + * @param {string} options.as - Names the query so it can be reused (by multiple components for example) + * @param {string} options.fetchPolicy - Fetch policy to bypass fetching based on what's already inside the state. See "Fetch policies" + * @returns {QueryResult} */ }, { key: "query", value: function () { - var _query = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee8(queryDefinition) { - var _this4 = this; - - var _ref4, + var _query = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee6(queryDefinition) { + var _ref3, update, options, queryId, existingQuery, shouldFetch, response, - _args8 = arguments; + _args6 = arguments; - return _regenerator.default.wrap(function _callee8$(_context8) { + return _regenerator.default.wrap(function _callee6$(_context6) { while (1) { - switch (_context8.prev = _context8.next) { + switch (_context6.prev = _context6.next) { case 0: - _ref4 = _args8.length > 1 && _args8[1] !== undefined ? _args8[1] : {}; - update = _ref4.update, options = (0, _objectWithoutProperties2.default)(_ref4, ["update"]); + _ref3 = _args6.length > 1 && _args6[1] !== undefined ? _args6[1] : {}; + update = _ref3.update, options = (0, _objectWithoutProperties2.default)(_ref3, ["update"]); this.ensureStore(); - queryId = options.as || this.queryIdGenerator.generateId(queryDefinition); - existingQuery = this.getQueryFromState(queryId); + queryId = options.as || this.generateId(); + this.ensureQueryExists(queryId, queryDefinition); if (!options.fetchPolicy) { - _context8.next = 11; + _context6.next = 12; break; } if (options.as) { - _context8.next = 8; + _context6.next = 8; break; } throw new Error('Cannot use `fetchPolicy` without naming the query, please use `as` to name the query'); case 8: + existingQuery = this.getQueryFromState(queryId); shouldFetch = options.fetchPolicy(existingQuery); if (shouldFetch) { - _context8.next = 11; - break; - } - - return _context8.abrupt("return"); - - case 11: - if (!(existingQuery && Object.keys(existingQuery).length > 0)) { - _context8.next = 14; - break; - } - - if (!(existingQuery.fetchStatus === 'loading')) { - _context8.next = 14; + _context6.next = 12; break; } - return _context8.abrupt("return", this._promiseCache.get(function () { - return (0, _jsonStableStringify.default)(queryDefinition); - })); + return _context6.abrupt("return"); - case 14: - this.ensureQueryExists(queryId, queryDefinition, options); - _context8.prev = 15; - this.dispatch((0, _store.loadQuery)(queryId)); - _context8.next = 19; - return this._promiseCache.exec(function () { - return _this4.requestQuery(queryDefinition); - }, function () { - return (0, _jsonStableStringify.default)(queryDefinition); - }); + case 12: + _context6.prev = 12; + _context6.next = 15; + return this.requestQuery(queryDefinition); - case 19: - response = _context8.sent; + case 15: + response = _context6.sent; this.dispatch((0, _store.receiveQueryResult)(queryId, response, { update: update })); - return _context8.abrupt("return", response); + return _context6.abrupt("return", response); - case 24: - _context8.prev = 24; - _context8.t0 = _context8["catch"](15); - this.dispatch((0, _store.receiveQueryError)(queryId, _context8.t0)); - throw _context8.t0; + case 20: + _context6.prev = 20; + _context6.t0 = _context6["catch"](12); + this.dispatch((0, _store.receiveQueryError)(queryId, _context6.t0)); + throw _context6.t0; - case 28: + case 24: case "end": - return _context8.stop(); + return _context6.stop(); } } - }, _callee8, this, [[15, 24]]); + }, _callee6, this, [[12, 20]]); })); - function query(_x9) { + return function query(_x7) { return _query.apply(this, arguments); - } - - return query; + }; }() /** * Will fetch all documents for a `queryDefinition`, automatically fetching more @@ -91184,17 +90279,19 @@ var CozyClient = /*#__PURE__*/function () { * * @param {QueryDefinition} queryDefinition - Definition to be executed * @param {object} options - Options to the query - * @returns {Promise<Array>} All documents matching the query + * @returns {Array} All documents matching the query */ }, { key: "queryAll", value: function () { - var _queryAll = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee9(queryDefinition, options) { + var _queryAll = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee7(queryDefinition, options) { var documents, resp; - return _regenerator.default.wrap(function _callee9$(_context9) { + return _regenerator.default.wrap(function _callee7$(_context7) { while (1) { - switch (_context9.prev = _context9.next) { + switch (_context7.prev = _context7.next) { case 0: documents = []; resp = { @@ -91203,35 +90300,33 @@ var CozyClient = /*#__PURE__*/function () { case 2: if (!(resp && resp.next)) { - _context9.next = 9; + _context7.next = 9; break; } - _context9.next = 5; + _context7.next = 5; return this.query(queryDefinition.offsetBookmark(resp.bookmark), options); case 5: - resp = _context9.sent; + resp = _context7.sent; documents.push.apply(documents, (0, _toConsumableArray2.default)(resp.data)); - _context9.next = 2; + _context7.next = 2; break; case 9: - return _context9.abrupt("return", documents); + return _context7.abrupt("return", documents); case 10: case "end": - return _context9.stop(); + return _context7.stop(); } } - }, _callee9, this); + }, _callee7, this); })); - function queryAll(_x10, _x11) { + return function queryAll(_x8, _x9) { return _queryAll.apply(this, arguments); - } - - return queryAll; + }; }() }, { key: "watchQuery", @@ -91244,125 +90339,114 @@ var CozyClient = /*#__PURE__*/function () { value: function makeObservableQuery(queryDefinition) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; this.ensureStore(); - var queryId = options.as || this.queryIdGenerator.generateId(queryDefinition); + var queryId = options.as || this.generateId(); this.ensureQueryExists(queryId, queryDefinition); - return new _ObservableQuery.default(queryId, queryDefinition, this, options); + return new _ObservableQuery.default(queryId, queryDefinition, this); } - /** - * Mutate a document - * - * @param {object} mutationDefinition - Describe the mutation - * @param {object} [options] - Options - * @param {string} [options.as] - Mutation id - * @param {Function} [options.update] - Function to update the document - * @param {Function} [options.updateQueries] - Function to update queries - * @returns {Promise} - */ - }, { key: "mutate", value: function () { - var _mutate = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee10(mutationDefinition) { - var _ref5, + var _mutate = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee8(mutationDefinition) { + var _ref4, update, updateQueries, options, mutationId, response, - _args10 = arguments; + _args8 = arguments; - return _regenerator.default.wrap(function _callee10$(_context10) { + return _regenerator.default.wrap(function _callee8$(_context8) { while (1) { - switch (_context10.prev = _context10.next) { + switch (_context8.prev = _context8.next) { case 0: - _ref5 = _args10.length > 1 && _args10[1] !== undefined ? _args10[1] : {}; - update = _ref5.update, updateQueries = _ref5.updateQueries, options = (0, _objectWithoutProperties2.default)(_ref5, ["update", "updateQueries"]); + _ref4 = _args8.length > 1 && _args8[1] !== undefined ? _args8[1] : {}; + update = _ref4.update, updateQueries = _ref4.updateQueries, options = (0, _objectWithoutProperties2.default)(_ref4, ["update", "updateQueries"]); this.ensureStore(); - mutationId = options.as || this.queryIdGenerator.generateId(mutationDefinition); + mutationId = options.as || this.generateId(); this.dispatch((0, _store.initMutation)(mutationId, mutationDefinition)); - _context10.prev = 5; - _context10.next = 8; + _context8.prev = 5; + _context8.next = 8; return this.requestMutation(mutationDefinition); case 8: - response = _context10.sent; + response = _context8.sent; this.dispatch((0, _store.receiveMutationResult)(mutationId, response, { update: update, updateQueries: updateQueries }, mutationDefinition)); - return _context10.abrupt("return", response); + return _context8.abrupt("return", response); case 13: - _context10.prev = 13; - _context10.t0 = _context10["catch"](5); - this.dispatch((0, _store.receiveMutationError)(mutationId, _context10.t0, mutationDefinition)); - throw _context10.t0; + _context8.prev = 13; + _context8.t0 = _context8["catch"](5); + this.dispatch((0, _store.receiveMutationError)(mutationId, _context8.t0, mutationDefinition)); + throw _context8.t0; case 17: case "end": - return _context10.stop(); + return _context8.stop(); } } - }, _callee10, this, [[5, 13]]); + }, _callee8, this, [[5, 13]]); })); - function mutate(_x12) { + return function mutate(_x10) { return _mutate.apply(this, arguments); - } - - return mutate; + }; }() /** * Executes a query through links and fetches relationships * * @private * @param {QueryDefinition} definition QueryDefinition to be executed - * @returns {Promise<ClientResponse>} + * @returns {Response} */ }, { key: "requestQuery", value: function () { - var _requestQuery = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee11(definition) { + var _requestQuery = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee9(definition) { var mainResponse, withIncluded; - return _regenerator.default.wrap(function _callee11$(_context11) { + return _regenerator.default.wrap(function _callee9$(_context9) { while (1) { - switch (_context11.prev = _context11.next) { + switch (_context9.prev = _context9.next) { case 0: - _context11.next = 2; + _context9.next = 2; return this.chain.request(definition); case 2: - mainResponse = _context11.sent; + mainResponse = _context9.sent; if (definition.includes) { - _context11.next = 5; + _context9.next = 5; break; } - return _context11.abrupt("return", mainResponse); + return _context9.abrupt("return", mainResponse); case 5: - _context11.next = 7; + _context9.next = 7; return this.fetchRelationships(mainResponse, this.getIncludesRelationships(definition)); case 7: - withIncluded = _context11.sent; - return _context11.abrupt("return", withIncluded); + withIncluded = _context9.sent; + return _context9.abrupt("return", withIncluded); case 9: case "end": - return _context11.stop(); + return _context9.stop(); } } - }, _callee11, this); + }, _callee9, this); })); - function requestQuery(_x13) { + return function requestQuery(_x11) { return _requestQuery.apply(this, arguments); - } - - return requestQuery; + }; }() /** * Fetch relationships for a response (can be several docs). @@ -91378,23 +90462,25 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "fetchRelationships", value: function () { - var _fetchRelationships = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee12(response, relationshipsByName) { - var _this5 = this; + var _fetchRelationships = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee10(response, relationshipsByName) { + var _this3 = this; - var isSingleDoc, responseDocs, queryDefToDocIdAndRel, documents, definitions, optimizedDefinitions, responses, uniqueDocuments, included, relationshipsByDocId, _iterator5, _step5, _step5$value, def, resp, docIdAndRel, _docIdAndRel, docId, relName; + var isSingleDoc, responseDocs, queryDefToDocIdAndRel, documents, definitions, optimizedDefinitions, responses, uniqueDocuments, included, relationshipsByDocId, _iteratorNormalCompletion5, _didIteratorError5, _iteratorError5, _iterator5, _step5, _step5$value, def, resp, docIdAndRel, _docIdAndRel, docId, relName; - return _regenerator.default.wrap(function _callee12$(_context12) { + return _regenerator.default.wrap(function _callee10$(_context10) { while (1) { - switch (_context12.prev = _context12.next) { + switch (_context10.prev = _context10.next) { case 0: isSingleDoc = !Array.isArray(response.data); if (!(!isSingleDoc && response.data.length === 0)) { - _context12.next = 3; + _context10.next = 3; break; } - return _context12.abrupt("return", response); + return _context10.abrupt("return", response); case 3: responseDocs = isSingleDoc ? [response.data] : response.data; @@ -91404,7 +90490,7 @@ var CozyClient = /*#__PURE__*/function () { responseDocs.forEach(function (doc) { return (0, _forEach.default)(relationshipsByName, function (relationship, relName) { try { - var queryDef = relationship.type.query(doc, _this5, relationship); + var queryDef = relationship.type.query(doc, _this3, relationship); var docId = doc._id; // Used to reattach responses into the relationships attribute of // each document @@ -91424,13 +90510,13 @@ var CozyClient = /*#__PURE__*/function () { }); // Definitions can be in optimized/regrouped in case of HasMany relationships. optimizedDefinitions = (0, _optimize.default)(definitions); - _context12.next = 11; + _context10.next = 11; return Promise.all(optimizedDefinitions.map(function (req) { - return _this5.chain.request(req); + return _this3.chain.request(req); })); case 11: - responses = _context12.sent; + responses = _context10.sent; // "Included" documents will be stored in the `documents` store uniqueDocuments = (0, _uniqBy.default)((0, _flatten.default)(documents), '_id'); included = (0, _flatten.default)(responses.map(function (r) { @@ -91443,102 +90529,130 @@ var CozyClient = /*#__PURE__*/function () { // storing the document. This makes the data easier to manipulate for the front-end. relationshipsByDocId = {}; - _iterator5 = _createForOfIteratorHelper((0, _zip.default)(optimizedDefinitions, responses)); - - try { - for (_iterator5.s(); !(_step5 = _iterator5.n()).done;) { - _step5$value = (0, _slicedToArray2.default)(_step5.value, 2), def = _step5$value[0], resp = _step5$value[1]; - docIdAndRel = queryDefToDocIdAndRel.get(def); - - if (docIdAndRel) { - _docIdAndRel = (0, _slicedToArray2.default)(docIdAndRel, 2), docId = _docIdAndRel[0], relName = _docIdAndRel[1]; - relationshipsByDocId[docId] = relationshipsByDocId[docId] || {}; - relationshipsByDocId[docId][relName] = (0, _helpers.responseToRelationship)(resp); - } + _iteratorNormalCompletion5 = true; + _didIteratorError5 = false; + _iteratorError5 = undefined; + _context10.prev = 18; + + for (_iterator5 = (0, _zip.default)(optimizedDefinitions, responses)[Symbol.iterator](); !(_iteratorNormalCompletion5 = (_step5 = _iterator5.next()).done); _iteratorNormalCompletion5 = true) { + _step5$value = (0, _slicedToArray2.default)(_step5.value, 2), def = _step5$value[0], resp = _step5$value[1]; + docIdAndRel = queryDefToDocIdAndRel.get(def); + + if (docIdAndRel) { + _docIdAndRel = (0, _slicedToArray2.default)(docIdAndRel, 2), docId = _docIdAndRel[0], relName = _docIdAndRel[1]; + relationshipsByDocId[docId] = relationshipsByDocId[docId] || {}; + relationshipsByDocId[docId][relName] = (0, _helpers.responseToRelationship)(resp); } - } catch (err) { - _iterator5.e(err); - } finally { - _iterator5.f(); } - return _context12.abrupt("return", _objectSpread(_objectSpread({}, (0, _helpers.attachRelationships)(response, relationshipsByDocId)), {}, { + _context10.next = 26; + break; + + case 22: + _context10.prev = 22; + _context10.t0 = _context10["catch"](18); + _didIteratorError5 = true; + _iteratorError5 = _context10.t0; + + case 26: + _context10.prev = 26; + _context10.prev = 27; + + if (!_iteratorNormalCompletion5 && _iterator5.return != null) { + _iterator5.return(); + } + + case 29: + _context10.prev = 29; + + if (!_didIteratorError5) { + _context10.next = 32; + break; + } + + throw _iteratorError5; + + case 32: + return _context10.finish(29); + + case 33: + return _context10.finish(26); + + case 34: + return _context10.abrupt("return", (0, _objectSpread2.default)({}, (0, _helpers.attachRelationships)(response, relationshipsByDocId), { included: included })); - case 18: + case 35: case "end": - return _context12.stop(); + return _context10.stop(); } } - }, _callee12); + }, _callee10, null, [[18, 22, 26, 34], [27,, 29, 33]]); })); - function fetchRelationships(_x14, _x15) { + return function fetchRelationships(_x12, _x13) { return _fetchRelationships.apply(this, arguments); - } - - return fetchRelationships; + }; }() }, { key: "requestMutation", value: function () { - var _requestMutation = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee13(definition) { - var _this6 = this; + var _requestMutation = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee11(definition) { + var _this4 = this; var _definition, first, rest, firstResponse; - return _regenerator.default.wrap(function _callee13$(_context13) { + return _regenerator.default.wrap(function _callee11$(_context11) { while (1) { - switch (_context13.prev = _context13.next) { + switch (_context11.prev = _context11.next) { case 0: if (!Array.isArray(definition)) { - _context13.next = 8; + _context11.next = 8; break; } _definition = (0, _toArray2.default)(definition), first = _definition[0], rest = _definition.slice(1); - _context13.next = 4; + _context11.next = 4; return this.requestMutation(first); case 4: - firstResponse = _context13.sent; - _context13.next = 7; + firstResponse = _context11.sent; + _context11.next = 7; return Promise.all(rest.map(function (def) { - var mutationDef = typeof def === 'function' ? def(firstResponse) : def; - return _this6.requestMutation(mutationDef); + return typeof def === 'function' ? _this4.requestMutation(def(firstResponse)) : _this4.requestMutation(def); })); case 7: - return _context13.abrupt("return", firstResponse); + return _context11.abrupt("return", firstResponse); case 8: - return _context13.abrupt("return", this.chain.request(definition)); + return _context11.abrupt("return", this.chain.request(definition)); case 9: case "end": - return _context13.stop(); + return _context11.stop(); } } - }, _callee13, this); + }, _callee11, this); })); - function requestMutation(_x16) { + return function requestMutation(_x14) { return _requestMutation.apply(this, arguments); - } - - return requestMutation; + }; }() }, { key: "getIncludesRelationships", value: function getIncludesRelationships(queryDefinition) { - var _this7 = this; + var _this5 = this; var includes = queryDefinition.includes, doctype = queryDefinition.doctype; if (!includes) return {}; return (0, _fromPairs.default)(includes.map(function (relName) { - return [relName, _this7.schema.getRelationship(doctype, relName)]; + return [relName, _this5.schema.getRelationship(doctype, relName)]; })); } /** @@ -91546,15 +90660,15 @@ var CozyClient = /*#__PURE__*/function () { * If related documents are not in the store, they will not be fetched automatically. * Instead, the relationships will have null documents. * - * @param {string} doctype - Doctype of the documents being hydrated - * @param {Array<CozyClientDocument>} documents - Documents to be hydrated + * @param {string} doctype + * @param {Array<Document>} documents * @returns {Array<HydratedDocument>} */ }, { key: "hydrateDocuments", value: function hydrateDocuments(doctype, documents) { - var _this8 = this; + var _this6 = this; if (this.options.autoHydrate === false) { return documents; @@ -91565,7 +90679,7 @@ var CozyClient = /*#__PURE__*/function () { if (relationships) { return documents.map(function (doc) { - return _this8.hydrateDocument(doc, schema); + return _this6.hydrateDocument(doc, schema); }); } else { return documents; @@ -91577,20 +90691,20 @@ var CozyClient = /*#__PURE__*/function () { * The original document is kept in the target attribute of * the relationship * - * @param {CozyClientDocument} document - for which relationships must be resolved - * @param {Schema} [schemaArg] - Optional + * @param {Document} document for which relationships must be resolved + * @param {Schema} schema for the document doctype * @returns {HydratedDocument} */ }, { key: "hydrateDocument", - value: function hydrateDocument(document, schemaArg) { + value: function hydrateDocument(document, schema) { if (!document) { return document; } - var schema = schemaArg || this.schema.getDoctypeSchema(document._type); - return _objectSpread(_objectSpread({}, document), this.hydrateRelationships(document, schema.relationships)); + schema = schema || this.schema.getDoctypeSchema(document._type); + return (0, _objectSpread2.default)({}, document, this.hydrateRelationships(document, schema.relationships)); } }, { key: "hydrateRelationships", @@ -91614,11 +90728,6 @@ var CozyClient = /*#__PURE__*/function () { }; return this.hydrateDocument(obj); } - }, { - key: "generateRandomId", - value: function generateRandomId() { - return this.queryIdGenerator.generateRandomId(); - } /** * Creates an association that is linked to the store. */ @@ -91626,7 +90735,7 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "getAssociation", value: function getAssociation(document, associationName) { - return (0, _associations.create)(document, this.schema.getRelationship(document._type, associationName), this.getRelationshipStoreAccessors()); + return (0, _associations.create)(document, this.schema.getAssociation(document._type, associationName), this.getRelationshipStoreAccessors()); } /** * Returns the accessors that are given to the relationships for them @@ -91640,20 +90749,20 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "getRelationshipStoreAccessors", value: function getRelationshipStoreAccessors() { - var _this9 = this; + var _this7 = this; if (!this.storeAccesors) { this.storeAccessors = { get: this.getDocumentFromState.bind(this), save: function save(document, opts) { - return _this9.save.call(_this9, document, opts); + return _this7.save.call(_this7, document, opts); }, dispatch: this.dispatch.bind(this), query: function query(def, opts) { - return _this9.query.call(_this9, def, opts); + return _this7.query.call(_this7, def, opts); }, mutate: function mutate(def, opts) { - return _this9.mutate.call(_this9, def, opts); + return _this7.mutate.call(_this7, def, opts); } }; } @@ -91665,7 +90774,7 @@ var CozyClient = /*#__PURE__*/function () { * * @param {string} type - Doctype of the collection * - * @returns {CozyClientDocument[]} Array of documents or null if the collection does not exist. + * @returns {Document[]} Array of documents or null if the collection does not exist. */ }, { @@ -91674,8 +90783,7 @@ var CozyClient = /*#__PURE__*/function () { try { return (0, _store.getCollectionFromState)(this.store.getState(), type); } catch (e) { - _logger.default.warn('Could not getCollectionFromState', type, e.message); - + console.warn('Could not getCollectionFromState', type, e.message); return null; } } @@ -91685,7 +90793,7 @@ var CozyClient = /*#__PURE__*/function () { * @param {string} type - Doctype of the document * @param {string} id - Id of the document * - * @returns {CozyClientDocument} Document or null if the object does not exist. + * @returns {Document} Document or null if the object does not exist. */ }, { @@ -91694,8 +90802,7 @@ var CozyClient = /*#__PURE__*/function () { try { return (0, _store.getDocumentFromState)(this.store.getState(), type, id); } catch (e) { - _logger.default.warn('Could not getDocumentFromState', type, id, e.message); - + console.warn('Could not getDocumentFromState', type, id, e.message); return null; } } @@ -91704,10 +90811,7 @@ var CozyClient = /*#__PURE__*/function () { * * @param {string} id - Id of the query (set via Query.props.as) * @param {object} options - Options - * @param {boolean} [options.hydrated] - Whether documents should be returned already hydrated (default: false) - * @param {object} [options.singleDocData] - If true, the "data" returned will be - * a single doc instead of an array for single doc queries. Defaults to false for backward - * compatibility but will be set to true in the future. + * @param {boolean} options.hydrated - Whether documents should be returned already hydrated (default: false) * * @returns {QueryState} - Query state or null if it does not exist. */ @@ -91717,122 +90821,100 @@ var CozyClient = /*#__PURE__*/function () { value: function getQueryFromState(id) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var hydrated = options.hydrated || false; - var singleDocData = options.singleDocData || false; try { var queryResults = (0, _store.getQueryFromState)(this.store.getState(), id); var doctype = queryResults.definition && queryResults.definition.doctype; - var isSingleDocQuery = queryResults.definition && queryResults.definition.id; - - if (!hydrated && !singleDocData) { - // Early return let's us preserve reference equality in the simple case - return queryResults; - } - var data = hydrated && doctype ? this.hydrateDocuments(doctype, queryResults.data) : queryResults.data; - return _objectSpread(_objectSpread({}, queryResults), {}, { - data: isSingleDocQuery && singleDocData ? data[0] : data + return (0, _objectSpread2.default)({}, queryResults, { + data: data }); } catch (e) { - console.warn("Could not get query from state. queryId: ".concat(id, ", error: ").concat(e.message)); + console.warn('Could not getQueryFromState', id, e.message); return null; } } /** - * Executes a query and returns the results from internal store. - * - * Can be useful in pure JS context (without React) - * Has a behavior close to <Query /> or useQuery - * - * @param {object} query - Query with definition and options - * @returns {Promise<QueryState>} Query state - */ - - }, { - key: "register", - - /** - * Performs a complete OAuth flow using a Cordova webview - * or React Native WebView for auth. + * Performs a complete OAuth flow using a Cordova webview for auth. * The `register` method's name has been chosen for compat reasons with the Authentication compo. * * @param {string} cozyURL Receives the URL of the cozy instance. * @returns {object} Contains the fetched token and the client information. */ + + }, { + key: "register", value: function register(cozyURL) { var stackClient = this.getStackClient(); stackClient.setUri(cozyURL); - return this.startOAuthFlow(_mobile.authFunction); - } - }, { - key: "isReactNative", - value: function isReactNative() { - return typeof navigator != 'undefined' && navigator.product == 'ReactNative'; + return this.startOAuthFlow(_mobile.authenticateWithCordova); } /** * Performs a complete OAuth flow, including updating the internal token at the end. * * @param {Function} openURLCallback Receives the URL to present to the user as a parameter, and should return a promise that resolves with the URL the user was redirected to after accepting the permissions. - * @returns {Promise<object>} Contains the fetched token and the client information. These should be stored and used to restore the client. + * @returns {object} Contains the fetched token and the client information. These should be stored and used to restore the client. */ }, { key: "startOAuthFlow", value: function () { - var _startOAuthFlow = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee14(openURLCallback) { + var _startOAuthFlow = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee12(openURLCallback) { var stackClient; - return _regenerator.default.wrap(function _callee14$(_context14) { + return _regenerator.default.wrap(function _callee12$(_context12) { while (1) { - switch (_context14.prev = _context14.next) { + switch (_context12.prev = _context12.next) { case 0: stackClient = this.getStackClient(); - _context14.next = 3; + _context12.next = 3; return stackClient.register(); case 3: - return _context14.abrupt("return", this.authorize(openURLCallback)); + return _context12.abrupt("return", this.authorize(openURLCallback)); case 4: case "end": - return _context14.stop(); + return _context12.stop(); } } - }, _callee14, this); + }, _callee12, this); })); - function startOAuthFlow(_x17) { + return function startOAuthFlow(_x15) { return _startOAuthFlow.apply(this, arguments); - } - - return startOAuthFlow; + }; }() }, { key: "authorize", value: function () { - var _authorize = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee15(openURLCallback) { + var _authorize = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee13(openURLCallback) { var stackClient, stateCode, url, redirectedURL, code, token, _stackClient; - return _regenerator.default.wrap(function _callee15$(_context15) { + return _regenerator.default.wrap(function _callee13$(_context13) { while (1) { - switch (_context15.prev = _context15.next) { + switch (_context13.prev = _context13.next) { case 0: - _context15.prev = 0; + _context13.prev = 0; stackClient = this.getStackClient(); stateCode = stackClient.generateStateCode(); url = stackClient.getAuthCodeURL(stateCode); - _context15.next = 6; + _context13.next = 6; return openURLCallback(url); case 6: - redirectedURL = _context15.sent; + redirectedURL = _context13.sent; code = stackClient.getAccessCodeFromURL(redirectedURL, stateCode); - _context15.next = 10; + _context13.next = 10; return stackClient.fetchAccessToken(code); case 10: - token = _context15.sent; + token = _context13.sent; stackClient.setToken(token); - return _context15.abrupt("return", { + return _context13.abrupt("return", { token: token, infos: stackClient.oauthOptions, client: stackClient.oauthOptions // for compat with Authentication comp reasons @@ -91840,31 +90922,29 @@ var CozyClient = /*#__PURE__*/function () { }); case 15: - _context15.prev = 15; - _context15.t0 = _context15["catch"](0); + _context13.prev = 15; + _context13.t0 = _context13["catch"](0); /* if REGISTRATION_ABORT is emited, we have to unregister the client. */ - if (_context15.t0.message === _const.REGISTRATION_ABORT) { + if (_context13.t0.message === _const.REGISTRATION_ABORT) { _stackClient = this.getStackClient(); _stackClient.unregister(); } - throw _context15.t0; + throw _context13.t0; case 19: case "end": - return _context15.stop(); + return _context13.stop(); } } - }, _callee15, this, [[0, 15]]); + }, _callee13, this, [[0, 15]]); })); - function authorize(_x18) { + return function authorize(_x16) { return _authorize.apply(this, arguments); - } - - return authorize; + }; }() /** * Renews the token if, for instance, new permissions are required or token @@ -91876,7 +90956,7 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "renewAuthorization", value: function renewAuthorization() { - return this.authorize(_mobile.authFunction); + return this.authorize(_mobile.authenticateWithCordova); } /** * Sets the internal store of the client. Use this when you want to have cozy-client's @@ -91897,16 +90977,16 @@ var CozyClient = /*#__PURE__*/function () { * ``` * * @param {ReduxStore} store - A redux store - * @param {object} [options] - Options - * @param {boolean} [options.force] - Will deactivate throwing when client's store already exists + * @param {object} options - Options + * @param {boolean} options.force - Will deactivate throwing when client's store already exists */ }, { key: "setStore", value: function setStore(store) { - var _ref6 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, - _ref6$force = _ref6.force, - force = _ref6$force === void 0 ? false : _ref6$force; + var _ref5 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, + _ref5$force = _ref5.force, + force = _ref5$force === void 0 ? false : _ref5$force; if (store === undefined) { throw new Error('Store is undefined'); @@ -91930,26 +91010,26 @@ var CozyClient = /*#__PURE__*/function () { }, { key: "checkForRevocation", value: function () { - var _checkForRevocation = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee16() { - return _regenerator.default.wrap(function _callee16$(_context16) { + var _checkForRevocation = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee14() { + return _regenerator.default.wrap(function _callee14$(_context14) { while (1) { - switch (_context16.prev = _context16.next) { + switch (_context14.prev = _context14.next) { case 0: - return _context16.abrupt("return", this.stackClient.checkForRevocation()); + return _context14.abrupt("return", this.stackClient.checkForRevocation()); case 1: case "end": - return _context16.stop(); + return _context14.stop(); } } - }, _callee16, this); + }, _callee14, this); })); - function checkForRevocation() { + return function checkForRevocation() { return _checkForRevocation.apply(this, arguments); - } - - return checkForRevocation; + }; }() /** Sets public attribute and emits event related to revocation */ @@ -92006,8 +91086,8 @@ var CozyClient = /*#__PURE__*/function () { stackClient.options = {}; } - for (var _i2 = 0, _Object$keys2 = Object.keys(handlers); _i2 < _Object$keys2.length; _i2++) { - var handlerName = _Object$keys2[_i2]; + for (var _i = 0, _Object$keys = Object.keys(handlers); _i < _Object$keys.length; _i++) { + var handlerName = _Object$keys[_i]; if (!stackClient.options[handlerName]) { stackClient.options[handlerName] = handlers[handlerName]; @@ -92018,8 +91098,7 @@ var CozyClient = /*#__PURE__*/function () { } } } else { - var options = _objectSpread(_objectSpread({}, this.options), handlers); - + var options = (0, _objectSpread2.default)({}, this.options, handlers); this.stackClient = this.options.oauth ? new _cozyStackClient.OAuthClient(options) : new _cozyStackClient.default(options); } @@ -92050,6 +91129,13 @@ var CozyClient = /*#__PURE__*/function () { value: function dispatch(action) { return this.store.dispatch(action); } + }, { + key: "generateId", + value: function generateId() { + var id = this.idCounter; + this.idCounter++; + return id; + } /** * getInstanceOptions - Returns current instance options, such as domain or app slug * @@ -92074,38 +91160,28 @@ var CozyClient = /*#__PURE__*/function () { value: function loadInstanceOptionsFromDOM() { var selector = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '[role=application]'; var root = document.querySelector(selector); - - if (!(root instanceof HTMLElement)) { - throw new Error('The selector that is passed does not return an HTMLElement'); - } - - var _root$dataset = root.dataset, - _root$dataset$cozy = _root$dataset.cozy, - cozy = _root$dataset$cozy === void 0 ? '{}' : _root$dataset$cozy, - dataset = (0, _objectWithoutProperties2.default)(_root$dataset, ["cozy"]); - this.instanceOptions = _objectSpread(_objectSpread({}, JSON.parse(cozy)), dataset); - this.capabilities = this.instanceOptions.capabilities || null; + this.instanceOptions = root.dataset.cozy ? JSON.parse(root.dataset.cozy) : (0, _objectSpread2.default)({}, root.dataset); // convert from DOMStringMap to plain object } /** * Directly set the data in the store, without using a query * This is useful for cases like Pouch replication, which wants to * set some data in the store. * - * @param {object} data - Data that is inserted in the store. Shape: { doctype: [data] } + * @param data {Object} { doctype: [data] } */ }, { key: "setData", value: function setData(data) { - var _this10 = this; + var _this8 = this; this.ensureStore(); - Object.entries(data).forEach(function (_ref7) { - var _ref8 = (0, _slicedToArray2.default)(_ref7, 2), - doctype = _ref8[0], - data = _ref8[1]; + Object.entries(data).forEach(function (_ref6) { + var _ref7 = (0, _slicedToArray2.default)(_ref6, 2), + doctype = _ref7[0], + data = _ref7[1]; - _this10.dispatch((0, _store.receiveQueryResult)(null, { + _this8.dispatch((0, _store.receiveQueryResult)(null, { data: data })); }); @@ -92120,7 +91196,7 @@ var CozyClient = /*#__PURE__*/function () { }], [{ key: "fromOldClient", value: function fromOldClient(oldClient, options) { - return new CozyClient(_objectSpread({ + return new CozyClient((0, _objectSpread2.default)({ uri: oldClient._url, token: oldClient._token.token }, options)); @@ -92131,70 +91207,60 @@ var CozyClient = /*#__PURE__*/function () { * * Warning: unlike other instantiators, this one needs to be awaited. * - * @param {OldCozyClient} oldClient - An instance of the deprecated cozy-client - * @returns {Promise<CozyClient>} An instance of a client, configured from the old client + * @returns {CozyClient} An instance of a client, configured from the old client */ }, { key: "fromOldOAuthClient", value: function () { - var _fromOldOAuthClient = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee17(oldClient, options) { + var _fromOldOAuthClient = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee15(oldClient, options) { var hasOauthCreds, token; - return _regenerator.default.wrap(function _callee17$(_context17) { + return _regenerator.default.wrap(function _callee15$(_context15) { while (1) { - switch (_context17.prev = _context17.next) { + switch (_context15.prev = _context15.next) { case 0: hasOauthCreds = oldClient._oauth && oldClient._authcreds != null; if (!hasOauthCreds) { - _context17.next = 8; + _context15.next = 6; break; } - _context17.next = 4; + _context15.next = 4; return oldClient._authcreds; case 4: - token = _context17.sent.token; - return _context17.abrupt("return", new CozyClient(_objectSpread({ + token = _context15.sent.token; + return _context15.abrupt("return", new CozyClient((0, _objectSpread2.default)({ uri: oldClient._url, token: token }, options))); - case 8: - throw new Error('Old client does not have _oauth or _authcreds, cannot instantiate a new client, check if CozyClient.fromOldClient is more suitable'); - - case 9: + case 6: case "end": - return _context17.stop(); + return _context15.stop(); } } - }, _callee17); + }, _callee15); })); - function fromOldOAuthClient(_x19, _x20) { + return function fromOldOAuthClient(_x17, _x18) { return _fromOldOAuthClient.apply(this, arguments); - } - - return fromOldOAuthClient; + }; }() - /** - * In konnector/service context, CozyClient can be instantiated from - * environment variables - * - * @param {NodeEnvironment} [envArg] - The environment - * @param {object} options - Options - * @returns {CozyClient} - */ + /** In konnector/service context, CozyClient can be instantiated from environment variables */ }, { key: "fromEnv", - value: function fromEnv(envArg) { + value: function fromEnv(env) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var env = envArg || (typeof process !== 'undefined' ? process.env : {}); - var COZY_URL = env.COZY_URL, - COZY_CREDENTIALS = env.COZY_CREDENTIALS, - NODE_ENV = env.NODE_ENV; + env = env || (typeof process !== 'undefined' ? process.env : {}); + var _env = env, + COZY_URL = _env.COZY_URL, + COZY_CREDENTIALS = _env.COZY_CREDENTIALS, + NODE_ENV = _env.NODE_ENV; if (!COZY_URL || !COZY_CREDENTIALS) { throw new Error('Env used to instantiate CozyClient must have COZY_URL and COZY_CREDENTIALS'); @@ -92207,54 +91273,12 @@ var CozyClient = /*#__PURE__*/function () { } options.uri = COZY_URL.trim(); - return new CozyClient(_objectSpread({}, options)); - } - /** - * When used from an app, CozyClient can be instantiated from the data injected by the stack in - * the DOM. - * - * @param {object} options - CozyClient constructor options - * @param {string} selector - Options - * @returns {CozyClient} - CozyClient instance - */ - - }, { - key: "fromDOM", - value: function fromDOM() { - var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var selector = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '[role=application]'; - var root = document.querySelector(selector); - - if (!(root instanceof HTMLElement)) { - throw new Error("Cannot find an HTMLElement corresponding to ".concat(selector)); - } - - if (!root || !root.dataset) { - throw new Error("Found no data in ".concat(selector, " to instantiate cozyClient")); - } - - var data = root.dataset.cozy ? JSON.parse(root.dataset.cozy) : _objectSpread({}, root.dataset); - var domain = data.domain, - token = data.token; - - if (!domain || !token) { - domain = domain || data.cozyDomain; - token = token || data.cozyToken; - } - - if (!domain || !token) { - throw new Error("Found no data in ".concat(root.dataset, " to instantiate cozyClient")); - } - - return new CozyClient(_objectSpread({ - uri: "".concat(window.location.protocol, "//").concat(domain), - token: token, - capabilities: data.capabilities - }, options)); + return new CozyClient((0, _objectSpread2.default)({}, options)); } }, { key: "registerHook", value: function registerHook(doctype, name, fn) { + CozyClient.hooks = CozyClient.hooks || {}; var hooks = CozyClient.hooks[doctype] = CozyClient.hooks[doctype] || {}; hooks[name] = hooks[name] || []; hooks[name].push(fn); @@ -92263,10 +91287,9 @@ var CozyClient = /*#__PURE__*/function () { return CozyClient; }(); -CozyClient.hooks = CozyClient.hooks || {}; CozyClient.fetchPolicies = _policies.default; //COZY_CLIENT_VERSION_PACKAGE in replaced by babel. See babel config -CozyClient.version = "23.22.0"; +CozyClient.version = "13.21.0"; _microee.default.mixin(CozyClient); @@ -92274,16 +91297,16 @@ var _default = CozyClient; exports.default = _default; /***/ }), -/* 532 */ +/* 534 */ /***/ (function(module, exports, __webpack_require__) { -var arrayWithHoles = __webpack_require__(533); +var arrayWithHoles = __webpack_require__(535); -var iterableToArray = __webpack_require__(534); +var iterableToArray = __webpack_require__(536); -var unsupportedIterableToArray = __webpack_require__(535); +var unsupportedIterableToArray = __webpack_require__(537); -var nonIterableRest = __webpack_require__(537); +var nonIterableRest = __webpack_require__(539); function _toArray(arr) { return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest(); @@ -92293,7 +91316,7 @@ module.exports = _toArray; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 533 */ +/* 535 */ /***/ (function(module, exports) { function _arrayWithHoles(arr) { @@ -92304,7 +91327,7 @@ module.exports = _arrayWithHoles; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 534 */ +/* 536 */ /***/ (function(module, exports) { function _iterableToArray(iter) { @@ -92315,10 +91338,10 @@ module.exports = _iterableToArray; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 535 */ +/* 537 */ /***/ (function(module, exports, __webpack_require__) { -var arrayLikeToArray = __webpack_require__(536); +var arrayLikeToArray = __webpack_require__(538); function _unsupportedIterableToArray(o, minLen) { if (!o) return; @@ -92333,7 +91356,7 @@ module.exports = _unsupportedIterableToArray; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 536 */ +/* 538 */ /***/ (function(module, exports) { function _arrayLikeToArray(arr, len) { @@ -92350,7 +91373,7 @@ module.exports = _arrayLikeToArray; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 537 */ +/* 539 */ /***/ (function(module, exports) { function _nonIterableRest() { @@ -92361,16 +91384,16 @@ module.exports = _nonIterableRest; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 538 */ +/* 540 */ /***/ (function(module, exports, __webpack_require__) { -var arrayWithHoles = __webpack_require__(533); +var arrayWithHoles = __webpack_require__(535); -var iterableToArrayLimit = __webpack_require__(539); +var iterableToArrayLimit = __webpack_require__(541); -var unsupportedIterableToArray = __webpack_require__(535); +var unsupportedIterableToArray = __webpack_require__(537); -var nonIterableRest = __webpack_require__(537); +var nonIterableRest = __webpack_require__(539); function _slicedToArray(arr, i) { return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest(); @@ -92380,7 +91403,7 @@ module.exports = _slicedToArray; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 539 */ +/* 541 */ /***/ (function(module, exports) { function _iterableToArrayLimit(arr, i) { @@ -92414,16 +91437,16 @@ module.exports = _iterableToArrayLimit; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 540 */ +/* 542 */ /***/ (function(module, exports, __webpack_require__) { -var arrayWithoutHoles = __webpack_require__(541); +var arrayWithoutHoles = __webpack_require__(543); -var iterableToArray = __webpack_require__(534); +var iterableToArray = __webpack_require__(536); -var unsupportedIterableToArray = __webpack_require__(535); +var unsupportedIterableToArray = __webpack_require__(537); -var nonIterableSpread = __webpack_require__(542); +var nonIterableSpread = __webpack_require__(544); function _toConsumableArray(arr) { return arrayWithoutHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread(); @@ -92433,10 +91456,10 @@ module.exports = _toConsumableArray; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 541 */ +/* 543 */ /***/ (function(module, exports, __webpack_require__) { -var arrayLikeToArray = __webpack_require__(536); +var arrayLikeToArray = __webpack_require__(538); function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return arrayLikeToArray(arr); @@ -92446,7 +91469,7 @@ module.exports = _arrayWithoutHoles; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 542 */ +/* 544 */ /***/ (function(module, exports) { function _nonIterableSpread() { @@ -92457,64 +91480,64 @@ module.exports = _nonIterableSpread; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 543 */ +/* 545 */ /***/ (function(module, exports, __webpack_require__) { -var objectWithoutPropertiesLoose = __webpack_require__(544); +var defineProperty = __webpack_require__(546); -function _objectWithoutProperties(source, excluded) { - if (source == null) return {}; - var target = objectWithoutPropertiesLoose(source, excluded); - var key, i; - - if (Object.getOwnPropertySymbols) { - var sourceSymbolKeys = Object.getOwnPropertySymbols(source); +function _objectSpread(target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i] != null ? Object(arguments[i]) : {}; + var ownKeys = Object.keys(source); - for (i = 0; i < sourceSymbolKeys.length; i++) { - key = sourceSymbolKeys[i]; - if (excluded.indexOf(key) >= 0) continue; - if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; - target[key] = source[key]; + if (typeof Object.getOwnPropertySymbols === 'function') { + ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { + return Object.getOwnPropertyDescriptor(source, sym).enumerable; + })); } + + ownKeys.forEach(function (key) { + defineProperty(target, key, source[key]); + }); } return target; } -module.exports = _objectWithoutProperties; +module.exports = _objectSpread; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 544 */ +/* 546 */ /***/ (function(module, exports) { -function _objectWithoutPropertiesLoose(source, excluded) { - if (source == null) return {}; - var target = {}; - var sourceKeys = Object.keys(source); - var key, i; - - for (i = 0; i < sourceKeys.length; i++) { - key = sourceKeys[i]; - if (excluded.indexOf(key) >= 0) continue; - target[key] = source[key]; +function _defineProperty(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; } - return target; + return obj; } -module.exports = _objectWithoutPropertiesLoose; +module.exports = _defineProperty; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 545 */ +/* 547 */ /***/ (function(module, exports, __webpack_require__) { -module.exports = __webpack_require__(546); +module.exports = __webpack_require__(548); /***/ }), -/* 546 */ +/* 548 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -93268,7 +92291,7 @@ try { /***/ }), -/* 547 */ +/* 549 */ /***/ (function(module, exports) { function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { @@ -93311,7 +92334,57 @@ module.exports = _asyncToGenerator; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 548 */ +/* 550 */ +/***/ (function(module, exports, __webpack_require__) { + +var objectWithoutPropertiesLoose = __webpack_require__(551); + +function _objectWithoutProperties(source, excluded) { + if (source == null) return {}; + var target = objectWithoutPropertiesLoose(source, excluded); + var key, i; + + if (Object.getOwnPropertySymbols) { + var sourceSymbolKeys = Object.getOwnPropertySymbols(source); + + for (i = 0; i < sourceSymbolKeys.length; i++) { + key = sourceSymbolKeys[i]; + if (excluded.indexOf(key) >= 0) continue; + if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; + target[key] = source[key]; + } + } + + return target; +} + +module.exports = _objectWithoutProperties; +module.exports["default"] = module.exports, module.exports.__esModule = true; + +/***/ }), +/* 551 */ +/***/ (function(module, exports) { + +function _objectWithoutPropertiesLoose(source, excluded) { + if (source == null) return {}; + var target = {}; + var sourceKeys = Object.keys(source); + var key, i; + + for (i = 0; i < sourceKeys.length; i++) { + key = sourceKeys[i]; + if (excluded.indexOf(key) >= 0) continue; + target[key] = source[key]; + } + + return target; +} + +module.exports = _objectWithoutPropertiesLoose; +module.exports["default"] = module.exports, module.exports.__esModule = true; + +/***/ }), +/* 552 */ /***/ (function(module, exports) { function _classCallCheck(instance, Constructor) { @@ -93324,7 +92397,7 @@ module.exports = _classCallCheck; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 549 */ +/* 553 */ /***/ (function(module, exports) { function _defineProperties(target, props) { @@ -93347,1319 +92420,1022 @@ module.exports = _createClass; module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 550 */ -/***/ (function(module, exports) { +/* 554 */ +/***/ (function(module, exports, __webpack_require__) { -function _defineProperty(obj, key, value) { - if (key in obj) { - Object.defineProperty(obj, key, { - value: value, - enumerable: true, - configurable: true, - writable: true - }); - } else { - obj[key] = value; - } +"use strict"; - return obj; -} -module.exports = _defineProperty; -module.exports["default"] = module.exports, module.exports.__esModule = true; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.REGISTRATION_ABORT = void 0; +var REGISTRATION_ABORT = 'REGISTRATION_ABORT'; +exports.REGISTRATION_ABORT = REGISTRATION_ABORT; /***/ }), -/* 551 */ +/* 555 */ /***/ (function(module, exports, __webpack_require__) { -var baseAssignValue = __webpack_require__(552), - baseForOwn = __webpack_require__(554), - baseIteratee = __webpack_require__(413); +"use strict"; -/** - * Creates an object with the same keys as `object` and values generated - * by running each own enumerable string keyed property of `object` thru - * `iteratee`. The iteratee is invoked with three arguments: - * (value, key, object). - * - * @static - * @memberOf _ - * @since 2.4.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Object} Returns the new mapped object. - * @see _.mapKeys - * @example - * - * var users = { - * 'fred': { 'user': 'fred', 'age': 40 }, - * 'pebbles': { 'user': 'pebbles', 'age': 1 } - * }; - * - * _.mapValues(users, function(o) { return o.age; }); - * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) - * - * // The `_.property` iteratee shorthand. - * _.mapValues(users, 'age'); - * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) - */ -function mapValues(object, iteratee) { - var result = {}; - iteratee = baseIteratee(iteratee, 3); - baseForOwn(object, function(value, key, object) { - baseAssignValue(result, key, iteratee(value, key, object)); - }); - return result; -} +var _interopRequireDefault = __webpack_require__(532); -module.exports = mapValues; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; +var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(550)); -/***/ }), -/* 552 */ -/***/ (function(module, exports, __webpack_require__) { +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var defineProperty = __webpack_require__(553); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -/** - * The base implementation of `assignValue` and `assignMergeValue` without - * value checks. - * - * @private - * @param {Object} object The object to modify. - * @param {string} key The key of the property to assign. - * @param {*} value The value to assign. - */ -function baseAssignValue(object, key, value) { - if (key == '__proto__' && defineProperty) { - defineProperty(object, key, { - 'configurable': true, - 'enumerable': true, - 'value': value, - 'writable': true - }); - } else { - object[key] = value; +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); + +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); + +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); + +var _dsl = __webpack_require__(561); + +var _CozyLink2 = _interopRequireDefault(__webpack_require__(562)); + +var StackLink = +/*#__PURE__*/ +function (_CozyLink) { + (0, _inherits2.default)(StackLink, _CozyLink); + + function StackLink() { + var _this; + + var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, + client = _ref.client, + stackClient = _ref.stackClient; + + (0, _classCallCheck2.default)(this, StackLink); + _this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(StackLink).call(this)); + + if (client) { + console.info('Using options.client is deprecated, prefer options.stackClient'); + } + + _this.stackClient = stackClient || client; + return _this; } -} -module.exports = baseAssignValue; + (0, _createClass2.default)(StackLink, [{ + key: "registerClient", + value: function registerClient(client) { + this.stackClient = client.stackClient || client.client; + } + }, { + key: "reset", + value: function reset() { + this.stackClient = null; + } + }, { + key: "request", + value: function request(operation, result, forward) { + if (operation.mutationType) { + return this.executeMutation(operation, result, forward); + } + return this.executeQuery(operation); + } + }, { + key: "executeQuery", + value: function executeQuery(query) { + var doctype = query.doctype, + selector = query.selector, + id = query.id, + ids = query.ids, + referenced = query.referenced, + options = (0, _objectWithoutProperties2.default)(query, ["doctype", "selector", "id", "ids", "referenced"]); -/***/ }), -/* 553 */ -/***/ (function(module, exports, __webpack_require__) { + if (!doctype) { + console.warn('Bad query', query); + throw new Error('No doctype found in a query definition'); + } -var getNative = __webpack_require__(383); + var collection = this.stackClient.collection(doctype); -var defineProperty = (function() { - try { - var func = getNative(Object, 'defineProperty'); - func({}, '', {}); - return func; - } catch (e) {} -}()); + if (id) { + return collection.get(id); + } -module.exports = defineProperty; + if (ids) { + return collection.getAll(ids); + } + if (referenced) { + return collection.findReferencedBy(referenced, options); + } -/***/ }), -/* 554 */ -/***/ (function(module, exports, __webpack_require__) { + return !selector && !options.sort ? collection.all(options) : collection.find(selector, options); + } + }, { + key: "executeMutation", + value: function executeMutation(mutation, result, forward) { + var mutationType = mutation.mutationType, + props = (0, _objectWithoutProperties2.default)(mutation, ["mutationType"]); -var baseFor = __webpack_require__(555), - keys = __webpack_require__(441); + switch (mutationType) { + case _dsl.MutationTypes.CREATE_DOCUMENT: + return this.stackClient.collection(props.document._type).create(props.document); -/** - * The base implementation of `_.forOwn` without support for iteratee shorthands. - * - * @private - * @param {Object} object The object to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Object} Returns `object`. - */ -function baseForOwn(object, iteratee) { - return object && baseFor(object, iteratee, keys); -} + case _dsl.MutationTypes.UPDATE_DOCUMENT: + return this.stackClient.collection(props.document._type).update(props.document); -module.exports = baseForOwn; + case _dsl.MutationTypes.DELETE_DOCUMENT: + return this.stackClient.collection(props.document._type).destroy(props.document); + case _dsl.MutationTypes.ADD_REFERENCES_TO: + return this.stackClient.collection(props.referencedDocuments[0]._type).addReferencesTo(props.document, props.referencedDocuments); -/***/ }), -/* 555 */ -/***/ (function(module, exports, __webpack_require__) { + case _dsl.MutationTypes.REMOVE_REFERENCES_TO: + return this.stackClient.collection(props.referencedDocuments[0]._type).removeReferencesTo(props.document, props.referencedDocuments); -var createBaseFor = __webpack_require__(556); + case _dsl.MutationTypes.ADD_REFERENCED_BY: + if (props.document._type === 'io.cozy.files') { + return this.stackClient.collection('io.cozy.files').addReferencedBy(props.document, props.referencedDocuments); + } else { + throw new Error('The document type should be io.cozy.files'); + } -/** - * The base implementation of `baseForOwn` which iterates over `object` - * properties returned by `keysFunc` and invokes `iteratee` for each property. - * Iteratee functions may exit iteration early by explicitly returning `false`. - * - * @private - * @param {Object} object The object to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @param {Function} keysFunc The function to get the keys of `object`. - * @returns {Object} Returns `object`. - */ -var baseFor = createBaseFor(); + case _dsl.MutationTypes.REMOVE_REFERENCED_BY: + if (props.document._type === 'io.cozy.files') { + return this.stackClient.collection('io.cozy.files').removeReferencedBy(props.document, props.referencedDocuments); + } else { + throw new Error('The document type should be io.cozy.files'); + } -module.exports = baseFor; + case _dsl.MutationTypes.UPLOAD_FILE: + return this.stackClient.collection('io.cozy.files').upload(props.file, props.dirPath); + default: + return forward(mutation, result); + } + } + }]); + return StackLink; +}(_CozyLink2.default); + +exports.default = StackLink; /***/ }), /* 556 */ -/***/ (function(module, exports) { +/***/ (function(module, exports, __webpack_require__) { -/** - * Creates a base function for methods like `_.forIn` and `_.forOwn`. - * - * @private - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new base function. - */ -function createBaseFor(fromRight) { - return function(object, iteratee, keysFunc) { - var index = -1, - iterable = Object(object), - props = keysFunc(object), - length = props.length; +var _typeof = __webpack_require__(531)["default"]; - while (length--) { - var key = props[fromRight ? length : ++index]; - if (iteratee(iterable[key], key, iterable) === false) { - break; - } - } - return object; - }; -} +var assertThisInitialized = __webpack_require__(557); -module.exports = createBaseFor; +function _possibleConstructorReturn(self, call) { + if (call && (_typeof(call) === "object" || typeof call === "function")) { + return call; + } + return assertThisInitialized(self); +} + +module.exports = _possibleConstructorReturn; +module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), /* 557 */ /***/ (function(module, exports) { -/** - * The inverse of `_.toPairs`; this method returns an object composed - * from key-value `pairs`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} pairs The key-value pairs. - * @returns {Object} Returns the new object. - * @example - * - * _.fromPairs([['a', 1], ['b', 2]]); - * // => { 'a': 1, 'b': 2 } - */ -function fromPairs(pairs) { - var index = -1, - length = pairs == null ? 0 : pairs.length, - result = {}; - - while (++index < length) { - var pair = pairs[index]; - result[pair[0]] = pair[1]; +function _assertThisInitialized(self) { + if (self === void 0) { + throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } - return result; -} -module.exports = fromPairs; + return self; +} +module.exports = _assertThisInitialized; +module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), /* 558 */ -/***/ (function(module, exports, __webpack_require__) { - -var baseFlatten = __webpack_require__(559); +/***/ (function(module, exports) { -/** - * Flattens `array` a single level deep. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to flatten. - * @returns {Array} Returns the new flattened array. - * @example - * - * _.flatten([1, [2, [3, [4]], 5]]); - * // => [1, 2, [3, [4]], 5] - */ -function flatten(array) { - var length = array == null ? 0 : array.length; - return length ? baseFlatten(array, 1) : []; +function _getPrototypeOf(o) { + module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { + return o.__proto__ || Object.getPrototypeOf(o); + }; + module.exports["default"] = module.exports, module.exports.__esModule = true; + return _getPrototypeOf(o); } -module.exports = flatten; - +module.exports = _getPrototypeOf; +module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), /* 559 */ /***/ (function(module, exports, __webpack_require__) { -var arrayPush = __webpack_require__(437), - isFlattenable = __webpack_require__(560); +var setPrototypeOf = __webpack_require__(560); -/** - * The base implementation of `_.flatten` with support for restricting flattening. - * - * @private - * @param {Array} array The array to flatten. - * @param {number} depth The maximum recursion depth. - * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. - * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. - * @param {Array} [result=[]] The initial result value. - * @returns {Array} Returns the new flattened array. - */ -function baseFlatten(array, depth, predicate, isStrict, result) { - var index = -1, - length = array.length; - - predicate || (predicate = isFlattenable); - result || (result = []); +function _inherits(subClass, superClass) { + if (typeof superClass !== "function" && superClass !== null) { + throw new TypeError("Super expression must either be null or a function"); + } - while (++index < length) { - var value = array[index]; - if (depth > 0 && predicate(value)) { - if (depth > 1) { - // Recursively flatten arrays (susceptible to call stack limits). - baseFlatten(value, depth - 1, predicate, isStrict, result); - } else { - arrayPush(result, value); - } - } else if (!isStrict) { - result[result.length] = value; + subClass.prototype = Object.create(superClass && superClass.prototype, { + constructor: { + value: subClass, + writable: true, + configurable: true } - } - return result; + }); + if (superClass) setPrototypeOf(subClass, superClass); } -module.exports = baseFlatten; - +module.exports = _inherits; +module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), /* 560 */ -/***/ (function(module, exports, __webpack_require__) { - -var Symbol = __webpack_require__(67), - isArguments = __webpack_require__(444), - isArray = __webpack_require__(75); +/***/ (function(module, exports) { -/** Built-in value references. */ -var spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined; +function _setPrototypeOf(o, p) { + module.exports = _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { + o.__proto__ = p; + return o; + }; -/** - * Checks if `value` is a flattenable `arguments` object or array. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. - */ -function isFlattenable(value) { - return isArray(value) || isArguments(value) || - !!(spreadableSymbol && value && value[spreadableSymbol]); + module.exports["default"] = module.exports, module.exports.__esModule = true; + return _setPrototypeOf(o, p); } -module.exports = isFlattenable; - +module.exports = _setPrototypeOf; +module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), /* 561 */ /***/ (function(module, exports, __webpack_require__) { -var baseRest = __webpack_require__(562), - unzip = __webpack_require__(569); +"use strict"; -/** - * Creates an array of grouped elements, the first of which contains the - * first elements of the given arrays, the second of which contains the - * second elements of the given arrays, and so on. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {...Array} [arrays] The arrays to process. - * @returns {Array} Returns the new array of grouped elements. - * @example - * - * _.zip(['a', 'b'], [1, 2], [true, false]); - * // => [['a', 1, true], ['b', 2, false]] - */ -var zip = baseRest(unzip); -module.exports = zip; +var _interopRequireDefault = __webpack_require__(532); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.QueryDefinition = exports.MutationTypes = exports.Mutations = exports.getDoctypeFromOperation = exports.uploadFile = exports.removeReferencedBy = exports.addReferencedBy = exports.removeReferencesTo = exports.addReferencesTo = exports.deleteDocument = exports.updateDocument = exports.createDocument = exports.Q = void 0; -/***/ }), -/* 562 */ -/***/ (function(module, exports, __webpack_require__) { +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); + +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var identity = __webpack_require__(471), - overRest = __webpack_require__(563), - setToString = __webpack_require__(565); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); +var isArray = __webpack_require__(75); /** - * The base implementation of `_.rest` which doesn't validate or coerce arguments. - * - * @private - * @param {Function} func The function to apply a rest parameter to. - * @param {number} [start=func.length-1] The start position of the rest parameter. - * @returns {Function} Returns the new function. + * typedef QueryDefinition */ -function baseRest(func, start) { - return setToString(overRest(func, start, identity), func + ''); -} - -module.exports = baseRest; - - -/***/ }), -/* 563 */ -/***/ (function(module, exports, __webpack_require__) { - -var apply = __webpack_require__(564); - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeMax = Math.max; /** - * A specialized version of `baseRest` which transforms the rest array. - * - * @private - * @param {Function} func The function to apply a rest parameter to. - * @param {number} [start=func.length-1] The start position of the rest parameter. - * @param {Function} transform The rest array transform. - * @returns {Function} Returns the new function. + * Chainable API to create query definitions to retrieve documents + * from a Cozy. `QueryDefinition`s are sent to links. */ -function overRest(func, start, transform) { - start = nativeMax(start === undefined ? (func.length - 1) : start, 0); - return function() { - var args = arguments, - index = -1, - length = nativeMax(args.length - start, 0), - array = Array(length); - while (++index < length) { - array[index] = args[start + index]; - } - index = -1; - var otherArgs = Array(start + 1); - while (++index < start) { - otherArgs[index] = args[index]; - } - otherArgs[start] = transform(array); - return apply(func, this, otherArgs); - }; -} - -module.exports = overRest; - - -/***/ }), -/* 564 */ -/***/ (function(module, exports) { -/** - * A faster alternative to `Function#apply`, this function invokes `func` - * with the `this` binding of `thisArg` and the arguments of `args`. - * - * @private - * @param {Function} func The function to invoke. - * @param {*} thisArg The `this` binding of `func`. - * @param {Array} args The arguments to invoke `func` with. - * @returns {*} Returns the result of `func`. - */ -function apply(func, thisArg, args) { - switch (args.length) { - case 0: return func.call(thisArg); - case 1: return func.call(thisArg, args[0]); - case 2: return func.call(thisArg, args[0], args[1]); - case 3: return func.call(thisArg, args[0], args[1], args[2]); +var QueryDefinition = +/*#__PURE__*/ +function () { + /** + * @class + * @param {object} options Initial options for the query definition + * @param {string} options.doctype - The doctype of the doc. + * @param {string} options.id - The id of the doc. + * @param {Array} options.ids - The ids of the docs. + * @param {object} options.selector - The selector to query the docs. + * @param {Array} options.fields - The fields to return. + * @param {Array} options.indexedFields - The fields to index. + * @param {Array} options.sort - The sorting params. + * @param {string} options.includes - The docs to include. + * @param {string} options.referenced - The referenced document. + * @param {number} options.limit - The document's limit to return. + * @param {number} options.skip - The number of docs to skip. + * @param {number} options.cursor - The cursor to paginate views. + * @param {number} options.bookmark - The bookmark to paginate mango queries. + */ + function QueryDefinition() { + var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + (0, _classCallCheck2.default)(this, QueryDefinition); + this.doctype = options.doctype; + this.id = options.id; + this.ids = options.ids; + this.selector = options.selector; + this.fields = options.fields; + this.indexedFields = options.indexedFields; + this.sort = options.sort; + this.includes = options.includes; + this.referenced = options.referenced; + this.limit = options.limit; + this.skip = options.skip; + this.cursor = options.cursor; + this.bookmark = options.bookmark; } - return func.apply(thisArg, args); -} + /** + * Query a single document on its id. + * + * @param {string} id The document id. + * @returns {QueryDefinition} The QueryDefinition object. + */ -module.exports = apply; + (0, _createClass2.default)(QueryDefinition, [{ + key: "getById", + value: function getById(id) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + id: id + })); + } + /** + * Query several documents on their ids. + * + * @param {Array} ids The documents ids. + * @returns {QueryDefinition} The QueryDefinition object. + */ -/***/ }), -/* 565 */ -/***/ (function(module, exports, __webpack_require__) { + }, { + key: "getByIds", + value: function getByIds(ids) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + ids: ids + })); + } + /** + * Query documents with a [mango selector](http://docs.couchdb.org/en/latest/api/database/find.html#find-selectors). + * Each field passed in the selector will be indexed, except if the indexField option is used. + * + * @param {object} selector The Mango selector. + * @returns {QueryDefinition} The QueryDefinition object. + */ -var baseSetToString = __webpack_require__(566), - shortOut = __webpack_require__(568); + }, { + key: "where", + value: function where(selector) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + selector: selector + })); + } + /** + * Specify which fields of each object should be returned. If it is omitted, the entire object is returned. + * + * @param {Array} fields The fields to return. + * @returns {QueryDefinition} The QueryDefinition object. + */ -/** - * Sets the `toString` method of `func` to return `string`. - * - * @private - * @param {Function} func The function to modify. - * @param {Function} string The `toString` result. - * @returns {Function} Returns `func`. - */ -var setToString = shortOut(baseSetToString); + }, { + key: "select", + value: function select(fields) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + fields: fields + })); + } + /** + * Specify which fields should be indexed. This prevent the automatic indexing of the mango fields. + * + * @param {Array} indexedFields The fields to index. + * @returns {QueryDefinition} The QueryDefinition object. + */ -module.exports = setToString; + }, { + key: "indexFields", + value: function indexFields(indexedFields) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + indexedFields: indexedFields + })); + } + /** + * Specify how to sort documents, following the [sort syntax](http://docs.couchdb.org/en/latest/api/database/find.html#find-sort) + * + * @param {Array} sort The list of field name and direction pairs. + * @returns {QueryDefinition} The QueryDefinition object. + */ + }, { + key: "sortBy", + value: function sortBy(sort) { + if (!isArray(sort)) { + throw new Error("Invalid sort, should be an array ([{ label: \"desc\"}, { name: \"asc\"}]), you passed ".concat(JSON.stringify(sort), ".")); + } -/***/ }), -/* 566 */ -/***/ (function(module, exports, __webpack_require__) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + sort: sort + })); + } + /** + * Includes documents having a relationships with the ones queried. + * For example, query albums including the photos. + * + * @param {Array} includes The documents to include. + * @returns {QueryDefinition} The QueryDefinition object. + */ -var constant = __webpack_require__(567), - defineProperty = __webpack_require__(553), - identity = __webpack_require__(471); + }, { + key: "include", + value: function include(includes) { + if (!Array.isArray(includes)) { + throw new Error('include() takes an array of relationship names'); + } -/** - * The base implementation of `setToString` without support for hot loop shorting. - * - * @private - * @param {Function} func The function to modify. - * @param {Function} string The `toString` result. - * @returns {Function} Returns `func`. - */ -var baseSetToString = !defineProperty ? identity : function(func, string) { - return defineProperty(func, 'toString', { - 'configurable': true, - 'enumerable': false, - 'value': constant(string), - 'writable': true - }); -}; + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + includes: includes + })); + } + /** + * Maximum number of documents returned, useful for pagination. Default is 100. + * + * @param {number} limit The document's limit. + * @returns {QueryDefinition} The QueryDefinition object. + */ -module.exports = baseSetToString; + }, { + key: "limitBy", + value: function limitBy(limit) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + limit: limit + })); + } + }, { + key: "UNSAFE_noLimit", + value: function UNSAFE_noLimit() { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + limit: null + })); + } + /** + * Skip the first ‘n’ documents, where ‘n’ is the value specified. + * + * Beware, this [performs badly](http://docs.couchdb.org/en/stable/ddocs/views/pagination.html#paging-alternate-method) on view's index. + * Prefer cursor-based pagination in such situation. + * + * @param {number} skip The number of documents to skip. + * @returns {QueryDefinition} The QueryDefinition object. + */ + }, { + key: "offset", + value: function offset(skip) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + bookmark: undefined, + cursor: undefined, + skip: skip + })); + } + /** + * Use [cursor-based](https://docs.cozy.io/en/cozy-stack/jsonapi/#pagination) pagination. + * *Warning*: this is only useful for views. + * The cursor is a [startkey, startkey_docid] array, where startkey is the view's key, + * e.g. ["io.cozy.photos.albums", "album-id"] and startkey_docid is the id of + * the starting document of the query, e.g. "file-id". + * Use the last docid of each query as startkey_docid to paginate or leave blank for the first query. + * + * @param {Array} cursor The cursor for pagination. + * @returns {QueryDefinition} The QueryDefinition object. + */ -/***/ }), -/* 567 */ -/***/ (function(module, exports) { + }, { + key: "offsetCursor", + value: function offsetCursor(cursor) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + bookmark: undefined, + skip: undefined, + cursor: cursor + })); + } + /** + * Use [bookmark](https://docs.couchdb.org/en/2.2.0/api/database/find.html#pagination) pagination. + * Note this only applies for mango-queries (not views) and is way more efficient than skip pagination. + * The bookmark is a string returned by the _find response and can be seen as a pointer in + * the index for the next query. + * + * @param {string} bookmark The bookmark to continue a previous paginated query. + * @returns {QueryDefinition} The QueryDefinition object. + */ + }, { + key: "offsetBookmark", + value: function offsetBookmark(bookmark) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + skip: undefined, + cursor: undefined, + bookmark: bookmark + })); + } + /** + * Use the [file reference system](https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/) + * + * @param {object} document The reference document + * @returns {QueryDefinition} The QueryDefinition object. + */ + + }, { + key: "referencedBy", + value: function referencedBy(document) { + return new QueryDefinition((0, _objectSpread2.default)({}, this.toDefinition(), { + referenced: document + })); + } + }, { + key: "toDefinition", + value: function toDefinition() { + return { + doctype: this.doctype, + id: this.id, + ids: this.ids, + selector: this.selector, + fields: this.fields, + indexedFields: this.indexedFields, + sort: this.sort, + includes: this.includes, + referenced: this.referenced, + limit: this.limit, + skip: this.skip, + cursor: this.cursor, + bookmark: this.bookmark + }; + } + }]); + return QueryDefinition; +}(); /** - * Creates a function that returns `value`. + * Helper to create a QueryDefinition. Recommended way to create + * query definitions. * - * @static - * @memberOf _ - * @since 2.4.0 - * @category Util - * @param {*} value The value to return from the new function. - * @returns {Function} Returns the new constant function. * @example + * ``` + * import { Q } from 'cozy-client' * - * var objects = _.times(2, _.constant({ 'a': 1 })); - * - * console.log(objects); - * // => [{ 'a': 1 }, { 'a': 1 }] - * - * console.log(objects[0] === objects[1]); - * // => true + * const qDef = Q('io.cozy.todos').where({ _id: '1234' }) + * ``` */ -function constant(value) { - return function() { - return value; - }; -} -module.exports = constant; +exports.QueryDefinition = QueryDefinition; -/***/ }), -/* 568 */ -/***/ (function(module, exports) { +var Q = function Q(doctype) { + return new QueryDefinition({ + doctype: doctype + }); +}; // Mutations -/** Used to detect hot functions by number of calls within a span of milliseconds. */ -var HOT_COUNT = 800, - HOT_SPAN = 16; -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeNow = Date.now; +exports.Q = Q; +var CREATE_DOCUMENT = 'CREATE_DOCUMENT'; +var UPDATE_DOCUMENT = 'UPDATE_DOCUMENT'; +var DELETE_DOCUMENT = 'DELETE_DOCUMENT'; +var ADD_REFERENCES_TO = 'ADD_REFERENCES_TO'; +var REMOVE_REFERENCES_TO = 'REMOVE_REFERENCES_TO'; +var ADD_REFERENCED_BY = 'ADD_REFERENCED_BY'; +var REMOVE_REFERENCED_BY = 'REMOVE_REFERENCED_BY'; +var UPLOAD_FILE = 'UPLOAD_FILE'; -/** - * Creates a function that'll short out and invoke `identity` instead - * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` - * milliseconds. - * - * @private - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new shortable function. - */ -function shortOut(func) { - var count = 0, - lastCalled = 0; +var createDocument = function createDocument(document) { + return { + mutationType: MutationTypes.CREATE_DOCUMENT, + document: document + }; +}; - return function() { - var stamp = nativeNow(), - remaining = HOT_SPAN - (stamp - lastCalled); +exports.createDocument = createDocument; - lastCalled = stamp; - if (remaining > 0) { - if (++count >= HOT_COUNT) { - return arguments[0]; - } - } else { - count = 0; - } - return func.apply(undefined, arguments); +var updateDocument = function updateDocument(document) { + return { + mutationType: MutationTypes.UPDATE_DOCUMENT, + document: document }; -} - -module.exports = shortOut; +}; +exports.updateDocument = updateDocument; -/***/ }), -/* 569 */ -/***/ (function(module, exports, __webpack_require__) { +var deleteDocument = function deleteDocument(document) { + return { + mutationType: MutationTypes.DELETE_DOCUMENT, + document: document + }; +}; -var arrayFilter = __webpack_require__(439), - arrayMap = __webpack_require__(410), - baseProperty = __webpack_require__(473), - baseTimes = __webpack_require__(443), - isArrayLikeObject = __webpack_require__(570); +exports.deleteDocument = deleteDocument; -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeMax = Math.max; +var addReferencesTo = function addReferencesTo(document, referencedDocuments) { + return { + mutationType: MutationTypes.ADD_REFERENCES_TO, + referencedDocuments: referencedDocuments, + document: document + }; +}; -/** - * This method is like `_.zip` except that it accepts an array of grouped - * elements and creates an array regrouping the elements to their pre-zip - * configuration. - * - * @static - * @memberOf _ - * @since 1.2.0 - * @category Array - * @param {Array} array The array of grouped elements to process. - * @returns {Array} Returns the new array of regrouped elements. - * @example - * - * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]); - * // => [['a', 1, true], ['b', 2, false]] - * - * _.unzip(zipped); - * // => [['a', 'b'], [1, 2], [true, false]] - */ -function unzip(array) { - if (!(array && array.length)) { - return []; - } - var length = 0; - array = arrayFilter(array, function(group) { - if (isArrayLikeObject(group)) { - length = nativeMax(group.length, length); - return true; - } - }); - return baseTimes(length, function(index) { - return arrayMap(array, baseProperty(index)); - }); -} +exports.addReferencesTo = addReferencesTo; -module.exports = unzip; +var removeReferencesTo = function removeReferencesTo(document, referencedDocuments) { + return { + mutationType: MutationTypes.REMOVE_REFERENCES_TO, + referencedDocuments: referencedDocuments, + document: document + }; +}; +exports.removeReferencesTo = removeReferencesTo; -/***/ }), -/* 570 */ -/***/ (function(module, exports, __webpack_require__) { +var addReferencedBy = function addReferencedBy(document, referencedDocuments) { + return { + mutationType: MutationTypes.ADD_REFERENCED_BY, + referencedDocuments: referencedDocuments, + document: document + }; +}; -var isArrayLike = __webpack_require__(458), - isObjectLike = __webpack_require__(73); +exports.addReferencedBy = addReferencedBy; -/** - * This method is like `_.isArrayLike` except that it also checks if `value` - * is an object. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an array-like object, - * else `false`. - * @example - * - * _.isArrayLikeObject([1, 2, 3]); - * // => true - * - * _.isArrayLikeObject(document.body.children); - * // => true - * - * _.isArrayLikeObject('abc'); - * // => false - * - * _.isArrayLikeObject(_.noop); - * // => false - */ -function isArrayLikeObject(value) { - return isObjectLike(value) && isArrayLike(value); -} +var removeReferencedBy = function removeReferencedBy(document, referencedDocuments) { + return { + mutationType: MutationTypes.REMOVE_REFERENCED_BY, + referencedDocuments: referencedDocuments, + document: document + }; +}; -module.exports = isArrayLikeObject; +exports.removeReferencedBy = removeReferencedBy; +var uploadFile = function uploadFile(file, dirPath) { + return { + mutationType: MutationTypes.UPLOAD_FILE, + file: file, + dirPath: dirPath + }; +}; -/***/ }), -/* 571 */ -/***/ (function(module, exports, __webpack_require__) { +exports.uploadFile = uploadFile; -var arrayEach = __webpack_require__(572), - baseEach = __webpack_require__(573), - castFunction = __webpack_require__(575), - isArray = __webpack_require__(75); +var getDoctypeFromOperation = function getDoctypeFromOperation(operation) { + if (operation.mutationType) { + var type = operation.mutationType; -/** - * Iterates over elements of `collection` and invokes `iteratee` for each element. - * The iteratee is invoked with three arguments: (value, index|key, collection). - * Iteratee functions may exit iteration early by explicitly returning `false`. - * - * **Note:** As with other "Collections" methods, objects with a "length" - * property are iterated like arrays. To avoid this behavior use `_.forIn` - * or `_.forOwn` for object iteration. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @alias each - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Array|Object} Returns `collection`. - * @see _.forEachRight - * @example - * - * _.forEach([1, 2], function(value) { - * console.log(value); - * }); - * // => Logs `1` then `2`. - * - * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { - * console.log(key); - * }); - * // => Logs 'a' then 'b' (iteration order is not guaranteed). - */ -function forEach(collection, iteratee) { - var func = isArray(collection) ? arrayEach : baseEach; - return func(collection, castFunction(iteratee)); -} + switch (type) { + case CREATE_DOCUMENT: + return operation.document._type; -module.exports = forEach; + case UPDATE_DOCUMENT: + return operation.document._type; + case DELETE_DOCUMENT: + return operation.document._type; -/***/ }), -/* 572 */ -/***/ (function(module, exports) { + case ADD_REFERENCES_TO: + throw new Error('Not implemented'); -/** - * A specialized version of `_.forEach` for arrays without support for - * iteratee shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array} Returns `array`. - */ -function arrayEach(array, iteratee) { - var index = -1, - length = array == null ? 0 : array.length; + case UPLOAD_FILE: + throw new Error('Not implemented'); - while (++index < length) { - if (iteratee(array[index], index, array) === false) { - break; + default: + throw new Error("Unknown mutationType ".concat(type)); } + } else { + return operation.doctype; } - return array; -} - -module.exports = arrayEach; +}; +exports.getDoctypeFromOperation = getDoctypeFromOperation; +var Mutations = { + createDocument: createDocument, + updateDocument: updateDocument, + deleteDocument: deleteDocument, + addReferencesTo: addReferencesTo, + removeReferencesTo: removeReferencesTo, + addReferencedBy: addReferencedBy, + removeReferencedBy: removeReferencedBy, + uploadFile: uploadFile +}; +exports.Mutations = Mutations; +var MutationTypes = { + CREATE_DOCUMENT: CREATE_DOCUMENT, + UPDATE_DOCUMENT: UPDATE_DOCUMENT, + DELETE_DOCUMENT: DELETE_DOCUMENT, + ADD_REFERENCES_TO: ADD_REFERENCES_TO, + REMOVE_REFERENCES_TO: REMOVE_REFERENCES_TO, + ADD_REFERENCED_BY: ADD_REFERENCED_BY, + REMOVE_REFERENCED_BY: REMOVE_REFERENCED_BY, + UPLOAD_FILE: UPLOAD_FILE +}; +exports.MutationTypes = MutationTypes; /***/ }), -/* 573 */ +/* 562 */ /***/ (function(module, exports, __webpack_require__) { -var baseForOwn = __webpack_require__(554), - createBaseEach = __webpack_require__(574); +"use strict"; -/** - * The base implementation of `_.forEach` without support for iteratee shorthands. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array|Object} Returns `collection`. - */ -var baseEach = createBaseEach(baseForOwn); -module.exports = baseEach; +var _interopRequireDefault = __webpack_require__(532); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.chain = exports.default = void 0; -/***/ }), -/* 574 */ -/***/ (function(module, exports, __webpack_require__) { +var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(542)); -var isArrayLike = __webpack_require__(458); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -/** - * Creates a `baseEach` or `baseEachRight` function. - * - * @private - * @param {Function} eachFunc The function to iterate over a collection. - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new base function. - */ -function createBaseEach(eachFunc, fromRight) { - return function(collection, iteratee) { - if (collection == null) { - return collection; - } - if (!isArrayLike(collection)) { - return eachFunc(collection, iteratee); - } - var length = collection.length, - index = fromRight ? length : -1, - iterable = Object(collection); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); - while ((fromRight ? index-- : ++index < length)) { - if (iteratee(iterable[index], index, iterable) === false) { - break; - } - } - return collection; - }; -} +var CozyLink = +/*#__PURE__*/ +function () { + function CozyLink(requestHandler) { + (0, _classCallCheck2.default)(this, CozyLink); -module.exports = createBaseEach; + if (typeof requestHandler === 'function') { + this.request = requestHandler; + } + } + (0, _createClass2.default)(CozyLink, [{ + key: "request", + value: function request(operation, result, forward) { + throw new Error('request is not implemented'); + } + }]); + return CozyLink; +}(); -/***/ }), -/* 575 */ -/***/ (function(module, exports, __webpack_require__) { +exports.default = CozyLink; -var identity = __webpack_require__(471); +var toLink = function toLink(handler) { + return typeof handler === 'function' ? new CozyLink(handler) : handler; +}; -/** - * Casts `value` to `identity` if it's not a function. - * - * @private - * @param {*} value The value to inspect. - * @returns {Function} Returns cast function. - */ -function castFunction(value) { - return typeof value == 'function' ? value : identity; -} +var defaultLinkHandler = function defaultLinkHandler(operation, result) { + if (result) return result;else if (operation.execute) return operation.execute();else throw new Error("No link could handle operation ".concat(JSON.stringify(operation))); +}; -module.exports = castFunction; +var chain = function chain(links) { + return [].concat((0, _toConsumableArray2.default)(links), [defaultLinkHandler]).map(toLink).reduce(concat); +}; +exports.chain = chain; -/***/ }), -/* 576 */ -/***/ (function(module, exports) { +var concat = function concat(firstLink, nextLink) { + return new CozyLink(function (operation, result, forward) { + var nextForward = function nextForward(op, res) { + return nextLink.request(op, res, forward); + }; -function M() { this._events = {}; } -M.prototype = { - on: function(ev, cb) { - this._events || (this._events = {}); - var e = this._events; - (e[ev] || (e[ev] = [])).push(cb); - return this; - }, - removeListener: function(ev, cb) { - var e = this._events[ev] || [], i; - for(i = e.length-1; i >= 0 && e[i]; i--){ - if(e[i] === cb || e[i].cb === cb) { e.splice(i, 1); } - } - }, - removeAllListeners: function(ev) { - if(!ev) { this._events = {}; } - else { this._events[ev] && (this._events[ev] = []); } - }, - listeners: function(ev) { - return (this._events ? this._events[ev] || [] : []); - }, - emit: function(ev) { - this._events || (this._events = {}); - var args = Array.prototype.slice.call(arguments, 1), i, e = this._events[ev] || []; - for(i = e.length-1; i >= 0 && e[i]; i--){ - e[i].apply(this, args); - } - return this; - }, - when: function(ev, cb) { - return this.once(ev, cb, true); - }, - once: function(ev, cb, when) { - if(!cb) return this; - function c() { - if(!when) this.removeListener(ev, c); - if(cb.apply(this, arguments) && when) this.removeListener(ev, c); - } - c.cb = cb; - this.on(ev, c); - return this; - } -}; -M.mixin = function(dest) { - var o = M.prototype, k; - for (k in o) { - o.hasOwnProperty(k) && (dest.prototype[k] = o[k]); - } + return firstLink.request(operation, result, nextForward); + }); }; -module.exports = M; - /***/ }), -/* 577 */ +/* 563 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -Object.defineProperty(exports, "default", { +Object.defineProperty(exports, "HasManyFiles", { enumerable: true, get: function get() { - return _CozyStackClient.default; + return _HasManyFiles.default; } }); -Object.defineProperty(exports, "OAuthClient", { +Object.defineProperty(exports, "HasMany", { enumerable: true, get: function get() { - return _OAuthClient.default; + return _HasMany.default; } }); -Object.defineProperty(exports, "errors", { +Object.defineProperty(exports, "HasOne", { enumerable: true, get: function get() { - return _errors.default; + return _HasOne.default; } }); -Object.defineProperty(exports, "FetchError", { +Object.defineProperty(exports, "HasOneInPlace", { enumerable: true, get: function get() { - return _errors.FetchError; + return _HasOneInPlace.default; } }); -Object.defineProperty(exports, "normalizeDoc", { +Object.defineProperty(exports, "HasManyInPlace", { enumerable: true, get: function get() { - return _DocumentCollection.normalizeDoc; + return _HasManyInPlace.default; + } +}); +Object.defineProperty(exports, "HasManyTriggers", { + enumerable: true, + get: function get() { + return _HasManyTriggers.default; + } +}); +Object.defineProperty(exports, "Association", { + enumerable: true, + get: function get() { + return _Association.default; + } +}); +Object.defineProperty(exports, "resolveClass", { + enumerable: true, + get: function get() { + return _helpers.resolveClass; + } +}); +Object.defineProperty(exports, "create", { + enumerable: true, + get: function get() { + return _helpers.create; } }); -var _CozyStackClient = _interopRequireDefault(__webpack_require__(578)); +var _HasManyFiles = _interopRequireDefault(__webpack_require__(564)); + +var _HasMany = _interopRequireDefault(__webpack_require__(615)); + +var _HasOne = _interopRequireDefault(__webpack_require__(670)); + +var _HasOneInPlace = _interopRequireDefault(__webpack_require__(673)); -var _OAuthClient = _interopRequireDefault(__webpack_require__(689)); +var _HasManyInPlace = _interopRequireDefault(__webpack_require__(674)); -var _errors = _interopRequireWildcard(__webpack_require__(658)); +var _HasManyTriggers = _interopRequireDefault(__webpack_require__(675)); -var _DocumentCollection = __webpack_require__(619); +var _Association = _interopRequireDefault(__webpack_require__(616)); + +var _helpers = __webpack_require__(676); /***/ }), -/* 578 */ +/* 564 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var _cloneDeep = _interopRequireDefault(__webpack_require__(579)); - -var _AppCollection = _interopRequireWildcard(__webpack_require__(608)); - -var _AppToken = _interopRequireDefault(__webpack_require__(663)); - -var _AccessToken = _interopRequireDefault(__webpack_require__(664)); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -var _DocumentCollection = _interopRequireDefault(__webpack_require__(619)); +var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(542)); -var _FileCollection = _interopRequireDefault(__webpack_require__(665)); +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -var _JobCollection = _interopRequireWildcard(__webpack_require__(673)); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var _KonnectorCollection = _interopRequireWildcard(__webpack_require__(674)); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var _SharingCollection = _interopRequireDefault(__webpack_require__(678)); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -var _PermissionCollection = _interopRequireDefault(__webpack_require__(679)); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -var _TriggerCollection = _interopRequireWildcard(__webpack_require__(675)); +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -var _SettingsCollection = _interopRequireWildcard(__webpack_require__(680)); +var _get2 = _interopRequireDefault(__webpack_require__(565)); -var _NotesCollection = _interopRequireWildcard(__webpack_require__(681)); +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -var _ShortcutsCollection = _interopRequireWildcard(__webpack_require__(683)); - -var _ContactsCollection = _interopRequireWildcard(__webpack_require__(684)); - -var _getIconURL2 = _interopRequireDefault(__webpack_require__(685)); - -var _logDeprecate = _interopRequireDefault(__webpack_require__(687)); - -var _errors = _interopRequireWildcard(__webpack_require__(658)); - -var _xhrFetch = __webpack_require__(688); - -var _microee = _interopRequireDefault(__webpack_require__(576)); - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } - -var normalizeUri = function normalizeUri(uriArg) { - var uri = uriArg; - if (uri === null) return null; - - while (uri[uri.length - 1] === '/') { - uri = uri.slice(0, -1); - } - - return uri; -}; +var _omit = _interopRequireDefault(__webpack_require__(567)); -var isRevocationError = function isRevocationError(err) { - return err.message && _errors.default.CLIENT_NOT_FOUND.test(err.message); -}; -/** - * Main API against the `cozy-stack` server. - */ +var _HasMany2 = _interopRequireDefault(__webpack_require__(615)); +var _dsl = __webpack_require__(561); -var CozyStackClient = /*#__PURE__*/function () { - function CozyStackClient(options) { - (0, _classCallCheck2.default)(this, CozyStackClient); +var _store = __webpack_require__(617); - var opts = _objectSpread({}, options); +var HasManyFiles = +/*#__PURE__*/ +function (_HasMany) { + (0, _inherits2.default)(HasManyFiles, _HasMany); - var token = opts.token, - _opts$uri = opts.uri, - uri = _opts$uri === void 0 ? '' : _opts$uri; - this.options = opts; - this.setUri(uri); - this.setToken(token); - this.konnectors = new _KonnectorCollection.default(this); - this.jobs = new _JobCollection.default(this); + function HasManyFiles() { + (0, _classCallCheck2.default)(this, HasManyFiles); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(HasManyFiles).apply(this, arguments)); } - /** - * Creates a {@link DocumentCollection} instance. - * - * @param {string} doctype The collection doctype. - * @returns {DocumentCollection} - */ - - - (0, _createClass2.default)(CozyStackClient, [{ - key: "collection", - value: function collection(doctype) { - if (!doctype) { - throw new Error('CozyStackClient.collection() called without a doctype'); - } - - switch (doctype) { - case _AppCollection.APPS_DOCTYPE: - return new _AppCollection.default(this); - - case _KonnectorCollection.KONNECTORS_DOCTYPE: - return new _KonnectorCollection.default(this); - - case 'io.cozy.files': - return new _FileCollection.default(doctype, this); - - case 'io.cozy.sharings': - return new _SharingCollection.default(doctype, this); - - case 'io.cozy.permissions': - return new _PermissionCollection.default(doctype, this); - - case _ContactsCollection.CONTACTS_DOCTYPE: - return new _ContactsCollection.default(doctype, this); - - case _TriggerCollection.TRIGGERS_DOCTYPE: - return new _TriggerCollection.default(this); - - case _JobCollection.JOBS_DOCTYPE: - return new _JobCollection.default(this); - - case _SettingsCollection.SETTINGS_DOCTYPE: - return new _SettingsCollection.default(this); - - case _NotesCollection.NOTES_DOCTYPE: - return new _NotesCollection.default(this); - - case _ShortcutsCollection.SHORTCUTS_DOCTYPE: - return new _ShortcutsCollection.default(this); - - default: - return new _DocumentCollection.default(doctype, this); - } - } - /** - * Fetches an endpoint in an authorized way. - * - * @param {string} method The HTTP method. - * @param {string} path The URI. - * @param {object} body The payload. - * @param {object} opts Options for fetch - * @returns {object} - * @throws {FetchError} - */ - - }, { - key: "fetch", - value: function (_fetch) { - function fetch(_x, _x2, _x3) { - return _fetch.apply(this, arguments); - } - fetch.toString = function () { - return _fetch.toString(); - }; + (0, _createClass2.default)(HasManyFiles, [{ + key: "fetchMore", + value: function () { + var _fetchMore = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2() { + var _this = this; - return fetch; - }( /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(method, path, body) { - var opts, - options, - headers, - fullPath, - fetcher, - response, - _args = arguments; - return _regenerator.default.wrap(function _callee$(_context) { + var queryDef, relationships, lastRelationship; + return _regenerator.default.wrap(function _callee2$(_context2) { while (1) { - switch (_context.prev = _context.next) { + switch (_context2.prev = _context2.next) { case 0: - opts = _args.length > 3 && _args[3] !== undefined ? _args[3] : {}; - options = _objectSpread({}, opts); - options.method = method; - headers = options.headers = _objectSpread({}, opts.headers); - - if (method !== 'GET' && method !== 'HEAD' && body !== undefined) { - if (headers['Content-Type']) { - options.body = body; - } - } - - if (!headers.Authorization) { - headers.Authorization = this.getAuthorizationHeader(); - } // the option credentials:include tells fetch to include the cookies in the - // request even for cross-origin requests - - - options.credentials = 'include'; - fullPath = this.fullpath(path); - fetcher = (0, _xhrFetch.shouldXMLHTTPRequestBeUsed)(method, path, options) ? _xhrFetch.fetchWithXMLHttpRequest : fetch; - _context.prev = 9; - _context.next = 12; - return fetcher(fullPath, options); - - case 12: - response = _context.sent; - - if (!response.ok) { - this.emit('error', new _errors.FetchError(response, "".concat(response.status, " ").concat(response.statusText))); - } - - return _context.abrupt("return", response); - - case 17: - _context.prev = 17; - _context.t0 = _context["catch"](9); - - if (isRevocationError(_context.t0)) { - this.onRevocationChange(true); - } + queryDef = new _dsl.QueryDefinition({ + doctype: 'io.cozy.files' + }); + relationships = this.getRelationship().data; // Get last datetime for cursor - throw _context.t0; + lastRelationship = relationships[relationships.length - 1]; + _context2.next = 5; + return this.dispatch( + /*#__PURE__*/ + function () { + var _ref = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(dispatch, getState) { + var lastRelDoc, lastDatetime, cursorKey, startDocId, cursorView, response; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + lastRelDoc = (0, _store.getDocumentFromState)(getState(), lastRelationship._type, lastRelationship._id); // Photos always have a datetime field in metadata - case 21: - case "end": - return _context.stop(); - } - } - }, _callee, this, [[9, 17]]); - })); + lastDatetime = lastRelDoc.attributes.metadata.datetime; // cursor-based pagination - return function (_x4, _x5, _x6) { - return _ref.apply(this, arguments); - }; - }()) - }, { - key: "onTokenRefresh", - value: function onTokenRefresh(token) { - if (this.options && this.options.onTokenRefresh) { - this.options.onTokenRefresh(token); - } - } - }, { - key: "onRevocationChange", - value: function onRevocationChange(state) { - if (this.options && this.options.onRevocationChange) { - this.options.onRevocationChange(state); - } - } - /** - * Returns whether the client has been revoked on the server - */ + cursorKey = [_this.target._type, _this.target._id, lastDatetime]; + startDocId = relationships[relationships.length - 1]._id; + cursorView = [cursorKey, startDocId]; + _context.next = 7; + return _this.query(queryDef.referencedBy(_this.target).offsetCursor(cursorView)); - }, { - key: "checkForRevocation", - value: function () { - var _checkForRevocation = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() { - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - _context2.prev = 0; - _context2.next = 3; - return this.fetchInformation(); + case 7: + response = _context.sent; + // Remove first returned element, used as starting point for the query + response.data.shift(); + _context.next = 11; + return _this.dispatch(_this.updateRelationshipData(function (previousRelationshipData) { + return (0, _objectSpread2.default)({}, previousRelationshipData, { + data: [].concat((0, _toConsumableArray2.default)(previousRelationshipData.data), (0, _toConsumableArray2.default)(response.data)), + next: response.next + }); + })); - case 3: - return _context2.abrupt("return", false); + case 11: + case "end": + return _context.stop(); + } + } + }, _callee); + })); - case 6: - _context2.prev = 6; - _context2.t0 = _context2["catch"](0); - return _context2.abrupt("return", isRevocationError(_context2.t0)); + return function (_x, _x2) { + return _ref.apply(this, arguments); + }; + }()); - case 9: + case 5: case "end": return _context2.stop(); } } - }, _callee2, this, [[0, 6]]); + }, _callee2, this); })); - function checkForRevocation() { - return _checkForRevocation.apply(this, arguments); - } - - return checkForRevocation; + return function fetchMore() { + return _fetchMore.apply(this, arguments); + }; }() - /** - * Retrieves a new app token by refreshing the currently used token. - * - * @throws {Error} The client should already have an access token to use this function - * @throws {Error} The client couldn't fetch a new token - * @returns {Promise} A promise that resolves with a new AccessToken object - */ - }, { - key: "refreshToken", + key: "addById", value: function () { - var _refreshToken = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3() { - var options, response, html, parser, doc, appNode, cozyToken, newToken; + var _addById = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(ids) { + var _this2 = this; + + var relations; return _regenerator.default.wrap(function _callee3$(_context3) { while (1) { switch (_context3.prev = _context3.next) { case 0: - if (this.token) { - _context3.next = 2; - break; - } - - throw new Error('Cannot refresh an empty token'); - - case 2: - options = { - method: 'GET', - credentials: 'include' - }; - - if (global.document) { - _context3.next = 5; - break; - } - - throw new Error('Not in a web context, cannot refresh token'); - - case 5: - _context3.next = 7; - return fetch('/', options); - - case 7: - response = _context3.sent; - - if (response.ok) { - _context3.next = 10; - break; - } - - throw new Error("couldn't fetch a new token - response " + response.statusCode); - - case 10: - _context3.next = 12; - return response.text(); - - case 12: - html = _context3.sent; - parser = new DOMParser(); - doc = parser.parseFromString(html, 'text/html'); - - if (doc) { - _context3.next = 17; - break; - } - - throw Error("couldn't fetch a new token - doc is not html"); - - case 17: - appNode = doc.querySelector('div[role="application"]'); - - if (appNode) { - _context3.next = 20; - break; - } - - throw Error("couldn't fetch a new token - no div[role=application]"); - - case 20: - cozyToken = appNode.dataset.cozyToken; - - if (cozyToken) { - _context3.next = 23; - break; - } - - throw Error("couldn't fetch a new token -- missing data-cozy-token attribute"); + ids = Array.isArray(ids) ? ids : [ids]; + relations = ids.map(function (id) { + return { + _id: id, + _type: _this2.doctype + }; + }); + _context3.next = 4; + return this.mutate(this.insertDocuments(relations)); - case 23: - newToken = new _AppToken.default(cozyToken); - this.onTokenRefresh(newToken); - return _context3.abrupt("return", newToken); + case 4: + _context3.next = 6; + return (0, _get2.default)((0, _getPrototypeOf2.default)(HasManyFiles.prototype), "addById", this).call(this, ids); - case 26: + case 6: case "end": return _context3.stop(); } @@ -94667,302 +93443,230 @@ var CozyStackClient = /*#__PURE__*/function () { }, _callee3, this); })); - function refreshToken() { - return _refreshToken.apply(this, arguments); - } - - return refreshToken; + return function addById(_x3) { + return _addById.apply(this, arguments); + }; }() - /** - * Fetches JSON in an authorized way. - * - * @param {string} method The HTTP method. - * @param {string} path The URI. - * @param {object} body The payload. - * @param {object} options Options - * @returns {object} - * @throws {FetchError} - */ - }, { - key: "fetchJSON", + key: "removeById", value: function () { - var _fetchJSON = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(method, path, body) { - var options, - token, - _args4 = arguments; + var _removeById = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4(ids) { + var _this3 = this; + + var relations; return _regenerator.default.wrap(function _callee4$(_context4) { while (1) { switch (_context4.prev = _context4.next) { case 0: - options = _args4.length > 3 && _args4[3] !== undefined ? _args4[3] : {}; - _context4.prev = 1; + ids = Array.isArray(ids) ? ids : [ids]; + relations = ids.map(function (id) { + return { + _id: id, + _type: _this3.doctype + }; + }); _context4.next = 4; - return this.fetchJSONWithCurrentToken(method, path, body, options); + return this.mutate(this.removeDocuments(relations)); case 4: - return _context4.abrupt("return", _context4.sent); - - case 7: - _context4.prev = 7; - _context4.t0 = _context4["catch"](1); - - if (!(_errors.default.EXPIRED_TOKEN.test(_context4.t0.message) || _errors.default.INVALID_TOKEN.test(_context4.t0.message))) { - _context4.next = 25; - break; - } - - _context4.prev = 10; - _context4.next = 13; - return this.refreshToken(); - - case 13: - token = _context4.sent; - _context4.next = 19; - break; - - case 16: - _context4.prev = 16; - _context4.t1 = _context4["catch"](10); - throw _context4.t0; - - case 19: - this.setToken(token); - _context4.next = 22; - return this.fetchJSONWithCurrentToken(method, path, body, options); - - case 22: - return _context4.abrupt("return", _context4.sent); - - case 25: - throw _context4.t0; - - case 26: - case "end": - return _context4.stop(); - } - } - }, _callee4, this, [[1, 7], [10, 16]]); - })); - - function fetchJSON(_x7, _x8, _x9) { - return _fetchJSON.apply(this, arguments); - } - - return fetchJSON; - }() - }, { - key: "fetchJSONWithCurrentToken", - value: function () { - var _fetchJSONWithCurrentToken = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(method, path, bodyArg) { - var options, - clonedOptions, - headers, - body, - resp, - contentType, - isJson, - data, - _args5 = arguments; - return _regenerator.default.wrap(function _callee5$(_context5) { - while (1) { - switch (_context5.prev = _context5.next) { - case 0: - options = _args5.length > 3 && _args5[3] !== undefined ? _args5[3] : {}; - //Since we modify the object later by adding in some case a - //content-type, let's clone this object to scope the modification - clonedOptions = (0, _cloneDeep.default)(options); - headers = clonedOptions.headers = clonedOptions.headers || {}; - headers['Accept'] = 'application/json'; - body = bodyArg; - - if (method !== 'GET' && method !== 'HEAD' && body !== undefined) { - if (!headers['Content-Type']) { - headers['Content-Type'] = 'application/json'; - body = JSON.stringify(body); - } - } - - _context5.next = 8; - return this.fetch(method, path, body, clonedOptions); - - case 8: - resp = _context5.sent; - contentType = resp.headers.get('content-type'); - isJson = contentType && contentType.indexOf('json') >= 0; - _context5.next = 13; - return isJson ? resp.json() : resp.text(); - - case 13: - data = _context5.sent; - - if (!resp.ok) { - _context5.next = 16; - break; - } - - return _context5.abrupt("return", data); - - case 16: - throw new _errors.FetchError(resp, data); + _context4.next = 6; + return (0, _get2.default)((0, _getPrototypeOf2.default)(HasManyFiles.prototype), "removeById", this).call(this, ids); - case 17: + case 6: case "end": - return _context5.stop(); - } - } - }, _callee5, this); - })); - - function fetchJSONWithCurrentToken(_x10, _x11, _x12) { - return _fetchJSONWithCurrentToken.apply(this, arguments); - } - - return fetchJSONWithCurrentToken; - }() - }, { - key: "fullpath", - value: function fullpath(path) { - if (path.startsWith('http')) { - return path; - } else { - return this.uri + path; - } - } - }, { - key: "getAuthorizationHeader", - value: function getAuthorizationHeader() { - return this.token ? this.token.toAuthHeader() : null; - } - }, { - key: "setCredentials", - value: function setCredentials(token) { - (0, _logDeprecate.default)('CozyStackClient::setCredentials is deprecated, use CozyStackClient::setToken'); - return this.setToken(token); - } - }, { - key: "getCredentials", - value: function getCredentials() { - (0, _logDeprecate.default)('CozyStackClient::getCredentials is deprecated, use CozyStackClient::getAuthorizationHeader'); - return this.getAuthorizationHeader(); - } - /** - * Change or set the API token - * - * @param {string|AppToken|AccessToken} token - Stack API token - */ + return _context4.stop(); + } + } + }, _callee4, this); + })); + return function removeById(_x4) { + return _removeById.apply(this, arguments); + }; + }() }, { - key: "setToken", - value: function setToken(token) { - if (!token) { - this.token = null; + key: "insertDocuments", + value: function insertDocuments(referencedDocs) { + if (this.target._type === 'io.cozy.files') { + return _dsl.Mutations.addReferencedBy(this.target, referencedDocs); + } else if (referencedDocs[0]._type === 'io.cozy.files') { + return _dsl.Mutations.addReferencesTo(this.target, referencedDocs); } else { - if (token.toAuthHeader) { - // AppToken or AccessToken - this.token = token; - } else if (typeof token === 'string') { - // jwt string - this.token = new _AppToken.default(token); - } else { - console.warn('Cozy-Client: Unknown token format', token); - throw new Error('Cozy-Client: Unknown token format'); - } - - this.onRevocationChange(false); + throw new Error('Either the document or the references should be io.cozy.files'); } } - /** - * Get the access token string, being an oauth token or an app token - * - * @returns {string} token - */ - }, { - key: "getAccessToken", - value: function getAccessToken() { - return this.token && this.token.getAccessToken(); + key: "removeDocuments", + value: function removeDocuments(referencedDocs) { + if (this.target._type === 'io.cozy.files') { + return _dsl.Mutations.removeReferencedBy(this.target, referencedDocs); + } else if (referencedDocs[0]._type === 'io.cozy.files') { + return _dsl.Mutations.removeReferencesTo(this.target, referencedDocs); + } else { + throw new Error('Either the document or the references should be io.cozy.files'); + } } }, { - key: "setUri", - value: function setUri(uri) { - this.uri = normalizeUri(uri); + key: "dehydrate", + value: function dehydrate(doc) { + // HasManyFiles relationships are stored on the file doctype, not the document the files are related to + return (0, _omit.default)(doc, [this.name, "relationships.".concat(this.name)]); } - }, { - key: "getIconURL", - value: function getIconURL(opts) { - return (0, _getIconURL2.default)(this, opts); + }], [{ + key: "query", + value: function query(document, client, assoc) { + var key = [document._type, document._id]; + var cursor = [key, '']; + var queryAll = client.find(assoc.doctype); + return queryAll.referencedBy(document).offsetCursor(cursor); } }]); - return CozyStackClient; -}(); + return HasManyFiles; +}(_HasMany2.default); -_microee.default.mixin(CozyStackClient); +exports.default = HasManyFiles; -var _default = CozyStackClient; -exports.default = _default; +/***/ }), +/* 565 */ +/***/ (function(module, exports, __webpack_require__) { + +var superPropBase = __webpack_require__(566); + +function _get(target, property, receiver) { + if (typeof Reflect !== "undefined" && Reflect.get) { + module.exports = _get = Reflect.get; + module.exports["default"] = module.exports, module.exports.__esModule = true; + } else { + module.exports = _get = function _get(target, property, receiver) { + var base = superPropBase(target, property); + if (!base) return; + var desc = Object.getOwnPropertyDescriptor(base, property); + + if (desc.get) { + return desc.get.call(receiver); + } + + return desc.value; + }; + + module.exports["default"] = module.exports, module.exports.__esModule = true; + } + + return _get(target, property, receiver || target); +} + +module.exports = _get; +module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 579 */ +/* 566 */ +/***/ (function(module, exports, __webpack_require__) { + +var getPrototypeOf = __webpack_require__(558); + +function _superPropBase(object, property) { + while (!Object.prototype.hasOwnProperty.call(object, property)) { + object = getPrototypeOf(object); + if (object === null) break; + } + + return object; +} + +module.exports = _superPropBase; +module.exports["default"] = module.exports, module.exports.__esModule = true; + +/***/ }), +/* 567 */ /***/ (function(module, exports, __webpack_require__) { -var baseClone = __webpack_require__(580); +var arrayMap = __webpack_require__(412), + baseClone = __webpack_require__(568), + baseUnset = __webpack_require__(599), + castPath = __webpack_require__(374), + copyObject = __webpack_require__(574), + customOmitClone = __webpack_require__(603), + flatRest = __webpack_require__(605), + getAllKeysIn = __webpack_require__(585); /** Used to compose bitmasks for cloning. */ var CLONE_DEEP_FLAG = 1, + CLONE_FLAT_FLAG = 2, CLONE_SYMBOLS_FLAG = 4; /** - * This method is like `_.clone` except that it recursively clones `value`. + * The opposite of `_.pick`; this method creates an object composed of the + * own and inherited enumerable property paths of `object` that are not omitted. + * + * **Note:** This method is considerably slower than `_.pick`. * * @static + * @since 0.1.0 * @memberOf _ - * @since 1.0.0 - * @category Lang - * @param {*} value The value to recursively clone. - * @returns {*} Returns the deep cloned value. - * @see _.clone + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to omit. + * @returns {Object} Returns the new object. * @example * - * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * var object = { 'a': 1, 'b': '2', 'c': 3 }; * - * var deep = _.cloneDeep(objects); - * console.log(deep[0] === objects[0]); - * // => false + * _.omit(object, ['a', 'c']); + * // => { 'b': '2' } */ -function cloneDeep(value) { - return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG); -} +var omit = flatRest(function(object, paths) { + var result = {}; + if (object == null) { + return result; + } + var isDeep = false; + paths = arrayMap(paths, function(path) { + path = castPath(path, object); + isDeep || (isDeep = path.length > 1); + return path; + }); + copyObject(object, getAllKeysIn(object), result); + if (isDeep) { + result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone); + } + var length = paths.length; + while (length--) { + baseUnset(result, paths[length]); + } + return result; +}); -module.exports = cloneDeep; +module.exports = omit; /***/ }), -/* 580 */ +/* 568 */ /***/ (function(module, exports, __webpack_require__) { -var Stack = __webpack_require__(416), - arrayEach = __webpack_require__(572), - assignValue = __webpack_require__(581), - baseAssign = __webpack_require__(582), - baseAssignIn = __webpack_require__(584), - cloneBuffer = __webpack_require__(588), - copyArray = __webpack_require__(589), - copySymbols = __webpack_require__(590), - copySymbolsIn = __webpack_require__(591), - getAllKeys = __webpack_require__(435), - getAllKeysIn = __webpack_require__(594), - getTag = __webpack_require__(459), - initCloneArray = __webpack_require__(595), - initCloneByTag = __webpack_require__(596), - initCloneObject = __webpack_require__(602), +var Stack = __webpack_require__(418), + arrayEach = __webpack_require__(569), + assignValue = __webpack_require__(570), + baseAssign = __webpack_require__(573), + baseAssignIn = __webpack_require__(575), + cloneBuffer = __webpack_require__(579), + copyArray = __webpack_require__(580), + copySymbols = __webpack_require__(581), + copySymbolsIn = __webpack_require__(582), + getAllKeys = __webpack_require__(437), + getAllKeysIn = __webpack_require__(585), + getTag = __webpack_require__(461), + initCloneArray = __webpack_require__(586), + initCloneByTag = __webpack_require__(587), + initCloneObject = __webpack_require__(593), isArray = __webpack_require__(75), - isBuffer = __webpack_require__(446), - isMap = __webpack_require__(604), + isBuffer = __webpack_require__(448), + isMap = __webpack_require__(595), isObject = __webpack_require__(72), - isSet = __webpack_require__(606), - keys = __webpack_require__(441), - keysIn = __webpack_require__(585); + isSet = __webpack_require__(597), + keys = __webpack_require__(443), + keysIn = __webpack_require__(576); /** Used to compose bitmasks for cloning. */ var CLONE_DEEP_FLAG = 1, @@ -95110,11 +93814,39 @@ module.exports = baseClone; /***/ }), -/* 581 */ +/* 569 */ +/***/ (function(module, exports) { + +/** + * A specialized version of `_.forEach` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ +function arrayEach(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (iteratee(array[index], index, array) === false) { + break; + } + } + return array; +} + +module.exports = arrayEach; + + +/***/ }), +/* 570 */ /***/ (function(module, exports, __webpack_require__) { -var baseAssignValue = __webpack_require__(552), - eq = __webpack_require__(397); +var baseAssignValue = __webpack_require__(571), + eq = __webpack_require__(399); /** Used for built-in method references. */ var objectProto = Object.prototype; @@ -95144,11 +93876,59 @@ module.exports = assignValue; /***/ }), -/* 582 */ +/* 571 */ +/***/ (function(module, exports, __webpack_require__) { + +var defineProperty = __webpack_require__(572); + +/** + * The base implementation of `assignValue` and `assignMergeValue` without + * value checks. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ +function baseAssignValue(object, key, value) { + if (key == '__proto__' && defineProperty) { + defineProperty(object, key, { + 'configurable': true, + 'enumerable': true, + 'value': value, + 'writable': true + }); + } else { + object[key] = value; + } +} + +module.exports = baseAssignValue; + + +/***/ }), +/* 572 */ +/***/ (function(module, exports, __webpack_require__) { + +var getNative = __webpack_require__(385); + +var defineProperty = (function() { + try { + var func = getNative(Object, 'defineProperty'); + func({}, '', {}); + return func; + } catch (e) {} +}()); + +module.exports = defineProperty; + + +/***/ }), +/* 573 */ /***/ (function(module, exports, __webpack_require__) { -var copyObject = __webpack_require__(583), - keys = __webpack_require__(441); +var copyObject = __webpack_require__(574), + keys = __webpack_require__(443); /** * The base implementation of `_.assign` without support for multiple sources @@ -95167,11 +93947,11 @@ module.exports = baseAssign; /***/ }), -/* 583 */ +/* 574 */ /***/ (function(module, exports, __webpack_require__) { -var assignValue = __webpack_require__(581), - baseAssignValue = __webpack_require__(552); +var assignValue = __webpack_require__(570), + baseAssignValue = __webpack_require__(571); /** * Copies properties of `source` to `object`. @@ -95213,11 +93993,11 @@ module.exports = copyObject; /***/ }), -/* 584 */ +/* 575 */ /***/ (function(module, exports, __webpack_require__) { -var copyObject = __webpack_require__(583), - keysIn = __webpack_require__(585); +var copyObject = __webpack_require__(574), + keysIn = __webpack_require__(576); /** * The base implementation of `_.assignIn` without support for multiple sources @@ -95236,12 +94016,12 @@ module.exports = baseAssignIn; /***/ }), -/* 585 */ +/* 576 */ /***/ (function(module, exports, __webpack_require__) { -var arrayLikeKeys = __webpack_require__(442), - baseKeysIn = __webpack_require__(586), - isArrayLike = __webpack_require__(458); +var arrayLikeKeys = __webpack_require__(444), + baseKeysIn = __webpack_require__(577), + isArrayLike = __webpack_require__(460); /** * Creates an array of the own and inherited enumerable property names of `object`. @@ -95274,12 +94054,12 @@ module.exports = keysIn; /***/ }), -/* 586 */ +/* 577 */ /***/ (function(module, exports, __webpack_require__) { var isObject = __webpack_require__(72), - isPrototype = __webpack_require__(455), - nativeKeysIn = __webpack_require__(587); + isPrototype = __webpack_require__(457), + nativeKeysIn = __webpack_require__(578); /** Used for built-in method references. */ var objectProto = Object.prototype; @@ -95313,7 +94093,7 @@ module.exports = baseKeysIn; /***/ }), -/* 587 */ +/* 578 */ /***/ (function(module, exports) { /** @@ -95339,7 +94119,7 @@ module.exports = nativeKeysIn; /***/ }), -/* 588 */ +/* 579 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(68); @@ -95381,7 +94161,7 @@ module.exports = cloneBuffer; /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) /***/ }), -/* 589 */ +/* 580 */ /***/ (function(module, exports) { /** @@ -95407,11 +94187,11 @@ module.exports = copyArray; /***/ }), -/* 590 */ +/* 581 */ /***/ (function(module, exports, __webpack_require__) { -var copyObject = __webpack_require__(583), - getSymbols = __webpack_require__(438); +var copyObject = __webpack_require__(574), + getSymbols = __webpack_require__(440); /** * Copies own symbols of `source` to `object`. @@ -95429,11 +94209,11 @@ module.exports = copySymbols; /***/ }), -/* 591 */ +/* 582 */ /***/ (function(module, exports, __webpack_require__) { -var copyObject = __webpack_require__(583), - getSymbolsIn = __webpack_require__(592); +var copyObject = __webpack_require__(574), + getSymbolsIn = __webpack_require__(583); /** * Copies own and inherited symbols of `source` to `object`. @@ -95451,13 +94231,13 @@ module.exports = copySymbolsIn; /***/ }), -/* 592 */ +/* 583 */ /***/ (function(module, exports, __webpack_require__) { -var arrayPush = __webpack_require__(437), - getPrototype = __webpack_require__(593), - getSymbols = __webpack_require__(438), - stubArray = __webpack_require__(440); +var arrayPush = __webpack_require__(439), + getPrototype = __webpack_require__(584), + getSymbols = __webpack_require__(440), + stubArray = __webpack_require__(442); /* Built-in method references for those with the same name as other `lodash` methods. */ var nativeGetSymbols = Object.getOwnPropertySymbols; @@ -95482,10 +94262,10 @@ module.exports = getSymbolsIn; /***/ }), -/* 593 */ +/* 584 */ /***/ (function(module, exports, __webpack_require__) { -var overArg = __webpack_require__(457); +var overArg = __webpack_require__(459); /** Built-in value references. */ var getPrototype = overArg(Object.getPrototypeOf, Object); @@ -95494,12 +94274,12 @@ module.exports = getPrototype; /***/ }), -/* 594 */ +/* 585 */ /***/ (function(module, exports, __webpack_require__) { -var baseGetAllKeys = __webpack_require__(436), - getSymbolsIn = __webpack_require__(592), - keysIn = __webpack_require__(585); +var baseGetAllKeys = __webpack_require__(438), + getSymbolsIn = __webpack_require__(583), + keysIn = __webpack_require__(576); /** * Creates an array of own and inherited enumerable property names and @@ -95517,7 +94297,7 @@ module.exports = getAllKeysIn; /***/ }), -/* 595 */ +/* 586 */ /***/ (function(module, exports) { /** Used for built-in method references. */ @@ -95549,14 +94329,14 @@ module.exports = initCloneArray; /***/ }), -/* 596 */ +/* 587 */ /***/ (function(module, exports, __webpack_require__) { -var cloneArrayBuffer = __webpack_require__(597), - cloneDataView = __webpack_require__(598), - cloneRegExp = __webpack_require__(599), - cloneSymbol = __webpack_require__(600), - cloneTypedArray = __webpack_require__(601); +var cloneArrayBuffer = __webpack_require__(588), + cloneDataView = __webpack_require__(589), + cloneRegExp = __webpack_require__(590), + cloneSymbol = __webpack_require__(591), + cloneTypedArray = __webpack_require__(592); /** `Object#toString` result references. */ var boolTag = '[object Boolean]', @@ -95617,5025 +94397,3733 @@ function initCloneByTag(object, tag, isDeep) { case stringTag: return new Ctor(object); - case regexpTag: - return cloneRegExp(object); - - case setTag: - return new Ctor; - - case symbolTag: - return cloneSymbol(object); - } -} - -module.exports = initCloneByTag; - - -/***/ }), -/* 597 */ -/***/ (function(module, exports, __webpack_require__) { - -var Uint8Array = __webpack_require__(431); - -/** - * Creates a clone of `arrayBuffer`. - * - * @private - * @param {ArrayBuffer} arrayBuffer The array buffer to clone. - * @returns {ArrayBuffer} Returns the cloned array buffer. - */ -function cloneArrayBuffer(arrayBuffer) { - var result = new arrayBuffer.constructor(arrayBuffer.byteLength); - new Uint8Array(result).set(new Uint8Array(arrayBuffer)); - return result; -} - -module.exports = cloneArrayBuffer; - - -/***/ }), -/* 598 */ -/***/ (function(module, exports, __webpack_require__) { - -var cloneArrayBuffer = __webpack_require__(597); - -/** - * Creates a clone of `dataView`. - * - * @private - * @param {Object} dataView The data view to clone. - * @param {boolean} [isDeep] Specify a deep clone. - * @returns {Object} Returns the cloned data view. - */ -function cloneDataView(dataView, isDeep) { - var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; - return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); -} - -module.exports = cloneDataView; - - -/***/ }), -/* 599 */ -/***/ (function(module, exports) { - -/** Used to match `RegExp` flags from their coerced string values. */ -var reFlags = /\w*$/; - -/** - * Creates a clone of `regexp`. - * - * @private - * @param {Object} regexp The regexp to clone. - * @returns {Object} Returns the cloned regexp. - */ -function cloneRegExp(regexp) { - var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); - result.lastIndex = regexp.lastIndex; - return result; -} - -module.exports = cloneRegExp; - - -/***/ }), -/* 600 */ -/***/ (function(module, exports, __webpack_require__) { - -var Symbol = __webpack_require__(67); - -/** Used to convert symbols to primitives and strings. */ -var symbolProto = Symbol ? Symbol.prototype : undefined, - symbolValueOf = symbolProto ? symbolProto.valueOf : undefined; - -/** - * Creates a clone of the `symbol` object. - * - * @private - * @param {Object} symbol The symbol object to clone. - * @returns {Object} Returns the cloned symbol object. - */ -function cloneSymbol(symbol) { - return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; -} - -module.exports = cloneSymbol; - - -/***/ }), -/* 601 */ -/***/ (function(module, exports, __webpack_require__) { - -var cloneArrayBuffer = __webpack_require__(597); - -/** - * Creates a clone of `typedArray`. - * - * @private - * @param {Object} typedArray The typed array to clone. - * @param {boolean} [isDeep] Specify a deep clone. - * @returns {Object} Returns the cloned typed array. - */ -function cloneTypedArray(typedArray, isDeep) { - var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; - return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); -} - -module.exports = cloneTypedArray; - - -/***/ }), -/* 602 */ -/***/ (function(module, exports, __webpack_require__) { - -var baseCreate = __webpack_require__(603), - getPrototype = __webpack_require__(593), - isPrototype = __webpack_require__(455); - -/** - * Initializes an object clone. - * - * @private - * @param {Object} object The object to clone. - * @returns {Object} Returns the initialized clone. - */ -function initCloneObject(object) { - return (typeof object.constructor == 'function' && !isPrototype(object)) - ? baseCreate(getPrototype(object)) - : {}; -} - -module.exports = initCloneObject; - - -/***/ }), -/* 603 */ -/***/ (function(module, exports, __webpack_require__) { - -var isObject = __webpack_require__(72); - -/** Built-in value references. */ -var objectCreate = Object.create; - -/** - * The base implementation of `_.create` without support for assigning - * properties to the created object. - * - * @private - * @param {Object} proto The object to inherit from. - * @returns {Object} Returns the new object. - */ -var baseCreate = (function() { - function object() {} - return function(proto) { - if (!isObject(proto)) { - return {}; - } - if (objectCreate) { - return objectCreate(proto); - } - object.prototype = proto; - var result = new object; - object.prototype = undefined; - return result; - }; -}()); - -module.exports = baseCreate; - - -/***/ }), -/* 604 */ -/***/ (function(module, exports, __webpack_require__) { - -var baseIsMap = __webpack_require__(605), - baseUnary = __webpack_require__(452), - nodeUtil = __webpack_require__(453); - -/* Node.js helper references. */ -var nodeIsMap = nodeUtil && nodeUtil.isMap; - -/** - * Checks if `value` is classified as a `Map` object. - * - * @static - * @memberOf _ - * @since 4.3.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a map, else `false`. - * @example - * - * _.isMap(new Map); - * // => true - * - * _.isMap(new WeakMap); - * // => false - */ -var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; - -module.exports = isMap; - - -/***/ }), -/* 605 */ -/***/ (function(module, exports, __webpack_require__) { - -var getTag = __webpack_require__(459), - isObjectLike = __webpack_require__(73); - -/** `Object#toString` result references. */ -var mapTag = '[object Map]'; - -/** - * The base implementation of `_.isMap` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a map, else `false`. - */ -function baseIsMap(value) { - return isObjectLike(value) && getTag(value) == mapTag; -} - -module.exports = baseIsMap; - - -/***/ }), -/* 606 */ -/***/ (function(module, exports, __webpack_require__) { - -var baseIsSet = __webpack_require__(607), - baseUnary = __webpack_require__(452), - nodeUtil = __webpack_require__(453); - -/* Node.js helper references. */ -var nodeIsSet = nodeUtil && nodeUtil.isSet; - -/** - * Checks if `value` is classified as a `Set` object. - * - * @static - * @memberOf _ - * @since 4.3.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a set, else `false`. - * @example - * - * _.isSet(new Set); - * // => true - * - * _.isSet(new WeakSet); - * // => false - */ -var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet; - -module.exports = isSet; - - -/***/ }), -/* 607 */ -/***/ (function(module, exports, __webpack_require__) { - -var getTag = __webpack_require__(459), - isObjectLike = __webpack_require__(73); - -/** `Object#toString` result references. */ -var setTag = '[object Set]'; - -/** - * The base implementation of `_.isSet` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a set, else `false`. - */ -function baseIsSet(value) { - return isObjectLike(value) && getTag(value) == setTag; -} - -module.exports = baseIsSet; - - -/***/ }), -/* 608 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.normalizeApp = exports.APPS_DOCTYPE = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); - -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); - -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); - -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); - -var _get3 = _interopRequireDefault(__webpack_require__(370)); - -var _registry = __webpack_require__(614); - -var _Collection = _interopRequireDefault(__webpack_require__(618)); - -var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(619)); - -var _errors = __webpack_require__(658); - -function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } - -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } - -var APPS_DOCTYPE = 'io.cozy.apps'; -exports.APPS_DOCTYPE = APPS_DOCTYPE; - -var normalizeApp = function normalizeApp(app, doctype) { - return _objectSpread(_objectSpread(_objectSpread({}, app), (0, _DocumentCollection2.normalizeDoc)(app, doctype)), app.attributes); -}; -/** - * Extends `DocumentCollection` API along with specific methods for `io.cozy.apps`. - */ - - -exports.normalizeApp = normalizeApp; - -var AppCollection = /*#__PURE__*/function (_DocumentCollection) { - (0, _inherits2.default)(AppCollection, _DocumentCollection); - - var _super = _createSuper(AppCollection); - - function AppCollection(stackClient) { - var _this; - - (0, _classCallCheck2.default)(this, AppCollection); - _this = _super.call(this, APPS_DOCTYPE, stackClient); - _this.endpoint = '/apps/'; - return _this; - } - - (0, _createClass2.default)(AppCollection, [{ - key: "get", - value: function () { - var _get2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(idArg, query) { - var _this2 = this; - - var id, sources, dataFetchers, _iterator, _step, source, res, data, normalizedDoc; - - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - if (idArg.indexOf('/') > -1) { - id = idArg.split('/')[1]; - } else { - console.warn("Deprecated: in next versions of cozy-client, it will not be possible to query apps/konnectors only with id, please use the form ".concat(this.doctype, "/").concat(idArg, "\n\n- Q('io.cozy.apps').getById('banks')\n+ Q('io.cozy.apps').getById('io.cozy.apps/banks')")); - id = idArg; - } - - if (!(query && query.sources && (!Array.isArray(query.sources) || query.sources.length === 0))) { - _context.next = 3; - break; - } - - throw new Error('Invalid "sources" attribute passed in query, please use an array with at least one element.'); - - case 3: - sources = (0, _get3.default)(query, 'sources', ['stack']); - dataFetchers = { - stack: function stack() { - return _Collection.default.get(_this2.stackClient, "".concat(_this2.endpoint).concat(encodeURIComponent(id)), { - normalize: _this2.constructor.normalizeDoctype(_this2.doctype) - }); - }, - registry: function registry() { - return _this2.stackClient.fetchJSON('GET', _registry.registryEndpoint + id); - } - }; - _iterator = _createForOfIteratorHelper(sources); - _context.prev = 6; - - _iterator.s(); - - case 8: - if ((_step = _iterator.n()).done) { - _context.next = 27; - break; - } - - source = _step.value; - _context.prev = 10; - _context.next = 13; - return dataFetchers[source](); - - case 13: - res = _context.sent; - - if (!(source !== 'registry')) { - _context.next = 16; - break; - } - - return _context.abrupt("return", res); - - case 16: - data = (0, _registry.transformRegistryFormatToStackFormat)(res); - normalizedDoc = (0, _DocumentCollection2.normalizeDoc)(data, this.doctype); - return _context.abrupt("return", { - data: normalizedDoc - }); - - case 21: - _context.prev = 21; - _context.t0 = _context["catch"](10); - - if (!(source === sources[sources.length - 1])) { - _context.next = 25; - break; - } - - throw _context.t0; - - case 25: - _context.next = 8; - break; - - case 27: - _context.next = 32; - break; - - case 29: - _context.prev = 29; - _context.t1 = _context["catch"](6); - - _iterator.e(_context.t1); - - case 32: - _context.prev = 32; - - _iterator.f(); - - return _context.finish(32); - - case 35: - case "end": - return _context.stop(); - } - } - }, _callee, this, [[6, 29, 32, 35], [10, 21]]); - })); - - function get(_x, _x2) { - return _get2.apply(this, arguments); - } - - return get; - }() - /** - * Lists all apps, without filters. - * - * The returned documents are not paginated by the stack. - * - * @returns {{data, meta, skip, next}} The JSON API conformant response. - * @throws {FetchError} - */ - - }, { - key: "all", - value: function () { - var _all = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() { - var _this3 = this; - - var resp; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - _context2.next = 2; - return this.stackClient.fetchJSON('GET', this.endpoint); - - case 2: - resp = _context2.sent; - return _context2.abrupt("return", { - data: resp.data.map(function (app) { - return normalizeApp(app, _this3.doctype); - }), - meta: { - count: resp.meta.count - }, - skip: 0, - next: false - }); - - case 4: - case "end": - return _context2.stop(); - } - } - }, _callee2, this); - })); - - function all() { - return _all.apply(this, arguments); - } - - return all; - }() - }, { - key: "create", - value: function () { - var _create = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3() { - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - throw new Error('create() method is not available for applications'); - - case 1: - case "end": - return _context3.stop(); - } - } - }, _callee3); - })); - - function create() { - return _create.apply(this, arguments); - } - - return create; - }() - }, { - key: "update", - value: function () { - var _update = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4() { - return _regenerator.default.wrap(function _callee4$(_context4) { - while (1) { - switch (_context4.prev = _context4.next) { - case 0: - throw new Error('update() method is not available for applications'); - - case 1: - case "end": - return _context4.stop(); - } - } - }, _callee4); - })); - - function update() { - return _update.apply(this, arguments); - } - - return update; - }() - }, { - key: "destroy", - value: function () { - var _destroy = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5() { - return _regenerator.default.wrap(function _callee5$(_context5) { - while (1) { - switch (_context5.prev = _context5.next) { - case 0: - throw new Error('destroy() method is not available for applications'); - - case 1: - case "end": - return _context5.stop(); - } - } - }, _callee5); - })); - - function destroy() { - return _destroy.apply(this, arguments); - } - - return destroy; - }() - }]); - return AppCollection; -}(_DocumentCollection2.default); - -AppCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; -var _default = AppCollection; -exports.default = _default; - -/***/ }), -/* 609 */ -/***/ (function(module, exports, __webpack_require__) { - -var setPrototypeOf = __webpack_require__(610); - -function _inherits(subClass, superClass) { - if (typeof superClass !== "function" && superClass !== null) { - throw new TypeError("Super expression must either be null or a function"); - } - - subClass.prototype = Object.create(superClass && superClass.prototype, { - constructor: { - value: subClass, - writable: true, - configurable: true - } - }); - if (superClass) setPrototypeOf(subClass, superClass); -} - -module.exports = _inherits; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), -/* 610 */ -/***/ (function(module, exports) { - -function _setPrototypeOf(o, p) { - module.exports = _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { - o.__proto__ = p; - return o; - }; - - module.exports["default"] = module.exports, module.exports.__esModule = true; - return _setPrototypeOf(o, p); -} - -module.exports = _setPrototypeOf; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), -/* 611 */ -/***/ (function(module, exports, __webpack_require__) { - -var _typeof = __webpack_require__(529)["default"]; - -var assertThisInitialized = __webpack_require__(612); - -function _possibleConstructorReturn(self, call) { - if (call && (_typeof(call) === "object" || typeof call === "function")) { - return call; - } - - return assertThisInitialized(self); -} - -module.exports = _possibleConstructorReturn; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), -/* 612 */ -/***/ (function(module, exports) { - -function _assertThisInitialized(self) { - if (self === void 0) { - throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); - } - - return self; -} - -module.exports = _assertThisInitialized; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), -/* 613 */ -/***/ (function(module, exports) { - -function _getPrototypeOf(o) { - module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { - return o.__proto__ || Object.getPrototypeOf(o); - }; - module.exports["default"] = module.exports, module.exports.__esModule = true; - return _getPrototypeOf(o); -} - -module.exports = _getPrototypeOf; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), -/* 614 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.registryEndpoint = exports.transformRegistryFormatToStackFormat = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); - -var _get = _interopRequireDefault(__webpack_require__(370)); - -__webpack_require__(615); - -var _terms = _interopRequireDefault(__webpack_require__(616)); - -var _constants = __webpack_require__(617); - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } - -var transformRegistryFormatToStackFormat = function transformRegistryFormatToStackFormat(doc) { - return _objectSpread({ - id: (0, _get.default)(doc, 'latest_version.manifest.source'), - attributes: (0, _get.default)(doc, 'latest_version.manifest') - }, doc); -}; - -exports.transformRegistryFormatToStackFormat = transformRegistryFormatToStackFormat; -var registryEndpoint = '/registry/'; -exports.registryEndpoint = registryEndpoint; - -var queryPartFromOptions = function queryPartFromOptions(options) { - var query = new URLSearchParams(options).toString(); - return query ? "?".concat(query) : ''; -}; - -var getBaseRoute = function getBaseRoute(app) { - var type = app.type; // TODO node is an historic type, it should be `konnector`, check with the back - - var route = type === _constants.APP_TYPE.KONNECTOR || type === 'node' ? 'konnectors' : 'apps'; - return "/".concat(route); -}; -/** - * @typedef {object} RegistryApp - * @property {string} slug - * @property {object} terms - * @property {boolean} installed - */ - -/** - * @typedef {"dev"|"beta"|"stable"} RegistryAppChannel - */ - - -var Registry = /*#__PURE__*/function () { - function Registry(options) { - (0, _classCallCheck2.default)(this, Registry); - - if (!options.client) { - throw new Error('Need to pass a client to instantiate a Registry API.'); - } - - this.client = options.client; - } - /** - * Installs or updates an app from a source. - * - * Accepts the terms if the app has them. - * - * @param {RegistryApp} app - App to be installed - * @param {string} source - String (ex: registry://drive/stable) - * @returns {Promise} - */ - - - (0, _createClass2.default)(Registry, [{ - key: "installApp", - value: function () { - var _installApp = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(app, source) { - var slug, terms, searchParams, isUpdate, querypart, verb, baseRoute; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - slug = app.slug, terms = app.terms; - searchParams = {}; - isUpdate = app.installed; - if (isUpdate) searchParams.PermissionsAcked = isUpdate; - if (source) searchParams.Source = source; - querypart = queryPartFromOptions(searchParams); - - if (!terms) { - _context.next = 9; - break; - } - - _context.next = 9; - return _terms.default.save(this.client, terms); - - case 9: - verb = app.installed ? 'PUT' : 'POST'; - baseRoute = getBaseRoute(app); - return _context.abrupt("return", this.client.stackClient.fetchJSON(verb, "".concat(baseRoute, "/").concat(slug).concat(querypart))); - - case 12: - case "end": - return _context.stop(); - } - } - }, _callee, this); - })); - - function installApp(_x, _x2) { - return _installApp.apply(this, arguments); - } - - return installApp; - }() - /** - * Uninstalls an app. - */ - - }, { - key: "uninstallApp", - value: function () { - var _uninstallApp = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(app) { - var slug, baseRoute; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - slug = app.slug; - baseRoute = getBaseRoute(app); - return _context2.abrupt("return", this.client.stackClient.fetchJSON('DELETE', "".concat(baseRoute, "/").concat(slug))); - - case 3: - case "end": - return _context2.stop(); - } - } - }, _callee2, this); - })); - - function uninstallApp(_x3) { - return _uninstallApp.apply(this, arguments); - } + case regexpTag: + return cloneRegExp(object); - return uninstallApp; - }() - /** - * Fetch at most 200 apps from the channel - * - * @param {object} params - Fetching parameters - * @param {string} params.type - "webapp" or "konnector" - * @param {RegistryAppChannel} params.channel - The channel of the apps to fetch - * @param {string} params.limit - maximum number of fetched apps - defaults to 200 - * - * @returns {Promise<Array<RegistryApp>>} - */ + case setTag: + return new Ctor; - }, { - key: "fetchApps", - value: function () { - var _fetchApps = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(params) { - var channel, type, _params$limit, limit, searchParams, querypart, _yield$this$client$st, apps; + case symbolTag: + return cloneSymbol(object); + } +} - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - channel = params.channel, type = params.type, _params$limit = params.limit, limit = _params$limit === void 0 ? '200' : _params$limit; - searchParams = { - limit: limit, - versionsChannel: channel, - latestChannelVersion: channel - }; - querypart = new URLSearchParams(searchParams).toString(); +module.exports = initCloneByTag; - if (type) { - // Unfortunately, URLSearchParams encodes brackets so we have to do - // the querypart handling manually - querypart = querypart + "&filter[type]=".concat(type); - } - _context3.next = 6; - return this.client.stackClient.fetchJSON('GET', "/registry?".concat(querypart)); +/***/ }), +/* 588 */ +/***/ (function(module, exports, __webpack_require__) { - case 6: - _yield$this$client$st = _context3.sent; - apps = _yield$this$client$st.data; - return _context3.abrupt("return", apps); +var Uint8Array = __webpack_require__(433); - case 9: - case "end": - return _context3.stop(); - } - } - }, _callee3, this); - })); +/** + * Creates a clone of `arrayBuffer`. + * + * @private + * @param {ArrayBuffer} arrayBuffer The array buffer to clone. + * @returns {ArrayBuffer} Returns the cloned array buffer. + */ +function cloneArrayBuffer(arrayBuffer) { + var result = new arrayBuffer.constructor(arrayBuffer.byteLength); + new Uint8Array(result).set(new Uint8Array(arrayBuffer)); + return result; +} - function fetchApps(_x4) { - return _fetchApps.apply(this, arguments); - } +module.exports = cloneArrayBuffer; - return fetchApps; - }() - /** - * Fetch the list of apps that are in maintenance mode - * - * @returns {Array<RegistryApp>} - */ - }, { - key: "fetchAppsInMaintenance", - value: function fetchAppsInMaintenance() { - return this.client.stackClient.fetchJSON('GET', '/registry/maintenance'); - } - /** - * Fetch the status of a single app on the registry - * - * @param {string} slug - The slug of the app to fetch - * - * @returns {RegistryApp} - */ +/***/ }), +/* 589 */ +/***/ (function(module, exports, __webpack_require__) { - }, { - key: "fetchApp", - value: function fetchApp(slug) { - return this.client.stackClient.fetchJSON('GET', "/registry/".concat(slug)); - } - /** - * Fetch the latest version of an app for the given channel and slug - * - * @param {object} params - Fetching parameters - * @param {string} params.slug - The slug of the app to fetch - * @param {RegistryAppChannel} params.channel - The channel of the app to fetch - * - * @returns {RegistryApp} - */ +var cloneArrayBuffer = __webpack_require__(588); - }, { - key: "fetchAppLatestVersion", - value: function fetchAppLatestVersion(params) { - if (!params.slug || !params.channel) { - throw new Error('Need to pass a slug and channel param to use fetchAppLatestVersion'); - } +/** + * Creates a clone of `dataView`. + * + * @private + * @param {Object} dataView The data view to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned data view. + */ +function cloneDataView(dataView, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; + return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); +} - var slug = params.slug, - channel = params.channel; - return this.client.stackClient.fetchJSON('GET', "/registry/".concat(slug, "/").concat(channel, "/latest")); - } - }]); - return Registry; -}(); +module.exports = cloneDataView; -var _default = Registry; -exports.default = _default; /***/ }), -/* 615 */ +/* 590 */ /***/ (function(module, exports) { +/** Used to match `RegExp` flags from their coerced string values. */ +var reFlags = /\w*$/; + /** + * Creates a clone of `regexp`. * - * - * @author Jerry Bendy <jerry@icewingcc.com> - * @licence MIT - * + * @private + * @param {Object} regexp The regexp to clone. + * @returns {Object} Returns the cloned regexp. */ +function cloneRegExp(regexp) { + var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); + result.lastIndex = regexp.lastIndex; + return result; +} -(function(self) { - 'use strict'; - - var nativeURLSearchParams = (self.URLSearchParams && self.URLSearchParams.prototype.get) ? self.URLSearchParams : null, - isSupportObjectConstructor = nativeURLSearchParams && (new nativeURLSearchParams({a: 1})).toString() === 'a=1', - // There is a bug in safari 10.1 (and earlier) that incorrectly decodes `%2B` as an empty space and not a plus. - decodesPlusesCorrectly = nativeURLSearchParams && (new nativeURLSearchParams('s=%2B').get('s') === '+'), - __URLSearchParams__ = "__URLSearchParams__", - // Fix bug in Edge which cannot encode ' &' correctly - encodesAmpersandsCorrectly = nativeURLSearchParams ? (function() { - var ampersandTest = new nativeURLSearchParams(); - ampersandTest.append('s', ' &'); - return ampersandTest.toString() === 's=+%26'; - })() : true, - prototype = URLSearchParamsPolyfill.prototype, - iterable = !!(self.Symbol && self.Symbol.iterator); - - if (nativeURLSearchParams && isSupportObjectConstructor && decodesPlusesCorrectly && encodesAmpersandsCorrectly) { - return; - } - +module.exports = cloneRegExp; - /** - * Make a URLSearchParams instance - * - * @param {object|string|URLSearchParams} search - * @constructor - */ - function URLSearchParamsPolyfill(search) { - search = search || ""; - // support construct object with another URLSearchParams instance - if (search instanceof URLSearchParams || search instanceof URLSearchParamsPolyfill) { - search = search.toString(); - } - this [__URLSearchParams__] = parseToDict(search); - } +/***/ }), +/* 591 */ +/***/ (function(module, exports, __webpack_require__) { +var Symbol = __webpack_require__(67); - /** - * Appends a specified key/value pair as a new search parameter. - * - * @param {string} name - * @param {string} value - */ - prototype.append = function(name, value) { - appendTo(this [__URLSearchParams__], name, value); - }; +/** Used to convert symbols to primitives and strings. */ +var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolValueOf = symbolProto ? symbolProto.valueOf : undefined; - /** - * Deletes the given search parameter, and its associated value, - * from the list of all search parameters. - * - * @param {string} name - */ - prototype['delete'] = function(name) { - delete this [__URLSearchParams__] [name]; - }; +/** + * Creates a clone of the `symbol` object. + * + * @private + * @param {Object} symbol The symbol object to clone. + * @returns {Object} Returns the cloned symbol object. + */ +function cloneSymbol(symbol) { + return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; +} - /** - * Returns the first value associated to the given search parameter. - * - * @param {string} name - * @returns {string|null} - */ - prototype.get = function(name) { - var dict = this [__URLSearchParams__]; - return name in dict ? dict[name][0] : null; - }; +module.exports = cloneSymbol; - /** - * Returns all the values association with a given search parameter. - * - * @param {string} name - * @returns {Array} - */ - prototype.getAll = function(name) { - var dict = this [__URLSearchParams__]; - return name in dict ? dict [name].slice(0) : []; - }; - /** - * Returns a Boolean indicating if such a search parameter exists. - * - * @param {string} name - * @returns {boolean} - */ - prototype.has = function(name) { - return name in this [__URLSearchParams__]; - }; +/***/ }), +/* 592 */ +/***/ (function(module, exports, __webpack_require__) { - /** - * Sets the value associated to a given search parameter to - * the given value. If there were several values, delete the - * others. - * - * @param {string} name - * @param {string} value - */ - prototype.set = function set(name, value) { - this [__URLSearchParams__][name] = ['' + value]; - }; +var cloneArrayBuffer = __webpack_require__(588); - /** - * Returns a string containg a query string suitable for use in a URL. - * - * @returns {string} - */ - prototype.toString = function() { - var dict = this[__URLSearchParams__], query = [], i, key, name, value; - for (key in dict) { - name = encode(key); - for (i = 0, value = dict[key]; i < value.length; i++) { - query.push(name + '=' + encode(value[i])); - } - } - return query.join('&'); - }; +/** + * Creates a clone of `typedArray`. + * + * @private + * @param {Object} typedArray The typed array to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned typed array. + */ +function cloneTypedArray(typedArray, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; + return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); +} - // There is a bug in Safari 10.1 and `Proxy`ing it is not enough. - var forSureUsePolyfill = !decodesPlusesCorrectly; - var useProxy = (!forSureUsePolyfill && nativeURLSearchParams && !isSupportObjectConstructor && self.Proxy); - /* - * Apply polifill to global object and append other prototype into it - */ - Object.defineProperty(self, 'URLSearchParams', { - value: (useProxy ? - // Safari 10.0 doesn't support Proxy, so it won't extend URLSearchParams on safari 10.0 - new Proxy(nativeURLSearchParams, { - construct: function(target, args) { - return new target((new URLSearchParamsPolyfill(args[0]).toString())); - } - }) : - URLSearchParamsPolyfill) - }); +module.exports = cloneTypedArray; - var USPProto = self.URLSearchParams.prototype; - USPProto.polyfill = true; +/***/ }), +/* 593 */ +/***/ (function(module, exports, __webpack_require__) { - /** - * - * @param {function} callback - * @param {object} thisArg - */ - USPProto.forEach = USPProto.forEach || function(callback, thisArg) { - var dict = parseToDict(this.toString()); - Object.getOwnPropertyNames(dict).forEach(function(name) { - dict[name].forEach(function(value) { - callback.call(thisArg, value, name, this); - }, this); - }, this); - }; +var baseCreate = __webpack_require__(594), + getPrototype = __webpack_require__(584), + isPrototype = __webpack_require__(457); - /** - * Sort all name-value pairs - */ - USPProto.sort = USPProto.sort || function() { - var dict = parseToDict(this.toString()), keys = [], k, i, j; - for (k in dict) { - keys.push(k); - } - keys.sort(); +/** + * Initializes an object clone. + * + * @private + * @param {Object} object The object to clone. + * @returns {Object} Returns the initialized clone. + */ +function initCloneObject(object) { + return (typeof object.constructor == 'function' && !isPrototype(object)) + ? baseCreate(getPrototype(object)) + : {}; +} - for (i = 0; i < keys.length; i++) { - this['delete'](keys[i]); - } - for (i = 0; i < keys.length; i++) { - var key = keys[i], values = dict[key]; - for (j = 0; j < values.length; j++) { - this.append(key, values[j]); - } - } - }; +module.exports = initCloneObject; - /** - * Returns an iterator allowing to go through all keys of - * the key/value pairs contained in this object. - * - * @returns {function} - */ - USPProto.keys = USPProto.keys || function() { - var items = []; - this.forEach(function(item, name) { - items.push(name); - }); - return makeIterator(items); - }; - /** - * Returns an iterator allowing to go through all values of - * the key/value pairs contained in this object. - * - * @returns {function} - */ - USPProto.values = USPProto.values || function() { - var items = []; - this.forEach(function(item) { - items.push(item); - }); - return makeIterator(items); - }; +/***/ }), +/* 594 */ +/***/ (function(module, exports, __webpack_require__) { - /** - * Returns an iterator allowing to go through all key/value - * pairs contained in this object. - * - * @returns {function} - */ - USPProto.entries = USPProto.entries || function() { - var items = []; - this.forEach(function(item, name) { - items.push([name, item]); - }); - return makeIterator(items); - }; +var isObject = __webpack_require__(72); +/** Built-in value references. */ +var objectCreate = Object.create; - if (iterable) { - USPProto[self.Symbol.iterator] = USPProto[self.Symbol.iterator] || USPProto.entries; +/** + * The base implementation of `_.create` without support for assigning + * properties to the created object. + * + * @private + * @param {Object} proto The object to inherit from. + * @returns {Object} Returns the new object. + */ +var baseCreate = (function() { + function object() {} + return function(proto) { + if (!isObject(proto)) { + return {}; } + if (objectCreate) { + return objectCreate(proto); + } + object.prototype = proto; + var result = new object; + object.prototype = undefined; + return result; + }; +}()); +module.exports = baseCreate; - function encode(str) { - var replace = { - '!': '%21', - "'": '%27', - '(': '%28', - ')': '%29', - '~': '%7E', - '%20': '+', - '%00': '\x00' - }; - return encodeURIComponent(str).replace(/[!'\(\)~]|%20|%00/g, function(match) { - return replace[match]; - }); - } - function decode(str) { - return str - .replace(/[ +]/g, '%20') - .replace(/(%[a-f0-9]{2})+/ig, function(match) { - return decodeURIComponent(match); - }); - } +/***/ }), +/* 595 */ +/***/ (function(module, exports, __webpack_require__) { - function makeIterator(arr) { - var iterator = { - next: function() { - var value = arr.shift(); - return {done: value === undefined, value: value}; - } - }; +var baseIsMap = __webpack_require__(596), + baseUnary = __webpack_require__(454), + nodeUtil = __webpack_require__(455); - if (iterable) { - iterator[self.Symbol.iterator] = function() { - return iterator; - }; - } +/* Node.js helper references. */ +var nodeIsMap = nodeUtil && nodeUtil.isMap; - return iterator; - } +/** + * Checks if `value` is classified as a `Map` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + * @example + * + * _.isMap(new Map); + * // => true + * + * _.isMap(new WeakMap); + * // => false + */ +var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; - function parseToDict(search) { - var dict = {}; +module.exports = isMap; - if (typeof search === "object") { - // if `search` is an array, treat it as a sequence - if (isArray(search)) { - for (var i = 0; i < search.length; i++) { - var item = search[i]; - if (isArray(item) && item.length === 2) { - appendTo(dict, item[0], item[1]); - } else { - throw new TypeError("Failed to construct 'URLSearchParams': Sequence initializer must only contain pair elements"); - } - } - } else { - for (var key in search) { - if (search.hasOwnProperty(key)) { - appendTo(dict, key, search[key]); - } - } - } +/***/ }), +/* 596 */ +/***/ (function(module, exports, __webpack_require__) { - } else { - // remove first '?' - if (search.indexOf("?") === 0) { - search = search.slice(1); - } +var getTag = __webpack_require__(461), + isObjectLike = __webpack_require__(73); - var pairs = search.split("&"); - for (var j = 0; j < pairs.length; j++) { - var value = pairs [j], - index = value.indexOf('='); +/** `Object#toString` result references. */ +var mapTag = '[object Map]'; - if (-1 < index) { - appendTo(dict, decode(value.slice(0, index)), decode(value.slice(index + 1))); +/** + * The base implementation of `_.isMap` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + */ +function baseIsMap(value) { + return isObjectLike(value) && getTag(value) == mapTag; +} - } else { - if (value) { - appendTo(dict, decode(value), ''); - } - } - } - } +module.exports = baseIsMap; - return dict; - } - function appendTo(dict, name, value) { - var val = typeof value === 'string' ? value : ( - value !== null && value !== undefined && typeof value.toString === 'function' ? value.toString() : JSON.stringify(value) - ) +/***/ }), +/* 597 */ +/***/ (function(module, exports, __webpack_require__) { - if (name in dict) { - dict[name].push(val); - } else { - dict[name] = [val]; - } - } +var baseIsSet = __webpack_require__(598), + baseUnary = __webpack_require__(454), + nodeUtil = __webpack_require__(455); - function isArray(val) { - return !!val && '[object Array]' === Object.prototype.toString.call(val); - } +/* Node.js helper references. */ +var nodeIsSet = nodeUtil && nodeUtil.isSet; -})(typeof global !== 'undefined' ? global : (typeof window !== 'undefined' ? window : this)); +/** + * Checks if `value` is classified as a `Set` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + * @example + * + * _.isSet(new Set); + * // => true + * + * _.isSet(new WeakSet); + * // => false + */ +var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet; + +module.exports = isSet; /***/ }), -/* 616 */ +/* 598 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var getTag = __webpack_require__(461), + isObjectLike = __webpack_require__(73); +/** `Object#toString` result references. */ +var setTag = '[object Set]'; -var _interopRequireDefault = __webpack_require__(530); +/** + * The base implementation of `_.isSet` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + */ +function baseIsSet(value) { + return isObjectLike(value) && getTag(value) == setTag; +} -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; +module.exports = baseIsSet; -var _regenerator = _interopRequireDefault(__webpack_require__(545)); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +/***/ }), +/* 599 */ +/***/ (function(module, exports, __webpack_require__) { -var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(543)); +var castPath = __webpack_require__(374), + last = __webpack_require__(600), + parent = __webpack_require__(601), + toKey = __webpack_require__(413); -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); +/** + * The base implementation of `_.unset`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The property path to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + */ +function baseUnset(object, path) { + path = castPath(path, object); + object = parent(object, path); + return object == null || delete object[toKey(last(path))]; +} -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +module.exports = baseUnset; -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } -var TERMS_DOCTYPE = 'io.cozy.terms'; -/* TODO Use collection terms */ +/***/ }), +/* 600 */ +/***/ (function(module, exports) { -function save(_x, _x2) { - return _save.apply(this, arguments); +/** + * Gets the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. + * @example + * + * _.last([1, 2, 3]); + * // => 3 + */ +function last(array) { + var length = array == null ? 0 : array.length; + return length ? array[length - 1] : undefined; } -function _save() { - _save = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(client, terms) { - var id, termsAttributes, _yield$client$query, savedTermsDocs, savedTerms, termsToSave, _termsToSave; +module.exports = last; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - id = terms.id, termsAttributes = (0, _objectWithoutProperties2.default)(terms, ["id"]); - _context.next = 3; - return client.query({ - doctype: TERMS_DOCTYPE, - selector: { - termsId: id, - version: termsAttributes.version - }, - limit: 1 - }); - case 3: - _yield$client$query = _context.sent; - savedTermsDocs = _yield$client$query.data; +/***/ }), +/* 601 */ +/***/ (function(module, exports, __webpack_require__) { - if (!(savedTermsDocs && savedTermsDocs.length)) { - _context.next = 13; - break; - } +var baseGet = __webpack_require__(373), + baseSlice = __webpack_require__(602); - // we just update the url if this is the same id and same version - // but the url changed - savedTerms = savedTermsDocs[0]; +/** + * Gets the parent value at `path` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} path The path to get the parent value of. + * @returns {*} Returns the parent value. + */ +function parent(object, path) { + return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); +} - if (!(savedTerms.termsId == id && savedTerms.version == termsAttributes.version && savedTerms.url != termsAttributes.url)) { - _context.next = 11; - break; - } +module.exports = parent; - termsToSave = _objectSpread(_objectSpread({ - _type: TERMS_DOCTYPE - }, savedTerms), {}, { - url: termsAttributes.url - }); - _context.next = 11; - return client.save(termsToSave); - case 11: - _context.next = 16; - break; +/***/ }), +/* 602 */ +/***/ (function(module, exports) { - case 13: - _termsToSave = _objectSpread(_objectSpread({ - _type: TERMS_DOCTYPE - }, termsAttributes), {}, { - termsId: id, - accepted: true, - acceptedAt: new Date() - }); - _context.next = 16; - return client.save(_termsToSave); +/** + * The base implementation of `_.slice` without an iteratee call guard. + * + * @private + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ +function baseSlice(array, start, end) { + var index = -1, + length = array.length; - case 16: - case "end": - return _context.stop(); - } - } - }, _callee); - })); - return _save.apply(this, arguments); + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = end > length ? length : end; + if (end < 0) { + end += length; + } + length = start > end ? 0 : ((end - start) >>> 0); + start >>>= 0; + + var result = Array(length); + while (++index < length) { + result[index] = array[index + start]; + } + return result; } -var _default = { - save: save -}; -exports.default = _default; +module.exports = baseSlice; + /***/ }), -/* 617 */ +/* 603 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var isPlainObject = __webpack_require__(604); +/** + * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain + * objects. + * + * @private + * @param {*} value The value to inspect. + * @param {string} key The key of the property to inspect. + * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. + */ +function customOmitClone(value) { + return isPlainObject(value) ? undefined : value; +} + +module.exports = customOmitClone; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.APP_TYPE = void 0; -var APP_TYPE = { - KONNECTOR: 'konnector', - WEBAPP: 'webapp' -}; -exports.APP_TYPE = APP_TYPE; /***/ }), -/* 618 */ +/* 604 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - - -var _interopRequireDefault = __webpack_require__(530); +var baseGetTag = __webpack_require__(66), + getPrototype = __webpack_require__(584), + isObjectLike = __webpack_require__(73); -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.Collection = exports.isDocumentUpdateConflict = exports.isNoUsableIndexError = exports.isIndexConflictError = exports.isIndexNotFoundError = exports.dontThrowNotFoundError = void 0; +/** `Object#toString` result references. */ +var objectTag = '[object Object]'; -var _regenerator = _interopRequireDefault(__webpack_require__(545)); +/** Used for built-in method references. */ +var funcProto = Function.prototype, + objectProto = Object.prototype; -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); +/** Used to resolve the decompiled source of functions. */ +var funcToString = funcProto.toString; -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +/** Used to infer the `Object` constructor. */ +var objectCtorString = funcToString.call(Object); /** - * Handler for error response which return a empty value for "not found" error + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. * - * @param {Error} error - An error - * @param {Array|object} data Data to return in case of "not found" error - * @returns {object} JsonAPI response with empty data in case of "not - * found" error. + * @static + * @memberOf _ + * @since 0.8.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * _.isPlainObject(new Foo); + * // => false + * + * _.isPlainObject([1, 2, 3]); + * // => false + * + * _.isPlainObject({ 'x': 0, 'y': 0 }); + * // => true + * + * _.isPlainObject(Object.create(null)); + * // => true */ -var dontThrowNotFoundError = function dontThrowNotFoundError(error) { - var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : []; - - if (error.message.match(/not_found/)) { - var expectsCollection = Array.isArray(data); // Return expected JsonAPI attributes : collections are expecting - // meta, skip and next attribute - - return expectsCollection ? { - data: data, - meta: { - count: 0 - }, - skip: 0, - next: false - } : { - data: data - }; +function isPlainObject(value) { + if (!isObjectLike(value) || baseGetTag(value) != objectTag) { + return false; + } + var proto = getPrototype(value); + if (proto === null) { + return true; } + var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; + return typeof Ctor == 'function' && Ctor instanceof Ctor && + funcToString.call(Ctor) == objectCtorString; +} - throw error; -}; -/** - * Helper to identify an index not found error - * - * @param {Error} error - An error - * @returns {boolean} - Whether or not the error is an index not found error - */ +module.exports = isPlainObject; -exports.dontThrowNotFoundError = dontThrowNotFoundError; +/***/ }), +/* 605 */ +/***/ (function(module, exports, __webpack_require__) { + +var flatten = __webpack_require__(606), + overRest = __webpack_require__(609), + setToString = __webpack_require__(611); -var isIndexNotFoundError = function isIndexNotFoundError(error) { - return error.message.match(/no_index/); -}; /** - * Helper to identify an index conflict + * A specialized version of `baseRest` which flattens the rest array. * - * @param {Error} error - An error - * @returns {boolean} - Whether or not the error is an index conflict error + * @private + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. */ +function flatRest(func) { + return setToString(overRest(func, undefined, flatten), func + ''); +} +module.exports = flatRest; -exports.isIndexNotFoundError = isIndexNotFoundError; - -var isIndexConflictError = function isIndexConflictError(error) { - return error.message.match(/error_saving_ddoc/); -}; -/** - * Helper to identify a no usable index error - * - * @param {Error} error - An error - * @returns {boolean} - Whether or not the error is a no usable index error - */ +/***/ }), +/* 606 */ +/***/ (function(module, exports, __webpack_require__) { -exports.isIndexConflictError = isIndexConflictError; +var baseFlatten = __webpack_require__(607); -var isNoUsableIndexError = function isNoUsableIndexError(error) { - return error.message.match(/no_usable_index/); -}; /** - * Helper to identify a document conflict + * Flattens `array` a single level deep. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. + * @example * - * @param {Error} error - An error - * @returns {boolean} - Whether or not the error is a document conflict error + * _.flatten([1, [2, [3, [4]], 5]]); + * // => [1, 2, [3, [4]], 5] */ +function flatten(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, 1) : []; +} +module.exports = flatten; -exports.isNoUsableIndexError = isNoUsableIndexError; -var isDocumentUpdateConflict = function isDocumentUpdateConflict(error) { - return error.message.match(/Document update conflict/); -}; +/***/ }), +/* 607 */ +/***/ (function(module, exports, __webpack_require__) { + +var arrayPush = __webpack_require__(439), + isFlattenable = __webpack_require__(608); + /** - * Utility class to abstract an regroup identical methods and logics for - * specific collections. + * The base implementation of `_.flatten` with support for restricting flattening. + * + * @private + * @param {Array} array The array to flatten. + * @param {number} depth The maximum recursion depth. + * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. + * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. + * @param {Array} [result=[]] The initial result value. + * @returns {Array} Returns the new flattened array. */ +function baseFlatten(array, depth, predicate, isStrict, result) { + var index = -1, + length = array.length; + predicate || (predicate = isFlattenable); + result || (result = []); -exports.isDocumentUpdateConflict = isDocumentUpdateConflict; - -var Collection = /*#__PURE__*/function () { - function Collection() { - (0, _classCallCheck2.default)(this, Collection); + while (++index < length) { + var value = array[index]; + if (depth > 0 && predicate(value)) { + if (depth > 1) { + // Recursively flatten arrays (susceptible to call stack limits). + baseFlatten(value, depth - 1, predicate, isStrict, result); + } else { + arrayPush(result, value); + } + } else if (!isStrict) { + result[result.length] = value; + } } + return result; +} - (0, _createClass2.default)(Collection, null, [{ - key: "get", - - /** - * Utility method aimed to return only one document. - * - * @param {CozyStackClient} stackClient - CozyStackClient - * @param {string} endpoint - Stack endpoint - * @param {object} options - Options of the collection - * @param {Function} options.normalize Callback to normalize response data - * (default `data => data`) - * @param {string} options.method HTTP method (default `GET`) - * @returns {object} JsonAPI response containing normalized - * document as data attribute - */ - value: function () { - var _get = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(stackClient, endpoint, _ref) { - var _ref$normalize, normalize, _ref$method, method, resp; +module.exports = baseFlatten; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - _ref$normalize = _ref.normalize, normalize = _ref$normalize === void 0 ? function (data, response) { - return data; - } : _ref$normalize, _ref$method = _ref.method, method = _ref$method === void 0 ? 'GET' : _ref$method; - _context.prev = 1; - _context.next = 4; - return stackClient.fetchJSON(method, endpoint); - case 4: - resp = _context.sent; - return _context.abrupt("return", { - data: normalize(resp.data, resp) - }); +/***/ }), +/* 608 */ +/***/ (function(module, exports, __webpack_require__) { - case 8: - _context.prev = 8; - _context.t0 = _context["catch"](1); - return _context.abrupt("return", dontThrowNotFoundError(_context.t0, null)); +var Symbol = __webpack_require__(67), + isArguments = __webpack_require__(446), + isArray = __webpack_require__(75); - case 11: - case "end": - return _context.stop(); - } - } - }, _callee, null, [[1, 8]]); - })); +/** Built-in value references. */ +var spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined; - function get(_x, _x2, _x3) { - return _get.apply(this, arguments); - } +/** + * Checks if `value` is a flattenable `arguments` object or array. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. + */ +function isFlattenable(value) { + return isArray(value) || isArguments(value) || + !!(spreadableSymbol && value && value[spreadableSymbol]); +} - return get; - }() - }]); - return Collection; -}(); +module.exports = isFlattenable; -exports.Collection = Collection; -var _default = Collection; -exports.default = _default; /***/ }), -/* 619 */ +/* 609 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - - -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.normalizeDoc = normalizeDoc; -exports.normalizeDoctype = exports.default = void 0; +var apply = __webpack_require__(610); -var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(540)); +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; -var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(543)); +/** + * A specialized version of `baseRest` which transforms the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @param {Function} transform The rest array transform. + * @returns {Function} Returns the new function. + */ +function overRest(func, start, transform) { + start = nativeMax(start === undefined ? (func.length - 1) : start, 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + array = Array(length); -var _regenerator = _interopRequireDefault(__webpack_require__(545)); + while (++index < length) { + array[index] = args[start + index]; + } + index = -1; + var otherArgs = Array(start + 1); + while (++index < start) { + otherArgs[index] = args[index]; + } + otherArgs[start] = transform(array); + return apply(func, this, otherArgs); + }; +} -var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(620)); +module.exports = overRest; -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +/***/ }), +/* 610 */ +/***/ (function(module, exports) { -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +/** + * A faster alternative to `Function#apply`, this function invokes `func` + * with the `this` binding of `thisArg` and the arguments of `args`. + * + * @private + * @param {Function} func The function to invoke. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} args The arguments to invoke `func` with. + * @returns {*} Returns the result of `func`. + */ +function apply(func, thisArg, args) { + switch (args.length) { + case 0: return func.call(thisArg); + case 1: return func.call(thisArg, args[0]); + case 2: return func.call(thisArg, args[0], args[1]); + case 3: return func.call(thisArg, args[0], args[1], args[2]); + } + return func.apply(thisArg, args); +} -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +module.exports = apply; -var _cozyFlags = _interopRequireDefault(__webpack_require__(621)); -var _utils = __webpack_require__(629); +/***/ }), +/* 611 */ +/***/ (function(module, exports, __webpack_require__) { -var _uniq = _interopRequireDefault(__webpack_require__(630)); +var baseSetToString = __webpack_require__(612), + shortOut = __webpack_require__(614); -var _omit = _interopRequireDefault(__webpack_require__(631)); +/** + * Sets the `toString` method of `func` to return `string`. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ +var setToString = shortOut(baseSetToString); -var _head = _interopRequireDefault(__webpack_require__(639)); +module.exports = setToString; -var _startsWith = _interopRequireDefault(__webpack_require__(640)); -var _qs = _interopRequireDefault(__webpack_require__(647)); +/***/ }), +/* 612 */ +/***/ (function(module, exports, __webpack_require__) { -var _Collection = _interopRequireWildcard(__webpack_require__(618)); +var constant = __webpack_require__(613), + defineProperty = __webpack_require__(572), + identity = __webpack_require__(473); -var _mangoIndex = __webpack_require__(652); +/** + * The base implementation of `setToString` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ +var baseSetToString = !defineProperty ? identity : function(func, string) { + return defineProperty(func, 'toString', { + 'configurable': true, + 'enumerable': false, + 'value': constant(string), + 'writable': true + }); +}; -var querystring = _interopRequireWildcard(__webpack_require__(654)); +module.exports = baseSetToString; -var _errors = __webpack_require__(658); -function _templateObject10() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/_design/", "/copy?rev=", ""]); +/***/ }), +/* 613 */ +/***/ (function(module, exports) { - _templateObject10 = function _templateObject10() { - return data; +/** + * Creates a function that returns `value`. + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Util + * @param {*} value The value to return from the new function. + * @returns {Function} Returns the new constant function. + * @example + * + * var objects = _.times(2, _.constant({ 'a': 1 })); + * + * console.log(objects); + * // => [{ 'a': 1 }, { 'a': 1 }] + * + * console.log(objects[0] === objects[1]); + * // => true + */ +function constant(value) { + return function() { + return value; }; - - return data; } -function _templateObject9() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/_design/", "?rev=", ""]); +module.exports = constant; - _templateObject9 = function _templateObject9() { - return data; - }; - return data; -} +/***/ }), +/* 614 */ +/***/ (function(module, exports) { -function _templateObject8() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/_design_docs?include_docs=true"]); +/** Used to detect hot functions by number of calls within a span of milliseconds. */ +var HOT_COUNT = 800, + HOT_SPAN = 16; - _templateObject8 = function _templateObject8() { - return data; - }; +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeNow = Date.now; - return data; -} +/** + * Creates a function that'll short out and invoke `identity` instead + * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` + * milliseconds. + * + * @private + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new shortable function. + */ +function shortOut(func) { + var count = 0, + lastCalled = 0; -function _templateObject7() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/_index"]); + return function() { + var stamp = nativeNow(), + remaining = HOT_SPAN - (stamp - lastCalled); - _templateObject7 = function _templateObject7() { - return data; + lastCalled = stamp; + if (remaining > 0) { + if (++count >= HOT_COUNT) { + return arguments[0]; + } + } else { + count = 0; + } + return func.apply(undefined, arguments); }; - - return data; } -function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } - -function _templateObject6() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "?rev=", ""]); +module.exports = shortOut; - _templateObject6 = function _templateObject6() { - return data; - }; - return data; -} +/***/ }), +/* 615 */ +/***/ (function(module, exports, __webpack_require__) { -function _templateObject5() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", ""]); +"use strict"; - _templateObject5 = function _templateObject5() { - return data; - }; - return data; -} +var _interopRequireDefault = __webpack_require__(532); -function _templateObject4() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", ""]); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; - _templateObject4 = function _templateObject4() { - return data; - }; +var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(542)); - return data; -} +var _objectSpread5 = _interopRequireDefault(__webpack_require__(545)); -function _templateObject3() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/_all_docs?include_docs=true"]); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - _templateObject3 = function _templateObject3() { - return data; - }; +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); - return data; -} +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -function _templateObject2() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/_find"]); +var _getPrototypeOf3 = _interopRequireDefault(__webpack_require__(558)); - _templateObject2 = function _templateObject2() { - return data; - }; +var _assertThisInitialized2 = _interopRequireDefault(__webpack_require__(557)); - return data; -} +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -function _templateObject() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", ""]); +var _defineProperty2 = _interopRequireDefault(__webpack_require__(546)); - _templateObject = function _templateObject() { - return data; - }; +var _get = _interopRequireDefault(__webpack_require__(372)); - return data; -} +var _Association2 = _interopRequireDefault(__webpack_require__(616)); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +var _dsl = __webpack_require__(561); -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +var _store = __webpack_require__(617); -var DATABASE_DOES_NOT_EXIST = 'Database does not exist.'; +var empty = function empty() { + return { + data: [], + next: true, + meta: { + count: 0 + } + }; +}; /** - * Normalize a document, adding its doctype if needed + * Related documents are stored in the relationships attribute of the object, + * following the JSON API spec. * - * @param {object} doc - Document to normalize - * @param {string} doctype - Document doctype - * @returns {object} normalized document - * @private + * Responsible for + * + * - Creating relationships + * - Removing relationships + * + * @description + * + * ``` + * const schema = { + * todos: { + * doctype: 'io.cozy.todos', + * relationships: { + * tasks: { + * doctype: 'io.cozy.tasks', + * type: 'has-many' + * } + * } + * } + * } + * + * const todo = { + * label: "Protect people's privacy", + * relationships: { + * tasks: { + * data: [ + * {_id: 1, _type: 'io.cozy.tasks'}, + * {_id: 2, _type: 'io.cozy.tasks'} + * ] + * } + * } + * } + * ``` */ -function normalizeDoc() { - var doc = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var doctype = arguments.length > 1 ? arguments[1] : undefined; - var id = doc._id || doc.id; - return _objectSpread({ - id: id, - _id: id, - _type: doctype - }, doc); -} -var prepareForDeletion = function prepareForDeletion(x) { - return Object.assign({}, (0, _omit.default)(x, '_type'), { - _deleted: true - }); -}; -/** - * Abstracts a collection of documents of the same doctype, providing CRUD methods and other helpers. - */ +var HasMany = +/*#__PURE__*/ +function (_Association) { + (0, _inherits2.default)(HasMany, _Association); + function HasMany() { + var _getPrototypeOf2; -var DocumentCollection = /*#__PURE__*/function () { - function DocumentCollection(doctype, stackClient) { - (0, _classCallCheck2.default)(this, DocumentCollection); - this.doctype = doctype; - this.stackClient = stackClient; - this.indexes = {}; - this.endpoint = "/data/".concat(this.doctype, "/"); - } - /** - * Provides a callback for `Collection.get` - * - * @private - * @param {string} doctype - Document doctype - * @returns {Function} (data, response) => normalizedDocument - * using `normalizeDoc` - */ + var _this; + + (0, _classCallCheck2.default)(this, HasMany); + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } - (0, _createClass2.default)(DocumentCollection, [{ - key: "all", + _this = (0, _possibleConstructorReturn2.default)(this, (_getPrototypeOf2 = (0, _getPrototypeOf3.default)(HasMany)).call.apply(_getPrototypeOf2, [this].concat(args))); + (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "updateRelationshipData", function (getUpdatedRelationshipData) { + return function (dispatch, getState) { + var previousRelationship = (0, _store.getDocumentFromState)(getState(), _this.target._type, _this.target._id); + dispatch((0, _store.receiveQueryResult)(null, { + data: (0, _objectSpread5.default)({}, previousRelationship, { + relationships: (0, _objectSpread5.default)({}, previousRelationship.relationships, (0, _defineProperty2.default)({}, _this.name, getUpdatedRelationshipData(previousRelationship.relationships[_this.name]))) + }) + })); + }; + }); + return _this; + } + (0, _createClass2.default)(HasMany, [{ + key: "fetchMore", + value: function fetchMore() { + throw 'Not implemented'; + } + }, { + key: "exists", + value: function exists(document) { + return this.existsById(document._id); + } + }, { + key: "containsById", + value: function containsById(id) { + return this.getRelationship().data.find(function (_ref) { + var _id = _ref._id; + return id === _id; + }) !== undefined; + } + }, { + key: "existsById", + value: function existsById(id) { + return this.containsById(id) && Boolean(this.get(this.doctype, id)); + } /** - * Lists all documents of the collection, without filters. + * Add a referenced document by id. You need to call save() + * in order to synchronize your document with the store. * - * The returned documents are paginated by the stack. + * @todo We shouldn't create the array of relationship manually since + * it'll not be present in the store as well. + * We certainly should use something like `updateRelationship` * - * @param {{limit, skip, bookmark, keys}} options The fetch options: pagination & fetch of specific docs. - * @returns {{data, meta, skip, bookmark, next}} The JSON API conformant response. - * @throws {FetchError} */ - value: function () { - var _all = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() { - var _this = this; - - var options, - _options$limit, - limit, - _options$skip, - skip, - bookmark, - keys, - isUsingAllDocsRoute, - route, - url, - params, - path, - resp, - data, - next, - _args = arguments; - - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - options = _args.length > 0 && _args[0] !== undefined ? _args[0] : {}; - _options$limit = options.limit, limit = _options$limit === void 0 ? 100 : _options$limit, _options$skip = options.skip, skip = _options$skip === void 0 ? 0 : _options$skip, bookmark = options.bookmark, keys = options.keys; // If the limit is intentionnally null, we need to use _all_docs, since _normal_docs uses _find and have a hard limit of 100 - - isUsingAllDocsRoute = !!keys || limit === null; - route = isUsingAllDocsRoute ? '_all_docs' : '_normal_docs'; - url = (0, _utils.uri)(_templateObject(), this.doctype, route); - params = { - include_docs: true, - limit: limit, - skip: skip, - keys: keys, - bookmark: bookmark - }; - path = querystring.buildURL(url, params); // If no document of this doctype exist, this route will return a 404, - // so we need to try/catch and return an empty response object in case of a 404 - - _context.prev = 7; - _context.next = 10; - return this.stackClient.fetchJSON('GET', path); - - case 10: - resp = _context.sent; - _context.next = 16; - break; - case 13: - _context.prev = 13; - _context.t0 = _context["catch"](7); - return _context.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context.t0)); + }, { + key: "addById", + value: function addById(ids) { + var _this2 = this, + _this$target$relation; - case 16: - /* If using `all_docs` we need to filter our design documents and check if - the document is not null. If we use `normal_doc` we can't have any design doc - */ - if (isUsingAllDocsRoute) { - data = resp.rows.filter(function (doc) { - return doc && doc.doc !== null && !doc.error && !(0, _startsWith.default)(doc.id, '_design'); - }).map(function (row) { - return normalizeDoc(row.doc, _this.doctype); - }); - } else { - data = resp.rows.map(function (row) { - return normalizeDoc(row, _this.doctype); - }); - } // The presence of a bookmark doesn’t guarantee that there are more results. - // See https://docs.couchdb.org/en/2.2.0/api/database/find.html#pagination + if (!this.target.relationships) this.target.relationships = {}; + if (!this.target.relationships[this.name]) { + this.target.relationships[this.name] = { + data: [] + }; + } - next = bookmark ? resp.rows.length >= limit : skip + resp.rows.length < resp.total_rows; - return _context.abrupt("return", { - data: data, - meta: { - count: isUsingAllDocsRoute ? data.length : resp.total_rows - }, - skip: skip, - bookmark: resp.bookmark, - next: next - }); + ids = Array.isArray(ids) ? ids : [ids]; + var newRelations = ids.filter(function (id) { + return !_this2.existsById(id); + }).map(function (id) { + return { + _id: id, + _type: _this2.doctype + }; + }); - case 19: - case "end": - return _context.stop(); - } - } - }, _callee, this, [[7, 13]]); - })); + (_this$target$relation = this.target.relationships[this.name].data).push.apply(_this$target$relation, (0, _toConsumableArray2.default)(newRelations)); - function all() { - return _all.apply(this, arguments); + this.updateMetaCount(); + return this.save(this.target); + } + }, { + key: "removeById", + value: function removeById(ids) { + ids = Array.isArray(ids) ? ids : [ids]; + this.target.relationships[this.name].data = this.target.relationships[this.name].data.filter(function (_ref2) { + var _id = _ref2._id; + return !ids.includes(_id); + }); + this.updateMetaCount(); + return this.save(this.target); + } + }, { + key: "updateMetaCount", + value: function updateMetaCount() { + if ((0, _get.default)(this.target.relationships[this.name], 'meta.count') !== undefined) { + this.target.relationships[this.name].meta = (0, _objectSpread5.default)({}, this.target.relationships[this.name].meta, { + count: this.target.relationships[this.name].data.length + }); } - - return all; - }() + } }, { - key: "fetchDocumentsWithMango", - value: function () { - var _fetchDocumentsWithMango = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(path, selector) { - var options, - _args2 = arguments; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - options = _args2.length > 2 && _args2[2] !== undefined ? _args2[2] : {}; - return _context2.abrupt("return", this.stackClient.fetchJSON('POST', path, this.toMangoOptions(selector, options))); + key: "getRelationship", + value: function getRelationship() { + var rawData = this.target[this.name]; + var relationship = (0, _get.default)(this.target, "relationships.".concat(this.name)); - case 2: - case "end": - return _context2.stop(); - } - } - }, _callee2, this); - })); + if (!relationship) { + if (rawData && rawData.length) { + console.warn("You're trying to access data on a relationship that appear to not be loaded yet. You may want to use 'include()' on your query"); + } - function fetchDocumentsWithMango(_x, _x2) { - return _fetchDocumentsWithMango.apply(this, arguments); + return empty(); } - return fetchDocumentsWithMango; - }() + return relationship; + } + }, { + key: "updateTargetRelationship", + value: function updateTargetRelationship(store, updateFn) { + // TODO See if updateTargetRelationship is still used, removing it would enable us + // to remove store.readDocument and store.writeDocument and the StoreProxy + var prevTarget = store.readDocument(this.target._type, this.target._id); + store.writeDocument(this.updateRelationship(prevTarget, updateFn)); + } + }, { + key: "updateRelationship", + value: function updateRelationship(target, updateFn) { + return (0, _objectSpread5.default)({}, target, { + relationships: (0, _objectSpread5.default)({}, target.relationships, (0, _defineProperty2.default)({}, this.name, (0, _objectSpread5.default)({}, target.relationships[this.name], updateFn(target.relationships[this.name])))) + }); + } + }, { + key: "dehydrate", + value: function dehydrate(doc) { + return (0, _objectSpread5.default)({}, doc, { + relationships: (0, _objectSpread5.default)({}, doc.relationships, (0, _defineProperty2.default)({}, this.name, { + data: this.raw + })) + }); + } + }, { + key: "raw", + get: function get() { + return this.getRelationship().data; + } + }, { + key: "data", + get: function get() { + var _this3 = this; + + return this.getRelationship().data.map(function (_ref3) { + var _id = _ref3._id, + _type = _ref3._type; + return _this3.get(_type, _id); + }).filter(Boolean); + } + }, { + key: "hasMore", + get: function get() { + return this.getRelationship().next; + } /** - * Migrate an existing unamed index to a named one. - * - * Index migration became necessary for optimistic index, because - * we started to use named index while we used to have unamed index, - * i.e. indexes with CouchDB-generated ID. + * Returns the total number of documents in the relationship. + * Does not handle documents absent from the store. If you want + * to do that, you can use .data.length. * - * @param {object} sourceIndex - The index to migrate - * @param {string} targetIndexName - The new index name - * @private + * @returns {number} - Total number of documents in the relationships */ }, { - key: "migrateUnamedIndex", - value: function () { - var _migrateUnamedIndex = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(sourceIndex, targetIndexName) { - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - _context3.prev = 0; - _context3.next = 3; - return this.copyIndex(sourceIndex, targetIndexName); - - case 3: - _context3.next = 5; - return this.destroyIndex(sourceIndex); + key: "count", + get: function get() { + var relationship = this.getRelationship(); + return relationship.meta ? relationship.meta.count : relationship.data.length; + } + }], [{ + key: "query", + value: function query(document, client, assoc) { + var relationships = (0, _get.default)(document, "relationships.".concat(assoc.name, ".data"), []); + var ids = relationships.map(function (assoc) { + return assoc._id; + }); + return new _dsl.QueryDefinition({ + doctype: assoc.doctype, + ids: ids + }); + } + }]); + return HasMany; +}(_Association2.default); - case 5: - _context3.next = 16; - break; +var _default = HasMany; +exports.default = _default; - case 7: - _context3.prev = 7; - _context3.t0 = _context3["catch"](0); +/***/ }), +/* 616 */ +/***/ (function(module, exports, __webpack_require__) { - if ((0, _Collection.isDocumentUpdateConflict)(_context3.t0)) { - _context3.next = 11; - break; - } +"use strict"; - throw _context3.t0; - case 11: - (0, _utils.sleep)(1000); - _context3.next = 14; - return this.copyIndex(sourceIndex, targetIndexName); +var _interopRequireDefault = __webpack_require__(532); - case 14: - _context3.next = 16; - return this.destroyIndex(sourceIndex); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; - case 16: - case "end": - return _context3.stop(); - } - } - }, _callee3, this, [[0, 7]]); - })); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - function migrateUnamedIndex(_x3, _x4) { - return _migrateUnamedIndex.apply(this, arguments); - } +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); - return migrateUnamedIndex; - }() +/** + * Associations are used by components to access related store documents that are + * linked in a document. They are also responsible for building the `QueryDefinition` that is + * used by the client to automatically fetch relationship data. + * + * Hydrated documents used by components come with Association instances. + * + * @description + * Example: The schema defines an `author` relationship : + * + * ```js + * const BOOK_SCHEMA = { + * relationships: { + * author: 'has-one' + * } + * } + * ``` + * + * Hydrated `books` will have the `author` association instance under the `author` key. + * Accessing `hydratedBook.author.data` gives you the author from the store, for example : + * + * ```json + * { + * "name": "St-Exupery", + * "firstName": "Antoine", + * "_id": "antoine" + * } + * ``` + * + * It is the responsibility of the relationship to decide how the relationship data is stored. + * For example, here since we use the default `has-one` relationship, the relationship data + * is stored in the `relationships` attribute of the original document (in our case here, our book + * would be + * + * ```json + * { + * "title": "Le petit prince", + * "relationships": { + * "author": { + * "data": { + * "doctype": "io.cozy.authors", + * "_id": "antoine" + * } + * } + * } + * } + * ``` + * + * In the case of an "in-place" relationship, the relationship data is stored directly under the attribute named + * by the relationship (in our case `author`). Our book would be + * + * ```json + * { + * "title": "Le petit prince", + * "author": "antoine" + * } + * ``` + * + * --- + * + * Each different type of Association may change: + * + * - `get raw`: how the relationship data is stored (either as per the JSON API spec or + * in a custom way) + * - `get data`: how the store documents are then fetched from the store to be added to + * the hydrated document (.data method). View components will access + * `hydratedDoc[relationshipName].data`. + * - `get query`: how to build the query to fetch related documents + * + */ +var Association = +/*#__PURE__*/ +function () { + /** + * @param {object} target - Original object containing raw data + * @param {string} name - Attribute under which the association is stored + * @param {string} doctype - Doctype of the documents managed by the association + * @param {string} options + * @param {Function} options.dispatch - Store's dispatch, comes from the client + */ + function Association(target, name, doctype, options) { + (0, _classCallCheck2.default)(this, Association); + var dispatch = options.dispatch, + get = options.get, + query = options.query, + mutate = options.mutate, + save = options.save; /** - * Handle index creation if it is missing. - * - * When an index is missing, we first check if there is one with a different - * name but the same definition. If yes, it means we found an old unamed - * index, so we migrate it. If there is none, we create the new index. + * The original document declaring the relationship * - * @param {object} selector - The mango selector - * @param {object} options - The find options - * @private + * @type {object} */ - }, { - key: "handleMissingIndex", - value: function () { - var _handleMissingIndex = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(selector, options) { - var indexedFields, partialFilter, existingIndex, indexName; - return _regenerator.default.wrap(function _callee4$(_context4) { - while (1) { - switch (_context4.prev = _context4.next) { - case 0: - indexedFields = options.indexedFields, partialFilter = options.partialFilter; - - if (!indexedFields) { - indexedFields = (0, _mangoIndex.getIndexFields)({ - sort: options.sort, - selector: selector - }); - } - - _context4.next = 4; - return this.findExistingIndex(selector, options); - - case 4: - existingIndex = _context4.sent; - indexName = (0, _mangoIndex.getIndexNameFromFields)(indexedFields); - - if (existingIndex) { - _context4.next = 11; - break; - } - - _context4.next = 9; - return this.createIndex(indexedFields, { - partialFilter: partialFilter, - indexName: indexName - }); - - case 9: - _context4.next = 17; - break; - - case 11: - if (!(existingIndex._id !== "_design/".concat(indexName))) { - _context4.next = 16; - break; - } - - _context4.next = 14; - return this.migrateUnamedIndex(existingIndex, indexName); - - case 14: - _context4.next = 17; - break; - - case 16: - throw new Error("Index unusable for query, index used: ".concat(indexName)); - - case 17: - case "end": - return _context4.stop(); - } - } - }, _callee4, this); - })); - - function handleMissingIndex(_x5, _x6) { - return _handleMissingIndex.apply(this, arguments); - } - - return handleMissingIndex; - }() + this.target = target; /** - * Find documents with the mango selector and create index - * if missing. - * - * We adopt an optimistic approach for index creation: - * we run the query first, and only if an index missing - * error is returned, the index is created and - * the query run again. + * The name of the relationship. * - * @param {string} path - The route path - * @param {object} selector - The mango selector - * @param {object} options - The find options - * @returns {object} - The find response - * @private + * @type {string} + * @example 'author' */ - }, { - key: "findWithMango", - value: function () { - var _findWithMango = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(path, selector) { - var options, - resp, - _args5 = arguments; - return _regenerator.default.wrap(function _callee5$(_context5) { - while (1) { - switch (_context5.prev = _context5.next) { - case 0: - options = _args5.length > 2 && _args5[2] !== undefined ? _args5[2] : {}; - _context5.prev = 1; - _context5.next = 4; - return this.fetchDocumentsWithMango(path, selector, options); - - case 4: - resp = _context5.sent; - _context5.next = 18; - break; - - case 7: - _context5.prev = 7; - _context5.t0 = _context5["catch"](1); - - if (!(!(0, _Collection.isIndexNotFoundError)(_context5.t0) && !(0, _Collection.isNoUsableIndexError)(_context5.t0))) { - _context5.next = 13; - break; - } + this.name = name; + /** + * Doctype of the relationship + * + * @type {string} + * @example 'io.cozy.authors' + */ - throw _context5.t0; + this.doctype = doctype; + /** + * Returns the document from the store + * + * @type {Function} + */ - case 13: - _context5.next = 15; - return this.handleMissingIndex(selector, options); + this.get = get; + /** + * Performs a query to retrieve relationship documents. + * + * @param {QueryDefinition} queryDefinition + * @function + */ - case 15: - _context5.next = 17; - return this.fetchDocumentsWithMango(path, selector, options); + this.query = query; + /** + * Performs a mutation on the relationship. + * + * @function + */ - case 17: - resp = _context5.sent; + this.mutate = mutate; + /** + * Saves the relationship in store. + * + * @type {Function} + */ - case 18: - return _context5.abrupt("return", resp); + this.save = save; + /** + * Dispatch an action on the store. + * + * @type {Function} + */ - case 19: - case "end": - return _context5.stop(); - } - } - }, _callee5, this, [[1, 7]]); - })); + this.dispatch = dispatch; + } + /** + * + * Returns the raw relationship data as stored in the original document + * + * For a document with relationships stored as JSON API spec: + * + * ```js + * const book = { + * title: 'Moby Dick', + * relationships: { + * author: { + * data: { + * doctype: 'io.cozy.authors', + * id: 'herman' + * } + * } + * } + * } + * ``` + * + * Raw value will be + * + * ```json + * { + * "doctype": "io.cozy.authors", + * "id": "herman" + * } + * ``` + * + * Derived `Association`s need to implement this method. + */ - function findWithMango(_x7, _x8) { - return _findWithMango.apply(this, arguments); - } - return findWithMango; - }() + (0, _createClass2.default)(Association, [{ + key: "raw", + get: function get() { + throw new Error('A relationship must define its raw getter'); + } /** - * Returns a filtered list of documents using a Mango selector. + * Returns the document(s) from the store * - * The returned documents are paginated by the stack. + * For document with relationships stored as JSON API spec : * - * @param {object} selector The Mango selector. - * @param {{sort, fields, limit, skip, bookmark, indexId}} options The query options. - * @returns {{data, skip, bookmark, next}} The JSON API conformant response. - * @throws {FetchError} + * ```js + * const book = { + * title: 'Moby Dick', + * relationships: { + * author: { + * data: { + * doctype: 'io.cozy.authors', + * id: 'herman' + * } + * } + * } + * } + * ``` + * + * `data` will be + * + * ```json + * { + * "_id": "herman" + * "_type": "io.cozy.authors", + * "firstName": "herman", + * "name": "Melville" + * } + * ``` + * + * Derived `Association`s need to implement this method. */ }, { - key: "find", - value: function () { - var _find = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee6(selector) { - var _this2 = this; - - var options, - _options$skip2, - skip, - resp, - path, - _args6 = arguments; - - return _regenerator.default.wrap(function _callee6$(_context6) { - while (1) { - switch (_context6.prev = _context6.next) { - case 0: - options = _args6.length > 1 && _args6[1] !== undefined ? _args6[1] : {}; - _options$skip2 = options.skip, skip = _options$skip2 === void 0 ? 0 : _options$skip2; - _context6.prev = 2; - path = (0, _utils.uri)(_templateObject2(), this.doctype); - _context6.next = 6; - return this.findWithMango(path, selector, options); - - case 6: - resp = _context6.sent; - _context6.next = 12; - break; - - case 9: - _context6.prev = 9; - _context6.t0 = _context6["catch"](2); - return _context6.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context6.t0)); - - case 12: - return _context6.abrupt("return", { - data: resp.docs.map(function (doc) { - return normalizeDoc(doc, _this2.doctype); - }), - next: resp.next, - skip: skip, - bookmark: resp.bookmark, - execution_stats: resp.execution_stats - }); - - case 13: - case "end": - return _context6.stop(); - } - } - }, _callee6, this, [[2, 9]]); - })); - - function find(_x9) { - return _find.apply(this, arguments); - } - - return find; - }() + key: "data", + get: function get() { + throw new Error('A relationship must define its data getter'); + } /** - * Get a document by id + * Derived `Association`s need to implement this method. * - * @param {string} id The document id. - * @returns {object} JsonAPI response containing normalized document as data attribute + * @returns {QueryDefinition} */ - }, { - key: "get", - value: function () { - var _get = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee7(id) { - return _regenerator.default.wrap(function _callee7$(_context7) { - while (1) { - switch (_context7.prev = _context7.next) { - case 0: - return _context7.abrupt("return", _Collection.default.get(this.stackClient, "".concat(this.endpoint).concat(encodeURIComponent(id)), { - normalize: this.constructor.normalizeDoctype(this.doctype) - })); - - case 1: - case "end": - return _context7.stop(); - } - } - }, _callee7, this); - })); - - function get(_x10) { - return _get.apply(this, arguments); - } + }], [{ + key: "query", + value: function query() { + throw new Error('A custom relationship must define its query() function'); + } + }]); + return Association; +}(); - return get; - }() - /** - * Get many documents by id - */ +var _default = Association; +exports.default = _default; - }, { - key: "getAll", - value: function () { - var _getAll = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee8(ids) { - var _this3 = this; +/***/ }), +/* 617 */ +/***/ (function(module, exports, __webpack_require__) { - var resp, rows; - return _regenerator.default.wrap(function _callee8$(_context8) { - while (1) { - switch (_context8.prev = _context8.next) { - case 0: - _context8.prev = 0; - _context8.next = 3; - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject3(), this.doctype), { - keys: ids - }); +"use strict"; - case 3: - resp = _context8.sent; - _context8.next = 9; - break; - case 6: - _context8.prev = 6; - _context8.t0 = _context8["catch"](0); - return _context8.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context8.t0)); +var _interopRequireWildcard = __webpack_require__(530); - case 9: - rows = resp.rows.filter(function (row) { - return row.doc; - }); - return _context8.abrupt("return", { - data: rows.map(function (row) { - return normalizeDoc(row.doc, _this3.doctype); - }), - meta: { - count: rows.length - } - }); +var _interopRequireDefault = __webpack_require__(532); - case 11: - case "end": - return _context8.stop(); - } - } - }, _callee8, this, [[0, 6]]); - })); +Object.defineProperty(exports, "__esModule", { + value: true +}); +Object.defineProperty(exports, "initQuery", { + enumerable: true, + get: function get() { + return _queries.initQuery; + } +}); +Object.defineProperty(exports, "receiveQueryResult", { + enumerable: true, + get: function get() { + return _queries.receiveQueryResult; + } +}); +Object.defineProperty(exports, "receiveQueryError", { + enumerable: true, + get: function get() { + return _queries.receiveQueryError; + } +}); +Object.defineProperty(exports, "initMutation", { + enumerable: true, + get: function get() { + return _mutations.initMutation; + } +}); +Object.defineProperty(exports, "receiveMutationResult", { + enumerable: true, + get: function get() { + return _mutations.receiveMutationResult; + } +}); +Object.defineProperty(exports, "receiveMutationError", { + enumerable: true, + get: function get() { + return _mutations.receiveMutationError; + } +}); +exports.resetState = exports.getRawQueryFromState = exports.getQueryFromState = exports.getQueryFromStore = exports.getDocumentFromState = exports.getCollectionFromState = exports.getStateRoot = exports.createStore = exports.default = exports.StoreProxy = void 0; - function getAll(_x11) { - return _getAll.apply(this, arguments); - } +var _defineProperty2 = _interopRequireDefault(__webpack_require__(546)); - return getAll; - }() - /** - * Creates a document - * - * @param {object} doc - Document to create. Optional: you can force the id with the _id attribute - */ +var _objectSpread4 = _interopRequireDefault(__webpack_require__(545)); - }, { - key: "create", - value: function () { - var _create = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee9(_ref) { - var _id, _type, document, hasFixedId, method, endpoint, resp; +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - return _regenerator.default.wrap(function _callee9$(_context9) { - while (1) { - switch (_context9.prev = _context9.next) { - case 0: - _id = _ref._id, _type = _ref._type, document = (0, _objectWithoutProperties2.default)(_ref, ["_id", "_type"]); - // In case of a fixed id, let's use the dedicated creation endpoint - // https://github.com/cozy/cozy-stack/blob/master/docs/data-system.md#create-a-document-with-a-fixed-id - hasFixedId = !!_id; - method = hasFixedId ? 'PUT' : 'POST'; - endpoint = (0, _utils.uri)(_templateObject4(), this.doctype, hasFixedId ? _id : ''); - _context9.next = 6; - return this.stackClient.fetchJSON(method, endpoint, document); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); - case 6: - resp = _context9.sent; - return _context9.abrupt("return", { - data: normalizeDoc(resp.data, this.doctype) - }); +var _redux = __webpack_require__(618); - case 8: - case "end": - return _context9.stop(); - } - } - }, _callee9, this); - })); +var _reduxThunk = _interopRequireDefault(__webpack_require__(638)); - function create(_x12) { - return _create.apply(this, arguments); - } +var _documents = _interopRequireWildcard(__webpack_require__(639)); - return create; - }() - /** - * Updates a document - * - * @param {object} document - Document to update. Do not forget the _id attribute - */ +var _queries = _interopRequireWildcard(__webpack_require__(640)); - }, { - key: "update", - value: function () { - var _update = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee10(document) { - var resp; - return _regenerator.default.wrap(function _callee10$(_context10) { - while (1) { - switch (_context10.prev = _context10.next) { - case 0: - _context10.next = 2; - return this.stackClient.fetchJSON('PUT', (0, _utils.uri)(_templateObject5(), this.doctype, document._id), document); +var _mutations = __webpack_require__(662); - case 2: - resp = _context10.sent; - return _context10.abrupt("return", { - data: normalizeDoc(resp.data, this.doctype) - }); +var RESET_ACTION_TYPE = 'COZY_CLIENT.RESET_STATE'; - case 4: - case "end": - return _context10.stop(); - } - } - }, _callee10, this); - })); +var resetState = function resetState() { + return { + type: RESET_ACTION_TYPE + }; +}; - function update(_x13) { - return _update.apply(this, arguments); - } +exports.resetState = resetState; - return update; - }() - /** - * Destroys a document - * - * @param {object} doc - Document to destroy. Do not forget _id and _rev attributes - */ +var StoreProxy = +/*#__PURE__*/ +function () { + function StoreProxy(state) { + (0, _classCallCheck2.default)(this, StoreProxy); + this.state = state; + } + (0, _createClass2.default)(StoreProxy, [{ + key: "readDocument", + value: function readDocument(doctype, id) { + return this.state.documents[doctype][id]; + } }, { - key: "destroy", - value: function () { - var _destroy = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee11(_ref2) { - var _id, _rev, document, resp; + key: "writeDocument", + value: function writeDocument(document) { + this.setState(function (state) { + return (0, _objectSpread4.default)({}, state, { + documents: (0, _objectSpread4.default)({}, state.documents, (0, _defineProperty2.default)({}, document._type, (0, _objectSpread4.default)({}, state.documents[document._type], (0, _defineProperty2.default)({}, document._id, document)))) + }); + }); + } + }, { + key: "setState", + value: function setState(updaterFn) { + this.state = updaterFn(this.state); + } + }, { + key: "getState", + value: function getState() { + return this.state; + } + }]); + return StoreProxy; +}(); - return _regenerator.default.wrap(function _callee11$(_context11) { - while (1) { - switch (_context11.prev = _context11.next) { - case 0: - _id = _ref2._id, _rev = _ref2._rev, document = (0, _objectWithoutProperties2.default)(_ref2, ["_id", "_rev"]); - _context11.next = 3; - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject6(), this.doctype, _id, _rev)); +exports.StoreProxy = StoreProxy; +var initialState = { + documents: {}, + queries: {} +}; - case 3: - resp = _context11.sent; - return _context11.abrupt("return", { - data: normalizeDoc(_objectSpread(_objectSpread({}, document), {}, { - _id: _id, - _rev: resp.rev, - _deleted: true - }), this.doctype) - }); +var combinedReducer = function combinedReducer() { + var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState; + var action = arguments.length > 1 ? arguments[1] : undefined; - case 5: - case "end": - return _context11.stop(); - } - } - }, _callee11, this); - })); + if (action.type == RESET_ACTION_TYPE) { + return initialState; + } - function destroy(_x14) { - return _destroy.apply(this, arguments); - } + if (!(0, _queries.isQueryAction)(action) && !(0, _mutations.isMutationAction)(action)) { + return state; + } - return destroy; - }() - /** - * Updates several documents in one batch - * - * @param {Document[]} docs Documents to be updated - */ + if (action.update) { + var proxy = new StoreProxy(state); + action.update(proxy, action.response); + return { + documents: proxy.getState().documents, + queries: (0, _queries.default)(proxy.getState().queries, action, proxy.getState().documents) + }; + } - }, { - key: "updateAll", - value: function () { - var _updateAll = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee12(rawDocs) { - var stackClient, docs, update, firstDoc, resp; - return _regenerator.default.wrap(function _callee12$(_context12) { - while (1) { - switch (_context12.prev = _context12.next) { - case 0: - stackClient = this.stackClient; - docs = rawDocs ? rawDocs.map(function (d) { - return (0, _omit.default)(d, '_type'); - }) : rawDocs; + var nextDocuments = (0, _documents.default)(state.documents, action); + var haveDocumentsChanged = nextDocuments !== state.documents; + return { + documents: nextDocuments, + queries: (0, _queries.default)(state.queries, action, nextDocuments, haveDocumentsChanged) + }; +}; - if (!(!docs || !docs.length)) { - _context12.next = 4; - break; - } +var _default = combinedReducer; +exports.default = _default; - return _context12.abrupt("return", Promise.resolve([])); +var createStore = function createStore() { + return (0, _redux.createStore)((0, _redux.combineReducers)({ + cozy: combinedReducer + }), (0, _redux.applyMiddleware)(_reduxThunk.default)); +}; - case 4: - _context12.prev = 4; - _context12.next = 7; - return stackClient.fetchJSON('POST', "/data/".concat(this.doctype, "/_bulk_docs"), { - docs: docs - }); +exports.createStore = createStore; - case 7: - update = _context12.sent; - return _context12.abrupt("return", update); +var getStateRoot = function getStateRoot(state) { + return state.cozy || {}; +}; - case 11: - _context12.prev = 11; - _context12.t0 = _context12["catch"](4); +exports.getStateRoot = getStateRoot; - if (!(_context12.t0.reason && _context12.t0.reason.reason && _context12.t0.reason.reason === DATABASE_DOES_NOT_EXIST)) { - _context12.next = 24; - break; - } +var getCollectionFromState = function getCollectionFromState(state, doctype) { + return (0, _documents.getCollectionFromSlice)(getStateRoot(state).documents, doctype); +}; - _context12.next = 16; - return this.create(docs[0]); +exports.getCollectionFromState = getCollectionFromState; - case 16: - firstDoc = _context12.sent; - _context12.next = 19; - return this.updateAll(docs.slice(1)); +var getDocumentFromState = function getDocumentFromState(state, doctype, id) { + return (0, _documents.getDocumentFromSlice)(getStateRoot(state).documents, doctype, id); +}; - case 19: - resp = _context12.sent; - resp.unshift({ - ok: true, - id: firstDoc._id, - rev: firstDoc._rev - }); - return _context12.abrupt("return", resp); +exports.getDocumentFromState = getDocumentFromState; - case 24: - throw _context12.t0; +var getQueryFromStore = function getQueryFromStore(store, queryId) { + return getQueryFromState(store.getState(), queryId); +}; - case 25: - case "end": - return _context12.stop(); - } - } - }, _callee12, this, [[4, 11]]); - })); +exports.getQueryFromStore = getQueryFromStore; - function updateAll(_x15) { - return _updateAll.apply(this, arguments); - } +var getQueryFromState = function getQueryFromState(state, queryId) { + return (0, _queries.getQueryFromSlice)(getStateRoot(state).queries, queryId, getStateRoot(state).documents); +}; - return updateAll; - }() - /** - * Deletes several documents in one batch - * - * @param {Document[]} docs - Documents to delete - */ +exports.getQueryFromState = getQueryFromState; - }, { - key: "destroyAll", - value: function destroyAll(docs) { - return this.updateAll(docs.map(prepareForDeletion)); - } - }, { - key: "toMangoOptions", - value: function toMangoOptions(selector) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var sort = options.sort, - indexedFields = options.indexedFields; - var fields = options.fields, - _options$skip3 = options.skip, - skip = _options$skip3 === void 0 ? 0 : _options$skip3, - limit = options.limit, - bookmark = options.bookmark; - sort = (0, _mangoIndex.transformSort)(sort); - indexedFields = indexedFields ? indexedFields : (0, _mangoIndex.getIndexFields)({ - sort: sort, - selector: selector - }); - var indexName = options.indexId || "_design/".concat((0, _mangoIndex.getIndexNameFromFields)(indexedFields)); +var getRawQueryFromState = function getRawQueryFromState(state, queryId) { + return (0, _queries.getQueryFromSlice)(getStateRoot(state).queries, queryId); +}; - if (sort) { - var sortOrders = (0, _uniq.default)(sort.map(function (sortOption) { - return (0, _head.default)(Object.values(sortOption)); - })); - if (sortOrders.length > 1) throw new Error('Mango sort can only use a single order (asc or desc).'); - var sortOrder = sortOrders.length > 0 ? (0, _head.default)(sortOrders) : 'asc'; +exports.getRawQueryFromState = getRawQueryFromState; - var _iterator = _createForOfIteratorHelper(indexedFields), - _step; +/***/ }), +/* 618 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - try { - var _loop = function _loop() { - var field = _step.value; - if (!sort.find(function (sortOption) { - return (0, _head.default)(Object.keys(sortOption)) === field; - })) sort.push((0, _defineProperty2.default)({}, field, sortOrder)); - }; +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony import */ var _createStore__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(619); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "createStore", function() { return _createStore__WEBPACK_IMPORTED_MODULE_0__["default"]; }); - for (_iterator.s(); !(_step = _iterator.n()).done;) { - _loop(); - } - } catch (err) { - _iterator.e(err); - } finally { - _iterator.f(); - } - } +/* harmony import */ var _combineReducers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(633); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "combineReducers", function() { return _combineReducers__WEBPACK_IMPORTED_MODULE_1__["default"]; }); - var opts = { - selector: selector, - use_index: indexName, - // TODO: type and class should not be necessary, it's just a temp fix for a stack bug - fields: fields ? [].concat((0, _toConsumableArray2.default)(fields), ['_id', '_type', 'class']) : undefined, - limit: limit, - skip: skip, - bookmark: options.bookmark || bookmark, - sort: sort, - execution_stats: (0, _cozyFlags.default)('debug') ? true : undefined - }; - return opts; - } - }, { - key: "checkUniquenessOf", - value: function () { - var _checkUniquenessOf = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee13(property, value) { - var indexId, existingDocs; - return _regenerator.default.wrap(function _callee13$(_context13) { - while (1) { - switch (_context13.prev = _context13.next) { - case 0: - _context13.next = 2; - return this.getUniqueIndexId(property); +/* harmony import */ var _bindActionCreators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(635); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "bindActionCreators", function() { return _bindActionCreators__WEBPACK_IMPORTED_MODULE_2__["default"]; }); - case 2: - indexId = _context13.sent; - _context13.next = 5; - return this.find((0, _defineProperty2.default)({}, property, value), { - indexId: indexId, - fields: ['_id'] - }); +/* harmony import */ var _applyMiddleware__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(636); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "applyMiddleware", function() { return _applyMiddleware__WEBPACK_IMPORTED_MODULE_3__["default"]; }); - case 5: - existingDocs = _context13.sent; - return _context13.abrupt("return", existingDocs.data.length === 0); +/* harmony import */ var _compose__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(637); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "compose", function() { return _compose__WEBPACK_IMPORTED_MODULE_4__["default"]; }); - case 7: - case "end": - return _context13.stop(); - } - } - }, _callee13, this); - })); +/* harmony import */ var _utils_warning__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(634); - function checkUniquenessOf(_x16, _x17) { - return _checkUniquenessOf.apply(this, arguments); - } - return checkUniquenessOf; - }() - }, { - key: "getUniqueIndexId", - value: function getUniqueIndexId(property) { - return this.getIndexId([property], { - indexName: "".concat(this.doctype, "/").concat(property) - }); - } - }, { - key: "getIndexId", - value: function () { - var _getIndexId = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee14(fields, _ref3) { - var partialFilter, _ref3$indexName, indexName, index; - return _regenerator.default.wrap(function _callee14$(_context14) { - while (1) { - switch (_context14.prev = _context14.next) { - case 0: - partialFilter = _ref3.partialFilter, _ref3$indexName = _ref3.indexName, indexName = _ref3$indexName === void 0 ? this.getIndexNameFromFields(fields) : _ref3$indexName; - if (this.indexes[indexName]) { - _context14.next = 20; - break; - } - _context14.prev = 2; - _context14.next = 5; - return this.createIndex(fields, { - partialFilter: partialFilter - }); - case 5: - index = _context14.sent; - _context14.next = 19; - break; - case 8: - _context14.prev = 8; - _context14.t0 = _context14["catch"](2); +/* +* This is a dummy function to check if the function name has been altered by minification. +* If the function has been minified and NODE_ENV !== 'production', warn the user. +*/ +function isCrushed() {} - if ((0, _Collection.isIndexConflictError)(_context14.t0)) { - _context14.next = 14; - break; - } +if ( true && typeof isCrushed.name === 'string' && isCrushed.name !== 'isCrushed') { + Object(_utils_warning__WEBPACK_IMPORTED_MODULE_5__["default"])('You are currently using minified code outside of NODE_ENV === \'production\'. ' + 'This means that you are running a slower development build of Redux. ' + 'You can use loose-envify (https://github.com/zertosh/loose-envify) for browserify ' + 'or DefinePlugin for webpack (http://stackoverflow.com/questions/30030031) ' + 'to ensure you have the correct code for your production build.'); +} - throw _context14.t0; - case 14: - _context14.next = 16; - return (0, _utils.sleep)(1000); - case 16: - _context14.next = 18; - return this.createIndex(fields, { - partialFilter: partialFilter - }); +/***/ }), +/* 619 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - case 18: - index = _context14.sent; +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ActionTypes", function() { return ActionTypes; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return createStore; }); +/* harmony import */ var lodash_es_isPlainObject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(620); +/* harmony import */ var symbol_observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(630); - case 19: - this.indexes[indexName] = index; - case 20: - return _context14.abrupt("return", this.indexes[indexName].id); - case 21: - case "end": - return _context14.stop(); - } - } - }, _callee14, this, [[2, 8]]); - })); +/** + * These are private action types reserved by Redux. + * For any unknown actions, you must return the current state. + * If the current state is undefined, you must return the initial state. + * Do not reference these action types directly in your code. + */ +var ActionTypes = { + INIT: '@@redux/INIT' - function getIndexId(_x18, _x19) { - return _getIndexId.apply(this, arguments); - } + /** + * Creates a Redux store that holds the state tree. + * The only way to change the data in the store is to call `dispatch()` on it. + * + * There should only be a single store in your app. To specify how different + * parts of the state tree respond to actions, you may combine several reducers + * into a single reducer function by using `combineReducers`. + * + * @param {Function} reducer A function that returns the next state tree, given + * the current state tree and the action to handle. + * + * @param {any} [preloadedState] The initial state. You may optionally specify it + * to hydrate the state from the server in universal apps, or to restore a + * previously serialized user session. + * If you use `combineReducers` to produce the root reducer function, this must be + * an object with the same shape as `combineReducers` keys. + * + * @param {Function} [enhancer] The store enhancer. You may optionally specify it + * to enhance the store with third-party capabilities such as middleware, + * time travel, persistence, etc. The only store enhancer that ships with Redux + * is `applyMiddleware()`. + * + * @returns {Store} A Redux store that lets you read the state, dispatch actions + * and subscribe to changes. + */ +};function createStore(reducer, preloadedState, enhancer) { + var _ref2; - return getIndexId; - }() - }, { - key: "createIndex", - value: function () { - var _createIndex = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee15(fields) { - var _ref4, - partialFilter, - indexName, - indexDef, - resp, - indexResp, - selector, - options, - _args15 = arguments; + if (typeof preloadedState === 'function' && typeof enhancer === 'undefined') { + enhancer = preloadedState; + preloadedState = undefined; + } - return _regenerator.default.wrap(function _callee15$(_context15) { - while (1) { - switch (_context15.prev = _context15.next) { - case 0: - _ref4 = _args15.length > 1 && _args15[1] !== undefined ? _args15[1] : {}, partialFilter = _ref4.partialFilter, indexName = _ref4.indexName; - indexDef = { - index: { - fields: fields - } - }; + if (typeof enhancer !== 'undefined') { + if (typeof enhancer !== 'function') { + throw new Error('Expected the enhancer to be a function.'); + } - if (indexName) { - indexDef.ddoc = indexName; - } + return enhancer(createStore)(reducer, preloadedState); + } - if (partialFilter) { - indexDef.index.partial_filter_selector = partialFilter; - } + if (typeof reducer !== 'function') { + throw new Error('Expected the reducer to be a function.'); + } - _context15.prev = 4; - _context15.next = 7; - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject7(), this.doctype), indexDef); + var currentReducer = reducer; + var currentState = preloadedState; + var currentListeners = []; + var nextListeners = currentListeners; + var isDispatching = false; - case 7: - resp = _context15.sent; - _context15.next = 17; - break; + function ensureCanMutateNextListeners() { + if (nextListeners === currentListeners) { + nextListeners = currentListeners.slice(); + } + } - case 10: - _context15.prev = 10; - _context15.t0 = _context15["catch"](4); + /** + * Reads the state tree managed by the store. + * + * @returns {any} The current state tree of your application. + */ + function getState() { + return currentState; + } - if ((0, _Collection.isIndexConflictError)(_context15.t0)) { - _context15.next = 16; - break; - } + /** + * Adds a change listener. It will be called any time an action is dispatched, + * and some part of the state tree may potentially have changed. You may then + * call `getState()` to read the current state tree inside the callback. + * + * You may call `dispatch()` from a change listener, with the following + * caveats: + * + * 1. The subscriptions are snapshotted just before every `dispatch()` call. + * If you subscribe or unsubscribe while the listeners are being invoked, this + * will not have any effect on the `dispatch()` that is currently in progress. + * However, the next `dispatch()` call, whether nested or not, will use a more + * recent snapshot of the subscription list. + * + * 2. The listener should not expect to see all state changes, as the state + * might have been updated multiple times during a nested `dispatch()` before + * the listener is called. It is, however, guaranteed that all subscribers + * registered before the `dispatch()` started will be called with the latest + * state by the time it exits. + * + * @param {Function} listener A callback to be invoked on every dispatch. + * @returns {Function} A function to remove this change listener. + */ + function subscribe(listener) { + if (typeof listener !== 'function') { + throw new Error('Expected listener to be a function.'); + } - throw _context15.t0; + var isSubscribed = true; - case 16: - return _context15.abrupt("return"); + ensureCanMutateNextListeners(); + nextListeners.push(listener); - case 17: - indexResp = { - id: resp.id, - fields: fields - }; + return function unsubscribe() { + if (!isSubscribed) { + return; + } - if (!(resp.result === 'exists')) { - _context15.next = 20; - break; - } + isSubscribed = false; - return _context15.abrupt("return", indexResp); + ensureCanMutateNextListeners(); + var index = nextListeners.indexOf(listener); + nextListeners.splice(index, 1); + }; + } - case 20: - // indexes might not be usable right after being created; so we delay the resolving until they are - selector = {}; - fields.forEach(function (f) { - return selector[f] = { - $gt: null - }; - }); - options = { - indexId: indexResp.id, - limit: 1 - }; - _context15.next = 25; - return (0, _utils.attempt)(this.find(selector, options)); + /** + * Dispatches an action. It is the only way to trigger a state change. + * + * The `reducer` function, used to create the store, will be called with the + * current state tree and the given `action`. Its return value will + * be considered the **next** state of the tree, and the change listeners + * will be notified. + * + * The base implementation only supports plain object actions. If you want to + * dispatch a Promise, an Observable, a thunk, or something else, you need to + * wrap your store creating function into the corresponding middleware. For + * example, see the documentation for the `redux-thunk` package. Even the + * middleware will eventually dispatch plain object actions using this method. + * + * @param {Object} action A plain object representing “what changedâ€. It is + * a good idea to keep actions serializable so you can record and replay user + * sessions, or use the time travelling `redux-devtools`. An action must have + * a `type` property which may not be `undefined`. It is a good idea to use + * string constants for action types. + * + * @returns {Object} For convenience, the same action object you dispatched. + * + * Note that, if you use a custom middleware, it may wrap `dispatch()` to + * return something else (for example, a Promise you can await). + */ + function dispatch(action) { + if (!Object(lodash_es_isPlainObject__WEBPACK_IMPORTED_MODULE_0__["default"])(action)) { + throw new Error('Actions must be plain objects. ' + 'Use custom middleware for async actions.'); + } - case 25: - if (!_context15.sent) { - _context15.next = 27; - break; - } + if (typeof action.type === 'undefined') { + throw new Error('Actions may not have an undefined "type" property. ' + 'Have you misspelled a constant?'); + } - return _context15.abrupt("return", indexResp); + if (isDispatching) { + throw new Error('Reducers may not dispatch actions.'); + } - case 27: - _context15.next = 29; - return (0, _utils.sleep)(1000); + try { + isDispatching = true; + currentState = currentReducer(currentState, action); + } finally { + isDispatching = false; + } - case 29: - _context15.next = 31; - return (0, _utils.attempt)(this.find(selector, options)); + var listeners = currentListeners = nextListeners; + for (var i = 0; i < listeners.length; i++) { + var listener = listeners[i]; + listener(); + } - case 31: - if (!_context15.sent) { - _context15.next = 33; - break; - } + return action; + } - return _context15.abrupt("return", indexResp); + /** + * Replaces the reducer currently used by the store to calculate the state. + * + * You might need this if your app implements code splitting and you want to + * load some of the reducers dynamically. You might also need this if you + * implement a hot reloading mechanism for Redux. + * + * @param {Function} nextReducer The reducer for the store to use instead. + * @returns {void} + */ + function replaceReducer(nextReducer) { + if (typeof nextReducer !== 'function') { + throw new Error('Expected the nextReducer to be a function.'); + } - case 33: - _context15.next = 35; - return (0, _utils.sleep)(500); + currentReducer = nextReducer; + dispatch({ type: ActionTypes.INIT }); + } - case 35: - return _context15.abrupt("return", indexResp); + /** + * Interoperability point for observable/reactive libraries. + * @returns {observable} A minimal observable of state changes. + * For more information, see the observable proposal: + * https://github.com/tc39/proposal-observable + */ + function observable() { + var _ref; - case 36: - case "end": - return _context15.stop(); - } + var outerSubscribe = subscribe; + return _ref = { + /** + * The minimal observable subscription method. + * @param {Object} observer Any object that can be used as an observer. + * The observer object should have a `next` method. + * @returns {subscription} An object with an `unsubscribe` method that can + * be used to unsubscribe the observable from the store, and prevent further + * emission of values from the observable. + */ + subscribe: function subscribe(observer) { + if (typeof observer !== 'object') { + throw new TypeError('Expected the observer to be an object.'); + } + + function observeState() { + if (observer.next) { + observer.next(getState()); } - }, _callee15, this, [[4, 10]]); - })); + } - function createIndex(_x20) { - return _createIndex.apply(this, arguments); + observeState(); + var unsubscribe = outerSubscribe(observeState); + return { unsubscribe: unsubscribe }; } + }, _ref[symbol_observable__WEBPACK_IMPORTED_MODULE_1__["default"]] = function () { + return this; + }, _ref; + } - return createIndex; - }() - /** - * Retrieve all design docs of mango indexes - * - * @returns {Array} The design docs - */ + // When a store is created, an "INIT" action is dispatched so that every + // reducer returns their initial state. This effectively populates + // the initial state tree. + dispatch({ type: ActionTypes.INIT }); - }, { - key: "fetchAllMangoIndexes", - value: function () { - var _fetchAllMangoIndexes = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee16() { - var path, indexes; - return _regenerator.default.wrap(function _callee16$(_context16) { - while (1) { - switch (_context16.prev = _context16.next) { - case 0: - path = (0, _utils.uri)(_templateObject8(), this.doctype); - _context16.next = 3; - return this.stackClient.fetchJSON('GET', path); + return _ref2 = { + dispatch: dispatch, + subscribe: subscribe, + getState: getState, + replaceReducer: replaceReducer + }, _ref2[symbol_observable__WEBPACK_IMPORTED_MODULE_1__["default"]] = observable, _ref2; +} - case 3: - indexes = _context16.sent; - return _context16.abrupt("return", indexes.rows.filter(function (index) { - return index.doc.language === 'query'; - }).map(function (doc) { - return (0, _mangoIndex.normalizeDesignDoc)(doc); - })); +/***/ }), +/* 620 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - case 5: - case "end": - return _context16.stop(); - } - } - }, _callee16, this); - })); +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(621); +/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(627); +/* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(629); - function fetchAllMangoIndexes() { - return _fetchAllMangoIndexes.apply(this, arguments); - } - return fetchAllMangoIndexes; - }() - /** - * Delete the specified design doc - * - * @param {object} index - The design doc to remove - * @returns {object} The delete response - */ - }, { - key: "destroyIndex", - value: function () { - var _destroyIndex = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee17(index) { - var ddoc, rev, path; - return _regenerator.default.wrap(function _callee17$(_context17) { - while (1) { - switch (_context17.prev = _context17.next) { - case 0: - ddoc = index._id.split('/')[1]; - rev = index._rev; - path = (0, _utils.uri)(_templateObject9(), this.doctype, ddoc, rev); - return _context17.abrupt("return", this.stackClient.fetchJSON('DELETE', path)); - case 4: - case "end": - return _context17.stop(); - } - } - }, _callee17, this); - })); +/** `Object#toString` result references. */ +var objectTag = '[object Object]'; - function destroyIndex(_x21) { - return _destroyIndex.apply(this, arguments); - } +/** Used for built-in method references. */ +var funcProto = Function.prototype, + objectProto = Object.prototype; - return destroyIndex; - }() - /** - * Copy an existing design doc. - * - * This is useful to create a new design doc without - * having to recompute the existing index. - * - * @param {object} existingIndex - The design doc to copy - * @param {string} newIndexName - The name of the copy - * @returns {object} The copy response - */ +/** Used to resolve the decompiled source of functions. */ +var funcToString = funcProto.toString; - }, { - key: "copyIndex", - value: function () { - var _copyIndex = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee18(existingIndex, newIndexName) { - var ddoc, rev, path, options; - return _regenerator.default.wrap(function _callee18$(_context18) { - while (1) { - switch (_context18.prev = _context18.next) { - case 0: - ddoc = existingIndex._id.split('/')[1]; - rev = existingIndex._rev; - path = (0, _utils.uri)(_templateObject10(), this.doctype, ddoc, rev); - options = { - headers: { - Destination: "_design/".concat(newIndexName) - } - }; - return _context18.abrupt("return", this.stackClient.fetchJSON('POST', path, null, options)); +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; - case 5: - case "end": - return _context18.stop(); - } - } - }, _callee18, this); - })); +/** Used to infer the `Object` constructor. */ +var objectCtorString = funcToString.call(Object); - function copyIndex(_x22, _x23) { - return _copyIndex.apply(this, arguments); - } +/** + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. + * + * @static + * @memberOf _ + * @since 0.8.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * _.isPlainObject(new Foo); + * // => false + * + * _.isPlainObject([1, 2, 3]); + * // => false + * + * _.isPlainObject({ 'x': 0, 'y': 0 }); + * // => true + * + * _.isPlainObject(Object.create(null)); + * // => true + */ +function isPlainObject(value) { + if (!Object(_isObjectLike_js__WEBPACK_IMPORTED_MODULE_2__["default"])(value) || Object(_baseGetTag_js__WEBPACK_IMPORTED_MODULE_0__["default"])(value) != objectTag) { + return false; + } + var proto = Object(_getPrototype_js__WEBPACK_IMPORTED_MODULE_1__["default"])(value); + if (proto === null) { + return true; + } + var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; + return typeof Ctor == 'function' && Ctor instanceof Ctor && + funcToString.call(Ctor) == objectCtorString; +} - return copyIndex; - }() - /** - * Find an existing mango index based on the query definition - * - * This is useful to avoid creating new indexes having the - * same definition of an existing one. - * - * @param {object} selector - The query selector - * @param {object} options - The query options - * @returns {object} A matching index if it exists - * @private - */ +/* harmony default export */ __webpack_exports__["default"] = (isPlainObject); - }, { - key: "findExistingIndex", - value: function () { - var _findExistingIndex = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee19(selector, options) { - var sort, indexedFields, partialFilter, indexes, fieldsToIndex, existingIndex, _iterator2, _step2, index; - return _regenerator.default.wrap(function _callee19$(_context19) { - while (1) { - switch (_context19.prev = _context19.next) { - case 0: - sort = options.sort, indexedFields = options.indexedFields, partialFilter = options.partialFilter; - _context19.next = 3; - return this.fetchAllMangoIndexes(); +/***/ }), +/* 621 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - case 3: - indexes = _context19.sent; +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(622); +/* harmony import */ var _getRawTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(625); +/* harmony import */ var _objectToString_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(626); - if (!(indexes.length < 1)) { - _context19.next = 6; - break; - } - return _context19.abrupt("return", null); - case 6: - sort = (0, _mangoIndex.transformSort)(sort); - fieldsToIndex = indexedFields ? indexedFields : (0, _mangoIndex.getIndexFields)({ - sort: sort, - selector: selector - }); - existingIndex = indexes.find(function (index) { - return (0, _mangoIndex.isMatchingIndex)(index, fieldsToIndex, partialFilter); - }); - _iterator2 = _createForOfIteratorHelper(indexes); - _context19.prev = 10; - _iterator2.s(); +/** `Object#toString` result references. */ +var nullTag = '[object Null]', + undefinedTag = '[object Undefined]'; - case 12: - if ((_step2 = _iterator2.n()).done) { - _context19.next = 19; - break; - } +/** Built-in value references. */ +var symToStringTag = _Symbol_js__WEBPACK_IMPORTED_MODULE_0__["default"] ? _Symbol_js__WEBPACK_IMPORTED_MODULE_0__["default"].toStringTag : undefined; - index = _step2.value; +/** + * The base implementation of `getTag` without fallbacks for buggy environments. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ +function baseGetTag(value) { + if (value == null) { + return value === undefined ? undefinedTag : nullTag; + } + return (symToStringTag && symToStringTag in Object(value)) + ? Object(_getRawTag_js__WEBPACK_IMPORTED_MODULE_1__["default"])(value) + : Object(_objectToString_js__WEBPACK_IMPORTED_MODULE_2__["default"])(value); +} - if (!(0, _mangoIndex.isInconsistentIndex)(index)) { - _context19.next = 17; - break; - } +/* harmony default export */ __webpack_exports__["default"] = (baseGetTag); - _context19.next = 17; - return this.destroyIndex(index); - case 17: - _context19.next = 12; - break; +/***/ }), +/* 622 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - case 19: - _context19.next = 24; - break; +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(623); - case 21: - _context19.prev = 21; - _context19.t0 = _context19["catch"](10); - _iterator2.e(_context19.t0); +/** Built-in value references. */ +var Symbol = _root_js__WEBPACK_IMPORTED_MODULE_0__["default"].Symbol; - case 24: - _context19.prev = 24; +/* harmony default export */ __webpack_exports__["default"] = (Symbol); - _iterator2.f(); - return _context19.finish(24); +/***/ }), +/* 623 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - case 27: - return _context19.abrupt("return", existingIndex); +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony import */ var _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(624); - case 28: - case "end": - return _context19.stop(); - } - } - }, _callee19, this, [[10, 21, 24, 27]]); - })); - function findExistingIndex(_x24, _x25) { - return _findExistingIndex.apply(this, arguments); - } +/** Detect free variable `self`. */ +var freeSelf = typeof self == 'object' && self && self.Object === Object && self; - return findExistingIndex; - }() - /** - * Calls _changes route from CouchDB - * No further treatment is done contrary to fetchchanges - * - * @typedef {object} CouchOptionsRaw - * @param {string} since - Bookmark telling CouchDB from which point in time should changes be returned - * @param {Array<string>} doc_ids - Only return changes for a subset of documents - * @param {boolean} includeDocs - Includes full documents as part of results - * - * @param {CouchOptionsRaw} couchOptions - Couch options for changes https://kutt.it/5r7MNQ - * - * @see https://docs.couchdb.org/en/stable/api/database/changes.html - */ +/** Used as a reference to the global object. */ +var root = _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__["default"] || freeSelf || Function('return this')(); - }, { - key: "fetchChangesRaw", - value: function () { - var _fetchChangesRaw = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee20(couchOptions) { - var hasDocIds, urlParams, method, endpoint, params, result; - return _regenerator.default.wrap(function _callee20$(_context20) { - while (1) { - switch (_context20.prev = _context20.next) { - case 0: - hasDocIds = couchOptions.doc_ids && couchOptions.doc_ids.length > 0; - urlParams = "?".concat([_qs.default.stringify(_objectSpread(_objectSpread({}, (0, _omit.default)(couchOptions, ['doc_ids', 'includeDocs'])), {}, { - include_docs: couchOptions.includeDocs - })), hasDocIds && couchOptions.filter === undefined ? 'filter=_doc_ids' : undefined].filter(Boolean).join('&')); - method = hasDocIds ? 'POST' : 'GET'; - endpoint = "/data/".concat(this.doctype, "/_changes").concat(urlParams); - params = hasDocIds ? { - doc_ids: couchOptions.doc_ids - } : undefined; - _context20.next = 7; - return this.stackClient.fetchJSON(method, endpoint, params); +/* harmony default export */ __webpack_exports__["default"] = (root); - case 7: - result = _context20.sent; - return _context20.abrupt("return", result); - case 9: - case "end": - return _context20.stop(); - } - } - }, _callee20, this); - })); +/***/ }), +/* 624 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - function fetchChangesRaw(_x26) { - return _fetchChangesRaw.apply(this, arguments); - } +"use strict"; +__webpack_require__.r(__webpack_exports__); +/** Detect free variable `global` from Node.js. */ +var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; - return fetchChangesRaw; - }() - /** - * Use Couch _changes API - * Deleted and design docs are filtered by default, thus documents are retrieved in the response - * (include_docs is set to true in the parameters of _changes). - * - * You should use fetchChangesRaw to have low level control on _changes parameters. - * - * @typedef {object} CouchOptions - * @param {string} since - Bookmark telling CouchDB from which point in time should changes be returned - * @param {Array<string>} doc_ids - Only return changes for a subset of documents - * - * @typedef {object} FetchChangesOptions - * @property {boolean} includeDesign - Whether to include changes from design docs (needs include_docs to be true) - * @property {boolean} includeDeleted - Whether to include changes for deleted documents (needs include_docs to be true) - * - * @param {CouchOptions} couchOptions - Couch options for changes - * @param {FetchChangesOptions} options - Further options on the returned documents. By default, it is set to - * { includeDesign: false, includeDeleted: false } - * - * @typedef {object} FetchChangesReturnValue - * @property {string} newLastSeq - * @property {Array<object>} documents - * @returns {FetchChangesReturnValue} - */ +/* harmony default export */ __webpack_exports__["default"] = (freeGlobal); - }, { - key: "fetchChanges", - value: function () { - var _fetchChanges = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee21() { - var couchOptions, - options, - opts, - result, - newLastSeq, - docs, - _args21 = arguments; - return _regenerator.default.wrap(function _callee21$(_context21) { - while (1) { - switch (_context21.prev = _context21.next) { - case 0: - couchOptions = _args21.length > 0 && _args21[0] !== undefined ? _args21[0] : {}; - options = _args21.length > 1 && _args21[1] !== undefined ? _args21[1] : {}; - opts = { - // Necessary since we deal with deleted and design docs later - includeDocs: true - }; - if (typeof couchOptions !== 'object') { - opts.since = couchOptions; - console.warn("fetchChanges use couchOptions as Object not a string, since is deprecated, please use fetchChanges({since: \"".concat(couchOptions, "\"}).")); - } else if (Object.keys(couchOptions).length > 0) { - Object.assign(opts, couchOptions); - } +/***/ }), +/* 625 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - _context21.next = 6; - return this.fetchChangesRaw(opts); +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(622); - case 6: - result = _context21.sent; - newLastSeq = result.last_seq; - docs = result.results.map(function (x) { - return x.doc; - }).filter(Boolean); - if (!options.includeDesign) { - docs = docs.filter(function (doc) { - return doc._id.indexOf('_design') !== 0; - }); - } +/** Used for built-in method references. */ +var objectProto = Object.prototype; - if (!options.includeDeleted) { - docs = docs.filter(function (doc) { - return !doc._deleted; - }); - } +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; - return _context21.abrupt("return", { - newLastSeq: newLastSeq, - documents: docs - }); +/** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ +var nativeObjectToString = objectProto.toString; - case 12: - case "end": - return _context21.stop(); - } - } - }, _callee21, this); - })); +/** Built-in value references. */ +var symToStringTag = _Symbol_js__WEBPACK_IMPORTED_MODULE_0__["default"] ? _Symbol_js__WEBPACK_IMPORTED_MODULE_0__["default"].toStringTag : undefined; - function fetchChanges() { - return _fetchChanges.apply(this, arguments); - } +/** + * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the raw `toStringTag`. + */ +function getRawTag(value) { + var isOwn = hasOwnProperty.call(value, symToStringTag), + tag = value[symToStringTag]; - return fetchChanges; - }() - }], [{ - key: "normalizeDoctype", - value: function normalizeDoctype(doctype) { - return this.normalizeDoctypeRawApi(doctype); - } - /** - * `normalizeDoctype` for api end points returning json api responses - * - * @private - * @param {string} doctype - Document doctype - * @returns {Function} (data, response) => normalizedDocument - * using `normalizeDoc` - */ + try { + value[symToStringTag] = undefined; + var unmasked = true; + } catch (e) {} - }, { - key: "normalizeDoctypeJsonApi", - value: function normalizeDoctypeJsonApi(doctype) { - return function (data, response) { - // use the "data" attribute of the response - return normalizeDoc(data, doctype); - }; + var result = nativeObjectToString.call(value); + if (unmasked) { + if (isOwn) { + value[symToStringTag] = tag; + } else { + delete value[symToStringTag]; } - /** - * `normalizeDoctype` for api end points returning raw documents - * - * @private - * @param {string} doctype - Document doctype - * @returns {Function} (data, response) => normalizedDocument - * using `normalizeDoc` - */ + } + return result; +} - }, { - key: "normalizeDoctypeRawApi", - value: function normalizeDoctypeRawApi(doctype) { - return function (data, response) { - // use the response directly - return normalizeDoc(response, doctype); - }; - } - }]); - return DocumentCollection; -}(); +/* harmony default export */ __webpack_exports__["default"] = (getRawTag); -var _default = DocumentCollection; -exports.default = _default; -var normalizeDoctype = DocumentCollection.normalizeDoctype; -exports.normalizeDoctype = normalizeDoctype; /***/ }), -/* 620 */ -/***/ (function(module, exports) { +/* 626 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { -function _taggedTemplateLiteral(strings, raw) { - if (!raw) { - raw = strings.slice(0); - } +"use strict"; +__webpack_require__.r(__webpack_exports__); +/** Used for built-in method references. */ +var objectProto = Object.prototype; - return Object.freeze(Object.defineProperties(strings, { - raw: { - value: Object.freeze(raw) - } - })); +/** + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ +var nativeObjectToString = objectProto.toString; + +/** + * Converts `value` to a string using `Object.prototype.toString`. + * + * @private + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + */ +function objectToString(value) { + return nativeObjectToString.call(value); +} + +/* harmony default export */ __webpack_exports__["default"] = (objectToString); + + +/***/ }), +/* 627 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony import */ var _overArg_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(628); + + +/** Built-in value references. */ +var getPrototype = Object(_overArg_js__WEBPACK_IMPORTED_MODULE_0__["default"])(Object.getPrototypeOf, Object); + +/* harmony default export */ __webpack_exports__["default"] = (getPrototype); + + +/***/ }), +/* 628 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/** + * Creates a unary function that invokes `func` with its argument transformed. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} transform The argument transform. + * @returns {Function} Returns the new function. + */ +function overArg(func, transform) { + return function(arg) { + return func(transform(arg)); + }; +} + +/* harmony default export */ __webpack_exports__["default"] = (overArg); + + +/***/ }), +/* 629 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/** + * Checks if `value` is object-like. A value is object-like if it's not `null` + * and has a `typeof` result of "object". + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + * @example + * + * _.isObjectLike({}); + * // => true + * + * _.isObjectLike([1, 2, 3]); + * // => true + * + * _.isObjectLike(_.noop); + * // => false + * + * _.isObjectLike(null); + * // => false + */ +function isObjectLike(value) { + return value != null && typeof value == 'object'; } -module.exports = _taggedTemplateLiteral; -module.exports["default"] = module.exports, module.exports.__esModule = true; +/* harmony default export */ __webpack_exports__["default"] = (isObjectLike); + /***/ }), -/* 621 */ -/***/ (function(module, exports, __webpack_require__) { +/* 630 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; +__webpack_require__.r(__webpack_exports__); +/* WEBPACK VAR INJECTION */(function(module) {/* harmony import */ var _ponyfill_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(632); +/* global window */ -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; +var root; -var _flag = _interopRequireDefault(__webpack_require__(622)); +if (typeof self !== 'undefined') { + root = self; +} else if (typeof window !== 'undefined') { + root = window; +} else if (typeof global !== 'undefined') { + root = global; +} else if (true) { + root = module; +} else {} -/* global __ENABLED_FLAGS__ */ -if (typeof __ENABLED_FLAGS__ !== 'undefined') { - _flag.default.enable(__ENABLED_FLAGS__); -} +var result = Object(_ponyfill_js__WEBPACK_IMPORTED_MODULE_0__["default"])(root); +/* harmony default export */ __webpack_exports__["default"] = (result); -var _default = _flag.default; -exports.default = _default; +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(631)(module))) /***/ }), -/* 622 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; +/* 631 */ +/***/ (function(module, exports) { +module.exports = function(originalModule) { + if (!originalModule.webpackPolyfill) { + var module = Object.create(originalModule); + // module.parent = undefined by default + if (!module.children) module.children = []; + Object.defineProperty(module, "loaded", { + enumerable: true, + get: function() { + return module.l; + } + }); + Object.defineProperty(module, "id", { + enumerable: true, + get: function() { + return module.i; + } + }); + Object.defineProperty(module, "exports", { + enumerable: true + }); + module.webpackPolyfill = 1; + } + return module; +}; -var _interopRequireDefault = __webpack_require__(530); -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.initialize = exports.initializeFromDOM = exports.getTemplateData = exports.initializeFromRemote = exports.enable = exports.resetFlags = exports.listFlags = void 0; +/***/ }), +/* 632 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return symbolObservablePonyfill; }); +function symbolObservablePonyfill(root) { + var result; + var Symbol = root.Symbol; + + if (typeof Symbol === 'function') { + if (Symbol.observable) { + result = Symbol.observable; + } else { + result = Symbol('observable'); + Symbol.observable = result; + } + } else { + result = '@@observable'; + } -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + return result; +}; -var _regenerator = _interopRequireDefault(__webpack_require__(545)); -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); +/***/ }), +/* 633 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { -var _slicedToArray2 = _interopRequireDefault(__webpack_require__(538)); +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return combineReducers; }); +/* harmony import */ var _createStore__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(619); +/* harmony import */ var lodash_es_isPlainObject__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(620); +/* harmony import */ var _utils_warning__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(634); -var _store = _interopRequireDefault(__webpack_require__(623)); -var _dsl = __webpack_require__(625); -function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } +function getUndefinedStateErrorMessage(key, action) { + var actionType = action && action.type; + var actionName = actionType && '"' + actionType.toString() + '"' || 'an action'; -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + return 'Given action ' + actionName + ', reducer "' + key + '" returned undefined. ' + 'To ignore an action, you must explicitly return the previous state. ' + 'If you want this reducer to hold no value, you can return null instead of undefined.'; +} -var store = new _store.default(); -/** - * Public API to use flags - */ +function getUnexpectedStateShapeWarningMessage(inputState, reducers, action, unexpectedKeyCache) { + var reducerKeys = Object.keys(reducers); + var argumentName = action && action.type === _createStore__WEBPACK_IMPORTED_MODULE_0__["ActionTypes"].INIT ? 'preloadedState argument passed to createStore' : 'previous state received by the reducer'; -var flag = function flag() { - var args = [].slice.call(arguments); + if (reducerKeys.length === 0) { + return 'Store does not have a valid reducer. Make sure the argument passed ' + 'to combineReducers is an object whose values are reducers.'; + } - if (args.length === 1) { - return store.get(args[0]); - } else { - store.set(args[0], args[1]); - return args[1]; + if (!Object(lodash_es_isPlainObject__WEBPACK_IMPORTED_MODULE_1__["default"])(inputState)) { + return 'The ' + argumentName + ' has unexpected type of "' + {}.toString.call(inputState).match(/\s([a-z|A-Z]+)/)[1] + '". Expected argument to be an object with the following ' + ('keys: "' + reducerKeys.join('", "') + '"'); } -}; -/** List all flags from the store */ + var unexpectedKeys = Object.keys(inputState).filter(function (key) { + return !reducers.hasOwnProperty(key) && !unexpectedKeyCache[key]; + }); -var listFlags = function listFlags() { - return store.keys().sort(); -}; -/** Resets all the flags */ + unexpectedKeys.forEach(function (key) { + unexpectedKeyCache[key] = true; + }); + if (unexpectedKeys.length > 0) { + return 'Unexpected ' + (unexpectedKeys.length > 1 ? 'keys' : 'key') + ' ' + ('"' + unexpectedKeys.join('", "') + '" found in ' + argumentName + '. ') + 'Expected to find one of the known reducer keys instead: ' + ('"' + reducerKeys.join('", "') + '". Unexpected keys will be ignored.'); + } +} + +function assertReducerShape(reducers) { + Object.keys(reducers).forEach(function (key) { + var reducer = reducers[key]; + var initialState = reducer(undefined, { type: _createStore__WEBPACK_IMPORTED_MODULE_0__["ActionTypes"].INIT }); -exports.listFlags = listFlags; + if (typeof initialState === 'undefined') { + throw new Error('Reducer "' + key + '" returned undefined during initialization. ' + 'If the state passed to the reducer is undefined, you must ' + 'explicitly return the initial state. The initial state may ' + 'not be undefined. If you don\'t want to set a value for this reducer, ' + 'you can use null instead of undefined.'); + } -var resetFlags = function resetFlags() { - listFlags().forEach(function (name) { - return store.remove(name); + var type = '@@redux/PROBE_UNKNOWN_ACTION_' + Math.random().toString(36).substring(7).split('').join('.'); + if (typeof reducer(undefined, { type: type }) === 'undefined') { + throw new Error('Reducer "' + key + '" returned undefined when probed with a random type. ' + ('Don\'t try to handle ' + _createStore__WEBPACK_IMPORTED_MODULE_0__["ActionTypes"].INIT + ' or other actions in "redux/*" ') + 'namespace. They are considered private. Instead, you must return the ' + 'current state for any unknown actions, unless it is undefined, ' + 'in which case you must return the initial state, regardless of the ' + 'action type. The initial state may not be undefined, but can be null.'); + } }); -}; +} + /** - * Enables several flags + * Turns an object whose values are different reducer functions, into a single + * reducer function. It will call every child reducer, and gather their results + * into a single state object, whose keys correspond to the keys of the passed + * reducer functions. * - * Supports passing either object flagName -> flagValue + * @param {Object} reducers An object whose values correspond to different + * reducer functions that need to be combined into one. One handy way to obtain + * it is to use ES6 `import * as reducers` syntax. The reducers may never return + * undefined for any action. Instead, they should return their initial state + * if the state passed to them was undefined, and the current state for any + * unrecognized action. * - * @param {string[]|Object} flagsToEnable + * @returns {Function} A reducer function that invokes every reducer inside the + * passed object, and builds a state object with the same shape. */ +function combineReducers(reducers) { + var reducerKeys = Object.keys(reducers); + var finalReducers = {}; + for (var i = 0; i < reducerKeys.length; i++) { + var key = reducerKeys[i]; + if (true) { + if (typeof reducers[key] === 'undefined') { + Object(_utils_warning__WEBPACK_IMPORTED_MODULE_2__["default"])('No reducer provided for key "' + key + '"'); + } + } -exports.resetFlags = resetFlags; - -var enable = function enable(flagsToEnable) { - var flagNameToValue; - - if (Array.isArray(flagsToEnable)) { - // eslint-disable-next-line no-console - console.log('flags.enable: Deprecation warning: prefer to use an object { flag1: true, flag2: true } instead of an array when using flags.enable'); - flagNameToValue = flagsToEnable.map(function (flagName) { - return [flagName, true]; - }); - } else if (typeof flagsToEnable === 'object') { - flagNameToValue = Object.entries(flagsToEnable); + if (typeof reducers[key] === 'function') { + finalReducers[key] = reducers[key]; + } } + var finalReducerKeys = Object.keys(finalReducers); - if (!flagNameToValue) { - return; + var unexpectedKeyCache = void 0; + if (true) { + unexpectedKeyCache = {}; } - var _iterator = _createForOfIteratorHelper(flagNameToValue), - _step; - + var shapeAssertionError = void 0; try { - for (_iterator.s(); !(_step = _iterator.n()).done;) { - var _step$value = (0, _slicedToArray2.default)(_step.value, 2), - flagName = _step$value[0], - flagValue = _step$value[1]; - - flag(flagName, flagValue); - } - } catch (err) { - _iterator.e(err); - } finally { - _iterator.f(); + assertReducerShape(finalReducers); + } catch (e) { + shapeAssertionError = e; } -}; -/** - * Initializes flags from the remote endpoint serving instance flags - * - * @private - * @see https://docs.cozy.io/en/cozy-stack/settings/#get-settingsflags - * @param {CozyClient} client - */ - - -exports.enable = enable; -var initializeFromRemote = /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(client) { - var _yield$client$query, attributes; - - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - _context.next = 2; - return client.query((0, _dsl.Q)('io.cozy.settings').getById('flags')); + return function combination() { + var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var action = arguments[1]; - case 2: - _yield$client$query = _context.sent; - attributes = _yield$client$query.data.attributes; - enable(attributes); + if (shapeAssertionError) { + throw shapeAssertionError; + } - case 5: - case "end": - return _context.stop(); - } + if (true) { + var warningMessage = getUnexpectedStateShapeWarningMessage(state, finalReducers, action, unexpectedKeyCache); + if (warningMessage) { + Object(_utils_warning__WEBPACK_IMPORTED_MODULE_2__["default"])(warningMessage); } - }, _callee); - })); + } - return function initializeFromRemote(_x) { - return _ref.apply(this, arguments); + var hasChanged = false; + var nextState = {}; + for (var _i = 0; _i < finalReducerKeys.length; _i++) { + var _key = finalReducerKeys[_i]; + var reducer = finalReducers[_key]; + var previousStateForKey = state[_key]; + var nextStateForKey = reducer(previousStateForKey, action); + if (typeof nextStateForKey === 'undefined') { + var errorMessage = getUndefinedStateErrorMessage(_key, action); + throw new Error(errorMessage); + } + nextState[_key] = nextStateForKey; + hasChanged = hasChanged || nextStateForKey !== previousStateForKey; + } + return hasChanged ? nextState : state; }; -}(); - -exports.initializeFromRemote = initializeFromRemote; +} -var capitalize = function capitalize(str) { - return str[0].toUpperCase() + str.slice(1); -}; +/***/ }), +/* 634 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { -var getTemplateData = function getTemplateData(attr) { - if (typeof document === 'undefined') { - return null; +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return warning; }); +/** + * Prints a warning in the console if it exists. + * + * @param {String} message The warning message. + * @returns {void} + */ +function warning(message) { + /* eslint-disable no-console */ + if (typeof console !== 'undefined' && typeof console.error === 'function') { + console.error(message); } + /* eslint-enable no-console */ + try { + // This error was thrown as a convenience so that if you enable + // "break on all exceptions" in your console, + // it would pause the execution at this line. + throw new Error(message); + /* eslint-disable no-empty */ + } catch (e) {} + /* eslint-enable no-empty */ +} - var allDataNode = document.querySelector('[data-cozy]'); - var attrNode = document.querySelector("[data-cozy-".concat(attr, "]")); +/***/ }), +/* 635 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return bindActionCreators; }); +function bindActionCreator(actionCreator, dispatch) { + return function () { + return dispatch(actionCreator.apply(undefined, arguments)); + }; +} - try { - if (allDataNode) { - return JSON.parse(allDataNode.dataset.cozy)[attr]; - } else if (attrNode) { - // eslint-disable-next-line no-console - console.warn('Prefer to use [data-cozy] to store template data. <div data-cozy="{{.CozyData}}></div>. "'); - return JSON.parse(attrNode.dataset["cozy".concat(capitalize(attr))]); - } else { - return null; - } - } catch (e) { - return null; - } -}; /** - * Initialize from the template data injected by cozy-stack into the DOM + * Turns an object whose values are action creators, into an object with the + * same keys, but with every function wrapped into a `dispatch` call so they + * may be invoked directly. This is just a convenience method, as you can call + * `store.dispatch(MyActionCreators.doSomething())` yourself just fine. * - * @private - * @see https://docs.cozy.io/en/cozy-stack/client-app-dev/#good-practices-for-your-application + * For convenience, you can also pass a single function as the first argument, + * and get a function in return. + * + * @param {Function|Object} actionCreators An object whose values are action + * creator functions. One handy way to obtain it is to use ES6 `import * as` + * syntax. You may also pass a single function. + * + * @param {Function} dispatch The `dispatch` function available on your Redux + * store. * - * @returns {Boolean} - False is DOM initialization could not be completed, true otherwise + * @returns {Function|Object} The object mimicking the original object, but with + * every action creator wrapped into the `dispatch` call. If you passed a + * function as `actionCreators`, the return value will also be a single + * function. */ +function bindActionCreators(actionCreators, dispatch) { + if (typeof actionCreators === 'function') { + return bindActionCreator(actionCreators, dispatch); + } + if (typeof actionCreators !== 'object' || actionCreators === null) { + throw new Error('bindActionCreators expected an object or a function, instead received ' + (actionCreators === null ? 'null' : typeof actionCreators) + '. ' + 'Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?'); + } -exports.getTemplateData = getTemplateData; - -var initializeFromDOM = /*#__PURE__*/function () { - var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() { - var domData; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - domData = getTemplateData('flags'); + var keys = Object.keys(actionCreators); + var boundActionCreators = {}; + for (var i = 0; i < keys.length; i++) { + var key = keys[i]; + var actionCreator = actionCreators[key]; + if (typeof actionCreator === 'function') { + boundActionCreators[key] = bindActionCreator(actionCreator, dispatch); + } + } + return boundActionCreators; +} - if (domData) { - _context2.next = 3; - break; - } +/***/ }), +/* 636 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - return _context2.abrupt("return", false); +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return applyMiddleware; }); +/* harmony import */ var _compose__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(637); +var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; - case 3: - enable(domData); - return _context2.abrupt("return", true); - case 5: - case "end": - return _context2.stop(); - } - } - }, _callee2); - })); - return function initializeFromDOM() { - return _ref2.apply(this, arguments); - }; -}(); /** - * Initialize flags from DOM if possible, otherwise from remote endpoint + * Creates a store enhancer that applies middleware to the dispatch method + * of the Redux store. This is handy for a variety of tasks, such as expressing + * asynchronous actions in a concise manner, or logging every action payload. * - * @example + * See `redux-thunk` package as an example of the Redux middleware. * - * Flags can be taken from the flags injected by the stack - * ``` - * <div data-cozy="{{ .CozyData }}"></div> + * Because middleware is potentially asynchronous, this should be the first + * store enhancer in the composition chain. * - * // not recommended but possible - * <div data-flags="{{ .Flags }}"></div> - * ```` + * Note that each middleware will be given the `dispatch` and `getState` functions + * as named arguments. * - * @param {CozyClient} client - A CozyClient - * @return {Promise} Resolves when flags have been initialized + * @param {...Function} middlewares The middleware chain to be applied. + * @returns {Function} A store enhancer applying the middleware. */ +function applyMiddleware() { + for (var _len = arguments.length, middlewares = Array(_len), _key = 0; _key < _len; _key++) { + middlewares[_key] = arguments[_key]; + } + return function (createStore) { + return function (reducer, preloadedState, enhancer) { + var store = createStore(reducer, preloadedState, enhancer); + var _dispatch = store.dispatch; + var chain = []; -exports.initializeFromDOM = initializeFromDOM; - -var initialize = /*#__PURE__*/function () { - var _ref3 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(client) { - var domRes; - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - _context3.next = 2; - return initializeFromDOM(); - - case 2: - domRes = _context3.sent; - - if (!(domRes == false)) { - _context3.next = 6; - break; - } - - _context3.next = 6; - return initializeFromRemote(client); - - case 6: - case "end": - return _context3.stop(); + var middlewareAPI = { + getState: store.getState, + dispatch: function dispatch(action) { + return _dispatch(action); } - } - }, _callee3); - })); + }; + chain = middlewares.map(function (middleware) { + return middleware(middlewareAPI); + }); + _dispatch = _compose__WEBPACK_IMPORTED_MODULE_0__["default"].apply(undefined, chain)(store.dispatch); - return function initialize(_x2) { - return _ref3.apply(this, arguments); + return _extends({}, store, { + dispatch: _dispatch + }); + }; }; -}(); - -exports.initialize = initialize; - -var FlagClientPlugin = /*#__PURE__*/function () { - function FlagClientPlugin(client) { - (0, _classCallCheck2.default)(this, FlagClientPlugin); - this.client = client; - this.handleLogin = this.handleLogin.bind(this); - this.handleLogout = this.handleLogout.bind(this); - this.client.on('login', this.handleLogin); - this.client.on('logout', this.handleLogout); - this.setupInitializing(); - if (client.isLogged) this.handleLogin(); - } - /** - * Fetches and sets flags from remote - */ - - - (0, _createClass2.default)(FlagClientPlugin, [{ - key: "refresh", - value: function () { - var _refresh = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4() { - return _regenerator.default.wrap(function _callee4$(_context4) { - while (1) { - switch (_context4.prev = _context4.next) { - case 0: - _context4.next = 2; - return flag.initializeFromRemote(this.client); - - case 2: - case "end": - return _context4.stop(); - } - } - }, _callee4, this); - })); - - function refresh() { - return _refresh.apply(this, arguments); - } +} - return refresh; - }() - /** - * Sets up a promise that can be awaited to wait for flag complete - * initialization - */ +/***/ }), +/* 637 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - }, { - key: "setupInitializing", - value: function setupInitializing() { - var _this = this; +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return compose; }); +/** + * Composes single-argument functions from right to left. The rightmost + * function can take multiple arguments as it provides the signature for + * the resulting composite function. + * + * @param {...Function} funcs The functions to compose. + * @returns {Function} A function obtained by composing the argument functions + * from right to left. For example, compose(f, g, h) is identical to doing + * (...args) => f(g(h(...args))). + */ - this.initializing = new Promise(function (resolve) { - _this.resolveInitializing = resolve; - }); - } - }, { - key: "handleLogin", - value: function () { - var _handleLogin = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5() { - return _regenerator.default.wrap(function _callee5$(_context5) { - while (1) { - switch (_context5.prev = _context5.next) { - case 0: - _context5.next = 2; - return flag.initialize(this.client); +function compose() { + for (var _len = arguments.length, funcs = Array(_len), _key = 0; _key < _len; _key++) { + funcs[_key] = arguments[_key]; + } - case 2: - this.resolveInitializing(); - this.client.emit('plugin:flag:login'); + if (funcs.length === 0) { + return function (arg) { + return arg; + }; + } - case 4: - case "end": - return _context5.stop(); - } - } - }, _callee5, this); - })); + if (funcs.length === 1) { + return funcs[0]; + } - function handleLogin() { - return _handleLogin.apply(this, arguments); - } + return funcs.reduce(function (a, b) { + return function () { + return a(b.apply(undefined, arguments)); + }; + }); +} - return handleLogin; - }() - }, { - key: "handleLogout", - value: function () { - var _handleLogout = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee6() { - return _regenerator.default.wrap(function _callee6$(_context6) { - while (1) { - switch (_context6.prev = _context6.next) { - case 0: - flag.reset(); - this.setupInitializing(); - this.client.emit('plugin:flag:logout'); +/***/ }), +/* 638 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { - case 3: - case "end": - return _context6.stop(); - } - } - }, _callee6, this); - })); +"use strict"; +__webpack_require__.r(__webpack_exports__); +function createThunkMiddleware(extraArgument) { + return function (_ref) { + var dispatch = _ref.dispatch, + getState = _ref.getState; + return function (next) { + return function (action) { + if (typeof action === 'function') { + return action(dispatch, getState, extraArgument); + } - function handleLogout() { - return _handleLogout.apply(this, arguments); - } + return next(action); + }; + }; + }; +} - return handleLogout; - }() - }]); - return FlagClientPlugin; -}(); +var thunk = createThunkMiddleware(); +thunk.withExtraArgument = createThunkMiddleware; -FlagClientPlugin.pluginName = 'flags'; -flag.store = store; -flag.list = listFlags; -flag.reset = resetFlags; -flag.enable = enable; -flag.initializeFromRemote = initializeFromRemote; -flag.initializeFromDOM = initializeFromDOM; -flag.initialize = initialize; -flag.plugin = FlagClientPlugin; -var _default = flag; -exports.default = _default; +/* harmony default export */ __webpack_exports__["default"] = (thunk); /***/ }), -/* 623 */ +/* 639 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = void 0; +exports.extractAndMergeDocument = exports.getCollectionFromSlice = exports.getDocumentFromSlice = exports.default = exports.mergeDocumentsWithRelationships = void 0; -var _slicedToArray2 = _interopRequireDefault(__webpack_require__(538)); +var _defineProperty2 = _interopRequireDefault(__webpack_require__(546)); -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +var _objectSpread4 = _interopRequireDefault(__webpack_require__(545)); -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +var _queries = __webpack_require__(640); -var _microee = _interopRequireDefault(__webpack_require__(576)); +var _mutations = __webpack_require__(662); -var _lsAdapter = _interopRequireDefault(__webpack_require__(624)); +var _keyBy = _interopRequireDefault(__webpack_require__(665)); -/** - * In memory key value storage. - * - * Can potentially be backed by localStorage if present +var _get = _interopRequireDefault(__webpack_require__(372)); - * Emits `change` when a key is set (eventEmitter) - */ -var FlagStore = /*#__PURE__*/function () { - function FlagStore() { - (0, _classCallCheck2.default)(this, FlagStore); - this.store = {}; +var _isEqual = _interopRequireDefault(__webpack_require__(669)); - if (typeof localStorage !== 'undefined') { - this.longtermStore = _lsAdapter.default; +var _helpers = __webpack_require__(663); + +var storeDocument = function storeDocument(state, document) { + var type = document._type; + + if (!type) { + if (true) { + console.warn('Document without _type', document); } - this.restore(); + throw new Error('Document without _type'); } - (0, _createClass2.default)(FlagStore, [{ - key: "restore", - value: function restore() { - if (!this.longtermStore) { - return; - } + if (!(0, _helpers.properId)(document)) { + if (true) { + console.warn('Document without id', document); + } - var allValues = this.longtermStore.getAll(); + throw new Error('Document without id'); + } - for (var _i = 0, _Object$entries = Object.entries(allValues); _i < _Object$entries.length; _i++) { - var _Object$entries$_i = (0, _slicedToArray2.default)(_Object$entries[_i], 2), - flag = _Object$entries$_i[0], - val = _Object$entries$_i[1]; + var existingDoc = (0, _get.default)(state, [type, (0, _helpers.properId)(document)]); - this.store[flag] = val; - this.emit('change', flag); - } - } - }, { - key: "keys", - value: function keys() { - return Object.keys(this.store); - } - }, { - key: "get", - value: function get(name) { - if (!this.store.hasOwnProperty(name)) { - this.store[name] = null; - } + if ((0, _isEqual.default)(existingDoc, document)) { + return state; + } else { + return (0, _objectSpread4.default)({}, state, (0, _defineProperty2.default)({}, type, (0, _objectSpread4.default)({}, state[type], (0, _defineProperty2.default)({}, (0, _helpers.properId)(document), mergeDocumentsWithRelationships(existingDoc, document))))); + } +}; - return this.store[name]; - } - }, { - key: "set", - value: function set(name, value) { - if (this.longtermStore) { - this.longtermStore.setItem(name, value); - } +var mergeDocumentsWithRelationships = function mergeDocumentsWithRelationships() { + var prevDocument = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var nextDocument = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var merged = (0, _objectSpread4.default)({}, prevDocument, nextDocument); + if (prevDocument.relationships || nextDocument.relationships) merged.relationships = (0, _objectSpread4.default)({}, prevDocument.relationships, nextDocument.relationships); + return merged; +}; // reducer - this.store[name] = value; - this.emit('change', name); - } - }, { - key: "remove", - value: function remove(name) { - delete this.store[name]; - if (this.longtermStore) { - this.longtermStore.removeItem(name); - } +exports.mergeDocumentsWithRelationships = mergeDocumentsWithRelationships; - this.emit('change', name); - } - }]); - return FlagStore; -}(); +var documents = function documents() { + var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var action = arguments.length > 1 ? arguments[1] : undefined; -_microee.default.mixin(FlagStore); + if (!(0, _queries.isReceivingData)(action) && !(0, _mutations.isReceivingMutationResult)(action)) { + return state; + } -var _default = FlagStore; -exports.default = _default; + var _action$response = action.response, + data = _action$response.data, + included = _action$response.included; + if (!data || Array.isArray(data) && data.length === 0) return state; + var updatedStateWithIncluded = included ? included.reduce(storeDocument, state) : state; -/***/ }), -/* 624 */ -/***/ (function(module, exports, __webpack_require__) { + if (!Array.isArray(data)) { + return storeDocument(updatedStateWithIncluded, data); + } -"use strict"; + return extractAndMergeDocument(data, updatedStateWithIncluded); +}; +var _default = documents; // selector -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.getKey = exports.prefix = void 0; +exports.default = _default; -function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } +var getDocumentFromSlice = function getDocumentFromSlice() { + var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var doctype = arguments.length > 1 ? arguments[1] : undefined; + var id = arguments.length > 2 ? arguments[2] : undefined; -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + if (!doctype) { + throw new Error('getDocumentFromSlice: Cannot retrieve document with undefined doctype'); + } -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + if (!id) { + throw new Error('getDocumentFromSlice: Cannot retrieve document with undefined id'); + } -/* global localStorage */ -var prefix = 'flag__'; -exports.prefix = prefix; + if (!state[doctype]) { + if (true) { + console.warn("getDocumentFromSlice: ".concat(doctype, " is absent from the store's documents. State is"), state); + } -var getKey = function getKey(name) { - return prefix + name; -}; + return null; + } else if (!state[doctype][id]) { + if (true) { + console.warn("getDocumentFromSlice: ".concat(doctype, ":").concat(id, " is absent from the store documents. State is"), state); + } -exports.getKey = getKey; + return null; + } -var listFlagLocalStorage = function listFlagLocalStorage() { - return Object.keys(localStorage).filter(function (x) { - return x.indexOf(prefix) === 0; - }).map(function (x) { - return x.replace(prefix, ''); - }); + return state[doctype][id]; }; -/** - * Gets a flag from localStorage, parses value from JSON - * - * @param {String} flag - */ +exports.getDocumentFromSlice = getDocumentFromSlice; + +var getCollectionFromSlice = function getCollectionFromSlice() { + var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var doctype = arguments.length > 1 ? arguments[1] : undefined; -var getItem = function getItem(flag) { - var val = localStorage.getItem(getKey(flag)); - var parsed = val ? JSON.parse(val) : val; - return parsed; -}; -/** - * Stores a flag in localStorage, stringifies the value for storage - * - * @param {String} flag - * @param {String} value - */ + if (!doctype) { + throw new Error('getDocumentFromSlice: Cannot retrieve document with undefined doctype'); + } + + if (!state[doctype]) { + if (true) { + console.warn("getCollectionFromSlice: ".concat(doctype, " is absent from the store documents. State is"), state); + } + return null; + } -var setItem = function setItem(flag, value) { - var str = JSON.stringify(value); - return localStorage.setItem(getKey(flag), str); + return Object.values(state[doctype]); }; -/** - * Removes a flag from localStorage - * - * @param {String} flag - */ +/* + This method has been created in order to get a returned object + in `data` with the full set on information coming potentielly from + ìncluded` + This method should be somewhere else. The `document` shall not be + deal with included / data and so on. -var removeItem = function removeItem(flag) { - return localStorage.removeItem(getKey(flag)); -}; -/** - * Returns all stored flags as an object - */ + This method takes data and included and merge both sources + together. It should be always up to date. The returned object + will be as full of informations as it can be. +*/ -var getAll = function getAll() { - var res = {}; +exports.getCollectionFromSlice = getCollectionFromSlice; - var _iterator = _createForOfIteratorHelper(listFlagLocalStorage()), - _step; +var extractAndMergeDocument = function extractAndMergeDocument(data, updatedStateWithIncluded) { + var doctype = data[0]._type; - try { - for (_iterator.s(); !(_step = _iterator.n()).done;) { - var flag = _step.value; - res[flag] = getItem(flag); - } - } catch (err) { - _iterator.e(err); - } finally { - _iterator.f(); + if (!doctype) { + throw new Error('Document without _type', data[0]); } - return res; -}; -/** - * Clears all the flags from localstorage - */ + var sortedData = (0, _keyBy.default)(data, _helpers.properId); + var mergedData = {}; + if (updatedStateWithIncluded && updatedStateWithIncluded[doctype]) { + Object.values(updatedStateWithIncluded[doctype]).map(function (dataState) { + if (!mergedData[doctype]) mergedData[doctype] = {}; + var id = (0, _helpers.properId)(dataState); + + if (sortedData[id]) { + mergedData[doctype][id] = (0, _objectSpread4.default)({}, dataState, sortedData[id], mergedData[doctype][id]); + } else { + mergedData[doctype][id] = (0, _objectSpread4.default)({}, dataState, mergedData[doctype][id]); + } + }); + } -var clearAll = function clearAll() { - var _iterator2 = _createForOfIteratorHelper(listFlagLocalStorage()), - _step2; + Object.values(sortedData).map(function (data) { + if (!mergedData[doctype]) mergedData[doctype] = {}; + var id = (0, _helpers.properId)(data); - try { - for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) { - var flag = _step2.value; - removeItem(flag); + if (mergedData[doctype][id]) { + mergedData[doctype][id] = (0, _objectSpread4.default)({}, mergedData[doctype][id], data); + } else { + mergedData[doctype][id] = data; } - } catch (err) { - _iterator2.e(err); - } finally { - _iterator2.f(); - } + }); + return (0, _objectSpread4.default)({}, updatedStateWithIncluded, mergedData); }; -var _default = { - getAll: getAll, - getItem: getItem, - setItem: setItem, - clearAll: clearAll, - removeItem: removeItem -}; -exports.default = _default; +exports.extractAndMergeDocument = extractAndMergeDocument; /***/ }), -/* 625 */ +/* 640 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.QueryDefinition = exports.MutationTypes = exports.Mutations = exports.getDoctypeFromOperation = exports.uploadFile = exports.removeReferencedBy = exports.addReferencedBy = exports.removeReferencesTo = exports.addReferencesTo = exports.deleteDocument = exports.updateDocuments = exports.updateDocument = exports.createDocument = exports.isAGetByIdQuery = exports.Q = void 0; - -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +exports.getQueryFromSlice = exports.receiveQueryError = exports.receiveQueryResult = exports.initQuery = exports.default = exports.makeSorterFromDefinition = exports.convert$gtNullSelectors = exports.isReceivingData = exports.isQueryAction = void 0; -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +var _defineProperty2 = _interopRequireDefault(__webpack_require__(546)); -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +var _slicedToArray2 = _interopRequireDefault(__webpack_require__(540)); -var _isArray = _interopRequireDefault(__webpack_require__(75)); +var _objectSpread3 = _interopRequireDefault(__webpack_require__(545)); -var _findKey = _interopRequireDefault(__webpack_require__(626)); +var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(542)); -var _types = __webpack_require__(628); +var _mapValues = _interopRequireDefault(__webpack_require__(641)); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +var _difference = _interopRequireDefault(__webpack_require__(645)); -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +var _intersection = _interopRequireDefault(__webpack_require__(649)); -/** - * @typedef PartialQueryDefinition - * - * @property {Array} [indexedFields] - * @property {Array} [sort] - * @property {object} [selector] - */ +var _concat = _interopRequireDefault(__webpack_require__(652)); -/** - * @typedef {object} MangoSelector - */ +var _isPlainObject = _interopRequireDefault(__webpack_require__(604)); -/** - * @typedef {Array} Cursor - */ +var _uniq = _interopRequireDefault(__webpack_require__(653)); -/** - * Chainable API to create query definitions to retrieve documents - * from a Cozy. `QueryDefinition`s are sent to links. - * - * @augments {object} - */ -var QueryDefinition = /*#__PURE__*/function () { - /** - * @class - * - * @param {object} options Initial options for the query definition - * @param {string} [options.doctype] - The doctype of the doc. - * @param {string} [options.id] - The id of the doc. - * @param {Array} [options.ids] - The ids of the docs. - * @param {object} [options.selector] - The selector to query the docs. - * @param {Array} [options.fields] - The fields to return. - * @param {Array} [options.indexedFields] - The fields to index. - * @param {object} [options.partialFilter] - The partial index definition to filter docs. - * @param {Array} [options.sort] - The sorting params. - * @param {Array<string>} [options.includes] - The docs to include. - * @param {string} [options.referenced] - The referenced document. - * @param {number|null} [options.limit] - The document's limit to return. - * @param {number} [options.skip] - The number of docs to skip. - * @param {Cursor} [options.cursor] - The cursor to paginate views. - * @param {string} [options.bookmark] - The bookmark to paginate mango queries. - */ - function QueryDefinition() { - var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - (0, _classCallCheck2.default)(this, QueryDefinition); - this.doctype = options.doctype; - this.id = options.id; - this.ids = options.ids; - this.selector = options.selector; - this.fields = options.fields; - this.indexedFields = options.indexedFields; - this.partialFilter = options.partialFilter; - this.sort = options.sort; - this.includes = options.includes; - this.referenced = options.referenced; - this.limit = options.limit; - this.skip = options.skip; - this.cursor = options.cursor; - this.bookmark = options.bookmark; - } - /** - * Checks if the sort order matches the index' fields order. - * - * When sorting with CouchDB, it is required to: - * - use indexed fields - * - keep the same order than the indexed fields. - * - * See https://docs.cozy.io/en/tutorials/data/queries/#sort-data-with-mango - * - * @param {PartialQueryDefinition} obj - A partial QueryDefinition to check - */ +var _orderBy = _interopRequireDefault(__webpack_require__(654)); +var _isArray = _interopRequireDefault(__webpack_require__(75)); - (0, _createClass2.default)(QueryDefinition, [{ - key: "checkSortOrder", - value: function checkSortOrder(_ref) { - var sort = _ref.sort, - selector = _ref.selector, - indexedFields = _ref.indexedFields; +var _isString = _interopRequireDefault(__webpack_require__(74)); - var _sort = this.sort || sort; +var _documents = __webpack_require__(639); - var _selector = this.selector || selector || {}; +var _mutations = __webpack_require__(662); - var _indexedFields = this.indexedFields || indexedFields; +var _helpers = __webpack_require__(663); - if (!_sort) { - return; - } +var _sift = _interopRequireDefault(__webpack_require__(664)); - var fieldsToIndex = _indexedFields || Object.keys(_selector); +var _get = _interopRequireDefault(__webpack_require__(372)); - if (!fieldsToIndex || fieldsToIndex.length < 1) { - return; - } +var INIT_QUERY = 'INIT_QUERY'; +var RECEIVE_QUERY_RESULT = 'RECEIVE_QUERY_RESULT'; +var RECEIVE_QUERY_ERROR = 'RECEIVE_QUERY_ERROR'; - if (_sort.length > fieldsToIndex.length) { - console.warn('You should not sort on non-indexed fields'); - return; - } +var isQueryAction = function isQueryAction(action) { + return [INIT_QUERY, RECEIVE_QUERY_RESULT, RECEIVE_QUERY_ERROR].indexOf(action.type) !== -1; +}; - for (var i = 0; i < _sort.length; i++) { - if (Object.keys(_sort[i])[0] !== fieldsToIndex[i]) { - console.warn('The sort order should be the same than the indexed fields'); - return; - } - } - } - /** - * Checks the selector predicates. - * - * It is useful to warn the developer when a partial index might be used. - * - * @param {MangoSelector} selector - The selector definition - * @returns {void} - */ +exports.isQueryAction = isQueryAction; - }, { - key: "checkSelector", - value: function checkSelector(selector) { - var hasExistsFalse = (0, _findKey.default)(selector, ['$exists', false]); +var isReceivingData = function isReceivingData(action) { + return action.type === RECEIVE_QUERY_RESULT; +}; // reducers - if (hasExistsFalse) { - console.warn('The "$exists: false" predicate should be defined as a partial index for better performance'); - } - var hasNe = (0, _findKey.default)(selector, '$ne'); +exports.isReceivingData = isReceivingData; +var queryInitialState = { + id: null, + definition: null, + fetchStatus: 'pending', + lastFetch: null, + lastUpdate: null, + lastError: null, + hasMore: false, + count: 0, + data: [], + bookmark: null +}; - if (hasNe) { - console.info('The use of the $ne operator is more efficient with a partial index.'); - } - } - /** - * Query a single document on its id. - * - * @param {string} id The document id. - * @returns {QueryDefinition} The QueryDefinition object. - */ +var updateQueryDataFromResponse = function updateQueryDataFromResponse(queryState, response, nextDocuments) { + var updatedIds = (0, _uniq.default)([].concat((0, _toConsumableArray2.default)(queryState.data), (0, _toConsumableArray2.default)(response.data.map(_helpers.properId)))); - }, { - key: "getById", - value: function getById(id) { - if (!id) { - throw new Error('getById called with undefined id'); - } + if (queryState.definition.sort) { + var sorter = makeSorterFromDefinition(queryState.definition); + var doctype = queryState.definition.doctype; + var allDocs = nextDocuments[doctype]; + var docs = updatedIds.map(function (_id) { + return allDocs[_id]; + }); + var sortedDocs = sorter(docs); + updatedIds = sortedDocs.map(_helpers.properId); + } - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - id: id - })); - } - /** - * Query several documents on their ids. - * - * @param {Array} ids The documents ids. - * @returns {QueryDefinition} The QueryDefinition object. - */ + return updatedIds; +}; - }, { - key: "getByIds", - value: function getByIds(ids) { - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - ids: ids - })); - } - /** - * Query documents with a [mango selector](http://docs.couchdb.org/en/latest/api/database/find.html#find-selectors). - * Each field passed in the selector will be indexed, except if the indexField option is used. - * - * @param {MangoSelector} selector The Mango selector. - * @returns {QueryDefinition} The QueryDefinition object. - */ +var query = function query() { + var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : queryInitialState; + var action = arguments.length > 1 ? arguments[1] : undefined; + var nextDocuments = arguments.length > 2 ? arguments[2] : undefined; - }, { - key: "where", - value: function where(selector) { - this.checkSortOrder({ - selector: selector + switch (action.type) { + case INIT_QUERY: + return (0, _objectSpread3.default)({}, state, { + id: action.queryId, + definition: action.queryDefinition, + fetchStatus: 'loading' }); - this.checkSelector(selector); - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - selector: selector - })); - } - /** - * Specify which fields of each object should be returned. If it is omitted, the entire object is returned. - * - * @param {Array} fields The fields to return. - * @returns {QueryDefinition} The QueryDefinition object. - */ - }, { - key: "select", - value: function select(fields) { - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - fields: fields - })); - } - /** - * Specify which fields should be indexed. This prevent the automatic indexing of the mango fields. - * - * @param {Array} indexedFields The fields to index. - * @returns {QueryDefinition} The QueryDefinition object. - */ + case RECEIVE_QUERY_RESULT: + { + var response = action.response; + var common = { + fetchStatus: 'loaded', + lastFetch: Date.now(), + lastUpdate: Date.now() + }; - }, { - key: "indexFields", - value: function indexFields(indexedFields) { - this.checkSortOrder({ - indexedFields: indexedFields - }); - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - indexedFields: indexedFields - })); - } - /** - * Specify a [partial index](https://docs.couchdb.org/en/stable/api/database/find.html#find-partial-indexes). - * The filter must follow the same syntax than the selector. - * - * A partial index includes a filter, used to select documents before the indexing. - * You can find more information about partial indexes [here](https://docs.cozy.io/en/tutorials/data/advanced/#partial-indexes) - * - * @param {object} partialFilter - The filter definition. - */ + if (!response.data) { + return state; + } - }, { - key: "partialIndex", - value: function partialIndex(partialFilter) { - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - partialFilter: partialFilter - })); - } - /** - * Specify how to sort documents, following the [sort syntax](http://docs.couchdb.org/en/latest/api/database/find.html#find-sort) - * - * @param {Array} sort The list of field name and direction pairs. - * @returns {QueryDefinition} The QueryDefinition object. - */ + if (!Array.isArray(response.data)) { + return (0, _objectSpread3.default)({}, state, common, { + hasMore: false, + count: 1, + data: [(0, _helpers.properId)(response.data)] + }); + } - }, { - key: "sortBy", - value: function sortBy(sort) { - if (!(0, _isArray.default)(sort)) { - throw new Error("Invalid sort, should be an array ([{ label: \"desc\"}, { name: \"asc\"}]), you passed ".concat(JSON.stringify(sort), ".")); + return (0, _objectSpread3.default)({}, state, common, { + bookmark: response.bookmark || null, + hasMore: response.next !== undefined ? response.next : state.hasMore, + count: response.meta && response.meta.count ? response.meta.count : response.data.length, + data: updateQueryDataFromResponse(state, response, nextDocuments) + }); } - this.checkSortOrder({ - sort: sort + case RECEIVE_QUERY_ERROR: + return (0, _objectSpread3.default)({}, state, { + id: action.queryId, + fetchStatus: 'failed', + lastError: action.error }); - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - sort: sort - })); - } - /** - * Includes documents having a relationships with the ones queried. - * For example, query albums including the photos. - * - * @param {Array} includes The documents to include. - * @returns {QueryDefinition} The QueryDefinition object. - */ - }, { - key: "include", - value: function include(includes) { - if (!Array.isArray(includes)) { - throw new Error('include() takes an array of relationship names'); - } + default: + return state; + } +}; - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - includes: includes - })); - } - /** - * Maximum number of documents returned, useful for pagination. Default is 100. - * - * @param {number} limit The document's limit. - * @returns {QueryDefinition} The QueryDefinition object. - */ +var convert$gtNullSelectors = function convert$gtNullSelectors(selector) { + var result = {}; - }, { - key: "limitBy", - value: function limitBy(limit) { - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - limit: limit - })); - } - }, { - key: "UNSAFE_noLimit", - value: function UNSAFE_noLimit() { - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - limit: null - })); - } - /** - * Skip the first ‘n’ documents, where ‘n’ is the value specified. - * - * Beware, this [performs badly](http://docs.couchdb.org/en/stable/ddocs/views/pagination.html#paging-alternate-method) on view's index. - * Prefer cursor-based pagination in such situation. - * - * @param {number} skip The number of documents to skip. - * @returns {QueryDefinition} The QueryDefinition object. - */ + for (var _i = 0, _Object$entries = Object.entries(selector); _i < _Object$entries.length; _i++) { + var _Object$entries$_i = (0, _slicedToArray2.default)(_Object$entries[_i], 2), + key = _Object$entries$_i[0], + value = _Object$entries$_i[1]; - }, { - key: "offset", - value: function offset(skip) { - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - bookmark: undefined, - cursor: undefined, - skip: skip - })); - } - /** - * Use [cursor-based](https://docs.cozy.io/en/cozy-stack/jsonapi/#pagination) pagination. - * *Warning*: this is only useful for views. - * The cursor is a [startkey, startkey_docid] array, where startkey is the view's key, - * e.g. ["io.cozy.photos.albums", "album-id"] and startkey_docid is the id of - * the starting document of the query, e.g. "file-id". - * Use the last docid of each query as startkey_docid to paginate or leave blank for the first query. - * - * @param {Cursor} cursor The cursor for pagination. - * @returns {QueryDefinition} The QueryDefinition object. - */ + var convertedValue = (0, _isPlainObject.default)(value) ? convert$gtNullSelectors(value) : value; + var convertedKey = key === '$gt' && convertedValue === null ? '$gtnull' : key; + result[convertedKey] = convertedValue; + } - }, { - key: "offsetCursor", - value: function offsetCursor(cursor) { - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - bookmark: undefined, - skip: undefined, - cursor: cursor - })); - } - /** - * Use [bookmark](https://docs.couchdb.org/en/2.2.0/api/database/find.html#pagination) pagination. - * Note this only applies for mango-queries (not views) and is way more efficient than skip pagination. - * The bookmark is a string returned by the _find response and can be seen as a pointer in - * the index for the next query. - * - * @param {string} bookmark The bookmark to continue a previous paginated query. - * @returns {QueryDefinition} The QueryDefinition object. - */ + return result; +}; - }, { - key: "offsetBookmark", - value: function offsetBookmark(bookmark) { - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - skip: undefined, - cursor: undefined, - bookmark: bookmark - })); - } - /** - * Use the [file reference system](https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/) - * - * @param {object} document The reference document - * @returns {QueryDefinition} The QueryDefinition object. - */ +exports.convert$gtNullSelectors = convert$gtNullSelectors; - }, { - key: "referencedBy", - value: function referencedBy(document) { - return new QueryDefinition(_objectSpread(_objectSpread({}, this.toDefinition()), {}, { - referenced: document - })); - } - }, { - key: "toDefinition", - value: function toDefinition() { - return { - doctype: this.doctype, - id: this.id, - ids: this.ids, - selector: this.selector, - fields: this.fields, - indexedFields: this.indexedFields, - partialFilter: this.partialFilter, - sort: this.sort, - includes: this.includes, - referenced: this.referenced, - limit: this.limit, - skip: this.skip, - cursor: this.cursor, - bookmark: this.bookmark - }; - } - }]); - return QueryDefinition; -}(); -/** - * Helper to create a QueryDefinition. Recommended way to create - * query definitions. - * - * @param {Doctype} doctype - Doctype of the query definition - * - * @example - * ``` - * import { Q } from 'cozy-client' - * - * const qDef = Q('io.cozy.todos').where({ _id: '1234' }) - * ``` - */ +var getSelectorFilterFn = function getSelectorFilterFn(queryDefinition) { + if (queryDefinition.selector) { + // sift does not work like couchdb when using { $gt: null } as a selector, so we use a custom operator + _sift.default.use({ + $gtnull: function $gtnull(selectorValue, actualValue) { + return !!actualValue; + } + }); + + return (0, _sift.default)(convert$gtNullSelectors(queryDefinition.selector)); + } else if (queryDefinition.id) { + return (0, _sift.default)({ + _id: queryDefinition.id + }); + } else if (queryDefinition.ids) { + return (0, _sift.default)({ + _id: { + $in: queryDefinition.ids + } + }); + } else { + return null; + } +}; + +var getQueryDocumentsChecker = function getQueryDocumentsChecker(query) { + var qdoctype = query.definition.doctype; + var selectorFilterFn = getSelectorFilterFn(query.definition); + return function (datum) { + var ddoctype = datum._type; + if (ddoctype !== qdoctype) return false; + if (selectorFilterFn && !selectorFilterFn(datum)) { + return false; + } -exports.QueryDefinition = QueryDefinition; + if (datum._deleted) return false; + return true; + }; +}; -var Q = function Q(doctype) { - return new QueryDefinition({ - doctype: doctype - }); +var makeCaseInsensitiveStringSorter = function makeCaseInsensitiveStringSorter(attrName) { + return function (item) { + var attrValue = item[attrName]; + return (0, _isString.default)(attrValue) ? attrValue.toLowerCase() : attrValue; + }; }; /** - * Check if the query is a getById() query + * Creates a sort function from a definition. * - * @param {QueryDefinition} queryDefinition The query definition + * Used to sort query results inside the store when creating a file or + * receiving updates. * - * @returns {boolean} + * @private */ -exports.Q = Q; +var makeSorterFromDefinition = function makeSorterFromDefinition(definition) { + var sort = definition.sort; -var isAGetByIdQuery = function isAGetByIdQuery(queryDefinition) { - if (!queryDefinition) return false; - var attributes = Object.values(queryDefinition); - if (attributes.length === 0) return false; // 2 attrs because we check if id and doctype are not undefined + if (!sort) { + return function (docs) { + return docs; + }; + } else if (!(0, _isArray.default)(definition.sort)) { + console.warn('Correct update of queries with a sort that is not an array is not supported. Use an array as argument of QueryDefinition::sort'); + return function (docs) { + return docs; + }; + } else { + var attributeOrders = sort.map(function (x) { + return Object.entries(x)[0]; + }); + var attrs = attributeOrders.map(function (x) { + return x[0]; + }).map(makeCaseInsensitiveStringSorter); + var orders = attributeOrders.map(function (x) { + return x[1]; + }); + return function (docs) { + return (0, _orderBy.default)(docs, attrs, orders); + }; + } +}; - return attributes.filter(function (attr) { - return attr !== undefined; - }).length === 2 && queryDefinition.id !== undefined; -}; // Mutations +exports.makeSorterFromDefinition = makeSorterFromDefinition; +var updateData = function updateData(query, newData, nextDocuments) { + var isFulfilled = getQueryDocumentsChecker(query); + var matchedIds = newData.filter(function (doc) { + return isFulfilled(doc); + }).map(_helpers.properId); + var unmatchedIds = newData.filter(function (doc) { + return !isFulfilled(doc); + }).map(_helpers.properId); + var originalIds = query.data; + var toRemove = (0, _intersection.default)(originalIds, unmatchedIds); + var toAdd = (0, _difference.default)(matchedIds, originalIds); + var toUpdate = (0, _intersection.default)(originalIds, matchedIds); + var changed = toRemove.length || toAdd.length || toUpdate.length; // concat doesn't check duplicates (contrarily to union), which is ok as + // toAdd does not contain any id present in originalIds, by construction. + // It is also faster than union. -exports.isAGetByIdQuery = isAGetByIdQuery; -var CREATE_DOCUMENT = 'CREATE_DOCUMENT'; -var UPDATE_DOCUMENT = 'UPDATE_DOCUMENT'; -var UPDATE_DOCUMENTS = 'UPDATE_DOCUMENTS'; -var DELETE_DOCUMENT = 'DELETE_DOCUMENT'; -var ADD_REFERENCES_TO = 'ADD_REFERENCES_TO'; -var REMOVE_REFERENCES_TO = 'REMOVE_REFERENCES_TO'; -var ADD_REFERENCED_BY = 'ADD_REFERENCED_BY'; -var REMOVE_REFERENCED_BY = 'REMOVE_REFERENCED_BY'; -var UPLOAD_FILE = 'UPLOAD_FILE'; + var updatedData = (0, _difference.default)((0, _concat.default)(originalIds, toAdd), toRemove); -var createDocument = function createDocument(document) { - return { - mutationType: MutationTypes.CREATE_DOCUMENT, - document: document - }; + if (query.definition.sort && nextDocuments) { + var sorter = makeSorterFromDefinition(query.definition); + var allDocs = nextDocuments[query.definition.doctype]; + var docs = updatedData.map(function (_id) { + return allDocs[_id]; + }); + var sortedDocs = sorter(docs); + updatedData = sortedDocs.map(_helpers.properId); + } + + return (0, _objectSpread3.default)({}, query, { + data: updatedData, + count: updatedData.length, + lastUpdate: changed ? Date.now() : query.lastUpdate + }); }; -exports.createDocument = createDocument; +var autoQueryUpdater = function autoQueryUpdater(action, nextDocuments) { + return function (query) { + var data = (0, _get.default)(action, 'response.data') || (0, _get.default)(action, 'definition.document'); + if (!data) return query; -var updateDocument = function updateDocument(document) { - return { - mutationType: MutationTypes.UPDATE_DOCUMENT, - document: document - }; -}; + if (!Array.isArray(data)) { + data = [data]; + } -exports.updateDocument = updateDocument; + if (!data.length) { + return query; + } -var updateDocuments = function updateDocuments(documents) { - return { - mutationType: MutationTypes.UPDATE_DOCUMENTS, - documents: documents + if (query.definition.doctype !== data[0]._type) { + return query; + } + + return updateData(query, data, nextDocuments); }; }; -exports.updateDocuments = updateDocuments; +var manualQueryUpdater = function manualQueryUpdater(action, documents) { + return function (query) { + var updateQueries = action.updateQueries; + var response = action.response; + var updater = updateQueries[query.id]; -var deleteDocument = function deleteDocument(document) { - return { - mutationType: MutationTypes.DELETE_DOCUMENT, - document: document + if (!updater) { + return query; + } + + var doctype = query.definition.doctype; + var oldData = query.data; + var oldDocs = mapIdsToDocuments(documents, doctype, oldData); + var newData = updater(oldDocs, response); + var newDataIds = newData.map(_helpers.properId); + return (0, _objectSpread3.default)({}, query, { + data: newDataIds, + count: newDataIds.length, + lastUpdate: Date.now() + }); }; }; -exports.deleteDocument = deleteDocument; +var queries = function queries() { + var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var action = arguments.length > 1 ? arguments[1] : undefined; + var nextDocuments = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + var haveDocumentsChanged = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; -var addReferencesTo = function addReferencesTo(document, referencedDocuments) { - return { - mutationType: MutationTypes.ADD_REFERENCES_TO, - referencedDocuments: referencedDocuments, - document: document - }; -}; + if (action.type == INIT_QUERY) { + return (0, _objectSpread3.default)({}, state, (0, _defineProperty2.default)({}, action.queryId, query(state[action.queryId], action))); + } -exports.addReferencesTo = addReferencesTo; + if (isQueryAction(action)) { + var updater = autoQueryUpdater(action, nextDocuments); + return (0, _mapValues.default)(state, function (queryState) { + if (queryState.id == action.queryId) { + return query(queryState, action, nextDocuments); + } else if (haveDocumentsChanged) { + return updater(queryState); + } else { + return queryState; + } + }); + } -var removeReferencesTo = function removeReferencesTo(document, referencedDocuments) { - return { - mutationType: MutationTypes.REMOVE_REFERENCES_TO, - referencedDocuments: referencedDocuments, - document: document - }; -}; + if ((0, _mutations.isReceivingMutationResult)(action)) { + var _updater = action.updateQueries ? manualQueryUpdater(action, nextDocuments) : autoQueryUpdater(action, nextDocuments); -exports.removeReferencesTo = removeReferencesTo; + return (0, _mapValues.default)(state, _updater); + } -var addReferencedBy = function addReferencedBy(document, referencedDocuments) { - return { - mutationType: MutationTypes.ADD_REFERENCED_BY, - referencedDocuments: referencedDocuments, - document: document - }; + return state; }; -exports.addReferencedBy = addReferencedBy; +var _default = queries; // actions -var removeReferencedBy = function removeReferencedBy(document, referencedDocuments) { - return { - mutationType: MutationTypes.REMOVE_REFERENCED_BY, - referencedDocuments: referencedDocuments, - document: document - }; -}; +exports.default = _default; -exports.removeReferencedBy = removeReferencedBy; +var initQuery = function initQuery(queryId, queryDefinition) { + if (!queryDefinition.doctype) { + throw new Error('Cannot init query with no doctype'); + } -var uploadFile = function uploadFile(file, dirPath) { return { - mutationType: MutationTypes.UPLOAD_FILE, - file: file, - dirPath: dirPath + type: INIT_QUERY, + queryId: queryId, + queryDefinition: queryDefinition }; }; -exports.uploadFile = uploadFile; - -var getDoctypeFromOperation = function getDoctypeFromOperation(operation) { - if (operation.mutationType) { - var type = operation.mutationType; +exports.initQuery = initQuery; - switch (type) { - case CREATE_DOCUMENT: - return operation.document._type; +var receiveQueryResult = function receiveQueryResult(queryId, response) { + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + return (0, _objectSpread3.default)({ + type: RECEIVE_QUERY_RESULT, + queryId: queryId, + response: response + }, options); +}; - case UPDATE_DOCUMENT: - return operation.document._type; +exports.receiveQueryResult = receiveQueryResult; - case UPDATE_DOCUMENTS: - return operation.documents[0]._type; +var receiveQueryError = function receiveQueryError(queryId, error) { + return { + type: RECEIVE_QUERY_ERROR, + queryId: queryId, + error: error + }; +}; // selectors - case DELETE_DOCUMENT: - return operation.document._type; - case ADD_REFERENCES_TO: - throw new Error('Not implemented'); +exports.receiveQueryError = receiveQueryError; - case UPLOAD_FILE: - throw new Error('Not implemented'); +var mapIdsToDocuments = function mapIdsToDocuments(documents, doctype, ids) { + return ids.map(function (id) { + return (0, _documents.getDocumentFromSlice)(documents, doctype, id); + }); +}; - default: - throw new Error("Unknown mutationType ".concat(type)); - } - } else { - return operation.doctype; +var getQueryFromSlice = function getQueryFromSlice(state, queryId, documents) { + if (!state || !state[queryId]) { + return (0, _objectSpread3.default)({}, queryInitialState, { + data: null + }); } -}; -exports.getDoctypeFromOperation = getDoctypeFromOperation; -var Mutations = { - createDocument: createDocument, - updateDocument: updateDocument, - updateDocuments: updateDocuments, - deleteDocument: deleteDocument, - addReferencesTo: addReferencesTo, - removeReferencesTo: removeReferencesTo, - addReferencedBy: addReferencedBy, - removeReferencedBy: removeReferencedBy, - uploadFile: uploadFile -}; -exports.Mutations = Mutations; -var MutationTypes = { - CREATE_DOCUMENT: CREATE_DOCUMENT, - UPDATE_DOCUMENT: UPDATE_DOCUMENT, - UPDATE_DOCUMENTS: UPDATE_DOCUMENTS, - DELETE_DOCUMENT: DELETE_DOCUMENT, - ADD_REFERENCES_TO: ADD_REFERENCES_TO, - REMOVE_REFERENCES_TO: REMOVE_REFERENCES_TO, - ADD_REFERENCED_BY: ADD_REFERENCED_BY, - REMOVE_REFERENCED_BY: REMOVE_REFERENCED_BY, - UPLOAD_FILE: UPLOAD_FILE + var query = state[queryId]; + return documents ? (0, _objectSpread3.default)({}, query, { + data: mapIdsToDocuments(documents, query.definition.doctype, query.data) + }) : query; }; -exports.MutationTypes = MutationTypes; + +exports.getQueryFromSlice = getQueryFromSlice; /***/ }), -/* 626 */ +/* 641 */ /***/ (function(module, exports, __webpack_require__) { -var baseFindKey = __webpack_require__(627), - baseForOwn = __webpack_require__(554), - baseIteratee = __webpack_require__(413); +var baseAssignValue = __webpack_require__(571), + baseForOwn = __webpack_require__(642), + baseIteratee = __webpack_require__(415); /** - * This method is like `_.find` except that it returns the key of the first - * element `predicate` returns truthy for instead of the element itself. + * Creates an object with the same keys as `object` and values generated + * by running each own enumerable string keyed property of `object` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, key, object). * * @static * @memberOf _ - * @since 1.1.0 + * @since 2.4.0 * @category Object - * @param {Object} object The object to inspect. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {string|undefined} Returns the key of the matched element, - * else `undefined`. + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapKeys * @example * * var users = { - * 'barney': { 'age': 36, 'active': true }, - * 'fred': { 'age': 40, 'active': false }, - * 'pebbles': { 'age': 1, 'active': true } + * 'fred': { 'user': 'fred', 'age': 40 }, + * 'pebbles': { 'user': 'pebbles', 'age': 1 } * }; * - * _.findKey(users, function(o) { return o.age < 40; }); - * // => 'barney' (iteration order is not guaranteed) - * - * // The `_.matches` iteratee shorthand. - * _.findKey(users, { 'age': 1, 'active': true }); - * // => 'pebbles' - * - * // The `_.matchesProperty` iteratee shorthand. - * _.findKey(users, ['active', false]); - * // => 'fred' + * _.mapValues(users, function(o) { return o.age; }); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) * * // The `_.property` iteratee shorthand. - * _.findKey(users, 'active'); - * // => 'barney' + * _.mapValues(users, 'age'); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) */ -function findKey(object, predicate) { - return baseFindKey(object, baseIteratee(predicate, 3), baseForOwn); +function mapValues(object, iteratee) { + var result = {}; + iteratee = baseIteratee(iteratee, 3); + + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, key, iteratee(value, key, object)); + }); + return result; } -module.exports = findKey; +module.exports = mapValues; /***/ }), -/* 627 */ -/***/ (function(module, exports) { +/* 642 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseFor = __webpack_require__(643), + keys = __webpack_require__(443); /** - * The base implementation of methods like `_.findKey` and `_.findLastKey`, - * without support for iteratee shorthands, which iterates over `collection` - * using `eachFunc`. + * The base implementation of `_.forOwn` without support for iteratee shorthands. * * @private - * @param {Array|Object} collection The collection to inspect. - * @param {Function} predicate The function invoked per iteration. - * @param {Function} eachFunc The function to iterate over `collection`. - * @returns {*} Returns the found element or its key, else `undefined`. + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. */ -function baseFindKey(collection, predicate, eachFunc) { - var result; - eachFunc(collection, function(value, key, collection) { - if (predicate(value, key, collection)) { - result = key; - return false; - } - }); - return result; +function baseForOwn(object, iteratee) { + return object && baseFor(object, iteratee, keys); } -module.exports = baseFindKey; +module.exports = baseForOwn; /***/ }), -/* 628 */ +/* 643 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var createBaseFor = __webpack_require__(644); +/** + * The base implementation of `baseForOwn` which iterates over `object` + * properties returned by `keysFunc` and invokes `iteratee` for each property. + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ +var baseFor = createBaseFor(); -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; +module.exports = baseFor; -var _dsl = __webpack_require__(625); -/** - * @typedef {"io.cozy.accounts"} AccountsDoctype - * @typedef {"io.cozy.triggers"} TriggersDoctype - * @typedef {"io.cozy.konnectors"} KonnectorsDoctype - * @typedef {"io.cozy.notes"} NotesDoctype - * @typedef {"io.cozy.apps"} AppsDoctype - * @typedef {"io.cozy.settings"} SettingsDoctype - * @typedef {AccountsDoctype|TriggersDoctype|KonnectorsDoctype|NotesDoctype|AppsDoctype|SettingsDoctype} KnownDoctype - * @typedef {KnownDoctype|string} Doctype - */ +/***/ }), +/* 644 */ +/***/ (function(module, exports) { /** - * @typedef {object} Link - * @typedef {object} Mutation - * @typedef {object} DocumentCollection - * @typedef {object} QueryResult - * @typedef {object} HydratedDocument - * @typedef {object} ReduxStore - * @typedef {object} Token - * @typedef {object} ClientResponse - * @typedef {object} Manifest + * Creates a base function for methods like `_.forIn` and `_.forOwn`. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. */ +function createBaseFor(fromRight) { + return function(object, iteratee, keysFunc) { + var index = -1, + iterable = Object(object), + props = keysFunc(object), + length = props.length; -/** - * @typedef {object} OldCozyClient - */ + while (length--) { + var key = props[fromRight ? length : ++index]; + if (iteratee(iterable[key], key, iterable) === false) { + break; + } + } + return object; + }; +} -/** - * @typedef {object} NodeEnvironment - */ +module.exports = createBaseFor; -/** - * @typedef {"loading"|"loaded"|"pending"|"failed"} QueryFetchStatus - */ -/** - * @typedef {Record<Doctype, QueryState>} QueriesStateSlice - */ +/***/ }), +/* 645 */ +/***/ (function(module, exports, __webpack_require__) { -/** - * @typedef {Record<string, CozyClientDocument>} IndexedDocuments - */ +var baseDifference = __webpack_require__(646), + baseFlatten = __webpack_require__(607), + baseRest = __webpack_require__(647), + isArrayLikeObject = __webpack_require__(648); /** - * @typedef {Record<Doctype, IndexedDocuments>} DocumentsStateSlice + * Creates an array of `array` values not included in the other given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * **Note:** Unlike `_.pullAll`, this method returns a new array. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.without, _.xor + * @example + * + * _.difference([2, 1], [2, 3]); + * // => [1] */ +var difference = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true)) + : []; +}); -/** - * @typedef {object} QueryState - * @property {string} id - * @property {QueryDefinition} definition - * @property {QueryFetchStatus} fetchStatus - * @property {number} lastFetch - * @property {number} lastUpdate - * @property {number} lastErrorUpdate - * @property {Error} lastError - * @property {boolean} hasMore - * @property {number} count - * @property {object|Array} data - * @property {string} bookmark - * @property {object} [execution_stats] - * @property {QueryOptions} [options] - */ +module.exports = difference; -/** - * @typedef {object} AutoUpdateOptions - * @param {boolean} update - Should documents be updated in the query (default: true) - * @param {boolean} add - Should documents be added to the query (default: true) - * @param {boolean} remove - Should documents be removed from the query (default: true) - */ -/** - * @typedef {object} QueryOptions - * @property {string} [as] - Name of the query - * @property {Function} [fetchPolicy] - Fetch policy to bypass fetching based on what's already inside the state. See "Fetch policies" - * @property {AutoUpdateOptions} [autoUpdate] - Options for the query auto update - * @property {string} [options.update] - Does not seem to be used - */ +/***/ }), +/* 646 */ +/***/ (function(module, exports, __webpack_require__) { -/** - * @typedef {object} FetchMoreAble - * @property {Function} fetchMore - */ +var SetCache = __webpack_require__(427), + arrayIncludes = __webpack_require__(478), + arrayIncludesWith = __webpack_require__(483), + arrayMap = __webpack_require__(412), + baseUnary = __webpack_require__(454), + cacheHas = __webpack_require__(431); -/** - * @typedef {QueryState & FetchMoreAble} UseQueryReturnValue - */ +/** Used as the size to enable large array optimizations. */ +var LARGE_ARRAY_SIZE = 200; /** - * A reference to a document (special case of a relationship used between photos and albums) - * https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.files/#references + * The base implementation of methods like `_.difference` without support + * for excluding multiple arrays or iteratee shorthands. * - * @typedef {object} Reference - * @property {string} _id - id of the document - * @property {string} _type - doctype of the document + * @private + * @param {Array} array The array to inspect. + * @param {Array} values The values to exclude. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. */ +function baseDifference(array, values, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + isCommon = true, + length = array.length, + result = [], + valuesLength = values.length; -/** - * @typedef {Object.<string, Array<Reference>>} ReferenceMap - */ + if (!length) { + return result; + } + if (iteratee) { + values = arrayMap(values, baseUnary(iteratee)); + } + if (comparator) { + includes = arrayIncludesWith; + isCommon = false; + } + else if (values.length >= LARGE_ARRAY_SIZE) { + includes = cacheHas; + isCommon = false; + values = new SetCache(values); + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee == null ? value : iteratee(value); -/** - * @typedef {object} MutationOptions - * @property {string} [as] - * @property {Function} [update] - * @property {Function} [updateQueries] - */ + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var valuesIndex = valuesLength; + while (valuesIndex--) { + if (values[valuesIndex] === computed) { + continue outer; + } + } + result.push(value); + } + else if (!includes(values, computed, comparator)) { + result.push(value); + } + } + return result; +} -/** - * @typedef {object} CozyClientDocument - A document - * @property {string} [_id] - Id of the document - * @property {string} [_type] - Type of the document - * @property {string} [_rev] - Current revision of the document - * @property {string} [_deleted] - When the document has been deleted - * @property {object} [relationships] - Relationships of the document - */ +module.exports = baseDifference; -/** - * @typedef {object} FileDocument - An io.cozy.files document - * @property {string} _id - Id of the file - * @property {string} name - Name of the file - * @property {object} metadata - Metadata of the file - * @property {object} type - Type of the file - * @property {object} class - Class of the file - * @typedef {CozyClientDocument & FileDocument} IOCozyFile - An io.cozy.files document - */ -/** - * @typedef {object} FolderDocument - An io.cozy.files document - * @property {string} _id - Id of the folder - * @property {string} name - Name of the folder - * @property {object} metadata - Metadata of the folder - * @property {object} type - Type of the folder - * @typedef {CozyClientDocument & FileDocument} IOCozyFolder - An io.cozy.files document - */ +/***/ }), +/* 647 */ +/***/ (function(module, exports, __webpack_require__) { -/** - * @typedef {object} ClientError - * @property {string} [status] - */ +var identity = __webpack_require__(473), + overRest = __webpack_require__(609), + setToString = __webpack_require__(611); /** - * @typedef FilePlugin - * @property {object} [externalDataDirectory] - * @property {object} [cacheDirectory] - * @property {object} [externalCacheDirectory] - * @property {object} [dataDirectory] + * The base implementation of `_.rest` which doesn't validate or coerce arguments. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. */ +function baseRest(func, start) { + return setToString(overRest(func, start, identity), func + ''); +} -/** - * @typedef InAppBrowser - * @property {Function} open - */ +module.exports = baseRest; -/** - * @typedef {object} AppMetadata - */ + +/***/ }), +/* 648 */ +/***/ (function(module, exports, __webpack_require__) { + +var isArrayLike = __webpack_require__(460), + isObjectLike = __webpack_require__(73); /** - * @typedef {object} ClientCapabilities + * This method is like `_.isArrayLike` except that it also checks if `value` + * is an object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array-like object, + * else `false`. + * @example * - * @description Read more about client capabilities here https://docs.cozy.io/en/cozy-stack/settings/#get-settingscapabilities. + * _.isArrayLikeObject([1, 2, 3]); + * // => true * - * @property {boolean} can_auth_with_oidc - Whether OIDC login is possible with this Cozy - * @property {boolean} can_auth_with_password - Whether password login is possible with this Cozy - * @property {boolean} file_versioning - Whether file versioning is active on this Cozy - * @property {boolean} flat_subdomains - Whether the stack has been configured to use flat subdomains - */ - -/** - * @typedef Cordova - * @property {FilePlugin} file - * @property {InAppBrowser} InAppBrowser - * @property {object} plugins + * _.isArrayLikeObject(document.body.children); + * // => true + * + * _.isArrayLikeObject('abc'); + * // => false + * + * _.isArrayLikeObject(_.noop); + * // => false */ +function isArrayLikeObject(value) { + return isObjectLike(value) && isArrayLike(value); +} -/** - * @typedef CordovaWindow - * @property {Cordova} cordova - * @property {object} SafariViewController - * @property {Function} resolveLocalFileSystemURL - * @property {Function} handleOpenURL - */ +module.exports = isArrayLikeObject; -/** - * @typedef {object} CouchDBBulkResult - An item of the CouchDB bulk docs response - * @property {boolean} ok - * @property {string} id - * @property {string} rev - * @property {string?} error? - * @property {string?} reason? - */ -var _default = {}; -exports.default = _default; /***/ }), -/* 629 */ +/* 649 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.formatBytes = exports.forceFileDownload = exports.slugify = exports.sleep = exports.attempt = exports.uri = void 0; +var arrayMap = __webpack_require__(412), + baseIntersection = __webpack_require__(650), + baseRest = __webpack_require__(647), + castArrayLikeObject = __webpack_require__(651); /** - * @function - * @description Template tag function for URIs encoding - * - * Will automatically apply `encodeURIComponent` to template literal placeholders + * Creates an array of unique values that are included in all given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of intersecting values. * @example - * ``` - * const safe = uri`/data/${doctype}/_all_docs?limit=${limit}` - * ``` * - * @private + * _.intersection([2, 1], [2, 3]); + * // => [2] */ -var uri = function uri(strings) { - var parts = [strings[0]]; +var intersection = baseRest(function(arrays) { + var mapped = arrayMap(arrays, castArrayLikeObject); + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped) + : []; +}); - for (var i = 0; i < (arguments.length <= 1 ? 0 : arguments.length - 1); i++) { - parts.push(encodeURIComponent(i + 1 < 1 || arguments.length <= i + 1 ? undefined : arguments[i + 1]) + strings[i + 1]); - } +module.exports = intersection; + + +/***/ }), +/* 650 */ +/***/ (function(module, exports, __webpack_require__) { + +var SetCache = __webpack_require__(427), + arrayIncludes = __webpack_require__(478), + arrayIncludesWith = __webpack_require__(483), + arrayMap = __webpack_require__(412), + baseUnary = __webpack_require__(454), + cacheHas = __webpack_require__(431); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMin = Math.min; - return parts.join(''); -}; /** - * @function - * @description Helps to avoid nested try/catch when using async/await - * - * Inspired by a Go pattern: http://blog.grossman.io/how-to-write-async-await-without-try-catch-blocks-in-javascript/ - * - * @example - * ``` - * if (await attempt(collection.all()) return - * await sleep(1000) - * if (await attempt(collection.all()) return - * await sleep(1000) - * return - * ``` + * The base implementation of methods like `_.intersection`, without support + * for iteratee shorthands, that accepts an array of arrays to inspect. * * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of shared values. */ +function baseIntersection(arrays, iteratee, comparator) { + var includes = comparator ? arrayIncludesWith : arrayIncludes, + length = arrays[0].length, + othLength = arrays.length, + othIndex = othLength, + caches = Array(othLength), + maxLength = Infinity, + result = []; + while (othIndex--) { + var array = arrays[othIndex]; + if (othIndex && iteratee) { + array = arrayMap(array, baseUnary(iteratee)); + } + maxLength = nativeMin(array.length, maxLength); + caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120)) + ? new SetCache(othIndex && array) + : undefined; + } + array = arrays[0]; -exports.uri = uri; + var index = -1, + seen = caches[0]; -var attempt = function attempt(promise) { - return promise.then(function () { - return true; - }).catch(function () { - return false; - }); -}; -/** - * @function - * @description Helps to avoid nested try/catch when using async/await — see documentation for attempt - * @private - */ + outer: + while (++index < length && result.length < maxLength) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + value = (comparator || value !== 0) ? value : 0; + if (!(seen + ? cacheHas(seen, computed) + : includes(result, computed, comparator) + )) { + othIndex = othLength; + while (--othIndex) { + var cache = caches[othIndex]; + if (!(cache + ? cacheHas(cache, computed) + : includes(arrays[othIndex], computed, comparator)) + ) { + continue outer; + } + } + if (seen) { + seen.push(computed); + } + result.push(value); + } + } + return result; +} -exports.attempt = attempt; +module.exports = baseIntersection; -var sleep = function sleep(time, args) { - return new Promise(function (resolve) { - setTimeout(resolve, time, args); - }); -}; -exports.sleep = sleep; +/***/ }), +/* 651 */ +/***/ (function(module, exports, __webpack_require__) { -var slugify = function slugify(text) { - return text.toString().toLowerCase().replace(/\s+/g, '-') // Replace spaces with - - .replace(/[^\w-]+/g, '') // Remove all non-word chars - .replace(/--+/g, '-') // Replace multiple - with single - - .replace(/^-+/, '') // Trim - from start of text - .replace(/-+$/, ''); -}; // Trim - from end of text +var isArrayLikeObject = __webpack_require__(648); +/** + * Casts `value` to an empty array if it's not an array like object. + * + * @private + * @param {*} value The value to inspect. + * @returns {Array|Object} Returns the cast array-like object. + */ +function castArrayLikeObject(value) { + return isArrayLikeObject(value) ? value : []; +} -exports.slugify = slugify; +module.exports = castArrayLikeObject; -var forceFileDownload = function forceFileDownload(href, filename) { - var element = document.createElement('a'); - element.setAttribute('href', href); - element.setAttribute('download', filename); - element.style.display = 'none'; - document.body.appendChild(element); - element.click(); - document.body.removeChild(element); -}; -exports.forceFileDownload = forceFileDownload; +/***/ }), +/* 652 */ +/***/ (function(module, exports, __webpack_require__) { -var formatBytes = function formatBytes(bytes) { - var decimals = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 2; - if (bytes === 0) return '0 Bytes'; - var k = 1024; - var dm = decimals < 0 ? 0 : decimals; - var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; - var i = Math.floor(Math.log(bytes) / Math.log(k)); - return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i]; -}; +var arrayPush = __webpack_require__(439), + baseFlatten = __webpack_require__(607), + copyArray = __webpack_require__(580), + isArray = __webpack_require__(75); + +/** + * Creates a new array concatenating `array` with any additional arrays + * and/or values. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to concatenate. + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. + * @example + * + * var array = [1]; + * var other = _.concat(array, 2, [3], [[4]]); + * + * console.log(other); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] + */ +function concat() { + var length = arguments.length; + if (!length) { + return []; + } + var args = Array(length - 1), + array = arguments[0], + index = length; + + while (index--) { + args[index - 1] = arguments[index]; + } + return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1)); +} + +module.exports = concat; -exports.formatBytes = formatBytes; /***/ }), -/* 630 */ +/* 653 */ /***/ (function(module, exports, __webpack_require__) { -var baseUniq = __webpack_require__(475); +var baseUniq = __webpack_require__(477); /** * Creates a duplicate-free version of an array, using @@ -100663,1759 +98151,1873 @@ module.exports = uniq; /***/ }), -/* 631 */ +/* 654 */ /***/ (function(module, exports, __webpack_require__) { -var arrayMap = __webpack_require__(410), - baseClone = __webpack_require__(580), - baseUnset = __webpack_require__(632), - castPath = __webpack_require__(372), - copyObject = __webpack_require__(583), - customOmitClone = __webpack_require__(636), - flatRest = __webpack_require__(638), - getAllKeysIn = __webpack_require__(594); - -/** Used to compose bitmasks for cloning. */ -var CLONE_DEEP_FLAG = 1, - CLONE_FLAT_FLAG = 2, - CLONE_SYMBOLS_FLAG = 4; +var baseOrderBy = __webpack_require__(655), + isArray = __webpack_require__(75); /** - * The opposite of `_.pick`; this method creates an object composed of the - * own and inherited enumerable property paths of `object` that are not omitted. - * - * **Note:** This method is considerably slower than `_.pick`. + * This method is like `_.sortBy` except that it allows specifying the sort + * orders of the iteratees to sort by. If `orders` is unspecified, all values + * are sorted in ascending order. Otherwise, specify an order of "desc" for + * descending or "asc" for ascending sort order of corresponding values. * * @static - * @since 0.1.0 * @memberOf _ - * @category Object - * @param {Object} object The source object. - * @param {...(string|string[])} [paths] The property paths to omit. - * @returns {Object} Returns the new object. + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]] + * The iteratees to sort by. + * @param {string[]} [orders] The sort orders of `iteratees`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {Array} Returns the new sorted array. * @example * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 34 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'barney', 'age': 36 } + * ]; * - * _.omit(object, ['a', 'c']); - * // => { 'b': '2' } + * // Sort by `user` in ascending order and by `age` in descending order. + * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] */ -var omit = flatRest(function(object, paths) { - var result = {}; - if (object == null) { - return result; +function orderBy(collection, iteratees, orders, guard) { + if (collection == null) { + return []; } - var isDeep = false; - paths = arrayMap(paths, function(path) { - path = castPath(path, object); - isDeep || (isDeep = path.length > 1); - return path; - }); - copyObject(object, getAllKeysIn(object), result); - if (isDeep) { - result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone); + if (!isArray(iteratees)) { + iteratees = iteratees == null ? [] : [iteratees]; } - var length = paths.length; - while (length--) { - baseUnset(result, paths[length]); + orders = guard ? undefined : orders; + if (!isArray(orders)) { + orders = orders == null ? [] : [orders]; } - return result; -}); + return baseOrderBy(collection, iteratees, orders); +} -module.exports = omit; +module.exports = orderBy; /***/ }), -/* 632 */ +/* 655 */ /***/ (function(module, exports, __webpack_require__) { -var castPath = __webpack_require__(372), - last = __webpack_require__(633), - parent = __webpack_require__(634), - toKey = __webpack_require__(411); +var arrayMap = __webpack_require__(412), + baseGet = __webpack_require__(373), + baseIteratee = __webpack_require__(415), + baseMap = __webpack_require__(656), + baseSortBy = __webpack_require__(659), + baseUnary = __webpack_require__(454), + compareMultiple = __webpack_require__(660), + identity = __webpack_require__(473), + isArray = __webpack_require__(75); /** - * The base implementation of `_.unset`. + * The base implementation of `_.orderBy` without param guards. * * @private - * @param {Object} object The object to modify. - * @param {Array|string} path The property path to unset. - * @returns {boolean} Returns `true` if the property is deleted, else `false`. + * @param {Array|Object} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {string[]} orders The sort orders of `iteratees`. + * @returns {Array} Returns the new sorted array. */ -function baseUnset(object, path) { - path = castPath(path, object); - object = parent(object, path); - return object == null || delete object[toKey(last(path))]; -} - -module.exports = baseUnset; +function baseOrderBy(collection, iteratees, orders) { + if (iteratees.length) { + iteratees = arrayMap(iteratees, function(iteratee) { + if (isArray(iteratee)) { + return function(value) { + return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee); + } + } + return iteratee; + }); + } else { + iteratees = [identity]; + } + var index = -1; + iteratees = arrayMap(iteratees, baseUnary(baseIteratee)); -/***/ }), -/* 633 */ -/***/ (function(module, exports) { + var result = baseMap(collection, function(value, key, collection) { + var criteria = arrayMap(iteratees, function(iteratee) { + return iteratee(value); + }); + return { 'criteria': criteria, 'index': ++index, 'value': value }; + }); -/** - * Gets the last element of `array`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to query. - * @returns {*} Returns the last element of `array`. - * @example - * - * _.last([1, 2, 3]); - * // => 3 - */ -function last(array) { - var length = array == null ? 0 : array.length; - return length ? array[length - 1] : undefined; + return baseSortBy(result, function(object, other) { + return compareMultiple(object, other, orders); + }); } -module.exports = last; +module.exports = baseOrderBy; /***/ }), -/* 634 */ +/* 656 */ /***/ (function(module, exports, __webpack_require__) { -var baseGet = __webpack_require__(371), - baseSlice = __webpack_require__(635); - -/** - * Gets the parent value at `path` of `object`. - * - * @private - * @param {Object} object The object to query. - * @param {Array} path The path to get the parent value of. - * @returns {*} Returns the parent value. - */ -function parent(object, path) { - return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); -} - -module.exports = parent; - - -/***/ }), -/* 635 */ -/***/ (function(module, exports) { +var baseEach = __webpack_require__(657), + isArrayLike = __webpack_require__(460); /** - * The base implementation of `_.slice` without an iteratee call guard. + * The base implementation of `_.map` without support for iteratee shorthands. * * @private - * @param {Array} array The array to slice. - * @param {number} [start=0] The start position. - * @param {number} [end=array.length] The end position. - * @returns {Array} Returns the slice of `array`. + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. */ -function baseSlice(array, start, end) { +function baseMap(collection, iteratee) { var index = -1, - length = array.length; - - if (start < 0) { - start = -start > length ? 0 : (length + start); - } - end = end > length ? length : end; - if (end < 0) { - end += length; - } - length = start > end ? 0 : ((end - start) >>> 0); - start >>>= 0; + result = isArrayLike(collection) ? Array(collection.length) : []; - var result = Array(length); - while (++index < length) { - result[index] = array[index + start]; - } + baseEach(collection, function(value, key, collection) { + result[++index] = iteratee(value, key, collection); + }); return result; } -module.exports = baseSlice; +module.exports = baseMap; /***/ }), -/* 636 */ +/* 657 */ /***/ (function(module, exports, __webpack_require__) { -var isPlainObject = __webpack_require__(637); +var baseForOwn = __webpack_require__(642), + createBaseEach = __webpack_require__(658); /** - * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain - * objects. + * The base implementation of `_.forEach` without support for iteratee shorthands. * * @private - * @param {*} value The value to inspect. - * @param {string} key The key of the property to inspect. - * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. - */ -function customOmitClone(value) { - return isPlainObject(value) ? undefined : value; -} - -module.exports = customOmitClone; - - -/***/ }), -/* 637 */ -/***/ (function(module, exports, __webpack_require__) { - -var baseGetTag = __webpack_require__(66), - getPrototype = __webpack_require__(593), - isObjectLike = __webpack_require__(73); - -/** `Object#toString` result references. */ -var objectTag = '[object Object]'; - -/** Used for built-in method references. */ -var funcProto = Function.prototype, - objectProto = Object.prototype; - -/** Used to resolve the decompiled source of functions. */ -var funcToString = funcProto.toString; - -/** Used to check objects for own properties. */ -var hasOwnProperty = objectProto.hasOwnProperty; - -/** Used to infer the `Object` constructor. */ -var objectCtorString = funcToString.call(Object); - -/** - * Checks if `value` is a plain object, that is, an object created by the - * `Object` constructor or one with a `[[Prototype]]` of `null`. - * - * @static - * @memberOf _ - * @since 0.8.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. - * @example - * - * function Foo() { - * this.a = 1; - * } - * - * _.isPlainObject(new Foo); - * // => false - * - * _.isPlainObject([1, 2, 3]); - * // => false - * - * _.isPlainObject({ 'x': 0, 'y': 0 }); - * // => true - * - * _.isPlainObject(Object.create(null)); - * // => true + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. */ -function isPlainObject(value) { - if (!isObjectLike(value) || baseGetTag(value) != objectTag) { - return false; - } - var proto = getPrototype(value); - if (proto === null) { - return true; - } - var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; - return typeof Ctor == 'function' && Ctor instanceof Ctor && - funcToString.call(Ctor) == objectCtorString; -} +var baseEach = createBaseEach(baseForOwn); -module.exports = isPlainObject; +module.exports = baseEach; /***/ }), -/* 638 */ +/* 658 */ /***/ (function(module, exports, __webpack_require__) { -var flatten = __webpack_require__(558), - overRest = __webpack_require__(563), - setToString = __webpack_require__(565); +var isArrayLike = __webpack_require__(460); /** - * A specialized version of `baseRest` which flattens the rest array. + * Creates a `baseEach` or `baseEachRight` function. * * @private - * @param {Function} func The function to apply a rest parameter to. - * @returns {Function} Returns the new function. + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. */ -function flatRest(func) { - return setToString(overRest(func, undefined, flatten), func + ''); +function createBaseEach(eachFunc, fromRight) { + return function(collection, iteratee) { + if (collection == null) { + return collection; + } + if (!isArrayLike(collection)) { + return eachFunc(collection, iteratee); + } + var length = collection.length, + index = fromRight ? length : -1, + iterable = Object(collection); + + while ((fromRight ? index-- : ++index < length)) { + if (iteratee(iterable[index], index, iterable) === false) { + break; + } + } + return collection; + }; } -module.exports = flatRest; +module.exports = createBaseEach; /***/ }), -/* 639 */ +/* 659 */ /***/ (function(module, exports) { /** - * Gets the first element of `array`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @alias first - * @category Array - * @param {Array} array The array to query. - * @returns {*} Returns the first element of `array`. - * @example - * - * _.head([1, 2, 3]); - * // => 1 + * The base implementation of `_.sortBy` which uses `comparer` to define the + * sort order of `array` and replaces criteria objects with their corresponding + * values. * - * _.head([]); - * // => undefined + * @private + * @param {Array} array The array to sort. + * @param {Function} comparer The function to define sort order. + * @returns {Array} Returns `array`. */ -function head(array) { - return (array && array.length) ? array[0] : undefined; +function baseSortBy(array, comparer) { + var length = array.length; + + array.sort(comparer); + while (length--) { + array[length] = array[length].value; + } + return array; } -module.exports = head; +module.exports = baseSortBy; /***/ }), -/* 640 */ +/* 660 */ /***/ (function(module, exports, __webpack_require__) { -var baseClamp = __webpack_require__(641), - baseToString = __webpack_require__(409), - toInteger = __webpack_require__(642), - toString = __webpack_require__(408); +var compareAscending = __webpack_require__(661); /** - * Checks if `string` starts with the given target string. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to inspect. - * @param {string} [target] The string to search for. - * @param {number} [position=0] The position to search from. - * @returns {boolean} Returns `true` if `string` starts with `target`, - * else `false`. - * @example - * - * _.startsWith('abc', 'a'); - * // => true + * Used by `_.orderBy` to compare multiple properties of a value to another + * and stable sort them. * - * _.startsWith('abc', 'b'); - * // => false + * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, + * specify an order of "desc" for descending or "asc" for ascending sort order + * of corresponding values. * - * _.startsWith('abc', 'b', 1); - * // => true + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {boolean[]|string[]} orders The order to sort by for each property. + * @returns {number} Returns the sort order indicator for `object`. */ -function startsWith(string, target, position) { - string = toString(string); - position = position == null - ? 0 - : baseClamp(toInteger(position), 0, string.length); +function compareMultiple(object, other, orders) { + var index = -1, + objCriteria = object.criteria, + othCriteria = other.criteria, + length = objCriteria.length, + ordersLength = orders.length; - target = baseToString(target); - return string.slice(position, position + target.length) == target; + while (++index < length) { + var result = compareAscending(objCriteria[index], othCriteria[index]); + if (result) { + if (index >= ordersLength) { + return result; + } + var order = orders[index]; + return result * (order == 'desc' ? -1 : 1); + } + } + // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications + // that causes it, under certain circumstances, to provide the same value for + // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 + // for more details. + // + // This also ensures a stable sort in V8 and other engines. + // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. + return object.index - other.index; } -module.exports = startsWith; +module.exports = compareMultiple; /***/ }), -/* 641 */ -/***/ (function(module, exports) { +/* 661 */ +/***/ (function(module, exports, __webpack_require__) { + +var isSymbol = __webpack_require__(376); /** - * The base implementation of `_.clamp` which doesn't coerce arguments. + * Compares values to sort them in ascending order. * * @private - * @param {number} number The number to clamp. - * @param {number} [lower] The lower bound. - * @param {number} upper The upper bound. - * @returns {number} Returns the clamped number. + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {number} Returns the sort order indicator for `value`. */ -function baseClamp(number, lower, upper) { - if (number === number) { - if (upper !== undefined) { - number = number <= upper ? number : upper; +function compareAscending(value, other) { + if (value !== other) { + var valIsDefined = value !== undefined, + valIsNull = value === null, + valIsReflexive = value === value, + valIsSymbol = isSymbol(value); + + var othIsDefined = other !== undefined, + othIsNull = other === null, + othIsReflexive = other === other, + othIsSymbol = isSymbol(other); + + if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || + (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || + (valIsNull && othIsDefined && othIsReflexive) || + (!valIsDefined && othIsReflexive) || + !valIsReflexive) { + return 1; } - if (lower !== undefined) { - number = number >= lower ? number : lower; + if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || + (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || + (othIsNull && valIsDefined && valIsReflexive) || + (!othIsDefined && valIsReflexive) || + !othIsReflexive) { + return -1; } } - return number; + return 0; } -module.exports = baseClamp; +module.exports = compareAscending; /***/ }), -/* 642 */ +/* 662 */ /***/ (function(module, exports, __webpack_require__) { -var toFinite = __webpack_require__(643); +"use strict"; -/** - * Converts `value` to an integer. - * - * **Note:** This method is loosely based on - * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {number} Returns the converted integer. - * @example - * - * _.toInteger(3.2); - * // => 3 - * - * _.toInteger(Number.MIN_VALUE); - * // => 0 - * - * _.toInteger(Infinity); - * // => 1.7976931348623157e+308 - * - * _.toInteger('3.2'); - * // => 3 - */ -function toInteger(value) { - var result = toFinite(value), - remainder = result % 1; - return result === result ? (remainder ? result - remainder : result) : 0; -} +var _interopRequireDefault = __webpack_require__(532); -module.exports = toInteger; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.receiveMutationError = exports.receiveMutationResult = exports.initMutation = exports.isReceivingMutationResult = exports.isMutationAction = void 0; +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -/***/ }), -/* 643 */ -/***/ (function(module, exports, __webpack_require__) { +var INIT_MUTATION = 'INIT_MUTATION'; +var RECEIVE_MUTATION_RESULT = 'RECEIVE_MUTATION_RESULT'; +var RECEIVE_MUTATION_ERROR = 'RECEIVE_MUTATION_ERROR'; -var toNumber = __webpack_require__(644); +var isMutationAction = function isMutationAction(action) { + return [INIT_MUTATION, RECEIVE_MUTATION_RESULT, RECEIVE_MUTATION_ERROR].indexOf(action.type) !== -1; +}; -/** Used as references for various `Number` constants. */ -var INFINITY = 1 / 0, - MAX_INTEGER = 1.7976931348623157e+308; +exports.isMutationAction = isMutationAction; -/** - * Converts `value` to a finite number. - * - * @static - * @memberOf _ - * @since 4.12.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {number} Returns the converted number. - * @example - * - * _.toFinite(3.2); - * // => 3.2 - * - * _.toFinite(Number.MIN_VALUE); - * // => 5e-324 - * - * _.toFinite(Infinity); - * // => 1.7976931348623157e+308 - * - * _.toFinite('3.2'); - * // => 3.2 - */ -function toFinite(value) { - if (!value) { - return value === 0 ? value : 0; - } - value = toNumber(value); - if (value === INFINITY || value === -INFINITY) { - var sign = (value < 0 ? -1 : 1); - return sign * MAX_INTEGER; - } - return value === value ? value : 0; -} +var isReceivingMutationResult = function isReceivingMutationResult(action) { + return action.type === RECEIVE_MUTATION_RESULT; +}; // actions -module.exports = toFinite; +exports.isReceivingMutationResult = isReceivingMutationResult; + +var initMutation = function initMutation(mutationId, definition) { + return { + type: INIT_MUTATION, + mutationId: mutationId, + definition: definition + }; +}; + +exports.initMutation = initMutation; + +var receiveMutationResult = function receiveMutationResult(mutationId, response) { + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + var definition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; + return (0, _objectSpread2.default)({ + type: RECEIVE_MUTATION_RESULT, + mutationId: mutationId, + response: response + }, options, { + definition: definition + }); +}; + +exports.receiveMutationResult = receiveMutationResult; + +var receiveMutationError = function receiveMutationError(mutationId, error) { + var definition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + return { + type: RECEIVE_MUTATION_ERROR, + mutationId: mutationId, + error: error, + definition: definition + }; +}; + +exports.receiveMutationError = receiveMutationError; /***/ }), -/* 644 */ +/* 663 */ /***/ (function(module, exports, __webpack_require__) { -var baseTrim = __webpack_require__(645), - isObject = __webpack_require__(72), - isSymbol = __webpack_require__(374); +"use strict"; -/** Used as references for various `Number` constants. */ -var NAN = 0 / 0; -/** Used to detect bad signed hexadecimal string values. */ -var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.properId = void 0; -/** Used to detect binary string values. */ -var reIsBinary = /^0b[01]+$/i; +var properId = function properId(doc) { + return doc.id || doc._id; +}; -/** Used to detect octal string values. */ -var reIsOctal = /^0o[0-7]+$/i; +exports.properId = properId; -/** Built-in method references without a dependency on `root`. */ -var freeParseInt = parseInt; +/***/ }), +/* 664 */ +/***/ (function(module, exports, __webpack_require__) { -/** - * Converts `value` to a number. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to process. - * @returns {number} Returns the number. - * @example - * - * _.toNumber(3.2); - * // => 3.2 - * - * _.toNumber(Number.MIN_VALUE); - * // => 5e-324 +/* + * Sift 3.x * - * _.toNumber(Infinity); - * // => Infinity + * Copryright 2015, Craig Condon + * Licensed under MIT * - * _.toNumber('3.2'); - * // => 3.2 + * Filter JavaScript objects with mongodb queries */ -function toNumber(value) { - if (typeof value == 'number') { - return value; + +(function() { + + 'use strict'; + + /** + */ + + function isFunction(value) { + return typeof value === 'function'; } - if (isSymbol(value)) { - return NAN; + + /** + */ + + function isArray(value) { + return Object.prototype.toString.call(value) === '[object Array]'; } - if (isObject(value)) { - var other = typeof value.valueOf == 'function' ? value.valueOf() : value; - value = isObject(other) ? (other + '') : other; + + /** + */ + + function comparable(value) { + if (value instanceof Date) { + return value.getTime(); + } else if (isArray(value)) { + return value.map(comparable); + } else if (value && typeof value.toJSON === 'function') { + return value.toJSON(); + } else { + return value; + } } - if (typeof value != 'string') { - return value === 0 ? value : +value; + + function get(obj, key) { + return isFunction(obj.get) ? obj.get(key) : obj[key]; } - value = baseTrim(value); - var isBinary = reIsBinary.test(value); - return (isBinary || reIsOctal.test(value)) - ? freeParseInt(value.slice(2), isBinary ? 2 : 8) - : (reIsBadHex.test(value) ? NAN : +value); -} -module.exports = toNumber; + /** + */ + function or(validator) { + return function(a, b) { + if (!isArray(b) || !b.length) { + return validator(a, b); + } + for (var i = 0, n = b.length; i < n; i++) { + if (validator(a, get(b,i))) return true; + } + return false; + } + } -/***/ }), -/* 645 */ -/***/ (function(module, exports, __webpack_require__) { + /** + */ -var trimmedEndIndex = __webpack_require__(646); + function and(validator) { + return function(a, b) { + if (!isArray(b) || !b.length) { + return validator(a, b); + } + for (var i = 0, n = b.length; i < n; i++) { + if (!validator(a, get(b, i))) return false; + } + return true; + }; + } -/** Used to match leading whitespace. */ -var reTrimStart = /^\s+/; + function validate(validator, b, k, o) { + return validator.v(validator.a, b, k, o); + } -/** - * The base implementation of `_.trim`. - * - * @private - * @param {string} string The string to trim. - * @returns {string} Returns the trimmed string. - */ -function baseTrim(string) { - return string - ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '') - : string; -} + var OPERATORS = { -module.exports = baseTrim; + /** + */ + $eq: or(function(a, b) { + return a(b); + }), -/***/ }), -/* 646 */ -/***/ (function(module, exports) { + /** + */ -/** Used to match a single whitespace character. */ -var reWhitespace = /\s/; + $ne: and(function(a, b) { + return !a(b); + }), -/** - * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace - * character of `string`. - * - * @private - * @param {string} string The string to inspect. - * @returns {number} Returns the index of the last non-whitespace character. - */ -function trimmedEndIndex(string) { - var index = string.length; + /** + */ - while (index-- && reWhitespace.test(string.charAt(index))) {} - return index; -} + $gt: or(function(a, b) { + return sift.compare(comparable(b), a) > 0; + }), -module.exports = trimmedEndIndex; + /** + */ + $gte: or(function(a, b) { + return sift.compare(comparable(b), a) >= 0; + }), -/***/ }), -/* 647 */ -/***/ (function(module, exports, __webpack_require__) { + /** + */ -"use strict"; + $lt: or(function(a, b) { + return sift.compare(comparable(b), a) < 0; + }), + /** + */ -var stringify = __webpack_require__(648); -var parse = __webpack_require__(651); -var formats = __webpack_require__(650); + $lte: or(function(a, b) { + return sift.compare(comparable(b), a) <= 0; + }), -module.exports = { - formats: formats, - parse: parse, - stringify: stringify -}; + /** + */ + $mod: or(function(a, b) { + return b % a[0] == a[1]; + }), -/***/ }), -/* 648 */ -/***/ (function(module, exports, __webpack_require__) { + /** + */ -"use strict"; + $in: function(a, b) { + if (b instanceof Array) { + for (var i = b.length; i--;) { + if (~a.indexOf(comparable(get(b, i)))) { + return true; + } + } + } else { + var comparableB = comparable(b); + if (comparableB === b && typeof b === 'object') { + for (var i = a.length; i--;) { + if (String(a[i]) === String(b) && String(b) !== '[object Object]') { + return true; + } + } + } -var utils = __webpack_require__(649); -var formats = __webpack_require__(650); -var has = Object.prototype.hasOwnProperty; + /* + Handles documents that are undefined, whilst also + having a 'null' element in the parameters to $in. + */ + if (typeof comparableB == 'undefined') { + for (var i = a.length; i--;) { + if (a[i] == null) { + return true; + } + } + } -var arrayPrefixGenerators = { - brackets: function brackets(prefix) { - return prefix + '[]'; + /* + Handles the case of {'field': {$in: [/regexp1/, /regexp2/, ...]}} + */ + for (var i = a.length; i--;) { + var validator = createRootValidator(get(a, i), undefined); + var result = validate(validator, b, i, a); + if ((result) && (String(result) !== '[object Object]') && (String(b) !== '[object Object]')) { + return true; + } + } + + return !!~a.indexOf(comparableB); + } + + return false; }, - comma: 'comma', - indices: function indices(prefix, key) { - return prefix + '[' + key + ']'; + + /** + */ + + $nin: function(a, b, k, o) { + return !OPERATORS.$in(a, b, k, o); }, - repeat: function repeat(prefix) { - return prefix; - } -}; -var isArray = Array.isArray; -var push = Array.prototype.push; -var pushToArray = function (arr, valueOrArray) { - push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]); -}; + /** + */ -var toISO = Date.prototype.toISOString; + $not: function(a, b, k, o) { + return !validate(a, b, k, o); + }, -var defaultFormat = formats['default']; -var defaults = { - addQueryPrefix: false, - allowDots: false, - charset: 'utf-8', - charsetSentinel: false, - delimiter: '&', - encode: true, - encoder: utils.encode, - encodeValuesOnly: false, - format: defaultFormat, - formatter: formats.formatters[defaultFormat], - // deprecated - indices: false, - serializeDate: function serializeDate(date) { - return toISO.call(date); + /** + */ + + $type: function(a, b) { + return b != void 0 ? b instanceof a || b.constructor == a : false; + }, + + /** + */ + + $all: function(a, b, k, o) { + return OPERATORS.$and(a, b, k, o); }, - skipNulls: false, - strictNullHandling: false -}; -var isNonNullishPrimitive = function isNonNullishPrimitive(v) { - return typeof v === 'string' - || typeof v === 'number' - || typeof v === 'boolean' - || typeof v === 'symbol' - || typeof v === 'bigint'; -}; + /** + */ -var stringify = function stringify( - object, - prefix, - generateArrayPrefix, - strictNullHandling, - skipNulls, - encoder, - filter, - sort, - allowDots, - serializeDate, - format, - formatter, - encodeValuesOnly, - charset -) { - var obj = object; - if (typeof filter === 'function') { - obj = filter(prefix, obj); - } else if (obj instanceof Date) { - obj = serializeDate(obj); - } else if (generateArrayPrefix === 'comma' && isArray(obj)) { - obj = utils.maybeMap(obj, function (value) { - if (value instanceof Date) { - return serializeDate(value); - } - return value; - }); - } + $size: function(a, b) { + return b ? a === b.length : false; + }, - if (obj === null) { - if (strictNullHandling) { - return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder, charset, 'key', format) : prefix; - } + /** + */ - obj = ''; - } + $or: function(a, b, k, o) { + for (var i = 0, n = a.length; i < n; i++) if (validate(get(a, i), b, k, o)) return true; + return false; + }, - if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) { - if (encoder) { - var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format); - return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format))]; + /** + */ + + $nor: function(a, b, k, o) { + return !OPERATORS.$or(a, b, k, o); + }, + + /** + */ + + $and: function(a, b, k, o) { + for (var i = 0, n = a.length; i < n; i++) { + if (!validate(get(a, i), b, k, o)) { + return false; } - return [formatter(prefix) + '=' + formatter(String(obj))]; - } + } + return true; + }, - var values = []; + /** + */ - if (typeof obj === 'undefined') { - return values; - } + $regex: or(function(a, b) { + return typeof b === 'string' && a.test(b); + }), - var objKeys; - if (generateArrayPrefix === 'comma' && isArray(obj)) { - // we need to join elements in - objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : undefined }]; - } else if (isArray(filter)) { - objKeys = filter; - } else { - var keys = Object.keys(obj); - objKeys = sort ? keys.sort(sort) : keys; - } + /** + */ - for (var i = 0; i < objKeys.length; ++i) { - var key = objKeys[i]; - var value = typeof key === 'object' && key.value !== undefined ? key.value : obj[key]; + $where: function(a, b, k, o) { + return a.call(b, b, k, o); + }, - if (skipNulls && value === null) { - continue; - } + /** + */ - var keyPrefix = isArray(obj) - ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(prefix, key) : prefix - : prefix + (allowDots ? '.' + key : '[' + key + ']'); + $elemMatch: function(a, b, k, o) { + if (isArray(b)) { + return !!~search(b, a); + } + return validate(a, b, k, o); + }, - pushToArray(values, stringify( - value, - keyPrefix, - generateArrayPrefix, - strictNullHandling, - skipNulls, - encoder, - filter, - sort, - allowDots, - serializeDate, - format, - formatter, - encodeValuesOnly, - charset - )); + /** + */ + + $exists: function(a, b, k, o) { + return o.hasOwnProperty(k) === a; } + }; - return values; -}; + /** + */ -var normalizeStringifyOptions = function normalizeStringifyOptions(opts) { - if (!opts) { - return defaults; - } + var prepare = { - if (opts.encoder !== null && opts.encoder !== undefined && typeof opts.encoder !== 'function') { - throw new TypeError('Encoder has to be a function.'); - } + /** + */ - var charset = opts.charset || defaults.charset; - if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') { - throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined'); - } + $eq: function(a) { - var format = formats['default']; - if (typeof opts.format !== 'undefined') { - if (!has.call(formats.formatters, opts.format)) { - throw new TypeError('Unknown format option provided.'); + if (a instanceof RegExp) { + return function(b) { + return typeof b === 'string' && a.test(b); + }; + } else if (a instanceof Function) { + return a; + } else if (isArray(a) && !a.length) { + // Special case of a == [] + return function(b) { + return (isArray(b) && !b.length); + }; + } else if (a === null){ + return function(b){ + //will match both null and undefined + return b == null; } - format = opts.format; - } - var formatter = formats.formatters[format]; + } - var filter = defaults.filter; - if (typeof opts.filter === 'function' || isArray(opts.filter)) { - filter = opts.filter; - } + return function(b) { + return sift.compare(comparable(b), a) === 0; + }; + }, - return { - addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix, - allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots, - charset: charset, - charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel, - delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter, - encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode, - encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder, - encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly, - filter: filter, - format: format, - formatter: formatter, - serializeDate: typeof opts.serializeDate === 'function' ? opts.serializeDate : defaults.serializeDate, - skipNulls: typeof opts.skipNulls === 'boolean' ? opts.skipNulls : defaults.skipNulls, - sort: typeof opts.sort === 'function' ? opts.sort : null, - strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling - }; -}; + /** + */ -module.exports = function (object, opts) { - var obj = object; - var options = normalizeStringifyOptions(opts); + $ne: function(a) { + return prepare.$eq(a); + }, - var objKeys; - var filter; + /** + */ - if (typeof options.filter === 'function') { - filter = options.filter; - obj = filter('', obj); - } else if (isArray(options.filter)) { - filter = options.filter; - objKeys = filter; - } + $and: function(a) { + return a.map(parse); + }, - var keys = []; + /** + */ - if (typeof obj !== 'object' || obj === null) { - return ''; + $all: function(a) { + return prepare.$and(a); + }, + + /** + */ + + $or: function(a) { + return a.map(parse); + }, + + /** + */ + + $nor: function(a) { + return a.map(parse); + }, + + /** + */ + + $not: function(a) { + return parse(a); + }, + + /** + */ + + $regex: function(a, query) { + return new RegExp(a, query.$options); + }, + + /** + */ + + $where: function(a) { + return typeof a === 'string' ? new Function('obj', 'return ' + a) : a; + }, + + /** + */ + + $elemMatch: function(a) { + return parse(a); + }, + + /** + */ + + $exists: function(a) { + return !!a; } + }; - var arrayFormat; - if (opts && opts.arrayFormat in arrayPrefixGenerators) { - arrayFormat = opts.arrayFormat; - } else if (opts && 'indices' in opts) { - arrayFormat = opts.indices ? 'indices' : 'repeat'; - } else { - arrayFormat = 'indices'; + /** + */ + + function search(array, validator) { + + for (var i = 0; i < array.length; i++) { + var result = get(array, i); + if (validate(validator, get(array, i))) { + return i; + } } - var generateArrayPrefix = arrayPrefixGenerators[arrayFormat]; + return -1; + } - if (!objKeys) { - objKeys = Object.keys(obj); + /** + */ + + function createValidator(a, validate) { + return { a: a, v: validate }; + } + + /** + */ + + function nestedValidator(a, b) { + var values = []; + findValues(b, a.k, 0, b, values); + + if (values.length === 1) { + var first = values[0]; + return validate(a.nv, first[0], first[1], first[2]); } - if (options.sort) { - objKeys.sort(options.sort); + // If the query contains $ne, need to test all elements ANDed together + var inclusive = a && a.q && typeof a.q.$ne !== 'undefined'; + var allValid = inclusive; + for (var i = 0; i < values.length; i++) { + var result = values[i]; + var isValid = validate(a.nv, result[0], result[1], result[2]); + if (inclusive) { + allValid &= isValid; + } else { + allValid |= isValid; + } } + return allValid; + } - for (var i = 0; i < objKeys.length; ++i) { - var key = objKeys[i]; + /** + */ - if (options.skipNulls && obj[key] === null) { - continue; - } - pushToArray(keys, stringify( - obj[key], - key, - generateArrayPrefix, - options.strictNullHandling, - options.skipNulls, - options.encode ? options.encoder : null, - options.filter, - options.sort, - options.allowDots, - options.serializeDate, - options.format, - options.formatter, - options.encodeValuesOnly, - options.charset - )); + function findValues(current, keypath, index, object, values) { + + if (index === keypath.length || current == void 0) { + + values.push([current, keypath[index - 1], object]); + return; } - var joined = keys.join(options.delimiter); - var prefix = options.addQueryPrefix === true ? '?' : ''; + var k = get(keypath, index); - if (options.charsetSentinel) { - if (options.charset === 'iso-8859-1') { - // encodeURIComponent('✓'), the "numeric entity" representation of a checkmark - prefix += 'utf8=%26%2310003%3B&'; - } else { - // encodeURIComponent('✓') - prefix += 'utf8=%E2%9C%93&'; - } + // ensure that if current is an array, that the current key + // is NOT an array index. This sort of thing needs to work: + // sift({'foo.0':42}, [{foo: [42]}]); + if (isArray(current) && isNaN(Number(k))) { + for (var i = 0, n = current.length; i < n; i++) { + findValues(get(current, i), keypath, index, current, values); + } + } else { + findValues(get(current, k), keypath, index + 1, current, values); } + } - return joined.length > 0 ? prefix + joined : ''; -}; - - -/***/ }), -/* 649 */ -/***/ (function(module, exports, __webpack_require__) { + /** + */ -"use strict"; + function createNestedValidator(keypath, a, q) { + return { a: { k: keypath, nv: a, q: q }, v: nestedValidator }; + } + /** + * flatten the query + */ -var formats = __webpack_require__(650); + function isVanillaObject(value) { + return value && value.constructor === Object; + } -var has = Object.prototype.hasOwnProperty; -var isArray = Array.isArray; + function parse(query) { + query = comparable(query); -var hexTable = (function () { - var array = []; - for (var i = 0; i < 256; ++i) { - array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase()); + if (!query || !isVanillaObject(query)) { // cross browser support + query = { $eq: query }; } - return array; -}()); + var validators = []; -var compactQueue = function compactQueue(queue) { - while (queue.length > 1) { - var item = queue.pop(); - var obj = item.obj[item.prop]; + for (var key in query) { + var a = query[key]; - if (isArray(obj)) { - var compacted = []; + if (key === '$options') { + continue; + } - for (var j = 0; j < obj.length; ++j) { - if (typeof obj[j] !== 'undefined') { - compacted.push(obj[j]); - } - } + if (OPERATORS[key]) { + if (prepare[key]) a = prepare[key](a, query); + validators.push(createValidator(comparable(a), OPERATORS[key])); + } else { - item.obj[item.prop] = compacted; + if (key.charCodeAt(0) === 36) { + throw new Error('Unknown operation ' + key); } + validators.push(createNestedValidator(key.split('.'), parse(a), a)); + } } -}; -var arrayToObject = function arrayToObject(source, options) { - var obj = options && options.plainObjects ? Object.create(null) : {}; - for (var i = 0; i < source.length; ++i) { - if (typeof source[i] !== 'undefined') { - obj[i] = source[i]; - } - } + return validators.length === 1 ? validators[0] : createValidator(validators, OPERATORS.$and); + } - return obj; -}; + /** + */ -var merge = function merge(target, source, options) { - /* eslint no-param-reassign: 0 */ - if (!source) { - return target; + function createRootValidator(query, getter) { + var validator = parse(query); + if (getter) { + validator = { + a: validator, + v: function(a, b, k, o) { + return validate(a, getter(b), k, o); + } + }; } + return validator; + } - if (typeof source !== 'object') { - if (isArray(target)) { - target.push(source); - } else if (target && typeof target === 'object') { - if ((options && (options.plainObjects || options.allowPrototypes)) || !has.call(Object.prototype, source)) { - target[source] = true; - } - } else { - return [target, source]; - } + /** + */ - return target; - } + function sift(query, array, getter) { - if (!target || typeof target !== 'object') { - return [target].concat(source); + if (isFunction(array)) { + getter = array; + array = void 0; } - var mergeTarget = target; - if (isArray(target) && !isArray(source)) { - mergeTarget = arrayToObject(target, options); - } + var validator = createRootValidator(query, getter); - if (isArray(target) && isArray(source)) { - source.forEach(function (item, i) { - if (has.call(target, i)) { - var targetItem = target[i]; - if (targetItem && typeof targetItem === 'object' && item && typeof item === 'object') { - target[i] = merge(targetItem, item, options); - } else { - target.push(item); - } - } else { - target[i] = item; - } - }); - return target; + function filter(b, k, o) { + return validate(validator, b, k, o); } - return Object.keys(source).reduce(function (acc, key) { - var value = source[key]; + if (array) { + return array.filter(filter); + } - if (has.call(acc, key)) { - acc[key] = merge(acc[key], value, options); - } else { - acc[key] = value; - } - return acc; - }, mergeTarget); -}; + return filter; + } -var assign = function assignSingleSource(target, source) { - return Object.keys(source).reduce(function (acc, key) { - acc[key] = source[key]; - return acc; - }, target); -}; + /** + */ -var decode = function (str, decoder, charset) { - var strWithoutPlus = str.replace(/\+/g, ' '); - if (charset === 'iso-8859-1') { - // unescape never throws, no try...catch needed: - return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape); - } - // utf-8 - try { - return decodeURIComponent(strWithoutPlus); - } catch (e) { - return strWithoutPlus; + sift.use = function(plugin) { + if (isFunction(plugin)) return plugin(sift); + for (var key in plugin) { + /* istanbul ignore else */ + if (key.charCodeAt(0) === 36) { + OPERATORS[key] = plugin[key]; + } } -}; + }; -var encode = function encode(str, defaultEncoder, charset, kind, format) { - // This code was originally written by Brian White (mscdex) for the io.js core querystring library. - // It has been adapted here for stricter adherence to RFC 3986 - if (str.length === 0) { - return str; - } + /** + */ - var string = str; - if (typeof str === 'symbol') { - string = Symbol.prototype.toString.call(str); - } else if (typeof str !== 'string') { - string = String(str); - } + sift.indexOf = function(query, array, getter) { + return search(array, createRootValidator(query, getter)); + }; - if (charset === 'iso-8859-1') { - return escape(string).replace(/%u[0-9a-f]{4}/gi, function ($0) { - return '%26%23' + parseInt($0.slice(2), 16) + '%3B'; - }); + /** + */ + + sift.compare = function(a, b) { + if(a===b) return 0; + if(typeof a === typeof b) { + if (a > b) { + return 1; + } + if (a < b) { + return -1; + } } + }; - var out = ''; - for (var i = 0; i < string.length; ++i) { - var c = string.charCodeAt(i); + /* istanbul ignore next */ + if ( true && typeof module.exports !== 'undefined') { + Object.defineProperty(exports, "__esModule", { + value: true + }); - if ( - c === 0x2D // - - || c === 0x2E // . - || c === 0x5F // _ - || c === 0x7E // ~ - || (c >= 0x30 && c <= 0x39) // 0-9 - || (c >= 0x41 && c <= 0x5A) // a-z - || (c >= 0x61 && c <= 0x7A) // A-Z - || (format === formats.RFC1738 && (c === 0x28 || c === 0x29)) // ( ) - ) { - out += string.charAt(i); - continue; - } + module.exports = sift; + exports['default'] = module.exports.default = sift; + } - if (c < 0x80) { - out = out + hexTable[c]; - continue; - } + /* istanbul ignore next */ + if (typeof window !== 'undefined') { + window.sift = sift; + } +})(); - if (c < 0x800) { - out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]); - continue; - } - if (c < 0xD800 || c >= 0xE000) { - out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]); - continue; - } +/***/ }), +/* 665 */ +/***/ (function(module, exports, __webpack_require__) { - i += 1; - c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF)); - out += hexTable[0xF0 | (c >> 18)] - + hexTable[0x80 | ((c >> 12) & 0x3F)] - + hexTable[0x80 | ((c >> 6) & 0x3F)] - + hexTable[0x80 | (c & 0x3F)]; - } +var baseAssignValue = __webpack_require__(571), + createAggregator = __webpack_require__(666); - return out; -}; +/** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the last element responsible for generating the key. The + * iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * var array = [ + * { 'dir': 'left', 'code': 97 }, + * { 'dir': 'right', 'code': 100 } + * ]; + * + * _.keyBy(array, function(o) { + * return String.fromCharCode(o.code); + * }); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + * + * _.keyBy(array, 'dir'); + * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } + */ +var keyBy = createAggregator(function(result, value, key) { + baseAssignValue(result, key, value); +}); -var compact = function compact(value) { - var queue = [{ obj: { o: value }, prop: 'o' }]; - var refs = []; +module.exports = keyBy; - for (var i = 0; i < queue.length; ++i) { - var item = queue[i]; - var obj = item.obj[item.prop]; - var keys = Object.keys(obj); - for (var j = 0; j < keys.length; ++j) { - var key = keys[j]; - var val = obj[key]; - if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) { - queue.push({ obj: obj, prop: key }); - refs.push(val); - } - } - } +/***/ }), +/* 666 */ +/***/ (function(module, exports, __webpack_require__) { - compactQueue(queue); +var arrayAggregator = __webpack_require__(667), + baseAggregator = __webpack_require__(668), + baseIteratee = __webpack_require__(415), + isArray = __webpack_require__(75); - return value; -}; +/** + * Creates a function like `_.groupBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} [initializer] The accumulator object initializer. + * @returns {Function} Returns the new aggregator function. + */ +function createAggregator(setter, initializer) { + return function(collection, iteratee) { + var func = isArray(collection) ? arrayAggregator : baseAggregator, + accumulator = initializer ? initializer() : {}; -var isRegExp = function isRegExp(obj) { - return Object.prototype.toString.call(obj) === '[object RegExp]'; -}; + return func(collection, setter, baseIteratee(iteratee, 2), accumulator); + }; +} -var isBuffer = function isBuffer(obj) { - if (!obj || typeof obj !== 'object') { - return false; - } +module.exports = createAggregator; - return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj)); -}; -var combine = function combine(a, b) { - return [].concat(a, b); -}; +/***/ }), +/* 667 */ +/***/ (function(module, exports) { -var maybeMap = function maybeMap(val, fn) { - if (isArray(val)) { - var mapped = []; - for (var i = 0; i < val.length; i += 1) { - mapped.push(fn(val[i])); - } - return mapped; - } - return fn(val); -}; +/** + * A specialized version of `baseAggregator` for arrays. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ +function arrayAggregator(array, setter, iteratee, accumulator) { + var index = -1, + length = array == null ? 0 : array.length; -module.exports = { - arrayToObject: arrayToObject, - assign: assign, - combine: combine, - compact: compact, - decode: decode, - encode: encode, - isBuffer: isBuffer, - isRegExp: isRegExp, - maybeMap: maybeMap, - merge: merge -}; + while (++index < length) { + var value = array[index]; + setter(accumulator, value, iteratee(value), array); + } + return accumulator; +} + +module.exports = arrayAggregator; /***/ }), -/* 650 */ +/* 668 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var baseEach = __webpack_require__(657); +/** + * Aggregates elements of `collection` on `accumulator` with keys transformed + * by `iteratee` and values set by `setter`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ +function baseAggregator(collection, setter, iteratee, accumulator) { + baseEach(collection, function(value, key, collection) { + setter(accumulator, value, iteratee(value), collection); + }); + return accumulator; +} -var replace = String.prototype.replace; -var percentTwenties = /%20/g; +module.exports = baseAggregator; -var Format = { - RFC1738: 'RFC1738', - RFC3986: 'RFC3986' -}; -module.exports = { - 'default': Format.RFC3986, - formatters: { - RFC1738: function (value) { - return replace.call(value, percentTwenties, '+'); - }, - RFC3986: function (value) { - return String(value); - } - }, - RFC1738: Format.RFC1738, - RFC3986: Format.RFC3986 -}; +/***/ }), +/* 669 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseIsEqual = __webpack_require__(424); + +/** + * Performs a deep comparison between two values to determine if they are + * equivalent. + * + * **Note:** This method supports comparing arrays, array buffers, booleans, + * date objects, error objects, maps, numbers, `Object` objects, regexes, + * sets, strings, symbols, and typed arrays. `Object` objects are compared + * by their own, not inherited, enumerable properties. Functions and DOM + * nodes are compared by strict equality, i.e. `===`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.isEqual(object, other); + * // => true + * + * object === other; + * // => false + */ +function isEqual(value, other) { + return baseIsEqual(value, other); +} + +module.exports = isEqual; /***/ }), -/* 651 */ +/* 670 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var utils = __webpack_require__(649); +var _interopRequireDefault = __webpack_require__(532); -var has = Object.prototype.hasOwnProperty; -var isArray = Array.isArray; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; -var defaults = { - allowDots: false, - allowPrototypes: false, - arrayLimit: 20, - charset: 'utf-8', - charsetSentinel: false, - comma: false, - decoder: utils.decode, - delimiter: '&', - depth: 5, - ignoreQueryPrefix: false, - interpretNumericEntities: false, - parameterLimit: 1000, - parseArrays: true, - plainObjects: false, - strictNullHandling: false -}; +var _defineProperty2 = _interopRequireDefault(__webpack_require__(546)); -var interpretNumericEntities = function (str) { - return str.replace(/&#(\d+);/g, function ($0, numberStr) { - return String.fromCharCode(parseInt(numberStr, 10)); - }); -}; +var _objectSpread3 = _interopRequireDefault(__webpack_require__(545)); -var parseArrayValue = function (val, options) { - if (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) { - return val.split(','); - } +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - return val; -}; +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -// This is what browsers will submit when the ✓ character occurs in an -// application/x-www-form-urlencoded body and the encoding of the page containing -// the form is iso-8859-1, or when the submitted form has an accept-charset -// attribute of iso-8859-1. Presumably also with other charsets that do not contain -// the ✓ character, such as us-ascii. -var isoSentinel = 'utf8=%26%2310003%3B'; // encodeURIComponent('✓') +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -// These are the percent-encoded utf-8 octets representing a checkmark, indicating that the request actually is utf-8 encoded. -var charsetSentinel = 'utf8=%E2%9C%93'; // encodeURIComponent('✓') +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -var parseValues = function parseQueryStringValues(str, options) { - var obj = {}; - var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, '') : str; - var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit; - var parts = cleanStr.split(options.delimiter, limit); - var skipIndex = -1; // Keep track of where the utf8 sentinel was found - var i; +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); - var charset = options.charset; - if (options.charsetSentinel) { - for (i = 0; i < parts.length; ++i) { - if (parts[i].indexOf('utf8=') === 0) { - if (parts[i] === charsetSentinel) { - charset = 'utf-8'; - } else if (parts[i] === isoSentinel) { - charset = 'iso-8859-1'; - } - skipIndex = i; - i = parts.length; // The eslint settings do not allow break; - } - } - } +var _get2 = _interopRequireDefault(__webpack_require__(372)); - for (i = 0; i < parts.length; ++i) { - if (i === skipIndex) { - continue; - } - var part = parts[i]; +var _set2 = _interopRequireDefault(__webpack_require__(671)); - var bracketEqualsPos = part.indexOf(']='); - var pos = bracketEqualsPos === -1 ? part.indexOf('=') : bracketEqualsPos + 1; +var _Association2 = _interopRequireDefault(__webpack_require__(616)); - var key, val; - if (pos === -1) { - key = options.decoder(part, defaults.decoder, charset, 'key'); - val = options.strictNullHandling ? null : ''; - } else { - key = options.decoder(part.slice(0, pos), defaults.decoder, charset, 'key'); - val = utils.maybeMap( - parseArrayValue(part.slice(pos + 1), options), - function (encodedVal) { - return options.decoder(encodedVal, defaults.decoder, charset, 'value'); - } - ); - } +var HasOne = +/*#__PURE__*/ +function (_Association) { + (0, _inherits2.default)(HasOne, _Association); - if (val && options.interpretNumericEntities && charset === 'iso-8859-1') { - val = interpretNumericEntities(val); - } + function HasOne() { + (0, _classCallCheck2.default)(this, HasOne); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(HasOne).apply(this, arguments)); + } - if (part.indexOf('[]=') > -1) { - val = isArray(val) ? [val] : val; - } + (0, _createClass2.default)(HasOne, [{ + key: "set", + value: function set(doc) { + if (doc && doc._type !== this.doctype) { + throw new Error("Tried to associate a ".concat(doc._type, " document to a HasOne relationship on ").concat(this.doctype, " document")); + } - if (has.call(obj, key)) { - obj[key] = utils.combine(obj[key], val); - } else { - obj[key] = val; - } - } + var path = "relationships[".concat(this.name, "].data"); - return obj; -}; + if (doc) { + (0, _set2.default)(this.target, path, { + _id: doc._id, + _type: doc._type + }); + } else { + (0, _set2.default)(this.target, path, undefined); + } + } + }, { + key: "unset", + value: function unset() { + this.set(undefined); + } + }, { + key: "dehydrate", + value: function dehydrate(doc) { + if (!this.raw) { + return doc; + } -var parseObject = function (chain, val, options, valuesParsed) { - var leaf = valuesParsed ? val : parseArrayValue(val, options); + return (0, _objectSpread3.default)({}, doc, { + relationships: (0, _objectSpread3.default)({}, doc.relationships, (0, _defineProperty2.default)({}, this.name, { + data: this.raw + })) + }); + } + }, { + key: "raw", + get: function get() { + return (0, _get2.default)(this.target, "relationships[".concat(this.name, "].data"), null); + } + }, { + key: "data", + get: function get() { + if (!this.raw) { + return null; + } - for (var i = chain.length - 1; i >= 0; --i) { - var obj; - var root = chain[i]; + return this.get(this.doctype, this.raw._id); + } + }], [{ + key: "query", + value: function query(doc, client, assoc) { + var relationship = (0, _get2.default)(doc, "relationships.".concat(assoc.name, ".data"), {}); - if (root === '[]' && options.parseArrays) { - obj = [].concat(leaf); - } else { - obj = options.plainObjects ? Object.create(null) : {}; - var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root; - var index = parseInt(cleanRoot, 10); - if (!options.parseArrays && cleanRoot === '') { - obj = { 0: leaf }; - } else if ( - !isNaN(index) - && root !== cleanRoot - && String(index) === cleanRoot - && index >= 0 - && (options.parseArrays && index <= options.arrayLimit) - ) { - obj = []; - obj[index] = leaf; - } else { - obj[cleanRoot] = leaf; - } - } + if (!relationship || !relationship._id) { + return null; + } - leaf = obj; + return client.get(assoc.doctype, relationship._id); } + }]); + return HasOne; +}(_Association2.default); - return leaf; -}; +exports.default = HasOne; -var parseKeys = function parseQueryStringKeys(givenKey, val, options, valuesParsed) { - if (!givenKey) { - return; - } +/***/ }), +/* 671 */ +/***/ (function(module, exports, __webpack_require__) { - // Transform dot notation to bracket notation - var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, '[$1]') : givenKey; +var baseSet = __webpack_require__(672); - // The regex chunks +/** + * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, + * it's created. Arrays are created for missing index properties while objects + * are created for all other missing properties. Use `_.setWith` to customize + * `path` creation. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.set(object, 'a[0].b.c', 4); + * console.log(object.a[0].b.c); + * // => 4 + * + * _.set(object, ['x', '0', 'y', 'z'], 5); + * console.log(object.x[0].y.z); + * // => 5 + */ +function set(object, path, value) { + return object == null ? object : baseSet(object, path, value); +} - var brackets = /(\[[^[\]]*])/; - var child = /(\[[^[\]]*])/g; +module.exports = set; - // Get the parent - var segment = options.depth > 0 && brackets.exec(key); - var parent = segment ? key.slice(0, segment.index) : key; +/***/ }), +/* 672 */ +/***/ (function(module, exports, __webpack_require__) { - // Stash the parent if it exists +var assignValue = __webpack_require__(570), + castPath = __webpack_require__(374), + isIndex = __webpack_require__(450), + isObject = __webpack_require__(72), + toKey = __webpack_require__(413); - var keys = []; - if (parent) { - // If we aren't using plain objects, optionally prefix keys that would overwrite object prototype properties - if (!options.plainObjects && has.call(Object.prototype, parent)) { - if (!options.allowPrototypes) { - return; - } - } +/** + * The base implementation of `_.set`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. + */ +function baseSet(object, path, value, customizer) { + if (!isObject(object)) { + return object; + } + path = castPath(path, object); - keys.push(parent); - } + var index = -1, + length = path.length, + lastIndex = length - 1, + nested = object; - // Loop through children appending to the array until we hit depth + while (nested != null && ++index < length) { + var key = toKey(path[index]), + newValue = value; - var i = 0; - while (options.depth > 0 && (segment = child.exec(key)) !== null && i < options.depth) { - i += 1; - if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) { - if (!options.allowPrototypes) { - return; - } - } - keys.push(segment[1]); + if (key === '__proto__' || key === 'constructor' || key === 'prototype') { + return object; } - // If there's a remainder, just add whatever is left - - if (segment) { - keys.push('[' + key.slice(segment.index) + ']'); + if (index != lastIndex) { + var objValue = nested[key]; + newValue = customizer ? customizer(objValue, key, nested) : undefined; + if (newValue === undefined) { + newValue = isObject(objValue) + ? objValue + : (isIndex(path[index + 1]) ? [] : {}); + } } + assignValue(nested, key, newValue); + nested = nested[key]; + } + return object; +} - return parseObject(keys, val, options, valuesParsed); -}; +module.exports = baseSet; -var normalizeParseOptions = function normalizeParseOptions(opts) { - if (!opts) { - return defaults; - } - if (opts.decoder !== null && opts.decoder !== undefined && typeof opts.decoder !== 'function') { - throw new TypeError('Decoder has to be a function.'); - } +/***/ }), +/* 673 */ +/***/ (function(module, exports, __webpack_require__) { - if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') { - throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined'); - } - var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset; +"use strict"; - return { - allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots, - allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes, - arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit, - charset: charset, - charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel, - comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma, - decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder, - delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter, - // eslint-disable-next-line no-implicit-coercion, no-extra-parens - depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth, - ignoreQueryPrefix: opts.ignoreQueryPrefix === true, - interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities, - parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit, - parseArrays: opts.parseArrays !== false, - plainObjects: typeof opts.plainObjects === 'boolean' ? opts.plainObjects : defaults.plainObjects, - strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling - }; -}; -module.exports = function (str, opts) { - var options = normalizeParseOptions(opts); +var _interopRequireDefault = __webpack_require__(532); - if (str === '' || str === null || typeof str === 'undefined') { - return options.plainObjects ? Object.create(null) : {}; - } +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.BelongsToInPlace = exports.default = void 0; - var tempObj = typeof str === 'string' ? parseValues(str, options) : str; - var obj = options.plainObjects ? Object.create(null) : {}; +var _defineProperty2 = _interopRequireDefault(__webpack_require__(546)); - // Iterate over the keys and setup the new object +var _objectSpread3 = _interopRequireDefault(__webpack_require__(545)); - var keys = Object.keys(tempObj); - for (var i = 0; i < keys.length; ++i) { - var key = keys[i]; - var newObj = parseKeys(key, tempObj[key], options, typeof str === 'string'); - obj = utils.merge(obj, newObj, options); - } +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - return utils.compact(obj); -}; +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); + +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); + +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); + +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); + +var _Association2 = _interopRequireDefault(__webpack_require__(616)); + +/** + * Here the id of the document is directly set in the attribute + * of the document, not in the relationships attribute + */ +var HasOneInPlace = +/*#__PURE__*/ +function (_Association) { + (0, _inherits2.default)(HasOneInPlace, _Association); + + function HasOneInPlace() { + (0, _classCallCheck2.default)(this, HasOneInPlace); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(HasOneInPlace).apply(this, arguments)); + } + + (0, _createClass2.default)(HasOneInPlace, [{ + key: "dehydrate", + value: function dehydrate(doc) { + return (0, _objectSpread3.default)({}, doc, (0, _defineProperty2.default)({}, this.name, this.raw || undefined)); + } + }, { + key: "raw", + get: function get() { + return this.target[this.name]; + } + }, { + key: "data", + get: function get() { + return this.get(this.doctype, this.raw); + } + }], [{ + key: "query", + value: function query(doc, client, assoc) { + var id = doc[assoc.name]; + return client.getDocumentFromState(assoc.doctype, id) || client.get(assoc.doctype, id); + } + }]); + return HasOneInPlace; +}(_Association2.default); +exports.default = HasOneInPlace; +var BelongsToInPlace = HasOneInPlace; +exports.BelongsToInPlace = BelongsToInPlace; /***/ }), -/* 652 */ +/* 674 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.isMatchingIndex = exports.isInconsistentIndex = exports.getIndexFields = exports.transformSort = exports.getIndexNameFromFields = exports.normalizeDesignDoc = void 0; +exports.default = void 0; -var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(540)); +var _defineProperty2 = _interopRequireDefault(__webpack_require__(546)); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +var _objectSpread3 = _interopRequireDefault(__webpack_require__(545)); -var _utils = __webpack_require__(629); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var _head = _interopRequireDefault(__webpack_require__(639)); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -var _get = _interopRequireDefault(__webpack_require__(370)); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -var _isEqual = _interopRequireDefault(__webpack_require__(653)); +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +var _Association2 = _interopRequireDefault(__webpack_require__(616)); + +var _dsl = _interopRequireDefault(__webpack_require__(561)); /** - * Attributes representing a design doc * - * @typedef {object} DesignDoc - * @property {string} _id - Id of the design doc. Can be named, e.g. '_design/by_indexed_attribute' or not, e.g. '_design/12345' - * @property {string} language - The index language. Can be 'query' for mango index or 'javascript' for views. - * @property {object} views - Views definition, i.e. the index. + * Used when related documents are stored directly under the attribute with + * only the ids. + * + * @description + * + * An example document representing a TODO. See as the related + * tasks are represented via ids. + * + * ```js + * const todo = { + * label: "Protect people's privacy", + * tasks: [1, 2] + * } + * ``` + * + * Here is the `Schema` that would represent this kind of document. + * Components receiving todos via `Query`s would have an instance of `HasManyInPlace` + * as their `tasks` attribute. + * + * ```js + * const schema = { + * todos: { + * doctype: 'io.cozy.todos', + * relationships: { + * tasks: { + * doctype: 'io.cozy.tasks', + * type: 'has-many-in-place' + * } + * } + * } + * } + * + * const todo = { + * label: "Get rich", + * tasks: [1, 2] + * } + * ``` + * */ -var normalizeDesignDoc = function normalizeDesignDoc(designDoc) { - var id = designDoc._id || designDoc.id; - return _objectSpread({ - id: id, - _id: id - }, designDoc.doc); -}; +var HasManyInPlace = +/*#__PURE__*/ +function (_Association) { + (0, _inherits2.default)(HasManyInPlace, _Association); -exports.normalizeDesignDoc = normalizeDesignDoc; + function HasManyInPlace() { + (0, _classCallCheck2.default)(this, HasManyInPlace); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(HasManyInPlace).apply(this, arguments)); + } -var getIndexNameFromFields = function getIndexNameFromFields(fields) { - return "by_".concat(fields.join('_and_')); -}; + (0, _createClass2.default)(HasManyInPlace, [{ + key: "addById", + value: function addById(id) { + var rel = this.getRelationship(); + rel.push(id); + } + }, { + key: "removeById", + value: function removeById(id) { + var rel = this.getRelationship(); + var index = rel.indexOf(id); -exports.getIndexNameFromFields = getIndexNameFromFields; + if (index !== -1) { + rel.splice(index, 1); + } + } + }, { + key: "existsById", + value: function existsById(id) { + var rel = this.getRelationship(); + return rel.indexOf(id) !== -1; + } + }, { + key: "getRelationship", + value: function getRelationship() { + this.target[this.name] = this.target[this.name] || []; + return this.target[this.name]; + } + }, { + key: "dehydrate", + value: function dehydrate(doc) { + return (0, _objectSpread3.default)({}, doc, (0, _defineProperty2.default)({}, this.name, this.raw || [])); + } + }, { + key: "raw", + get: function get() { + return this.target[this.name]; + } + }, { + key: "data", + get: function get() { + var _this = this; -var transformSort = function transformSort(sort) { - if (!sort || Array.isArray(sort)) { - return sort; - } + var doctype = this.doctype; + return (this.raw || []).map(function (_id) { + return _this.get(doctype, _id); + }); + } + }], [{ + key: "query", + value: function query() { + if (this.raw && this.raw.length > 0) { + return (0, _dsl.default)({ + doctype: this.doctype, + ids: this.raw + }); + } else { + return null; + } + } + }]); + return HasManyInPlace; +}(_Association2.default); - console.warn('Passing an object to the "sort" is deprecated, please use an array instead.'); - return (0, _utils.transform)(sort, function (acc, order, field) { - return acc.push((0, _defineProperty2.default)({}, field, order)); - }, []); -}; -/** - * Compute fields that should be indexed for a mango - * query to work - * - * @param {object} options - Mango query options - * @returns {Array} - Fields to index - */ +var _default = HasManyInPlace; +exports.default = _default; + +/***/ }), +/* 675 */ +/***/ (function(module, exports, __webpack_require__) { +"use strict"; -exports.transformSort = transformSort; -var getIndexFields = function getIndexFields(_ref) { - var selector = _ref.selector, - _ref$sort = _ref.sort, - sort = _ref$sort === void 0 ? [] : _ref$sort; - return Array.from(new Set([].concat((0, _toConsumableArray2.default)(sort.map(function (sortOption) { - return (0, _head.default)(Object.keys(sortOption)); - })), (0, _toConsumableArray2.default)(selector ? Object.keys(selector) : [])))); -}; -/** - * Check if an index is in an inconsistent state, i.e. its name - * contains the indexed attributes which are not in correct order. - * - * @param {DesignDoc} index - The index to check - * @returns {boolean} True if the index is inconsistent - */ +var _interopRequireDefault = __webpack_require__(532); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -exports.getIndexFields = getIndexFields; +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -var isInconsistentIndex = function isInconsistentIndex(index) { - var indexId = index._id; +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); - if (!indexId.startsWith('_design/by_')) { - return false; - } +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); - var fieldsInName = indexId.split('_design/by_')[1].split('_and_'); - var viewId = Object.keys((0, _get.default)(index, "views"))[0]; - var fieldsInIndex = Object.keys((0, _get.default)(index, "views.".concat(viewId, ".map.fields"))); - return !(0, _isEqual.default)(fieldsInName, fieldsInIndex); -}; +var _get2 = _interopRequireDefault(__webpack_require__(565)); + +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); + +var _HasMany2 = _interopRequireDefault(__webpack_require__(615)); + +var _dsl = __webpack_require__(561); + +var TRIGGERS_DOCTYPE = 'io.cozy.triggers'; /** - * Check if an index is matching the given fields + * Association used for konnectors to retrieve all their related triggers. * - * @param {DesignDoc} index - The index to check - * @param {Array} fields - The fields that the index must have - * @param {object} partialFilter - An optional partial filter - * @returns {boolean} True if the index is matches the given fields + * @augments HasMany */ +var HasManyTriggers = +/*#__PURE__*/ +function (_HasMany) { + (0, _inherits2.default)(HasManyTriggers, _HasMany); + + function HasManyTriggers() { + (0, _classCallCheck2.default)(this, HasManyTriggers); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(HasManyTriggers).apply(this, arguments)); + } + + (0, _createClass2.default)(HasManyTriggers, [{ + key: "data", + get: function get() { + var _this = this; + + return (0, _get2.default)((0, _getPrototypeOf2.default)(HasManyTriggers.prototype), "data", this).filter(function (_ref) { + var slug = _ref.slug; + return slug === _this.target.slug; + }); + } + /** + * In this association the query is special, we need to fetch all the triggers + * having for the 'konnector' worker, and then filter them based on their + * `message.konnector` attribute + */ + + }], [{ + key: "query", + value: function query(doc, client) { + return (0, _dsl.Q)(TRIGGERS_DOCTYPE).where({ + worker: 'konnector' + }); + } + }]); + return HasManyTriggers; +}(_HasMany2.default); + +var _default = HasManyTriggers; +exports.default = _default; -exports.isInconsistentIndex = isInconsistentIndex; +/***/ }), +/* 676 */ +/***/ (function(module, exports, __webpack_require__) { -var isMatchingIndex = function isMatchingIndex(index, fields, partialFilter) { - var viewId = Object.keys((0, _get.default)(index, "views"))[0]; - var fieldsInIndex = Object.keys((0, _get.default)(index, "views.".concat(viewId, ".map.fields"))); +"use strict"; - if ((0, _isEqual.default)(fieldsInIndex, fields)) { - if (!partialFilter) { - return true; - } - var partialFilterInIndex = (0, _get.default)(index, "views.".concat(viewId, ".map.partial_filter_selector")); +var _interopRequireDefault = __webpack_require__(532); - if ((0, _isEqual.default)(partialFilter, partialFilterInIndex)) { - return true; - } - } +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.create = exports.resolveClass = exports.attachRelationships = exports.responseToRelationship = exports.pickTypeAndId = void 0; - return false; -}; +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -exports.isMatchingIndex = isMatchingIndex; +var _pick = _interopRequireDefault(__webpack_require__(677)); -/***/ }), -/* 653 */ -/***/ (function(module, exports, __webpack_require__) { +var _pickBy = _interopRequireDefault(__webpack_require__(680)); -var baseIsEqual = __webpack_require__(422); +var _Association = _interopRequireDefault(__webpack_require__(616)); -/** - * Performs a deep comparison between two values to determine if they are - * equivalent. - * - * **Note:** This method supports comparing arrays, array buffers, booleans, - * date objects, error objects, maps, numbers, `Object` objects, regexes, - * sets, strings, symbols, and typed arrays. `Object` objects are compared - * by their own, not inherited, enumerable properties. Functions and DOM - * nodes are compared by strict equality, i.e. `===`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. - * @example - * - * var object = { 'a': 1 }; - * var other = { 'a': 1 }; - * - * _.isEqual(object, other); - * // => true - * - * object === other; - * // => false - */ -function isEqual(value, other) { - return baseIsEqual(value, other); -} +var _HasOne = _interopRequireDefault(__webpack_require__(670)); -module.exports = isEqual; +var _HasOneInPlace = _interopRequireDefault(__webpack_require__(673)); +var _HasMany = _interopRequireDefault(__webpack_require__(615)); -/***/ }), -/* 654 */ -/***/ (function(module, exports, __webpack_require__) { +var _HasManyInPlace = _interopRequireDefault(__webpack_require__(674)); -"use strict"; +var _HasManyFiles = _interopRequireDefault(__webpack_require__(564)); +var pickTypeAndId = function pickTypeAndId(x) { + return (0, _pick.default)(x, '_type', '_id'); +}; -var _interopRequireDefault = __webpack_require__(530); +exports.pickTypeAndId = pickTypeAndId; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.buildURL = exports.encode = void 0; +var applyHelper = function applyHelper(fn, objOrArr) { + return Array.isArray(objOrArr) ? objOrArr.map(fn) : fn(objOrArr); +}; -var _slicedToArray2 = _interopRequireDefault(__webpack_require__(538)); +var responseToRelationship = function responseToRelationship(response) { + return (0, _pickBy.default)({ + data: applyHelper(pickTypeAndId, response.data), + meta: response.meta, + next: response.next, + skip: response.skip, + bookmark: response.bookmark + }); +}; -var _pickBy = _interopRequireDefault(__webpack_require__(655)); +exports.responseToRelationship = responseToRelationship; -var encodeValues = function encodeValues(values) { - var fromArray = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; +var attachRelationship = function attachRelationship(doc, relationships) { + return (0, _objectSpread2.default)({}, doc, { + relationships: (0, _objectSpread2.default)({}, doc.relationships, relationships) + }); +}; - if (Array.isArray(values)) { - return '[' + values.map(function (v) { - return encodeValues(v, true); - }).join(',') + ']'; +var attachRelationships = function attachRelationships(response, relationshipsByDocId) { + if (Array.isArray(response.data)) { + return (0, _objectSpread2.default)({}, response, { + data: response.data.map(function (doc) { + return attachRelationship(doc, relationshipsByDocId[doc._id]); + }) + }); + } else { + var doc = response.data; + return (0, _objectSpread2.default)({}, response, { + data: attachRelationship(doc, relationshipsByDocId[doc._id]) + }); } +}; - return fromArray ? encodeURIComponent("\"".concat(values, "\"")) : encodeURIComponent(values); +exports.attachRelationships = attachRelationships; +var aliases = { + 'io.cozy.files:has-many': _HasManyFiles.default, + 'has-many': _HasMany.default, + 'belongs-to-in-place': _HasOneInPlace.default, + 'has-one': _HasOne.default, + 'has-one-in-place': _HasOneInPlace.default, + 'has-many-in-place': _HasManyInPlace.default }; /** - * Encode an object as querystring, values are encoded as - * URI components, keys are not. + * Returns the relationship class for a given doctype/type. + * + * In the schema definition, some classes have string aliases + * so you do not have to import directly the association. + * + * Some doctypes can have built-in overriden relationships. * - * @function * @private */ +var resolveClass = function resolveClass(doctype, type) { + if (type === undefined) { + throw new Error('Undefined type for ' + doctype); + } -var encode = function encode(data) { - return Object.entries(data).map(function (_ref) { - var _ref2 = (0, _slicedToArray2.default)(_ref, 2), - k = _ref2[0], - v = _ref2[1]; + if (typeof type !== 'string') { + return type; + } else { + var qualified = "".concat(doctype, ":").concat(type); + var cls = aliases[qualified] || aliases[type]; - var encodedValue = encodeValues(v); - return "".concat(k, "=").concat(encodedValue); - }).join('&'); + if (!cls) { + throw new Error("Unknown association '".concat(type, "'")); + } else { + return cls; + } + } }; -/** - * Returns a URL from base url and a query parameter object. - * Any undefined parameter is removed. - * - * @function - * @private - */ - -exports.encode = encode; +exports.resolveClass = resolveClass; -var buildURL = function buildURL(url, params) { - var qs = encode((0, _pickBy.default)(params)); +var create = function create(target, _ref, accessors) { + var name = _ref.name, + type = _ref.type, + doctype = _ref.doctype; - if (qs) { - return "".concat(url, "?").concat(qs); - } else { - return url; + if (target[name] instanceof _Association.default) { + throw new Error("Association ".concat(name, " already exists")); } + + return new type(target, name, doctype, accessors); }; -exports.buildURL = buildURL; +exports.create = create; /***/ }), -/* 655 */ +/* 677 */ /***/ (function(module, exports, __webpack_require__) { -var arrayMap = __webpack_require__(410), - baseIteratee = __webpack_require__(413), - basePickBy = __webpack_require__(656), - getAllKeysIn = __webpack_require__(594); +var basePick = __webpack_require__(678), + flatRest = __webpack_require__(605); /** - * Creates an object composed of the `object` properties `predicate` returns - * truthy for. The predicate is invoked with two arguments: (value, key). + * Creates an object composed of the picked `object` properties. * * @static + * @since 0.1.0 * @memberOf _ - * @since 4.0.0 * @category Object * @param {Object} object The source object. - * @param {Function} [predicate=_.identity] The function invoked per property. + * @param {...(string|string[])} [paths] The property paths to pick. * @returns {Object} Returns the new object. * @example * * var object = { 'a': 1, 'b': '2', 'c': 3 }; * - * _.pickBy(object, _.isNumber); + * _.pick(object, ['a', 'c']); * // => { 'a': 1, 'c': 3 } */ -function pickBy(object, predicate) { - if (object == null) { - return {}; - } - var props = arrayMap(getAllKeysIn(object), function(prop) { - return [prop]; - }); - predicate = baseIteratee(predicate); - return basePickBy(object, props, function(value, path) { - return predicate(value, path[0]); +var pick = flatRest(function(object, paths) { + return object == null ? {} : basePick(object, paths); +}); + +module.exports = pick; + + +/***/ }), +/* 678 */ +/***/ (function(module, exports, __webpack_require__) { + +var basePickBy = __webpack_require__(679), + hasIn = __webpack_require__(470); + +/** + * The base implementation of `_.pick` without support for individual + * property identifiers. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @returns {Object} Returns the new object. + */ +function basePick(object, paths) { + return basePickBy(object, paths, function(value, path) { + return hasIn(object, path); }); } -module.exports = pickBy; +module.exports = basePick; /***/ }), -/* 656 */ +/* 679 */ /***/ (function(module, exports, __webpack_require__) { -var baseGet = __webpack_require__(371), - baseSet = __webpack_require__(657), - castPath = __webpack_require__(372); +var baseGet = __webpack_require__(373), + baseSet = __webpack_require__(672), + castPath = __webpack_require__(374); /** * The base implementation of `_.pickBy` without support for iteratee shorthands. @@ -102446,959 +100048,607 @@ module.exports = basePickBy; /***/ }), -/* 657 */ +/* 680 */ /***/ (function(module, exports, __webpack_require__) { -var assignValue = __webpack_require__(581), - castPath = __webpack_require__(372), - isIndex = __webpack_require__(448), - isObject = __webpack_require__(72), - toKey = __webpack_require__(411); +var arrayMap = __webpack_require__(412), + baseIteratee = __webpack_require__(415), + basePickBy = __webpack_require__(679), + getAllKeysIn = __webpack_require__(585); /** - * The base implementation of `_.set`. + * Creates an object composed of the `object` properties `predicate` returns + * truthy for. The predicate is invoked with two arguments: (value, key). * - * @private - * @param {Object} object The object to modify. - * @param {Array|string} path The path of the property to set. - * @param {*} value The value to set. - * @param {Function} [customizer] The function to customize path creation. - * @returns {Object} Returns `object`. + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pickBy(object, _.isNumber); + * // => { 'a': 1, 'c': 3 } */ -function baseSet(object, path, value, customizer) { - if (!isObject(object)) { - return object; - } - path = castPath(path, object); - - var index = -1, - length = path.length, - lastIndex = length - 1, - nested = object; - - while (nested != null && ++index < length) { - var key = toKey(path[index]), - newValue = value; - - if (key === '__proto__' || key === 'constructor' || key === 'prototype') { - return object; - } - - if (index != lastIndex) { - var objValue = nested[key]; - newValue = customizer ? customizer(objValue, key, nested) : undefined; - if (newValue === undefined) { - newValue = isObject(objValue) - ? objValue - : (isIndex(path[index + 1]) ? [] : {}); - } - } - assignValue(nested, key, newValue); - nested = nested[key]; +function pickBy(object, predicate) { + if (object == null) { + return {}; } - return object; + var props = arrayMap(getAllKeysIn(object), function(prop) { + return [prop]; + }); + predicate = baseIteratee(predicate); + return basePickBy(object, props, function(value, path) { + return predicate(value, path[0]); + }); } -module.exports = baseSet; +module.exports = pickBy; /***/ }), -/* 658 */ +/* 681 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.FetchError = exports.default = void 0; - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _assertThisInitialized2 = _interopRequireDefault(__webpack_require__(612)); - -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); - -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); +exports.generateWebLink = exports.dehydrate = void 0; -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); +var _slicedToArray2 = _interopRequireDefault(__webpack_require__(540)); -var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(659)); +var _associations = __webpack_require__(563); -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +var dehydrate = function dehydrate(document) { + var dehydrated = Object.entries(document).reduce(function (document, _ref) { + var _ref2 = (0, _slicedToArray2.default)(_ref, 2), + key = _ref2[0], + value = _ref2[1]; -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + if (!(value instanceof _associations.Association)) { + document[key] = value; + } else if (value.dehydrate) { + document = value.dehydrate(document); + } else { + throw new Error("Association on key ".concat(key, " should have a dehydrate method")); + } -var EXPIRED_TOKEN = /Expired token/; -var CLIENT_NOT_FOUND = /Client not found/; -var INVALID_TOKEN = /Invalid JWT token/; -var _default = { - EXPIRED_TOKEN: EXPIRED_TOKEN, - CLIENT_NOT_FOUND: CLIENT_NOT_FOUND, - INVALID_TOKEN: INVALID_TOKEN + return document; + }, {}); + return dehydrated; }; -exports.default = _default; - -var FetchError = /*#__PURE__*/function (_Error) { - (0, _inherits2.default)(FetchError, _Error); - - var _super = _createSuper(FetchError); - - function FetchError(response, reason) { - var _this; - - (0, _classCallCheck2.default)(this, FetchError); - _this = _super.call(this); - - if (Error.captureStackTrace) { - Error.captureStackTrace((0, _assertThisInitialized2.default)(_this), _this.constructor); - } // WARN We have to hardcode this because babel doesn't play nice when extending Error +exports.dehydrate = dehydrate; - _this.name = 'FetchError'; - _this.response = response; - _this.url = response.url; - _this.status = response.status; - _this.reason = reason; - Object.defineProperty((0, _assertThisInitialized2.default)(_this), 'message', { - value: reason.message || (typeof reason === 'string' ? reason : JSON.stringify(reason)) - }); - return _this; +var ensureFirstSlash = function ensureFirstSlash(path) { + if (!path) { + return '/'; + } else { + return path.startsWith('/') ? path : '/' + path; } +}; +/** + * generateWebLink - Construct a link to a web app + * + * This function does not get its cozy url from a CozyClient instance so it can + * be used to build urls that point to other Cozies than the user's own Cozy. + * This is useful when pointing to the Cozy of the owner of a shared note for + * example. + * + * @param {object} options Object of options + * @param {string} options.cozyUrl Base URL of the cozy, eg. cozy.tools or test.mycozy.cloud + * @param {Array} options.searchParams Array of search parameters as [key, value] arrays, eg. ['username', 'bob'] + * @param {string} options.pathname Path to a specific part of the app, eg. /public + * @param {string} options.hash Path inside the app, eg. /files/test.jpg + * @param {string} options.slug Slug of the app + * @param {string} options.subDomainType Whether the cozy is using flat or nested subdomains. Defaults to flat. + * + * @returns {string} Generated URL + */ - return FetchError; -}( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error)); - -exports.FetchError = FetchError; - -/***/ }), -/* 659 */ -/***/ (function(module, exports, __webpack_require__) { - -var getPrototypeOf = __webpack_require__(613); - -var setPrototypeOf = __webpack_require__(610); - -var isNativeFunction = __webpack_require__(660); - -var construct = __webpack_require__(661); - -function _wrapNativeSuper(Class) { - var _cache = typeof Map === "function" ? new Map() : undefined; - - module.exports = _wrapNativeSuper = function _wrapNativeSuper(Class) { - if (Class === null || !isNativeFunction(Class)) return Class; - - if (typeof Class !== "function") { - throw new TypeError("Super expression must either be null or a function"); - } - if (typeof _cache !== "undefined") { - if (_cache.has(Class)) return _cache.get(Class); +var generateWebLink = function generateWebLink(_ref3) { + var cozyUrl = _ref3.cozyUrl, + _ref3$searchParams = _ref3.searchParams, + searchParams = _ref3$searchParams === void 0 ? [] : _ref3$searchParams, + pathname = _ref3.pathname, + hash = _ref3.hash, + slug = _ref3.slug, + subDomainType = _ref3.subDomainType; + var url = new URL(cozyUrl); + url.host = subDomainType === 'nested' ? "".concat(slug, ".").concat(url.host) : url.host.split('.').map(function (x, i) { + return i === 0 ? x + '-' + slug : x; + }).join('.'); + url.pathname = pathname; + url.hash = ensureFirstSlash(hash); + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; - _cache.set(Class, Wrapper); - } + try { + for (var _iterator = searchParams[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + var _step$value = (0, _slicedToArray2.default)(_step.value, 2), + param = _step$value[0], + value = _step$value[1]; - function Wrapper() { - return construct(Class, arguments, getPrototypeOf(this).constructor); + url.searchParams.set(param, value); } - - Wrapper.prototype = Object.create(Class.prototype, { - constructor: { - value: Wrapper, - enumerable: false, - writable: true, - configurable: true + } catch (err) { + _didIteratorError = true; + _iteratorError = err; + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); } - }); - return setPrototypeOf(Wrapper, Class); - }; - - module.exports["default"] = module.exports, module.exports.__esModule = true; - return _wrapNativeSuper(Class); -} - -module.exports = _wrapNativeSuper; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), -/* 660 */ -/***/ (function(module, exports) { - -function _isNativeFunction(fn) { - return Function.toString.call(fn).indexOf("[native code]") !== -1; -} - -module.exports = _isNativeFunction; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), -/* 661 */ -/***/ (function(module, exports, __webpack_require__) { - -var setPrototypeOf = __webpack_require__(610); - -var isNativeReflectConstruct = __webpack_require__(662); - -function _construct(Parent, args, Class) { - if (isNativeReflectConstruct()) { - module.exports = _construct = Reflect.construct; - module.exports["default"] = module.exports, module.exports.__esModule = true; - } else { - module.exports = _construct = function _construct(Parent, args, Class) { - var a = [null]; - a.push.apply(a, args); - var Constructor = Function.bind.apply(Parent, a); - var instance = new Constructor(); - if (Class) setPrototypeOf(instance, Class.prototype); - return instance; - }; - - module.exports["default"] = module.exports, module.exports.__esModule = true; + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } } - return _construct.apply(null, arguments); -} - -module.exports = _construct; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), -/* 662 */ -/***/ (function(module, exports) { - -function _isNativeReflectConstruct() { - if (typeof Reflect === "undefined" || !Reflect.construct) return false; - if (Reflect.construct.sham) return false; - if (typeof Proxy === "function") return true; - - try { - Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); - return true; - } catch (e) { - return false; - } -} + return url.toString(); +}; -module.exports = _isNativeReflectConstruct; -module.exports["default"] = module.exports, module.exports.__esModule = true; +exports.generateWebLink = generateWebLink; /***/ }), -/* 663 */ +/* 682 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireWildcard = __webpack_require__(530); + +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = void 0; - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var AppToken = /*#__PURE__*/function () { - function AppToken(token) { - (0, _classCallCheck2.default)(this, AppToken); - this.token = token || ''; +Object.defineProperty(exports, "default", { + enumerable: true, + get: function get() { + return _CozyStackClient.default; } - - (0, _createClass2.default)(AppToken, [{ - key: "toAuthHeader", - value: function toAuthHeader() { - return 'Bearer ' + this.token; - } - }, { - key: "toBasicAuth", - value: function toBasicAuth() { - return "user:".concat(this.token, "@"); - } - /** - * Get the app token string - * - * @see CozyStackClient.getAccessToken - * @returns {string} token - */ - - }, { - key: "getAccessToken", - value: function getAccessToken() { - return this.token; - } - }]); - return AppToken; -}(); - -exports.default = AppToken; - -/***/ }), -/* 664 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true }); -exports.default = void 0; - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var AccessToken = /*#__PURE__*/function () { - function AccessToken(dataArg) { - (0, _classCallCheck2.default)(this, AccessToken); - var data = dataArg; - if (typeof data === 'string') data = JSON.parse(data); - this.tokenType = data.token_type || data.tokenType; - this.accessToken = data.access_token || data.accessToken; - this.refreshToken = data.refresh_token || data.refreshToken; - this.scope = data.scope; +Object.defineProperty(exports, "OAuthClient", { + enumerable: true, + get: function get() { + return _OAuthClient.default; + } +}); +Object.defineProperty(exports, "errors", { + enumerable: true, + get: function get() { + return _errors.default; + } +}); +Object.defineProperty(exports, "FetchError", { + enumerable: true, + get: function get() { + return _errors.FetchError; + } +}); +Object.defineProperty(exports, "normalizeDoc", { + enumerable: true, + get: function get() { + return _DocumentCollection.normalizeDoc; } +}); - (0, _createClass2.default)(AccessToken, [{ - key: "toAuthHeader", - value: function toAuthHeader() { - return 'Bearer ' + this.accessToken; - } - }, { - key: "toBasicAuth", - value: function toBasicAuth() { - return "user:".concat(this.accessToken, "@"); - } - }, { - key: "toJSON", - value: function toJSON() { - return { - tokenType: this.tokenType, - accessToken: this.accessToken, - refreshToken: this.refreshToken, - scope: this.scope - }; - } - }, { - key: "toString", - value: function toString() { - return JSON.stringify(this.toJSON()); - } - /** - * Get the access token string - * - * @see CozyStackClient.getAccessToken - * @returns {string} token - */ +var _CozyStackClient = _interopRequireDefault(__webpack_require__(683)); - }, { - key: "getAccessToken", - value: function getAccessToken() { - return this.accessToken; - } - }]); - return AccessToken; -}(); +var _OAuthClient = _interopRequireDefault(__webpack_require__(733)); -exports.default = AccessToken; +var _errors = _interopRequireWildcard(__webpack_require__(705)); + +var _DocumentCollection = __webpack_require__(686); /***/ }), -/* 665 */ +/* 683 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireWildcard = __webpack_require__(528); +var _interopRequireWildcard = __webpack_require__(530); -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = exports.isDirectory = exports.isFile = void 0; - -var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(543)); - -var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(620)); - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var _assertThisInitialized2 = _interopRequireDefault(__webpack_require__(612)); - -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); - -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); - -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); - -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); - -var _lite = _interopRequireDefault(__webpack_require__(666)); - -var _has = _interopRequireDefault(__webpack_require__(669)); - -var _get = _interopRequireDefault(__webpack_require__(370)); - -var _pick = _interopRequireDefault(__webpack_require__(671)); - -var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(619)); - -var _utils = __webpack_require__(629); - -var querystring = _interopRequireWildcard(__webpack_require__(654)); - -var _errors = __webpack_require__(658); - -var _Collection = __webpack_require__(618); - -function _templateObject22() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "/relationships/not_synchronizing"]); - - _templateObject22 = function _templateObject22() { - return data; - }; - - return data; -} - -function _templateObject21() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "/relationships/not_synchronizing"]); - - _templateObject21 = function _templateObject21() { - return data; - }; - - return data; -} - -function _templateObject20() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "/relationships/not_synchronizing"]); - - _templateObject20 = function _templateObject20() { - return data; - }; - - return data; -} - -function _templateObject19() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", "/versions"]); - - _templateObject19 = function _templateObject19() { - return data; - }; - - return data; -} - -function _templateObject18() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/upload/metadata"]); - - _templateObject18 = function _templateObject18() { - return data; - }; - - return data; -} - -function _templateObject17() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", ""]); - - _templateObject17 = function _templateObject17() { - return data; - }; - - return data; -} - -function _templateObject16() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", "?Name=", "&Type=directory"]); - - _templateObject16 = function _templateObject16() { - return data; - }; - - return data; -} - -function _templateObject15() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/metadata?Path=", ""]); - - _templateObject15 = function _templateObject15() { - return data; - }; - - return data; -} - -function _templateObject14() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", ""]); - - _templateObject14 = function _templateObject14() { - return data; - }; - - return data; -} - -function _templateObject13() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/downloads?Path=", ""]); - - _templateObject13 = function _templateObject13() { - return data; - }; - - return data; -} - -function _templateObject12() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/downloads?VersionId=", "&Filename=", ""]); - - _templateObject12 = function _templateObject12() { - return data; - }; - - return data; -} - -function _templateObject11() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/downloads?Id=", "&Filename=", ""]); - - _templateObject11 = function _templateObject11() { - return data; - }; - - return data; -} - -function _templateObject10() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", "?Name=", "&Type=file&Executable=", ""]); - - _templateObject10 = function _templateObject10() { - return data; - }; - - return data; -} - -function _templateObject9() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", "?Name=", "&Type=file&Executable=", "&MetadataID=", "&Size=", ""]); +exports.default = void 0; - _templateObject9 = function _templateObject9() { - return data; - }; +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - return data; -} +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -function _templateObject8() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", ""]); +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); - _templateObject8 = function _templateObject8() { - return data; - }; +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - return data; -} +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -function _templateObject7() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/trash/", ""]); +var _cloneDeep = _interopRequireDefault(__webpack_require__(684)); - _templateObject7 = function _templateObject7() { - return data; - }; +var _AppCollection = _interopRequireWildcard(__webpack_require__(685)); - return data; -} +var _AppToken = _interopRequireDefault(__webpack_require__(710)); -function _templateObject6() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", ""]); +var _AccessToken = _interopRequireDefault(__webpack_require__(711)); - _templateObject6 = function _templateObject6() { - return data; - }; +var _DocumentCollection = _interopRequireDefault(__webpack_require__(686)); - return data; -} +var _FileCollection = _interopRequireDefault(__webpack_require__(712)); -function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } +var _JobCollection = _interopRequireWildcard(__webpack_require__(718)); -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } +var _KonnectorCollection = _interopRequireWildcard(__webpack_require__(719)); -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } +var _SharingCollection = _interopRequireDefault(__webpack_require__(721)); -function _templateObject5() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "/relationships/references"]); +var _PermissionCollection = _interopRequireDefault(__webpack_require__(722)); - _templateObject5 = function _templateObject5() { - return data; - }; +var _TriggerCollection = _interopRequireWildcard(__webpack_require__(720)); - return data; -} +var _SettingsCollection = _interopRequireWildcard(__webpack_require__(723)); -function _templateObject4() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "/relationships/references"]); +var _NotesCollection = _interopRequireWildcard(__webpack_require__(724)); - _templateObject4 = function _templateObject4() { - return data; - }; +var _ShortcutsCollection = _interopRequireWildcard(__webpack_require__(726)); - return data; -} +var _ContactsCollection = _interopRequireWildcard(__webpack_require__(727)); -function _templateObject3() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", "/relationships/referenced_by"]); +var _getIconURL2 = _interopRequireDefault(__webpack_require__(728)); - _templateObject3 = function _templateObject3() { - return data; - }; +var _logDeprecate = _interopRequireDefault(__webpack_require__(730)); - return data; -} +var _errors = _interopRequireWildcard(__webpack_require__(705)); -function _templateObject2() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", "/relationships/referenced_by"]); +var _xhrFetch = __webpack_require__(731); - _templateObject2 = function _templateObject2() { - return data; - }; +var _microee = _interopRequireDefault(__webpack_require__(732)); - return data; -} +var normalizeUri = function normalizeUri(uri) { + if (uri === null) return null; -function _templateObject() { - var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "/relationships/references"]); + while (uri[uri.length - 1] === '/') { + uri = uri.slice(0, -1); + } - _templateObject = function _templateObject() { - return data; - }; + return uri; +}; - return data; -} +var isRevocationError = function isRevocationError(err) { + return err.message && _errors.default.CLIENT_NOT_FOUND.test(err.message); +}; +/** + * Main API against the `cozy-stack` server. + */ -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +var CozyStackClient = +/*#__PURE__*/ +function () { + function CozyStackClient(options) { + (0, _classCallCheck2.default)(this, CozyStackClient); + var opts = (0, _objectSpread2.default)({}, options); + var token = opts.token, + _opts$uri = opts.uri, + uri = _opts$uri === void 0 ? '' : _opts$uri; + this.options = opts; + this.setUri(uri); + this.setToken(token); + this.konnectors = new _KonnectorCollection.default(this); + this.jobs = new _JobCollection.default(this); + } + /** + * Creates a {@link DocumentCollection} instance. + * + * @param {string} doctype The collection doctype. + * @returns {DocumentCollection} + */ -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + (0, _createClass2.default)(CozyStackClient, [{ + key: "collection", + value: function collection(doctype) { + if (!doctype) { + throw new Error('CozyStackClient.collection() called without a doctype'); + } -/** - * Attributes used for directory creation - * - * @typedef {object} DirectoryAttributes - * @property {string} dirId - Id of the parent directory. - * @property {boolean} name - Name of the created directory. - * @property {boolean} executable - Indicates whether the file will be executable. - */ + switch (doctype) { + case _AppCollection.APPS_DOCTYPE: + return new _AppCollection.default(this); -/** - * Attributes used for file creation - * - * @typedef {object} FileAttributes - * @property {string} dirId - Id of the parent directory. - * @property {string} name - Name of the created file. - * @property {Date} lastModifiedDate - Can be used to set the last modified date of a file. - * @property {object} metadata io.cozy.files.metadata to attach to the file - */ + case _KonnectorCollection.KONNECTORS_DOCTYPE: + return new _KonnectorCollection.default(this); -/** - * Document representing a io.cozy.files - * - * @typedef {object} FileDocument - * @property {string} _id - Id of the file - */ + case 'io.cozy.files': + return new _FileCollection.default(doctype, this); -/** - * Stream is not defined in a browser, but is on NodeJS environment - * - * @typedef {object} Stream - */ + case 'io.cozy.sharings': + return new _SharingCollection.default(doctype, this); -/** - * Document representing a io.cozy.oauth.clients - * - * @typedef {object} OAuthClient - * @property {string} _id - Id of the client - * @property {string} _type - Doctype of the client (i.e. io.cozy.oauth.clients) - */ -var ROOT_DIR_ID = 'io.cozy.files.root-dir'; -var CONTENT_TYPE_OCTET_STREAM = 'application/octet-stream'; + case 'io.cozy.permissions': + return new _PermissionCollection.default(doctype, this); -var normalizeFile = function normalizeFile(file) { - return _objectSpread(_objectSpread({}, (0, _DocumentCollection2.normalizeDoc)(file, 'io.cozy.files')), file.attributes); -}; + case _ContactsCollection.CONTACTS_DOCTYPE: + return new _ContactsCollection.default(doctype, this); -var sanitizeFileName = function sanitizeFileName(name) { - return name && name.trim(); -}; -/** - * Sanitize Attribute for an io.cozy.files - * - * Currently juste the name - * - * @param {FileAttributes|DirectoryAttributes} attributes - Attributes of the created file/directory - * @returns {FileAttributes|DirectoryAttributes} - */ + case _TriggerCollection.TRIGGERS_DOCTYPE: + return new _TriggerCollection.default(this); + case _JobCollection.JOBS_DOCTYPE: + return new _JobCollection.default(this); -var sanitizeAttributes = function sanitizeAttributes(attributes) { - if (attributes.name) attributes.name = sanitizeFileName(attributes.name); - return attributes; -}; + case _SettingsCollection.SETTINGS_DOCTYPE: + return new _SettingsCollection.default(this); -var getFileTypeFromName = function getFileTypeFromName(name) { - return _lite.default.getType(name) || CONTENT_TYPE_OCTET_STREAM; -}; + case _NotesCollection.NOTES_DOCTYPE: + return new _NotesCollection.default(this); -var isFile = function isFile(_ref) { - var _type = _ref._type, - type = _ref.type; - return _type === 'io.cozy.files' || type === 'directory' || type === 'file'; -}; + case _ShortcutsCollection.SHORTCUTS_DOCTYPE: + return new _ShortcutsCollection.default(this); -exports.isFile = isFile; + default: + return new _DocumentCollection.default(doctype, this); + } + } + /** + * Fetches an endpoint in an authorized way. + * + * @param {string} method The HTTP method. + * @param {string} path The URI. + * @param {object} body The payload. + * @param {object} opts + * @returns {object} + * @throws {FetchError} + */ -var isDirectory = function isDirectory(_ref2) { - var type = _ref2.type; - return type === 'directory'; -}; + }, { + key: "fetch", + value: function (_fetch) { + function fetch(_x, _x2, _x3) { + return _fetch.apply(this, arguments); + } -exports.isDirectory = isDirectory; + fetch.toString = function () { + return _fetch.toString(); + }; -var raceWithCondition = function raceWithCondition(promises, predicate) { - return new Promise(function (resolve) { - promises.forEach(function (p) { - return p.then(function (res) { - if (predicate(res)) { - resolve(true); - } - }); - }); - Promise.all(promises).then(function () { - return resolve(false); - }); - }); -}; + return fetch; + }( + /*#__PURE__*/ + function () { + var _ref = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(method, path, body) { + var opts, + options, + headers, + fullPath, + fetcher, + response, + _args = arguments; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + opts = _args.length > 3 && _args[3] !== undefined ? _args[3] : {}; + options = (0, _objectSpread2.default)({}, opts); + options.method = method; + headers = options.headers = (0, _objectSpread2.default)({}, opts.headers); -var dirName = function dirName(path) { - var lastIndex = path.lastIndexOf('/'); - return path.substring(0, lastIndex); -}; -/** - * Implements `DocumentCollection` API along with specific methods for - * `io.cozy.files`. - * - * Files are a special type of documents and are handled differently by the stack: - * special routes are to be used, and there is a notion of referenced files, aka - * files associated to a specific document - */ + if (method !== 'GET' && method !== 'HEAD' && body !== undefined) { + if (headers['Content-Type']) { + options.body = body; + } + } + if (!headers.Authorization) { + headers.Authorization = this.getAuthorizationHeader(); + } // the option credentials:include tells fetch to include the cookies in the + // request even for cross-origin requests -var FileCollection = /*#__PURE__*/function (_DocumentCollection) { - (0, _inherits2.default)(FileCollection, _DocumentCollection); - var _super = _createSuper(FileCollection); + options.credentials = 'include'; + fullPath = this.fullpath(path); + fetcher = (0, _xhrFetch.shouldXMLHTTPRequestBeUsed)(method, path, options) ? _xhrFetch.fetchWithXMLHttpRequest : fetch; + _context.prev = 9; + _context.next = 12; + return fetcher(fullPath, options); - function FileCollection(doctype, stackClient) { - var _this; + case 12: + response = _context.sent; - (0, _classCallCheck2.default)(this, FileCollection); - _this = _super.call(this, doctype, stackClient); - (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "extractResponseLinkRelated", function (res) { - var href = res.links && res.links.related; - if (!href) throw new Error('No related link in server response'); - return _this.stackClient.fullpath(href); - }); - _this.specialDirectories = {}; - return _this; - } - /** - * Fetches the file's data - * - * @param {string} id File id - * @returns {{data, included}} Information about the file or folder and it's descendents - */ + if (!response.ok) { + this.emit('error', new _errors.FetchError(response, "".concat(response.status, " ").concat(response.statusText))); + } + return _context.abrupt("return", response); - (0, _createClass2.default)(FileCollection, [{ - key: "get", - value: function get(id) { - return this.statById(id); - } - }, { - key: "fetchFindFiles", - value: function () { - var _fetchFindFiles = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(selector, options) { - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - return _context.abrupt("return", this.stackClient.fetchJSON('POST', '/files/_find', this.toMangoOptions(selector, options))); + case 17: + _context.prev = 17; + _context.t0 = _context["catch"](9); - case 1: + if (isRevocationError(_context.t0)) { + this.onRevocationChange(true); + } + + throw _context.t0; + + case 21: case "end": return _context.stop(); } } - }, _callee, this); + }, _callee, this, [[9, 17]]); })); - function fetchFindFiles(_x, _x2) { - return _fetchFindFiles.apply(this, arguments); + return function (_x4, _x5, _x6) { + return _ref.apply(this, arguments); + }; + }()) + }, { + key: "onTokenRefresh", + value: function onTokenRefresh(token) { + if (this.options && this.options.onTokenRefresh) { + this.options.onTokenRefresh(token); } - - return fetchFindFiles; - }() + } + }, { + key: "onRevocationChange", + value: function onRevocationChange(state) { + if (this.options && this.options.onRevocationChange) { + this.options.onRevocationChange(state); + } + } /** - * Returns a filtered list of documents using a Mango selector. - * - * The returned documents are paginated by the stack. - * - * @param {object} selector The Mango selector. - * @param {{sort, fields, limit, skip, indexId, bookmark}} options The query options. - * @returns {{data, meta, skip, next, bookmark}} The JSON API conformant response. - * @throws {FetchError} + * Returns whether the client has been revoked on the server */ }, { - key: "find", + key: "checkForRevocation", value: function () { - var _find = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(selector) { - var options, - _options$skip, - skip, - resp, - path, - nextLink, - nextLinkURL, - nextBookmark, - _args2 = arguments; - + var _checkForRevocation = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2() { return _regenerator.default.wrap(function _callee2$(_context2) { while (1) { switch (_context2.prev = _context2.next) { case 0: - options = _args2.length > 1 && _args2[1] !== undefined ? _args2[1] : {}; - _options$skip = options.skip, skip = _options$skip === void 0 ? 0 : _options$skip; - _context2.prev = 2; - path = '/files/_find'; - _context2.next = 6; - return this.findWithMango(path, selector, options); + _context2.prev = 0; + _context2.next = 3; + return this.fetchInformation(); + + case 3: + return _context2.abrupt("return", false); case 6: - resp = _context2.sent; - _context2.next = 12; - break; + _context2.prev = 6; + _context2.t0 = _context2["catch"](0); + return _context2.abrupt("return", isRevocationError(_context2.t0)); case 9: - _context2.prev = 9; - _context2.t0 = _context2["catch"](2); - return _context2.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context2.t0)); - - case 12: - nextLink = (0, _get.default)(resp, 'links.next', ''); - nextLinkURL = new URL("".concat(this.stackClient.uri).concat(nextLink)); - nextBookmark = nextLinkURL.searchParams.get('page[cursor]'); - return _context2.abrupt("return", { - data: resp.data.map(function (f) { - return normalizeFile(f); - }), - meta: resp.meta, - next: resp.meta.count > skip + resp.data.length, - skip: skip, - bookmark: nextBookmark || undefined, - execution_stats: resp.meta.execution_stats - }); - - case 16: case "end": return _context2.stop(); } } - }, _callee2, this, [[2, 9]]); + }, _callee2, this, [[0, 6]]); })); - function find(_x3) { - return _find.apply(this, arguments); - } - - return find; + return function checkForRevocation() { + return _checkForRevocation.apply(this, arguments); + }; }() /** - * async findReferencedBy - Returns the list of files referenced by a document — see https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/ + * Retrieves a new app token by refreshing the currently used token. * - * @param {object} document A JSON representing a document, with at least a `_type` and `_id` field. - * @param {object} options Additional options - * @param {number} options.skip For skip-based pagination, the number of referenced files to skip. - * @param {number} options.limit For pagination, the number of results to return. - * @param {object} options.cursor For cursor-based pagination, the index cursor. - * @returns {object} The JSON API conformant response. + * @throws {Error} The client should already have an access token to use this function + * @throws {Error} The client couldn't fetch a new token + * @returns {Promise} A promise that resolves with a new AccessToken object */ }, { - key: "findReferencedBy", + key: "refreshToken", value: function () { - var _findReferencedBy = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(document) { - var _ref3, - _ref3$skip, - skip, - limit, - cursor, - params, - url, - path, - resp, - _args3 = arguments; - + var _refreshToken = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3() { + var options, response, html, parser, doc, appNode, cozyToken, newToken; return _regenerator.default.wrap(function _callee3$(_context3) { while (1) { switch (_context3.prev = _context3.next) { case 0: - _ref3 = _args3.length > 1 && _args3[1] !== undefined ? _args3[1] : {}, _ref3$skip = _ref3.skip, skip = _ref3$skip === void 0 ? 0 : _ref3$skip, limit = _ref3.limit, cursor = _ref3.cursor; - params = { - include: 'files', - 'page[limit]': limit, - 'page[cursor]': cursor, - sort: 'datetime' + if (this.token) { + _context3.next = 2; + break; + } + + throw new Error('Cannot refresh an empty token'); + + case 2: + options = { + method: 'GET', + credentials: 'include' }; - url = (0, _utils.uri)(_templateObject(), document._type, document._id); - path = querystring.buildURL(url, params); - _context3.next = 6; - return this.stackClient.fetchJSON('GET', path); - case 6: - resp = _context3.sent; - return _context3.abrupt("return", { - data: resp.data.map(function (f) { - return normalizeFile(f); - }), - included: resp.included ? resp.included.map(function (f) { - return normalizeFile(f); - }) : [], - next: (0, _has.default)(resp, 'links.next'), - meta: resp.meta, - skip: skip - }); + if (global.document) { + _context3.next = 5; + break; + } - case 8: + throw new Error('Not in a web context, cannot refresh token'); + + case 5: + _context3.next = 7; + return fetch('/', options); + + case 7: + response = _context3.sent; + + if (response.ok) { + _context3.next = 10; + break; + } + + throw new Error("couldn't fetch a new token - response " + response.statusCode); + + case 10: + _context3.next = 12; + return response.text(); + + case 12: + html = _context3.sent; + parser = new DOMParser(); + doc = parser.parseFromString(html, 'text/html'); + + if (doc) { + _context3.next = 17; + break; + } + + throw Error("couldn't fetch a new token - doc is not html"); + + case 17: + appNode = doc.querySelector('div[role="application"]'); + + if (appNode) { + _context3.next = 20; + break; + } + + throw Error("couldn't fetch a new token - no div[role=application]"); + + case 20: + cozyToken = appNode.dataset.cozyToken; + + if (cozyToken) { + _context3.next = 23; + break; + } + + throw Error("couldn't fetch a new token -- missing data-cozy-token attribute"); + + case 23: + newToken = new _AppToken.default(cozyToken); + this.onTokenRefresh(newToken); + return _context3.abrupt("return", newToken); + + case 26: case "end": return _context3.stop(); } @@ -103406,275 +100656,144 @@ var FileCollection = /*#__PURE__*/function (_DocumentCollection) { }, _callee3, this); })); - function findReferencedBy(_x4) { - return _findReferencedBy.apply(this, arguments); - } - - return findReferencedBy; + return function refreshToken() { + return _refreshToken.apply(this, arguments); + }; }() /** - * Add referenced_by documents to a file — see https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/#post-filesfile-idrelationshipsreferenced_by - * - * For example, to have an album referenced by a file: - * ``` - * addReferencedBy({_id: 123, _type: "io.cozy.files", name: "cozy.jpg"}, [{_id: 456, _type: "io.cozy.photos.albums", name: "Happy Cloud"}]) - * ``` - * - * @param {FileDocument} document A JSON representing the file - * @param {Array} documents An array of JSON documents having a `_type` and `_id` field. - * @returns {object} The JSON API conformant response. - */ - - }, { - key: "addReferencedBy", - value: function addReferencedBy(document, documents) { - var refs = documents.map(function (d) { - return { - id: d._id, - type: d._type - }; - }); - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject2(), document._id), { - data: refs - }); - } - /** - * Remove referenced_by documents from a file — see https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/#delete-filesfile-idrelationshipsreferenced_by - * - * For example, to remove an album reference from a file: - * ``` - * removeReferencedBy({_id: 123, _type: "io.cozy.files", name: "cozy.jpg"}, [{_id: 456, _type: "io.cozy.photos.albums", name: "Happy Cloud"}]) - * ``` - * - * @param {object} document A JSON representing the file - * @param {Array} documents An array of JSON documents having a `_type` and `_id` field. - * @returns {object} The JSON API conformant response. - */ - - }, { - key: "removeReferencedBy", - value: function removeReferencedBy(document, documents) { - var refs = documents.map(function (d) { - return { - id: d._id, - type: d._type - }; - }); - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject3(), document._id), { - data: refs - }); - } - /** - * Add files references to a document — see https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/#post-datatypedoc-idrelationshipsreferences - * - * For example, to add a photo to an album: - * ``` - * addReferencesTo({_id: 456, _type: "io.cozy.photos.albums", name: "Happy Cloud"}, [{_id: 123, _type: "io.cozy.files", name: "cozy.jpg"}]) - * ``` - * - * @param {object} document A JSON representing a document, with at least a `_type` and `_id` field. - * @param {Array} documents An array of JSON files having an `_id` field. - * @returns {object} The JSON API conformant response. - */ - - }, { - key: "addReferencesTo", - value: function addReferencesTo(document, documents) { - var refs = documents.map(function (d) { - return { - id: d._id, - type: 'io.cozy.files' - }; - }); - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject4(), document._type, document._id), { - data: refs - }); - } - /** - * Remove files references to a document — see https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/#delete-datatypedoc-idrelationshipsreferences - * - * For example, to remove a photo from an album: - * ``` - * removeReferencesTo({_id: 456, _type: "io.cozy.photos.albums", name: "Happy Cloud"}, [{_id: 123, _type: "io.cozy.files", name: "cozy.jpg"}]) - * ``` - * - * @param {object} document A JSON representing a document, with at least a `_type` and `_id` field. - * @param {Array} documents An array of JSON files having an `_id` field. - * @returns {object} The JSON API conformant response. - */ - - }, { - key: "removeReferencesTo", - value: function removeReferencesTo(document, documents) { - var refs = documents.map(function (d) { - return { - id: d._id, - type: 'io.cozy.files' - }; - }); - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject5(), document._type, document._id), { - data: refs - }); - } - /** - * Sends file to trash and removes references to it + * Fetches JSON in an authorized way. * - * @param {FileDocument} file - File that will be sent to trash - * @returns {Promise} - Resolves when references have been removed - * and file has been sent to trash + * @param {string} method The HTTP method. + * @param {string} path The URI. + * @param {object} body The payload. + * @param {object} options Options + * @returns {object} + * @throws {FetchError} */ }, { - key: "destroy", + key: "fetchJSON", value: function () { - var _destroy = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(file) { - var _ref4, - _ref4$ifMatch, - ifMatch, - _id, - relationships, - _iterator, - _step, - ref, - resp, + var _fetchJSON = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4(method, path, body) { + var options, + token, _args4 = arguments; - return _regenerator.default.wrap(function _callee4$(_context4) { while (1) { switch (_context4.prev = _context4.next) { case 0: - _ref4 = _args4.length > 1 && _args4[1] !== undefined ? _args4[1] : {}, _ref4$ifMatch = _ref4.ifMatch, ifMatch = _ref4$ifMatch === void 0 ? '' : _ref4$ifMatch; - _id = file._id, relationships = file.relationships; - - if (!(relationships && relationships.referenced_by && Array.isArray(relationships.referenced_by.data))) { - _context4.next = 20; - break; - } + options = _args4.length > 3 && _args4[3] !== undefined ? _args4[3] : {}; + _context4.prev = 1; + _context4.next = 4; + return this.fetchJSONWithCurrentToken(method, path, body, options); - _iterator = _createForOfIteratorHelper(relationships.referenced_by.data); - _context4.prev = 4; + case 4: + return _context4.abrupt("return", _context4.sent); - _iterator.s(); + case 7: + _context4.prev = 7; + _context4.t0 = _context4["catch"](1); - case 6: - if ((_step = _iterator.n()).done) { - _context4.next = 12; + if (!(_errors.default.EXPIRED_TOKEN.test(_context4.t0.message) || _errors.default.INVALID_TOKEN.test(_context4.t0.message))) { + _context4.next = 25; break; } - ref = _step.value; - _context4.next = 10; - return this.removeReferencesTo({ - _id: ref.id, - _type: ref.type - }, [{ - _id: _id - }]); - - case 10: - _context4.next = 6; - break; + _context4.prev = 10; + _context4.next = 13; + return this.refreshToken(); - case 12: - _context4.next = 17; + case 13: + token = _context4.sent; + _context4.next = 19; break; - case 14: - _context4.prev = 14; - _context4.t0 = _context4["catch"](4); - - _iterator.e(_context4.t0); - - case 17: - _context4.prev = 17; - - _iterator.f(); - - return _context4.finish(17); + case 16: + _context4.prev = 16; + _context4.t1 = _context4["catch"](10); + throw _context4.t0; - case 20: + case 19: + this.setToken(token); _context4.next = 22; - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject6(), _id), undefined, { - headers: { - 'If-Match': ifMatch - } - }); + return this.fetchJSONWithCurrentToken(method, path, body, options); case 22: - resp = _context4.sent; - return _context4.abrupt("return", { - data: normalizeFile(resp.data) - }); + return _context4.abrupt("return", _context4.sent); - case 24: + case 25: + throw _context4.t0; + + case 26: case "end": return _context4.stop(); } } - }, _callee4, this, [[4, 14, 17, 20]]); + }, _callee4, this, [[1, 7], [10, 16]]); })); - function destroy(_x5) { - return _destroy.apply(this, arguments); - } - - return destroy; + return function fetchJSON(_x7, _x8, _x9) { + return _fetchJSON.apply(this, arguments); + }; }() - /** - * Empty the Trash - */ - - }, { - key: "emptyTrash", - value: function emptyTrash() { - return this.stackClient.fetchJSON('DELETE', '/files/trash'); - } - /** - * Restores a trashed file. - * - * @param {string} id - The file's id - * @returns {Promise} - A promise that returns the restored file if resolved. - * @throws {FetchError} - * - */ - - }, { - key: "restore", - value: function restore(id) { - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject7(), id)); - } - /** - * async deleteFilePermanently - Definitely delete a file - * - * @param {string} id - The id of the file to delete - * @returns {object} The deleted file object - */ - }, { - key: "deleteFilePermanently", + key: "fetchJSONWithCurrentToken", value: function () { - var _deleteFilePermanently = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(id) { - var resp; + var _fetchJSONWithCurrentToken = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee5(method, path, body) { + var options, + clonedOptions, + headers, + resp, + contentType, + isJson, + data, + _args5 = arguments; return _regenerator.default.wrap(function _callee5$(_context5) { while (1) { switch (_context5.prev = _context5.next) { case 0: - _context5.next = 2; - return this.stackClient.fetchJSON('PATCH', (0, _utils.uri)(_templateObject8(), id), { - data: { - type: 'io.cozy.files', - id: id, - attributes: { - permanent_delete: true - } + options = _args5.length > 3 && _args5[3] !== undefined ? _args5[3] : {}; + //Since we modify the object later by adding in some case a + //content-type, let's clone this object to scope the modification + clonedOptions = (0, _cloneDeep.default)(options); + headers = clonedOptions.headers = clonedOptions.headers || {}; + headers['Accept'] = 'application/json'; + + if (method !== 'GET' && method !== 'HEAD' && body !== undefined) { + if (!headers['Content-Type']) { + headers['Content-Type'] = 'application/json'; + body = JSON.stringify(body); } - }); + } - case 2: + _context5.next = 7; + return this.fetch(method, path, body, clonedOptions); + + case 7: resp = _context5.sent; - return _context5.abrupt("return", resp.data); + contentType = resp.headers.get('content-type'); + isJson = contentType && contentType.indexOf('json') >= 0; + _context5.next = 12; + return isJson ? resp.json() : resp.text(); - case 4: + case 12: + data = _context5.sent; + + if (!resp.ok) { + _context5.next = 15; + break; + } + + return _context5.abrupt("return", data); + + case 15: + throw new _errors.FetchError(resp, data); + + case 16: case "end": return _context5.stop(); } @@ -103682,4326 +100801,3572 @@ var FileCollection = /*#__PURE__*/function (_DocumentCollection) { }, _callee5, this); })); - function deleteFilePermanently(_x6) { - return _deleteFilePermanently.apply(this, arguments); + return function fetchJSONWithCurrentToken(_x10, _x11, _x12) { + return _fetchJSONWithCurrentToken.apply(this, arguments); + }; + }() + }, { + key: "fullpath", + value: function fullpath(path) { + if (path.startsWith('http')) { + return path; + } else { + return this.uri + path; } + } + }, { + key: "getAuthorizationHeader", + value: function getAuthorizationHeader() { + return this.token ? this.token.toAuthHeader() : null; + } + }, { + key: "setCredentials", + value: function setCredentials(token) { + (0, _logDeprecate.default)('CozyStackClient::setCredentials is deprecated, use CozyStackClient::setToken'); + return this.setToken(token); + } + }, { + key: "getCredentials", + value: function getCredentials() { + (0, _logDeprecate.default)('CozyStackClient::getCredentials is deprecated, use CozyStackClient::getAuthorizationHeader'); + return this.getAuthorizationHeader(); + } + /** + * Change or set the API token + * + * @param {string|AppToken|AccessToken} token - Stack API token + */ - return deleteFilePermanently; - }() + }, { + key: "setToken", + value: function setToken(token) { + if (!token) { + this.token = null; + } else { + if (token.toAuthHeader) { + // AppToken or AccessToken + this.token = token; + } else if (typeof token === 'string') { + // jwt string + this.token = new _AppToken.default(token); + } else { + console.warn('Cozy-Client: Unknown token format', token); + throw new Error('Cozy-Client: Unknown token format'); + } + + this.onRevocationChange(false); + } + } /** - * @param {File|Blob|Stream|string|ArrayBuffer} data file to be uploaded - * @param {string} dirPath Path to upload the file to. ie : /Administative/XXX/ - * @returns {object} Created io.cozy.files + * Get the access token string, being an oauth token or an app token + * + * @returns {string} token */ }, { - key: "upload", + key: "getAccessToken", + value: function getAccessToken() { + return this.token && this.token.getAccessToken(); + } + }, { + key: "setUri", + value: function setUri(uri) { + this.uri = normalizeUri(uri); + } + }, { + key: "getIconURL", + value: function getIconURL(opts) { + return (0, _getIconURL2.default)(this, opts); + } + }]); + return CozyStackClient; +}(); + +_microee.default.mixin(CozyStackClient); + +var _default = CozyStackClient; +exports.default = _default; + +/***/ }), +/* 684 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseClone = __webpack_require__(568); + +/** Used to compose bitmasks for cloning. */ +var CLONE_DEEP_FLAG = 1, + CLONE_SYMBOLS_FLAG = 4; + +/** + * This method is like `_.clone` except that it recursively clones `value`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @returns {*} Returns the deep cloned value. + * @see _.clone + * @example + * + * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * + * var deep = _.cloneDeep(objects); + * console.log(deep[0] === objects[0]); + * // => false + */ +function cloneDeep(value) { + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG); +} + +module.exports = cloneDeep; + + +/***/ }), +/* 685 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +var _interopRequireWildcard = __webpack_require__(530); + +var _interopRequireDefault = __webpack_require__(532); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.normalizeApp = exports.APPS_DOCTYPE = void 0; + +var _regenerator = _interopRequireDefault(__webpack_require__(547)); + +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); + +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); + +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); + +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); + +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); + +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); + +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); + +var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(686)); + +var _errors = __webpack_require__(705); + +var APPS_DOCTYPE = 'io.cozy.apps'; +exports.APPS_DOCTYPE = APPS_DOCTYPE; + +var normalizeApp = function normalizeApp(app, doctype) { + return (0, _objectSpread2.default)({}, app, (0, _DocumentCollection2.normalizeDoc)(app, doctype), app.attributes); +}; +/** + * Extends `DocumentCollection` API along with specific methods for `io.cozy.apps`. + */ + + +exports.normalizeApp = normalizeApp; + +var AppCollection = +/*#__PURE__*/ +function (_DocumentCollection) { + (0, _inherits2.default)(AppCollection, _DocumentCollection); + + function AppCollection(stackClient) { + var _this; + + (0, _classCallCheck2.default)(this, AppCollection); + _this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(AppCollection).call(this, APPS_DOCTYPE, stackClient)); + _this.endpoint = '/apps/'; + return _this; + } + /** + * Lists all apps, without filters. + * + * The returned documents are not paginated by the stack. + * + * @returns {{data, meta, skip, next}} The JSON API conformant response. + * @throws {FetchError} + */ + + + (0, _createClass2.default)(AppCollection, [{ + key: "all", value: function () { - var _upload = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee6(data, dirPath) { - var dirId; - return _regenerator.default.wrap(function _callee6$(_context6) { + var _all = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee() { + var _this2 = this; + + var resp; + return _regenerator.default.wrap(function _callee$(_context) { while (1) { - switch (_context6.prev = _context6.next) { + switch (_context.prev = _context.next) { case 0: - _context6.next = 2; - return this.ensureDirectoryExists(dirPath); + _context.next = 2; + return this.stackClient.fetchJSON('GET', this.endpoint); case 2: - dirId = _context6.sent; - return _context6.abrupt("return", this.createFile(data, { - dirId: dirId - })); + resp = _context.sent; + return _context.abrupt("return", { + data: resp.data.map(function (app) { + return normalizeApp(app, _this2.doctype); + }), + meta: { + count: resp.meta.count + }, + skip: 0, + next: false + }); case 4: case "end": - return _context6.stop(); + return _context.stop(); } } - }, _callee6, this); + }, _callee, this); })); - function upload(_x7, _x8) { - return _upload.apply(this, arguments); - } - - return upload; + return function all() { + return _all.apply(this, arguments); + }; }() - /** - * Creates directory or file. - * - Used by StackLink to support CozyClient.create('io.cozy.files', options) - * - * @param {FileAttributes|DirectoryAttributes} attributes - Attributes of the created file/directory - * @param {File|Blob|string|ArrayBuffer} attributes.data Will be used as content of the created file - */ - }, { key: "create", value: function () { - var _create = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee7(attributes) { - var data, createFileOptions; - return _regenerator.default.wrap(function _callee7$(_context7) { + var _create = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2() { + return _regenerator.default.wrap(function _callee2$(_context2) { while (1) { - switch (_context7.prev = _context7.next) { + switch (_context2.prev = _context2.next) { case 0: - if (!(attributes.type === 'directory')) { - _context7.next = 4; - break; - } - - return _context7.abrupt("return", this.createDirectory(attributes)); - - case 4: - data = attributes.data, createFileOptions = (0, _objectWithoutProperties2.default)(attributes, ["data"]); - return _context7.abrupt("return", this.createFile(data, createFileOptions)); + throw new Error('create() method is not available for applications'); - case 6: + case 1: case "end": - return _context7.stop(); + return _context2.stop(); } } - }, _callee7, this); + }, _callee2); })); - function create(_x9) { + return function create() { return _create.apply(this, arguments); - } - - return create; + }; }() - /*** - * Update the io.cozy.files - * Used by StackLink to support CozyClient.save({file}) - * @param {FileAttributes} The file with its new content - * @returns {FileAttributes} Updated document - */ - }, { key: "update", value: function () { - var _update = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee8(file) { - return _regenerator.default.wrap(function _callee8$(_context8) { + var _update = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3() { + return _regenerator.default.wrap(function _callee3$(_context3) { while (1) { - switch (_context8.prev = _context8.next) { + switch (_context3.prev = _context3.next) { case 0: - return _context8.abrupt("return", this.updateAttributes(file.id, file)); + throw new Error('update() method is not available for applications'); case 1: case "end": - return _context8.stop(); + return _context3.stop(); } } - }, _callee8, this); + }, _callee3); })); - function update(_x10) { + return function update() { return _update.apply(this, arguments); - } - - return update; + }; }() - /** - * Creates a file - * - * @private - * @param {File|Blob|Stream|string|ArrayBuffer} data file to be uploaded - * @param {FileAttributes} params Additional parameters - * @param {object} params.options Options to pass to doUpload method (additional headers) - */ - }, { - key: "createFile", + key: "destroy", value: function () { - var _createFile = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee9(data) { - var _ref5, - nameOption, - _ref5$dirId, - dirId, - executableOption, - metadata, - options, - name, - executable, - metadataId, - meta, - size, - path, - _args9 = arguments; - - return _regenerator.default.wrap(function _callee9$(_context9) { + var _destroy = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4() { + return _regenerator.default.wrap(function _callee4$(_context4) { while (1) { - switch (_context9.prev = _context9.next) { + switch (_context4.prev = _context4.next) { case 0: - _ref5 = _args9.length > 1 && _args9[1] !== undefined ? _args9[1] : {}; - nameOption = _ref5.name, _ref5$dirId = _ref5.dirId, dirId = _ref5$dirId === void 0 ? '' : _ref5$dirId, executableOption = _ref5.executable, metadata = _ref5.metadata, options = (0, _objectWithoutProperties2.default)(_ref5, ["name", "dirId", "executable", "metadata"]); - name = nameOption; - executable = executableOption; // handle case where data is a file and contains the name + throw new Error('destroy() method is not available for applications'); - if (!name && typeof data.name === 'string') { - name = data.name; - } + case 1: + case "end": + return _context4.stop(); + } + } + }, _callee4); + })); - name = sanitizeFileName(name); + return function destroy() { + return _destroy.apply(this, arguments); + }; + }() + }]); + return AppCollection; +}(_DocumentCollection2.default); - if (!(typeof name !== 'string' || name === '')) { - _context9.next = 8; - break; - } +AppCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; +var _default = AppCollection; +exports.default = _default; - throw new Error('missing name argument'); +/***/ }), +/* 686 */ +/***/ (function(module, exports, __webpack_require__) { - case 8: - if (executable === undefined) { - executable = false; - } +"use strict"; - metadataId = ''; - if (!metadata) { - _context9.next = 15; - break; - } +var _interopRequireWildcard = __webpack_require__(530); - _context9.next = 13; - return this.createFileMetadata(metadata); +var _interopRequireDefault = __webpack_require__(532); - case 13: - meta = _context9.sent; - metadataId = meta.data.id; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.normalizeDoc = normalizeDoc; +exports.normalizeDoctype = exports.default = void 0; - case 15: - size = ''; +var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(542)); - if (options.contentLength) { - size = String(options.contentLength); - } +var _defineProperty2 = _interopRequireDefault(__webpack_require__(546)); - path = (0, _utils.uri)(_templateObject9(), dirId, name, executable, metadataId, size); - return _context9.abrupt("return", this.doUpload(data, path, options)); +var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(550)); - case 19: - case "end": - return _context9.stop(); - } - } - }, _callee9, this); - })); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - function createFile(_x11) { - return _createFile.apply(this, arguments); - } +var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(687)); - return createFile; - }() - /** - * updateFile - Updates a file's data - * - * @param {object} data Javascript File object - * @param {object} params Additional parameters - * @param {string} params.fileId The id of the file to update (required) - * @param {boolean} params.executable Whether the file is executable or not - * @param {object} params.metadata Metadata to be attached to the File io.cozy.file - * @param {object} params.options Options to pass to doUpload method (additional headers) - * @returns {object} Updated document - */ +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); - }, { - key: "updateFile", - value: function () { - var _updateFile = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee10(data) { - var _ref6, - _ref6$executable, - executable, - fileId, - metadata, - options, - name, - metadataId, - path, - meta, - size, - _args10 = arguments; +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - return _regenerator.default.wrap(function _callee10$(_context10) { - while (1) { - switch (_context10.prev = _context10.next) { - case 0: - _ref6 = _args10.length > 1 && _args10[1] !== undefined ? _args10[1] : {}; - _ref6$executable = _ref6.executable, executable = _ref6$executable === void 0 ? false : _ref6$executable, fileId = _ref6.fileId, metadata = _ref6.metadata, options = (0, _objectWithoutProperties2.default)(_ref6, ["executable", "fileId", "metadata"]); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); - if (!(!fileId || typeof fileId !== 'string')) { - _context10.next = 4; - break; - } +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); - throw new Error('missing fileId argument'); +var _utils = __webpack_require__(688); - case 4: - if (!(typeof data.name !== 'string')) { - _context10.next = 6; - break; - } +var _uniq = _interopRequireDefault(__webpack_require__(653)); - throw new Error('missing name in data argument'); +var _transform = _interopRequireDefault(__webpack_require__(689)); - case 6: - name = sanitizeFileName(data.name); +var _head = _interopRequireDefault(__webpack_require__(690)); - if (!(typeof name !== 'string' || name === '')) { - _context10.next = 9; - break; - } +var _omit = _interopRequireDefault(__webpack_require__(567)); - throw new Error('missing name argument'); +var _startsWith = _interopRequireDefault(__webpack_require__(691)); - case 9: - path = (0, _utils.uri)(_templateObject10(), fileId, name, executable); +var _qs = _interopRequireDefault(__webpack_require__(698)); - if (!metadata) { - _context10.next = 16; - break; - } +var _Collection = _interopRequireWildcard(__webpack_require__(703)); - _context10.next = 13; - return this.createFileMetadata(metadata); +var querystring = _interopRequireWildcard(__webpack_require__(704)); - case 13: - meta = _context10.sent; - metadataId = meta.data.id; - path = path + "&MetadataID=".concat(metadataId); +var _errors = __webpack_require__(705); - case 16: - size = ''; +function _templateObject7() { + var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/_index"]); - if (options.contentLength) { - size = String(options.contentLength); - path = path + "&Size=".concat(size); - } + _templateObject7 = function _templateObject7() { + return data; + }; - return _context10.abrupt("return", this.doUpload(data, path, options, 'PUT')); + return data; +} - case 19: - case "end": - return _context10.stop(); - } - } - }, _callee10, this); - })); +function _templateObject6() { + var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "?rev=", ""]); + + _templateObject6 = function _templateObject6() { + return data; + }; + + return data; +} + +function _templateObject5() { + var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", ""]); + + _templateObject5 = function _templateObject5() { + return data; + }; + + return data; +} + +function _templateObject4() { + var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", ""]); + + _templateObject4 = function _templateObject4() { + return data; + }; + + return data; +} + +function _templateObject3() { + var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/_all_docs?include_docs=true"]); + + _templateObject3 = function _templateObject3() { + return data; + }; + + return data; +} + +function _templateObject2() { + var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/_find"]); + + _templateObject2 = function _templateObject2() { + return data; + }; + + return data; +} + +function _templateObject() { + var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", ""]); + + _templateObject = function _templateObject() { + return data; + }; + + return data; +} + +var DATABASE_DOES_NOT_EXIST = 'Database does not exist.'; +/** + * Normalize a document, adding its doctype if needed + * + * @param {object} doc - Document to normalize + * @param {string} doctype - Document doctype + * @returns {object} normalized document + * @private + */ + +function normalizeDoc() { + var doc = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var doctype = arguments.length > 1 ? arguments[1] : undefined; + var id = doc._id || doc.id; + return (0, _objectSpread2.default)({ + id: id, + _id: id, + _type: doctype + }, doc); +} + +var prepareForDeletion = function prepareForDeletion(x) { + return Object.assign({}, (0, _omit.default)(x, '_type'), { + _deleted: true + }); +}; +/** + * Abstracts a collection of documents of the same doctype, providing CRUD methods and other helpers. + */ + + +var DocumentCollection = +/*#__PURE__*/ +function () { + function DocumentCollection(doctype, stackClient) { + (0, _classCallCheck2.default)(this, DocumentCollection); + this.doctype = doctype; + this.stackClient = stackClient; + this.indexes = {}; + this.endpoint = "/data/".concat(this.doctype, "/"); + } + /** + * Provides a callback for `Collection.get` + * + * @private + * @param {string} doctype - Document doctype + * @returns {Function} (data, response) => normalizedDocument + * using `normalizeDoc` + */ - function updateFile(_x12) { - return _updateFile.apply(this, arguments); - } - return updateFile; - }() - }, { - key: "getDownloadLinkById", - value: function getDownloadLinkById(id, filename) { - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject11(), id, filename)).then(this.extractResponseLinkRelated); - } - }, { - key: "getDownloadLinkByRevision", - value: function getDownloadLinkByRevision(versionId, filename) { - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject12(), versionId, filename)).then(this.extractResponseLinkRelated); - } - }, { - key: "getDownloadLinkByPath", - value: function getDownloadLinkByPath(path) { - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject13(), path)).then(this.extractResponseLinkRelated); - } - }, { - key: "download", + (0, _createClass2.default)(DocumentCollection, [{ + key: "all", /** - * Download a file or a specific version of the file + * Lists all documents of the collection, without filters. * - * @param {object} file io.cozy.files object - * @param {string} versionId Id of the io.cozy.files.version - * @param {string} filename The name you want for the downloaded file - * (by default the same as the file) + * The returned documents are paginated by the stack. + * + * @param {{limit, skip, bookmark, keys}} options The fetch options: pagination & fetch of specific docs. + * @returns {{data, meta, skip, bookmark, next}} The JSON API conformant response. + * @throws {FetchError} */ value: function () { - var _download = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee11(file) { - var versionId, - filename, - href, - filenameToUse, - _args11 = arguments; - return _regenerator.default.wrap(function _callee11$(_context11) { + var _all = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee() { + var _this = this; + + var options, + _options$limit, + limit, + _options$skip, + skip, + bookmark, + keys, + isUsingAllDocsRoute, + route, + url, + params, + path, + resp, + data, + next, + _args = arguments; + + return _regenerator.default.wrap(function _callee$(_context) { while (1) { - switch (_context11.prev = _context11.next) { + switch (_context.prev = _context.next) { case 0: - versionId = _args11.length > 1 && _args11[1] !== undefined ? _args11[1] : null; - filename = _args11.length > 2 && _args11[2] !== undefined ? _args11[2] : undefined; - filenameToUse = filename ? filename : file.name; - /** - * Passing a filename to forceFileDownload is not enough - * for a few browsers since the stack's response header will - * not contain that name. Passing the filename to - * getDownloadLinkBy{Id,Revision} will ask the stack to - * return this filename in its content-disposition - * header response - */ + options = _args.length > 0 && _args[0] !== undefined ? _args[0] : {}; + _options$limit = options.limit, limit = _options$limit === void 0 ? 100 : _options$limit, _options$skip = options.skip, skip = _options$skip === void 0 ? 0 : _options$skip, bookmark = options.bookmark, keys = options.keys; // If the limit is intentionnally null, we need to use _all_docs, since _normal_docs uses _find and have a hard limit of 100 - if (versionId) { - _context11.next = 9; - break; - } + isUsingAllDocsRoute = !!keys || limit === null; + route = isUsingAllDocsRoute ? '_all_docs' : '_normal_docs'; + url = (0, _utils.uri)(_templateObject(), this.doctype, route); + params = { + include_docs: true, + limit: limit, + skip: skip, + keys: keys, + bookmark: bookmark + }; + path = querystring.buildURL(url, params); // If no document of this doctype exist, this route will return a 404, + // so we need to try/catch and return an empty response object in case of a 404 - _context11.next = 6; - return this.getDownloadLinkById(file._id, filenameToUse); + _context.prev = 7; + _context.next = 10; + return this.stackClient.fetchJSON('GET', path); - case 6: - href = _context11.sent; - _context11.next = 12; + case 10: + resp = _context.sent; + _context.next = 16; break; - case 9: - _context11.next = 11; - return this.getDownloadLinkByRevision(versionId, filenameToUse); - - case 11: - href = _context11.sent; - - case 12: - (0, _utils.forceFileDownload)("".concat(href, "?Dl=1"), filenameToUse); - case 13: - case "end": - return _context11.stop(); - } - } - }, _callee11, this); - })); + _context.prev = 13; + _context.t0 = _context["catch"](7); + return _context.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context.t0)); - function download(_x13) { - return _download.apply(this, arguments); - } + case 16: + /* If using `all_docs` we need to filter our design documents and check if + the document is not null. If we use `normal_doc` we can't have any design doc + */ + if (isUsingAllDocsRoute) { + data = resp.rows.filter(function (doc) { + return doc && doc.doc !== null && !doc.error && !(0, _startsWith.default)(doc.id, '_design'); + }).map(function (row) { + return normalizeDoc(row.doc, _this.doctype); + }); + } else { + data = resp.rows.map(function (row) { + return normalizeDoc(row, _this.doctype); + }); + } // The presence of a bookmark doesn’t guarantee that there are more results. + // See https://docs.couchdb.org/en/2.2.0/api/database/find.html#pagination - return download; - }() - }, { - key: "fetchFileContent", - value: function () { - var _fetchFileContent = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee12(id) { - return _regenerator.default.wrap(function _callee12$(_context12) { - while (1) { - switch (_context12.prev = _context12.next) { - case 0: - console.warn('FileCollection.fetchFileContent() is deprecated. Use FileCollection.fetchFileContentById() instead'); - return _context12.abrupt("return", this.fetchFileContentById(id)); - case 2: + next = bookmark ? resp.rows.length >= limit : skip + resp.rows.length < resp.total_rows; + return _context.abrupt("return", { + data: data, + meta: { + count: isUsingAllDocsRoute ? data.length : resp.total_rows + }, + skip: skip, + bookmark: resp.bookmark, + next: next + }); + + case 19: case "end": - return _context12.stop(); + return _context.stop(); } } - }, _callee12, this); + }, _callee, this, [[7, 13]]); })); - function fetchFileContent(_x14) { - return _fetchFileContent.apply(this, arguments); - } - - return fetchFileContent; + return function all() { + return _all.apply(this, arguments); + }; }() /** - * Fetch the binary of a file or a specific version of a file - * Useful for instance when you can't download the file directly - * (via a content-disposition attachement header) and need to store - * it before doing an operation. + * Returns a filtered list of documents using a Mango selector. * - * @param {string} id Id of the io.cozy.files or io.cozy.files.version + * The returned documents are paginated by the stack. * + * @param {object} selector The Mango selector. + * @param {{sort, fields, limit, skip, bookmark, indexId}} options The query options. + * @returns {{data, skip, bookmark, next}} The JSON API conformant response. + * @throws {FetchError} */ }, { - key: "fetchFileContentById", + key: "find", value: function () { - var _fetchFileContentById = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee13(id) { - return _regenerator.default.wrap(function _callee13$(_context13) { + var _find = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(selector) { + var _this2 = this; + + var options, + _options$skip2, + skip, + resp, + _args2 = arguments; + + return _regenerator.default.wrap(function _callee2$(_context2) { while (1) { - switch (_context13.prev = _context13.next) { + switch (_context2.prev = _context2.next) { case 0: - return _context13.abrupt("return", this.stackClient.fetch('GET', "/files/download/".concat(id))); - - case 1: - case "end": - return _context13.stop(); - } - } - }, _callee13, this); - })); + options = _args2.length > 1 && _args2[1] !== undefined ? _args2[1] : {}; + _options$skip2 = options.skip, skip = _options$skip2 === void 0 ? 0 : _options$skip2; + _context2.prev = 2; + _context2.t0 = this.stackClient; + _context2.t1 = (0, _utils.uri)(_templateObject2(), this.doctype); + _context2.next = 7; + return this.toMangoOptions(selector, options); - function fetchFileContentById(_x15) { - return _fetchFileContentById.apply(this, arguments); - } + case 7: + _context2.t2 = _context2.sent; + _context2.next = 10; + return _context2.t0.fetchJSON.call(_context2.t0, 'POST', _context2.t1, _context2.t2); - return fetchFileContentById; - }() - /** - * Get a beautified size for a given file - * 1024B => 1KB - * 102404500404B => 95.37 GB - * - * @param {object} file io.cozy.files object - * @param {number} decimal number of decimal - */ + case 10: + resp = _context2.sent; + _context2.next = 16; + break; - }, { - key: "getBeautifulSize", - value: function getBeautifulSize(file, decimal) { - return (0, _utils.formatBytes)(parseInt(file.size), decimal); - } - }, { - key: "downloadArchive", - value: function () { - var _downloadArchive = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee14(fileIds) { - var notSecureFilename, - filename, - href, - fullpath, - _args14 = arguments; - return _regenerator.default.wrap(function _callee14$(_context14) { - while (1) { - switch (_context14.prev = _context14.next) { - case 0: - notSecureFilename = _args14.length > 1 && _args14[1] !== undefined ? _args14[1] : 'files'; - filename = (0, _utils.slugify)(notSecureFilename); - _context14.next = 4; - return this.getArchiveLinkByIds(fileIds, filename); + case 13: + _context2.prev = 13; + _context2.t3 = _context2["catch"](2); + return _context2.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context2.t3)); - case 4: - href = _context14.sent; - fullpath = this.stackClient.fullpath(href); - (0, _utils.forceFileDownload)(fullpath, filename + '.zip'); + case 16: + return _context2.abrupt("return", { + data: resp.docs.map(function (doc) { + return normalizeDoc(doc, _this2.doctype); + }), + next: resp.next, + skip: skip, + bookmark: resp.bookmark + }); - case 7: + case 17: case "end": - return _context14.stop(); + return _context2.stop(); } } - }, _callee14, this); + }, _callee2, this, [[2, 13]]); })); - function downloadArchive(_x16) { - return _downloadArchive.apply(this, arguments); - } - - return downloadArchive; + return function find(_x) { + return _find.apply(this, arguments); + }; }() + /** + * Get a document by id + * + * @param {string} id The document id. + * @returns {object} JsonAPI response containing normalized document as data attribute + */ + }, { - key: "getArchiveLinkByIds", + key: "get", value: function () { - var _getArchiveLinkByIds = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee15(ids) { - var name, - resp, - _args15 = arguments; - return _regenerator.default.wrap(function _callee15$(_context15) { + var _get = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(id) { + return _regenerator.default.wrap(function _callee3$(_context3) { while (1) { - switch (_context15.prev = _context15.next) { + switch (_context3.prev = _context3.next) { case 0: - name = _args15.length > 1 && _args15[1] !== undefined ? _args15[1] : 'files'; - _context15.next = 3; - return this.stackClient.fetchJSON('POST', '/files/archive', { - data: { - type: 'io.cozy.archives', - attributes: { - name: name, - ids: ids - } - } - }); - - case 3: - resp = _context15.sent; - return _context15.abrupt("return", resp.links.related); + return _context3.abrupt("return", _Collection.default.get(this.stackClient, "".concat(this.endpoint).concat(encodeURIComponent(id)), { + normalize: this.constructor.normalizeDoctype(this.doctype) + })); - case 5: + case 1: case "end": - return _context15.stop(); + return _context3.stop(); } } - }, _callee15, this); + }, _callee3, this); })); - function getArchiveLinkByIds(_x17) { - return _getArchiveLinkByIds.apply(this, arguments); - } - - return getArchiveLinkByIds; + return function get(_x2) { + return _get.apply(this, arguments); + }; }() /** - * Checks if the file belongs to the parent's hierarchy. - * - * @param {string|object} child The file which can either be an id or an object - * @param {string|object} parent The parent target which can either be an id or an object - * @returns {boolean} Whether the file is a parent's child + * Get many documents by id */ }, { - key: "isChildOf", + key: "getAll", value: function () { - var _isChildOf = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee16(child, parent) { - var _this2 = this; - - var _ref7, childID, childDirID, childPath, _ref8, parentID, childDoc, currPath, targetsPath, newPath; + var _getAll = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4(ids) { + var _this3 = this; - return _regenerator.default.wrap(function _callee16$(_context16) { + var resp, rows; + return _regenerator.default.wrap(function _callee4$(_context4) { while (1) { - switch (_context16.prev = _context16.next) { + switch (_context4.prev = _context4.next) { case 0: - _ref7 = typeof child === 'object' ? child : { - _id: child - }, childID = _ref7._id, childDirID = _ref7.dirID, childPath = _ref7.path; - _ref8 = typeof parent === 'object' ? parent : { - _id: parent - }, parentID = _ref8._id; - - if (!(childID === parentID || childDirID === parentID)) { - _context16.next = 4; - break; - } - - return _context16.abrupt("return", true); - - case 4: - if (childPath) { - _context16.next = 10; - break; - } - - _context16.next = 7; - return this.statById(childID); - - case 7: - childDoc = _context16.sent; - childPath = childDoc.data.path; - childDirID = childDoc.data.dirID; + _context4.prev = 0; + _context4.next = 3; + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject3(), this.doctype), { + keys: ids + }); - case 10: - // Build hierarchy paths - currPath = childPath; - targetsPath = [childPath]; + case 3: + resp = _context4.sent; + _context4.next = 9; + break; - while (currPath != '') { - newPath = dirName(currPath); + case 6: + _context4.prev = 6; + _context4.t0 = _context4["catch"](0); + return _context4.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context4.t0)); - if (newPath != '') { - targetsPath.push(newPath); + case 9: + rows = resp.rows.filter(function (row) { + return row.doc; + }); + return _context4.abrupt("return", { + data: rows.map(function (row) { + return normalizeDoc(row.doc, _this3.doctype); + }), + meta: { + count: rows.length } + }); - currPath = newPath; - } - - targetsPath.reverse(); // Look for all hierarchy in parallel and return true as soon as a dir is the searched parent - - return _context16.abrupt("return", raceWithCondition(targetsPath.map(function (path) { - return _this2.statByPath(path); - }), function (stat) { - return stat.data._id == parentID; - })); - - case 15: + case 11: case "end": - return _context16.stop(); + return _context4.stop(); } } - }, _callee16, this); + }, _callee4, this, [[0, 6]]); })); - function isChildOf(_x18, _x19) { - return _isChildOf.apply(this, arguments); - } - - return isChildOf; + return function getAll(_x3) { + return _getAll.apply(this, arguments); + }; }() /** - * statById - Fetches the metadata about a document. For folders, the results include the list of child files and folders. - * - * @param {string} id ID of the document - * @param {object} [options={}] Description - * @param {number} [options.page[limit]] Max number of children documents to return - * @param {number} [options.page[skip]] Number of children documents to skip from the start - * @param {string} [options.page[cursor]] A cursor id for pagination + * Creates a document * - * @returns {object} A promise resolving to an object containing "data" (the document metadata), "included" (the child documents) and "links" (pagination informations) + * @param {object} doc - Document to create. Optional: you can force the id with the _id attribute */ }, { - key: "statById", + key: "create", value: function () { - var _statById = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee17(id) { - var options, - params, - url, - path, - resp, - _args17 = arguments; - return _regenerator.default.wrap(function _callee17$(_context17) { + var _create = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee5(_ref) { + var _id, _type, document, hasFixedId, method, endpoint, resp; + + return _regenerator.default.wrap(function _callee5$(_context5) { while (1) { - switch (_context17.prev = _context17.next) { + switch (_context5.prev = _context5.next) { case 0: - options = _args17.length > 1 && _args17[1] !== undefined ? _args17[1] : {}; - params = (0, _pick.default)(options, ['page[limit]', 'page[skip]', 'page[cursor]']); - url = (0, _utils.uri)(_templateObject14(), id); - path = querystring.buildURL(url, params); - _context17.next = 6; - return this.stackClient.fetchJSON('GET', path); + _id = _ref._id, _type = _ref._type, document = (0, _objectWithoutProperties2.default)(_ref, ["_id", "_type"]); + // In case of a fixed id, let's use the dedicated creation endpoint + // https://github.com/cozy/cozy-stack/blob/master/docs/data-system.md#create-a-document-with-a-fixed-id + hasFixedId = !!_id; + method = hasFixedId ? 'PUT' : 'POST'; + endpoint = (0, _utils.uri)(_templateObject4(), this.doctype, hasFixedId ? _id : ''); + _context5.next = 6; + return this.stackClient.fetchJSON(method, endpoint, document); case 6: - resp = _context17.sent; - return _context17.abrupt("return", { - data: normalizeFile(resp.data), - included: resp.included && resp.included.map(function (f) { - return normalizeFile(f); - }), - links: resp.links + resp = _context5.sent; + return _context5.abrupt("return", { + data: normalizeDoc(resp.data, this.doctype) }); case 8: case "end": - return _context17.stop(); + return _context5.stop(); } } - }, _callee17, this); + }, _callee5, this); })); - function statById(_x20) { - return _statById.apply(this, arguments); - } - - return statById; + return function create(_x4) { + return _create.apply(this, arguments); + }; }() + /** + * Updates a document + * + * @param {object} document - Document to update. Do not forget the _id attribute + */ + }, { - key: "statByPath", + key: "update", value: function () { - var _statByPath = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee18(path) { + var _update = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee6(document) { var resp; - return _regenerator.default.wrap(function _callee18$(_context18) { + return _regenerator.default.wrap(function _callee6$(_context6) { while (1) { - switch (_context18.prev = _context18.next) { + switch (_context6.prev = _context6.next) { case 0: - _context18.next = 2; - return this.stackClient.fetchJSON('GET', (0, _utils.uri)(_templateObject15(), path)); + _context6.next = 2; + return this.stackClient.fetchJSON('PUT', (0, _utils.uri)(_templateObject5(), this.doctype, document._id), document); case 2: - resp = _context18.sent; - return _context18.abrupt("return", { - data: normalizeFile(resp.data), - included: resp.included && resp.included.map(function (f) { - return normalizeFile(f); - }) + resp = _context6.sent; + return _context6.abrupt("return", { + data: normalizeDoc(resp.data, this.doctype) }); case 4: case "end": - return _context18.stop(); + return _context6.stop(); } } - }, _callee18, this); + }, _callee6, this); })); - function statByPath(_x21) { - return _statByPath.apply(this, arguments); - } - - return statByPath; + return function update(_x5) { + return _update.apply(this, arguments); + }; }() /** - * Create directory + * Destroys a document * - * @private - * @param {DirectoryAttributes} attributes - Attributes of the directory - * @returns {Promise} + * @param {object} doc - Document to destroy. Do not forget _id and _rev attributes */ }, { - key: "createDirectory", + key: "destroy", value: function () { - var _createDirectory = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee19() { - var attributes, - name, - dirId, - lastModifiedDate, - safeName, - lastModified, - resp, - _args19 = arguments; - return _regenerator.default.wrap(function _callee19$(_context19) { + var _destroy = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee7(_ref2) { + var _id, _rev, document, resp; + + return _regenerator.default.wrap(function _callee7$(_context7) { while (1) { - switch (_context19.prev = _context19.next) { + switch (_context7.prev = _context7.next) { case 0: - attributes = _args19.length > 0 && _args19[0] !== undefined ? _args19[0] : {}; - name = attributes.name, dirId = attributes.dirId, lastModifiedDate = attributes.lastModifiedDate; - safeName = sanitizeFileName(name); - - if (!(typeof name !== 'string' || safeName === '')) { - _context19.next = 5; - break; - } - - throw new Error('missing name argument'); - - case 5: - lastModified = lastModifiedDate && (typeof lastModifiedDate === 'string' ? new Date(lastModifiedDate) : lastModifiedDate); - _context19.next = 8; - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject16(), dirId, safeName), undefined, { - headers: { - Date: lastModified ? lastModified.toGMTString() : '' - } - }); + _id = _ref2._id, _rev = _ref2._rev, document = (0, _objectWithoutProperties2.default)(_ref2, ["_id", "_rev"]); + _context7.next = 3; + return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject6(), this.doctype, _id, _rev)); - case 8: - resp = _context19.sent; - return _context19.abrupt("return", { - data: normalizeFile(resp.data) + case 3: + resp = _context7.sent; + return _context7.abrupt("return", { + data: normalizeDoc((0, _objectSpread2.default)({}, document, { + _id: _id, + _rev: resp.rev, + _deleted: true + }), this.doctype) }); - case 10: + case 5: case "end": - return _context19.stop(); + return _context7.stop(); } } - }, _callee19, this); + }, _callee7, this); })); - function createDirectory() { - return _createDirectory.apply(this, arguments); - } - - return createDirectory; + return function destroy(_x6) { + return _destroy.apply(this, arguments); + }; }() + /** + * Updates several documents in one batch + * + * @param {Document[]} docs Documents to be updated + */ + }, { - key: "ensureDirectoryExists", + key: "updateAll", value: function () { - var _ensureDirectoryExists = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee20(path) { - var resp; - return _regenerator.default.wrap(function _callee20$(_context20) { + var _updateAll = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee8(docs) { + var stackClient, update, firstDoc, resp; + return _regenerator.default.wrap(function _callee8$(_context8) { while (1) { - switch (_context20.prev = _context20.next) { + switch (_context8.prev = _context8.next) { case 0: - if (this.specialDirectories[path]) { - _context20.next = 5; + stackClient = this.stackClient; + + if (!(!docs || !docs.length)) { + _context8.next = 3; break; } - _context20.next = 3; - return this.createDirectoryByPath(path); + return _context8.abrupt("return", Promise.resolve([])); case 3: - resp = _context20.sent; - this.specialDirectories[path] = resp.data._id; - - case 5: - return _context20.abrupt("return", this.specialDirectories[path]); + _context8.prev = 3; + _context8.next = 6; + return stackClient.fetchJSON('POST', "/data/".concat(this.doctype, "/_bulk_docs"), { + docs: docs + }); case 6: - case "end": - return _context20.stop(); - } - } - }, _callee20, this); - })); + update = _context8.sent; + return _context8.abrupt("return", update); - function ensureDirectoryExists(_x22) { - return _ensureDirectoryExists.apply(this, arguments); - } + case 10: + _context8.prev = 10; + _context8.t0 = _context8["catch"](3); - return ensureDirectoryExists; - }() - }, { - key: "getDirectoryOrCreate", - value: function () { - var _getDirectoryOrCreate = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee21(name, parentDirectory) { - var safeName, path, stat, parsedError, errors; - return _regenerator.default.wrap(function _callee21$(_context21) { - while (1) { - switch (_context21.prev = _context21.next) { - case 0: - if (!(parentDirectory && !parentDirectory.attributes)) { - _context21.next = 2; + if (!(_context8.t0.reason && _context8.t0.reason.reason && _context8.t0.reason.reason === DATABASE_DOES_NOT_EXIST)) { + _context8.next = 23; break; } - throw new Error('Malformed parent directory'); - - case 2: - safeName = sanitizeFileName(name); - path = "".concat(parentDirectory._id === ROOT_DIR_ID ? '' : parentDirectory.attributes.path, "/").concat(safeName); - _context21.prev = 4; - _context21.next = 7; - return this.statByPath(path || '/'); - - case 7: - stat = _context21.sent; - return _context21.abrupt("return", stat); - - case 11: - _context21.prev = 11; - _context21.t0 = _context21["catch"](4); - parsedError = JSON.parse(_context21.t0.message); - errors = parsedError.errors; + _context8.next = 15; + return this.create(docs[0]); - if (!(errors && errors.length && errors[0].status === '404')) { - _context21.next = 17; - break; - } + case 15: + firstDoc = _context8.sent; + _context8.next = 18; + return this.updateAll(docs.slice(1)); - return _context21.abrupt("return", this.createDirectory({ - name: safeName, - dirId: parentDirectory && parentDirectory._id - })); + case 18: + resp = _context8.sent; + resp.unshift({ + ok: true, + id: firstDoc._id, + rev: firstDoc._rev + }); + return _context8.abrupt("return", resp); - case 17: - throw errors; + case 23: + throw _context8.t0; - case 18: + case 24: case "end": - return _context21.stop(); + return _context8.stop(); } } - }, _callee21, this, [[4, 11]]); + }, _callee8, this, [[3, 10]]); })); - function getDirectoryOrCreate(_x23, _x24) { - return _getDirectoryOrCreate.apply(this, arguments); - } - - return getDirectoryOrCreate; + return function updateAll(_x7) { + return _updateAll.apply(this, arguments); + }; }() /** - * async createDirectoryByPath - Creates one or more folders until the given path exists + * Deletes several documents in one batch * - * @param {string} path - Path of the created directory - * @returns {object} The document corresponding to the last segment of the path + * @param {Document[]} docs - Documents to delete */ }, { - key: "createDirectoryByPath", + key: "destroyAll", + value: function destroyAll(docs) { + return this.updateAll(docs.map(prepareForDeletion)); + } + }, { + key: "toMangoOptions", value: function () { - var _createDirectoryByPath = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee22(path) { - var parts, root, parentDir, _iterator2, _step2, part; + var _toMangoOptions = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee9(selector) { + var options, + sort, + indexedFields, + fields, + _options$skip3, + skip, + limit, + bookmark, + indexId, + sortOrders, + sortOrder, + _iteratorNormalCompletion, + _didIteratorError, + _iteratorError, + _loop, + _iterator, + _step, + opts, + _args9 = arguments; - return _regenerator.default.wrap(function _callee22$(_context22) { + return _regenerator.default.wrap(function _callee9$(_context9) { while (1) { - switch (_context22.prev = _context22.next) { + switch (_context9.prev = _context9.next) { case 0: - parts = path.split('/').filter(function (part) { - return part !== ''; - }); - _context22.next = 3; - return this.statById(ROOT_DIR_ID); + options = _args9.length > 1 && _args9[1] !== undefined ? _args9[1] : {}; + sort = options.sort, indexedFields = options.indexedFields; + fields = options.fields, _options$skip3 = options.skip, skip = _options$skip3 === void 0 ? 0 : _options$skip3, limit = options.limit, bookmark = options.bookmark; + + if (sort && !Array.isArray(sort)) { + console.warn('Passing an object to the "sort" is deprecated, please use an array instead.'); + sort = (0, _transform.default)(sort, function (acc, order, field) { + return acc.push((0, _defineProperty2.default)({}, field, order)); + }, []); + } - case 3: - root = _context22.sent; + indexedFields = indexedFields ? indexedFields : this.getIndexFields({ + sort: sort, + selector: selector + }); + _context9.t0 = options.indexId; - if (parts.length) { - _context22.next = 6; + if (_context9.t0) { + _context9.next = 10; break; } - return _context22.abrupt("return", root); - - case 6: - parentDir = root; - _iterator2 = _createForOfIteratorHelper(parts); - _context22.prev = 8; + _context9.next = 9; + return this.getIndexId(indexedFields); - _iterator2.s(); + case 9: + _context9.t0 = _context9.sent; case 10: - if ((_step2 = _iterator2.n()).done) { - _context22.next = 17; + indexId = _context9.t0; + + if (!sort) { + _context9.next = 36; break; } - part = _step2.value; - _context22.next = 14; - return this.getDirectoryOrCreate(part, parentDir.data); + sortOrders = (0, _uniq.default)(sort.map(function (sortOption) { + return (0, _head.default)(Object.values(sortOption)); + })); - case 14: - parentDir = _context22.sent; + if (!(sortOrders.length > 1)) { + _context9.next = 15; + break; + } - case 15: - _context22.next = 10; - break; + throw new Error('Mango sort can only use a single order (asc or desc).'); - case 17: - _context22.next = 22; - break; + case 15: + sortOrder = sortOrders.length > 0 ? (0, _head.default)(sortOrders) : 'asc'; + _iteratorNormalCompletion = true; + _didIteratorError = false; + _iteratorError = undefined; + _context9.prev = 19; + + _loop = function _loop() { + var field = _step.value; + if (!sort.find(function (sortOption) { + return (0, _head.default)(Object.keys(sortOption)) === field; + })) sort.push((0, _defineProperty2.default)({}, field, sortOrder)); + }; - case 19: - _context22.prev = 19; - _context22.t0 = _context22["catch"](8); + for (_iterator = indexedFields[Symbol.iterator](); !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + _loop(); + } - _iterator2.e(_context22.t0); + _context9.next = 28; + break; - case 22: - _context22.prev = 22; + case 24: + _context9.prev = 24; + _context9.t1 = _context9["catch"](19); + _didIteratorError = true; + _iteratorError = _context9.t1; - _iterator2.f(); + case 28: + _context9.prev = 28; + _context9.prev = 29; - return _context22.finish(22); + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } - case 25: - return _context22.abrupt("return", parentDir); + case 31: + _context9.prev = 31; - case 26: - case "end": - return _context22.stop(); - } - } - }, _callee22, this, [[8, 19, 22, 25]]); - })); + if (!_didIteratorError) { + _context9.next = 34; + break; + } - function createDirectoryByPath(_x25) { - return _createDirectoryByPath.apply(this, arguments); - } + throw _iteratorError; - return createDirectoryByPath; - }() - /** - * - * async updateAttributes - Updates a file / folder's attributes except - * the metadata attribute. If you want to update its metadata attribute, - * then use `updateFileMetadataAttribute` since `metadata` is a specific - * doctype. - * - * For instance, if you want to update the name of a file, you can pass - * attributes = { name: 'newName'} - * - * You can see the attributes for both Folder and File (as they share the - * same doctype they have a few in common) here : - * https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.files/#iocozyfiles - * - * @private You shoud use update() directly. - * @param {string} id File id - * @param {object} attributes New file attributes - * @returns {object} Updated document - */ + case 34: + return _context9.finish(31); - }, { - key: "updateAttributes", - value: function () { - var _updateAttributes = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee23(id, attributes) { - var attributesToSanitize, sanitizedAttributes, resp; - return _regenerator.default.wrap(function _callee23$(_context23) { - while (1) { - switch (_context23.prev = _context23.next) { - case 0: - attributesToSanitize = _objectSpread({}, attributes); - sanitizedAttributes = sanitizeAttributes(attributesToSanitize); - _context23.next = 4; - return this.stackClient.fetchJSON('PATCH', (0, _utils.uri)(_templateObject17(), id), { - data: { - type: 'io.cozy.files', - id: id, - attributes: sanitizedAttributes - } - }); + case 35: + return _context9.finish(28); - case 4: - resp = _context23.sent; - return _context23.abrupt("return", { - data: normalizeFile(resp.data) - }); + case 36: + opts = { + selector: selector, + use_index: indexId, + // TODO: type and class should not be necessary, it's just a temp fix for a stack bug + fields: fields ? [].concat((0, _toConsumableArray2.default)(fields), ['_id', '_type', 'class']) : undefined, + limit: limit, + skip: skip, + bookmark: options.bookmark || bookmark, + sort: sort + }; + return _context9.abrupt("return", opts); - case 6: + case 38: case "end": - return _context23.stop(); + return _context9.stop(); } } - }, _callee23, this); + }, _callee9, this, [[19, 24, 28, 36], [29,, 31, 35]]); })); - function updateAttributes(_x26, _x27) { - return _updateAttributes.apply(this, arguments); - } - - return updateAttributes; + return function toMangoOptions(_x8) { + return _toMangoOptions.apply(this, arguments); + }; }() }, { - key: "updateFileMetadata", + key: "checkUniquenessOf", value: function () { - var _updateFileMetadata = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee24(id, attributes) { - return _regenerator.default.wrap(function _callee24$(_context24) { + var _checkUniquenessOf = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee10(property, value) { + var indexId, existingDocs; + return _regenerator.default.wrap(function _callee10$(_context10) { while (1) { - switch (_context24.prev = _context24.next) { + switch (_context10.prev = _context10.next) { case 0: - console.warn('CozyClient FileCollection updateFileMetadata method is deprecated. Use updateAttributes instead'); - return _context24.abrupt("return", this.updateAttributes(id, attributes)); + _context10.next = 2; + return this.getUniqueIndexId(property); case 2: - case "end": - return _context24.stop(); - } - } - }, _callee24, this); - })); - - function updateFileMetadata(_x28, _x29) { - return _updateFileMetadata.apply(this, arguments); - } - - return updateFileMetadata; - }() - /** - * Send a metadata object that can be associated to a file uploaded after that, - * via the MetadataID query parameter. - * See https://github.com/cozy/cozy-stack/blob/master/docs/files.md#post-filesuploadmetadata - * - * @param {object} attributes The file's metadata - * @returns {object} The Metadata object - */ - - }, { - key: "createFileMetadata", - value: function () { - var _createFileMetadata = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee25(attributes) { - var resp; - return _regenerator.default.wrap(function _callee25$(_context25) { - while (1) { - switch (_context25.prev = _context25.next) { - case 0: - _context25.next = 2; - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject18()), { - data: { - type: 'io.cozy.files.metadata', - attributes: attributes - } + indexId = _context10.sent; + _context10.next = 5; + return this.find((0, _defineProperty2.default)({}, property, value), { + indexId: indexId, + fields: ['_id'] }); - case 2: - resp = _context25.sent; - return _context25.abrupt("return", { - data: resp.data - }); + case 5: + existingDocs = _context10.sent; + return _context10.abrupt("return", existingDocs.data.length === 0); - case 4: + case 7: case "end": - return _context25.stop(); + return _context10.stop(); } } - }, _callee25, this); + }, _callee10, this); })); - function createFileMetadata(_x30) { - return _createFileMetadata.apply(this, arguments); - } - - return createFileMetadata; + return function checkUniquenessOf(_x9, _x10) { + return _checkUniquenessOf.apply(this, arguments); + }; }() - /** - * - * Updates the metadata attribute of a io.cozy.files - * Creates a new version of the file without having - * to upload again the file's content - * - * To see available content of the metadata attribute - * see : https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.files_metadata/ - * - * @param {string} id File id - * @param {object} metadata io.cozy.files.metadata attributes - * @returns {object} io.cozy.files updated - */ - }, { - key: "updateMetadataAttribute", + key: "getUniqueIndexId", + value: function getUniqueIndexId(property) { + return this.getIndexId([property], "".concat(this.doctype, "/").concat(property)); + } + }, { + key: "getIndexId", value: function () { - var _updateMetadataAttribute = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee26(id, metadata) { - var resp; - return _regenerator.default.wrap(function _callee26$(_context26) { + var _getIndexId = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee11(fields) { + var indexName, + _args11 = arguments; + return _regenerator.default.wrap(function _callee11$(_context11) { while (1) { - switch (_context26.prev = _context26.next) { + switch (_context11.prev = _context11.next) { case 0: - _context26.next = 2; - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject19(), id), { - data: { - type: 'io.cozy.files.metadata', - attributes: metadata - } - }); + indexName = _args11.length > 1 && _args11[1] !== undefined ? _args11[1] : this.getIndexNameFromFields(fields); - case 2: - resp = _context26.sent; - return _context26.abrupt("return", { - data: resp.data - }); + if (this.indexes[indexName]) { + _context11.next = 5; + break; + } + + _context11.next = 4; + return this.createIndex(fields); case 4: + this.indexes[indexName] = _context11.sent; + + case 5: + return _context11.abrupt("return", this.indexes[indexName].id); + + case 6: case "end": - return _context26.stop(); + return _context11.stop(); } } - }, _callee26, this); + }, _callee11, this); })); - function updateMetadataAttribute(_x31, _x32) { - return _updateMetadataAttribute.apply(this, arguments); - } - - return updateMetadataAttribute; + return function getIndexId(_x11) { + return _getIndexId.apply(this, arguments); + }; }() - /** - * - * This method should not be called directly to upload a file. - * You should use `createFile` - * - * @param {File|Blob|Stream|string|ArrayBuffer} dataArg file to be uploaded - * @param {string} path Uri to call the stack from. Something like - * `/files/${dirId}?Name=${name}&Type=file&Executable=${executable}&MetadataID=${metadataId}` - * @param {object} options Additional headers - * @param {string} method POST / PUT / PATCH - */ - }, { - key: "doUpload", + key: "createIndex", value: function () { - var _doUpload = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee27(dataArg, path, options) { - var method, - data, - isBuffer, - isFile, - isBlob, - isStream, - isString, - _ref9, - contentType, - contentLength, - checksum, - lastModifiedDate, - ifMatch, - headers, - resp, - _args27 = arguments; - - return _regenerator.default.wrap(function _callee27$(_context27) { + var _createIndex = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee12(fields) { + var indexDef, resp, indexResp, selector, options; + return _regenerator.default.wrap(function _callee12$(_context12) { while (1) { - switch (_context27.prev = _context27.next) { + switch (_context12.prev = _context12.next) { case 0: - method = _args27.length > 3 && _args27[3] !== undefined ? _args27[3] : 'POST'; - data = dataArg; + indexDef = { + index: { + fields: fields + } + }; + _context12.next = 3; + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject7(), this.doctype), indexDef); - if (data) { - _context27.next = 4; + case 3: + resp = _context12.sent; + indexResp = { + id: resp.id, + fields: fields + }; + + if (!(resp.result === 'exists')) { + _context12.next = 7; break; } - throw new Error('missing data argument'); - - case 4: - // transform any ArrayBufferView to ArrayBuffer - if (data.buffer && data.buffer instanceof ArrayBuffer) { - data = data.buffer; - } + return _context12.abrupt("return", indexResp); - isBuffer = typeof ArrayBuffer !== 'undefined' && data instanceof ArrayBuffer; - isFile = typeof File !== 'undefined' && data instanceof File; - isBlob = typeof Blob !== 'undefined' && data instanceof Blob; - isStream = data.readable === true && typeof data.pipe === 'function'; - isString = typeof data === 'string'; + case 7: + // indexes might not be usable right after being created; so we delay the resolving until they are + selector = (0, _defineProperty2.default)({}, fields[0], { + $gt: null + }); + options = { + indexId: indexResp.id + }; + _context12.next = 11; + return (0, _utils.attempt)(this.find(selector, options)); - if (!(!isBuffer && !isFile && !isBlob && !isStream && !isString)) { - _context27.next = 12; + case 11: + if (!_context12.sent) { + _context12.next = 13; break; } - throw new Error('invalid data type'); + return _context12.abrupt("return", indexResp); - case 12: - _ref9 = options || {}, contentType = _ref9.contentType, contentLength = _ref9.contentLength, checksum = _ref9.checksum, lastModifiedDate = _ref9.lastModifiedDate, ifMatch = _ref9.ifMatch; + case 13: + _context12.next = 15; + return (0, _utils.sleep)(1000); - if (!contentType) { - if (isBuffer) { - contentType = CONTENT_TYPE_OCTET_STREAM; - } else if (isFile) { - contentType = data.type || getFileTypeFromName(data.name.toLowerCase()) || CONTENT_TYPE_OCTET_STREAM; + case 15: + _context12.next = 17; + return (0, _utils.attempt)(this.find(selector, options)); - if (!lastModifiedDate) { - lastModifiedDate = data.lastModifiedDate; - } - } else if (isBlob) { - contentType = data.type || CONTENT_TYPE_OCTET_STREAM; - } else if (isStream) { - contentType = CONTENT_TYPE_OCTET_STREAM; - } else if (typeof data === 'string') { - contentType = 'text/plain'; - } + case 17: + if (!_context12.sent) { + _context12.next = 19; + break; } - if (lastModifiedDate && typeof lastModifiedDate === 'string') { - lastModifiedDate = new Date(lastModifiedDate); - } + return _context12.abrupt("return", indexResp); - headers = { - 'Content-Type': contentType - }; - if (contentLength) headers['Content-Length'] = String(contentLength); - if (checksum) headers['Content-MD5'] = checksum; - if (lastModifiedDate) headers['Date'] = lastModifiedDate.toGMTString(); - if (ifMatch) headers['If-Match'] = ifMatch; - _context27.next = 22; - return this.stackClient.fetchJSON(method, path, data, { - headers: headers, - onUploadProgress: options.onUploadProgress - }); + case 19: + _context12.next = 21; + return (0, _utils.sleep)(500); - case 22: - resp = _context27.sent; - return _context27.abrupt("return", { - data: normalizeFile(resp.data) - }); + case 21: + return _context12.abrupt("return", indexResp); - case 24: + case 22: case "end": - return _context27.stop(); + return _context12.stop(); } } - }, _callee27, this); + }, _callee12, this); })); - function doUpload(_x33, _x34, _x35) { - return _doUpload.apply(this, arguments); - } - - return doUpload; + return function createIndex(_x12) { + return _createIndex.apply(this, arguments); + }; }() + }, { + key: "getIndexNameFromFields", + value: function getIndexNameFromFields(fields) { + return "by_".concat(fields.join('_and_')); + } + /** + * Compute fields that should be indexed for a mango + * query to work + * + * @private + * @param {object} options - Mango query options + * @returns {Array} - Fields to index + */ + + }, { + key: "getIndexFields", + value: function getIndexFields(_ref3) { + var selector = _ref3.selector, + _ref3$sort = _ref3.sort, + sort = _ref3$sort === void 0 ? [] : _ref3$sort; + return Array.from(new Set([].concat((0, _toConsumableArray2.default)(sort.map(function (sortOption) { + return (0, _head.default)(Object.keys(sortOption)); + })), (0, _toConsumableArray2.default)(selector ? Object.keys(selector) : [])))); + } /** - * async findNotSynchronizedDirectories - Returns the list of directories not synchronized on the given OAuth client (mainly Cozy Desktop clients) — see https://docs.cozy.io/en/cozy-stack/not-synchronized-vfs/#get-datatypedoc-idrelationshipsnot_synchronizing + * Use Couch _changes API * - * @param {OAuthClient} oauthClient A JSON representing an OAuth client, with at least a `_type` and `_id` field. - * @param {object} options Additional options - * @param {number} options.skip For skip-based pagination, the number of referenced files to skip. - * @param {number} options.limit For pagination, the number of results to return. - * @param {object} options.cursor For cursor-based pagination, the index cursor. - * @param {boolean} options.includeFiles Include the whole file documents in the results list - * @returns {Array<object|IOCozyFolder>} The JSON API conformant response. + * @param {object} couchOptions Couch options for changes https://kutt.it/5r7MNQ + * @param {object} options { includeDesign: false, includeDeleted: false } */ }, { - key: "findNotSynchronizedDirectories", + key: "fetchChanges", value: function () { - var _findNotSynchronizedDirectories = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee28(oauthClient) { - var _ref10, - _ref10$skip, - skip, - limit, - cursor, - _ref10$includeFiles, - includeFiles, + var _fetchChanges = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee13() { + var couchOptions, + options, + haveDocsIds, + urlParams, + method, + endpoint, params, - url, - path, - resp, - _args28 = arguments; - - return _regenerator.default.wrap(function _callee28$(_context28) { + result, + newLastSeq, + docs, + _args13 = arguments; + return _regenerator.default.wrap(function _callee13$(_context13) { while (1) { - switch (_context28.prev = _context28.next) { + switch (_context13.prev = _context13.next) { case 0: - _ref10 = _args28.length > 1 && _args28[1] !== undefined ? _args28[1] : {}, _ref10$skip = _ref10.skip, skip = _ref10$skip === void 0 ? 0 : _ref10$skip, limit = _ref10.limit, cursor = _ref10.cursor, _ref10$includeFiles = _ref10.includeFiles, includeFiles = _ref10$includeFiles === void 0 ? false : _ref10$includeFiles; - params = { - include: includeFiles ? 'files' : undefined, - 'page[limit]': limit, - 'page[cursor]': cursor, - sort: 'id' - }; - url = (0, _utils.uri)(_templateObject20(), oauthClient._type, oauthClient._id); - path = querystring.buildURL(url, params); - _context28.next = 6; - return this.stackClient.fetchJSON('GET', path); + couchOptions = _args13.length > 0 && _args13[0] !== undefined ? _args13[0] : {}; + options = _args13.length > 1 && _args13[1] !== undefined ? _args13[1] : {}; + haveDocsIds = couchOptions.doc_ids && couchOptions.doc_ids.length > 0; + urlParams = ''; + + if (typeof couchOptions !== 'object') { + urlParams = "?include_docs=true&since=".concat(couchOptions); + console.warn("fetchChanges use couchOptions as Object not a string, since is deprecated, please use fetchChanges({include_docs: true, since: \"".concat(couchOptions, "\"}).")); + } else if (Object.keys(couchOptions).length > 0) { + urlParams = "?".concat([_qs.default.stringify((0, _omit.default)(couchOptions, 'doc_ids')), haveDocsIds && couchOptions.filter === undefined ? 'filter=_doc_ids' : undefined].filter(Boolean).join('&')); + } + + method = haveDocsIds ? 'POST' : 'GET'; + endpoint = "/data/".concat(this.doctype, "/_changes").concat(urlParams); + params = haveDocsIds ? { + doc_ids: couchOptions.doc_ids + } : undefined; + _context13.next = 10; + return this.stackClient.fetchJSON(method, endpoint, params); + + case 10: + result = _context13.sent; + newLastSeq = result.last_seq; + docs = result.results.map(function (x) { + return x.doc; + }).filter(Boolean); + + if (!options.includeDesign) { + docs = docs.filter(function (doc) { + return doc._id.indexOf('_design') !== 0; + }); + } - case 6: - resp = _context28.sent; - return _context28.abrupt("return", { - data: resp.data.map(function (f) { - return normalizeFile(f); - }), - included: resp.included ? resp.included.map(function (f) { - return normalizeFile(f); - }) : [], - next: (0, _has.default)(resp, 'links.next'), - meta: resp.meta, - skip: skip + if (!options.includeDeleted) { + docs = docs.filter(function (doc) { + return !doc._deleted; + }); + } + + return _context13.abrupt("return", { + newLastSeq: newLastSeq, + documents: docs }); - case 8: + case 16: case "end": - return _context28.stop(); + return _context13.stop(); } } - }, _callee28, this); + }, _callee13, this); })); - function findNotSynchronizedDirectories(_x36) { - return _findNotSynchronizedDirectories.apply(this, arguments); - } - - return findNotSynchronizedDirectories; + return function fetchChanges() { + return _fetchChanges.apply(this, arguments); + }; }() + }], [{ + key: "normalizeDoctype", + value: function normalizeDoctype(doctype) { + return this.normalizeDoctypeRawApi(doctype); + } /** - * Add directory synchronization exclusions to an OAuth client — see https://docs.cozy.io/en/cozy-stack/not-synchronized-vfs/#post-datatypedoc-idrelationshipsnot_synchronizing - * - * For example, to exclude directory `/Photos` from `My Computer`'s desktop synchronization: - * ``` - * addNotSynchronizedDirectories({_id: 123, _type: "io.cozy.oauth.clients", clientName: "Cozy Drive (My Computer)", clientKind: "desktop"}, [{_id: 456, _type: "io.cozy.files", name: "Photos", path: "/Photos"}]) - * ``` + * `normalizeDoctype` for api end points returning json api responses * - * @param {OAuthClient} oauthClient A JSON representing the OAuth client - * @param {Array} directories An array of JSON documents having a `_type` and `_id` fields and representing directories. - * @returns 204 No Content + * @private + * @param {string} doctype - Document doctype + * @returns {Function} (data, response) => normalizedDocument + * using `normalizeDoc` */ }, { - key: "addNotSynchronizedDirectories", - value: function addNotSynchronizedDirectories(oauthClient, directories) { - var refs = directories.map(function (d) { - return { - id: d._id, - type: d._type - }; - }); - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject21(), oauthClient._type, oauthClient._id), { - data: refs - }); + key: "normalizeDoctypeJsonApi", + value: function normalizeDoctypeJsonApi(doctype) { + return function (data, response) { + // use the "data" attribute of the response + return normalizeDoc(data, doctype); + }; } /** - * Remove directory synchronization exclusions from an OAuth client — see https://docs.cozy.io/en/cozy-stack/not-synchronized-vfs/#delete-datatypedoc-idrelationshipsnot_synchronizing - * - * For example, to re-include directory `/Photos` into `My Computer`'s desktop synchronization: - * ``` - * removeNotSynchronizedDirectories({_id: 123, _type: "io.cozy.oauth.clients", clientName: "Cozy Drive (My Computer)", clientKind: "desktop"}, [{_id: 456, _type: "io.cozy.files", name: "Photos", path: "/Photos"}]) - * ``` + * `normalizeDoctype` for api end points returning raw documents * - * @param {OAuthClient} oauthClient A JSON representing the OAuth client - * @param {Array} directories An array of JSON documents having a `_type` and `_id` field and representing directories. - * @returns 204 No Content + * @private + * @param {string} doctype - Document doctype + * @returns {Function} (data, response) => normalizedDocument + * using `normalizeDoc` */ }, { - key: "removeNotSynchronizedDirectories", - value: function removeNotSynchronizedDirectories(oauthClient, directories) { - var refs = directories.map(function (d) { - return { - id: d._id, - type: d._type - }; - }); - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject22(), oauthClient._type, oauthClient._id), { - data: refs - }); + key: "normalizeDoctypeRawApi", + value: function normalizeDoctypeRawApi(doctype) { + return function (data, response) { + // use the response directly + return normalizeDoc(response, doctype); + }; } }]); - return FileCollection; -}(_DocumentCollection2.default); + return DocumentCollection; +}(); -var _default = FileCollection; +var _default = DocumentCollection; exports.default = _default; +var normalizeDoctype = DocumentCollection.normalizeDoctype; +exports.normalizeDoctype = normalizeDoctype; /***/ }), -/* 666 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; +/* 687 */ +/***/ (function(module, exports) { +function _taggedTemplateLiteral(strings, raw) { + if (!raw) { + raw = strings.slice(0); + } -let Mime = __webpack_require__(667); -module.exports = new Mime(__webpack_require__(668)); + return Object.freeze(Object.defineProperties(strings, { + raw: { + value: Object.freeze(raw) + } + })); +} +module.exports = _taggedTemplateLiteral; +module.exports["default"] = module.exports, module.exports.__esModule = true; /***/ }), -/* 667 */ +/* 688 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.formatBytes = exports.forceFileDownload = exports.slugify = exports.sleep = exports.attempt = exports.uri = void 0; + /** - * @param typeMap [Object] Map of MIME type -> Array[extensions] - * @param ... + * @function + * @description Template tag function for URIs encoding + * + * Will automatically apply `encodeURIComponent` to template literal placeholders + * + * @example + * ``` + * const safe = uri`/data/${doctype}/_all_docs?limit=${limit}` + * ``` + * + * @private */ -function Mime() { - this._types = Object.create(null); - this._extensions = Object.create(null); +var uri = function uri(strings) { + var parts = [strings[0]]; - for (let i = 0; i < arguments.length; i++) { - this.define(arguments[i]); + for (var i = 0; i < (arguments.length <= 1 ? 0 : arguments.length - 1); i++) { + parts.push(encodeURIComponent(i + 1 < 1 || arguments.length <= i + 1 ? undefined : arguments[i + 1]) + strings[i + 1]); } - this.define = this.define.bind(this); - this.getType = this.getType.bind(this); - this.getExtension = this.getExtension.bind(this); -} - + return parts.join(''); +}; /** - * Define mimetype -> extension mappings. Each key is a mime-type that maps - * to an array of extensions associated with the type. The first extension is - * used as the default extension for the type. - * - * e.g. mime.define({'audio/ogg', ['oga', 'ogg', 'spx']}); - * - * If a type declares an extension that has already been defined, an error will - * be thrown. To suppress this error and force the extension to be associated - * with the new type, pass `force`=true. Alternatively, you may prefix the - * extension with "*" to map the type to extension, without mapping the - * extension to the type. + * @function + * @description Helps to avoid nested try/catch when using async/await * - * e.g. mime.define({'audio/wav', ['wav']}, {'audio/x-wav', ['*wav']}); + * Inspired by a Go pattern: http://blog.grossman.io/how-to-write-async-await-without-try-catch-blocks-in-javascript/ * + * @example + * ``` + * if (await attempt(collection.all()) return + * await sleep(1000) + * if (await attempt(collection.all()) return + * await sleep(1000) + * return + * ``` * - * @param map (Object) type definitions - * @param force (Boolean) if true, force overriding of existing definitions + * @private */ -Mime.prototype.define = function(typeMap, force) { - for (let type in typeMap) { - let extensions = typeMap[type].map(function(t) { - return t.toLowerCase(); - }); - type = type.toLowerCase(); - - for (let i = 0; i < extensions.length; i++) { - const ext = extensions[i]; - - // '*' prefix = not the preferred type for this extension. So fixup the - // extension, and skip it. - if (ext[0] === '*') { - continue; - } - if (!force && (ext in this._types)) { - throw new Error( - 'Attempt to change mapping for "' + ext + - '" extension from "' + this._types[ext] + '" to "' + type + - '". Pass `force=true` to allow this, otherwise remove "' + ext + - '" from the list of extensions for "' + type + '".' - ); - } - this._types[ext] = type; - } +exports.uri = uri; - // Use first extension as default - if (force || !this._extensions[type]) { - const ext = extensions[0]; - this._extensions[type] = (ext[0] !== '*') ? ext : ext.substr(1); - } - } +var attempt = function attempt(promise) { + return promise.then(function () { + return true; + }).catch(function () { + return false; + }); }; - /** - * Lookup a mime type based on extension + * @function + * @description Helps to avoid nested try/catch when using async/await — see documentation for attempt + * @private */ -Mime.prototype.getType = function(path) { - path = String(path); - let last = path.replace(/^.*[/\\]/, '').toLowerCase(); - let ext = last.replace(/^.*\./, '').toLowerCase(); - let hasPath = last.length < path.length; - let hasDot = ext.length < last.length - 1; - return (hasDot || !hasPath) && this._types[ext] || null; -}; +exports.attempt = attempt; -/** - * Return file extension associated with a mime type - */ -Mime.prototype.getExtension = function(type) { - type = /^\s*([^;\s]*)/.test(type) && RegExp.$1; - return type && this._extensions[type.toLowerCase()] || null; +var sleep = function sleep(time, args) { + return new Promise(function (resolve) { + setTimeout(resolve, time, args); + }); }; -module.exports = Mime; +exports.sleep = sleep; + +var slugify = function slugify(text) { + return text.toString().toLowerCase().replace(/\s+/g, '-') // Replace spaces with - + .replace(/[^\w-]+/g, '') // Remove all non-word chars + .replace(/--+/g, '-') // Replace multiple - with single - + .replace(/^-+/, '') // Trim - from start of text + .replace(/-+$/, ''); +}; // Trim - from end of text -/***/ }), -/* 668 */ -/***/ (function(module, exports) { +exports.slugify = slugify; -module.exports = {"application/andrew-inset":["ez"],"application/applixware":["aw"],"application/atom+xml":["atom"],"application/atomcat+xml":["atomcat"],"application/atomdeleted+xml":["atomdeleted"],"application/atomsvc+xml":["atomsvc"],"application/atsc-dwd+xml":["dwd"],"application/atsc-held+xml":["held"],"application/atsc-rsat+xml":["rsat"],"application/bdoc":["bdoc"],"application/calendar+xml":["xcs"],"application/ccxml+xml":["ccxml"],"application/cdfx+xml":["cdfx"],"application/cdmi-capability":["cdmia"],"application/cdmi-container":["cdmic"],"application/cdmi-domain":["cdmid"],"application/cdmi-object":["cdmio"],"application/cdmi-queue":["cdmiq"],"application/cu-seeme":["cu"],"application/dash+xml":["mpd"],"application/davmount+xml":["davmount"],"application/docbook+xml":["dbk"],"application/dssc+der":["dssc"],"application/dssc+xml":["xdssc"],"application/ecmascript":["ecma","es"],"application/emma+xml":["emma"],"application/emotionml+xml":["emotionml"],"application/epub+zip":["epub"],"application/exi":["exi"],"application/fdt+xml":["fdt"],"application/font-tdpfr":["pfr"],"application/geo+json":["geojson"],"application/gml+xml":["gml"],"application/gpx+xml":["gpx"],"application/gxf":["gxf"],"application/gzip":["gz"],"application/hjson":["hjson"],"application/hyperstudio":["stk"],"application/inkml+xml":["ink","inkml"],"application/ipfix":["ipfix"],"application/its+xml":["its"],"application/java-archive":["jar","war","ear"],"application/java-serialized-object":["ser"],"application/java-vm":["class"],"application/javascript":["js","mjs"],"application/json":["json","map"],"application/json5":["json5"],"application/jsonml+json":["jsonml"],"application/ld+json":["jsonld"],"application/lgr+xml":["lgr"],"application/lost+xml":["lostxml"],"application/mac-binhex40":["hqx"],"application/mac-compactpro":["cpt"],"application/mads+xml":["mads"],"application/manifest+json":["webmanifest"],"application/marc":["mrc"],"application/marcxml+xml":["mrcx"],"application/mathematica":["ma","nb","mb"],"application/mathml+xml":["mathml"],"application/mbox":["mbox"],"application/mediaservercontrol+xml":["mscml"],"application/metalink+xml":["metalink"],"application/metalink4+xml":["meta4"],"application/mets+xml":["mets"],"application/mmt-aei+xml":["maei"],"application/mmt-usd+xml":["musd"],"application/mods+xml":["mods"],"application/mp21":["m21","mp21"],"application/mp4":["mp4s","m4p"],"application/mrb-consumer+xml":["*xdf"],"application/mrb-publish+xml":["*xdf"],"application/msword":["doc","dot"],"application/mxf":["mxf"],"application/n-quads":["nq"],"application/n-triples":["nt"],"application/node":["cjs"],"application/octet-stream":["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"],"application/oda":["oda"],"application/oebps-package+xml":["opf"],"application/ogg":["ogx"],"application/omdoc+xml":["omdoc"],"application/onenote":["onetoc","onetoc2","onetmp","onepkg"],"application/oxps":["oxps"],"application/p2p-overlay+xml":["relo"],"application/patch-ops-error+xml":["*xer"],"application/pdf":["pdf"],"application/pgp-encrypted":["pgp"],"application/pgp-signature":["asc","sig"],"application/pics-rules":["prf"],"application/pkcs10":["p10"],"application/pkcs7-mime":["p7m","p7c"],"application/pkcs7-signature":["p7s"],"application/pkcs8":["p8"],"application/pkix-attr-cert":["ac"],"application/pkix-cert":["cer"],"application/pkix-crl":["crl"],"application/pkix-pkipath":["pkipath"],"application/pkixcmp":["pki"],"application/pls+xml":["pls"],"application/postscript":["ai","eps","ps"],"application/provenance+xml":["provx"],"application/pskc+xml":["pskcxml"],"application/raml+yaml":["raml"],"application/rdf+xml":["rdf","owl"],"application/reginfo+xml":["rif"],"application/relax-ng-compact-syntax":["rnc"],"application/resource-lists+xml":["rl"],"application/resource-lists-diff+xml":["rld"],"application/rls-services+xml":["rs"],"application/route-apd+xml":["rapd"],"application/route-s-tsid+xml":["sls"],"application/route-usd+xml":["rusd"],"application/rpki-ghostbusters":["gbr"],"application/rpki-manifest":["mft"],"application/rpki-roa":["roa"],"application/rsd+xml":["rsd"],"application/rss+xml":["rss"],"application/rtf":["rtf"],"application/sbml+xml":["sbml"],"application/scvp-cv-request":["scq"],"application/scvp-cv-response":["scs"],"application/scvp-vp-request":["spq"],"application/scvp-vp-response":["spp"],"application/sdp":["sdp"],"application/senml+xml":["senmlx"],"application/sensml+xml":["sensmlx"],"application/set-payment-initiation":["setpay"],"application/set-registration-initiation":["setreg"],"application/shf+xml":["shf"],"application/sieve":["siv","sieve"],"application/smil+xml":["smi","smil"],"application/sparql-query":["rq"],"application/sparql-results+xml":["srx"],"application/srgs":["gram"],"application/srgs+xml":["grxml"],"application/sru+xml":["sru"],"application/ssdl+xml":["ssdl"],"application/ssml+xml":["ssml"],"application/swid+xml":["swidtag"],"application/tei+xml":["tei","teicorpus"],"application/thraud+xml":["tfi"],"application/timestamped-data":["tsd"],"application/toml":["toml"],"application/ttml+xml":["ttml"],"application/ubjson":["ubj"],"application/urc-ressheet+xml":["rsheet"],"application/urc-targetdesc+xml":["td"],"application/voicexml+xml":["vxml"],"application/wasm":["wasm"],"application/widget":["wgt"],"application/winhlp":["hlp"],"application/wsdl+xml":["wsdl"],"application/wspolicy+xml":["wspolicy"],"application/xaml+xml":["xaml"],"application/xcap-att+xml":["xav"],"application/xcap-caps+xml":["xca"],"application/xcap-diff+xml":["xdf"],"application/xcap-el+xml":["xel"],"application/xcap-error+xml":["xer"],"application/xcap-ns+xml":["xns"],"application/xenc+xml":["xenc"],"application/xhtml+xml":["xhtml","xht"],"application/xliff+xml":["xlf"],"application/xml":["xml","xsl","xsd","rng"],"application/xml-dtd":["dtd"],"application/xop+xml":["xop"],"application/xproc+xml":["xpl"],"application/xslt+xml":["*xsl","xslt"],"application/xspf+xml":["xspf"],"application/xv+xml":["mxml","xhvml","xvml","xvm"],"application/yang":["yang"],"application/yin+xml":["yin"],"application/zip":["zip"],"audio/3gpp":["*3gpp"],"audio/adpcm":["adp"],"audio/amr":["amr"],"audio/basic":["au","snd"],"audio/midi":["mid","midi","kar","rmi"],"audio/mobile-xmf":["mxmf"],"audio/mp3":["*mp3"],"audio/mp4":["m4a","mp4a"],"audio/mpeg":["mpga","mp2","mp2a","mp3","m2a","m3a"],"audio/ogg":["oga","ogg","spx","opus"],"audio/s3m":["s3m"],"audio/silk":["sil"],"audio/wav":["wav"],"audio/wave":["*wav"],"audio/webm":["weba"],"audio/xm":["xm"],"font/collection":["ttc"],"font/otf":["otf"],"font/ttf":["ttf"],"font/woff":["woff"],"font/woff2":["woff2"],"image/aces":["exr"],"image/apng":["apng"],"image/avif":["avif"],"image/bmp":["bmp"],"image/cgm":["cgm"],"image/dicom-rle":["drle"],"image/emf":["emf"],"image/fits":["fits"],"image/g3fax":["g3"],"image/gif":["gif"],"image/heic":["heic"],"image/heic-sequence":["heics"],"image/heif":["heif"],"image/heif-sequence":["heifs"],"image/hej2k":["hej2"],"image/hsj2":["hsj2"],"image/ief":["ief"],"image/jls":["jls"],"image/jp2":["jp2","jpg2"],"image/jpeg":["jpeg","jpg","jpe"],"image/jph":["jph"],"image/jphc":["jhc"],"image/jpm":["jpm"],"image/jpx":["jpx","jpf"],"image/jxr":["jxr"],"image/jxra":["jxra"],"image/jxrs":["jxrs"],"image/jxs":["jxs"],"image/jxsc":["jxsc"],"image/jxsi":["jxsi"],"image/jxss":["jxss"],"image/ktx":["ktx"],"image/ktx2":["ktx2"],"image/png":["png"],"image/sgi":["sgi"],"image/svg+xml":["svg","svgz"],"image/t38":["t38"],"image/tiff":["tif","tiff"],"image/tiff-fx":["tfx"],"image/webp":["webp"],"image/wmf":["wmf"],"message/disposition-notification":["disposition-notification"],"message/global":["u8msg"],"message/global-delivery-status":["u8dsn"],"message/global-disposition-notification":["u8mdn"],"message/global-headers":["u8hdr"],"message/rfc822":["eml","mime"],"model/3mf":["3mf"],"model/gltf+json":["gltf"],"model/gltf-binary":["glb"],"model/iges":["igs","iges"],"model/mesh":["msh","mesh","silo"],"model/mtl":["mtl"],"model/obj":["obj"],"model/stl":["stl"],"model/vrml":["wrl","vrml"],"model/x3d+binary":["*x3db","x3dbz"],"model/x3d+fastinfoset":["x3db"],"model/x3d+vrml":["*x3dv","x3dvz"],"model/x3d+xml":["x3d","x3dz"],"model/x3d-vrml":["x3dv"],"text/cache-manifest":["appcache","manifest"],"text/calendar":["ics","ifb"],"text/coffeescript":["coffee","litcoffee"],"text/css":["css"],"text/csv":["csv"],"text/html":["html","htm","shtml"],"text/jade":["jade"],"text/jsx":["jsx"],"text/less":["less"],"text/markdown":["markdown","md"],"text/mathml":["mml"],"text/mdx":["mdx"],"text/n3":["n3"],"text/plain":["txt","text","conf","def","list","log","in","ini"],"text/richtext":["rtx"],"text/rtf":["*rtf"],"text/sgml":["sgml","sgm"],"text/shex":["shex"],"text/slim":["slim","slm"],"text/spdx":["spdx"],"text/stylus":["stylus","styl"],"text/tab-separated-values":["tsv"],"text/troff":["t","tr","roff","man","me","ms"],"text/turtle":["ttl"],"text/uri-list":["uri","uris","urls"],"text/vcard":["vcard"],"text/vtt":["vtt"],"text/xml":["*xml"],"text/yaml":["yaml","yml"],"video/3gpp":["3gp","3gpp"],"video/3gpp2":["3g2"],"video/h261":["h261"],"video/h263":["h263"],"video/h264":["h264"],"video/iso.segment":["m4s"],"video/jpeg":["jpgv"],"video/jpm":["*jpm","jpgm"],"video/mj2":["mj2","mjp2"],"video/mp2t":["ts"],"video/mp4":["mp4","mp4v","mpg4"],"video/mpeg":["mpeg","mpg","mpe","m1v","m2v"],"video/ogg":["ogv"],"video/quicktime":["qt","mov"],"video/webm":["webm"]}; +var forceFileDownload = function forceFileDownload(href, filename) { + var element = document.createElement('a'); + element.setAttribute('href', href); + element.setAttribute('download', filename); + element.style.display = 'none'; + document.body.appendChild(element); + element.click(); + document.body.removeChild(element); +}; + +exports.forceFileDownload = forceFileDownload; + +var formatBytes = function formatBytes(bytes) { + var decimals = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 2; + if (bytes === 0) return '0 Bytes'; + var k = 1024; + var dm = decimals < 0 ? 0 : decimals; + var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; + var i = Math.floor(Math.log(bytes) / Math.log(k)); + return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i]; +}; + +exports.formatBytes = formatBytes; /***/ }), -/* 669 */ +/* 689 */ /***/ (function(module, exports, __webpack_require__) { -var baseHas = __webpack_require__(670), - hasPath = __webpack_require__(470); +var arrayEach = __webpack_require__(569), + baseCreate = __webpack_require__(594), + baseForOwn = __webpack_require__(642), + baseIteratee = __webpack_require__(415), + getPrototype = __webpack_require__(584), + isArray = __webpack_require__(75), + isBuffer = __webpack_require__(448), + isFunction = __webpack_require__(65), + isObject = __webpack_require__(72), + isTypedArray = __webpack_require__(451); /** - * Checks if `path` is a direct property of `object`. + * An alternative to `_.reduce`; this method transforms `object` to a new + * `accumulator` object which is the result of running each of its own + * enumerable string keyed properties thru `iteratee`, with each invocation + * potentially mutating the `accumulator` object. If `accumulator` is not + * provided, a new object with the same `[[Prototype]]` will be used. The + * iteratee is invoked with four arguments: (accumulator, value, key, object). + * Iteratee functions may exit iteration early by explicitly returning `false`. * * @static - * @since 0.1.0 * @memberOf _ + * @since 1.3.0 * @category Object - * @param {Object} object The object to query. - * @param {Array|string} path The path to check. - * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The custom accumulator value. + * @returns {*} Returns the accumulated value. * @example * - * var object = { 'a': { 'b': 2 } }; - * var other = _.create({ 'a': _.create({ 'b': 2 }) }); - * - * _.has(object, 'a'); - * // => true - * - * _.has(object, 'a.b'); - * // => true - * - * _.has(object, ['a', 'b']); - * // => true + * _.transform([2, 3, 4], function(result, n) { + * result.push(n *= n); + * return n % 2 == 0; + * }, []); + * // => [4, 9] * - * _.has(other, 'a'); - * // => false + * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } */ -function has(object, path) { - return object != null && hasPath(object, path, baseHas); +function transform(object, iteratee, accumulator) { + var isArr = isArray(object), + isArrLike = isArr || isBuffer(object) || isTypedArray(object); + + iteratee = baseIteratee(iteratee, 4); + if (accumulator == null) { + var Ctor = object && object.constructor; + if (isArrLike) { + accumulator = isArr ? new Ctor : []; + } + else if (isObject(object)) { + accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {}; + } + else { + accumulator = {}; + } + } + (isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object) { + return iteratee(accumulator, value, index, object); + }); + return accumulator; } -module.exports = has; +module.exports = transform; /***/ }), -/* 670 */ +/* 690 */ /***/ (function(module, exports) { -/** Used for built-in method references. */ -var objectProto = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty = objectProto.hasOwnProperty; - /** - * The base implementation of `_.has` without support for deep paths. + * Gets the first element of `array`. * - * @private - * @param {Object} [object] The object to query. - * @param {Array|string} key The key to check. - * @returns {boolean} Returns `true` if `key` exists, else `false`. + * @static + * @memberOf _ + * @since 0.1.0 + * @alias first + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the first element of `array`. + * @example + * + * _.head([1, 2, 3]); + * // => 1 + * + * _.head([]); + * // => undefined */ -function baseHas(object, key) { - return object != null && hasOwnProperty.call(object, key); +function head(array) { + return (array && array.length) ? array[0] : undefined; } -module.exports = baseHas; +module.exports = head; /***/ }), -/* 671 */ +/* 691 */ /***/ (function(module, exports, __webpack_require__) { -var basePick = __webpack_require__(672), - flatRest = __webpack_require__(638); +var baseClamp = __webpack_require__(692), + baseToString = __webpack_require__(411), + toInteger = __webpack_require__(693), + toString = __webpack_require__(410); /** - * Creates an object composed of the picked `object` properties. + * Checks if `string` starts with the given target string. * * @static - * @since 0.1.0 * @memberOf _ - * @category Object - * @param {Object} object The source object. - * @param {...(string|string[])} [paths] The property paths to pick. - * @returns {Object} Returns the new object. + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=0] The position to search from. + * @returns {boolean} Returns `true` if `string` starts with `target`, + * else `false`. * @example * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * _.startsWith('abc', 'a'); + * // => true * - * _.pick(object, ['a', 'c']); - * // => { 'a': 1, 'c': 3 } + * _.startsWith('abc', 'b'); + * // => false + * + * _.startsWith('abc', 'b', 1); + * // => true */ -var pick = flatRest(function(object, paths) { - return object == null ? {} : basePick(object, paths); -}); +function startsWith(string, target, position) { + string = toString(string); + position = position == null + ? 0 + : baseClamp(toInteger(position), 0, string.length); -module.exports = pick; + target = baseToString(target); + return string.slice(position, position + target.length) == target; +} +module.exports = startsWith; -/***/ }), -/* 672 */ -/***/ (function(module, exports, __webpack_require__) { -var basePickBy = __webpack_require__(656), - hasIn = __webpack_require__(468); +/***/ }), +/* 692 */ +/***/ (function(module, exports) { /** - * The base implementation of `_.pick` without support for individual - * property identifiers. + * The base implementation of `_.clamp` which doesn't coerce arguments. * * @private - * @param {Object} object The source object. - * @param {string[]} paths The property paths to pick. - * @returns {Object} Returns the new object. + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. */ -function basePick(object, paths) { - return basePickBy(object, paths, function(value, path) { - return hasIn(object, path); - }); +function baseClamp(number, lower, upper) { + if (number === number) { + if (upper !== undefined) { + number = number <= upper ? number : upper; + } + if (lower !== undefined) { + number = number >= lower ? number : lower; + } + } + return number; } -module.exports = basePick; +module.exports = baseClamp; /***/ }), -/* 673 */ +/* 693 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.hasJobFinished = exports.normalizeJob = exports.JOBS_DOCTYPE = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); +var toFinite = __webpack_require__(694); -var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(620)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); - -var _Collection = _interopRequireDefault(__webpack_require__(618)); - -var _DocumentCollection = __webpack_require__(619); - -var _utils = __webpack_require__(629); - -function _templateObject() { - var data = (0, _taggedTemplateLiteral2.default)(["/jobs/", ""]); - - _templateObject = function _templateObject() { - return data; - }; +/** + * Converts `value` to an integer. + * + * **Note:** This method is loosely based on + * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toInteger(3.2); + * // => 3 + * + * _.toInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toInteger(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toInteger('3.2'); + * // => 3 + */ +function toInteger(value) { + var result = toFinite(value), + remainder = result % 1; - return data; + return result === result ? (remainder ? result - remainder : result) : 0; } -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +module.exports = toInteger; -var JOBS_DOCTYPE = 'io.cozy.jobs'; -exports.JOBS_DOCTYPE = JOBS_DOCTYPE; -var sleep = function sleep(delay) { - return new Promise(function (resolve) { - return setTimeout(resolve, delay); - }); -}; +/***/ }), +/* 694 */ +/***/ (function(module, exports, __webpack_require__) { -var normalizeJob = function normalizeJob(job) { - return _objectSpread(_objectSpread(_objectSpread({}, job), (0, _DocumentCollection.normalizeDoc)(job, JOBS_DOCTYPE)), job.attributes); -}; +var toNumber = __webpack_require__(695); -exports.normalizeJob = normalizeJob; +/** Used as references for various `Number` constants. */ +var INFINITY = 1 / 0, + MAX_INTEGER = 1.7976931348623157e+308; -var hasJobFinished = function hasJobFinished(job) { - return job.state === 'done' || job.state === 'errored'; -}; /** - * Document representing a io.cozy.jobs + * Converts `value` to a finite number. + * + * @static + * @memberOf _ + * @since 4.12.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted number. + * @example + * + * _.toFinite(3.2); + * // => 3.2 + * + * _.toFinite(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toFinite(Infinity); + * // => 1.7976931348623157e+308 * - * @typedef {object} JobDocument - * @property {string} _id - Id of the job - * @property {string} attributes.state - state of the job. Can be 'errored', 'running', 'queued', 'done' - * @property {string} attributes.error - Error message of the job if any + * _.toFinite('3.2'); + * // => 3.2 */ - - -exports.hasJobFinished = hasJobFinished; - -var JobCollection = /*#__PURE__*/function () { - function JobCollection(stackClient) { - (0, _classCallCheck2.default)(this, JobCollection); - this.stackClient = stackClient; +function toFinite(value) { + if (!value) { + return value === 0 ? value : 0; } + value = toNumber(value); + if (value === INFINITY || value === -INFINITY) { + var sign = (value < 0 ? -1 : 1); + return sign * MAX_INTEGER; + } + return value === value ? value : 0; +} - (0, _createClass2.default)(JobCollection, [{ - key: "queued", - value: function queued(workerType) { - return this.stackClient.fetchJSON('GET', "/jobs/queue/".concat(workerType)); - } - /** - * Creates a job - * - * @param {string} workerType - Ex: "konnector" - * @param {object} args - Ex: {"slug": "my-konnector", "trigger": "trigger-id"} - * @param {object} options - creation options - * @returns {object} createdJob - */ - - }, { - key: "create", - value: function create(workerType, args, options) { - return this.stackClient.fetchJSON('POST', "/jobs/queue/".concat(workerType), { - data: { - type: JOBS_DOCTYPE, - attributes: { - arguments: args || {}, - options: options || {} - } - } - }); - } - /** - * Return a normalized job, given its id - * - * @param {string} id - id of the job - * - * @returns {JobDocument} - */ - - }, { - key: "get", - value: function () { - var _get = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(id) { - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - return _context.abrupt("return", _Collection.default.get(this.stackClient, (0, _utils.uri)(_templateObject(), id), { - normalize: normalizeJob - })); - - case 1: - case "end": - return _context.stop(); - } - } - }, _callee, this); - })); - - function get(_x) { - return _get.apply(this, arguments); - } - - return get; - }() - /** - * Update the job's state - * This does work only for jobs comming from @client triggers - * - * @param {JobDocument} job - io.cozy.jobs document - */ - - }, { - key: "update", - value: function () { - var _update = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(job) { - var jobResult; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - if (!(job.worker !== 'client')) { - _context2.next = 2; - break; - } - - throw new Error("JobCollection.update only works for client workers. ".concat(job.worker, " given")); - - case 2: - _context2.next = 4; - return this.stackClient.fetchJSON('PATCH', "/jobs/".concat(job._id), { - data: { - type: JOBS_DOCTYPE, - id: job._id, - attributes: { - state: job.attributes.state, - error: job.attributes.error - } - } - }); - - case 4: - jobResult = _context2.sent; - return _context2.abrupt("return", normalizeJob(jobResult.data)); - - case 6: - case "end": - return _context2.stop(); - } - } - }, _callee2, this); - })); - - function update(_x2) { - return _update.apply(this, arguments); - } - - return update; - }() - /** - * Polls a job state until it is finished - * - * `options.until` can be used to tweak when to stop waiting. It will be - * given the current job state. If true is returned, the awaiting is - * stopped. - */ - - }, { - key: "waitFor", - value: function () { - var _waitFor = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(id) { - var _ref, - _ref$onUpdate, - onUpdate, - _ref$until, - until, - _ref$delay, - delay, - _ref$timeout, - timeout, - start, - jobData, - now, - _args3 = arguments; - - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - _ref = _args3.length > 1 && _args3[1] !== undefined ? _args3[1] : {}, _ref$onUpdate = _ref.onUpdate, onUpdate = _ref$onUpdate === void 0 ? null : _ref$onUpdate, _ref$until = _ref.until, until = _ref$until === void 0 ? hasJobFinished : _ref$until, _ref$delay = _ref.delay, delay = _ref$delay === void 0 ? 5 * 1000 : _ref$delay, _ref$timeout = _ref.timeout, timeout = _ref$timeout === void 0 ? 60 * 5 * 1000 : _ref$timeout; - start = Date.now(); - _context3.next = 4; - return this.get(id); - - case 4: - jobData = _context3.sent.data.attributes; - - case 5: - if (!(!jobData || !until(jobData))) { - _context3.next = 17; - break; - } - - _context3.next = 8; - return sleep(delay); - - case 8: - _context3.next = 10; - return this.get(id); - - case 10: - jobData = _context3.sent.data.attributes; - - if (onUpdate) { - onUpdate(jobData); - } - - now = Date.now(); - - if (!(start - now > timeout)) { - _context3.next = 15; - break; - } - - throw new Error('Timeout for JobCollection::waitFor'); - - case 15: - _context3.next = 5; - break; - - case 17: - return _context3.abrupt("return", jobData); - - case 18: - case "end": - return _context3.stop(); - } - } - }, _callee3, this); - })); - - function waitFor(_x3) { - return _waitFor.apply(this, arguments); - } - - return waitFor; - }() - }]); - return JobCollection; -}(); +module.exports = toFinite; -var _default = JobCollection; -exports.default = _default; /***/ }), -/* 674 */ +/* 695 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - - -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.KONNECTORS_DOCTYPE = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); - -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); - -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); - -var _pick = _interopRequireDefault(__webpack_require__(671)); - -var _AppCollection2 = _interopRequireDefault(__webpack_require__(608)); - -var _TriggerCollection = _interopRequireWildcard(__webpack_require__(675)); - -var _DocumentCollection = __webpack_require__(619); - -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +var baseTrim = __webpack_require__(696), + isObject = __webpack_require__(72), + isSymbol = __webpack_require__(376); -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +/** Used as references for various `Number` constants. */ +var NAN = 0 / 0; -var KONNECTORS_DOCTYPE = 'io.cozy.konnectors'; -exports.KONNECTORS_DOCTYPE = KONNECTORS_DOCTYPE; +/** Used to detect bad signed hexadecimal string values. */ +var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; -var KonnectorCollection = /*#__PURE__*/function (_AppCollection) { - (0, _inherits2.default)(KonnectorCollection, _AppCollection); +/** Used to detect binary string values. */ +var reIsBinary = /^0b[01]+$/i; - var _super = _createSuper(KonnectorCollection); +/** Used to detect octal string values. */ +var reIsOctal = /^0o[0-7]+$/i; - function KonnectorCollection(stackClient) { - var _this; +/** Built-in method references without a dependency on `root`. */ +var freeParseInt = parseInt; - (0, _classCallCheck2.default)(this, KonnectorCollection); - _this = _super.call(this, stackClient); - _this.doctype = KONNECTORS_DOCTYPE; - _this.endpoint = '/konnectors/'; - return _this; +/** + * Converts `value` to a number. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to process. + * @returns {number} Returns the number. + * @example + * + * _.toNumber(3.2); + * // => 3.2 + * + * _.toNumber(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toNumber(Infinity); + * // => Infinity + * + * _.toNumber('3.2'); + * // => 3.2 + */ +function toNumber(value) { + if (typeof value == 'number') { + return value; } + if (isSymbol(value)) { + return NAN; + } + if (isObject(value)) { + var other = typeof value.valueOf == 'function' ? value.valueOf() : value; + value = isObject(other) ? (other + '') : other; + } + if (typeof value != 'string') { + return value === 0 ? value : +value; + } + value = baseTrim(value); + var isBinary = reIsBinary.test(value); + return (isBinary || reIsOctal.test(value)) + ? freeParseInt(value.slice(2), isBinary ? 2 : 8) + : (reIsBadHex.test(value) ? NAN : +value); +} - (0, _createClass2.default)(KonnectorCollection, [{ - key: "create", - value: function () { - var _create = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() { - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - throw new Error('create() method is not available for konnectors'); - - case 1: - case "end": - return _context.stop(); - } - } - }, _callee); - })); - - function create() { - return _create.apply(this, arguments); - } - - return create; - }() - }, { - key: "destroy", - value: function () { - var _destroy = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() { - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - throw new Error('destroy() method is not available for konnectors'); - - case 1: - case "end": - return _context2.stop(); - } - } - }, _callee2); - })); - - function destroy() { - return _destroy.apply(this, arguments); - } - - return destroy; - }() - /** - * Find triggers for a particular konnector - * - * @param {string} slug of the konnector - */ - - }, { - key: "findTriggersBySlug", - value: function () { - var _findTriggersBySlug = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(slug) { - var triggerCol, _yield$triggerCol$all, rawTriggers; - - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - triggerCol = new _TriggerCollection.default(this.stackClient); - _context3.next = 3; - return triggerCol.all({ - limit: null - }); - - case 3: - _yield$triggerCol$all = _context3.sent; - rawTriggers = _yield$triggerCol$all.data; - return _context3.abrupt("return", rawTriggers.map(function (x) { - return x.attributes; - }).filter(function (triggerAttrs) { - return (0, _TriggerCollection.isForKonnector)(triggerAttrs, slug); - })); - - case 6: - case "end": - return _context3.stop(); - } - } - }, _callee3, this); - })); - - function findTriggersBySlug(_x) { - return _findTriggersBySlug.apply(this, arguments); - } - - return findTriggersBySlug; - }() - /** - * Launch a trigger for a given konnector. - * - * @param {string} slug - * @param {object} options - * @param {object} options.accountId - Pinpoint the account that should be used, useful if the user - * has more than 1 account for 1 konnector - */ - - }, { - key: "launch", - value: function () { - var _launch = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(slug) { - var options, - triggerCol, - konnTriggers, - filteredTriggers, - filterAttrs, - _args4 = arguments; - return _regenerator.default.wrap(function _callee4$(_context4) { - while (1) { - switch (_context4.prev = _context4.next) { - case 0: - options = _args4.length > 1 && _args4[1] !== undefined ? _args4[1] : {}; - triggerCol = new _TriggerCollection.default(this.stackClient); - _context4.next = 4; - return this.findTriggersBySlug(slug); - - case 4: - konnTriggers = _context4.sent; - filteredTriggers = options.accountId ? konnTriggers.filter(function (triggerAttrs) { - return (0, _TriggerCollection.isForAccount)(triggerAttrs, options.accountId); - }) : konnTriggers; +module.exports = toNumber; - if (!(filteredTriggers.length === 1)) { - _context4.next = 10; - break; - } - return _context4.abrupt("return", triggerCol.launch(konnTriggers[0])); +/***/ }), +/* 696 */ +/***/ (function(module, exports, __webpack_require__) { - case 10: - filterAttrs = JSON.stringify((0, _pick.default)({ - slug: slug, - accountId: options.accountId - })); +var trimmedEndIndex = __webpack_require__(697); - if (!(filteredTriggers.length === 0)) { - _context4.next = 15; - break; - } +/** Used to match leading whitespace. */ +var reTrimStart = /^\s+/; - throw new Error("No trigger found for ".concat(filterAttrs)); +/** + * The base implementation of `_.trim`. + * + * @private + * @param {string} string The string to trim. + * @returns {string} Returns the trimmed string. + */ +function baseTrim(string) { + return string + ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '') + : string; +} - case 15: - if (!(filteredTriggers.length > 1)) { - _context4.next = 17; - break; - } +module.exports = baseTrim; - throw new Error("More than 1 trigger found for ".concat(filterAttrs)); - case 17: - case "end": - return _context4.stop(); - } - } - }, _callee4, this); - })); +/***/ }), +/* 697 */ +/***/ (function(module, exports) { - function launch(_x2) { - return _launch.apply(this, arguments); - } +/** Used to match a single whitespace character. */ +var reWhitespace = /\s/; - return launch; - }() - /** - * Updates a konnector - * - * @param {string} slug - * @param {object} options - * @param {object} options.source - Specify the source (ex: registry://slug/stable) - * @param {boolean} options.sync - Wait for konnector to be updated, otherwise the job - * is just scheduled - */ +/** + * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace + * character of `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the index of the last non-whitespace character. + */ +function trimmedEndIndex(string) { + var index = string.length; - }, { - key: "update", - value: function () { - var _update = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(slug) { - var options, - source, - sync, - reqOptions, - rawKonnector, - _args5 = arguments; - return _regenerator.default.wrap(function _callee5$(_context5) { - while (1) { - switch (_context5.prev = _context5.next) { - case 0: - options = _args5.length > 1 && _args5[1] !== undefined ? _args5[1] : {}; + while (index-- && reWhitespace.test(string.charAt(index))) {} + return index; +} - if (slug) { - _context5.next = 3; - break; - } +module.exports = trimmedEndIndex; - throw new Error('Cannot call update with no slug'); - case 3: - source = options.source || null; - sync = options.sync || false; - reqOptions = sync ? { - headers: { - Accept: 'text/event-stream' - } - } : {}; - _context5.next = 8; - return this.stackClient.fetchJSON('PUT', "/konnectors/".concat(slug) + (source ? "?Source=".concat(source) : ''), reqOptions); +/***/ }), +/* 698 */ +/***/ (function(module, exports, __webpack_require__) { - case 8: - rawKonnector = _context5.sent; - return _context5.abrupt("return", (0, _DocumentCollection.normalizeDoc)(rawKonnector)); +"use strict"; - case 10: - case "end": - return _context5.stop(); - } - } - }, _callee5, this); - })); - function update(_x3) { - return _update.apply(this, arguments); - } +var stringify = __webpack_require__(699); +var parse = __webpack_require__(702); +var formats = __webpack_require__(701); - return update; - }() - }]); - return KonnectorCollection; -}(_AppCollection2.default); +module.exports = { + formats: formats, + parse: parse, + stringify: stringify +}; -var _default = KonnectorCollection; -exports.default = _default; /***/ }), -/* 675 */ +/* 699 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); +var utils = __webpack_require__(700); +var formats = __webpack_require__(701); +var has = Object.prototype.hasOwnProperty; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.isForAccount = exports.isForKonnector = exports.normalizeTrigger = exports.TRIGGERS_DOCTYPE = exports.JOBS_DOCTYPE = void 0; +var arrayPrefixGenerators = { + brackets: function brackets(prefix) { + return prefix + '[]'; + }, + comma: 'comma', + indices: function indices(prefix, key) { + return prefix + '[' + key + ']'; + }, + repeat: function repeat(prefix) { + return prefix; + } +}; -var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(543)); +var isArray = Array.isArray; +var push = Array.prototype.push; +var pushToArray = function (arr, valueOrArray) { + push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]); +}; -var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(620)); +var toISO = Date.prototype.toISOString; -var _regenerator = _interopRequireDefault(__webpack_require__(545)); +var defaultFormat = formats['default']; +var defaults = { + addQueryPrefix: false, + allowDots: false, + charset: 'utf-8', + charsetSentinel: false, + delimiter: '&', + encode: true, + encoder: utils.encode, + encodeValuesOnly: false, + format: defaultFormat, + formatter: formats.formatters[defaultFormat], + // deprecated + indices: false, + serializeDate: function serializeDate(date) { + return toISO.call(date); + }, + skipNulls: false, + strictNullHandling: false +}; -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); +var isNonNullishPrimitive = function isNonNullishPrimitive(v) { + return typeof v === 'string' + || typeof v === 'number' + || typeof v === 'boolean' + || typeof v === 'symbol' + || typeof v === 'bigint'; +}; -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +var stringify = function stringify( + object, + prefix, + generateArrayPrefix, + strictNullHandling, + skipNulls, + encoder, + filter, + sort, + allowDots, + serializeDate, + format, + formatter, + encodeValuesOnly, + charset +) { + var obj = object; + if (typeof filter === 'function') { + obj = filter(prefix, obj); + } else if (obj instanceof Date) { + obj = serializeDate(obj); + } else if (generateArrayPrefix === 'comma' && isArray(obj)) { + obj = utils.maybeMap(obj, function (value) { + if (value instanceof Date) { + return serializeDate(value); + } + return value; + }); + } -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + if (obj === null) { + if (strictNullHandling) { + return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder, charset, 'key', format) : prefix; + } -var _get3 = _interopRequireDefault(__webpack_require__(676)); + obj = ''; + } -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); + if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) { + if (encoder) { + var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format); + return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format))]; + } + return [formatter(prefix) + '=' + formatter(String(obj))]; + } -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); + var values = []; -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); + if (typeof obj === 'undefined') { + return values; + } -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + var objKeys; + if (generateArrayPrefix === 'comma' && isArray(obj)) { + // we need to join elements in + objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : undefined }]; + } else if (isArray(filter)) { + objKeys = filter; + } else { + var keys = Object.keys(obj); + objKeys = sort ? keys.sort(sort) : keys; + } -var _Collection = _interopRequireWildcard(__webpack_require__(618)); + for (var i = 0; i < objKeys.length; ++i) { + var key = objKeys[i]; + var value = typeof key === 'object' && key.value !== undefined ? key.value : obj[key]; -var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(619)); + if (skipNulls && value === null) { + continue; + } -var _JobCollection = __webpack_require__(673); + var keyPrefix = isArray(obj) + ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(prefix, key) : prefix + : prefix + (allowDots ? '.' + key : '[' + key + ']'); -var _utils = __webpack_require__(629); + pushToArray(values, stringify( + value, + keyPrefix, + generateArrayPrefix, + strictNullHandling, + skipNulls, + encoder, + filter, + sort, + allowDots, + serializeDate, + format, + formatter, + encodeValuesOnly, + charset + )); + } -var _errors = __webpack_require__(658); + return values; +}; -function _templateObject4() { - var data = (0, _taggedTemplateLiteral2.default)(["/jobs/triggers/", "/launch"]); +var normalizeStringifyOptions = function normalizeStringifyOptions(opts) { + if (!opts) { + return defaults; + } - _templateObject4 = function _templateObject4() { - return data; - }; + if (opts.encoder !== null && opts.encoder !== undefined && typeof opts.encoder !== 'function') { + throw new TypeError('Encoder has to be a function.'); + } - return data; -} + var charset = opts.charset || defaults.charset; + if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') { + throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined'); + } -function _templateObject3() { - var data = (0, _taggedTemplateLiteral2.default)(["/jobs/triggers/", ""]); + var format = formats['default']; + if (typeof opts.format !== 'undefined') { + if (!has.call(formats.formatters, opts.format)) { + throw new TypeError('Unknown format option provided.'); + } + format = opts.format; + } + var formatter = formats.formatters[format]; - _templateObject3 = function _templateObject3() { - return data; - }; + var filter = defaults.filter; + if (typeof opts.filter === 'function' || isArray(opts.filter)) { + filter = opts.filter; + } - return data; -} + return { + addQueryPrefix: typeof opts.addQueryPrefix === 'boolean' ? opts.addQueryPrefix : defaults.addQueryPrefix, + allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots, + charset: charset, + charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel, + delimiter: typeof opts.delimiter === 'undefined' ? defaults.delimiter : opts.delimiter, + encode: typeof opts.encode === 'boolean' ? opts.encode : defaults.encode, + encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder, + encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly, + filter: filter, + format: format, + formatter: formatter, + serializeDate: typeof opts.serializeDate === 'function' ? opts.serializeDate : defaults.serializeDate, + skipNulls: typeof opts.skipNulls === 'boolean' ? opts.skipNulls : defaults.skipNulls, + sort: typeof opts.sort === 'function' ? opts.sort : null, + strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling + }; +}; -function _templateObject2() { - var data = (0, _taggedTemplateLiteral2.default)(["/jobs/triggers/", ""]); +module.exports = function (object, opts) { + var obj = object; + var options = normalizeStringifyOptions(opts); - _templateObject2 = function _templateObject2() { - return data; - }; + var objKeys; + var filter; - return data; -} + if (typeof options.filter === 'function') { + filter = options.filter; + obj = filter('', obj); + } else if (isArray(options.filter)) { + filter = options.filter; + objKeys = filter; + } -function _templateObject() { - var data = (0, _taggedTemplateLiteral2.default)(["/jobs/triggers"]); + var keys = []; - _templateObject = function _templateObject() { - return data; - }; + if (typeof obj !== 'object' || obj === null) { + return ''; + } - return data; -} + var arrayFormat; + if (opts && opts.arrayFormat in arrayPrefixGenerators) { + arrayFormat = opts.arrayFormat; + } else if (opts && 'indices' in opts) { + arrayFormat = opts.indices ? 'indices' : 'repeat'; + } else { + arrayFormat = 'indices'; + } -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } + var generateArrayPrefix = arrayPrefixGenerators[arrayFormat]; -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + if (!objKeys) { + objKeys = Object.keys(obj); + } -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + if (options.sort) { + objKeys.sort(options.sort); + } -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + for (var i = 0; i < objKeys.length; ++i) { + var key = objKeys[i]; -var JOBS_DOCTYPE = 'io.cozy.jobs'; -exports.JOBS_DOCTYPE = JOBS_DOCTYPE; -var TRIGGERS_DOCTYPE = 'io.cozy.triggers'; -exports.TRIGGERS_DOCTYPE = TRIGGERS_DOCTYPE; + if (options.skipNulls && obj[key] === null) { + continue; + } + pushToArray(keys, stringify( + obj[key], + key, + generateArrayPrefix, + options.strictNullHandling, + options.skipNulls, + options.encode ? options.encoder : null, + options.filter, + options.sort, + options.allowDots, + options.serializeDate, + options.format, + options.formatter, + options.encodeValuesOnly, + options.charset + )); + } -var normalizeTrigger = function normalizeTrigger(trigger) { - return _objectSpread(_objectSpread(_objectSpread({}, trigger), (0, _DocumentCollection2.normalizeDoc)(trigger, TRIGGERS_DOCTYPE)), trigger.attributes); -}; + var joined = keys.join(options.delimiter); + var prefix = options.addQueryPrefix === true ? '?' : ''; -exports.normalizeTrigger = normalizeTrigger; + if (options.charsetSentinel) { + if (options.charset === 'iso-8859-1') { + // encodeURIComponent('✓'), the "numeric entity" representation of a checkmark + prefix += 'utf8=%26%2310003%3B&'; + } else { + // encodeURIComponent('✓') + prefix += 'utf8=%E2%9C%93&'; + } + } -var isForKonnector = function isForKonnector(triggerAttrs, slug) { - return triggerAttrs.worker === 'konnector' && triggerAttrs.message.konnector == slug; + return joined.length > 0 ? prefix + joined : ''; }; -exports.isForKonnector = isForKonnector; -var isForAccount = function isForAccount(triggerAttrs, accountId) { - return triggerAttrs.message.account == accountId; -}; +/***/ }), +/* 700 */ +/***/ (function(module, exports, __webpack_require__) { -exports.isForAccount = isForAccount; +"use strict"; -var buildParamsUrl = function buildParamsUrl(worker, type) { - var urlParams = new URLSearchParams(); - if (worker) { - if (Array.isArray(worker.$in)) { - urlParams.set('Worker', worker.$in.join(',')); - } else { - urlParams.set('Worker', worker); - } - } +var formats = __webpack_require__(701); - if (type) { - if (Array.isArray(type.$in)) { - urlParams.set('Type', type.$in.join(',')); - } else { - urlParams.set('Type', type); - } - } +var has = Object.prototype.hasOwnProperty; +var isArray = Array.isArray; - return urlParams.toString(); -}; -/** - * Implements `DocumentCollection` API along with specific methods for `io.cozy.triggers`. - */ +var hexTable = (function () { + var array = []; + for (var i = 0; i < 256; ++i) { + array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase()); + } + return array; +}()); -var TriggerCollection = /*#__PURE__*/function (_DocumentCollection) { - (0, _inherits2.default)(TriggerCollection, _DocumentCollection); +var compactQueue = function compactQueue(queue) { + while (queue.length > 1) { + var item = queue.pop(); + var obj = item.obj[item.prop]; - var _super = _createSuper(TriggerCollection); + if (isArray(obj)) { + var compacted = []; - function TriggerCollection(stackClient) { - (0, _classCallCheck2.default)(this, TriggerCollection); - return _super.call(this, TRIGGERS_DOCTYPE, stackClient); - } - /** - * Get the list of triggers. - * - * @see https://docs.cozy.io/en/cozy-stack/jobs/#get-jobstriggers - * @param {{Worker}} options The fetch options: Worker allow to filter only triggers associated with a specific worker. - * @returns {{data}} The JSON API conformant response. - * @throws {FetchError} - */ + for (var j = 0; j < obj.length; ++j) { + if (typeof obj[j] !== 'undefined') { + compacted.push(obj[j]); + } + } + item.obj[item.prop] = compacted; + } + } +}; - (0, _createClass2.default)(TriggerCollection, [{ - key: "all", - value: function () { - var _all = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() { - var options, - resp, - _args = arguments; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - options = _args.length > 0 && _args[0] !== undefined ? _args[0] : {}; - _context.prev = 1; - _context.next = 4; - return this.stackClient.fetchJSON('GET', "/jobs/triggers"); +var arrayToObject = function arrayToObject(source, options) { + var obj = options && options.plainObjects ? Object.create(null) : {}; + for (var i = 0; i < source.length; ++i) { + if (typeof source[i] !== 'undefined') { + obj[i] = source[i]; + } + } - case 4: - resp = _context.sent; - return _context.abrupt("return", { - data: resp.data.map(function (row) { - return normalizeTrigger(row, TRIGGERS_DOCTYPE); - }), - meta: { - count: resp.data.length - }, - next: false, - skip: 0 - }); + return obj; +}; - case 8: - _context.prev = 8; - _context.t0 = _context["catch"](1); - return _context.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context.t0)); +var merge = function merge(target, source, options) { + /* eslint no-param-reassign: 0 */ + if (!source) { + return target; + } - case 11: - case "end": - return _context.stop(); + if (typeof source !== 'object') { + if (isArray(target)) { + target.push(source); + } else if (target && typeof target === 'object') { + if ((options && (options.plainObjects || options.allowPrototypes)) || !has.call(Object.prototype, source)) { + target[source] = true; } - } - }, _callee, this, [[1, 8]]); - })); - - function all() { - return _all.apply(this, arguments); - } + } else { + return [target, source]; + } - return all; - }() - /** - * Creates a Trigger document - * - * @see https://docs.cozy.io/en/cozy-stack/jobs/#post-jobstriggers - * @param {object} attributes Trigger's attributes - * @returns {object} Stack response, containing trigger document under `data` attribute. - */ + return target; + } - }, { - key: "create", - value: function () { - var _create = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(attributes) { - var path, resp; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - path = (0, _utils.uri)(_templateObject()); - _context2.next = 3; - return this.stackClient.fetchJSON('POST', path, { - data: { - attributes: attributes - } - }); + if (!target || typeof target !== 'object') { + return [target].concat(source); + } - case 3: - resp = _context2.sent; - return _context2.abrupt("return", { - data: normalizeTrigger(resp.data) - }); + var mergeTarget = target; + if (isArray(target) && !isArray(source)) { + mergeTarget = arrayToObject(target, options); + } - case 5: - case "end": - return _context2.stop(); + if (isArray(target) && isArray(source)) { + source.forEach(function (item, i) { + if (has.call(target, i)) { + var targetItem = target[i]; + if (targetItem && typeof targetItem === 'object' && item && typeof item === 'object') { + target[i] = merge(targetItem, item, options); + } else { + target.push(item); + } + } else { + target[i] = item; } - } - }, _callee2, this); - })); + }); + return target; + } - function create(_x) { - return _create.apply(this, arguments); - } + return Object.keys(source).reduce(function (acc, key) { + var value = source[key]; - return create; - }() - /** - * Deletes a trigger - * - * @see https://docs.cozy.io/en/cozy-stack/jobs/#delete-jobstriggerstrigger-id - * @param {object} document The trigger to delete — must have an _id field - * @returns {object} The deleted document - */ + if (has.call(acc, key)) { + acc[key] = merge(acc[key], value, options); + } else { + acc[key] = value; + } + return acc; + }, mergeTarget); +}; - }, { - key: "destroy", - value: function () { - var _destroy = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(document) { - var _id; +var assign = function assignSingleSource(target, source) { + return Object.keys(source).reduce(function (acc, key) { + acc[key] = source[key]; + return acc; + }, target); +}; - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - _id = document._id; +var decode = function (str, decoder, charset) { + var strWithoutPlus = str.replace(/\+/g, ' '); + if (charset === 'iso-8859-1') { + // unescape never throws, no try...catch needed: + return strWithoutPlus.replace(/%[0-9a-f]{2}/gi, unescape); + } + // utf-8 + try { + return decodeURIComponent(strWithoutPlus); + } catch (e) { + return strWithoutPlus; + } +}; - if (_id) { - _context3.next = 3; - break; - } +var encode = function encode(str, defaultEncoder, charset, kind, format) { + // This code was originally written by Brian White (mscdex) for the io.js core querystring library. + // It has been adapted here for stricter adherence to RFC 3986 + if (str.length === 0) { + return str; + } - throw new Error('TriggerCollection.destroy needs a document with an _id'); + var string = str; + if (typeof str === 'symbol') { + string = Symbol.prototype.toString.call(str); + } else if (typeof str !== 'string') { + string = String(str); + } - case 3: - _context3.next = 5; - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject2(), _id)); + if (charset === 'iso-8859-1') { + return escape(string).replace(/%u[0-9a-f]{4}/gi, function ($0) { + return '%26%23' + parseInt($0.slice(2), 16) + '%3B'; + }); + } - case 5: - return _context3.abrupt("return", { - data: normalizeTrigger(_objectSpread(_objectSpread({}, document), {}, { - _deleted: true - })) - }); + var out = ''; + for (var i = 0; i < string.length; ++i) { + var c = string.charCodeAt(i); - case 6: - case "end": - return _context3.stop(); - } - } - }, _callee3, this); - })); + if ( + c === 0x2D // - + || c === 0x2E // . + || c === 0x5F // _ + || c === 0x7E // ~ + || (c >= 0x30 && c <= 0x39) // 0-9 + || (c >= 0x41 && c <= 0x5A) // a-z + || (c >= 0x61 && c <= 0x7A) // A-Z + || (format === formats.RFC1738 && (c === 0x28 || c === 0x29)) // ( ) + ) { + out += string.charAt(i); + continue; + } - function destroy(_x2) { - return _destroy.apply(this, arguments); - } + if (c < 0x80) { + out = out + hexTable[c]; + continue; + } - return destroy; - }() - /** - * - * Be warned, ATM /jobs/triggers does not return the same informations - * than /data/io.cozy.triggers (used by the super.find method). - * - * See https://github.com/cozy/cozy-stack/pull/2010 - * - * @param {object} selector - Which kind of worker {konnector,service} - * @param {object} options - Options - * @returns {{data, meta, skip, next}} The JSON API conformant response. - * @throws {FetchError} - */ + if (c < 0x800) { + out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]); + continue; + } - }, { - key: "find", - value: function () { - var _find = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4() { - var selector, - options, - worker, - type, - rest, - hasOnlyWorkerAndType, - url, - resp, - _args4 = arguments; - return _regenerator.default.wrap(function _callee4$(_context4) { - while (1) { - switch (_context4.prev = _context4.next) { - case 0: - selector = _args4.length > 0 && _args4[0] !== undefined ? _args4[0] : {}; - options = _args4.length > 1 && _args4[1] !== undefined ? _args4[1] : {}; - worker = selector.worker, type = selector.type, rest = (0, _objectWithoutProperties2.default)(selector, ["worker", "type"]); - hasOnlyWorkerAndType = Object.keys(rest).length === 0; + if (c < 0xD800 || c >= 0xE000) { + out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]); + continue; + } - if (!hasOnlyWorkerAndType) { - _context4.next = 18; - break; - } + i += 1; + c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF)); + out += hexTable[0xF0 | (c >> 18)] + + hexTable[0x80 | ((c >> 12) & 0x3F)] + + hexTable[0x80 | ((c >> 6) & 0x3F)] + + hexTable[0x80 | (c & 0x3F)]; + } - // @see https://github.com/cozy/cozy-stack/blob/master/docs/jobs.md#get-jobstriggers - url = "/jobs/triggers?".concat(buildParamsUrl(worker, type)); - _context4.prev = 6; - _context4.next = 9; - return this.stackClient.fetchJSON('GET', url); + return out; +}; - case 9: - resp = _context4.sent; - return _context4.abrupt("return", { - data: resp.data.map(function (row) { - return normalizeTrigger(row, TRIGGERS_DOCTYPE); - }), - meta: { - count: resp.data.length - }, - next: false, - skip: 0 - }); +var compact = function compact(value) { + var queue = [{ obj: { o: value }, prop: 'o' }]; + var refs = []; - case 13: - _context4.prev = 13; - _context4.t0 = _context4["catch"](6); - return _context4.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context4.t0)); + for (var i = 0; i < queue.length; ++i) { + var item = queue[i]; + var obj = item.obj[item.prop]; - case 16: - _context4.next = 19; - break; + var keys = Object.keys(obj); + for (var j = 0; j < keys.length; ++j) { + var key = keys[j]; + var val = obj[key]; + if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) { + queue.push({ obj: obj, prop: key }); + refs.push(val); + } + } + } - case 18: - return _context4.abrupt("return", (0, _get3.default)((0, _getPrototypeOf2.default)(TriggerCollection.prototype), "find", this).call(this, selector, options)); + compactQueue(queue); - case 19: - case "end": - return _context4.stop(); - } - } - }, _callee4, this, [[6, 13]]); - })); + return value; +}; - function find() { - return _find.apply(this, arguments); - } +var isRegExp = function isRegExp(obj) { + return Object.prototype.toString.call(obj) === '[object RegExp]'; +}; - return find; - }() - }, { - key: "get", - value: function () { - var _get2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(id) { - return _regenerator.default.wrap(function _callee5$(_context5) { - while (1) { - switch (_context5.prev = _context5.next) { - case 0: - return _context5.abrupt("return", _Collection.default.get(this.stackClient, (0, _utils.uri)(_templateObject3(), id), { - normalize: normalizeTrigger - })); +var isBuffer = function isBuffer(obj) { + if (!obj || typeof obj !== 'object') { + return false; + } - case 1: - case "end": - return _context5.stop(); - } - } - }, _callee5, this); - })); + return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj)); +}; - function get(_x3) { - return _get2.apply(this, arguments); - } +var combine = function combine(a, b) { + return [].concat(a, b); +}; - return get; - }() - /** - * Force given trigger execution. - * - * @see https://docs.cozy.io/en/cozy-stack/jobs/#post-jobstriggerstrigger-idlaunch - * @param {object} trigger Trigger to launch - * @returns {object} Stack response, containing job launched by trigger, under `data` attribute. - */ +var maybeMap = function maybeMap(val, fn) { + if (isArray(val)) { + var mapped = []; + for (var i = 0; i < val.length; i += 1) { + mapped.push(fn(val[i])); + } + return mapped; + } + return fn(val); +}; - }, { - key: "launch", - value: function () { - var _launch = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee6(trigger) { - var path, resp; - return _regenerator.default.wrap(function _callee6$(_context6) { - while (1) { - switch (_context6.prev = _context6.next) { - case 0: - path = (0, _utils.uri)(_templateObject4(), trigger._id); - _context6.next = 3; - return this.stackClient.fetchJSON('POST', path); +module.exports = { + arrayToObject: arrayToObject, + assign: assign, + combine: combine, + compact: compact, + decode: decode, + encode: encode, + isBuffer: isBuffer, + isRegExp: isRegExp, + maybeMap: maybeMap, + merge: merge +}; - case 3: - resp = _context6.sent; - return _context6.abrupt("return", { - data: (0, _JobCollection.normalizeJob)(resp.data) - }); - case 5: - case "end": - return _context6.stop(); - } - } - }, _callee6, this); - })); +/***/ }), +/* 701 */ +/***/ (function(module, exports, __webpack_require__) { - function launch(_x4) { - return _launch.apply(this, arguments); - } +"use strict"; - return launch; - }() - }, { - key: "update", - value: function () { - var _update = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee7() { - return _regenerator.default.wrap(function _callee7$(_context7) { - while (1) { - switch (_context7.prev = _context7.next) { - case 0: - throw new Error('update() method is not available for triggers'); - case 1: - case "end": - return _context7.stop(); - } - } - }, _callee7); - })); +var replace = String.prototype.replace; +var percentTwenties = /%20/g; - function update() { - return _update.apply(this, arguments); - } +var Format = { + RFC1738: 'RFC1738', + RFC3986: 'RFC3986' +}; - return update; - }() - }]); - return TriggerCollection; -}(_DocumentCollection2.default); +module.exports = { + 'default': Format.RFC3986, + formatters: { + RFC1738: function (value) { + return replace.call(value, percentTwenties, '+'); + }, + RFC3986: function (value) { + return String(value); + } + }, + RFC1738: Format.RFC1738, + RFC3986: Format.RFC3986 +}; -TriggerCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; -var _default = TriggerCollection; -exports.default = _default; /***/ }), -/* 676 */ +/* 702 */ /***/ (function(module, exports, __webpack_require__) { -var superPropBase = __webpack_require__(677); +"use strict"; -function _get(target, property, receiver) { - if (typeof Reflect !== "undefined" && Reflect.get) { - module.exports = _get = Reflect.get; - module.exports["default"] = module.exports, module.exports.__esModule = true; - } else { - module.exports = _get = function _get(target, property, receiver) { - var base = superPropBase(target, property); - if (!base) return; - var desc = Object.getOwnPropertyDescriptor(base, property); - if (desc.get) { - return desc.get.call(receiver); - } +var utils = __webpack_require__(700); - return desc.value; - }; +var has = Object.prototype.hasOwnProperty; +var isArray = Array.isArray; - module.exports["default"] = module.exports, module.exports.__esModule = true; - } +var defaults = { + allowDots: false, + allowPrototypes: false, + arrayLimit: 20, + charset: 'utf-8', + charsetSentinel: false, + comma: false, + decoder: utils.decode, + delimiter: '&', + depth: 5, + ignoreQueryPrefix: false, + interpretNumericEntities: false, + parameterLimit: 1000, + parseArrays: true, + plainObjects: false, + strictNullHandling: false +}; - return _get(target, property, receiver || target); -} +var interpretNumericEntities = function (str) { + return str.replace(/&#(\d+);/g, function ($0, numberStr) { + return String.fromCharCode(parseInt(numberStr, 10)); + }); +}; -module.exports = _get; -module.exports["default"] = module.exports, module.exports.__esModule = true; +var parseArrayValue = function (val, options) { + if (val && typeof val === 'string' && options.comma && val.indexOf(',') > -1) { + return val.split(','); + } -/***/ }), -/* 677 */ -/***/ (function(module, exports, __webpack_require__) { + return val; +}; -var getPrototypeOf = __webpack_require__(613); +// This is what browsers will submit when the ✓ character occurs in an +// application/x-www-form-urlencoded body and the encoding of the page containing +// the form is iso-8859-1, or when the submitted form has an accept-charset +// attribute of iso-8859-1. Presumably also with other charsets that do not contain +// the ✓ character, such as us-ascii. +var isoSentinel = 'utf8=%26%2310003%3B'; // encodeURIComponent('✓') -function _superPropBase(object, property) { - while (!Object.prototype.hasOwnProperty.call(object, property)) { - object = getPrototypeOf(object); - if (object === null) break; - } +// These are the percent-encoded utf-8 octets representing a checkmark, indicating that the request actually is utf-8 encoded. +var charsetSentinel = 'utf8=%E2%9C%93'; // encodeURIComponent('✓') - return object; -} +var parseValues = function parseQueryStringValues(str, options) { + var obj = {}; + var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, '') : str; + var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit; + var parts = cleanStr.split(options.delimiter, limit); + var skipIndex = -1; // Keep track of where the utf8 sentinel was found + var i; -module.exports = _superPropBase; -module.exports["default"] = module.exports, module.exports.__esModule = true; + var charset = options.charset; + if (options.charsetSentinel) { + for (i = 0; i < parts.length; ++i) { + if (parts[i].indexOf('utf8=') === 0) { + if (parts[i] === charsetSentinel) { + charset = 'utf-8'; + } else if (parts[i] === isoSentinel) { + charset = 'iso-8859-1'; + } + skipIndex = i; + i = parts.length; // The eslint settings do not allow break; + } + } + } -/***/ }), -/* 678 */ -/***/ (function(module, exports, __webpack_require__) { + for (i = 0; i < parts.length; ++i) { + if (i === skipIndex) { + continue; + } + var part = parts[i]; -"use strict"; + var bracketEqualsPos = part.indexOf(']='); + var pos = bracketEqualsPos === -1 ? part.indexOf('=') : bracketEqualsPos + 1; + var key, val; + if (pos === -1) { + key = options.decoder(part, defaults.decoder, charset, 'key'); + val = options.strictNullHandling ? null : ''; + } else { + key = options.decoder(part.slice(0, pos), defaults.decoder, charset, 'key'); + val = utils.maybeMap( + parseArrayValue(part.slice(pos + 1), options), + function (encodedVal) { + return options.decoder(encodedVal, defaults.decoder, charset, 'value'); + } + ); + } -var _interopRequireWildcard = __webpack_require__(528); + if (val && options.interpretNumericEntities && charset === 'iso-8859-1') { + val = interpretNumericEntities(val); + } -var _interopRequireDefault = __webpack_require__(530); + if (part.indexOf('[]=') > -1) { + val = isArray(val) ? [val] : val; + } -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.getSharingRules = exports.BITWARDEN_CIPHERS_DOCTYPE = exports.BITWARDEN_ORGANIZATIONS_DOCTYPE = exports.SHARING_DOCTYPE = void 0; + if (has.call(obj, key)) { + obj[key] = utils.combine(obj[key], val); + } else { + obj[key] = val; + } + } + + return obj; +}; + +var parseObject = function (chain, val, options, valuesParsed) { + var leaf = valuesParsed ? val : parseArrayValue(val, options); -var _regenerator = _interopRequireDefault(__webpack_require__(545)); + for (var i = chain.length - 1; i >= 0; --i) { + var obj; + var root = chain[i]; -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + if (root === '[]' && options.parseArrays) { + obj = [].concat(leaf); + } else { + obj = options.plainObjects ? Object.create(null) : {}; + var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root; + var index = parseInt(cleanRoot, 10); + if (!options.parseArrays && cleanRoot === '') { + obj = { 0: leaf }; + } else if ( + !isNaN(index) + && root !== cleanRoot + && String(index) === cleanRoot + && index >= 0 + && (options.parseArrays && index <= options.arrayLimit) + ) { + obj = []; + obj[index] = leaf; + } else { + obj[cleanRoot] = leaf; + } + } -var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(620)); + leaf = obj; + } -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + return leaf; +}; -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +var parseKeys = function parseQueryStringKeys(givenKey, val, options, valuesParsed) { + if (!givenKey) { + return; + } -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + // Transform dot notation to bracket notation + var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, '[$1]') : givenKey; -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); + // The regex chunks -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); + var brackets = /(\[[^[\]]*])/; + var child = /(\[[^[\]]*])/g; -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); + // Get the parent -var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(619)); + var segment = options.depth > 0 && brackets.exec(key); + var parent = segment ? key.slice(0, segment.index) : key; -var _FileCollection = __webpack_require__(665); + // Stash the parent if it exists -var _utils = __webpack_require__(629); + var keys = []; + if (parent) { + // If we aren't using plain objects, optionally prefix keys that would overwrite object prototype properties + if (!options.plainObjects && has.call(Object.prototype, parent)) { + if (!options.allowPrototypes) { + return; + } + } -function _templateObject6() { - var data = (0, _taggedTemplateLiteral2.default)(["/sharings/", "/recipients"]); + keys.push(parent); + } - _templateObject6 = function _templateObject6() { - return data; - }; + // Loop through children appending to the array until we hit depth - return data; -} + var i = 0; + while (options.depth > 0 && (segment = child.exec(key)) !== null && i < options.depth) { + i += 1; + if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) { + if (!options.allowPrototypes) { + return; + } + } + keys.push(segment[1]); + } -function _templateObject5() { - var data = (0, _taggedTemplateLiteral2.default)(["/sharings/", "/recipients/self"]); + // If there's a remainder, just add whatever is left - _templateObject5 = function _templateObject5() { - return data; - }; + if (segment) { + keys.push('[' + key.slice(segment.index) + ']'); + } - return data; -} + return parseObject(keys, val, options, valuesParsed); +}; -function _templateObject4() { - var data = (0, _taggedTemplateLiteral2.default)(["/sharings/", "/recipients/", ""]); +var normalizeParseOptions = function normalizeParseOptions(opts) { + if (!opts) { + return defaults; + } - _templateObject4 = function _templateObject4() { - return data; - }; + if (opts.decoder !== null && opts.decoder !== undefined && typeof opts.decoder !== 'function') { + throw new TypeError('Decoder has to be a function.'); + } - return data; -} + if (typeof opts.charset !== 'undefined' && opts.charset !== 'utf-8' && opts.charset !== 'iso-8859-1') { + throw new TypeError('The charset option must be either utf-8, iso-8859-1, or undefined'); + } + var charset = typeof opts.charset === 'undefined' ? defaults.charset : opts.charset; -function _templateObject3() { - var data = (0, _taggedTemplateLiteral2.default)(["/sharings/", "/recipients"]); + return { + allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots, + allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes, + arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit, + charset: charset, + charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel, + comma: typeof opts.comma === 'boolean' ? opts.comma : defaults.comma, + decoder: typeof opts.decoder === 'function' ? opts.decoder : defaults.decoder, + delimiter: typeof opts.delimiter === 'string' || utils.isRegExp(opts.delimiter) ? opts.delimiter : defaults.delimiter, + // eslint-disable-next-line no-implicit-coercion, no-extra-parens + depth: (typeof opts.depth === 'number' || opts.depth === false) ? +opts.depth : defaults.depth, + ignoreQueryPrefix: opts.ignoreQueryPrefix === true, + interpretNumericEntities: typeof opts.interpretNumericEntities === 'boolean' ? opts.interpretNumericEntities : defaults.interpretNumericEntities, + parameterLimit: typeof opts.parameterLimit === 'number' ? opts.parameterLimit : defaults.parameterLimit, + parseArrays: opts.parseArrays !== false, + plainObjects: typeof opts.plainObjects === 'boolean' ? opts.plainObjects : defaults.plainObjects, + strictNullHandling: typeof opts.strictNullHandling === 'boolean' ? opts.strictNullHandling : defaults.strictNullHandling + }; +}; - _templateObject3 = function _templateObject3() { - return data; - }; +module.exports = function (str, opts) { + var options = normalizeParseOptions(opts); - return data; -} + if (str === '' || str === null || typeof str === 'undefined') { + return options.plainObjects ? Object.create(null) : {}; + } -function _templateObject2() { - var data = (0, _taggedTemplateLiteral2.default)(["/sharings/", ""]); + var tempObj = typeof str === 'string' ? parseValues(str, options) : str; + var obj = options.plainObjects ? Object.create(null) : {}; - _templateObject2 = function _templateObject2() { - return data; - }; + // Iterate over the keys and setup the new object - return data; -} + var keys = Object.keys(tempObj); + for (var i = 0; i < keys.length; ++i) { + var key = keys[i]; + var newObj = parseKeys(key, tempObj[key], options, typeof str === 'string'); + obj = utils.merge(obj, newObj, options); + } -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + return utils.compact(obj); +}; -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } -function _templateObject() { - var data = (0, _taggedTemplateLiteral2.default)(["/sharings/doctype/", ""]); +/***/ }), +/* 703 */ +/***/ (function(module, exports, __webpack_require__) { - _templateObject = function _templateObject() { - return data; - }; +"use strict"; - return data; -} -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +var _interopRequireDefault = __webpack_require__(532); -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.Collection = exports.dontThrowNotFoundError = void 0; -var SHARING_DOCTYPE = 'io.cozy.sharings'; -exports.SHARING_DOCTYPE = SHARING_DOCTYPE; -var BITWARDEN_ORGANIZATIONS_DOCTYPE = 'com.bitwarden.organizations'; -exports.BITWARDEN_ORGANIZATIONS_DOCTYPE = BITWARDEN_ORGANIZATIONS_DOCTYPE; -var BITWARDEN_CIPHERS_DOCTYPE = 'com.bitwarden.ciphers'; -exports.BITWARDEN_CIPHERS_DOCTYPE = BITWARDEN_CIPHERS_DOCTYPE; +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -var normalizeSharing = function normalizeSharing(sharing) { - return (0, _DocumentCollection2.normalizeDoc)(sharing, SHARING_DOCTYPE); -}; -/** - * @typedef {object} Rule A sharing rule - * @property {string} title - * @property {string} doctype - * @property {Array} values - * @property {string=} add - * @property {string=} update - * @property {string=} remove - */ +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -/** - * @typedef {object} Recipient An io.cozy.contact - */ +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -/** - * @typedef {object} Sharing An io.cozy.sharings document - */ +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); /** - * @typedef {object} SharingPolicy Define the add/update/remove policies for a sharing - * @property {string} add - * @property {string} update - * @property {string} remove + * Handler for error response which return a empty value for "not found" error + * + * @param {Error} error + * @param {Array|object} data Data to return in case of "not found" error + * @returns {object} JsonAPI response with empty data in case of "not + * found" error. */ +var dontThrowNotFoundError = function dontThrowNotFoundError(error) { + var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : []; -/** - * @typedef {(undefined|'one-way'|'two-way')} SharingType Define how a document is synced between sharing's owner and receivers. - */ + if (error.message.match(/not_found/)) { + var expectsCollection = Array.isArray(data); // Return expected JsonAPI attributes : collections are expecting + // meta, skip and next attribute -/** - * @typedef {object} RelationshipItem Define a recipient that can be used as target of a sharing - * @property {string} id - Recipient's ID - * @property {string} type - Reciptient's type (should be 'io.cozy.contacts') - */ + return expectsCollection ? { + data: data, + meta: { + count: 0 + }, + skip: 0, + next: false + } : { + data: data + }; + } + throw error; +}; /** - * Implements the `DocumentCollection` API along with specific methods for - * `io.cozy.sharings`. + * Utility class to abstract an regroup identical methods and logics for + * specific collections. */ -var SharingCollection = /*#__PURE__*/function (_DocumentCollection) { - (0, _inherits2.default)(SharingCollection, _DocumentCollection); - - var _super = _createSuper(SharingCollection); +exports.dontThrowNotFoundError = dontThrowNotFoundError; - function SharingCollection() { - (0, _classCallCheck2.default)(this, SharingCollection); - return _super.apply(this, arguments); +var Collection = +/*#__PURE__*/ +function () { + function Collection() { + (0, _classCallCheck2.default)(this, Collection); } - (0, _createClass2.default)(SharingCollection, [{ - key: "findByDoctype", - value: function () { - var _findByDoctype = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(doctype) { - var resp; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - _context.next = 2; - return this.stackClient.fetchJSON('GET', (0, _utils.uri)(_templateObject(), doctype)); - - case 2: - resp = _context.sent; - return _context.abrupt("return", _objectSpread(_objectSpread({}, resp), {}, { - data: resp.data.map(normalizeSharing) - })); - - case 4: - case "end": - return _context.stop(); - } - } - }, _callee, this); - })); - - function findByDoctype(_x) { - return _findByDoctype.apply(this, arguments); - } - - return findByDoctype; - }() - /** - * Fetches a sharing by id - * - * @param {string} id Sharing's id - * @returns {Sharing} sharing - */ - - }, { + (0, _createClass2.default)(Collection, null, [{ key: "get", - value: function () { - var _get = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(id) { - var path, resp; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - path = (0, _utils.uri)(_templateObject2(), id); - _context2.next = 3; - return this.stackClient.fetchJSON('GET', path); - - case 3: - resp = _context2.sent; - return _context2.abrupt("return", { - data: normalizeSharing(resp.data) - }); - - case 5: - case "end": - return _context2.stop(); - } - } - }, _callee2, this); - })); - - function get(_x2) { - return _get.apply(this, arguments); - } - return get; - }() /** + * Utility method aimed to return only one document. * - * Creates a new Sharing. See https://docs.cozy.io/en/cozy-stack/sharing/#post-sharings - * - * @param {object} params Sharing params - * @param {Sharing} params.document The document to share - * @param {string} params.description Description of the sharing - * @param {string=} params.previewPath The preview path - * @param {Array<Rule>=} params.rules The rules defined to the sharing. See https://docs.cozy.io/en/cozy-stack/sharing-design/#description-of-a-sharing - * @param {Array<Recipient>=} params.recipients Recipients to add to the sharings (will have the same permissions given by the rules defined by the sharing ) - * @param {Array<Recipient>=} params.readOnlyRecipients Recipients to add to the sharings with only read only access - * @param {boolean=} params.openSharing If someone else than the owner can add a recipient to the sharing - * @param {string=} params.appSlug Slug of the targeted app + * @param {CozyStackClient} stackClient - CozyStackClient + * @param {string} endpoint - Stack endpoint + * @param {object} options - Options of the collection + * @param {Func} options.normalize Callback to normalize response data + * (default `data => data`) + * @param {string} options.method HTTP method (default `GET`) + * @returns {object} JsonAPI response containing normalized + * document as data attribute */ - - }, { - key: "create", value: function () { - var _create = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(_ref) { - var document, description, previewPath, rules, _ref$recipients, recipients, _ref$readOnlyRecipien, readOnlyRecipients, openSharing, appSlug, attributes, optionalAttributes, resp; + var _get = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(stackClient, endpoint, _ref) { + var _ref$normalize, normalize, _ref$method, method, resp; - return _regenerator.default.wrap(function _callee3$(_context3) { + return _regenerator.default.wrap(function _callee$(_context) { while (1) { - switch (_context3.prev = _context3.next) { + switch (_context.prev = _context.next) { case 0: - document = _ref.document, description = _ref.description, previewPath = _ref.previewPath, rules = _ref.rules, _ref$recipients = _ref.recipients, recipients = _ref$recipients === void 0 ? [] : _ref$recipients, _ref$readOnlyRecipien = _ref.readOnlyRecipients, readOnlyRecipients = _ref$readOnlyRecipien === void 0 ? [] : _ref$readOnlyRecipien, openSharing = _ref.openSharing, appSlug = _ref.appSlug; - attributes = { - description: description, - preview_path: previewPath, - open_sharing: openSharing, - rules: rules ? rules : getSharingRules(document) - }; - optionalAttributes = {}; - - if (appSlug) { - optionalAttributes = { - app_slug: appSlug - }; - } - - _context3.next = 6; - return this.stackClient.fetchJSON('POST', '/sharings/', { - data: { - type: 'io.cozy.sharings', - attributes: _objectSpread(_objectSpread({}, attributes), optionalAttributes), - relationships: _objectSpread(_objectSpread({}, recipients.length > 0 && { - recipients: { - data: recipients.map(toRelationshipItem) - } - }), readOnlyRecipients.length > 0 && { - read_only_recipients: { - data: readOnlyRecipients.map(toRelationshipItem) - } - }) - } - }); + _ref$normalize = _ref.normalize, normalize = _ref$normalize === void 0 ? function (data, response) { + return data; + } : _ref$normalize, _ref$method = _ref.method, method = _ref$method === void 0 ? 'GET' : _ref$method; + _context.prev = 1; + _context.next = 4; + return stackClient.fetchJSON(method, endpoint); - case 6: - resp = _context3.sent; - return _context3.abrupt("return", { - data: normalizeSharing(resp.data) + case 4: + resp = _context.sent; + return _context.abrupt("return", { + data: normalize(resp.data, resp) }); case 8: - case "end": - return _context3.stop(); - } - } - }, _callee3, this); - })); - - function create(_x3) { - return _create.apply(this, arguments); - } - - return create; - }() - /** - * @deprecated Use create() instead - * share - Creates a new sharing. See https://docs.cozy.io/en/cozy-stack/sharing/#post-sharings - * - * @param {Sharing} document The document to share. Should have and _id and a name. - * @param {Array} recipients A list of io.cozy.contacts - * @param {string} sharingType - If "two-way", will set the open_sharing attribute to true - * @param {string} description - Describes the sharing - * @param {string=} previewPath Relative URL of the sharings preview page - */ - - }, { - key: "share", - value: function () { - var _share = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(document, recipients, sharingType, description) { - var previewPath, - recipientsToUse, - _args4 = arguments; - return _regenerator.default.wrap(function _callee4$(_context4) { - while (1) { - switch (_context4.prev = _context4.next) { - case 0: - previewPath = _args4.length > 4 && _args4[4] !== undefined ? _args4[4] : null; - console.warn('SharingCollection.share is deprecated, use SharingCollection.create instead'); - recipientsToUse = sharingType === 'two-way' ? { - recipients: recipients - } : { - readOnlyRecipients: recipients - }; - return _context4.abrupt("return", this.create(_objectSpread(_objectSpread({ - document: document - }, recipientsToUse), {}, { - description: description, - previewPath: previewPath, - openSharing: sharingType === 'two-way', - rules: getSharingRules(document, sharingType) - }))); + _context.prev = 8; + _context.t0 = _context["catch"](1); + return _context.abrupt("return", dontThrowNotFoundError(_context.t0, null)); - case 4: + case 11: case "end": - return _context4.stop(); + return _context.stop(); } } - }, _callee4, this); + }, _callee, null, [[1, 8]]); })); - function share(_x4, _x5, _x6, _x7) { - return _share.apply(this, arguments); - } - - return share; + return function get(_x, _x2, _x3) { + return _get.apply(this, arguments); + }; }() - /** - * getDiscoveryLink - Returns the URL of the page that can be used to accept a sharing. See https://docs.cozy.io/en/cozy-stack/sharing/#get-sharingssharing-iddiscovery - * - * @param {string} sharingId - Id of the sharing - * @param {string} sharecode - Code of the sharing - * @returns {string} - */ - - }, { - key: "getDiscoveryLink", - value: function getDiscoveryLink(sharingId, sharecode) { - return this.stackClient.fullpath("/sharings/".concat(sharingId, "/discovery?sharecode=").concat(sharecode)); - } - /** - * Add an array of contacts to the Sharing - * - * @param {object} options Object - * @param {Sharing} options.document Sharing Object - * @param {Array<Recipient>=} options.recipients Recipients to add to the sharing - * @param {Array<Recipient>=} options.readOnlyRecipients Recipients to add to the sharings with only read only access - */ - - }, { - key: "addRecipients", - value: function () { - var _addRecipients = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(_ref2) { - var document, _ref2$recipients, recipients, _ref2$readOnlyRecipie, readOnlyRecipients, resp; - - return _regenerator.default.wrap(function _callee5$(_context5) { - while (1) { - switch (_context5.prev = _context5.next) { - case 0: - document = _ref2.document, _ref2$recipients = _ref2.recipients, recipients = _ref2$recipients === void 0 ? [] : _ref2$recipients, _ref2$readOnlyRecipie = _ref2.readOnlyRecipients, readOnlyRecipients = _ref2$readOnlyRecipie === void 0 ? [] : _ref2$readOnlyRecipie; - _context5.next = 3; - return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject3(), document._id), { - data: { - type: 'io.cozy.sharings', - id: document._id, - relationships: _objectSpread(_objectSpread({}, recipients.length > 0 && { - recipients: { - data: recipients.map(toRelationshipItem) - } - }), readOnlyRecipients.length > 0 && { - read_only_recipients: { - data: readOnlyRecipients.map(toRelationshipItem) - } - }) - } - }); - - case 3: - resp = _context5.sent; - return _context5.abrupt("return", { - data: normalizeSharing(resp.data) - }); - - case 5: - case "end": - return _context5.stop(); - } - } - }, _callee5, this); - })); - - function addRecipients(_x8) { - return _addRecipients.apply(this, arguments); - } + }]); + return Collection; +}(); - return addRecipients; - }() - /** - * Revoke only one recipient of the sharing. - * - * @param {object} sharing Sharing Object - * @param {number} recipientIndex Index of this recipient in the members array of the sharing - */ +exports.Collection = Collection; +var _default = Collection; +exports.default = _default; - }, { - key: "revokeRecipient", - value: function revokeRecipient(sharing, recipientIndex) { - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject4(), sharing._id, recipientIndex)); - } - /** - * Remove self from the sharing. - * - * @param {object} sharing Sharing Object - */ +/***/ }), +/* 704 */ +/***/ (function(module, exports, __webpack_require__) { - }, { - key: "revokeSelf", - value: function revokeSelf(sharing) { - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject5(), sharing._id)); - } - /** - * Revoke the sharing for all the members. Must be called - * from the owner's cozy - * - * @param {object} sharing Sharing Objects - */ +"use strict"; - }, { - key: "revokeAllRecipients", - value: function revokeAllRecipients(sharing) { - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject6(), sharing._id)); - } - }]); - return SharingCollection; -}(_DocumentCollection2.default); -SharingCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; +var _interopRequireDefault = __webpack_require__(532); -var getSharingRulesWithoutWarning = function getSharingRulesWithoutWarning(document, sharingType) { - if ((0, _FileCollection.isFile)(document)) { - return getSharingRulesForFile(document, sharingType); - } +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buildURL = exports.encode = void 0; - if (document._type === BITWARDEN_ORGANIZATIONS_DOCTYPE) { - return getSharingRulesForOrganizations(document); - } +var _slicedToArray2 = _interopRequireDefault(__webpack_require__(540)); - return getSharingRulesForPhotosAlbum(document, sharingType); -}; -/** - * Rules determine the behavior of the sharing when changes are made to the shared document - * See https://docs.cozy.io/en/cozy-stack/sharing-design/#description-of-a-sharing - * - * @param {Sharing} document - The document to share. Should have and _id and a name - * @param {SharingType} sharingType - The type of the sharing - * - * @returns {Array<Rule>=} The rules that define how to share the document - */ +var _pickBy = _interopRequireDefault(__webpack_require__(680)); +var encodeValues = function encodeValues(values) { + var fromArray = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; -var getSharingRules = function getSharingRules(document, sharingType) { - if (sharingType) { - console.warn("sharingType is deprecated and will be removed. We now set this default rules: ".concat(getSharingRulesWithoutWarning(document), "} \n \n If this default rules do not fill your need, please set custom rules \n by using the 'rules' object of the SharingCollection.create() method")); + if (Array.isArray(values)) { + return '[' + values.map(function (v) { + return encodeValues(v, true); + }).join(',') + ']'; } - return getSharingRulesWithoutWarning(document, sharingType); -}; -/** - * Compute the rules that define how to share a Photo Album. See https://docs.cozy.io/en/cozy-stack/sharing-design/#description-of-a-sharing - * - * @param {Sharing} document - The document to share. Should have and _id and a name - * @param {SharingType} sharingType - The type of the sharing - * - * @returns {Array<Rule>=} The rules that define how to share a Photo Album - */ - - -exports.getSharingRules = getSharingRules; - -var getSharingRulesForPhotosAlbum = function getSharingRulesForPhotosAlbum(document, sharingType) { - var _id = document._id, - _type = document._type; - return [_objectSpread({ - title: 'collection', - doctype: _type, - values: [_id] - }, getSharingPolicyForAlbum(sharingType)), _objectSpread({ - title: 'items', - doctype: 'io.cozy.files', - values: ["".concat(_type, "/").concat(_id)], - selector: 'referenced_by' - }, getSharingPolicyForReferencedFiles(sharingType))]; + return fromArray ? encodeURIComponent("\"".concat(values, "\"")) : encodeURIComponent(values); }; /** - * Compute the sharing policy for a ReferencedFile based on its sharing type - * - * @param {SharingType} sharingType - The type of the sharing + * Encode an object as querystring, values are encoded as + * URI components, keys are not. * - * @returns {SharingPolicy} The sharing policy for the ReferencedFile + * @function + * @private */ -var getSharingPolicyForReferencedFiles = function getSharingPolicyForReferencedFiles(sharingType) { - return sharingType === 'two-way' ? { - add: 'sync', - update: 'sync', - remove: 'sync' - } : { - add: 'push', - update: 'none', - remove: 'push' - }; -}; -/** - * Compute the sharing policy for an Album based on its sharing type - * - * @param {SharingType} sharingType - The type of the sharing - * - * @returns {Array<Rule>=} The sharing policy for the Album - */ - +var encode = function encode(data) { + return Object.entries(data).map(function (_ref) { + var _ref2 = (0, _slicedToArray2.default)(_ref, 2), + k = _ref2[0], + v = _ref2[1]; -var getSharingPolicyForAlbum = function getSharingPolicyForAlbum(sharingType) { - if (!sharingType) return { - update: 'sync', - remove: 'revoke' - }; - return sharingType === 'two-way' ? { - update: 'sync', - remove: 'revoke' - } : { - update: 'push', - remove: 'revoke' - }; + var encodedValue = encodeValues(v); + return "".concat(k, "=").concat(encodedValue); + }).join('&'); }; /** - * Compute the rules that define how to share a File. See https://docs.cozy.io/en/cozy-stack/sharing-design/#description-of-a-sharing - * - * @param {Sharing} document - The document to share. Should have and _id and a name - * @param {SharingType} sharingType - The type of the sharing + * Returns a URL from base url and a query parameter object. + * Any undefined parameter is removed. * - * @returns {Array<Rule>=} The rules that define how to share a File + * @function + * @private */ -var getSharingRulesForFile = function getSharingRulesForFile(document, sharingType) { - var _id = document._id, - name = document.name; - return [_objectSpread({ - title: name, - doctype: 'io.cozy.files', - values: [_id] - }, getSharingPolicyForFile(document, sharingType))]; -}; -/** - * Compute the sharing policy for a File based on its sharing type - * - * @param {Sharing} document - The document to share. Should have and _id and a name - * @param {SharingType} sharingType - The type of the sharing - * - * @returns {SharingPolicy} The sharing policy for the File - */ +exports.encode = encode; +var buildURL = function buildURL(url, params) { + var qs = encode((0, _pickBy.default)(params)); -var getSharingPolicyForFile = function getSharingPolicyForFile(document, sharingType) { - if ((0, _FileCollection.isDirectory)(document)) { - if (!sharingType) return { - add: 'sync', - update: 'sync', - remove: 'sync' - }; - return sharingType === 'two-way' ? { - add: 'sync', - update: 'sync', - remove: 'sync' - } : { - add: 'push', - update: 'push', - remove: 'push' - }; + if (qs) { + return "".concat(url, "?").concat(qs); + } else { + return url; } - - if (!sharingType) return { - update: 'sync', - remove: 'revoke' - }; - return sharingType === 'two-way' ? { - update: 'sync', - remove: 'revoke' - } : { - update: 'push', - remove: 'revoke' - }; -}; -/** - * Compute the rules that define how to share an Organization. See https://docs.cozy.io/en/cozy-stack/sharing-design/#description-of-a-sharing - * - * @param {Sharing} document The document to share. Should have and _id and a name - * - * @returns {Array<Rule>=} The rules that define how to share an Organization - */ - - -var getSharingRulesForOrganizations = function getSharingRulesForOrganizations(document) { - var _id = document._id, - name = document.name; - var sharingRules = [{ - title: name, - doctype: BITWARDEN_ORGANIZATIONS_DOCTYPE, - values: [_id], - add: 'sync', - update: 'sync', - remove: 'sync' - }, { - title: 'Ciphers', - doctype: BITWARDEN_CIPHERS_DOCTYPE, - values: [_id], - add: 'sync', - update: 'sync', - remove: 'sync', - selector: 'organization_id' - }]; - return sharingRules; -}; -/** - * Compute the RelationshipItem that can be referenced as a sharing recipient - * - * @param {Recipient} item The recipient of a sharing - * - * @returns {RelationshipItem} The RelationshipItem that can be referenced as a sharing recipient - */ - - -var toRelationshipItem = function toRelationshipItem(item) { - return { - id: item._id, - type: item._type - }; }; -var _default = SharingCollection; -exports.default = _default; +exports.buildURL = buildURL; /***/ }), -/* 679 */ +/* 705 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = exports.getPermissionsFor = void 0; +exports.FetchError = exports.default = void 0; -var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(540)); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(543)); +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -var _regenerator = _interopRequireDefault(__webpack_require__(545)); +var _assertThisInitialized2 = _interopRequireDefault(__webpack_require__(557)); -var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(620)); +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); +var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(706)); -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +var EXPIRED_TOKEN = /Expired token/; +var CLIENT_NOT_FOUND = /Client not found/; +var INVALID_TOKEN = /Invalid JWT token/; +var _default = { + EXPIRED_TOKEN: EXPIRED_TOKEN, + CLIENT_NOT_FOUND: CLIENT_NOT_FOUND, + INVALID_TOKEN: INVALID_TOKEN +}; +exports.default = _default; -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +var FetchError = +/*#__PURE__*/ +function (_Error) { + (0, _inherits2.default)(FetchError, _Error); -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); + function FetchError(response, reason) { + var _this; -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); + (0, _classCallCheck2.default)(this, FetchError); + _this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(FetchError).call(this)); -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); + if (Error.captureStackTrace) { + Error.captureStackTrace((0, _assertThisInitialized2.default)(_this), _this.constructor); + } // WARN We have to hardcode this because babel doesn't play nice when extending Error -var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(619)); -var _FileCollection = __webpack_require__(665); + _this.name = 'FetchError'; + _this.response = response; + _this.url = response.url; + _this.status = response.status; + _this.reason = reason; + Object.defineProperty((0, _assertThisInitialized2.default)(_this), 'message', { + value: reason.message || (typeof reason === 'string' ? reason : JSON.stringify(reason)) + }); + return _this; + } -var _utils = __webpack_require__(629); + return FetchError; +}((0, _wrapNativeSuper2.default)(Error)); -function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } +exports.FetchError = FetchError; -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } +/***/ }), +/* 706 */ +/***/ (function(module, exports, __webpack_require__) { -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } +var getPrototypeOf = __webpack_require__(558); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +var setPrototypeOf = __webpack_require__(560); -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +var isNativeFunction = __webpack_require__(707); -function _templateObject3() { - var data = (0, _taggedTemplateLiteral2.default)(["/permissions/doctype/", "/shared-by-link"]); +var construct = __webpack_require__(708); - _templateObject3 = function _templateObject3() { - return data; - }; +function _wrapNativeSuper(Class) { + var _cache = typeof Map === "function" ? new Map() : undefined; - return data; -} + module.exports = _wrapNativeSuper = function _wrapNativeSuper(Class) { + if (Class === null || !isNativeFunction(Class)) return Class; -function _templateObject2() { - var data = (0, _taggedTemplateLiteral2.default)(["/permissions/", ""]); + if (typeof Class !== "function") { + throw new TypeError("Super expression must either be null or a function"); + } - _templateObject2 = function _templateObject2() { - return data; - }; + if (typeof _cache !== "undefined") { + if (_cache.has(Class)) return _cache.get(Class); - return data; -} + _cache.set(Class, Wrapper); + } -function _templateObject() { - var data = (0, _taggedTemplateLiteral2.default)(["/permissions/", ""]); + function Wrapper() { + return construct(Class, arguments, getPrototypeOf(this).constructor); + } - _templateObject = function _templateObject() { - return data; + Wrapper.prototype = Object.create(Class.prototype, { + constructor: { + value: Wrapper, + enumerable: false, + writable: true, + configurable: true + } + }); + return setPrototypeOf(Wrapper, Class); }; - return data; + module.exports["default"] = module.exports, module.exports.__esModule = true; + return _wrapNativeSuper(Class); } -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } - -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } - -var normalizePermission = function normalizePermission(perm) { - return (0, _DocumentCollection2.normalizeDoc)(perm, 'io.cozy.permissions'); -}; -/** - * Implements `DocumentCollection` API along with specific methods for `io.cozy.permissions`. - */ - - -var PermissionCollection = /*#__PURE__*/function (_DocumentCollection) { - (0, _inherits2.default)(PermissionCollection, _DocumentCollection); +module.exports = _wrapNativeSuper; +module.exports["default"] = module.exports, module.exports.__esModule = true; - var _super = _createSuper(PermissionCollection); +/***/ }), +/* 707 */ +/***/ (function(module, exports) { - function PermissionCollection() { - (0, _classCallCheck2.default)(this, PermissionCollection); - return _super.apply(this, arguments); - } +function _isNativeFunction(fn) { + return Function.toString.call(fn).indexOf("[native code]") !== -1; +} - (0, _createClass2.default)(PermissionCollection, [{ - key: "get", - value: function () { - var _get = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(id) { - var resp; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - _context.next = 2; - return this.stackClient.fetchJSON('GET', (0, _utils.uri)(_templateObject(), id)); +module.exports = _isNativeFunction; +module.exports["default"] = module.exports, module.exports.__esModule = true; - case 2: - resp = _context.sent; - return _context.abrupt("return", { - data: normalizePermission(resp.data) - }); +/***/ }), +/* 708 */ +/***/ (function(module, exports, __webpack_require__) { - case 4: - case "end": - return _context.stop(); - } - } - }, _callee, this); - })); +var setPrototypeOf = __webpack_require__(560); - function get(_x) { - return _get.apply(this, arguments); - } +var isNativeReflectConstruct = __webpack_require__(709); - return get; - }() - /** - * Create a new set of permissions - * It can also associates one or more codes to it, via the codes parameter - * - * @param {object} permission - * @param {string} permission.codes A comma separed list of values (defaulted to code) - * @param {string} permission.ttl Make the codes expire after a delay (bigduration format) - * @param {boolean} permission.tiny If set to true then the generated shortcode will be 6 digits - * Cozy-Stack has a few conditions to be able to use this tiny shortcode ATM you have to specifiy - * a ttl < 1h, but it can change. - * see https://docs.cozy.io/en/cozy-stack/permissions/#post-permissions for exact informations - * - * bigduration format: https://github.com/justincampbell/bigduration/blob/master/README.md - * @see https://docs.cozy.io/en/cozy-stack/permissions/#post-permissions - * - */ +function _construct(Parent, args, Class) { + if (isNativeReflectConstruct()) { + module.exports = _construct = Reflect.construct; + module.exports["default"] = module.exports, module.exports.__esModule = true; + } else { + module.exports = _construct = function _construct(Parent, args, Class) { + var a = [null]; + a.push.apply(a, args); + var Constructor = Function.bind.apply(Parent, a); + var instance = new Constructor(); + if (Class) setPrototypeOf(instance, Class.prototype); + return instance; + }; - }, { - key: "create", - value: function () { - var _create = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(_ref) { - var _id, _type, _ref$codes, codes, ttl, tiny, attributes, searchParams, resp; + module.exports["default"] = module.exports, module.exports.__esModule = true; + } - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - _id = _ref._id, _type = _ref._type, _ref$codes = _ref.codes, codes = _ref$codes === void 0 ? 'code' : _ref$codes, ttl = _ref.ttl, tiny = _ref.tiny, attributes = (0, _objectWithoutProperties2.default)(_ref, ["_id", "_type", "codes", "ttl", "tiny"]); - searchParams = new URLSearchParams(); - searchParams.append('codes', codes); - if (ttl) searchParams.append('ttl', ttl); - if (tiny) searchParams.append('tiny', true); - _context2.next = 7; - return this.stackClient.fetchJSON('POST', "/permissions?".concat(searchParams), { - data: { - type: 'io.cozy.permissions', - attributes: attributes - } - }); + return _construct.apply(null, arguments); +} - case 7: - resp = _context2.sent; - return _context2.abrupt("return", { - data: normalizePermission(resp.data) - }); +module.exports = _construct; +module.exports["default"] = module.exports, module.exports.__esModule = true; - case 9: - case "end": - return _context2.stop(); - } - } - }, _callee2, this); - })); +/***/ }), +/* 709 */ +/***/ (function(module, exports) { - function create(_x2) { - return _create.apply(this, arguments); - } +function _isNativeReflectConstruct() { + if (typeof Reflect === "undefined" || !Reflect.construct) return false; + if (Reflect.construct.sham) return false; + if (typeof Proxy === "function") return true; - return create; - }() - /** - * Adds a permission to the given document. Document type must be - * `io.cozy.apps`, `io.cozy.konnectors` or `io.cozy.permissions` - * - * @param {object} document - Document which receives the permission - * @param {object} permission - Describes the permission - * @returns {Promise} - * - * @example - * ``` - * const permissions = await client - * .collection('io.cozy.permissions') - * .add(konnector, { - * folder: { - * type: 'io.cozy.files', - * verbs: ['GET', 'PUT'], - * values: [`io.cozy.files.bc57b60eb2954537b0dcdc6ebd8e9d23`] - * } - * }) - * ``` - */ + try { + Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); + return true; + } catch (e) { + return false; + } +} - }, { - key: "add", - value: function () { - var _add = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(document, permission) { - var endpoint, resp; - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - _context3.t0 = document._type; - _context3.next = _context3.t0 === 'io.cozy.apps' ? 3 : _context3.t0 === 'io.cozy.konnectors' ? 5 : _context3.t0 === 'io.cozy.permissions' ? 7 : 9; - break; +module.exports = _isNativeReflectConstruct; +module.exports["default"] = module.exports, module.exports.__esModule = true; - case 3: - endpoint = "/permissions/apps/".concat(document.slug); - return _context3.abrupt("break", 10); +/***/ }), +/* 710 */ +/***/ (function(module, exports, __webpack_require__) { - case 5: - endpoint = "/permissions/konnectors/".concat(document.slug); - return _context3.abrupt("break", 10); +"use strict"; - case 7: - endpoint = "/permissions/".concat(document._id); - return _context3.abrupt("break", 10); - case 9: - throw new Error('Permissions can only be added on existing permissions, apps and konnectors.'); +var _interopRequireDefault = __webpack_require__(532); - case 10: - _context3.next = 12; - return this.stackClient.fetchJSON('PATCH', endpoint, { - data: { - type: 'io.cozy.permissions', - attributes: { - permissions: permission - } - } - }); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; - case 12: - resp = _context3.sent; - return _context3.abrupt("return", { - data: normalizePermission(resp.data) - }); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - case 14: - case "end": - return _context3.stop(); - } - } - }, _callee3, this); - })); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); - function add(_x3, _x4) { - return _add.apply(this, arguments); - } +var AppToken = +/*#__PURE__*/ +function () { + function AppToken(token) { + (0, _classCallCheck2.default)(this, AppToken); + this.token = token || ''; + } - return add; - }() - }, { - key: "destroy", - value: function destroy(permission) { - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject2(), permission.id)); + (0, _createClass2.default)(AppToken, [{ + key: "toAuthHeader", + value: function toAuthHeader() { + return 'Bearer ' + this.token; } }, { - key: "findLinksByDoctype", - value: function () { - var _findLinksByDoctype = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(doctype) { - var resp; - return _regenerator.default.wrap(function _callee4$(_context4) { - while (1) { - switch (_context4.prev = _context4.next) { - case 0: - _context4.next = 2; - return this.stackClient.fetchJSON('GET', (0, _utils.uri)(_templateObject3(), doctype)); - - case 2: - resp = _context4.sent; - return _context4.abrupt("return", _objectSpread(_objectSpread({}, resp), {}, { - data: resp.data.map(normalizePermission) - })); - - case 4: - case "end": - return _context4.stop(); - } - } - }, _callee4, this); - })); - - function findLinksByDoctype(_x5) { - return _findLinksByDoctype.apply(this, arguments); - } - - return findLinksByDoctype; - }() - }, { - key: "findApps", - value: function () { - var _findApps = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5() { - var resp; - return _regenerator.default.wrap(function _callee5$(_context5) { - while (1) { - switch (_context5.prev = _context5.next) { - case 0: - _context5.next = 2; - return this.stackClient.fetchJSON('GET', '/apps/'); - - case 2: - resp = _context5.sent; - return _context5.abrupt("return", _objectSpread(_objectSpread({}, resp), {}, { - data: resp.data.map(function (a) { - return _objectSpread({ - _id: a.id - }, a); - }) - })); - - case 4: - case "end": - return _context5.stop(); - } - } - }, _callee5, this); - })); - - function findApps() { - return _findApps.apply(this, arguments); - } - - return findApps; - }() + key: "toBasicAuth", + value: function toBasicAuth() { + return "user:".concat(this.token, "@"); + } /** - * Create a share link + * Get the app token string * - * @param {{_id, _type}} document - cozy document - * @param {object} options - options - * @param {string[]} options.verbs - explicit permissions to use + * @see CozyStackClient.getAccessToken + * @returns {string} token */ }, { - key: "createSharingLink", - value: function () { - var _createSharingLink = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee6(document) { - var options, - verbs, - resp, - _args6 = arguments; - return _regenerator.default.wrap(function _callee6$(_context6) { - while (1) { - switch (_context6.prev = _context6.next) { - case 0: - options = _args6.length > 1 && _args6[1] !== undefined ? _args6[1] : {}; - verbs = options.verbs; - _context6.next = 4; - return this.stackClient.fetchJSON('POST', "/permissions?codes=email", { - data: { - type: 'io.cozy.permissions', - attributes: { - permissions: getPermissionsFor(document, true, verbs ? { - verbs: verbs - } : {}) - } - } - }); + key: "getAccessToken", + value: function getAccessToken() { + return this.token; + } + }]); + return AppToken; +}(); - case 4: - resp = _context6.sent; - return _context6.abrupt("return", { - data: normalizePermission(resp.data) - }); +exports.default = AppToken; - case 6: - case "end": - return _context6.stop(); - } - } - }, _callee6, this); - })); +/***/ }), +/* 711 */ +/***/ (function(module, exports, __webpack_require__) { - function createSharingLink(_x6) { - return _createSharingLink.apply(this, arguments); - } +"use strict"; - return createSharingLink; - }() - /** - * Follow the next link to fetch the next permissions - * - * @param {object} permissions JSON-API based permissions document - */ - }, { - key: "fetchPermissionsByLink", - value: function () { - var _fetchPermissionsByLink = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee7(permissions) { - return _regenerator.default.wrap(function _callee7$(_context7) { - while (1) { - switch (_context7.prev = _context7.next) { - case 0: - if (!(permissions.links && permissions.links.next)) { - _context7.next = 4; - break; - } +var _interopRequireDefault = __webpack_require__(532); - _context7.next = 3; - return this.stackClient.fetchJSON('GET', permissions.links.next); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; - case 3: - return _context7.abrupt("return", _context7.sent); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - case 4: - case "end": - return _context7.stop(); - } - } - }, _callee7, this); - })); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); - function fetchPermissionsByLink(_x7) { - return _fetchPermissionsByLink.apply(this, arguments); - } +var AccessToken = +/*#__PURE__*/ +function () { + function AccessToken(data) { + (0, _classCallCheck2.default)(this, AccessToken); + if (typeof data === 'string') data = JSON.parse(data); + this.tokenType = data.token_type || data.tokenType; + this.accessToken = data.access_token || data.accessToken; + this.refreshToken = data.refresh_token || data.refreshToken; + this.scope = data.scope; + } - return fetchPermissionsByLink; - }() + (0, _createClass2.default)(AccessToken, [{ + key: "toAuthHeader", + value: function toAuthHeader() { + return 'Bearer ' + this.accessToken; + } + }, { + key: "toBasicAuth", + value: function toBasicAuth() { + return "user:".concat(this.accessToken, "@"); + } + }, { + key: "toJSON", + value: function toJSON() { + return { + tokenType: this.tokenType, + accessToken: this.accessToken, + refreshToken: this.refreshToken, + scope: this.scope + }; + } + }, { + key: "toString", + value: function toString() { + return JSON.stringify(this.toJSON()); + } /** + * Get the access token string * - * @param {object} document Cozy doc - * @returns {object} with all the permissions + * @see CozyStackClient.getAccessToken + * @returns {string} token */ }, { - key: "fetchAllLinks", - value: function () { - var _fetchAllLinks = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee8(document) { - var allLinks, resp, _allLinks$data; - - return _regenerator.default.wrap(function _callee8$(_context8) { - while (1) { - switch (_context8.prev = _context8.next) { - case 0: - _context8.next = 2; - return this.findLinksByDoctype(document._type); - - case 2: - allLinks = _context8.sent; - resp = allLinks; - - case 4: - if (!(resp.links && resp.links.next)) { - _context8.next = 11; - break; - } - - _context8.next = 7; - return this.fetchPermissionsByLink(resp); - - case 7: - resp = _context8.sent; - - (_allLinks$data = allLinks.data).push.apply(_allLinks$data, (0, _toConsumableArray2.default)(resp.data.map(normalizePermission))); - - _context8.next = 4; - break; - - case 11: - return _context8.abrupt("return", allLinks); - - case 12: - case "end": - return _context8.stop(); - } - } - }, _callee8, this); - })); - - function fetchAllLinks(_x8) { - return _fetchAllLinks.apply(this, arguments); - } + key: "getAccessToken", + value: function getAccessToken() { + return this.accessToken; + } + }]); + return AccessToken; +}(); - return fetchAllLinks; - }() - /** - * Destroy a sharing link and the related permissions - * - * @param {object} document - */ +exports.default = AccessToken; - }, { - key: "revokeSharingLink", - value: function () { - var _revokeSharingLink = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee9(document) { - var allLinks, links, _iterator, _step, perm; +/***/ }), +/* 712 */ +/***/ (function(module, exports, __webpack_require__) { - return _regenerator.default.wrap(function _callee9$(_context9) { - while (1) { - switch (_context9.prev = _context9.next) { - case 0: - _context9.next = 2; - return this.fetchAllLinks(document); +"use strict"; - case 2: - allLinks = _context9.sent; - links = allLinks.data.filter(function (perm) { - return isPermissionRelatedTo(perm, document); - }); - _iterator = _createForOfIteratorHelper(links); - _context9.prev = 5; - _iterator.s(); +var _interopRequireWildcard = __webpack_require__(530); - case 7: - if ((_step = _iterator.n()).done) { - _context9.next = 13; - break; - } +var _interopRequireDefault = __webpack_require__(532); - perm = _step.value; - _context9.next = 11; - return this.destroy(perm); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.isDirectory = exports.isFile = void 0; - case 11: - _context9.next = 7; - break; +var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(550)); - case 13: - _context9.next = 18; - break; +var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(687)); - case 15: - _context9.prev = 15; - _context9.t0 = _context9["catch"](5); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - _iterator.e(_context9.t0); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); - case 18: - _context9.prev = 18; +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - _iterator.f(); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); - return _context9.finish(18); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); - case 21: - case "end": - return _context9.stop(); - } - } - }, _callee9, this, [[5, 15, 18, 21]]); - })); +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); - function revokeSharingLink(_x9) { - return _revokeSharingLink.apply(this, arguments); - } +var _assertThisInitialized2 = _interopRequireDefault(__webpack_require__(557)); - return revokeSharingLink; - }() - }, { - key: "getOwnPermissions", - value: function () { - var _getOwnPermissions = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee10() { - return _regenerator.default.wrap(function _callee10$(_context10) { - while (1) { - switch (_context10.prev = _context10.next) { - case 0: - console.warn('getOwnPermissions is deprecated, please use fetchOwnPermissions instead'); - return _context10.abrupt("return", this.fetchOwnPermissions()); +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); - case 2: - case "end": - return _context10.stop(); - } - } - }, _callee10, this); - })); +var _defineProperty2 = _interopRequireDefault(__webpack_require__(546)); - function getOwnPermissions() { - return _getOwnPermissions.apply(this, arguments); - } +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); - return getOwnPermissions; - }() - /** - * async fetchOwnPermissions - Fetches permissions - * - * @typedef {object} Permission - * - * @returns {Permission} permission - */ +var _lite = _interopRequireDefault(__webpack_require__(713)); - }, { - key: "fetchOwnPermissions", - value: function () { - var _fetchOwnPermissions = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee11() { - var resp; - return _regenerator.default.wrap(function _callee11$(_context11) { - while (1) { - switch (_context11.prev = _context11.next) { - case 0: - _context11.next = 2; - return this.stackClient.fetchJSON('GET', '/permissions/self'); +var _has = _interopRequireDefault(__webpack_require__(716)); - case 2: - resp = _context11.sent; - return _context11.abrupt("return", { - data: normalizePermission(resp.data), - included: resp.included ? resp.included.map(normalizePermission) : [] - }); +var _get = _interopRequireDefault(__webpack_require__(372)); - case 4: - case "end": - return _context11.stop(); - } - } - }, _callee11, this); - })); +var _pick = _interopRequireDefault(__webpack_require__(677)); - function fetchOwnPermissions() { - return _fetchOwnPermissions.apply(this, arguments); - } +var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(686)); - return fetchOwnPermissions; - }() - }]); - return PermissionCollection; -}(_DocumentCollection2.default); -/** - * Build a permission set - * - * @param {{_id, _type}} document - cozy document - * @param {boolean} publicLink - are the permissions for a public link ? - * @param {object} options - options - * @param {string[]} options.verbs - explicit permissions to use - * @returns {object} permissions object that can be sent through /permissions/* - */ +var _utils = __webpack_require__(688); +var querystring = _interopRequireWildcard(__webpack_require__(704)); -var getPermissionsFor = function getPermissionsFor(document) { - var publicLink = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - var _id = document._id, - _type = document._type; - var verbs = options.verbs ? options.verbs : publicLink ? ['GET'] : ['ALL']; // TODO: this works for albums, but it needs to be generalized and integrated - // with cozy-client ; some sort of doctype "schema" will be needed here +var _errors = __webpack_require__(705); - return (0, _FileCollection.isFile)(document) ? { - files: { - type: 'io.cozy.files', - verbs: verbs, - values: [_id] - } - } : { - collection: { - type: _type, - verbs: verbs, - values: [_id] - }, - files: { - type: 'io.cozy.files', - verbs: verbs, - values: ["".concat(_type, "/").concat(_id)], - selector: 'referenced_by' - } - }; -}; +function _templateObject19() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/", "/versions"]); -exports.getPermissionsFor = getPermissionsFor; -PermissionCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; + _templateObject19 = function _templateObject19() { + return data; + }; -var isPermissionRelatedTo = function isPermissionRelatedTo(perm, document) { - var _id = document._id; - return (0, _FileCollection.isFile)(document) ? perm.attributes.permissions.files.values.indexOf(_id) !== -1 : perm.attributes.permissions.collection.values.indexOf(_id) !== -1; -}; + return data; +} -var _default = PermissionCollection; -exports.default = _default; +function _templateObject18() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/upload/metadata"]); -/***/ }), -/* 680 */ -/***/ (function(module, exports, __webpack_require__) { + _templateObject18 = function _templateObject18() { + return data; + }; -"use strict"; + return data; +} +function _templateObject17() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/", ""]); -var _interopRequireDefault = __webpack_require__(530); + _templateObject17 = function _templateObject17() { + return data; + }; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.SETTINGS_DOCTYPE = void 0; + return data; +} -var _regenerator = _interopRequireDefault(__webpack_require__(545)); +function _templateObject16() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/", "?Name=", "&Type=directory"]); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + _templateObject16 = function _templateObject16() { + return data; + }; -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + return data; +} -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +function _templateObject15() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/metadata?Path=", ""]); -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + _templateObject15 = function _templateObject15() { + return data; + }; -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); + return data; +} -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); +function _templateObject14() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/", ""]); -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); + _templateObject14 = function _templateObject14() { + return data; + }; -var _DocumentCollection2 = _interopRequireDefault(__webpack_require__(619)); + return data; +} -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +function _templateObject13() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/downloads?Path=", ""]); -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + _templateObject13 = function _templateObject13() { + return data; + }; -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } + return data; +} -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +function _templateObject12() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/downloads?VersionId=", "&Filename=", ""]); -var SETTINGS_DOCTYPE = 'io.cozy.settings'; -/** - * Implements `DocumentCollection` API to interact with the /settings endpoint of the stack - */ + _templateObject12 = function _templateObject12() { + return data; + }; -exports.SETTINGS_DOCTYPE = SETTINGS_DOCTYPE; + return data; +} -var SettingsCollection = /*#__PURE__*/function (_DocumentCollection) { - (0, _inherits2.default)(SettingsCollection, _DocumentCollection); +function _templateObject11() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/downloads?Id=", "&Filename=", ""]); - var _super = _createSuper(SettingsCollection); + _templateObject11 = function _templateObject11() { + return data; + }; - function SettingsCollection(stackClient) { - (0, _classCallCheck2.default)(this, SettingsCollection); - return _super.call(this, SETTINGS_DOCTYPE, stackClient); - } - /** - * async get - Calls a route on the /settings API - * - * @param {string} path The setting route to call, eg `instance` or `context` - * @returns {object} The response from the route - */ + return data; +} +function _templateObject10() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/", "?Name=", "&Type=file&Executable=", ""]); - (0, _createClass2.default)(SettingsCollection, [{ - key: "get", - value: function () { - var _get = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(path) { - var resp; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - _context.next = 2; - return this.stackClient.fetchJSON('GET', "/settings/".concat(path)); + _templateObject10 = function _templateObject10() { + return data; + }; - case 2: - resp = _context.sent; - return _context.abrupt("return", { - data: _DocumentCollection2.default.normalizeDoctypeJsonApi(SETTINGS_DOCTYPE)(_objectSpread({ - id: "/settings/".concat(path) - }, resp.data), resp) - }); + return data; +} - case 4: - case "end": - return _context.stop(); - } - } - }, _callee, this); - })); +function _templateObject9() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/", "?Name=", "&Type=file&Executable=", "&MetadataID=", ""]); - function get(_x) { - return _get.apply(this, arguments); - } + _templateObject9 = function _templateObject9() { + return data; + }; - return get; - }() - }]); - return SettingsCollection; -}(_DocumentCollection2.default); + return data; +} -SettingsCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; -var _default = SettingsCollection; -exports.default = _default; +function _templateObject8() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/", ""]); -/***/ }), -/* 681 */ -/***/ (function(module, exports, __webpack_require__) { + _templateObject8 = function _templateObject8() { + return data; + }; -"use strict"; + return data; +} +function _templateObject7() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/trash/", ""]); -var _interopRequireDefault = __webpack_require__(530); + _templateObject7 = function _templateObject7() { + return data; + }; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.NOTES_URL_DOCTYPE = exports.NOTES_DOCTYPE = void 0; + return data; +} -var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(620)); +function _templateObject6() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/", ""]); -var _regenerator = _interopRequireDefault(__webpack_require__(545)); + _templateObject6 = function _templateObject6() { + return data; + }; -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + return data; +} -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +function _templateObject5() { + var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "/relationships/references"]); -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + _templateObject5 = function _templateObject5() { + return data; + }; -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); + return data; +} -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); +function _templateObject4() { + var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "/relationships/references"]); -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); + _templateObject4 = function _templateObject4() { + return data; + }; -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + return data; +} -var _DocumentCollection2 = _interopRequireDefault(__webpack_require__(619)); +function _templateObject3() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/", "/relationships/referenced_by"]); -var _utils = __webpack_require__(629); + _templateObject3 = function _templateObject3() { + return data; + }; -var _NotesSchema = __webpack_require__(682); + return data; +} function _templateObject2() { - var data = (0, _taggedTemplateLiteral2.default)(["/notes/", "/open"]); + var data = (0, _taggedTemplateLiteral2.default)(["/files/", "/relationships/referenced_by"]); _templateObject2 = function _templateObject2() { return data; @@ -108011,7 +104376,7 @@ function _templateObject2() { } function _templateObject() { - var data = (0, _taggedTemplateLiteral2.default)(["/files/", ""]); + var data = (0, _taggedTemplateLiteral2.default)(["/data/", "/", "/relationships/references"]); _templateObject = function _templateObject() { return data; @@ -108020,68 +104385,153 @@ function _templateObject() { return data; } -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +var ROOT_DIR_ID = 'io.cozy.files.root-dir'; +var CONTENT_TYPE_OCTET_STREAM = 'application/octet-stream'; + +var normalizeFile = function normalizeFile(file) { + return (0, _objectSpread2.default)({}, (0, _DocumentCollection2.normalizeDoc)(file, 'io.cozy.files'), file.attributes); +}; + +var sanitizeFileName = function sanitizeFileName(name) { + return name && name.trim(); +}; -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +var getFileTypeFromName = function getFileTypeFromName(name) { + return _lite.default.getType(name) || CONTENT_TYPE_OCTET_STREAM; +}; -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +var isFile = function isFile(_ref) { + var _type = _ref._type, + type = _ref.type; + return _type === 'io.cozy.files' || type === 'directory' || type === 'file'; +}; -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +exports.isFile = isFile; -var NOTES_DOCTYPE = 'io.cozy.notes'; -exports.NOTES_DOCTYPE = NOTES_DOCTYPE; -var NOTES_URL_DOCTYPE = 'io.cozy.notes.url'; -exports.NOTES_URL_DOCTYPE = NOTES_URL_DOCTYPE; +var isDirectory = function isDirectory(_ref2) { + var type = _ref2.type; + return type === 'directory'; +}; -var normalizeDoc = _DocumentCollection2.default.normalizeDoctypeJsonApi(NOTES_DOCTYPE); +exports.isDirectory = isDirectory; -var normalizeNote = function normalizeNote(note) { - return _objectSpread(_objectSpread({}, normalizeDoc(note, NOTES_DOCTYPE)), note.attributes); +var raceWithCondition = function raceWithCondition(promises, predicate) { + return new Promise(function (resolve) { + promises.forEach(function (p) { + return p.then(function (res) { + if (predicate(res)) { + resolve(true); + } + }); + }); + Promise.all(promises).then(function () { + return resolve(false); + }); + }); }; -var normalizeNoteUrl = function normalizeNoteUrl(noteUrl) { - return _objectSpread(_objectSpread({}, _DocumentCollection2.default.normalizeDoctypeJsonApi(NOTES_URL_DOCTYPE)(noteUrl)), noteUrl.attributes); +var dirName = function dirName(path) { + var lastIndex = path.lastIndexOf('/'); + return path.substring(0, lastIndex); }; /** - * Implements `DocumentCollection` API to interact with the /notes endpoint of the stack + * Implements `DocumentCollection` API along with specific methods for + * `io.cozy.files`. + * + * Files are a special type of documents and are handled differently by the stack: + * special routes are to be used, and there is a notion of referenced files, aka + * files associated to a specific document */ -var NotesCollection = /*#__PURE__*/function (_DocumentCollection) { - (0, _inherits2.default)(NotesCollection, _DocumentCollection); +var FileCollection = +/*#__PURE__*/ +function (_DocumentCollection) { + (0, _inherits2.default)(FileCollection, _DocumentCollection); - var _super = _createSuper(NotesCollection); + function FileCollection(doctype, stackClient) { + var _this; - function NotesCollection(stackClient) { - (0, _classCallCheck2.default)(this, NotesCollection); - return _super.call(this, NOTES_DOCTYPE, stackClient); + (0, _classCallCheck2.default)(this, FileCollection); + _this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(FileCollection).call(this, doctype, stackClient)); + (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "extractResponseLinkRelated", function (res) { + var href = res.links && res.links.related; + if (!href) throw new Error('No related link in server response'); + return _this.stackClient.fullpath(href); + }); + _this.specialDirectories = {}; + return _this; } /** - * Fetches all notes + * Fetches the file's data * - * @returns {{data, links, meta}} The JSON API conformant response. + * @param {string} id File id + * @returns {{data, included}} Information about the file or folder and it's descendents */ - (0, _createClass2.default)(NotesCollection, [{ - key: "all", + (0, _createClass2.default)(FileCollection, [{ + key: "get", + value: function get(id) { + return this.statById(id); + } + /** + * Returns a filtered list of documents using a Mango selector. + * + * The returned documents are paginated by the stack. + * + * @param {object} selector The Mango selector. + * @param {{sort, fields, limit, skip, indexId, bookmark}} options The query options. + * @returns {{data, meta, skip, next, bookmark}} The JSON API conformant response. + * @throws {FetchError} + */ + + }, { + key: "find", value: function () { - var _all = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() { - var resp; + var _find = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(selector) { + var options, + _options$skip, + skip, + resp, + nextLink, + nextLinkURL, + nextBookmark, + _args = arguments; + return _regenerator.default.wrap(function _callee$(_context) { while (1) { switch (_context.prev = _context.next) { case 0: - _context.next = 2; - return this.stackClient.fetchJSON('GET', '/notes'); + options = _args.length > 1 && _args[1] !== undefined ? _args[1] : {}; + _options$skip = options.skip, skip = _options$skip === void 0 ? 0 : _options$skip; + _context.t0 = this.stackClient; + _context.next = 5; + return this.toMangoOptions(selector, options); - case 2: + case 5: + _context.t1 = _context.sent; + _context.next = 8; + return _context.t0.fetchJSON.call(_context.t0, 'POST', '/files/_find', _context.t1); + + case 8: resp = _context.sent; - return _context.abrupt("return", _objectSpread(_objectSpread({}, resp), {}, { - data: resp.data.map(normalizeNote) - })); + nextLink = (0, _get.default)(resp, 'links.next', ''); + nextLinkURL = new URL("".concat(this.stackClient.uri).concat(nextLink)); + nextBookmark = nextLinkURL.searchParams.get('page[cursor]'); + return _context.abrupt("return", { + data: resp.data.map(function (f) { + return normalizeFile(f); + }), + meta: resp.meta, + next: resp.meta.count > skip + resp.data.length, + skip: skip, + bookmark: nextBookmark || undefined + }); - case 4: + case 13: case "end": return _context.stop(); } @@ -108089,44 +104539,69 @@ var NotesCollection = /*#__PURE__*/function (_DocumentCollection) { }, _callee, this); })); - function all() { - return _all.apply(this, arguments); - } - - return all; + return function find(_x) { + return _find.apply(this, arguments); + }; }() /** - * Destroys the note on the server - * - * @param {io.cozy.notes} note The note document to destroy - * @param {string} note._id The note's id + * async findReferencedBy - Returns the list of files referenced by a document — see https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/ * - * @returns {{ data }} The deleted note + * @param {object} document A JSON representing a document, with at least a `_type` and `_id` field. + * @param {object} options Additional options + * @param {number} options.skip For skip-based pagination, the number of referenced files to skip. + * @param {number} options.limit For pagination, the number of results to return. + * @param {object} options.cursor For cursor-based pagination, the index cursor. + * @returns {object} The JSON API conformant response. */ }, { - key: "destroy", + key: "findReferencedBy", value: function () { - var _destroy = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(_ref) { - var _id, resp; + var _findReferencedBy = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(document) { + var _ref3, + _ref3$skip, + skip, + limit, + cursor, + params, + url, + path, + resp, + _args2 = arguments; return _regenerator.default.wrap(function _callee2$(_context2) { while (1) { switch (_context2.prev = _context2.next) { case 0: - _id = _ref._id; - _context2.next = 3; - return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject(), _id)); + _ref3 = _args2.length > 1 && _args2[1] !== undefined ? _args2[1] : {}, _ref3$skip = _ref3.skip, skip = _ref3$skip === void 0 ? 0 : _ref3$skip, limit = _ref3.limit, cursor = _ref3.cursor; + params = { + include: 'files', + 'page[limit]': limit, + 'page[cursor]': cursor, + sort: 'datetime' + }; + url = (0, _utils.uri)(_templateObject(), document._type, document._id); + path = querystring.buildURL(url, params); + _context2.next = 6; + return this.stackClient.fetchJSON('GET', path); - case 3: + case 6: resp = _context2.sent; return _context2.abrupt("return", { - data: _objectSpread(_objectSpread({}, normalizeNote(resp.data)), {}, { - _deleted: true - }) + data: resp.data.map(function (f) { + return normalizeFile(f); + }), + included: resp.included ? resp.included.map(function (f) { + return normalizeFile(f); + }) : [], + next: (0, _has.default)(resp, 'links.next'), + meta: resp.meta, + skip: skip }); - case 5: + case 8: case "end": return _context2.stop(); } @@ -108134,7622 +104609,7630 @@ var NotesCollection = /*#__PURE__*/function (_DocumentCollection) { }, _callee2, this); })); - function destroy(_x) { - return _destroy.apply(this, arguments); - } - - return destroy; + return function findReferencedBy(_x2) { + return _findReferencedBy.apply(this, arguments); + }; }() /** - * Create a note + * Add referenced_by documents to a file — see https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/#post-filesfile-idrelationshipsreferenced_by * - * @param {object} option - * @param {string} option.dir_id dir_id where to create the note - * @returns {{data, links, meta}} The JSON API conformant response. + * For example, to have an album referenced by a file: + * ``` + * addReferencedBy({_id: 123, _type: "io.cozy.files", name: "cozy.jpg"}, [{_id: 456, _type: "io.cozy.photos.albums", name: "Happy Cloud"}]) + * ``` + * + * @param {FileDocument} document A JSON representing the file + * @param {Array} documents An array of JSON documents having a `_type` and `_id` field. + * @returns {object} The JSON API conformant response. */ }, { - key: "create", - value: function () { - var _create = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(_ref2) { - var dir_id, resp; - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - dir_id = _ref2.dir_id; - _context3.next = 3; - return this.stackClient.fetchJSON('POST', '/notes', { - data: { - type: 'io.cozy.notes.documents', - attributes: { - title: '', - schema: (0, _NotesSchema.getDefaultSchema)(), - dir_id: dir_id - } - } - }); - - case 3: - resp = _context3.sent; - return _context3.abrupt("return", _objectSpread(_objectSpread({}, resp), {}, { - data: normalizeNote(resp.data) - })); - - case 5: - case "end": - return _context3.stop(); - } - } - }, _callee3, this); - })); - - function create(_x2) { - return _create.apply(this, arguments); - } - - return create; - }() + key: "addReferencedBy", + value: function addReferencedBy(document, documents) { + var refs = documents.map(function (d) { + return { + id: d._id, + type: d._type + }; + }); + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject2(), document._id), { + data: refs + }); + } /** - * Returns the details to build the note's url - * - * @see https://github.com/cozy/cozy-stack/blob/master/docs/notes.md#get-notesidopen + * Remove referenced_by documents from a file — see https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/#delete-filesfile-idrelationshipsreferenced_by * - * @param {io.cozy.notes} note The note document to open - * @param {string} note._id The note's id + * For example, to remove an album reference from a file: + * ``` + * removeReferencedBy({_id: 123, _type: "io.cozy.files", name: "cozy.jpg"}, [{_id: 456, _type: "io.cozy.photos.albums", name: "Happy Cloud"}]) + * ``` * - * @returns {{ data }} The note's url details + * @param {object} document A JSON representing the file + * @param {Array} documents An array of JSON documents having a `_type` and `_id` field. + * @returns {object} The JSON API conformant response. */ }, { - key: "fetchURL", - value: function () { - var _fetchURL = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(_ref3) { - var _id, resp; - - return _regenerator.default.wrap(function _callee4$(_context4) { - while (1) { - switch (_context4.prev = _context4.next) { - case 0: - _id = _ref3._id; - _context4.next = 3; - return this.stackClient.fetchJSON('GET', (0, _utils.uri)(_templateObject2(), _id)); - - case 3: - resp = _context4.sent; - return _context4.abrupt("return", { - data: normalizeNoteUrl(resp.data) - }); - - case 5: - case "end": - return _context4.stop(); - } - } - }, _callee4, this); - })); - - function fetchURL(_x3) { - return _fetchURL.apply(this, arguments); - } - - return fetchURL; - }() + key: "removeReferencedBy", + value: function removeReferencedBy(document, documents) { + var refs = documents.map(function (d) { + return { + id: d._id, + type: d._type + }; + }); + return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject3(), document._id), { + data: refs + }); + } /** - * Returns promise mirror schema for a note + * Add files references to a document — see https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/#post-datatypedoc-idrelationshipsreferences * - * @returns {object} schema + * For example, to add a photo to an album: + * ``` + * addReferencesTo({_id: 456, _type: "io.cozy.photos.albums", name: "Happy Cloud"}, [{_id: 123, _type: "io.cozy.files", name: "cozy.jpg"}]) + * ``` + * + * @param {object} document A JSON representing a document, with at least a `_type` and `_id` field. + * @param {Array} documents An array of JSON files having an `_id` field. + * @returns {object} The JSON API conformant response. */ }, { - key: "getDefaultSchema", - value: function getDefaultSchema() { - return (0, _NotesSchema.getDefaultSchema)(); - } - }]); - return NotesCollection; -}(_DocumentCollection2.default); - -NotesCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; -var _default = NotesCollection; -exports.default = _default; - -/***/ }), -/* 682 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.getDefaultSchema = exports.marks = exports.nodes = void 0; -// taken from a debug of @atlakit/editor/editor-core/create-editor/create-editor -// L139 (new Schema({nodes ,marks})) -// static because the @atlaskit code base requires a real navigator -// TODO: either find and exclude plugins requiring interaction -// or running a JSDOM faking a navigator -var nodes = [['doc', { - content: '(block)+', - marks: 'link' -}], ['paragraph', { - content: 'inline*', - group: 'block', - marks: 'strong code em link strike subsup textColor typeAheadQuery underline', - parseDOM: [{ - tag: 'p' - }] -}], ['text', { - group: 'inline' -}], ['bulletList', { - group: 'block', - content: 'listItem+', - parseDOM: [{ - tag: 'ul' - }] -}], ['orderedList', { - group: 'block', - content: 'listItem+', - parseDOM: [{ - tag: 'ol' - }] -}], ['listItem', { - content: '(paragraph ) (paragraph | bulletList | orderedList )*', - defining: true, - parseDOM: [{ - tag: 'li' - }] -}], ['heading', { - attrs: { - level: { - default: 1 - } - }, - content: 'inline*', - group: 'block', - defining: true, - parseDOM: [{ - tag: 'h1', - attrs: { - level: 1 - } - }, { - tag: 'h2', - attrs: { - level: 2 - } - }, { - tag: 'h3', - attrs: { - level: 3 - } - }, { - tag: 'h4', - attrs: { - level: 4 - } - }, { - tag: 'h5', - attrs: { - level: 5 - } - }, { - tag: 'h6', - attrs: { - level: 6 - } - }] -}], ['blockquote', { - content: 'paragraph+', - group: 'block', - defining: true, - selectable: false, - parseDOM: [{ - tag: 'blockquote' - }] -}], ['rule', { - group: 'block', - parseDOM: [{ - tag: 'hr' - }] -}], ['panel', { - group: 'block', - content: '(paragraph | heading | bulletList | orderedList)+', - attrs: { - panelType: { - default: 'info' - } - }, - parseDOM: [{ - tag: 'div[data-panel-type]' - }] -}], ['confluenceUnsupportedBlock', { - group: 'block', - attrs: { - cxhtml: { - default: null - } - }, - parseDOM: [{ - tag: 'div[data-node-type="confluenceUnsupportedBlock"]' - }] -}], ['confluenceUnsupportedInline', { - group: 'inline', - inline: true, - atom: true, - attrs: { - cxhtml: { - default: null - } - }, - parseDOM: [{ - tag: 'div[data-node-type="confluenceUnsupportedInline"]' - }] -}], ['unsupportedBlock', { - inline: false, - group: 'block', - atom: true, - selectable: true, - attrs: { - originalValue: { - default: {} - } - }, - parseDOM: [{ - tag: '[data-node-type="unsupportedBlock"]' - }] -}], ['unsupportedInline', { - inline: true, - group: 'inline', - selectable: true, - attrs: { - originalValue: { - default: {} - } - }, - parseDOM: [{ - tag: '[data-node-type="unsupportedInline"]' - }] -}], ['hardBreak', { - inline: true, - group: 'inline', - selectable: false, - parseDOM: [{ - tag: 'br' - }] -}], ['table', { - content: 'tableRow+', - attrs: { - isNumberColumnEnabled: { - default: false - }, - layout: { - default: 'default' - }, - __autoSize: { - default: false - } - }, - tableRole: 'table', - isolating: true, - selectable: false, - group: 'block', - parseDOM: [{ - tag: 'table' - }] -}], ['tableHeader', { - content: '(paragraph | panel | blockquote | orderedList | bulletList | rule | heading )+', - attrs: { - colspan: { - default: 1 - }, - rowspan: { - default: 1 - }, - colwidth: { - default: null - }, - background: { - default: null - } - }, - tableRole: 'header_cell', - isolating: true, - marks: '', - parseDOM: [{ - tag: 'th' - }] -}], ['tableRow', { - content: '(tableCell | tableHeader)+', - tableRole: 'row', - parseDOM: [{ - tag: 'tr' - }] -}], ['tableCell', { - content: '(paragraph | panel | blockquote | orderedList | bulletList | rule | heading | unsupportedBlock)+', - attrs: { - colspan: { - default: 1 - }, - rowspan: { - default: 1 - }, - colwidth: { - default: null - }, - background: { - default: null - } - }, - tableRole: 'cell', - marks: '', - isolating: true, - parseDOM: [{ - tag: '.ak-renderer-table-number-column', - ignore: true - }, { - tag: 'td' - }] -}]]; -exports.nodes = nodes; -var marks = [['link', { - excludes: 'color', - group: 'link', - attrs: { - href: {}, - __confluenceMetadata: { - default: null - } - }, - inclusive: false, - parseDOM: [{ - tag: 'a[href]' - }] -}], ['em', { - inclusive: true, - group: 'fontStyle', - parseDOM: [{ - tag: 'i' - }, { - tag: 'em' - }, { - style: 'font-style=italic' - }] -}], ['strong', { - inclusive: true, - group: 'fontStyle', - parseDOM: [{ - tag: 'strong' - }, { - tag: 'b' - }, { - style: 'font-weight' - }] -}], ['textColor', { - attrs: { - color: {} - }, - inclusive: true, - group: 'color', - parseDOM: [{ - style: 'color' - }] -}], ['strike', { - inclusive: true, - group: 'fontStyle', - parseDOM: [{ - tag: 'strike' - }, { - tag: 's' - }, { - tag: 'del' - }, { - style: 'text-decoration' - }] -}], ['subsup', { - inclusive: true, - group: 'fontStyle', - attrs: { - type: { - default: 'sub' - } - }, - parseDOM: [{ - tag: 'sub', - attrs: { - type: 'sub' - } - }, { - tag: 'sup', - attrs: { - type: 'sup' - } - }] -}], ['underline', { - inclusive: true, - group: 'fontStyle', - parseDOM: [{ - tag: 'u' - }, { - style: 'text-decoration' - }] -}], ['code', { - excludes: 'fontStyle link searchQuery color', - inclusive: true, - parseDOM: [{ - tag: 'span.code', - preserveWhitespace: true - }, { - tag: 'code', - preserveWhitespace: true - }, { - tag: 'tt', - preserveWhitespace: true - }, { - tag: 'span', - preserveWhitespace: true - }] -}], ['typeAheadQuery', { - excludes: 'searchQuery', - inclusive: true, - group: 'searchQuery', - parseDOM: [{ - tag: 'span[data-type-ahead-query]' - }], - attrs: { - trigger: { - default: '' + key: "addReferencesTo", + value: function addReferencesTo(document, documents) { + var refs = documents.map(function (d) { + return { + id: d._id, + type: 'io.cozy.files' + }; + }); + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject4(), document._type, document._id), { + data: refs + }); } - } -}]]; -exports.marks = marks; - -var getDefaultSchema = function getDefaultSchema() { - return { - nodes: nodes, - marks: marks - }; -}; - -exports.getDefaultSchema = getDefaultSchema; - -/***/ }), -/* 683 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.SHORTCUTS_DOCTYPE = void 0; + /** + * Remove files references to a document — see https://docs.cozy.io/en/cozy-stack/references-docs-in-vfs/#delete-datatypedoc-idrelationshipsreferences + * + * For example, to remove a photo from an album: + * ``` + * removeReferencesTo({_id: 456, _type: "io.cozy.photos.albums", name: "Happy Cloud"}, [{_id: 123, _type: "io.cozy.files", name: "cozy.jpg"}]) + * ``` + * + * @param {object} document A JSON representing a document, with at least a `_type` and `_id` field. + * @param {Array} documents An array of JSON files having an `_id` field. + * @returns {object} The JSON API conformant response. + */ -var _regenerator = _interopRequireDefault(__webpack_require__(545)); + }, { + key: "removeReferencesTo", + value: function removeReferencesTo(document, documents) { + var refs = documents.map(function (d) { + return { + id: d._id, + type: 'io.cozy.files' + }; + }); + return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject5(), document._type, document._id), { + data: refs + }); + } + /** + * Sends file to trash and removes references to it + * + * @param {FileDocument} file - File that will be sent to trash + * @returns {Promise} - Resolves when references have been removed + * and file has been sent to trash + */ -var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(620)); + }, { + key: "destroy", + value: function () { + var _destroy = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(file) { + var _ref4, + _ref4$ifMatch, + ifMatch, + _id, + relationships, + _iteratorNormalCompletion, + _didIteratorError, + _iteratorError, + _iterator, + _step, + ref, + resp, + _args3 = arguments; -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + return _regenerator.default.wrap(function _callee3$(_context3) { + while (1) { + switch (_context3.prev = _context3.next) { + case 0: + _ref4 = _args3.length > 1 && _args3[1] !== undefined ? _args3[1] : {}, _ref4$ifMatch = _ref4.ifMatch, ifMatch = _ref4$ifMatch === void 0 ? '' : _ref4$ifMatch; + _id = file._id, relationships = file.relationships; -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); + if (!(relationships && relationships.referenced_by && Array.isArray(relationships.referenced_by.data))) { + _context3.next = 29; + break; + } -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + _iteratorNormalCompletion = true; + _didIteratorError = false; + _iteratorError = undefined; + _context3.prev = 6; + _iterator = relationships.referenced_by.data[Symbol.iterator](); -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); + case 8: + if (_iteratorNormalCompletion = (_step = _iterator.next()).done) { + _context3.next = 15; + break; + } -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); + ref = _step.value; + _context3.next = 12; + return this.removeReferencesTo({ + _id: ref.id, + _type: ref.type + }, [{ + _id: _id + }]); -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); + case 12: + _iteratorNormalCompletion = true; + _context3.next = 8; + break; -var _DocumentCollection2 = _interopRequireDefault(__webpack_require__(619)); + case 15: + _context3.next = 21; + break; -var _utils = __webpack_require__(629); + case 17: + _context3.prev = 17; + _context3.t0 = _context3["catch"](6); + _didIteratorError = true; + _iteratorError = _context3.t0; -function _templateObject2() { - var data = (0, _taggedTemplateLiteral2.default)(["/shortcuts/", ""]); + case 21: + _context3.prev = 21; + _context3.prev = 22; - _templateObject2 = function _templateObject2() { - return data; - }; + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } - return data; -} + case 24: + _context3.prev = 24; -function _templateObject() { - var data = (0, _taggedTemplateLiteral2.default)(["/shortcuts"]); + if (!_didIteratorError) { + _context3.next = 27; + break; + } - _templateObject = function _templateObject() { - return data; - }; + throw _iteratorError; - return data; -} + case 27: + return _context3.finish(24); -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } + case 28: + return _context3.finish(21); -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + case 29: + _context3.next = 31; + return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject6(), _id), undefined, { + headers: { + 'If-Match': ifMatch + } + }); -var SHORTCUTS_DOCTYPE = 'io.cozy.files.shortcuts'; -exports.SHORTCUTS_DOCTYPE = SHORTCUTS_DOCTYPE; + case 31: + resp = _context3.sent; + return _context3.abrupt("return", { + data: normalizeFile(resp.data) + }); -var ShortcutsCollection = /*#__PURE__*/function (_DocumentCollection) { - (0, _inherits2.default)(ShortcutsCollection, _DocumentCollection); + case 33: + case "end": + return _context3.stop(); + } + } + }, _callee3, this, [[6, 17, 21, 29], [22,, 24, 28]]); + })); - var _super = _createSuper(ShortcutsCollection); + return function destroy(_x3) { + return _destroy.apply(this, arguments); + }; + }() + /** + * Empty the Trash + */ - function ShortcutsCollection(stackClient) { - (0, _classCallCheck2.default)(this, ShortcutsCollection); - return _super.call(this, SHORTCUTS_DOCTYPE, stackClient); - } - /** - * Create a shortcut - * - * @param {object} attributes shortcut's attributes - * @param {string} attributes.name Filename - * @param {string} attributes.url Shortcut's URL - * @param {string} attributes.dir_id dir_id where to create the shortcut - */ + }, { + key: "emptyTrash", + value: function emptyTrash() { + return this.stackClient.fetchJSON('DELETE', '/files/trash'); + } + /** + * Restores a trashed file. + * + * @param {string} id - The file's id + * @returns {Promise} - A promise that returns the restored file if resolved. + * @throws {FetchError} + * + */ + }, { + key: "restore", + value: function restore(id) { + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject7(), id)); + } + /** + * async deleteFilePermanently - Definitely delete a file + * + * @param {string} id - The id of the file to delete + * @returns {object} The deleted file object + */ - (0, _createClass2.default)(ShortcutsCollection, [{ - key: "create", + }, { + key: "deleteFilePermanently", value: function () { - var _create = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(attributes) { - var path, resp; - return _regenerator.default.wrap(function _callee$(_context) { + var _deleteFilePermanently = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4(id) { + var resp; + return _regenerator.default.wrap(function _callee4$(_context4) { while (1) { - switch (_context.prev = _context.next) { + switch (_context4.prev = _context4.next) { case 0: - if (!attributes.type) { - attributes.type = SHORTCUTS_DOCTYPE; - } - - if (!(!attributes.name || !attributes.url || !attributes.dir_id)) { - _context.next = 3; - break; - } - - throw new Error('you need at least a name, an url and a dir_id attributes to create a shortcut'); - - case 3: - path = (0, _utils.uri)(_templateObject()); - _context.next = 6; - return this.stackClient.fetchJSON('POST', path, { + _context4.next = 2; + return this.stackClient.fetchJSON('PATCH', (0, _utils.uri)(_templateObject8(), id), { data: { - attributes: attributes, - type: 'io.cozy.files.shortcuts' + type: 'io.cozy.files', + id: id, + attributes: { + permanent_delete: true + } } }); - case 6: - resp = _context.sent; - return _context.abrupt("return", { - data: _DocumentCollection2.default.normalizeDoctypeJsonApi(SHORTCUTS_DOCTYPE)(resp.data, resp) - }); + case 2: + resp = _context4.sent; + return _context4.abrupt("return", resp.data); - case 8: + case 4: case "end": - return _context.stop(); + return _context4.stop(); } } - }, _callee, this); + }, _callee4, this); })); - function create(_x) { - return _create.apply(this, arguments); - } - - return create; + return function deleteFilePermanently(_x4) { + return _deleteFilePermanently.apply(this, arguments); + }; }() + /** + * + * @param {File|Blob|Stream|string|ArrayBuffer} data file to be uploaded + * @param {string} dirPath Path to upload the file to. ie : /Administative/XXX/ + * @returns {object} Created io.cozy.files + */ + }, { - key: "get", + key: "upload", value: function () { - var _get = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(id) { - var path, resp; - return _regenerator.default.wrap(function _callee2$(_context2) { + var _upload = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee5(data, dirPath) { + var dirId; + return _regenerator.default.wrap(function _callee5$(_context5) { while (1) { - switch (_context2.prev = _context2.next) { + switch (_context5.prev = _context5.next) { case 0: - path = (0, _utils.uri)(_templateObject2(), id); - _context2.next = 3; - return this.stackClient.fetchJSON('GET', path); + _context5.next = 2; + return this.ensureDirectoryExists(dirPath); - case 3: - resp = _context2.sent; - return _context2.abrupt("return", { - data: _DocumentCollection2.default.normalizeDoctypeJsonApi(SHORTCUTS_DOCTYPE)(resp.data, resp) - }); + case 2: + dirId = _context5.sent; + return _context5.abrupt("return", this.createFile(data, { + dirId: dirId + })); - case 5: + case 4: case "end": - return _context2.stop(); + return _context5.stop(); } } - }, _callee2, this); + }, _callee5, this); })); - function get(_x2) { - return _get.apply(this, arguments); - } - - return get; + return function upload(_x5, _x6) { + return _upload.apply(this, arguments); + }; }() - }]); - return ShortcutsCollection; -}(_DocumentCollection2.default); - -ShortcutsCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; -var _default = ShortcutsCollection; -exports.default = _default; - -/***/ }), -/* 684 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = exports.CONTACTS_DOCTYPE = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var _get2 = _interopRequireDefault(__webpack_require__(676)); - -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); - -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); - -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); - -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); - -var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(619)); - -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } - -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } - -var normalizeMyselfResp = function normalizeMyselfResp(resp) { - return _objectSpread(_objectSpread(_objectSpread({}, (0, _DocumentCollection2.normalizeDoc)(resp.data, CONTACTS_DOCTYPE)), resp.data.attributes), {}, { - _rev: resp.data.meta.rev - }); -}; - -var ContactsCollection = /*#__PURE__*/function (_DocumentCollection) { - (0, _inherits2.default)(ContactsCollection, _DocumentCollection); - - var _super = _createSuper(ContactsCollection); - - function ContactsCollection() { - (0, _classCallCheck2.default)(this, ContactsCollection); - return _super.apply(this, arguments); - } + /** + * Creates directory or file. + * - Used by StackLink to support CozyClient.create('io.cozy.files', options) + * + * @param {FileAttributes|DirectoryAttributes} attributes - Attributes of the created file/directory + * @param {File|Blob|string|ArrayBuffer} attributes.data Will be used as content of the created file + */ - (0, _createClass2.default)(ContactsCollection, [{ - key: "find", + }, { + key: "create", value: function () { - var _find = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(selector, options) { - return _regenerator.default.wrap(function _callee$(_context) { + var _create = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee6(attributes) { + var data, createFileOptions; + return _regenerator.default.wrap(function _callee6$(_context6) { while (1) { - switch (_context.prev = _context.next) { + switch (_context6.prev = _context6.next) { case 0: - if (!(Object.values(selector).length === 1 && selector['me'] == true)) { - _context.next = 4; + if (!(attributes.type === 'directory')) { + _context6.next = 4; break; } - return _context.abrupt("return", this.findMyself()); + return _context6.abrupt("return", this.createDirectory(attributes)); case 4: - return _context.abrupt("return", (0, _get2.default)((0, _getPrototypeOf2.default)(ContactsCollection.prototype), "find", this).call(this, selector, options)); + data = attributes.data, createFileOptions = (0, _objectWithoutProperties2.default)(attributes, ["data"]); + return _context6.abrupt("return", this.createFile(data, createFileOptions)); - case 5: + case 6: case "end": - return _context.stop(); + return _context6.stop(); } } - }, _callee, this); + }, _callee6, this); })); - function find(_x, _x2) { - return _find.apply(this, arguments); - } - - return find; + return function create(_x7) { + return _create.apply(this, arguments); + }; }() + /*** + * Update the io.cozy.files + * Used by StackLink to support CozyClient.save({file}) + * @param {FileAttributes} The file with its new content + * @returns {FileAttributes} Updated document + */ + }, { - key: "findMyself", + key: "update", value: function () { - var _findMyself = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() { - var resp, col; - return _regenerator.default.wrap(function _callee2$(_context2) { + var _update = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee7(file) { + return _regenerator.default.wrap(function _callee7$(_context7) { while (1) { - switch (_context2.prev = _context2.next) { + switch (_context7.prev = _context7.next) { case 0: - _context2.next = 2; - return this.stackClient.fetchJSON('POST', '/contacts/myself'); - - case 2: - resp = _context2.sent; - col = { - data: [normalizeMyselfResp(resp)], - next: false, - meta: null, - bookmark: false - }; - return _context2.abrupt("return", col); + return _context7.abrupt("return", this.updateAttributes(file.id, file)); - case 5: + case 1: case "end": - return _context2.stop(); + return _context7.stop(); } } - }, _callee2, this); + }, _callee7, this); })); - function findMyself() { - return _findMyself.apply(this, arguments); - } - - return findMyself; + return function update(_x8) { + return _update.apply(this, arguments); + }; }() - }]); - return ContactsCollection; -}(_DocumentCollection2.default); - -var CONTACTS_DOCTYPE = 'io.cozy.contacts'; -exports.CONTACTS_DOCTYPE = CONTACTS_DOCTYPE; -var _default = ContactsCollection; -exports.default = _default; - -/***/ }), -/* 685 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.getIconURL = exports.default = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + /** + * Creates a file + * + * @private + * @param {File|Blob|Stream|string|ArrayBuffer} data file to be uploaded + * @param {FileAttributes} params Additional parameters + * @param {object} params.options Options to pass to doUpload method (additional headers) + */ -var _memoize = _interopRequireWildcard(__webpack_require__(686)); + }, { + key: "createFile", + value: function () { + var _createFile = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee8(data) { + var _ref5, + name, + _ref5$dirId, + dirId, + executable, + metadata, + options, + metadataId, + meta, + path, + _args8 = arguments; -function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } + return _regenerator.default.wrap(function _callee8$(_context8) { + while (1) { + switch (_context8.prev = _context8.next) { + case 0: + _ref5 = _args8.length > 1 && _args8[1] !== undefined ? _args8[1] : {}; + name = _ref5.name, _ref5$dirId = _ref5.dirId, dirId = _ref5$dirId === void 0 ? '' : _ref5$dirId, executable = _ref5.executable, metadata = _ref5.metadata, options = (0, _objectWithoutProperties2.default)(_ref5, ["name", "dirId", "executable", "metadata"]); -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + // handle case where data is a file and contains the name + if (!name && typeof data.name === 'string') { + name = data.name; + } -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + name = sanitizeFileName(name); -var mimeTypes = { - gif: 'image/gif', - ico: 'image/vnd.microsoft.icon', - jpeg: 'image/jpeg', - jpg: 'image/jpeg', - png: 'image/png', - svg: 'image/svg+xml' -}; + if (!(typeof name !== 'string' || name === '')) { + _context8.next = 6; + break; + } -var getIconExtensionFromApp = function getIconExtensionFromApp(app) { - if (!app.icon) { - throw new Error("".concat(app.name, ": Cannot detect icon mime type since app has no icon")); - } + throw new Error('missing name argument'); - var extension = app.icon.split('.').pop(); + case 6: + if (executable === undefined) { + executable = false; + } - if (!extension) { - throw new Error("".concat(app.name, ": Unable to detect icon mime type from extension (").concat(app.icon, ")")); - } + metadataId = ''; - return extension; -}; + if (!metadata) { + _context8.next = 13; + break; + } -var fallbacks = /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(tries, check) { - var err, _iterator, _step, _try, res; + _context8.next = 11; + return this.createFileMetadata(metadata); - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - _iterator = _createForOfIteratorHelper(tries); - _context.prev = 1; + case 11: + meta = _context8.sent; + metadataId = meta.data.id; - _iterator.s(); + case 13: + path = (0, _utils.uri)(_templateObject9(), dirId, name, executable, metadataId); + return _context8.abrupt("return", this.doUpload(data, path, options)); - case 3: - if ((_step = _iterator.n()).done) { - _context.next = 18; - break; + case 15: + case "end": + return _context8.stop(); } + } + }, _callee8, this); + })); - _try = _step.value; - _context.prev = 5; - _context.next = 8; - return _try(); - - case 8: - res = _context.sent; - check && check(res); - return _context.abrupt("return", res); - - case 13: - _context.prev = 13; - _context.t0 = _context["catch"](5); - err = _context.t0; - - case 16: - _context.next = 3; - break; - - case 18: - _context.next = 23; - break; + return function createFile(_x9) { + return _createFile.apply(this, arguments); + }; + }() + /** + * updateFile - Updates a file's data + * + * @param {object} data Javascript File object + * @param {object} params Additional parameters + * @param {string} params.fileId The id of the file to update (required) + * @param {boolean} params.executable Whether the file is executable or not + * @param {object} params.metadata Metadata to be attached to the File io.cozy.file + * @param {object} params.options Options to pass to doUpload method (additional headers) + * @returns {object} Updated document + */ - case 20: - _context.prev = 20; - _context.t1 = _context["catch"](1); + }, { + key: "updateFile", + value: function () { + var _updateFile = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee9(data) { + var _ref6, + _ref6$executable, + executable, + fileId, + metadata, + options, + name, + metadataId, + path, + meta, + _args9 = arguments; - _iterator.e(_context.t1); + return _regenerator.default.wrap(function _callee9$(_context9) { + while (1) { + switch (_context9.prev = _context9.next) { + case 0: + _ref6 = _args9.length > 1 && _args9[1] !== undefined ? _args9[1] : {}; + _ref6$executable = _ref6.executable, executable = _ref6$executable === void 0 ? false : _ref6$executable, fileId = _ref6.fileId, metadata = _ref6.metadata, options = (0, _objectWithoutProperties2.default)(_ref6, ["executable", "fileId", "metadata"]); - case 23: - _context.prev = 23; + if (!(!fileId || typeof fileId !== 'string')) { + _context9.next = 4; + break; + } - _iterator.f(); + throw new Error('missing fileId argument'); - return _context.finish(23); + case 4: + if (!(typeof data.name !== 'string')) { + _context9.next = 6; + break; + } - case 26: - throw err; + throw new Error('missing name in data argument'); - case 27: - case "end": - return _context.stop(); - } - } - }, _callee, null, [[1, 20, 23, 26], [5, 13]]); - })); + case 6: + name = sanitizeFileName(data.name); - return function fallbacks(_x, _x2) { - return _ref.apply(this, arguments); - }; -}(); -/** - * Fetch application/konnector that is installed - * - * @private - */ + if (!(typeof name !== 'string' || name === '')) { + _context9.next = 9; + break; + } + throw new Error('missing name argument'); -var fetchAppOrKonnector = function fetchAppOrKonnector(stackClient, type, slug) { - return stackClient.fetchJSON('GET', "/".concat(type, "s/").concat(slug)).then(function (x) { - return x.data.attributes; - }); -}; -/** - * Fetch application/konnector from the registry - * - * @private - */ + case 9: + path = (0, _utils.uri)(_templateObject10(), fileId, name, executable); + if (!metadata) { + _context9.next = 16; + break; + } -var fetchAppOrKonnectorViaRegistry = function fetchAppOrKonnectorViaRegistry(stackClient, type, slug) { - return stackClient.fetchJSON('GET', "/registry/".concat(slug)).then(function (x) { - return x.latest_version.manifest; - }); -}; + _context9.next = 13; + return this.createFileMetadata(metadata); -var _getIconURL = /*#__PURE__*/function () { - var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(stackClient, opts) { - var type, slug, appData, _opts$priority, priority, iconDataFetchers, resp, icon, app, appDataFetchers, ext; + case 13: + meta = _context9.sent; + metadataId = meta.data.id; + path = path + "&MetadataID=".concat(metadataId); - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - type = opts.type, slug = opts.slug, appData = opts.appData, _opts$priority = opts.priority, priority = _opts$priority === void 0 ? 'stack' : _opts$priority; - iconDataFetchers = [function () { - return stackClient.fetch('GET', "/".concat(type, "s/").concat(slug, "/icon")); - }, function () { - return stackClient.fetch('GET', "/registry/".concat(slug, "/icon")); - }]; + case 16: + return _context9.abrupt("return", this.doUpload(data, path, options, 'PUT')); - if (priority === 'registry') { - iconDataFetchers.reverse(); + case 17: + case "end": + return _context9.stop(); } + } + }, _callee9, this); + })); - _context2.next = 5; - return fallbacks(iconDataFetchers, function (resp) { - if (!resp.ok) { - throw new Error("Error while fetching icon ".concat(resp.statusText)); - } - }); - - case 5: - resp = _context2.sent; - _context2.next = 8; - return resp.blob(); - - case 8: - icon = _context2.sent; - - if (icon.type) { - _context2.next = 25; - break; - } + return function updateFile(_x10) { + return _updateFile.apply(this, arguments); + }; + }() + }, { + key: "getDownloadLinkById", + value: function getDownloadLinkById(id, filename) { + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject11(), id, filename)).then(this.extractResponseLinkRelated); + } + }, { + key: "getDownloadLinkByRevision", + value: function getDownloadLinkByRevision(versionId, filename) { + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject12(), versionId, filename)).then(this.extractResponseLinkRelated); + } + }, { + key: "getDownloadLinkByPath", + value: function getDownloadLinkByPath(path) { + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject13(), path)).then(this.extractResponseLinkRelated); + } + }, { + key: "download", - // iOS10 does not set correctly mime type for images, so we assume - // that an empty mime type could mean that the app is running on iOS10. - // For regular images like jpeg, png or gif it still works well in the - // Safari browser but not for SVG. - // So let's set a mime type manually. We cannot always set it to - // image/svg+xml and must guess the mime type based on the icon attribute - // from app/manifest - // See https://stackoverflow.com/questions/38318411/uiwebview-on-ios-10-beta-not-loading-any-svg-images - appDataFetchers = [function () { - return fetchAppOrKonnector(stackClient, type, slug); - }, function () { - return fetchAppOrKonnectorViaRegistry(stackClient, type, slug); - }]; + /** + * Download a file or a specific version of the file + * + * @param {object} file io.cozy.files object + * @param {string} versionId Id of the io.cozy.files.version + * @param {string} filename The name you want for the downloaded file + * (by default the same as the file) + */ + value: function () { + var _download = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee10(file) { + var versionId, + filename, + href, + filenameToUse, + _args10 = arguments; + return _regenerator.default.wrap(function _callee10$(_context10) { + while (1) { + switch (_context10.prev = _context10.next) { + case 0: + versionId = _args10.length > 1 && _args10[1] !== undefined ? _args10[1] : null; + filename = _args10.length > 2 && _args10[2] !== undefined ? _args10[2] : undefined; + filenameToUse = filename ? filename : file.name; + /** + * Passing a filename to forceFileDownload is not enough + * for a few browsers since the stack's response header will + * not contain that name. Passing the filename to + * getDownloadLinkBy{Id,Revision} will ask the stack to + * return this filename in its content-disposition + * header response + */ - if (priority === 'registry') { - appDataFetchers.reverse(); - } + if (versionId) { + _context10.next = 9; + break; + } - _context2.t1 = appData; + _context10.next = 6; + return this.getDownloadLinkById(file._id, filenameToUse); - if (_context2.t1) { - _context2.next = 17; - break; - } + case 6: + href = _context10.sent; + _context10.next = 12; + break; - _context2.next = 16; - return fallbacks(appDataFetchers); + case 9: + _context10.next = 11; + return this.getDownloadLinkByRevision(versionId, filenameToUse); - case 16: - _context2.t1 = _context2.sent; + case 11: + href = _context10.sent; - case 17: - _context2.t0 = _context2.t1; + case 12: + (0, _utils.forceFileDownload)("".concat(href, "?Dl=1"), filenameToUse); - if (_context2.t0) { - _context2.next = 20; - break; + case 13: + case "end": + return _context10.stop(); } + } + }, _callee10, this); + })); - _context2.t0 = {}; + return function download(_x11) { + return _download.apply(this, arguments); + }; + }() + /** + * Fetch the binary of a file or a specific version of a file + * Useful for instance when you can't download the file directly + * (via a content-disposition attachement header) and need to store + * it before doing an operation. + * + * @param {string} id Id of the io.cozy.files or io.cozy.files.version + * + */ - case 20: - app = _context2.t0; - ext = getIconExtensionFromApp(app); + }, { + key: "fetchFileContent", + value: function () { + var _fetchFileContent = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee11(id) { + return _regenerator.default.wrap(function _callee11$(_context11) { + while (1) { + switch (_context11.prev = _context11.next) { + case 0: + return _context11.abrupt("return", this.stackClient.fetch('GET', "/files/download/".concat(id))); - if (mimeTypes[ext]) { - _context2.next = 24; - break; + case 1: + case "end": + return _context11.stop(); } + } + }, _callee11, this); + })); - throw new Error("Unknown image extension \"".concat(ext, "\" for app ").concat(app.name)); - - case 24: - icon = new Blob([icon], { - type: mimeTypes[ext] - }); - - case 25: - return _context2.abrupt("return", URL.createObjectURL(icon)); - - case 26: - case "end": - return _context2.stop(); - } - } - }, _callee2); - })); - - return function _getIconURL(_x3, _x4) { - return _ref2.apply(this, arguments); - }; -}(); - -var getIconURL = function getIconURL() { - return _getIconURL.apply(this, arguments).catch(function (e) { - return new _memoize.ErrorReturned(); - }); -}; - -exports.getIconURL = getIconURL; - -var _default = (0, _memoize.default)(getIconURL, { - maxDuration: 300 * 1000, - key: function key(stackClient, opts) { - var type = opts.type, - slug = opts.slug, - priority = opts.priority; - return stackClient.uri + +':' + type + ':' + slug + ':' + priority; - } -}); - -exports.default = _default; - -/***/ }), -/* 686 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.ErrorReturned = exports.default = void 0; - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); - -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); - -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); - -var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(659)); - -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } - -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } - -var ErrorReturned = /*#__PURE__*/function (_String) { - (0, _inherits2.default)(ErrorReturned, _String); - - var _super = _createSuper(ErrorReturned); - - function ErrorReturned() { - (0, _classCallCheck2.default)(this, ErrorReturned); - return _super.apply(this, arguments); - } - - return ErrorReturned; -}( /*#__PURE__*/(0, _wrapNativeSuper2.default)(String)); -/** - * Delete outdated results from cache - */ - - -exports.ErrorReturned = ErrorReturned; - -var garbageCollect = function garbageCollect(cache, maxDuration) { - var now = Date.now(); - - for (var _i = 0, _Object$keys = Object.keys(cache); _i < _Object$keys.length; _i++) { - var key = _Object$keys[_i]; - var delta = now - cache[key].date; - - if (delta > maxDuration) { - delete cache[key]; - } - } -}; - -var isPromise = function isPromise(maybePromise) { - return typeof maybePromise === 'object' && typeof maybePromise.then === 'function'; -}; -/** - * Memoize with maxDuration and custom key - */ - - -var memoize = function memoize(fn, options) { - var cache = {}; - return function () { - var key = options.key.apply(null, arguments); - garbageCollect(cache, options.maxDuration); - var existing = cache[key]; - - if (existing) { - return existing.result; - } else { - var result = fn.apply(this, arguments); - cache[key] = { - result: result, - date: Date.now() + return function fetchFileContent(_x12) { + return _fetchFileContent.apply(this, arguments); }; - /** - * If the result is a promise and this promise - * failed or resolved with a specific error (aka ErrorReturned), - * let's remove the result from the cache since we don't want to - * memoize error - */ - - if (isPromise(result)) { - result.then(function (v) { - if (v instanceof ErrorReturned) { - delete cache[key]; - } - }).catch(function (e) { - delete cache[key]; - }); - } + }() + /** + * Get a beautified size for a given file + * 1024B => 1KB + * 102404500404B => 95.37 GB + * + * @param {object} file io.cozy.files object + * @param {number} decimal number of decimal + */ - return result; + }, { + key: "getBeautifulSize", + value: function getBeautifulSize(file, decimal) { + return (0, _utils.formatBytes)(parseInt(file.size), decimal); } - }; -}; - -var _default = memoize; -exports.default = _default; - -/***/ }), -/* 687 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; + }, { + key: "downloadArchive", + value: function () { + var _downloadArchive = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee12(fileIds) { + var notSecureFilename, + filename, + href, + fullpath, + _args12 = arguments; + return _regenerator.default.wrap(function _callee12$(_context12) { + while (1) { + switch (_context12.prev = _context12.next) { + case 0: + notSecureFilename = _args12.length > 1 && _args12[1] !== undefined ? _args12[1] : 'files'; + filename = (0, _utils.slugify)(notSecureFilename); + _context12.next = 4; + return this.getArchiveLinkByIds(fileIds, filename); -var logDeprecate = function logDeprecate() { - var _console; + case 4: + href = _context12.sent; + fullpath = this.stackClient.fullpath(href); + (0, _utils.forceFileDownload)(fullpath, filename + '.zip'); - if (false) {} + case 7: + case "end": + return _context12.stop(); + } + } + }, _callee12, this); + })); - (_console = console).warn.apply(_console, arguments); -}; + return function downloadArchive(_x13) { + return _downloadArchive.apply(this, arguments); + }; + }() + }, { + key: "getArchiveLinkByIds", + value: function () { + var _getArchiveLinkByIds = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee13(ids) { + var name, + resp, + _args13 = arguments; + return _regenerator.default.wrap(function _callee13$(_context13) { + while (1) { + switch (_context13.prev = _context13.next) { + case 0: + name = _args13.length > 1 && _args13[1] !== undefined ? _args13[1] : 'files'; + _context13.next = 3; + return this.stackClient.fetchJSON('POST', '/files/archive', { + data: { + type: 'io.cozy.archives', + attributes: { + name: name, + ids: ids + } + } + }); -var _default = logDeprecate; -exports.default = _default; + case 3: + resp = _context13.sent; + return _context13.abrupt("return", resp.links.related); -/***/ }), -/* 688 */ -/***/ (function(module, exports, __webpack_require__) { + case 5: + case "end": + return _context13.stop(); + } + } + }, _callee13, this); + })); -"use strict"; + return function getArchiveLinkByIds(_x14) { + return _getArchiveLinkByIds.apply(this, arguments); + }; + }() + /** + * Checks if the file belongs to the parent's hierarchy. + * + * @param {string|object} child The file which can either be an id or an object + * @param {string|object} parent The parent target which can either be an id or an object + * @returns {boolean} Whether the file is a parent's child + */ + }, { + key: "isChildOf", + value: function () { + var _isChildOf = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee14(child, parent) { + var _this2 = this; -var _interopRequireDefault = __webpack_require__(530); + var _ref7, childID, childDirID, childPath, _ref8, parentID, childDoc, currPath, targetsPath, newPath; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.shouldXMLHTTPRequestBeUsed = exports.fetchWithXMLHttpRequest = void 0; + return _regenerator.default.wrap(function _callee14$(_context14) { + while (1) { + switch (_context14.prev = _context14.next) { + case 0: + _ref7 = typeof child === 'object' ? child : { + _id: child + }, childID = _ref7._id, childDirID = _ref7.dirID, childPath = _ref7.path; + _ref8 = typeof parent === 'object' ? parent : { + _id: parent + }, parentID = _ref8._id; -var _regenerator = _interopRequireDefault(__webpack_require__(545)); + if (!(childID === parentID || childDirID === parentID)) { + _context14.next = 4; + break; + } -var _slicedToArray2 = _interopRequireDefault(__webpack_require__(538)); + return _context14.abrupt("return", true); -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + case 4: + if (childPath) { + _context14.next = 10; + break; + } -var _memoize = _interopRequireDefault(__webpack_require__(377)); + _context14.next = 7; + return this.statById(childID); -var headersFromString = function headersFromString(headerString) { - return new Headers(headerString.split('\r\n').map(function (x) { - return x.split(':', 2); - }).filter(function (x) { - return x.length == 2; - })); -}; -/** - * Returns a `fetch()` like response but uses XHR. - * XMLHTTPRequest provides upload progress events unlike fetch. - * - * @private - * @param {string} fullpath - Route path - * @param {object} options - Fetch options - * @param {Function} options.onUploadProgress - Callback to receive upload progress events - */ + case 7: + childDoc = _context14.sent; + childPath = childDoc.data.path; + childDirID = childDoc.data.dirID; + case 10: + // Build hierarchy paths + currPath = childPath; + targetsPath = [childPath]; -var fetchWithXMLHttpRequest = /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(fullpath, options) { - var response; - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - _context3.next = 2; - return new Promise(function (resolve, reject) { - var xhr = new XMLHttpRequest(); + while (currPath != '') { + newPath = dirName(currPath); - if (options.onUploadProgress && xhr.upload) { - xhr.upload.addEventListener('progress', options.onUploadProgress, false); - } + if (newPath != '') { + targetsPath.push(newPath); + } - xhr.onload = function () { - if (this.readyState == 4) { - resolve(this); - } else { - reject(this); + currPath = newPath; } - }; - - xhr.onerror = function (err) { - reject(err); - }; - xhr.open(options.method, fullpath, true); - xhr.withCredentials = true; + targetsPath.reverse(); // Look for all hierarchy in parallel and return true as soon as a dir is the searched parent - for (var _i = 0, _Object$entries = Object.entries(options.headers); _i < _Object$entries.length; _i++) { - var _Object$entries$_i = (0, _slicedToArray2.default)(_Object$entries[_i], 2), - headerName = _Object$entries$_i[0], - headerValue = _Object$entries$_i[1]; + return _context14.abrupt("return", raceWithCondition(targetsPath.map(function (path) { + return _this2.statByPath(path); + }), function (stat) { + return stat.data._id == parentID; + })); - xhr.setRequestHeader(headerName, headerValue); - } + case 15: + case "end": + return _context14.stop(); + } + } + }, _callee14, this); + })); - xhr.send(options.body); - }); + return function isChildOf(_x15, _x16) { + return _isChildOf.apply(this, arguments); + }; + }() + /** + * statById - Fetches the metadata about a document. For folders, the results include the list of child files and folders. + * + * @param {string} id ID of the document + * @param {object} [options={}] Description + * @param {number} [options.page[limit]] Max number of children documents to return + * @param {number} [options.page[skip]] Number of children documents to skip from the start + * @param {string} [options.page[cursor]] A cursor id for pagination + * + * @returns {object} A promise resolving to an object containing "data" (the document metadata), "included" (the child documents) and "links" (pagination informations) + */ - case 2: - response = _context3.sent; - return _context3.abrupt("return", { - headers: headersFromString(response.getAllResponseHeaders()), - ok: response.status >= 200 && response.status < 300, - text: function () { - var _text = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() { - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - return _context.abrupt("return", response.responseText); + }, { + key: "statById", + value: function () { + var _statById = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee15(id) { + var options, + params, + url, + path, + resp, + _args15 = arguments; + return _regenerator.default.wrap(function _callee15$(_context15) { + while (1) { + switch (_context15.prev = _context15.next) { + case 0: + options = _args15.length > 1 && _args15[1] !== undefined ? _args15[1] : {}; + params = (0, _pick.default)(options, ['page[limit]', 'page[skip]', 'page[cursor]']); + url = (0, _utils.uri)(_templateObject14(), id); + path = querystring.buildURL(url, params); + _context15.next = 6; + return this.stackClient.fetchJSON('GET', path); - case 1: - case "end": - return _context.stop(); - } - } - }, _callee); - })); + case 6: + resp = _context15.sent; + return _context15.abrupt("return", { + data: normalizeFile(resp.data), + included: resp.included && resp.included.map(function (f) { + return normalizeFile(f); + }), + links: resp.links + }); - function text() { - return _text.apply(this, arguments); - } + case 8: + case "end": + return _context15.stop(); + } + } + }, _callee15, this); + })); - return text; - }(), - json: function () { - var _json = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() { - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - return _context2.abrupt("return", JSON.parse(response.responseText)); + return function statById(_x17) { + return _statById.apply(this, arguments); + }; + }() + }, { + key: "statByPath", + value: function () { + var _statByPath = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee16(path) { + var resp; + return _regenerator.default.wrap(function _callee16$(_context16) { + while (1) { + switch (_context16.prev = _context16.next) { + case 0: + _context16.next = 2; + return this.stackClient.fetchJSON('GET', (0, _utils.uri)(_templateObject15(), path)); - case 1: - case "end": - return _context2.stop(); - } - } - }, _callee2); - })); + case 2: + resp = _context16.sent; + return _context16.abrupt("return", { + data: normalizeFile(resp.data), + included: resp.included && resp.included.map(function (f) { + return normalizeFile(f); + }) + }); - function json() { - return _json.apply(this, arguments); - } + case 4: + case "end": + return _context16.stop(); + } + } + }, _callee16, this); + })); - return json; - }(), - status: response.status, - statusText: response.statusText - }); + return function statByPath(_x18) { + return _statByPath.apply(this, arguments); + }; + }() + /** + * Create directory + * + * @private + * @param {DirectoryAttributes} attributes - Attributes of the directory + * @returns {Promise} + */ - case 4: - case "end": - return _context3.stop(); - } - } - }, _callee3); - })); + }, { + key: "createDirectory", + value: function () { + var _createDirectory = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee17() { + var attributes, + name, + dirId, + lastModifiedDate, + safeName, + lastModified, + resp, + _args17 = arguments; + return _regenerator.default.wrap(function _callee17$(_context17) { + while (1) { + switch (_context17.prev = _context17.next) { + case 0: + attributes = _args17.length > 0 && _args17[0] !== undefined ? _args17[0] : {}; + name = attributes.name, dirId = attributes.dirId, lastModifiedDate = attributes.lastModifiedDate; + safeName = sanitizeFileName(name); - return function fetchWithXMLHttpRequest(_x, _x2) { - return _ref.apply(this, arguments); - }; -}(); + if (!(typeof name !== 'string' || safeName === '')) { + _context17.next = 5; + break; + } -exports.fetchWithXMLHttpRequest = fetchWithXMLHttpRequest; -var doesXHRSupportLoadAndProgress = (0, _memoize.default)(function () { - var xhr = new XMLHttpRequest(); - return 'onload' in xhr && 'onprogress' in xhr; -}); + throw new Error('missing name argument'); -var shouldXMLHTTPRequestBeUsed = function shouldXMLHTTPRequestBeUsed(method, path, options) { - return Boolean(options.onUploadProgress) && doesXHRSupportLoadAndProgress(); -}; + case 5: + lastModified = lastModifiedDate && (typeof lastModifiedDate === 'string' ? new Date(lastModifiedDate) : lastModifiedDate); + _context17.next = 8; + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject16(), dirId, safeName), undefined, { + headers: { + Date: lastModified ? lastModified.toGMTString() : '' + } + }); -exports.shouldXMLHTTPRequestBeUsed = shouldXMLHTTPRequestBeUsed; + case 8: + resp = _context17.sent; + return _context17.abrupt("return", { + data: normalizeFile(resp.data) + }); -/***/ }), -/* 689 */ -/***/ (function(module, exports, __webpack_require__) { + case 10: + case "end": + return _context17.stop(); + } + } + }, _callee17, this); + })); -"use strict"; + return function createDirectory() { + return _createDirectory.apply(this, arguments); + }; + }() + }, { + key: "ensureDirectoryExists", + value: function () { + var _ensureDirectoryExists = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee18(path) { + var resp; + return _regenerator.default.wrap(function _callee18$(_context18) { + while (1) { + switch (_context18.prev = _context18.next) { + case 0: + if (this.specialDirectories[path]) { + _context18.next = 5; + break; + } + _context18.next = 3; + return this.createDirectoryByPath(path); -var _interopRequireDefault = __webpack_require__(530); + case 3: + resp = _context18.sent; + this.specialDirectories[path] = resp.data._id; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; + case 5: + return _context18.abrupt("return", this.specialDirectories[path]); -var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(659)); + case 6: + case "end": + return _context18.stop(); + } + } + }, _callee18, this); + })); -var _regenerator = _interopRequireDefault(__webpack_require__(545)); + return function ensureDirectoryExists(_x19) { + return _ensureDirectoryExists.apply(this, arguments); + }; + }() + }, { + key: "getDirectoryOrCreate", + value: function () { + var _getDirectoryOrCreate = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee19(name, parentDirectory) { + var safeName, path, stat, parsedError, errors; + return _regenerator.default.wrap(function _callee19$(_context19) { + while (1) { + switch (_context19.prev = _context19.next) { + case 0: + if (!(parentDirectory && !parentDirectory.attributes)) { + _context19.next = 2; + break; + } -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + throw new Error('Malformed parent directory'); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + case 2: + safeName = sanitizeFileName(name); + path = "".concat(parentDirectory._id === ROOT_DIR_ID ? '' : parentDirectory.attributes.path, "/").concat(safeName); + _context19.prev = 4; + _context19.next = 7; + return this.statByPath(path || '/'); -var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(543)); + case 7: + stat = _context19.sent; + return _context19.abrupt("return", stat); -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); + case 11: + _context19.prev = 11; + _context19.t0 = _context19["catch"](4); + parsedError = JSON.parse(_context19.t0.message); + errors = parsedError.errors; -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + if (!(errors && errors.length && errors[0].status === '404')) { + _context19.next = 17; + break; + } -var _get2 = _interopRequireDefault(__webpack_require__(676)); + return _context19.abrupt("return", this.createDirectory({ + name: safeName, + dirId: parentDirectory && parentDirectory._id + })); -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); + case 17: + throw errors; -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); + case 18: + case "end": + return _context19.stop(); + } + } + }, _callee19, this, [[4, 11]]); + })); -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); + return function getDirectoryOrCreate(_x20, _x21) { + return _getDirectoryOrCreate.apply(this, arguments); + }; + }() + /** + * async createDirectoryByPath - Creates one or more folders until the given path exists + * + * @param {string} path - Path of the created directory + * @returns {object} The document corresponding to the last segment of the path + */ -var _CozyStackClient2 = _interopRequireDefault(__webpack_require__(578)); + }, { + key: "createDirectoryByPath", + value: function () { + var _createDirectoryByPath = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee20(path) { + var parts, root, parentDir, _iteratorNormalCompletion2, _didIteratorError2, _iteratorError2, _iterator2, _step2, part; -var _AccessToken = _interopRequireDefault(__webpack_require__(664)); + return _regenerator.default.wrap(function _callee20$(_context20) { + while (1) { + switch (_context20.prev = _context20.next) { + case 0: + parts = path.split('/').filter(function (part) { + return part !== ''; + }); + _context20.next = 3; + return this.statById(ROOT_DIR_ID); -var _logDeprecate = _interopRequireDefault(__webpack_require__(687)); + case 3: + root = _context20.sent; -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + if (parts.length) { + _context20.next = 6; + break; + } -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + return _context20.abrupt("return", root); -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } + case 6: + parentDir = root; + _iteratorNormalCompletion2 = true; + _didIteratorError2 = false; + _iteratorError2 = undefined; + _context20.prev = 10; + _iterator2 = parts[Symbol.iterator](); -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + case 12: + if (_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done) { + _context20.next = 20; + break; + } -var defaultoauthOptions = { - clientID: '', - clientName: '', - clientKind: '', - clientSecret: '', - clientURI: '', - registrationAccessToken: '', - redirectURI: '', - softwareID: '', - softwareVersion: '', - logoURI: '', - policyURI: '', - notificationPlatform: '', - notificationDeviceToken: '' -}; -/** - * Specialized `CozyStackClient` for mobile, implementing stack registration - * through OAuth. - */ + part = _step2.value; + _context20.next = 16; + return this.getDirectoryOrCreate(part, parentDir.data); -var OAuthClient = /*#__PURE__*/function (_CozyStackClient) { - (0, _inherits2.default)(OAuthClient, _CozyStackClient); + case 16: + parentDir = _context20.sent; - var _super = _createSuper(OAuthClient); + case 17: + _iteratorNormalCompletion2 = true; + _context20.next = 12; + break; - function OAuthClient(_ref) { - var _this; + case 20: + _context20.next = 26; + break; - var oauth = _ref.oauth, - _ref$scope = _ref.scope, - scope = _ref$scope === void 0 ? [] : _ref$scope, - onTokenRefresh = _ref.onTokenRefresh, - options = (0, _objectWithoutProperties2.default)(_ref, ["oauth", "scope", "onTokenRefresh"]); - (0, _classCallCheck2.default)(this, OAuthClient); - _this = _super.call(this, options); + case 22: + _context20.prev = 22; + _context20.t0 = _context20["catch"](10); + _didIteratorError2 = true; + _iteratorError2 = _context20.t0; - _this.setOAuthOptions(_objectSpread(_objectSpread({}, defaultoauthOptions), oauth)); + case 26: + _context20.prev = 26; + _context20.prev = 27; - if (oauth.token) { - _this.setToken(oauth.token); - } + if (!_iteratorNormalCompletion2 && _iterator2.return != null) { + _iterator2.return(); + } - _this.scope = scope; - _this.onTokenRefresh = onTokenRefresh; - return _this; - } - /** - * Checks if the client has his registration information from the server - * - * @returns {boolean} true if registered, false otherwise - * @private - */ + case 29: + _context20.prev = 29; + if (!_didIteratorError2) { + _context20.next = 32; + break; + } - (0, _createClass2.default)(OAuthClient, [{ - key: "isRegistered", - value: function isRegistered() { - return this.oauthOptions.clientID !== ''; - } - /** - * Converts a camel-cased data set to snake case, suitable for sending to the OAuth server - * - * @param {object} data Initial data - * @returns {object} Formatted data - * @private - */ + throw _iteratorError2; - }, { - key: "snakeCaseOAuthData", - value: function snakeCaseOAuthData(data) { - var mappedFields = { - softwareID: 'software_id', - softwareVersion: 'software_version', - clientID: 'client_id', - clientName: 'client_name', - clientKind: 'client_kind', - clientURI: 'client_uri', - logoURI: 'logo_uri', - policyURI: 'policy_uri', - notificationPlatform: 'notification_platform', - notificationDeviceToken: 'notification_device_token', - redirectURI: 'redirect_uris' - }; - var result = {}; - Object.keys(data).forEach(function (fieldName) { - var key = mappedFields[fieldName] || fieldName; - var value = data[fieldName]; - result[key] = value; - }); // special case: turn redirect_uris into an array + case 32: + return _context20.finish(29); - if (result['redirect_uris'] && result['redirect_uris'] instanceof Array === false) result['redirect_uris'] = [result['redirect_uris']]; - return result; - } - /** - * Converts a snake-cased data set to camel case, suitable for internal use - * - * @param {object} data Initial data - * @returns {object} Formatted data - * @private - */ + case 33: + return _context20.finish(26); - }, { - key: "camelCaseOAuthData", - value: function camelCaseOAuthData(data) { - var mappedFields = { - client_id: 'clientID', - client_name: 'clientName', - client_secret: 'clientSecret', - registration_access_token: 'registrationAccessToken', - software_id: 'softwareID', - redirect_uris: 'redirectURI' - }; - var result = {}; - Object.keys(data).forEach(function (fieldName) { - var key = mappedFields[fieldName] || fieldName; - var value = data[fieldName]; - result[key] = value; - }); - return result; - } - /** Performs the HTTP call to register the client to the server */ + case 34: + return _context20.abrupt("return", parentDir); - }, { - key: "doRegistration", - value: function doRegistration() { - return this.fetchJSON('POST', '/auth/register', this.snakeCaseOAuthData({ - redirectURI: this.oauthOptions.redirectURI, - clientName: this.oauthOptions.clientName, - softwareID: this.oauthOptions.softwareID, - clientKind: this.oauthOptions.clientKind, - clientURI: this.oauthOptions.clientURI, - logoURI: this.oauthOptions.logoURI, - policyURI: this.oauthOptions.policyURI, - softwareVersion: this.oauthOptions.softwareVersion, - notificationPlatform: this.oauthOptions.notificationPlatform, - notificationDeviceToken: this.oauthOptions.notificationDeviceToken + case 35: + case "end": + return _context20.stop(); + } + } + }, _callee20, this, [[10, 22, 26, 34], [27,, 29, 33]]); })); - } + + return function createDirectoryByPath(_x22) { + return _createDirectoryByPath.apply(this, arguments); + }; + }() /** - * Registers the currenly configured client with the OAuth server and - * sets internal information from the server response * - * @throws {Error} When the client is already registered - * @returns {Promise} A promise that resolves with a complete list of client information, including client ID and client secret. + * async updateAttributes - Updates a file / folder's attributes except + * the metadata attribute. If you want to update its metadata attribute, + * then use `updateFileMetadataAttribute` since `metadata` is a specific + * doctype. + * + * For instance, if you want to update the name of a file, you can pass + * attributes = { name: 'newName'} + * + * You can see the attributes for both Folder and File (as they share the + * same doctype they have a few in common) here : + * https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.files/#iocozyfiles + * + * @private You shoud use update() directly. + * @param {string} id File id + * @param {object} attributes New file attributes + * @returns {object} Updated document */ }, { - key: "register", + key: "updateAttributes", value: function () { - var _register = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() { - var mandatoryFields, fields, missingMandatoryFields, data; - return _regenerator.default.wrap(function _callee$(_context) { + var _updateAttributes = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee21(id, attributes) { + var resp; + return _regenerator.default.wrap(function _callee21$(_context21) { while (1) { - switch (_context.prev = _context.next) { + switch (_context21.prev = _context21.next) { case 0: - if (!this.isRegistered()) { - _context.next = 2; - break; - } - - throw new Error('Client already registered'); + _context21.next = 2; + return this.stackClient.fetchJSON('PATCH', (0, _utils.uri)(_templateObject17(), id), { + data: { + type: 'io.cozy.files', + id: id, + attributes: attributes + } + }); case 2: - mandatoryFields = ['redirectURI']; - fields = Object.keys(this.oauthOptions); - missingMandatoryFields = mandatoryFields.filter(function (fieldName) { - return fields[fieldName]; + resp = _context21.sent; + return _context21.abrupt("return", { + data: normalizeFile(resp.data) }); - if (!(missingMandatoryFields.length > 0)) { - _context.next = 7; - break; - } - - throw new Error("Can't register client : missing ".concat(missingMandatoryFields, " fields")); - - case 7: - _context.next = 9; - return this.doRegistration(); + case 4: + case "end": + return _context21.stop(); + } + } + }, _callee21, this); + })); - case 9: - data = _context.sent; - this.setOAuthOptions(_objectSpread(_objectSpread({}, this.oauthOptions), {}, { - client_id: data.client_id, - client_name: data.client_name, - client_secret: data.client_secret, - registration_access_token: data.registration_access_token, - software_id: data.software_id - })); - return _context.abrupt("return", this.oauthOptions); + return function updateAttributes(_x23, _x24) { + return _updateAttributes.apply(this, arguments); + }; + }() + }, { + key: "updateFileMetadata", + value: function () { + var _updateFileMetadata = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee22(id, attributes) { + return _regenerator.default.wrap(function _callee22$(_context22) { + while (1) { + switch (_context22.prev = _context22.next) { + case 0: + console.warn('CozyClient FileCollection updateFileMetadata method is deprecated. Use updateAttributes instead'); + return _context22.abrupt("return", this.updateAttributes(id, attributes)); - case 12: + case 2: case "end": - return _context.stop(); + return _context22.stop(); } } - }, _callee, this); + }, _callee22, this); })); - function register() { - return _register.apply(this, arguments); - } - - return register; + return function updateFileMetadata(_x25, _x26) { + return _updateFileMetadata.apply(this, arguments); + }; }() /** - * Unregisters the currenly configured client with the OAuth server. + * Send a metadata object that can be associated to a file uploaded after that, + * via the MetadataID query parameter. + * See https://github.com/cozy/cozy-stack/blob/master/docs/files.md#post-filesuploadmetadata * - * @throws {NotRegisteredException} When the client doesn't have it's registration information - * @returns {Promise} + * @param {object} attributes The file's metadata + * @returns {object} The Metadata object */ }, { - key: "unregister", + key: "createFileMetadata", value: function () { - var _unregister = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() { - var clientID; - return _regenerator.default.wrap(function _callee2$(_context2) { + var _createFileMetadata = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee23(attributes) { + var resp; + return _regenerator.default.wrap(function _callee23$(_context23) { while (1) { - switch (_context2.prev = _context2.next) { + switch (_context23.prev = _context23.next) { case 0: - if (this.isRegistered()) { - _context2.next = 2; - break; - } - - throw new NotRegisteredException(); + _context23.next = 2; + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject18()), { + data: { + type: 'io.cozy.files.metadata', + attributes: attributes + } + }); case 2: - clientID = this.oauthOptions.clientID; - this.oauthOptions.clientID = ''; - return _context2.abrupt("return", this.fetchJSON('DELETE', "/auth/register/".concat(clientID), null, { - headers: { - Authorization: this.registrationAccessTokenToAuthHeader() - } - })); + resp = _context23.sent; + return _context23.abrupt("return", { + data: resp.data + }); - case 5: + case 4: case "end": - return _context2.stop(); + return _context23.stop(); } } - }, _callee2, this); + }, _callee23, this); })); - function unregister() { - return _unregister.apply(this, arguments); - } - - return unregister; + return function createFileMetadata(_x27) { + return _createFileMetadata.apply(this, arguments); + }; }() /** - * Fetches the complete set of client information from the server after it has been registered. * - * @throws {NotRegisteredException} When the client doesn't have it's registration information - * @returns {Promise} + * Updates the metadata attribute of a io.cozy.files + * Creates a new version of the file without having + * to upload again the file's content + * + * To see available content of the metadata attribute + * see : https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.files_metadata/ + * + * @param {string} id File id + * @param {object} metadata io.cozy.files.metadata attributes + * @returns {object} io.cozy.files updated */ }, { - key: "fetchInformation", + key: "updateMetadataAttribute", value: function () { - var _fetchInformation = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3() { - return _regenerator.default.wrap(function _callee3$(_context3) { + var _updateMetadataAttribute = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee24(id, metadata) { + var resp; + return _regenerator.default.wrap(function _callee24$(_context24) { while (1) { - switch (_context3.prev = _context3.next) { + switch (_context24.prev = _context24.next) { case 0: - if (this.isRegistered()) { - _context3.next = 2; - break; - } - - throw new NotRegisteredException(); + _context24.next = 2; + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject19(), id), { + data: { + type: 'io.cozy.files.metadata', + attributes: metadata + } + }); case 2: - return _context3.abrupt("return", this.fetchJSON('GET', "/auth/register/".concat(this.oauthOptions.clientID), null, { - headers: { - Authorization: this.registrationAccessTokenToAuthHeader() - } - })); + resp = _context24.sent; + return _context24.abrupt("return", { + data: resp.data + }); - case 3: + case 4: case "end": - return _context3.stop(); + return _context24.stop(); } } - }, _callee3, this); + }, _callee24, this); })); - function fetchInformation() { - return _fetchInformation.apply(this, arguments); - } - - return fetchInformation; + return function updateMetadataAttribute(_x28, _x29) { + return _updateMetadataAttribute.apply(this, arguments); + }; }() /** - * Overwrites the client own information. This method will update both the local information and the remote information on the OAuth server. * - * @throws {NotRegisteredException} When the client doesn't have it's registration information - * @param {object} information Set of information to update. Note that some fields such as `clientID` can't be updated. - * @param {boolean} resetSecret = false Optionnal, whether to reset the client secret or not - * @returns {Promise} Resolves to a complete, updated list of client information + * This method should not be called directly to upload a file. + * You should use `createFile` + * + * @param {File|Blob|Stream|string|ArrayBuffer} data file to be uploaded + * @param {string} path Uri to call the stack from. Something like + * `/files/${dirId}?Name=${name}&Type=file&Executable=${executable}&MetadataID=${metadataId}` + * @param {object} options Additional headers + * @param {string} method POST / PUT / PATCH */ }, { - key: "updateInformation", + key: "doUpload", value: function () { - var _updateInformation = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(information) { - var resetSecret, - mandatoryFields, - data, - result, - _args4 = arguments; - return _regenerator.default.wrap(function _callee4$(_context4) { + var _doUpload = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee25(data, path, options) { + var method, + isBuffer, + isFile, + isBlob, + isStream, + isString, + _ref9, + contentType, + contentLength, + checksum, + lastModifiedDate, + ifMatch, + headers, + resp, + _args25 = arguments; + + return _regenerator.default.wrap(function _callee25$(_context25) { while (1) { - switch (_context4.prev = _context4.next) { + switch (_context25.prev = _context25.next) { case 0: - resetSecret = _args4.length > 1 && _args4[1] !== undefined ? _args4[1] : false; + method = _args25.length > 3 && _args25[3] !== undefined ? _args25[3] : 'POST'; - if (this.isRegistered()) { - _context4.next = 3; + if (data) { + _context25.next = 3; break; } - throw new NotRegisteredException(); + throw new Error('missing data argument'); case 3: - mandatoryFields = { - clientID: this.oauthOptions.clientID, - clientName: this.oauthOptions.clientName, - redirectURI: this.oauthOptions.redirectURI, - softwareID: this.oauthOptions.softwareID - }; - data = this.snakeCaseOAuthData(_objectSpread(_objectSpread({}, mandatoryFields), information)); - if (resetSecret) data['client_secret'] = this.oauthOptions.clientSecret; - _context4.next = 8; - return this.fetchJSON('PUT', "/auth/register/".concat(this.oauthOptions.clientID), data, { - headers: { - Authorization: this.registrationAccessTokenToAuthHeader() + // transform any ArrayBufferView to ArrayBuffer + if (data.buffer && data.buffer instanceof ArrayBuffer) { + data = data.buffer; + } + + isBuffer = typeof ArrayBuffer !== 'undefined' && data instanceof ArrayBuffer; + isFile = typeof File !== 'undefined' && data instanceof File; + isBlob = typeof Blob !== 'undefined' && data instanceof Blob; + isStream = data.readable === true && typeof data.pipe === 'function'; + isString = typeof data === 'string'; + + if (!(!isBuffer && !isFile && !isBlob && !isStream && !isString)) { + _context25.next = 11; + break; + } + + throw new Error('invalid data type'); + + case 11: + _ref9 = options || {}, contentType = _ref9.contentType, contentLength = _ref9.contentLength, checksum = _ref9.checksum, lastModifiedDate = _ref9.lastModifiedDate, ifMatch = _ref9.ifMatch; + + if (!contentType) { + if (isBuffer) { + contentType = CONTENT_TYPE_OCTET_STREAM; + } else if (isFile) { + contentType = data.type || getFileTypeFromName(data.name.toLowerCase()) || CONTENT_TYPE_OCTET_STREAM; + + if (!lastModifiedDate) { + lastModifiedDate = data.lastModifiedDate; + } + } else if (isBlob) { + contentType = data.type || CONTENT_TYPE_OCTET_STREAM; + } else if (isStream) { + contentType = CONTENT_TYPE_OCTET_STREAM; + } else if (typeof data === 'string') { + contentType = 'text/plain'; } + } + + if (lastModifiedDate && typeof lastModifiedDate === 'string') { + lastModifiedDate = new Date(lastModifiedDate); + } + + headers = { + 'Content-Type': contentType + }; + if (contentLength) headers['Content-Length'] = String(contentLength); + if (checksum) headers['Content-MD5'] = checksum; + if (lastModifiedDate) headers['Date'] = lastModifiedDate.toGMTString(); + if (ifMatch) headers['If-Match'] = ifMatch; + _context25.next = 21; + return this.stackClient.fetchJSON(method, path, data, { + headers: headers, + onUploadProgress: options.onUploadProgress }); - case 8: - result = _context4.sent; - this.setOAuthOptions(_objectSpread(_objectSpread({}, data), result)); - return _context4.abrupt("return", this.oauthOptions); + case 21: + resp = _context25.sent; + return _context25.abrupt("return", { + data: normalizeFile(resp.data) + }); - case 11: + case 23: case "end": - return _context4.stop(); + return _context25.stop(); } } - }, _callee4, this); + }, _callee25, this); })); - function updateInformation(_x) { - return _updateInformation.apply(this, arguments); - } + return function doUpload(_x30, _x31, _x32) { + return _doUpload.apply(this, arguments); + }; + }() + }]); + return FileCollection; +}(_DocumentCollection2.default); + +var _default = FileCollection; +exports.default = _default; + +/***/ }), +/* 713 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +let Mime = __webpack_require__(714); +module.exports = new Mime(__webpack_require__(715)); + + +/***/ }), +/* 714 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +/** + * @param typeMap [Object] Map of MIME type -> Array[extensions] + * @param ... + */ +function Mime() { + this._types = Object.create(null); + this._extensions = Object.create(null); + + for (let i = 0; i < arguments.length; i++) { + this.define(arguments[i]); + } + + this.define = this.define.bind(this); + this.getType = this.getType.bind(this); + this.getExtension = this.getExtension.bind(this); +} + +/** + * Define mimetype -> extension mappings. Each key is a mime-type that maps + * to an array of extensions associated with the type. The first extension is + * used as the default extension for the type. + * + * e.g. mime.define({'audio/ogg', ['oga', 'ogg', 'spx']}); + * + * If a type declares an extension that has already been defined, an error will + * be thrown. To suppress this error and force the extension to be associated + * with the new type, pass `force`=true. Alternatively, you may prefix the + * extension with "*" to map the type to extension, without mapping the + * extension to the type. + * + * e.g. mime.define({'audio/wav', ['wav']}, {'audio/x-wav', ['*wav']}); + * + * + * @param map (Object) type definitions + * @param force (Boolean) if true, force overriding of existing definitions + */ +Mime.prototype.define = function(typeMap, force) { + for (let type in typeMap) { + let extensions = typeMap[type].map(function(t) { + return t.toLowerCase(); + }); + type = type.toLowerCase(); + + for (let i = 0; i < extensions.length; i++) { + const ext = extensions[i]; + + // '*' prefix = not the preferred type for this extension. So fixup the + // extension, and skip it. + if (ext[0] === '*') { + continue; + } + + if (!force && (ext in this._types)) { + throw new Error( + 'Attempt to change mapping for "' + ext + + '" extension from "' + this._types[ext] + '" to "' + type + + '". Pass `force=true` to allow this, otherwise remove "' + ext + + '" from the list of extensions for "' + type + '".' + ); + } + + this._types[ext] = type; + } + + // Use first extension as default + if (force || !this._extensions[type]) { + const ext = extensions[0]; + this._extensions[type] = (ext[0] !== '*') ? ext : ext.substr(1); + } + } +}; + +/** + * Lookup a mime type based on extension + */ +Mime.prototype.getType = function(path) { + path = String(path); + let last = path.replace(/^.*[/\\]/, '').toLowerCase(); + let ext = last.replace(/^.*\./, '').toLowerCase(); + + let hasPath = last.length < path.length; + let hasDot = ext.length < last.length - 1; + + return (hasDot || !hasPath) && this._types[ext] || null; +}; + +/** + * Return file extension associated with a mime type + */ +Mime.prototype.getExtension = function(type) { + type = /^\s*([^;\s]*)/.test(type) && RegExp.$1; + return type && this._extensions[type.toLowerCase()] || null; +}; + +module.exports = Mime; + + +/***/ }), +/* 715 */ +/***/ (function(module, exports) { + +module.exports = {"application/andrew-inset":["ez"],"application/applixware":["aw"],"application/atom+xml":["atom"],"application/atomcat+xml":["atomcat"],"application/atomdeleted+xml":["atomdeleted"],"application/atomsvc+xml":["atomsvc"],"application/atsc-dwd+xml":["dwd"],"application/atsc-held+xml":["held"],"application/atsc-rsat+xml":["rsat"],"application/bdoc":["bdoc"],"application/calendar+xml":["xcs"],"application/ccxml+xml":["ccxml"],"application/cdfx+xml":["cdfx"],"application/cdmi-capability":["cdmia"],"application/cdmi-container":["cdmic"],"application/cdmi-domain":["cdmid"],"application/cdmi-object":["cdmio"],"application/cdmi-queue":["cdmiq"],"application/cu-seeme":["cu"],"application/dash+xml":["mpd"],"application/davmount+xml":["davmount"],"application/docbook+xml":["dbk"],"application/dssc+der":["dssc"],"application/dssc+xml":["xdssc"],"application/ecmascript":["ecma","es"],"application/emma+xml":["emma"],"application/emotionml+xml":["emotionml"],"application/epub+zip":["epub"],"application/exi":["exi"],"application/fdt+xml":["fdt"],"application/font-tdpfr":["pfr"],"application/geo+json":["geojson"],"application/gml+xml":["gml"],"application/gpx+xml":["gpx"],"application/gxf":["gxf"],"application/gzip":["gz"],"application/hjson":["hjson"],"application/hyperstudio":["stk"],"application/inkml+xml":["ink","inkml"],"application/ipfix":["ipfix"],"application/its+xml":["its"],"application/java-archive":["jar","war","ear"],"application/java-serialized-object":["ser"],"application/java-vm":["class"],"application/javascript":["js","mjs"],"application/json":["json","map"],"application/json5":["json5"],"application/jsonml+json":["jsonml"],"application/ld+json":["jsonld"],"application/lgr+xml":["lgr"],"application/lost+xml":["lostxml"],"application/mac-binhex40":["hqx"],"application/mac-compactpro":["cpt"],"application/mads+xml":["mads"],"application/manifest+json":["webmanifest"],"application/marc":["mrc"],"application/marcxml+xml":["mrcx"],"application/mathematica":["ma","nb","mb"],"application/mathml+xml":["mathml"],"application/mbox":["mbox"],"application/mediaservercontrol+xml":["mscml"],"application/metalink+xml":["metalink"],"application/metalink4+xml":["meta4"],"application/mets+xml":["mets"],"application/mmt-aei+xml":["maei"],"application/mmt-usd+xml":["musd"],"application/mods+xml":["mods"],"application/mp21":["m21","mp21"],"application/mp4":["mp4s","m4p"],"application/mrb-consumer+xml":["*xdf"],"application/mrb-publish+xml":["*xdf"],"application/msword":["doc","dot"],"application/mxf":["mxf"],"application/n-quads":["nq"],"application/n-triples":["nt"],"application/node":["cjs"],"application/octet-stream":["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"],"application/oda":["oda"],"application/oebps-package+xml":["opf"],"application/ogg":["ogx"],"application/omdoc+xml":["omdoc"],"application/onenote":["onetoc","onetoc2","onetmp","onepkg"],"application/oxps":["oxps"],"application/p2p-overlay+xml":["relo"],"application/patch-ops-error+xml":["*xer"],"application/pdf":["pdf"],"application/pgp-encrypted":["pgp"],"application/pgp-signature":["asc","sig"],"application/pics-rules":["prf"],"application/pkcs10":["p10"],"application/pkcs7-mime":["p7m","p7c"],"application/pkcs7-signature":["p7s"],"application/pkcs8":["p8"],"application/pkix-attr-cert":["ac"],"application/pkix-cert":["cer"],"application/pkix-crl":["crl"],"application/pkix-pkipath":["pkipath"],"application/pkixcmp":["pki"],"application/pls+xml":["pls"],"application/postscript":["ai","eps","ps"],"application/provenance+xml":["provx"],"application/pskc+xml":["pskcxml"],"application/raml+yaml":["raml"],"application/rdf+xml":["rdf","owl"],"application/reginfo+xml":["rif"],"application/relax-ng-compact-syntax":["rnc"],"application/resource-lists+xml":["rl"],"application/resource-lists-diff+xml":["rld"],"application/rls-services+xml":["rs"],"application/route-apd+xml":["rapd"],"application/route-s-tsid+xml":["sls"],"application/route-usd+xml":["rusd"],"application/rpki-ghostbusters":["gbr"],"application/rpki-manifest":["mft"],"application/rpki-roa":["roa"],"application/rsd+xml":["rsd"],"application/rss+xml":["rss"],"application/rtf":["rtf"],"application/sbml+xml":["sbml"],"application/scvp-cv-request":["scq"],"application/scvp-cv-response":["scs"],"application/scvp-vp-request":["spq"],"application/scvp-vp-response":["spp"],"application/sdp":["sdp"],"application/senml+xml":["senmlx"],"application/sensml+xml":["sensmlx"],"application/set-payment-initiation":["setpay"],"application/set-registration-initiation":["setreg"],"application/shf+xml":["shf"],"application/sieve":["siv","sieve"],"application/smil+xml":["smi","smil"],"application/sparql-query":["rq"],"application/sparql-results+xml":["srx"],"application/srgs":["gram"],"application/srgs+xml":["grxml"],"application/sru+xml":["sru"],"application/ssdl+xml":["ssdl"],"application/ssml+xml":["ssml"],"application/swid+xml":["swidtag"],"application/tei+xml":["tei","teicorpus"],"application/thraud+xml":["tfi"],"application/timestamped-data":["tsd"],"application/toml":["toml"],"application/ttml+xml":["ttml"],"application/ubjson":["ubj"],"application/urc-ressheet+xml":["rsheet"],"application/urc-targetdesc+xml":["td"],"application/voicexml+xml":["vxml"],"application/wasm":["wasm"],"application/widget":["wgt"],"application/winhlp":["hlp"],"application/wsdl+xml":["wsdl"],"application/wspolicy+xml":["wspolicy"],"application/xaml+xml":["xaml"],"application/xcap-att+xml":["xav"],"application/xcap-caps+xml":["xca"],"application/xcap-diff+xml":["xdf"],"application/xcap-el+xml":["xel"],"application/xcap-error+xml":["xer"],"application/xcap-ns+xml":["xns"],"application/xenc+xml":["xenc"],"application/xhtml+xml":["xhtml","xht"],"application/xliff+xml":["xlf"],"application/xml":["xml","xsl","xsd","rng"],"application/xml-dtd":["dtd"],"application/xop+xml":["xop"],"application/xproc+xml":["xpl"],"application/xslt+xml":["*xsl","xslt"],"application/xspf+xml":["xspf"],"application/xv+xml":["mxml","xhvml","xvml","xvm"],"application/yang":["yang"],"application/yin+xml":["yin"],"application/zip":["zip"],"audio/3gpp":["*3gpp"],"audio/adpcm":["adp"],"audio/amr":["amr"],"audio/basic":["au","snd"],"audio/midi":["mid","midi","kar","rmi"],"audio/mobile-xmf":["mxmf"],"audio/mp3":["*mp3"],"audio/mp4":["m4a","mp4a"],"audio/mpeg":["mpga","mp2","mp2a","mp3","m2a","m3a"],"audio/ogg":["oga","ogg","spx","opus"],"audio/s3m":["s3m"],"audio/silk":["sil"],"audio/wav":["wav"],"audio/wave":["*wav"],"audio/webm":["weba"],"audio/xm":["xm"],"font/collection":["ttc"],"font/otf":["otf"],"font/ttf":["ttf"],"font/woff":["woff"],"font/woff2":["woff2"],"image/aces":["exr"],"image/apng":["apng"],"image/avif":["avif"],"image/bmp":["bmp"],"image/cgm":["cgm"],"image/dicom-rle":["drle"],"image/emf":["emf"],"image/fits":["fits"],"image/g3fax":["g3"],"image/gif":["gif"],"image/heic":["heic"],"image/heic-sequence":["heics"],"image/heif":["heif"],"image/heif-sequence":["heifs"],"image/hej2k":["hej2"],"image/hsj2":["hsj2"],"image/ief":["ief"],"image/jls":["jls"],"image/jp2":["jp2","jpg2"],"image/jpeg":["jpeg","jpg","jpe"],"image/jph":["jph"],"image/jphc":["jhc"],"image/jpm":["jpm"],"image/jpx":["jpx","jpf"],"image/jxr":["jxr"],"image/jxra":["jxra"],"image/jxrs":["jxrs"],"image/jxs":["jxs"],"image/jxsc":["jxsc"],"image/jxsi":["jxsi"],"image/jxss":["jxss"],"image/ktx":["ktx"],"image/ktx2":["ktx2"],"image/png":["png"],"image/sgi":["sgi"],"image/svg+xml":["svg","svgz"],"image/t38":["t38"],"image/tiff":["tif","tiff"],"image/tiff-fx":["tfx"],"image/webp":["webp"],"image/wmf":["wmf"],"message/disposition-notification":["disposition-notification"],"message/global":["u8msg"],"message/global-delivery-status":["u8dsn"],"message/global-disposition-notification":["u8mdn"],"message/global-headers":["u8hdr"],"message/rfc822":["eml","mime"],"model/3mf":["3mf"],"model/gltf+json":["gltf"],"model/gltf-binary":["glb"],"model/iges":["igs","iges"],"model/mesh":["msh","mesh","silo"],"model/mtl":["mtl"],"model/obj":["obj"],"model/stl":["stl"],"model/vrml":["wrl","vrml"],"model/x3d+binary":["*x3db","x3dbz"],"model/x3d+fastinfoset":["x3db"],"model/x3d+vrml":["*x3dv","x3dvz"],"model/x3d+xml":["x3d","x3dz"],"model/x3d-vrml":["x3dv"],"text/cache-manifest":["appcache","manifest"],"text/calendar":["ics","ifb"],"text/coffeescript":["coffee","litcoffee"],"text/css":["css"],"text/csv":["csv"],"text/html":["html","htm","shtml"],"text/jade":["jade"],"text/jsx":["jsx"],"text/less":["less"],"text/markdown":["markdown","md"],"text/mathml":["mml"],"text/mdx":["mdx"],"text/n3":["n3"],"text/plain":["txt","text","conf","def","list","log","in","ini"],"text/richtext":["rtx"],"text/rtf":["*rtf"],"text/sgml":["sgml","sgm"],"text/shex":["shex"],"text/slim":["slim","slm"],"text/spdx":["spdx"],"text/stylus":["stylus","styl"],"text/tab-separated-values":["tsv"],"text/troff":["t","tr","roff","man","me","ms"],"text/turtle":["ttl"],"text/uri-list":["uri","uris","urls"],"text/vcard":["vcard"],"text/vtt":["vtt"],"text/xml":["*xml"],"text/yaml":["yaml","yml"],"video/3gpp":["3gp","3gpp"],"video/3gpp2":["3g2"],"video/h261":["h261"],"video/h263":["h263"],"video/h264":["h264"],"video/iso.segment":["m4s"],"video/jpeg":["jpgv"],"video/jpm":["*jpm","jpgm"],"video/mj2":["mj2","mjp2"],"video/mp2t":["ts"],"video/mp4":["mp4","mp4v","mpg4"],"video/mpeg":["mpeg","mpg","mpe","m1v","m2v"],"video/ogg":["ogv"],"video/quicktime":["qt","mov"],"video/webm":["webm"]}; + +/***/ }), +/* 716 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseHas = __webpack_require__(717), + hasPath = __webpack_require__(472); + +/** + * Checks if `path` is a direct property of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = { 'a': { 'b': 2 } }; + * var other = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.has(object, 'a'); + * // => true + * + * _.has(object, 'a.b'); + * // => true + * + * _.has(object, ['a', 'b']); + * // => true + * + * _.has(other, 'a'); + * // => false + */ +function has(object, path) { + return object != null && hasPath(object, path, baseHas); +} + +module.exports = has; + + +/***/ }), +/* 717 */ +/***/ (function(module, exports) { + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * The base implementation of `_.has` without support for deep paths. + * + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. + */ +function baseHas(object, key) { + return object != null && hasOwnProperty.call(object, key); +} + +module.exports = baseHas; + + +/***/ }), +/* 718 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +var _interopRequireDefault = __webpack_require__(532); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.hasJobFinished = exports.normalizeJob = exports.JOBS_DOCTYPE = void 0; + +var _regenerator = _interopRequireDefault(__webpack_require__(547)); + +var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(687)); + +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); + +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); + +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); + +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); + +var _Collection = _interopRequireDefault(__webpack_require__(703)); + +var _DocumentCollection = __webpack_require__(686); + +var _utils = __webpack_require__(688); + +function _templateObject() { + var data = (0, _taggedTemplateLiteral2.default)(["/jobs/", ""]); + + _templateObject = function _templateObject() { + return data; + }; + + return data; +} + +var JOBS_DOCTYPE = 'io.cozy.jobs'; +exports.JOBS_DOCTYPE = JOBS_DOCTYPE; + +var sleep = function sleep(delay) { + return new Promise(function (resolve) { + return setTimeout(resolve, delay); + }); +}; - return updateInformation; - }() - /** - * Generates a random state code to be used during the OAuth process - * - * @returns {string} - */ +var normalizeJob = function normalizeJob(job) { + return (0, _objectSpread2.default)({}, job, (0, _DocumentCollection.normalizeDoc)(job, JOBS_DOCTYPE), job.attributes); +}; - }, { - key: "generateStateCode", - value: function generateStateCode() { - var STATE_SIZE = 16; - var hasCrypto = typeof window !== 'undefined' && typeof window.crypto !== 'undefined' && typeof window.crypto.getRandomValues === 'function'; - var buffer; +exports.normalizeJob = normalizeJob; - if (hasCrypto) { - buffer = new Uint8Array(STATE_SIZE); - window.crypto.getRandomValues(buffer); - } else { - buffer = new Array(STATE_SIZE); +var hasJobFinished = function hasJobFinished(job) { + return job.state === 'done' || job.state === 'errored'; +}; - for (var i = 0; i < buffer.length; i++) { - buffer[i] = Math.floor(Math.random() * 255); - } - } +exports.hasJobFinished = hasJobFinished; - return btoa(String.fromCharCode.apply(null, buffer)).replace(/=+$/, '').replace(/\//g, '_').replace(/\+/g, '-'); - } - /** - * Generates the URL that the user should be sent to in order to accept the app's permissions. - * - * @throws {NotRegisteredException} When the client doesn't have it's registration information - * @param {string} stateCode A random code to be included in the URl for security. Can be generated with `client.generateStateCode()` - * @param {Array} scopes = [] An array of permission scopes for the token. - * @returns {string} The URL - */ +var JobCollection = +/*#__PURE__*/ +function () { + function JobCollection(stackClient) { + (0, _classCallCheck2.default)(this, JobCollection); + this.stackClient = stackClient; + } - }, { - key: "getAuthCodeURL", - value: function getAuthCodeURL(stateCode) { - var scopes = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.scope; - if (!this.isRegistered()) throw new NotRegisteredException(); - var query = { - client_id: this.oauthOptions.clientID, - redirect_uri: this.oauthOptions.redirectURI, - state: stateCode, - response_type: 'code', - scope: scopes.join(' ') - }; - return "".concat(this.uri, "/auth/authorize?").concat(this.dataToQueryString(query)); - } - }, { - key: "dataToQueryString", - value: function dataToQueryString(data) { - return Object.keys(data).map(function (param) { - return "".concat(param, "=").concat(encodeURIComponent(data[param])); - }).join('&'); + (0, _createClass2.default)(JobCollection, [{ + key: "queued", + value: function queued(workerType) { + return this.stackClient.fetchJSON('GET', "/jobs/queue/".concat(workerType)); } /** - * Retrieves the access code contained in the URL to which the user is redirected after accepting the app's permissions (the `redirectURI`). + * Creates a job * - * @throws {Error} The URL should contain the same state code as the one generated with `client.getAuthCodeURL()`. If not, it will throw an error - * @param {string} pageURL The redirected page URL, containing the state code and the access code - * @param {string} stateCode The state code that was contained in the original URL the user was sent to (see `client.getAuthCodeURL()`) - * @returns {string} The access code + * @param {string} workerType - Ex: "konnector" + * @param {object} args - Ex: {"slug": "my-konnector", "trigger": "trigger-id"} + * @param {object} options + * @returns {object} createdJob */ }, { - key: "getAccessCodeFromURL", - value: function getAccessCodeFromURL(pageURL, stateCode) { - if (!stateCode) throw new Error('Missing state code'); - var params = new URL(pageURL).searchParams; - var urlStateCode = params.get('state'); - var urlAccessCode = params.get('access_code'); - if (stateCode !== urlStateCode) throw new Error('Given state does not match url query state'); - return urlAccessCode; + key: "create", + value: function create(workerType, args, options) { + return this.stackClient.fetchJSON('POST', "/jobs/queue/".concat(workerType), { + data: { + type: JOBS_DOCTYPE, + attributes: { + arguments: args || {}, + options: options || {} + } + } + }); } /** - * Exchanges an access code for an access token. This function does **not** update the client's token. - * - * @throws {NotRegisteredException} When the client doesn't have it's registration information - * @param {string} accessCode - The access code contained in the redirection URL — see `client.getAccessCodeFromURL()` - * @param {object} oauthOptionsArg — To use when OAuthClient is not yet registered (during login process) - * @param {string} uri — To use when OAuthClient is not yet registered (during login process) - * @returns {Promise} A promise that resolves with an AccessToken object. + * Return a normalized job, given its id */ }, { - key: "fetchAccessToken", + key: "get", value: function () { - var _fetchAccessToken = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(accessCode, oauthOptionsArg, uri) { - var oauthOptions, data, result; - return _regenerator.default.wrap(function _callee5$(_context5) { + var _get = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(id) { + return _regenerator.default.wrap(function _callee$(_context) { while (1) { - switch (_context5.prev = _context5.next) { + switch (_context.prev = _context.next) { case 0: - if (!(!this.isRegistered() && !oauthOptionsArg)) { - _context5.next = 2; - break; - } - - throw new NotRegisteredException(); - - case 2: - oauthOptions = oauthOptionsArg || this.oauthOptions; - data = { - grant_type: 'authorization_code', - code: accessCode, - client_id: oauthOptions.clientID, - client_secret: oauthOptions.clientSecret - }; - _context5.next = 6; - return this.fetchJSON('POST', (uri || '') + '/auth/access_token', this.dataToQueryString(data), { - headers: { - 'Content-Type': 'application/x-www-form-urlencoded' - } - }); - - case 6: - result = _context5.sent; - return _context5.abrupt("return", new _AccessToken.default(result)); + return _context.abrupt("return", _Collection.default.get(this.stackClient, (0, _utils.uri)(_templateObject(), id), { + normalize: normalizeJob + })); - case 8: + case 1: case "end": - return _context5.stop(); + return _context.stop(); } } - }, _callee5, this); + }, _callee, this); })); - function fetchAccessToken(_x2, _x3, _x4) { - return _fetchAccessToken.apply(this, arguments); - } - - return fetchAccessToken; + return function get(_x) { + return _get.apply(this, arguments); + }; }() /** - * Retrieves a new access token by refreshing the currently used token. + * Polls a job state until it is finished * - * @throws {NotRegisteredException} When the client doesn't have it's registration information - * @throws {Error} The client should already have an access token to use this function - * @returns {Promise} A promise that resolves with a new AccessToken object + * `options.until` can be used to tweak when to stop waiting. It will be + * given the current job state. If true is returned, the awaiting is + * stopped. */ }, { - key: "refreshToken", + key: "waitFor", value: function () { - var _refreshToken = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee6() { - var data, result, newToken; - return _regenerator.default.wrap(function _callee6$(_context6) { + var _waitFor = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(id) { + var _ref, + _ref$onUpdate, + onUpdate, + _ref$until, + until, + _ref$delay, + delay, + _ref$timeout, + timeout, + start, + jobData, + now, + _args2 = arguments; + + return _regenerator.default.wrap(function _callee2$(_context2) { while (1) { - switch (_context6.prev = _context6.next) { + switch (_context2.prev = _context2.next) { case 0: - if (this.isRegistered()) { - _context6.next = 2; - break; - } + _ref = _args2.length > 1 && _args2[1] !== undefined ? _args2[1] : {}, _ref$onUpdate = _ref.onUpdate, onUpdate = _ref$onUpdate === void 0 ? null : _ref$onUpdate, _ref$until = _ref.until, until = _ref$until === void 0 ? hasJobFinished : _ref$until, _ref$delay = _ref.delay, delay = _ref$delay === void 0 ? 5 * 1000 : _ref$delay, _ref$timeout = _ref.timeout, timeout = _ref$timeout === void 0 ? 60 * 5 * 1000 : _ref$timeout; + start = Date.now(); + _context2.next = 4; + return this.get(id); - throw new NotRegisteredException(); + case 4: + jobData = _context2.sent.data.attributes; - case 2: - if (this.token) { - _context6.next = 4; + case 5: + if (!(!jobData || !until(jobData))) { + _context2.next = 17; break; } - throw new Error('No token to refresh'); + _context2.next = 8; + return sleep(delay); - case 4: - data = { - grant_type: 'refresh_token', - refresh_token: this.token.refreshToken, - client_id: this.oauthOptions.clientID, - client_secret: this.oauthOptions.clientSecret - }; - _context6.next = 7; - return (0, _get2.default)((0, _getPrototypeOf2.default)(OAuthClient.prototype), "fetchJSON", this).call(this, 'POST', '/auth/access_token', this.dataToQueryString(data), { - headers: { - 'Content-Type': 'application/x-www-form-urlencoded' - } - }); + case 8: + _context2.next = 10; + return this.get(id); - case 7: - result = _context6.sent; - newToken = new _AccessToken.default(_objectSpread({ - refresh_token: this.token.refreshToken - }, result)); + case 10: + jobData = _context2.sent.data.attributes; - if (this.onTokenRefresh && typeof this.onTokenRefresh === 'function') { - this.onTokenRefresh(newToken); + if (onUpdate) { + onUpdate(jobData); } - return _context6.abrupt("return", newToken); + now = Date.now(); - case 11: + if (!(start - now > timeout)) { + _context2.next = 15; + break; + } + + throw new Error('Timeout for JobCollection::waitFor'); + + case 15: + _context2.next = 5; + break; + + case 17: + return _context2.abrupt("return", jobData); + + case 18: case "end": - return _context6.stop(); + return _context2.stop(); } } - }, _callee6, this); + }, _callee2, this); })); - function refreshToken() { - return _refreshToken.apply(this, arguments); - } - - return refreshToken; + return function waitFor(_x2) { + return _waitFor.apply(this, arguments); + }; }() - }, { - key: "exchangeOAuthSecret", - value: function exchangeOAuthSecret(uri, secret) { - return this.fetchJSON('POST', uri + '/auth/secret_exchange', { - secret: secret - }); - } - /** - * Updates the client's stored token - * - * @param {string} token = null The new token to use — can be a string, a json object or an AccessToken instance. - */ - - }, { - key: "setToken", - value: function setToken(token) { - if (token) { - this.token = token instanceof _AccessToken.default ? token : new _AccessToken.default(token); - } else { - this.token = null; - } - } - }, { - key: "setCredentials", - value: function setCredentials(token) { - (0, _logDeprecate.default)('setCredentials is deprecated, please replace by setToken'); - return this.setToken(token); - } - /** - * Updates the OAuth informations - * - * @param {object} options Map of OAuth options - */ - - }, { - key: "setOAuthOptions", - value: function setOAuthOptions(options) { - this.oauthOptions = this.camelCaseOAuthData(options); - } - }, { - key: "resetClientId", - value: function resetClientId() { - this.oauthOptions.clientID = ''; - } - /** - * Reset the current OAuth client - */ - - }, { - key: "resetClient", - value: function resetClient() { - this.resetClientId(); - this.setUri(null); - this.setToken(null); - } - /** - * Turns the client's registration access token into a header suitable for HTTP requests. Used in some queries to manipulate the client on the server side. - * - * @returns {string} - * @private - */ - - }, { - key: "registrationAccessTokenToAuthHeader", - value: function registrationAccessTokenToAuthHeader() { - if (!this.oauthOptions.registrationAccessToken) { - throw new Error('No registration access token'); - } - - return 'Bearer ' + this.oauthOptions.registrationAccessToken; - } }]); - return OAuthClient; -}(_CozyStackClient2.default); - -var NotRegisteredException = /*#__PURE__*/function (_Error) { - (0, _inherits2.default)(NotRegisteredException, _Error); - - var _super2 = _createSuper(NotRegisteredException); - - function NotRegisteredException() { - var _this2; - - var message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'Client not registered or missing OAuth information'; - (0, _classCallCheck2.default)(this, NotRegisteredException); - _this2 = _super2.call(this, message); - _this2.message = message; - _this2.name = 'NotRegisteredException'; - return _this2; - } - - return NotRegisteredException; -}( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error)); + return JobCollection; +}(); -var _default = OAuthClient; +var _default = JobCollection; exports.default = _default; /***/ }), -/* 690 */ +/* 719 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.REGISTRATION_ABORT = void 0; -var REGISTRATION_ABORT = 'REGISTRATION_ABORT'; -exports.REGISTRATION_ABORT = REGISTRATION_ABORT; - -/***/ }), -/* 691 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - +var _interopRequireWildcard = __webpack_require__(530); -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = exports.transformBulkDocsResponse = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(543)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +exports.default = exports.KONNECTORS_DOCTYPE = void 0; -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -var _dsl = __webpack_require__(625); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -var _CozyLink2 = _interopRequireDefault(__webpack_require__(692)); +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -var _types = __webpack_require__(628); +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -var _errors = __webpack_require__(693); +var _AppCollection2 = _interopRequireDefault(__webpack_require__(685)); -var _zipWith = _interopRequireDefault(__webpack_require__(694)); +var _TriggerCollection = _interopRequireWildcard(__webpack_require__(720)); -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +var _DocumentCollection = __webpack_require__(686); -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +var _pick = _interopRequireDefault(__webpack_require__(677)); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +var KONNECTORS_DOCTYPE = 'io.cozy.konnectors'; +exports.KONNECTORS_DOCTYPE = KONNECTORS_DOCTYPE; -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +var KonnectorCollection = +/*#__PURE__*/ +function (_AppCollection) { + (0, _inherits2.default)(KonnectorCollection, _AppCollection); -/** - * Returns full documents after a bulk update - * - * @private - * - * @param {CouchDBBulkResult[]} bulkResponse - Response from bulk docs - * @param {CozyClientDocument[]} originalDocuments - Documents that were updated - * @returns {{ data: CozyClientDocument[] }} - Full documents with updated _id and _rev - */ -var transformBulkDocsResponse = function transformBulkDocsResponse(bulkResponse, originalDocuments) { - var updatedDocs = (0, _zipWith.default)(bulkResponse, originalDocuments, function (result, od) { - return result.ok ? _objectSpread(_objectSpread({}, od), {}, { - _id: result.id, - _rev: result.rev - }) : od; - }); + function KonnectorCollection(stackClient) { + var _this; - if (bulkResponse.find(function (x) { - return !x.ok; - })) { - throw new _errors.BulkEditError(bulkResponse, updatedDocs); + (0, _classCallCheck2.default)(this, KonnectorCollection); + _this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(KonnectorCollection).call(this, stackClient)); + _this.doctype = KONNECTORS_DOCTYPE; + _this.endpoint = '/konnectors/'; + return _this; } - return { - data: updatedDocs - }; -}; -/** - * Transfers queries and mutations to a remote stack - */ - - -exports.transformBulkDocsResponse = transformBulkDocsResponse; - -var StackLink = /*#__PURE__*/function (_CozyLink) { - (0, _inherits2.default)(StackLink, _CozyLink); - - var _super = _createSuper(StackLink); - - /** - * @param {object} [options] - Options - * @param {object} [options.stackClient] - A StackClient - * @param {object} [options.client] - A StackClient (deprecated) - */ - function StackLink() { - var _this; - - var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, - client = _ref.client, - stackClient = _ref.stackClient; + (0, _createClass2.default)(KonnectorCollection, [{ + key: "create", + value: function () { + var _create = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee() { + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + throw new Error('create() method is not available for konnectors'); - (0, _classCallCheck2.default)(this, StackLink); - _this = _super.call(this); + case 1: + case "end": + return _context.stop(); + } + } + }, _callee); + })); - if (client) { - console.warn('Using options.client is deprecated, prefer options.stackClient'); - } + return function create() { + return _create.apply(this, arguments); + }; + }() + }, { + key: "destroy", + value: function () { + var _destroy = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2() { + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + throw new Error('destroy() method is not available for konnectors'); - _this.stackClient = stackClient || client; - return _this; - } + case 1: + case "end": + return _context2.stop(); + } + } + }, _callee2); + })); - (0, _createClass2.default)(StackLink, [{ - key: "registerClient", - value: function registerClient(client) { - this.stackClient = client.stackClient || client.client; - } - }, { - key: "reset", - value: function reset() { - this.stackClient = null; - } - }, { - key: "request", - value: function request(operation, result, forward) { - if (operation.mutationType) { - return this.executeMutation(operation, result, forward); - } + return function destroy() { + return _destroy.apply(this, arguments); + }; + }() + /** + * Find triggers for a particular konnector + * + * @param {string} slug of the konnector + */ - return this.executeQuery(operation); - } }, { - key: "executeQuery", - value: function executeQuery(query) { - var doctype = query.doctype, - selector = query.selector, - id = query.id, - ids = query.ids, - referenced = query.referenced, - options = (0, _objectWithoutProperties2.default)(query, ["doctype", "selector", "id", "ids", "referenced"]); - - if (!doctype) { - console.warn('Bad query', query); - throw new Error('No doctype found in a query definition'); - } + key: "findTriggersBySlug", + value: function () { + var _findTriggersBySlug = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(slug) { + var triggerCol, _ref, rawTriggers; - var collection = this.stackClient.collection(doctype); + return _regenerator.default.wrap(function _callee3$(_context3) { + while (1) { + switch (_context3.prev = _context3.next) { + case 0: + triggerCol = new _TriggerCollection.default(this.stackClient); + _context3.next = 3; + return triggerCol.all({ + limit: null + }); - if (id) { - return collection.get(id, query); - } + case 3: + _ref = _context3.sent; + rawTriggers = _ref.data; + return _context3.abrupt("return", rawTriggers.map(function (x) { + return x.attributes; + }).filter(function (triggerAttrs) { + return (0, _TriggerCollection.isForKonnector)(triggerAttrs, slug); + })); - if (ids) { - return collection.getAll(ids); - } + case 6: + case "end": + return _context3.stop(); + } + } + }, _callee3, this); + })); - if (referenced) { - return collection.findReferencedBy(referenced, options); - } + return function findTriggersBySlug(_x) { + return _findTriggersBySlug.apply(this, arguments); + }; + }() + /** + * Launch a trigger for a given konnector. + * + * @param {string} slug + * @param {object} options + * @param {object} options.accountId - Pinpoint the account that should be used, useful if the user + * has more than 1 account for 1 konnector + */ - return !selector && !options.sort ? collection.all(options) : collection.find(selector, options); - } }, { - key: "executeMutation", + key: "launch", value: function () { - var _executeMutation = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(mutation, result, forward) { - var mutationType, doc, docs, props, updateAllResp; - return _regenerator.default.wrap(function _callee$(_context) { + var _launch = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4(slug) { + var options, + triggerCol, + konnTriggers, + filteredTriggers, + filterAttrs, + _args4 = arguments; + return _regenerator.default.wrap(function _callee4$(_context4) { while (1) { - switch (_context.prev = _context.next) { + switch (_context4.prev = _context4.next) { case 0: - mutationType = mutation.mutationType, doc = mutation.document, docs = mutation.documents, props = (0, _objectWithoutProperties2.default)(mutation, ["mutationType", "document", "documents"]); - _context.t0 = mutationType; - _context.next = _context.t0 === _dsl.MutationTypes.CREATE_DOCUMENT ? 4 : _context.t0 === _dsl.MutationTypes.UPDATE_DOCUMENTS ? 5 : _context.t0 === _dsl.MutationTypes.UPDATE_DOCUMENT ? 9 : _context.t0 === _dsl.MutationTypes.DELETE_DOCUMENT ? 10 : _context.t0 === _dsl.MutationTypes.ADD_REFERENCES_TO ? 11 : _context.t0 === _dsl.MutationTypes.REMOVE_REFERENCES_TO ? 12 : _context.t0 === _dsl.MutationTypes.ADD_REFERENCED_BY ? 13 : _context.t0 === _dsl.MutationTypes.REMOVE_REFERENCED_BY ? 18 : _context.t0 === _dsl.MutationTypes.UPLOAD_FILE ? 23 : 24; - break; + options = _args4.length > 1 && _args4[1] !== undefined ? _args4[1] : {}; + triggerCol = new _TriggerCollection.default(this.stackClient); + _context4.next = 4; + return this.findTriggersBySlug(slug); case 4: - return _context.abrupt("return", this.stackClient.collection(doc._type).create(doc)); - - case 5: - _context.next = 7; - return this.stackClient.collection(docs[0]._type).updateAll(docs); + konnTriggers = _context4.sent; + filteredTriggers = options.accountId ? konnTriggers.filter(function (triggerAttrs) { + return (0, _TriggerCollection.isForAccount)(triggerAttrs, options.accountId); + }) : konnTriggers; - case 7: - updateAllResp = _context.sent; - return _context.abrupt("return", transformBulkDocsResponse(updateAllResp, docs)); + if (!(filteredTriggers.length === 1)) { + _context4.next = 10; + break; + } - case 9: - return _context.abrupt("return", this.stackClient.collection(doc._type).update(doc)); + return _context4.abrupt("return", triggerCol.launch(konnTriggers[0])); case 10: - return _context.abrupt("return", this.stackClient.collection(doc._type).destroy(doc)); + filterAttrs = JSON.stringify((0, _pick.default)({ + slug: slug, + accountId: options.accountId + })); - case 11: - return _context.abrupt("return", this.stackClient.collection(props.referencedDocuments[0]._type).addReferencesTo(doc, props.referencedDocuments)); + if (!(filteredTriggers.length === 0)) { + _context4.next = 15; + break; + } - case 12: - return _context.abrupt("return", this.stackClient.collection(props.referencedDocuments[0]._type).removeReferencesTo(doc, props.referencedDocuments)); + throw new Error("No trigger found for ".concat(filterAttrs)); - case 13: - if (!(doc._type === 'io.cozy.files')) { - _context.next = 17; + case 15: + if (!(filteredTriggers.length > 1)) { + _context4.next = 17; break; } - return _context.abrupt("return", this.stackClient.collection('io.cozy.files').addReferencedBy(doc, props.referencedDocuments)); + throw new Error("More than 1 trigger found for ".concat(filterAttrs)); case 17: - throw new Error('The document type should be io.cozy.files'); + case "end": + return _context4.stop(); + } + } + }, _callee4, this); + })); - case 18: - if (!(doc._type === 'io.cozy.files')) { - _context.next = 22; + return function launch(_x2) { + return _launch.apply(this, arguments); + }; + }() + /** + * Updates a konnector + * + * @param {string} slug + * @param {object} options + * @param {object} options.source - Specify the source (ex: registry://slug/stable) + * @param {boolean} options.sync - Wait for konnector to be updated, otherwise the job + * is just scheduled + */ + + }, { + key: "update", + value: function () { + var _update = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee5(slug) { + var options, + source, + sync, + reqOptions, + rawKonnector, + _args5 = arguments; + return _regenerator.default.wrap(function _callee5$(_context5) { + while (1) { + switch (_context5.prev = _context5.next) { + case 0: + options = _args5.length > 1 && _args5[1] !== undefined ? _args5[1] : {}; + + if (slug) { + _context5.next = 3; break; } - return _context.abrupt("return", this.stackClient.collection('io.cozy.files').removeReferencedBy(doc, props.referencedDocuments)); - - case 22: - throw new Error('The document type should be io.cozy.files'); + throw new Error('Cannot call update with no slug'); - case 23: - return _context.abrupt("return", this.stackClient.collection('io.cozy.files').upload(props.file, props.dirPath)); + case 3: + source = options.source || null; + sync = options.sync || false; + reqOptions = sync ? { + headers: { + Accept: 'text/event-stream' + } + } : {}; + _context5.next = 8; + return this.stackClient.fetchJSON('PUT', "/konnectors/".concat(slug) + (source ? "?Source=".concat(source) : ''), reqOptions); - case 24: - return _context.abrupt("return", forward(mutation, result)); + case 8: + rawKonnector = _context5.sent; + return _context5.abrupt("return", (0, _DocumentCollection.normalizeDoc)(rawKonnector)); - case 25: + case 10: case "end": - return _context.stop(); + return _context5.stop(); } } - }, _callee, this); + }, _callee5, this); })); - function executeMutation(_x, _x2, _x3) { - return _executeMutation.apply(this, arguments); - } - - return executeMutation; + return function update(_x3) { + return _update.apply(this, arguments); + }; }() }]); - return StackLink; -}(_CozyLink2.default); + return KonnectorCollection; +}(_AppCollection2.default); -exports.default = StackLink; +var _default = KonnectorCollection; +exports.default = _default; /***/ }), -/* 692 */ +/* 720 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireWildcard = __webpack_require__(530); + +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.chain = exports.default = void 0; +exports.default = exports.isForAccount = exports.isForKonnector = exports.normalizeTrigger = exports.TRIGGERS_DOCTYPE = exports.JOBS_DOCTYPE = void 0; -var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(540)); +var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(687)); -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var CozyLink = /*#__PURE__*/function () { - function CozyLink(requestHandler) { - (0, _classCallCheck2.default)(this, CozyLink); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - if (typeof requestHandler === 'function') { - this.request = requestHandler; - } - } +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); - (0, _createClass2.default)(CozyLink, [{ - key: "request", - value: function request(operation, result, forward) { - throw new Error('request is not implemented'); - } - }]); - return CozyLink; -}(); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -exports.default = CozyLink; +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -var toLink = function toLink(handler) { - return typeof handler === 'function' ? new CozyLink(handler) : handler; -}; +var _get3 = _interopRequireDefault(__webpack_require__(565)); -var defaultLinkHandler = function defaultLinkHandler(operation, result) { - if (result) return result;else if (operation.execute) return operation.execute();else throw new Error("No link could handle operation ".concat(JSON.stringify(operation))); -}; +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -var chain = function chain(links) { - return [].concat((0, _toConsumableArray2.default)(links), [defaultLinkHandler]).map(toLink).reduce(concat); -}; +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -exports.chain = chain; +var _Collection = _interopRequireWildcard(__webpack_require__(703)); -var concat = function concat(firstLink, nextLink) { - return new CozyLink(function (operation, result, forward) { - var nextForward = function nextForward(op, res) { - return nextLink.request(op, res, forward); - }; +var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(686)); - return firstLink.request(operation, result, nextForward); - }); -}; +var _JobCollection = __webpack_require__(718); -/***/ }), -/* 693 */ -/***/ (function(module, exports, __webpack_require__) { +var _utils = __webpack_require__(688); -"use strict"; +var _errors = __webpack_require__(705); +function _templateObject4() { + var data = (0, _taggedTemplateLiteral2.default)(["/jobs/triggers/", "/launch"]); -var _interopRequireDefault = __webpack_require__(530); + _templateObject4 = function _templateObject4() { + return data; + }; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.BulkEditError = void 0; + return data; +} + +function _templateObject3() { + var data = (0, _taggedTemplateLiteral2.default)(["/jobs/triggers/", ""]); + + _templateObject3 = function _templateObject3() { + return data; + }; -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + return data; +} -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +function _templateObject2() { + var data = (0, _taggedTemplateLiteral2.default)(["/jobs/triggers/", ""]); -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + _templateObject2 = function _templateObject2() { + return data; + }; -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); + return data; +} -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); +function _templateObject() { + var data = (0, _taggedTemplateLiteral2.default)(["/jobs/triggers"]); -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); + _templateObject = function _templateObject() { + return data; + }; -var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(659)); + return data; +} -var _zipWith = _interopRequireDefault(__webpack_require__(694)); +var JOBS_DOCTYPE = 'io.cozy.jobs'; +exports.JOBS_DOCTYPE = JOBS_DOCTYPE; +var TRIGGERS_DOCTYPE = 'io.cozy.triggers'; +exports.TRIGGERS_DOCTYPE = TRIGGERS_DOCTYPE; -var _types = __webpack_require__(628); +var normalizeTrigger = function normalizeTrigger(trigger) { + return (0, _objectSpread2.default)({}, trigger, (0, _DocumentCollection2.normalizeDoc)(trigger, TRIGGERS_DOCTYPE), trigger.attributes); +}; -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +exports.normalizeTrigger = normalizeTrigger; -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +var isForKonnector = function isForKonnector(triggerAttrs, slug) { + return triggerAttrs.worker === 'konnector' && triggerAttrs.message.konnector == slug; +}; -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +exports.isForKonnector = isForKonnector; -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +var isForAccount = function isForAccount(triggerAttrs, accountId) { + return triggerAttrs.message.account == accountId; +}; +/** + * Implements `DocumentCollection` API along with specific methods for `io.cozy.triggers`. + */ -var BulkEditError = /*#__PURE__*/function (_Error) { - (0, _inherits2.default)(BulkEditError, _Error); - var _super = _createSuper(BulkEditError); +exports.isForAccount = isForAccount; - /** - * Indicates that a bulk edit has (potentially partially) failed - * - * @param {CouchDBBulkResult[]} bulkResponse - CouchDB Bulk response - * @param {CozyClientDocument[]} updatedDocs - Docs with updated _id and _rev - */ - function BulkEditError(bulkResponse, updatedDocs) { - var _this; +var TriggerCollection = +/*#__PURE__*/ +function (_DocumentCollection) { + (0, _inherits2.default)(TriggerCollection, _DocumentCollection); - (0, _classCallCheck2.default)(this, BulkEditError); - _this = _super.call(this, 'Error while bulk saving'); - _this.name = 'BulkEditError'; - _this.results = (0, _zipWith.default)(bulkResponse, updatedDocs, function (result, doc) { - return _objectSpread(_objectSpread({}, result), {}, { - doc: doc - }); - }); - return _this; + function TriggerCollection(stackClient) { + (0, _classCallCheck2.default)(this, TriggerCollection); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(TriggerCollection).call(this, TRIGGERS_DOCTYPE, stackClient)); } /** - * Get documents that have been correctly updated + * Get the list of triggers. * - * @returns {CozyClientDocument[]} + * @see https://docs.cozy.io/en/cozy-stack/jobs/#get-jobstriggers + * @param {{Worker}} options The fetch options: Worker allow to filter only triggers associated with a specific worker. + * @returns {{data}} The JSON API conformant response. + * @throws {FetchError} */ - (0, _createClass2.default)(BulkEditError, [{ - key: "getUpdatedDocuments", - value: function getUpdatedDocuments() { - return this.results.filter(function (r) { - return r.ok; - }).map(function (r) { - return r.doc; - }); - } + (0, _createClass2.default)(TriggerCollection, [{ + key: "all", + value: function () { + var _all = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee() { + var options, + resp, + _args = arguments; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + options = _args.length > 0 && _args[0] !== undefined ? _args[0] : {}; + _context.prev = 1; + _context.next = 4; + return this.stackClient.fetchJSON('GET', "/jobs/triggers"); + + case 4: + resp = _context.sent; + return _context.abrupt("return", { + data: resp.data.map(function (row) { + return normalizeTrigger(row, TRIGGERS_DOCTYPE); + }), + meta: { + count: resp.data.length + }, + next: false, + skip: 0 + }); + + case 8: + _context.prev = 8; + _context.t0 = _context["catch"](1); + return _context.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context.t0)); + + case 11: + case "end": + return _context.stop(); + } + } + }, _callee, this, [[1, 8]]); + })); + + return function all() { + return _all.apply(this, arguments); + }; + }() /** - * Get bulk errors results + * Creates a Trigger document * - * @returns {Array<CouchDBBulkResult & { doc: CozyClientDocument }>} + * @see https://docs.cozy.io/en/cozy-stack/jobs/#post-jobstriggers + * @param {object} attributes Trigger's attributes + * @returns {object} Stack response, containing trigger document under `data` attribute. */ }, { - key: "getErrors", - value: function getErrors() { - return this.results.filter(function (r) { - return !r.ok; - }); - } - }]); - return BulkEditError; -}( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error)); + key: "create", + value: function () { + var _create = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(attributes) { + var path, resp; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + path = (0, _utils.uri)(_templateObject()); + _context2.next = 3; + return this.stackClient.fetchJSON('POST', path, { + data: { + attributes: attributes + } + }); -exports.BulkEditError = BulkEditError; + case 3: + resp = _context2.sent; + return _context2.abrupt("return", { + data: normalizeTrigger(resp.data) + }); -/***/ }), -/* 694 */ -/***/ (function(module, exports, __webpack_require__) { + case 5: + case "end": + return _context2.stop(); + } + } + }, _callee2, this); + })); -var baseRest = __webpack_require__(562), - unzipWith = __webpack_require__(695); + return function create(_x) { + return _create.apply(this, arguments); + }; + }() + /** + * Deletes a trigger + * + * @see https://docs.cozy.io/en/cozy-stack/jobs/#delete-jobstriggerstrigger-id + * @param {object} document The trigger to delete — must have an _id field + * @returns {object} The deleted document + */ -/** - * This method is like `_.zip` except that it accepts `iteratee` to specify - * how grouped values should be combined. The iteratee is invoked with the - * elements of each group: (...group). - * - * @static - * @memberOf _ - * @since 3.8.0 - * @category Array - * @param {...Array} [arrays] The arrays to process. - * @param {Function} [iteratee=_.identity] The function to combine - * grouped values. - * @returns {Array} Returns the new array of grouped elements. - * @example - * - * _.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) { - * return a + b + c; - * }); - * // => [111, 222] - */ -var zipWith = baseRest(function(arrays) { - var length = arrays.length, - iteratee = length > 1 ? arrays[length - 1] : undefined; + }, { + key: "destroy", + value: function () { + var _destroy = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(document) { + var _id; - iteratee = typeof iteratee == 'function' ? (arrays.pop(), iteratee) : undefined; - return unzipWith(arrays, iteratee); -}); + return _regenerator.default.wrap(function _callee3$(_context3) { + while (1) { + switch (_context3.prev = _context3.next) { + case 0: + _id = document._id; -module.exports = zipWith; + if (_id) { + _context3.next = 3; + break; + } + throw new Error('TriggerCollection.destroy needs a document with an _id'); -/***/ }), -/* 695 */ -/***/ (function(module, exports, __webpack_require__) { + case 3: + _context3.next = 5; + return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject2(), _id)); -var apply = __webpack_require__(564), - arrayMap = __webpack_require__(410), - unzip = __webpack_require__(569); + case 5: + return _context3.abrupt("return", { + data: normalizeTrigger((0, _objectSpread2.default)({}, document, { + _deleted: true + })) + }); -/** - * This method is like `_.unzip` except that it accepts `iteratee` to specify - * how regrouped values should be combined. The iteratee is invoked with the - * elements of each group: (...group). - * - * @static - * @memberOf _ - * @since 3.8.0 - * @category Array - * @param {Array} array The array of grouped elements to process. - * @param {Function} [iteratee=_.identity] The function to combine - * regrouped values. - * @returns {Array} Returns the new array of regrouped elements. - * @example - * - * var zipped = _.zip([1, 2], [10, 20], [100, 200]); - * // => [[1, 10, 100], [2, 20, 200]] - * - * _.unzipWith(zipped, _.add); - * // => [3, 30, 300] - */ -function unzipWith(array, iteratee) { - if (!(array && array.length)) { - return []; - } - var result = unzip(array); - if (iteratee == null) { - return result; - } - return arrayMap(result, function(group) { - return apply(iteratee, undefined, group); - }); -} + case 6: + case "end": + return _context3.stop(); + } + } + }, _callee3, this); + })); -module.exports = unzipWith; + return function destroy(_x2) { + return _destroy.apply(this, arguments); + }; + }() + /** + * + * Be warned, ATM /jobs/triggers does not return the same informations + * than /data/io.cozy.triggers (used by the super.find method). + * + * See https://github.com/cozy/cozy-stack/pull/2010 + * + * @param {object} selector - Which kind of worker {konnector,service} + * @param {object} options - Options + * @returns {{data, meta, skip, next}} The JSON API conformant response. + * @throws {FetchError} + */ + }, { + key: "find", + value: function () { + var _find = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4() { + var selector, + options, + url, + resp, + _args4 = arguments; + return _regenerator.default.wrap(function _callee4$(_context4) { + while (1) { + switch (_context4.prev = _context4.next) { + case 0: + selector = _args4.length > 0 && _args4[0] !== undefined ? _args4[0] : {}; + options = _args4.length > 1 && _args4[1] !== undefined ? _args4[1] : {}; -/***/ }), -/* 696 */ -/***/ (function(module, exports, __webpack_require__) { + if (!(Object.keys(selector).length === 1 && selector.worker)) { + _context4.next = 16; + break; + } -"use strict"; + // @see https://github.com/cozy/cozy-stack/blob/master/docs/jobs.md#get-jobstriggers + url = "/jobs/triggers?Worker=".concat(selector.worker); + _context4.prev = 4; + _context4.next = 7; + return this.stackClient.fetchJSON('GET', url); + case 7: + resp = _context4.sent; + return _context4.abrupt("return", { + data: resp.data.map(function (row) { + return normalizeTrigger(row, TRIGGERS_DOCTYPE); + }), + meta: { + count: resp.data.length + }, + next: false, + skip: 0 + }); -var _interopRequireDefault = __webpack_require__(530); + case 11: + _context4.prev = 11; + _context4.t0 = _context4["catch"](4); + return _context4.abrupt("return", (0, _Collection.dontThrowNotFoundError)(_context4.t0)); -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "HasManyFiles", { - enumerable: true, - get: function get() { - return _HasManyFiles.default; - } -}); -Object.defineProperty(exports, "HasMany", { - enumerable: true, - get: function get() { - return _HasMany.default; - } -}); -Object.defineProperty(exports, "HasOne", { - enumerable: true, - get: function get() { - return _HasOne.default; - } -}); -Object.defineProperty(exports, "HasOneInPlace", { - enumerable: true, - get: function get() { - return _HasOneInPlace.default; - } -}); -Object.defineProperty(exports, "HasManyInPlace", { - enumerable: true, - get: function get() { - return _HasManyInPlace.default; - } -}); -Object.defineProperty(exports, "HasManyTriggers", { - enumerable: true, - get: function get() { - return _HasManyTriggers.default; - } -}); -Object.defineProperty(exports, "Association", { - enumerable: true, - get: function get() { - return _Association.default; - } -}); -Object.defineProperty(exports, "resolveClass", { - enumerable: true, - get: function get() { - return _helpers.resolveClass; - } -}); -Object.defineProperty(exports, "create", { - enumerable: true, - get: function get() { - return _helpers.create; - } -}); + case 14: + _context4.next = 17; + break; + + case 16: + return _context4.abrupt("return", (0, _get3.default)((0, _getPrototypeOf2.default)(TriggerCollection.prototype), "find", this).call(this, selector, options)); + + case 17: + case "end": + return _context4.stop(); + } + } + }, _callee4, this, [[4, 11]]); + })); -var _HasManyFiles = _interopRequireDefault(__webpack_require__(697)); + return function find() { + return _find.apply(this, arguments); + }; + }() + }, { + key: "get", + value: function () { + var _get2 = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee5(id) { + return _regenerator.default.wrap(function _callee5$(_context5) { + while (1) { + switch (_context5.prev = _context5.next) { + case 0: + return _context5.abrupt("return", _Collection.default.get(this.stackClient, (0, _utils.uri)(_templateObject3(), id), { + normalize: normalizeTrigger + })); + + case 1: + case "end": + return _context5.stop(); + } + } + }, _callee5, this); + })); + + return function get(_x3) { + return _get2.apply(this, arguments); + }; + }() + /** + * Force given trigger execution. + * + * @see https://docs.cozy.io/en/cozy-stack/jobs/#post-jobstriggerstrigger-idlaunch + * @param {object} trigger Trigger to launch + * @returns {object} Stack response, containing job launched by trigger, under `data` attribute. + */ -var _HasMany = _interopRequireDefault(__webpack_require__(746)); + }, { + key: "launch", + value: function () { + var _launch = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee6(trigger) { + var path, resp; + return _regenerator.default.wrap(function _callee6$(_context6) { + while (1) { + switch (_context6.prev = _context6.next) { + case 0: + path = (0, _utils.uri)(_templateObject4(), trigger._id); + _context6.next = 3; + return this.stackClient.fetchJSON('POST', path); -var _HasOne = _interopRequireDefault(__webpack_require__(755)); + case 3: + resp = _context6.sent; + return _context6.abrupt("return", { + data: (0, _JobCollection.normalizeJob)(resp.data) + }); -var _HasOneInPlace = _interopRequireDefault(__webpack_require__(757)); + case 5: + case "end": + return _context6.stop(); + } + } + }, _callee6, this); + })); -var _HasManyInPlace = _interopRequireDefault(__webpack_require__(758)); + return function launch(_x4) { + return _launch.apply(this, arguments); + }; + }() + }, { + key: "update", + value: function () { + var _update = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee7() { + return _regenerator.default.wrap(function _callee7$(_context7) { + while (1) { + switch (_context7.prev = _context7.next) { + case 0: + throw new Error('update() method is not available for triggers'); -var _HasManyTriggers = _interopRequireDefault(__webpack_require__(759)); + case 1: + case "end": + return _context7.stop(); + } + } + }, _callee7); + })); -var _Association = _interopRequireDefault(__webpack_require__(745)); + return function update() { + return _update.apply(this, arguments); + }; + }() + }]); + return TriggerCollection; +}(_DocumentCollection2.default); -var _helpers = __webpack_require__(760); +TriggerCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; +var _default = TriggerCollection; +exports.default = _default; /***/ }), -/* 697 */ +/* 721 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireWildcard = __webpack_require__(530); + +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; -var _regenerator = _interopRequireDefault(__webpack_require__(545)); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(540)); +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(687)); -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -var _get2 = _interopRequireDefault(__webpack_require__(676)); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); +var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(686)); -var _omit = _interopRequireDefault(__webpack_require__(631)); +var _FileCollection = __webpack_require__(712); -var _dsl = __webpack_require__(625); +var _utils = __webpack_require__(688); -var _store = __webpack_require__(698); +function _templateObject5() { + var data = (0, _taggedTemplateLiteral2.default)(["/sharings/", "/recipients"]); -var _types = __webpack_require__(628); + _templateObject5 = function _templateObject5() { + return data; + }; -var _Association = _interopRequireDefault(__webpack_require__(745)); + return data; +} -var _HasMany2 = _interopRequireDefault(__webpack_require__(746)); +function _templateObject4() { + var data = (0, _taggedTemplateLiteral2.default)(["/sharings/", "/recipients/self"]); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + _templateObject4 = function _templateObject4() { + return data; + }; -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + return data; +} -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +function _templateObject3() { + var data = (0, _taggedTemplateLiteral2.default)(["/sharings/", "/recipients/", ""]); -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + _templateObject3 = function _templateObject3() { + return data; + }; -/** - * This class is only used for photos albums relationships. - * Behind the hood, the queries uses a view returning the files sorted - * by datetime, with a cursor-based pagination. - */ -var HasManyFiles = /*#__PURE__*/function (_HasMany) { - (0, _inherits2.default)(HasManyFiles, _HasMany); + return data; +} - var _super = _createSuper(HasManyFiles); +function _templateObject2() { + var data = (0, _taggedTemplateLiteral2.default)(["/sharings/", "/recipients"]); - function HasManyFiles() { - (0, _classCallCheck2.default)(this, HasManyFiles); - return _super.apply(this, arguments); - } + _templateObject2 = function _templateObject2() { + return data; + }; - (0, _createClass2.default)(HasManyFiles, [{ - key: "fetchMore", - value: function () { - var _fetchMore = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() { - var _this = this; + return data; +} - var queryDef, relationships, lastRelationship; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - queryDef = new _dsl.QueryDefinition({ - doctype: 'io.cozy.files' - }); - relationships = this.getRelationship().data; // Get last datetime for cursor +function _templateObject() { + var data = (0, _taggedTemplateLiteral2.default)(["/sharings/doctype/", ""]); - lastRelationship = relationships[relationships.length - 1]; - _context2.next = 5; - return this.dispatch( /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(dispatch, getState) { - var lastRelDoc, lastDatetime, cursorKey, startDocId, cursorView, response; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - lastRelDoc = (0, _store.getDocumentFromState)(getState(), lastRelationship._type, lastRelationship._id); // Photos always have a datetime field in metadata + _templateObject = function _templateObject() { + return data; + }; - lastDatetime = lastRelDoc.attributes.metadata.datetime; // cursor-based pagination + return data; +} - cursorKey = [_this.target._type, _this.target._id, lastDatetime]; - startDocId = relationships[relationships.length - 1]._id; - cursorView = [cursorKey, startDocId]; - _context.next = 7; - return _this.query(queryDef.referencedBy(_this.target).offsetCursor(cursorView)); +var normalizeSharing = function normalizeSharing(sharing) { + return (0, _DocumentCollection2.normalizeDoc)(sharing, 'io.cozy.sharings'); +}; +/** + * Implements the `DocumentCollection` API along with specific methods for + * `io.cozy.sharings`. + */ - case 7: - response = _context.sent; - // Remove first returned element, used as starting point for the query - response.data.shift(); - _context.next = 11; - return _this.dispatch(_this.updateRelationshipData(function (previousRelationshipData) { - return _objectSpread(_objectSpread({}, previousRelationshipData), {}, { - data: [].concat((0, _toConsumableArray2.default)(previousRelationshipData.data), (0, _toConsumableArray2.default)(response.data)), - next: response.next - }); - })); - case 11: - case "end": - return _context.stop(); - } - } - }, _callee); - })); +var SharingCollection = +/*#__PURE__*/ +function (_DocumentCollection) { + (0, _inherits2.default)(SharingCollection, _DocumentCollection); - return function (_x, _x2) { - return _ref.apply(this, arguments); - }; - }()); + function SharingCollection() { + (0, _classCallCheck2.default)(this, SharingCollection); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(SharingCollection).apply(this, arguments)); + } - case 5: + (0, _createClass2.default)(SharingCollection, [{ + key: "findByDoctype", + value: function () { + var _findByDoctype = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(doctype) { + var resp; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + _context.next = 2; + return this.stackClient.fetchJSON('GET', (0, _utils.uri)(_templateObject(), doctype)); + + case 2: + resp = _context.sent; + return _context.abrupt("return", (0, _objectSpread2.default)({}, resp, { + data: resp.data.map(normalizeSharing) + })); + + case 4: case "end": - return _context2.stop(); + return _context.stop(); } } - }, _callee2, this); + }, _callee, this); })); - function fetchMore() { - return _fetchMore.apply(this, arguments); - } - - return fetchMore; + return function findByDoctype(_x) { + return _findByDoctype.apply(this, arguments); + }; }() + /** + * share - Creates a new sharing. See https://docs.cozy.io/en/cozy-stack/sharing/#post-sharings + * + * @param {object} document The document to share. Should have and _id and a name. + * @param {Array} recipients A list of io.cozy.contacts + * @param {string} sharingType - If "two-way", will set the open_sharing attribute to true + * @param {string} description - Describes the sharing + * @param {string=} previewPath Relative URL of the sharings preview page + */ + }, { - key: "addById", + key: "share", value: function () { - var _addById = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(idsArg) { - var _this2 = this; - - var ids, relations; - return _regenerator.default.wrap(function _callee3$(_context3) { + var _share = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(document, recipients, sharingType, description) { + var previewPath, + resp, + _args2 = arguments; + return _regenerator.default.wrap(function _callee2$(_context2) { while (1) { - switch (_context3.prev = _context3.next) { + switch (_context2.prev = _context2.next) { case 0: - ids = Array.isArray(idsArg) ? idsArg : [idsArg]; - relations = ids.map(function (id) { - return { - _id: id, - _type: _this2.doctype - }; + previewPath = _args2.length > 4 && _args2[4] !== undefined ? _args2[4] : null; + _context2.next = 3; + return this.stackClient.fetchJSON('POST', '/sharings/', { + data: { + type: 'io.cozy.sharings', + attributes: { + description: description, + preview_path: previewPath, + open_sharing: sharingType === 'two-way', + rules: getSharingRules(document, sharingType) + }, + relationships: { + recipients: { + data: recipients.map(function (_ref) { + var _id = _ref._id, + _type = _ref._type; + return { + id: _id, + type: _type + }; + }) + } + } + } }); - _context3.next = 4; - return this.mutate(this.addReferences(relations)); - case 4: - _context3.next = 6; - return (0, _get2.default)((0, _getPrototypeOf2.default)(HasManyFiles.prototype), "addById", this).call(this, ids); + case 3: + resp = _context2.sent; + return _context2.abrupt("return", { + data: normalizeSharing(resp.data) + }); - case 6: + case 5: case "end": - return _context3.stop(); + return _context2.stop(); } } - }, _callee3, this); + }, _callee2, this); })); - function addById(_x3) { - return _addById.apply(this, arguments); - } - - return addById; + return function share(_x2, _x3, _x4, _x5) { + return _share.apply(this, arguments); + }; }() + /** + * getDiscoveryLink - Returns the URL of the page that can be used to accept a sharing. See https://docs.cozy.io/en/cozy-stack/sharing/#get-sharingssharing-iddiscovery + * + * @param {string} sharingId - Id of the sharing + * @param {string} sharecode - Code of the sharing + * @returns {string} + */ + }, { - key: "removeById", - value: function () { - var _removeById = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(idsArg) { - var _this3 = this; + key: "getDiscoveryLink", + value: function getDiscoveryLink(sharingId, sharecode) { + return this.stackClient.fullpath("/sharings/".concat(sharingId, "/discovery?sharecode=").concat(sharecode)); + } + /** + * Add an array of contacts to the Sharing + * + * @param {object} sharing Sharing Object + * @param {Array} recipients Array of {id:1, type:"io.cozy.contacts"} + * @param {string} sharingType Read and write: two-way. Other only read + */ - var ids, references; - return _regenerator.default.wrap(function _callee4$(_context4) { + }, { + key: "addRecipients", + value: function () { + var _addRecipients = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(sharing, recipients, sharingType) { + var recipientsPayload, resp; + return _regenerator.default.wrap(function _callee3$(_context3) { while (1) { - switch (_context4.prev = _context4.next) { + switch (_context3.prev = _context3.next) { case 0: - ids = Array.isArray(idsArg) ? idsArg : [idsArg]; - references = ids.map(function (id) { - return { - _id: id, - _type: _this3.doctype - }; + recipientsPayload = { + data: recipients.map(function (_ref2) { + var _id = _ref2._id, + _type = _ref2._type; + return { + id: _id, + type: _type + }; + }) + }; + _context3.next = 3; + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject2(), sharing._id), { + data: { + type: 'io.cozy.sharings', + id: sharing._id, + relationships: sharingType === 'two-way' ? { + recipients: recipientsPayload + } : { + read_only_recipients: recipientsPayload + } + } }); - _context4.next = 4; - return this.mutate(this.removeReferences(references)); - case 4: - _context4.next = 6; - return (0, _get2.default)((0, _getPrototypeOf2.default)(HasManyFiles.prototype), "removeById", this).call(this, ids); + case 3: + resp = _context3.sent; + return _context3.abrupt("return", { + data: normalizeSharing(resp.data) + }); - case 6: + case 5: case "end": - return _context4.stop(); + return _context3.stop(); } } - }, _callee4, this); + }, _callee3, this); })); - function removeById(_x4) { - return _removeById.apply(this, arguments); - } - - return removeById; + return function addRecipients(_x6, _x7, _x8) { + return _addRecipients.apply(this, arguments); + }; }() - }, { - key: "addReferences", - value: function addReferences(referencedDocs) { - if (this.target._type === 'io.cozy.files') { - return _dsl.Mutations.addReferencedBy(this.target, referencedDocs); - } else if (referencedDocs[0]._type === 'io.cozy.files') { - return _dsl.Mutations.addReferencesTo(this.target, referencedDocs); - } else { - throw new Error('Either the document or the references should be io.cozy.files'); - } - } - }, { - key: "removeReferences", - value: function removeReferences(referencedDocs) { - if (this.target._type === 'io.cozy.files') { - return _dsl.Mutations.removeReferencedBy(this.target, referencedDocs); - } else if (referencedDocs[0]._type === 'io.cozy.files') { - return _dsl.Mutations.removeReferencesTo(this.target, referencedDocs); - } else { - throw new Error('Either the document or the references should be io.cozy.files'); - } - } - }, { - key: "dehydrate", - value: function dehydrate(doc) { - // HasManyFiles relationships are stored on the file doctype, not the document the files are related to - return (0, _omit.default)(doc, [this.name, "relationships.".concat(this.name)]); - } /** - * @param {CozyClientDocument} document - Document to query - * @param {object} client - The CozyClient instance - * @param {Association} assoc - The query params + * Revoke only one recipient of the sharing. * - * @returns {CozyClientDocument | QueryDefinition} + * @param {object} sharing Sharing Object + * @param {number} recipientIndex Index of this recipient in the members array of the sharing */ - }], [{ - key: "query", - value: function query(document, client, assoc) { - var key = [document._type, document._id]; - var cursor = [key, '']; - return (0, _dsl.Q)(assoc.doctype).referencedBy(document).offsetCursor(cursor); - } - }]); - return HasManyFiles; -}(_HasMany2.default); - -exports.default = HasManyFiles; - -/***/ }), -/* 698 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "initQuery", { - enumerable: true, - get: function get() { - return _queries.initQuery; - } -}); -Object.defineProperty(exports, "loadQuery", { - enumerable: true, - get: function get() { - return _queries.loadQuery; - } -}); -Object.defineProperty(exports, "receiveQueryResult", { - enumerable: true, - get: function get() { - return _queries.receiveQueryResult; - } -}); -Object.defineProperty(exports, "receiveQueryError", { - enumerable: true, - get: function get() { - return _queries.receiveQueryError; - } -}); -Object.defineProperty(exports, "initMutation", { - enumerable: true, - get: function get() { - return _mutations.initMutation; - } -}); -Object.defineProperty(exports, "receiveMutationResult", { - enumerable: true, - get: function get() { - return _mutations.receiveMutationResult; - } -}); -Object.defineProperty(exports, "receiveMutationError", { - enumerable: true, - get: function get() { - return _mutations.receiveMutationError; - } -}); -exports.resetState = exports.getRawQueryFromState = exports.getQueryFromState = exports.getQueryFromStore = exports.getDocumentFromState = exports.getCollectionFromState = exports.getStateRoot = exports.createStore = exports.default = exports.StoreProxy = void 0; - -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var _redux = __webpack_require__(699); - -var _reduxThunk = _interopRequireDefault(__webpack_require__(702)); - -var _documents = _interopRequireWildcard(__webpack_require__(703)); - -var _queries = _interopRequireWildcard(__webpack_require__(728)); - -var _mutations = __webpack_require__(743); - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } - -var RESET_ACTION_TYPE = 'COZY_CLIENT.RESET_STATE'; - -var resetState = function resetState() { - return { - type: RESET_ACTION_TYPE - }; -}; - -exports.resetState = resetState; - -var StoreProxy = /*#__PURE__*/function () { - function StoreProxy(state) { - (0, _classCallCheck2.default)(this, StoreProxy); - this.state = state; - } - - (0, _createClass2.default)(StoreProxy, [{ - key: "readDocument", - value: function readDocument(doctype, id) { - return this.state.documents[doctype][id]; - } }, { - key: "writeDocument", - value: function writeDocument(document) { - this.setState(function (state) { - return _objectSpread(_objectSpread({}, state), {}, { - documents: _objectSpread(_objectSpread({}, state.documents), {}, (0, _defineProperty2.default)({}, document._type, _objectSpread(_objectSpread({}, state.documents[document._type]), {}, (0, _defineProperty2.default)({}, document._id, document)))) - }); - }); + key: "revokeRecipient", + value: function revokeRecipient(sharing, recipientIndex) { + return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject3(), sharing._id, recipientIndex)); } + /** + * Remove self from the sharing. + * + * @param {object} sharing Sharing Object + */ + }, { - key: "setState", - value: function setState(updaterFn) { - this.state = updaterFn(this.state); + key: "revokeSelf", + value: function revokeSelf(sharing) { + return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject4(), sharing._id)); } + /** + * Revoke the sharing for all the members. Must be called + * from the owner's cozy + * + * @param {object} sharing Sharing Objects + */ + }, { - key: "getState", - value: function getState() { - return this.state; + key: "revokeAllRecipients", + value: function revokeAllRecipients(sharing) { + return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject5(), sharing._id)); } }]); - return StoreProxy; -}(); - -exports.StoreProxy = StoreProxy; -var initialState = { - documents: {}, - queries: {} -}; - -var combinedReducer = function combinedReducer() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState; - var action = arguments.length > 1 ? arguments[1] : undefined; + return SharingCollection; +}(_DocumentCollection2.default); - if (action.type == RESET_ACTION_TYPE) { - return initialState; - } +SharingCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; // Rules determine the behavior of the sharing when changes are made to the shared document +// See https://github.com/cozy/cozy-stack/blob/master/docs/sharing-design.md#description-of-a-sharing - if (!(0, _queries.isQueryAction)(action) && !(0, _mutations.isMutationAction)(action)) { - return state; - } +var getSharingRules = function getSharingRules(document, sharingType) { + var _id = document._id, + _type = document._type; + return (0, _FileCollection.isFile)(document) ? [(0, _objectSpread2.default)({ + title: document.name, + doctype: 'io.cozy.files', + values: [_id] + }, getSharingPolicy(document, sharingType))] : [(0, _objectSpread2.default)({ + title: 'collection', + doctype: _type, + values: [_id] + }, getSharingPolicy(document, sharingType)), (0, _objectSpread2.default)({ + title: 'items', + doctype: 'io.cozy.files', + values: ["".concat(_type, "/").concat(_id)], + selector: 'referenced_by' + }, sharingType === 'two-way' ? { + add: 'sync', + update: 'sync', + remove: 'sync' + } : { + add: 'push', + update: 'none', + remove: 'push' + })]; +}; - if (action.update) { - var proxy = new StoreProxy(state); - action.update(proxy, action.response); - return { - documents: proxy.getState().documents, - queries: (0, _queries.default)(proxy.getState().queries, action, proxy.getState().documents) +var getSharingPolicy = function getSharingPolicy(document, sharingType) { + if ((0, _FileCollection.isFile)(document) && (0, _FileCollection.isDirectory)(document)) { + return sharingType === 'two-way' ? { + add: 'sync', + update: 'sync', + remove: 'sync' + } : { + add: 'push', + update: 'push', + remove: 'push' }; } - var nextDocuments = (0, _documents.default)(state.documents, action); - var haveDocumentsChanged = nextDocuments !== state.documents; - return { - documents: nextDocuments, - queries: (0, _queries.default)(state.queries, action, nextDocuments, haveDocumentsChanged) + return sharingType === 'two-way' ? { + update: 'sync', + remove: 'revoke' + } : { + update: 'push', + remove: 'revoke' }; }; -var _default = combinedReducer; +var _default = SharingCollection; exports.default = _default; -var createStore = function createStore() { - return (0, _redux.createStore)((0, _redux.combineReducers)({ - cozy: combinedReducer - }), (0, _redux.applyMiddleware)(_reduxThunk.default)); -}; - -exports.createStore = createStore; - -var getStateRoot = function getStateRoot(state) { - return state.cozy || {}; -}; +/***/ }), +/* 722 */ +/***/ (function(module, exports, __webpack_require__) { -exports.getStateRoot = getStateRoot; +"use strict"; -var getCollectionFromState = function getCollectionFromState(state, doctype) { - return (0, _documents.getCollectionFromSlice)(getStateRoot(state).documents, doctype); -}; -exports.getCollectionFromState = getCollectionFromState; +var _interopRequireWildcard = __webpack_require__(530); -var getDocumentFromState = function getDocumentFromState(state, doctype, id) { - return (0, _documents.getDocumentFromSlice)(getStateRoot(state).documents, doctype, id); -}; +var _interopRequireDefault = __webpack_require__(532); -exports.getDocumentFromState = getDocumentFromState; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.getPermissionsFor = void 0; -var getQueryFromStore = function getQueryFromStore(store, queryId) { - return getQueryFromState(store.getState(), queryId); -}; +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -exports.getQueryFromStore = getQueryFromStore; +var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(550)); -var getQueryFromState = function getQueryFromState(state, queryId) { - return (0, _queries.getQueryFromSlice)(getStateRoot(state).queries, queryId, getStateRoot(state).documents); -}; +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -exports.getQueryFromState = getQueryFromState; +var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(687)); -var getRawQueryFromState = function getRawQueryFromState(state, queryId) { - return (0, _queries.getQueryFromSlice)(getStateRoot(state).queries, queryId); -}; +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -exports.getRawQueryFromState = getRawQueryFromState; +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -/***/ }), -/* 699 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "__DO_NOT_USE__ActionTypes", function() { return ActionTypes; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "applyMiddleware", function() { return applyMiddleware; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bindActionCreators", function() { return bindActionCreators; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "combineReducers", function() { return combineReducers; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "compose", function() { return compose; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createStore", function() { return createStore; }); -/* harmony import */ var _babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(700); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -/** - * Adapted from React: https://github.com/facebook/react/blob/master/packages/shared/formatProdErrorMessage.js - * - * Do not require this module directly! Use normal throw error calls. These messages will be replaced with error codes - * during build. - * @param {number} code - */ -function formatProdErrorMessage(code) { - return "Minified Redux error #" + code + "; visit https://redux.js.org/Errors?code=" + code + " for the full message or " + 'use the non-minified dev environment for full errors. '; -} +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -// Inlined version of the `symbol-observable` polyfill -var $$observable = (function () { - return typeof Symbol === 'function' && Symbol.observable || '@@observable'; -})(); +var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(686)); -/** - * These are private action types reserved by Redux. - * For any unknown actions, you must return the current state. - * If the current state is undefined, you must return the initial state. - * Do not reference these action types directly in your code. - */ -var randomString = function randomString() { - return Math.random().toString(36).substring(7).split('').join('.'); -}; +var _FileCollection = __webpack_require__(712); -var ActionTypes = { - INIT: "@@redux/INIT" + randomString(), - REPLACE: "@@redux/REPLACE" + randomString(), - PROBE_UNKNOWN_ACTION: function PROBE_UNKNOWN_ACTION() { - return "@@redux/PROBE_UNKNOWN_ACTION" + randomString(); - } -}; +var _utils = __webpack_require__(688); -/** - * @param {any} obj The object to inspect. - * @returns {boolean} True if the argument appears to be a plain object. - */ -function isPlainObject(obj) { - if (typeof obj !== 'object' || obj === null) return false; - var proto = obj; +function _templateObject4() { + var data = (0, _taggedTemplateLiteral2.default)(["/permissions/doctype/", "/shared-by-link"]); - while (Object.getPrototypeOf(proto) !== null) { - proto = Object.getPrototypeOf(proto); - } + _templateObject4 = function _templateObject4() { + return data; + }; - return Object.getPrototypeOf(obj) === proto; + return data; } -// Inlined / shortened version of `kindOf` from https://github.com/jonschlinkert/kind-of -function miniKindOf(val) { - if (val === void 0) return 'undefined'; - if (val === null) return 'null'; - var type = typeof val; - - switch (type) { - case 'boolean': - case 'string': - case 'number': - case 'symbol': - case 'function': - { - return type; - } - } - - if (Array.isArray(val)) return 'array'; - if (isDate(val)) return 'date'; - if (isError(val)) return 'error'; - var constructorName = ctorName(val); - - switch (constructorName) { - case 'Symbol': - case 'Promise': - case 'WeakMap': - case 'WeakSet': - case 'Map': - case 'Set': - return constructorName; - } // other +function _templateObject3() { + var data = (0, _taggedTemplateLiteral2.default)(["/permissions/", ""]); + _templateObject3 = function _templateObject3() { + return data; + }; - return type.slice(8, -1).toLowerCase().replace(/\s/g, ''); + return data; } -function ctorName(val) { - return typeof val.constructor === 'function' ? val.constructor.name : null; -} +function _templateObject2() { + var data = (0, _taggedTemplateLiteral2.default)(["/permissions"]); -function isError(val) { - return val instanceof Error || typeof val.message === 'string' && val.constructor && typeof val.constructor.stackTraceLimit === 'number'; -} + _templateObject2 = function _templateObject2() { + return data; + }; -function isDate(val) { - if (val instanceof Date) return true; - return typeof val.toDateString === 'function' && typeof val.getDate === 'function' && typeof val.setDate === 'function'; + return data; } -function kindOf(val) { - var typeOfVal = typeof val; +function _templateObject() { + var data = (0, _taggedTemplateLiteral2.default)(["/permissions/", ""]); - if (true) { - typeOfVal = miniKindOf(val); - } + _templateObject = function _templateObject() { + return data; + }; - return typeOfVal; + return data; } +var normalizePermission = function normalizePermission(perm) { + return (0, _DocumentCollection2.normalizeDoc)(perm, 'io.cozy.permissions'); +}; /** - * Creates a Redux store that holds the state tree. - * The only way to change the data in the store is to call `dispatch()` on it. - * - * There should only be a single store in your app. To specify how different - * parts of the state tree respond to actions, you may combine several reducers - * into a single reducer function by using `combineReducers`. - * - * @param {Function} reducer A function that returns the next state tree, given - * the current state tree and the action to handle. - * - * @param {any} [preloadedState] The initial state. You may optionally specify it - * to hydrate the state from the server in universal apps, or to restore a - * previously serialized user session. - * If you use `combineReducers` to produce the root reducer function, this must be - * an object with the same shape as `combineReducers` keys. - * - * @param {Function} [enhancer] The store enhancer. You may optionally specify it - * to enhance the store with third-party capabilities such as middleware, - * time travel, persistence, etc. The only store enhancer that ships with Redux - * is `applyMiddleware()`. - * - * @returns {Store} A Redux store that lets you read the state, dispatch actions - * and subscribe to changes. + * Implements `DocumentCollection` API along with specific methods for `io.cozy.permissions`. */ -function createStore(reducer, preloadedState, enhancer) { - var _ref2; - if (typeof preloadedState === 'function' && typeof enhancer === 'function' || typeof enhancer === 'function' && typeof arguments[3] === 'function') { - throw new Error( false ? undefined : 'It looks like you are passing several store enhancers to ' + 'createStore(). This is not supported. Instead, compose them ' + 'together to a single function. See https://redux.js.org/tutorials/fundamentals/part-4-store#creating-a-store-with-enhancers for an example.'); - } +var PermissionCollection = +/*#__PURE__*/ +function (_DocumentCollection) { + (0, _inherits2.default)(PermissionCollection, _DocumentCollection); - if (typeof preloadedState === 'function' && typeof enhancer === 'undefined') { - enhancer = preloadedState; - preloadedState = undefined; + function PermissionCollection() { + (0, _classCallCheck2.default)(this, PermissionCollection); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(PermissionCollection).apply(this, arguments)); } - if (typeof enhancer !== 'undefined') { - if (typeof enhancer !== 'function') { - throw new Error( false ? undefined : "Expected the enhancer to be a function. Instead, received: '" + kindOf(enhancer) + "'"); - } + (0, _createClass2.default)(PermissionCollection, [{ + key: "get", + value: function () { + var _get = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(id) { + var resp; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + _context.next = 2; + return this.stackClient.fetchJSON('GET', (0, _utils.uri)(_templateObject(), id)); - return enhancer(createStore)(reducer, preloadedState); - } + case 2: + resp = _context.sent; + return _context.abrupt("return", { + data: normalizePermission(resp.data) + }); - if (typeof reducer !== 'function') { - throw new Error( false ? undefined : "Expected the root reducer to be a function. Instead, received: '" + kindOf(reducer) + "'"); - } + case 4: + case "end": + return _context.stop(); + } + } + }, _callee, this); + })); - var currentReducer = reducer; - var currentState = preloadedState; - var currentListeners = []; - var nextListeners = currentListeners; - var isDispatching = false; - /** - * This makes a shallow copy of currentListeners so we can use - * nextListeners as a temporary list while dispatching. - * - * This prevents any bugs around consumers calling - * subscribe/unsubscribe in the middle of a dispatch. - */ + return function get(_x) { + return _get.apply(this, arguments); + }; + }() + }, { + key: "create", + value: function () { + var _create = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(_ref) { + var _id, _type, attributes, resp; - function ensureCanMutateNextListeners() { - if (nextListeners === currentListeners) { - nextListeners = currentListeners.slice(); - } - } - /** - * Reads the state tree managed by the store. - * - * @returns {any} The current state tree of your application. - */ + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + _id = _ref._id, _type = _ref._type, attributes = (0, _objectWithoutProperties2.default)(_ref, ["_id", "_type"]); + _context2.next = 3; + return this.stackClient.fetchJSON('POST', (0, _utils.uri)(_templateObject2()), { + data: { + type: 'io.cozy.permissions', + attributes: attributes + } + }); + case 3: + resp = _context2.sent; + return _context2.abrupt("return", { + data: normalizePermission(resp.data) + }); - function getState() { - if (isDispatching) { - throw new Error( false ? undefined : 'You may not call store.getState() while the reducer is executing. ' + 'The reducer has already received the state as an argument. ' + 'Pass it down from the top reducer instead of reading it from the store.'); - } + case 5: + case "end": + return _context2.stop(); + } + } + }, _callee2, this); + })); - return currentState; - } - /** - * Adds a change listener. It will be called any time an action is dispatched, - * and some part of the state tree may potentially have changed. You may then - * call `getState()` to read the current state tree inside the callback. - * - * You may call `dispatch()` from a change listener, with the following - * caveats: - * - * 1. The subscriptions are snapshotted just before every `dispatch()` call. - * If you subscribe or unsubscribe while the listeners are being invoked, this - * will not have any effect on the `dispatch()` that is currently in progress. - * However, the next `dispatch()` call, whether nested or not, will use a more - * recent snapshot of the subscription list. - * - * 2. The listener should not expect to see all state changes, as the state - * might have been updated multiple times during a nested `dispatch()` before - * the listener is called. It is, however, guaranteed that all subscribers - * registered before the `dispatch()` started will be called with the latest - * state by the time it exits. - * - * @param {Function} listener A callback to be invoked on every dispatch. - * @returns {Function} A function to remove this change listener. - */ + return function create(_x2) { + return _create.apply(this, arguments); + }; + }() + /** + * Adds a permission to the given document. Document type must be + * `io.cozy.apps`, `io.cozy.konnectors` or `io.cozy.permissions` + * + * @param {object} document - Document which receives the permission + * @param {object} permission - Describes the permission + * @returns {Promise} + * + * @example + * ``` + * const permissions = await client + * .collection('io.cozy.permissions') + * .add(konnector, { + * folder: { + * type: 'io.cozy.files', + * verbs: ['GET', 'PUT'], + * values: [`io.cozy.files.bc57b60eb2954537b0dcdc6ebd8e9d23`] + * } + * }) + * ``` + */ + }, { + key: "add", + value: function () { + var _add = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(document, permission) { + var endpoint, resp; + return _regenerator.default.wrap(function _callee3$(_context3) { + while (1) { + switch (_context3.prev = _context3.next) { + case 0: + _context3.t0 = document._type; + _context3.next = _context3.t0 === 'io.cozy.apps' ? 3 : _context3.t0 === 'io.cozy.konnectors' ? 5 : _context3.t0 === 'io.cozy.permissions' ? 7 : 9; + break; - function subscribe(listener) { - if (typeof listener !== 'function') { - throw new Error( false ? undefined : "Expected the listener to be a function. Instead, received: '" + kindOf(listener) + "'"); - } + case 3: + endpoint = "/permissions/apps/".concat(document.slug); + return _context3.abrupt("break", 10); - if (isDispatching) { - throw new Error( false ? undefined : 'You may not call store.subscribe() while the reducer is executing. ' + 'If you would like to be notified after the store has been updated, subscribe from a ' + 'component and invoke store.getState() in the callback to access the latest state. ' + 'See https://redux.js.org/api/store#subscribelistener for more details.'); - } + case 5: + endpoint = "/permissions/konnectors/".concat(document.slug); + return _context3.abrupt("break", 10); - var isSubscribed = true; - ensureCanMutateNextListeners(); - nextListeners.push(listener); - return function unsubscribe() { - if (!isSubscribed) { - return; - } + case 7: + endpoint = "/permissions/".concat(document._id); + return _context3.abrupt("break", 10); - if (isDispatching) { - throw new Error( false ? undefined : 'You may not unsubscribe from a store listener while the reducer is executing. ' + 'See https://redux.js.org/api/store#subscribelistener for more details.'); - } + case 9: + throw new Error('Permissions can only be added on existing permissions, apps and konnectors.'); - isSubscribed = false; - ensureCanMutateNextListeners(); - var index = nextListeners.indexOf(listener); - nextListeners.splice(index, 1); - currentListeners = null; - }; - } - /** - * Dispatches an action. It is the only way to trigger a state change. - * - * The `reducer` function, used to create the store, will be called with the - * current state tree and the given `action`. Its return value will - * be considered the **next** state of the tree, and the change listeners - * will be notified. - * - * The base implementation only supports plain object actions. If you want to - * dispatch a Promise, an Observable, a thunk, or something else, you need to - * wrap your store creating function into the corresponding middleware. For - * example, see the documentation for the `redux-thunk` package. Even the - * middleware will eventually dispatch plain object actions using this method. - * - * @param {Object} action A plain object representing “what changedâ€. It is - * a good idea to keep actions serializable so you can record and replay user - * sessions, or use the time travelling `redux-devtools`. An action must have - * a `type` property which may not be `undefined`. It is a good idea to use - * string constants for action types. - * - * @returns {Object} For convenience, the same action object you dispatched. - * - * Note that, if you use a custom middleware, it may wrap `dispatch()` to - * return something else (for example, a Promise you can await). - */ + case 10: + _context3.next = 12; + return this.stackClient.fetchJSON('PATCH', endpoint, { + data: { + type: 'io.cozy.permissions', + attributes: { + permissions: permission + } + } + }); + case 12: + resp = _context3.sent; + return _context3.abrupt("return", { + data: normalizePermission(resp.data) + }); - function dispatch(action) { - if (!isPlainObject(action)) { - throw new Error( false ? undefined : "Actions must be plain objects. Instead, the actual type was: '" + kindOf(action) + "'. You may need to add middleware to your store setup to handle dispatching other values, such as 'redux-thunk' to handle dispatching functions. See https://redux.js.org/tutorials/fundamentals/part-4-store#middleware and https://redux.js.org/tutorials/fundamentals/part-6-async-logic#using-the-redux-thunk-middleware for examples."); - } + case 14: + case "end": + return _context3.stop(); + } + } + }, _callee3, this); + })); - if (typeof action.type === 'undefined') { - throw new Error( false ? undefined : 'Actions may not have an undefined "type" property. You may have misspelled an action type string constant.'); + return function add(_x3, _x4) { + return _add.apply(this, arguments); + }; + }() + }, { + key: "destroy", + value: function destroy(permission) { + return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject3(), permission.id)); } + }, { + key: "findLinksByDoctype", + value: function () { + var _findLinksByDoctype = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4(doctype) { + var resp; + return _regenerator.default.wrap(function _callee4$(_context4) { + while (1) { + switch (_context4.prev = _context4.next) { + case 0: + _context4.next = 2; + return this.stackClient.fetchJSON('GET', (0, _utils.uri)(_templateObject4(), doctype)); - if (isDispatching) { - throw new Error( false ? undefined : 'Reducers may not dispatch actions.'); - } + case 2: + resp = _context4.sent; + return _context4.abrupt("return", (0, _objectSpread2.default)({}, resp, { + data: resp.data.map(normalizePermission) + })); - try { - isDispatching = true; - currentState = currentReducer(currentState, action); - } finally { - isDispatching = false; - } + case 4: + case "end": + return _context4.stop(); + } + } + }, _callee4, this); + })); - var listeners = currentListeners = nextListeners; + return function findLinksByDoctype(_x5) { + return _findLinksByDoctype.apply(this, arguments); + }; + }() + }, { + key: "findApps", + value: function () { + var _findApps = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee5() { + var resp; + return _regenerator.default.wrap(function _callee5$(_context5) { + while (1) { + switch (_context5.prev = _context5.next) { + case 0: + _context5.next = 2; + return this.stackClient.fetchJSON('GET', '/apps/'); - for (var i = 0; i < listeners.length; i++) { - var listener = listeners[i]; - listener(); - } + case 2: + resp = _context5.sent; + return _context5.abrupt("return", (0, _objectSpread2.default)({}, resp, { + data: resp.data.map(function (a) { + return (0, _objectSpread2.default)({ + _id: a.id + }, a); + }) + })); - return action; - } - /** - * Replaces the reducer currently used by the store to calculate the state. - * - * You might need this if your app implements code splitting and you want to - * load some of the reducers dynamically. You might also need this if you - * implement a hot reloading mechanism for Redux. - * - * @param {Function} nextReducer The reducer for the store to use instead. - * @returns {void} - */ + case 4: + case "end": + return _context5.stop(); + } + } + }, _callee5, this); + })); + + return function findApps() { + return _findApps.apply(this, arguments); + }; + }() + /** + * Create a share link + * + * @param {{_id, _type}} document - cozy document + * @param {object} options - options + * @param {string[]} options.verbs - explicit permissions to use + */ + + }, { + key: "createSharingLink", + value: function () { + var _createSharingLink = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee6(document) { + var options, + verbs, + resp, + _args6 = arguments; + return _regenerator.default.wrap(function _callee6$(_context6) { + while (1) { + switch (_context6.prev = _context6.next) { + case 0: + options = _args6.length > 1 && _args6[1] !== undefined ? _args6[1] : {}; + verbs = options.verbs; + _context6.next = 4; + return this.stackClient.fetchJSON('POST', "/permissions?codes=email", { + data: { + type: 'io.cozy.permissions', + attributes: { + permissions: getPermissionsFor(document, true, verbs ? { + verbs: verbs + } : {}) + } + } + }); + case 4: + resp = _context6.sent; + return _context6.abrupt("return", { + data: normalizePermission(resp.data) + }); - function replaceReducer(nextReducer) { - if (typeof nextReducer !== 'function') { - throw new Error( false ? undefined : "Expected the nextReducer to be a function. Instead, received: '" + kindOf(nextReducer)); - } + case 6: + case "end": + return _context6.stop(); + } + } + }, _callee6, this); + })); - currentReducer = nextReducer; // This action has a similiar effect to ActionTypes.INIT. - // Any reducers that existed in both the new and old rootReducer - // will receive the previous state. This effectively populates - // the new state tree with any relevant data from the old one. + return function createSharingLink(_x6) { + return _createSharingLink.apply(this, arguments); + }; + }() + }, { + key: "revokeSharingLink", + value: function () { + var _revokeSharingLink = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee7(document) { + var allLinks, links, _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, perm; - dispatch({ - type: ActionTypes.REPLACE - }); - } - /** - * Interoperability point for observable/reactive libraries. - * @returns {observable} A minimal observable of state changes. - * For more information, see the observable proposal: - * https://github.com/tc39/proposal-observable - */ + return _regenerator.default.wrap(function _callee7$(_context7) { + while (1) { + switch (_context7.prev = _context7.next) { + case 0: + _context7.next = 2; + return this.findLinksByDoctype(document._type); + case 2: + allLinks = _context7.sent; + links = allLinks.data.filter(function (perm) { + return isPermissionRelatedTo(perm, document); + }); + _iteratorNormalCompletion = true; + _didIteratorError = false; + _iteratorError = undefined; + _context7.prev = 7; + _iterator = links[Symbol.iterator](); - function observable() { - var _ref; + case 9: + if (_iteratorNormalCompletion = (_step = _iterator.next()).done) { + _context7.next = 16; + break; + } - var outerSubscribe = subscribe; - return _ref = { - /** - * The minimal observable subscription method. - * @param {Object} observer Any object that can be used as an observer. - * The observer object should have a `next` method. - * @returns {subscription} An object with an `unsubscribe` method that can - * be used to unsubscribe the observable from the store, and prevent further - * emission of values from the observable. - */ - subscribe: function subscribe(observer) { - if (typeof observer !== 'object' || observer === null) { - throw new Error( false ? undefined : "Expected the observer to be an object. Instead, received: '" + kindOf(observer) + "'"); - } + perm = _step.value; + _context7.next = 13; + return this.destroy(perm); - function observeState() { - if (observer.next) { - observer.next(getState()); - } - } + case 13: + _iteratorNormalCompletion = true; + _context7.next = 9; + break; - observeState(); - var unsubscribe = outerSubscribe(observeState); - return { - unsubscribe: unsubscribe - }; - } - }, _ref[$$observable] = function () { - return this; - }, _ref; - } // When a store is created, an "INIT" action is dispatched so that every - // reducer returns their initial state. This effectively populates - // the initial state tree. + case 16: + _context7.next = 22; + break; + case 18: + _context7.prev = 18; + _context7.t0 = _context7["catch"](7); + _didIteratorError = true; + _iteratorError = _context7.t0; - dispatch({ - type: ActionTypes.INIT - }); - return _ref2 = { - dispatch: dispatch, - subscribe: subscribe, - getState: getState, - replaceReducer: replaceReducer - }, _ref2[$$observable] = observable, _ref2; -} + case 22: + _context7.prev = 22; + _context7.prev = 23; -/** - * Prints a warning in the console if it exists. - * - * @param {String} message The warning message. - * @returns {void} - */ -function warning(message) { - /* eslint-disable no-console */ - if (typeof console !== 'undefined' && typeof console.error === 'function') { - console.error(message); - } - /* eslint-enable no-console */ + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } + case 25: + _context7.prev = 25; - try { - // This error was thrown as a convenience so that if you enable - // "break on all exceptions" in your console, - // it would pause the execution at this line. - throw new Error(message); - } catch (e) {} // eslint-disable-line no-empty + if (!_didIteratorError) { + _context7.next = 28; + break; + } -} + throw _iteratorError; -function getUnexpectedStateShapeWarningMessage(inputState, reducers, action, unexpectedKeyCache) { - var reducerKeys = Object.keys(reducers); - var argumentName = action && action.type === ActionTypes.INIT ? 'preloadedState argument passed to createStore' : 'previous state received by the reducer'; + case 28: + return _context7.finish(25); - if (reducerKeys.length === 0) { - return 'Store does not have a valid reducer. Make sure the argument passed ' + 'to combineReducers is an object whose values are reducers.'; - } + case 29: + return _context7.finish(22); - if (!isPlainObject(inputState)) { - return "The " + argumentName + " has unexpected type of \"" + kindOf(inputState) + "\". Expected argument to be an object with the following " + ("keys: \"" + reducerKeys.join('", "') + "\""); - } + case 30: + case "end": + return _context7.stop(); + } + } + }, _callee7, this, [[7, 18, 22, 30], [23,, 25, 29]]); + })); - var unexpectedKeys = Object.keys(inputState).filter(function (key) { - return !reducers.hasOwnProperty(key) && !unexpectedKeyCache[key]; - }); - unexpectedKeys.forEach(function (key) { - unexpectedKeyCache[key] = true; - }); - if (action && action.type === ActionTypes.REPLACE) return; + return function revokeSharingLink(_x7) { + return _revokeSharingLink.apply(this, arguments); + }; + }() + /** + * async getOwnPermissions - Gets the permission for the current token + * + * @returns {object} + */ - if (unexpectedKeys.length > 0) { - return "Unexpected " + (unexpectedKeys.length > 1 ? 'keys' : 'key') + " " + ("\"" + unexpectedKeys.join('", "') + "\" found in " + argumentName + ". ") + "Expected to find one of the known reducer keys instead: " + ("\"" + reducerKeys.join('", "') + "\". Unexpected keys will be ignored."); - } -} + }, { + key: "getOwnPermissions", + value: function () { + var _getOwnPermissions = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee8() { + var resp; + return _regenerator.default.wrap(function _callee8$(_context8) { + while (1) { + switch (_context8.prev = _context8.next) { + case 0: + _context8.next = 2; + return this.stackClient.fetchJSON('GET', '/permissions/self'); -function assertReducerShape(reducers) { - Object.keys(reducers).forEach(function (key) { - var reducer = reducers[key]; - var initialState = reducer(undefined, { - type: ActionTypes.INIT - }); + case 2: + resp = _context8.sent; + return _context8.abrupt("return", { + data: normalizePermission(resp.data) + }); - if (typeof initialState === 'undefined') { - throw new Error( false ? undefined : "The slice reducer for key \"" + key + "\" returned undefined during initialization. " + "If the state passed to the reducer is undefined, you must " + "explicitly return the initial state. The initial state may " + "not be undefined. If you don't want to set a value for this reducer, " + "you can use null instead of undefined."); - } + case 4: + case "end": + return _context8.stop(); + } + } + }, _callee8, this); + })); - if (typeof reducer(undefined, { - type: ActionTypes.PROBE_UNKNOWN_ACTION() - }) === 'undefined') { - throw new Error( false ? undefined : "The slice reducer for key \"" + key + "\" returned undefined when probed with a random type. " + ("Don't try to handle '" + ActionTypes.INIT + "' or other actions in \"redux/*\" ") + "namespace. They are considered private. Instead, you must return the " + "current state for any unknown actions, unless it is undefined, " + "in which case you must return the initial state, regardless of the " + "action type. The initial state may not be undefined, but can be null."); - } - }); -} + return function getOwnPermissions() { + return _getOwnPermissions.apply(this, arguments); + }; + }() + }]); + return PermissionCollection; +}(_DocumentCollection2.default); /** - * Turns an object whose values are different reducer functions, into a single - * reducer function. It will call every child reducer, and gather their results - * into a single state object, whose keys correspond to the keys of the passed - * reducer functions. - * - * @param {Object} reducers An object whose values correspond to different - * reducer functions that need to be combined into one. One handy way to obtain - * it is to use ES6 `import * as reducers` syntax. The reducers may never return - * undefined for any action. Instead, they should return their initial state - * if the state passed to them was undefined, and the current state for any - * unrecognized action. + * Build a permission set * - * @returns {Function} A reducer function that invokes every reducer inside the - * passed object, and builds a state object with the same shape. + * @param {{_id, _type}} document - cozy document + * @param {boolean} publicLink - are the permissions for a public link ? + * @param {object} options - options + * @param {string[]} options.verbs - explicit permissions to use + * @returns {object} permissions object that can be sent through /permissions/* */ -function combineReducers(reducers) { - var reducerKeys = Object.keys(reducers); - var finalReducers = {}; - - for (var i = 0; i < reducerKeys.length; i++) { - var key = reducerKeys[i]; +var getPermissionsFor = function getPermissionsFor(document) { + var publicLink = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + var _id = document._id, + _type = document._type; + var verbs = options.verbs ? options.verbs : publicLink ? ['GET'] : ['ALL']; // TODO: this works for albums, but it needs to be generalized and integrated + // with cozy-client ; some sort of doctype "schema" will be needed here - if (true) { - if (typeof reducers[key] === 'undefined') { - warning("No reducer provided for key \"" + key + "\""); - } + return (0, _FileCollection.isFile)(document) ? { + files: { + type: 'io.cozy.files', + verbs: verbs, + values: [_id] } - - if (typeof reducers[key] === 'function') { - finalReducers[key] = reducers[key]; + } : { + collection: { + type: _type, + verbs: verbs, + values: [_id] + }, + files: { + type: 'io.cozy.files', + verbs: verbs, + values: ["".concat(_type, "/").concat(_id)], + selector: 'referenced_by' } - } + }; +}; - var finalReducerKeys = Object.keys(finalReducers); // This is used to make sure we don't warn about the same - // keys multiple times. +exports.getPermissionsFor = getPermissionsFor; +PermissionCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; - var unexpectedKeyCache; +var isPermissionRelatedTo = function isPermissionRelatedTo(perm, document) { + var _id = document._id; + return (0, _FileCollection.isFile)(document) ? perm.attributes.permissions.files.values.indexOf(_id) !== -1 : perm.attributes.permissions.collection.values.indexOf(_id) !== -1; +}; - if (true) { - unexpectedKeyCache = {}; - } +var _default = PermissionCollection; +exports.default = _default; - var shapeAssertionError; +/***/ }), +/* 723 */ +/***/ (function(module, exports, __webpack_require__) { - try { - assertReducerShape(finalReducers); - } catch (e) { - shapeAssertionError = e; - } +"use strict"; - return function combination(state, action) { - if (state === void 0) { - state = {}; - } - if (shapeAssertionError) { - throw shapeAssertionError; - } +var _interopRequireDefault = __webpack_require__(532); - if (true) { - var warningMessage = getUnexpectedStateShapeWarningMessage(state, finalReducers, action, unexpectedKeyCache); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.SETTINGS_DOCTYPE = void 0; - if (warningMessage) { - warning(warningMessage); - } - } +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - var hasChanged = false; - var nextState = {}; +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); - for (var _i = 0; _i < finalReducerKeys.length; _i++) { - var _key = finalReducerKeys[_i]; - var reducer = finalReducers[_key]; - var previousStateForKey = state[_key]; - var nextStateForKey = reducer(previousStateForKey, action); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); - if (typeof nextStateForKey === 'undefined') { - var actionType = action && action.type; - throw new Error( false ? undefined : "When called with an action of type " + (actionType ? "\"" + String(actionType) + "\"" : '(unknown type)') + ", the slice reducer for key \"" + _key + "\" returned undefined. " + "To ignore an action, you must explicitly return the previous state. " + "If you want this reducer to hold no value, you can return null instead of undefined."); - } +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); - nextState[_key] = nextStateForKey; - hasChanged = hasChanged || nextStateForKey !== previousStateForKey; - } +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); - hasChanged = hasChanged || finalReducerKeys.length !== Object.keys(state).length; - return hasChanged ? nextState : state; - }; -} +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -function bindActionCreator(actionCreator, dispatch) { - return function () { - return dispatch(actionCreator.apply(this, arguments)); - }; -} +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); + +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); + +var _DocumentCollection2 = _interopRequireDefault(__webpack_require__(686)); + +var SETTINGS_DOCTYPE = 'io.cozy.settings'; /** - * Turns an object whose values are action creators, into an object with the - * same keys, but with every function wrapped into a `dispatch` call so they - * may be invoked directly. This is just a convenience method, as you can call - * `store.dispatch(MyActionCreators.doSomething())` yourself just fine. - * - * For convenience, you can also pass an action creator as the first argument, - * and get a dispatch wrapped function in return. - * - * @param {Function|Object} actionCreators An object whose values are action - * creator functions. One handy way to obtain it is to use ES6 `import * as` - * syntax. You may also pass a single function. - * - * @param {Function} dispatch The `dispatch` function available on your Redux - * store. - * - * @returns {Function|Object} The object mimicking the original object, but with - * every action creator wrapped into the `dispatch` call. If you passed a - * function as `actionCreators`, the return value will also be a single - * function. + * Implements `DocumentCollection` API to interact with the /settings endpoint of the stack */ +exports.SETTINGS_DOCTYPE = SETTINGS_DOCTYPE; -function bindActionCreators(actionCreators, dispatch) { - if (typeof actionCreators === 'function') { - return bindActionCreator(actionCreators, dispatch); - } +var SettingsCollection = +/*#__PURE__*/ +function (_DocumentCollection) { + (0, _inherits2.default)(SettingsCollection, _DocumentCollection); - if (typeof actionCreators !== 'object' || actionCreators === null) { - throw new Error( false ? undefined : "bindActionCreators expected an object or a function, but instead received: '" + kindOf(actionCreators) + "'. " + "Did you write \"import ActionCreators from\" instead of \"import * as ActionCreators from\"?"); + function SettingsCollection(stackClient) { + (0, _classCallCheck2.default)(this, SettingsCollection); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(SettingsCollection).call(this, SETTINGS_DOCTYPE, stackClient)); } + /** + * async get - Calls a route on the /settings API + * + * @param {string} path The setting route to call, eg `instance` or `context` + * @returns {object} The response from the route + */ - var boundActionCreators = {}; - - for (var key in actionCreators) { - var actionCreator = actionCreators[key]; - if (typeof actionCreator === 'function') { - boundActionCreators[key] = bindActionCreator(actionCreator, dispatch); - } - } + (0, _createClass2.default)(SettingsCollection, [{ + key: "get", + value: function () { + var _get = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(path) { + var resp; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + _context.next = 2; + return this.stackClient.fetchJSON('GET', "/settings/".concat(path)); - return boundActionCreators; -} + case 2: + resp = _context.sent; + return _context.abrupt("return", { + data: _DocumentCollection2.default.normalizeDoctypeJsonApi(SETTINGS_DOCTYPE)((0, _objectSpread2.default)({ + id: "/settings/".concat(path) + }, resp.data), resp) + }); -/** - * Composes single-argument functions from right to left. The rightmost - * function can take multiple arguments as it provides the signature for - * the resulting composite function. - * - * @param {...Function} funcs The functions to compose. - * @returns {Function} A function obtained by composing the argument functions - * from right to left. For example, compose(f, g, h) is identical to doing - * (...args) => f(g(h(...args))). - */ -function compose() { - for (var _len = arguments.length, funcs = new Array(_len), _key = 0; _key < _len; _key++) { - funcs[_key] = arguments[_key]; - } + case 4: + case "end": + return _context.stop(); + } + } + }, _callee, this); + })); - if (funcs.length === 0) { - return function (arg) { - return arg; - }; - } + return function get(_x) { + return _get.apply(this, arguments); + }; + }() + }]); + return SettingsCollection; +}(_DocumentCollection2.default); - if (funcs.length === 1) { - return funcs[0]; - } +SettingsCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; +var _default = SettingsCollection; +exports.default = _default; - return funcs.reduce(function (a, b) { - return function () { - return a(b.apply(void 0, arguments)); - }; - }); -} +/***/ }), +/* 724 */ +/***/ (function(module, exports, __webpack_require__) { -/** - * Creates a store enhancer that applies middleware to the dispatch method - * of the Redux store. This is handy for a variety of tasks, such as expressing - * asynchronous actions in a concise manner, or logging every action payload. - * - * See `redux-thunk` package as an example of the Redux middleware. - * - * Because middleware is potentially asynchronous, this should be the first - * store enhancer in the composition chain. - * - * Note that each middleware will be given the `dispatch` and `getState` functions - * as named arguments. - * - * @param {...Function} middlewares The middleware chain to be applied. - * @returns {Function} A store enhancer applying the middleware. - */ +"use strict"; -function applyMiddleware() { - for (var _len = arguments.length, middlewares = new Array(_len), _key = 0; _key < _len; _key++) { - middlewares[_key] = arguments[_key]; - } - return function (createStore) { - return function () { - var store = createStore.apply(void 0, arguments); +var _interopRequireDefault = __webpack_require__(532); - var _dispatch = function dispatch() { - throw new Error( false ? undefined : 'Dispatching while constructing your middleware is not allowed. ' + 'Other middleware would not be applied to this dispatch.'); - }; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.NOTES_URL_DOCTYPE = exports.NOTES_DOCTYPE = void 0; - var middlewareAPI = { - getState: store.getState, - dispatch: function dispatch() { - return _dispatch.apply(void 0, arguments); - } - }; - var chain = middlewares.map(function (middleware) { - return middleware(middlewareAPI); - }); - _dispatch = compose.apply(void 0, chain)(store.dispatch); - return Object(_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_0__["default"])(Object(_babel_runtime_helpers_esm_objectSpread2__WEBPACK_IMPORTED_MODULE_0__["default"])({}, store), {}, { - dispatch: _dispatch - }); - }; - }; -} +var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(687)); -/* - * This is a dummy function to check if the function name has been altered by minification. - * If the function has been minified and NODE_ENV !== 'production', warn the user. - */ +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -function isCrushed() {} +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -if ( true && typeof isCrushed.name === 'string' && isCrushed.name !== 'isCrushed') { - warning('You are currently using minified code outside of NODE_ENV === "production". ' + 'This means that you are running a slower development build of Redux. ' + 'You can use loose-envify (https://github.com/zertosh/loose-envify) for browserify ' + 'or setting mode to production in webpack (https://webpack.js.org/concepts/mode/) ' + 'to ensure you have the correct code for your production build.'); -} +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -/***/ }), -/* 700 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _objectSpread2; }); -/* harmony import */ var _defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(701); +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); +var _DocumentCollection2 = _interopRequireDefault(__webpack_require__(686)); -function ownKeys(object, enumerableOnly) { - var keys = Object.keys(object); +var _utils = __webpack_require__(688); - if (Object.getOwnPropertySymbols) { - var symbols = Object.getOwnPropertySymbols(object); +var _NotesSchema = __webpack_require__(725); - if (enumerableOnly) { - symbols = symbols.filter(function (sym) { - return Object.getOwnPropertyDescriptor(object, sym).enumerable; - }); - } +function _templateObject2() { + var data = (0, _taggedTemplateLiteral2.default)(["/notes/", "/open"]); - keys.push.apply(keys, symbols); - } + _templateObject2 = function _templateObject2() { + return data; + }; - return keys; + return data; } -function _objectSpread2(target) { - for (var i = 1; i < arguments.length; i++) { - var source = arguments[i] != null ? arguments[i] : {}; +function _templateObject() { + var data = (0, _taggedTemplateLiteral2.default)(["/files/", ""]); - if (i % 2) { - ownKeys(Object(source), true).forEach(function (key) { - Object(_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__["default"])(target, key, source[key]); - }); - } else if (Object.getOwnPropertyDescriptors) { - Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); - } else { - ownKeys(Object(source)).forEach(function (key) { - Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); - }); - } - } + _templateObject = function _templateObject() { + return data; + }; - return target; + return data; } -/***/ }), -/* 701 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return _defineProperty; }); -function _defineProperty(obj, key, value) { - if (key in obj) { - Object.defineProperty(obj, key, { - value: value, - enumerable: true, - configurable: true, - writable: true - }); - } else { - obj[key] = value; - } +var NOTES_DOCTYPE = 'io.cozy.notes'; +exports.NOTES_DOCTYPE = NOTES_DOCTYPE; +var NOTES_URL_DOCTYPE = 'io.cozy.notes.url'; +exports.NOTES_URL_DOCTYPE = NOTES_URL_DOCTYPE; - return obj; -} +var normalizeDoc = _DocumentCollection2.default.normalizeDoctypeJsonApi(NOTES_DOCTYPE); -/***/ }), -/* 702 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { +var normalizeNote = function normalizeNote(note) { + return (0, _objectSpread2.default)({}, normalizeDoc(note, NOTES_DOCTYPE), note.attributes); +}; -"use strict"; -__webpack_require__.r(__webpack_exports__); -function createThunkMiddleware(extraArgument) { - return function (_ref) { - var dispatch = _ref.dispatch, - getState = _ref.getState; - return function (next) { - return function (action) { - if (typeof action === 'function') { - return action(dispatch, getState, extraArgument); - } +var normalizeNoteUrl = function normalizeNoteUrl(noteUrl) { + return (0, _objectSpread2.default)({}, _DocumentCollection2.default.normalizeDoctypeJsonApi(NOTES_URL_DOCTYPE)(noteUrl), noteUrl.attributes); +}; +/** + * Implements `DocumentCollection` API to interact with the /notes endpoint of the stack + */ - return next(action); - }; - }; - }; -} -var thunk = createThunkMiddleware(); -thunk.withExtraArgument = createThunkMiddleware; +var NotesCollection = +/*#__PURE__*/ +function (_DocumentCollection) { + (0, _inherits2.default)(NotesCollection, _DocumentCollection); -/* harmony default export */ __webpack_exports__["default"] = (thunk); + function NotesCollection(stackClient) { + (0, _classCallCheck2.default)(this, NotesCollection); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(NotesCollection).call(this, NOTES_DOCTYPE, stackClient)); + } + /** + * Fetches all notes + * + * @returns {{data, links, meta}} The JSON API conformant response. + */ -/***/ }), -/* 703 */ -/***/ (function(module, exports, __webpack_require__) { -"use strict"; + (0, _createClass2.default)(NotesCollection, [{ + key: "all", + value: function () { + var _all = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee() { + var resp; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + _context.next = 2; + return this.stackClient.fetchJSON('GET', '/notes'); + case 2: + resp = _context.sent; + return _context.abrupt("return", (0, _objectSpread2.default)({}, resp, { + data: resp.data.map(normalizeNote) + })); -var _interopRequireDefault = __webpack_require__(530); + case 4: + case "end": + return _context.stop(); + } + } + }, _callee, this); + })); -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.extractAndMergeDocument = exports.getCollectionFromSlice = exports.getDocumentFromSlice = exports.default = exports.mergeDocumentsWithRelationships = void 0; + return function all() { + return _all.apply(this, arguments); + }; + }() + /** + * Destroys the note on the server + * + * @param {io.cozy.notes} note The note document to destroy + * @param {string} note._id The note's id + * + * @returns {{ data }} The deleted note + */ -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + }, { + key: "destroy", + value: function () { + var _destroy = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(_ref) { + var _id, resp; -var _keyBy = _interopRequireDefault(__webpack_require__(704)); + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + _id = _ref._id; + _context2.next = 3; + return this.stackClient.fetchJSON('DELETE', (0, _utils.uri)(_templateObject(), _id)); -var _get = _interopRequireDefault(__webpack_require__(370)); + case 3: + resp = _context2.sent; + return _context2.abrupt("return", { + data: (0, _objectSpread2.default)({}, normalizeNote(resp.data), { + _deleted: true + }) + }); -var _isEqual = _interopRequireDefault(__webpack_require__(653)); + case 5: + case "end": + return _context2.stop(); + } + } + }, _callee2, this); + })); -var _omit = _interopRequireDefault(__webpack_require__(631)); + return function destroy(_x) { + return _destroy.apply(this, arguments); + }; + }() + /** + * Create a note + * + * @param {object} option + * @param {string} option.dir_id dir_id where to create the note + * @returns {{data, links, meta}} The JSON API conformant response. + */ -var _logger = _interopRequireDefault(__webpack_require__(708)); + }, { + key: "create", + value: function () { + var _create = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(_ref2) { + var dir_id, resp; + return _regenerator.default.wrap(function _callee3$(_context3) { + while (1) { + switch (_context3.prev = _context3.next) { + case 0: + dir_id = _ref2.dir_id; + _context3.next = 3; + return this.stackClient.fetchJSON('POST', '/notes', { + data: { + type: 'io.cozy.notes.documents', + attributes: { + title: '', + schema: (0, _NotesSchema.getDefaultSchema)(), + dir_id: dir_id + } + } + }); -var _queries = __webpack_require__(728); + case 3: + resp = _context3.sent; + return _context3.abrupt("return", (0, _objectSpread2.default)({}, resp, { + data: normalizeNote(resp.data) + })); -var _dsl = __webpack_require__(625); + case 5: + case "end": + return _context3.stop(); + } + } + }, _callee3, this); + })); -var _mutations = __webpack_require__(743); + return function create(_x2) { + return _create.apply(this, arguments); + }; + }() + /** + * Returns the details to build the note's url + * + * @see https://github.com/cozy/cozy-stack/blob/master/docs/notes.md#get-notesidopen + * + * @param {io.cozy.notes} note The note document to open + * @param {string} note._id The note's id + * + * @returns {{ data }} The note's url details + */ -var _types = __webpack_require__(628); + }, { + key: "fetchURL", + value: function () { + var _fetchURL = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4(_ref3) { + var _id, resp; -var _helpers = __webpack_require__(744); + return _regenerator.default.wrap(function _callee4$(_context4) { + while (1) { + switch (_context4.prev = _context4.next) { + case 0: + _id = _ref3._id; + _context4.next = 3; + return this.stackClient.fetchJSON('GET', (0, _utils.uri)(_templateObject2(), _id)); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + case 3: + resp = _context4.sent; + return _context4.abrupt("return", { + data: normalizeNoteUrl(resp.data) + }); -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + case 5: + case "end": + return _context4.stop(); + } + } + }, _callee4, this); + })); -var storeDocument = function storeDocument(state, document) { - var type = document._type; + return function fetchURL(_x3) { + return _fetchURL.apply(this, arguments); + }; + }() + /** + * Returns promise mirror schema for a note + * + * @returns {object} schema + */ - if (!type) { - if (true) { - _logger.default.info('Document without _type', document); + }, { + key: "getDefaultSchema", + value: function getDefaultSchema() { + return (0, _NotesSchema.getDefaultSchema)(); } + }]); + return NotesCollection; +}(_DocumentCollection2.default); - throw new Error('Document without _type'); - } +NotesCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; +var _default = NotesCollection; +exports.default = _default; - if (!(0, _helpers.properId)(document)) { - if (true) { - _logger.default.info('Document without id', document); - } +/***/ }), +/* 725 */ +/***/ (function(module, exports, __webpack_require__) { - throw new Error('Document without id'); - } +"use strict"; - var existingDoc = (0, _get.default)(state, [type, (0, _helpers.properId)(document)]); - if ((0, _isEqual.default)(existingDoc, document)) { - return state; - } else { - return _objectSpread(_objectSpread({}, state), {}, (0, _defineProperty2.default)({}, type, _objectSpread(_objectSpread({}, state[type]), {}, (0, _defineProperty2.default)({}, (0, _helpers.properId)(document), mergeDocumentsWithRelationships(existingDoc, document))))); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.getDefaultSchema = exports.marks = exports.nodes = void 0; +// taken from a debug of @atlakit/editor/editor-core/create-editor/create-editor +// L139 (new Schema({nodes ,marks})) +// static because the @atlaskit code base requires a real navigator +// TODO: either find and exclude plugins requiring interaction +// or running a JSDOM faking a navigator +var nodes = [['doc', { + content: '(block)+', + marks: 'link' +}], ['paragraph', { + content: 'inline*', + group: 'block', + marks: 'strong code em link strike subsup textColor typeAheadQuery underline', + parseDOM: [{ + tag: 'p' + }] +}], ['text', { + group: 'inline' +}], ['bulletList', { + group: 'block', + content: 'listItem+', + parseDOM: [{ + tag: 'ul' + }] +}], ['orderedList', { + group: 'block', + content: 'listItem+', + parseDOM: [{ + tag: 'ol' + }] +}], ['listItem', { + content: '(paragraph ) (paragraph | bulletList | orderedList )*', + defining: true, + parseDOM: [{ + tag: 'li' + }] +}], ['heading', { + attrs: { + level: { + default: 1 + } + }, + content: 'inline*', + group: 'block', + defining: true, + parseDOM: [{ + tag: 'h1', + attrs: { + level: 1 + } + }, { + tag: 'h2', + attrs: { + level: 2 + } + }, { + tag: 'h3', + attrs: { + level: 3 + } + }, { + tag: 'h4', + attrs: { + level: 4 + } + }, { + tag: 'h5', + attrs: { + level: 5 + } + }, { + tag: 'h6', + attrs: { + level: 6 + } + }] +}], ['blockquote', { + content: 'paragraph+', + group: 'block', + defining: true, + selectable: false, + parseDOM: [{ + tag: 'blockquote' + }] +}], ['rule', { + group: 'block', + parseDOM: [{ + tag: 'hr' + }] +}], ['panel', { + group: 'block', + content: '(paragraph | heading | bulletList | orderedList)+', + attrs: { + panelType: { + default: 'info' + } + }, + parseDOM: [{ + tag: 'div[data-panel-type]' + }] +}], ['confluenceUnsupportedBlock', { + group: 'block', + attrs: { + cxhtml: { + default: null + } + }, + parseDOM: [{ + tag: 'div[data-node-type="confluenceUnsupportedBlock"]' + }] +}], ['confluenceUnsupportedInline', { + group: 'inline', + inline: true, + atom: true, + attrs: { + cxhtml: { + default: null + } + }, + parseDOM: [{ + tag: 'div[data-node-type="confluenceUnsupportedInline"]' + }] +}], ['unsupportedBlock', { + inline: false, + group: 'block', + atom: true, + selectable: true, + attrs: { + originalValue: { + default: {} + } + }, + parseDOM: [{ + tag: '[data-node-type="unsupportedBlock"]' + }] +}], ['unsupportedInline', { + inline: true, + group: 'inline', + selectable: true, + attrs: { + originalValue: { + default: {} + } + }, + parseDOM: [{ + tag: '[data-node-type="unsupportedInline"]' + }] +}], ['hardBreak', { + inline: true, + group: 'inline', + selectable: false, + parseDOM: [{ + tag: 'br' + }] +}], ['table', { + content: 'tableRow+', + attrs: { + isNumberColumnEnabled: { + default: false + }, + layout: { + default: 'default' + }, + __autoSize: { + default: false + } + }, + tableRole: 'table', + isolating: true, + selectable: false, + group: 'block', + parseDOM: [{ + tag: 'table' + }] +}], ['tableHeader', { + content: '(paragraph | panel | blockquote | orderedList | bulletList | rule | heading )+', + attrs: { + colspan: { + default: 1 + }, + rowspan: { + default: 1 + }, + colwidth: { + default: null + }, + background: { + default: null + } + }, + tableRole: 'header_cell', + isolating: true, + marks: '', + parseDOM: [{ + tag: 'th' + }] +}], ['tableRow', { + content: '(tableCell | tableHeader)+', + tableRole: 'row', + parseDOM: [{ + tag: 'tr' + }] +}], ['tableCell', { + content: '(paragraph | panel | blockquote | orderedList | bulletList | rule | heading | unsupportedBlock)+', + attrs: { + colspan: { + default: 1 + }, + rowspan: { + default: 1 + }, + colwidth: { + default: null + }, + background: { + default: null + } + }, + tableRole: 'cell', + marks: '', + isolating: true, + parseDOM: [{ + tag: '.ak-renderer-table-number-column', + ignore: true + }, { + tag: 'td' + }] +}]]; +exports.nodes = nodes; +var marks = [['link', { + excludes: 'color', + group: 'link', + attrs: { + href: {}, + __confluenceMetadata: { + default: null + } + }, + inclusive: false, + parseDOM: [{ + tag: 'a[href]' + }] +}], ['em', { + inclusive: true, + group: 'fontStyle', + parseDOM: [{ + tag: 'i' + }, { + tag: 'em' + }, { + style: 'font-style=italic' + }] +}], ['strong', { + inclusive: true, + group: 'fontStyle', + parseDOM: [{ + tag: 'strong' + }, { + tag: 'b' + }, { + style: 'font-weight' + }] +}], ['textColor', { + attrs: { + color: {} + }, + inclusive: true, + group: 'color', + parseDOM: [{ + style: 'color' + }] +}], ['strike', { + inclusive: true, + group: 'fontStyle', + parseDOM: [{ + tag: 'strike' + }, { + tag: 's' + }, { + tag: 'del' + }, { + style: 'text-decoration' + }] +}], ['subsup', { + inclusive: true, + group: 'fontStyle', + attrs: { + type: { + default: 'sub' + } + }, + parseDOM: [{ + tag: 'sub', + attrs: { + type: 'sub' + } + }, { + tag: 'sup', + attrs: { + type: 'sup' + } + }] +}], ['underline', { + inclusive: true, + group: 'fontStyle', + parseDOM: [{ + tag: 'u' + }, { + style: 'text-decoration' + }] +}], ['code', { + excludes: 'fontStyle link searchQuery color', + inclusive: true, + parseDOM: [{ + tag: 'span.code', + preserveWhitespace: true + }, { + tag: 'code', + preserveWhitespace: true + }, { + tag: 'tt', + preserveWhitespace: true + }, { + tag: 'span', + preserveWhitespace: true + }] +}], ['typeAheadQuery', { + excludes: 'searchQuery', + inclusive: true, + group: 'searchQuery', + parseDOM: [{ + tag: 'span[data-type-ahead-query]' + }], + attrs: { + trigger: { + default: '' + } } -}; - -var mergeDocumentsWithRelationships = function mergeDocumentsWithRelationships() { - var prevDocument = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var nextDocument = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; +}]]; +exports.marks = marks; - /** - * @type {CozyClientDocument} - */ - var merged = _objectSpread(_objectSpread({}, prevDocument), nextDocument); +var getDefaultSchema = function getDefaultSchema() { + return { + nodes: nodes, + marks: marks + }; +}; - if (prevDocument.relationships || nextDocument.relationships) merged.relationships = _objectSpread(_objectSpread({}, prevDocument.relationships), nextDocument.relationships); - return merged; -}; // reducer +exports.getDefaultSchema = getDefaultSchema; +/***/ }), +/* 726 */ +/***/ (function(module, exports, __webpack_require__) { -exports.mergeDocumentsWithRelationships = mergeDocumentsWithRelationships; +"use strict"; -var documents = function documents() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var action = arguments.length > 1 ? arguments[1] : undefined; - if (!(0, _queries.isReceivingData)(action) && !(0, _mutations.isReceivingMutationResult)(action)) { - return state; - } +var _interopRequireDefault = __webpack_require__(532); - if (action && action.definition && action.definition.mutationType === _dsl.MutationTypes.DELETE_DOCUMENT) { - var docId = action.definition.document._id; - var _type = action.definition.document._type; - return _objectSpread(_objectSpread({}, state), {}, (0, _defineProperty2.default)({}, _type, (0, _omit.default)(state[_type], docId))); - } +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.SHORTCUTS_DOCTYPE = void 0; - var _action$response = action.response, - data = _action$response.data, - included = _action$response.included; - if (!data || Array.isArray(data) && data.length === 0) return state; - var updatedStateWithIncluded = included ? included.reduce(storeDocument, state) : state; +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - if (!Array.isArray(data)) { - return storeDocument(updatedStateWithIncluded, data); - } +var _taggedTemplateLiteral2 = _interopRequireDefault(__webpack_require__(687)); - return extractAndMergeDocument(data, updatedStateWithIncluded); -}; +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var _default = documents; // selector +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -exports.default = _default; +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -var getDocumentFromSlice = function getDocumentFromSlice() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var doctype = arguments.length > 1 ? arguments[1] : undefined; - var id = arguments.length > 2 ? arguments[2] : undefined; +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); - if (!doctype) { - throw new Error('getDocumentFromSlice: Cannot retrieve document with undefined doctype'); - } +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); - if (!id) { - throw new Error('getDocumentFromSlice: Cannot retrieve document with undefined id'); - } +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); - if (!state[doctype]) { - if (true) { - _logger.default.info("getDocumentFromSlice: ".concat(doctype, " is absent from the store's documents. State is"), state); - } +var _DocumentCollection2 = _interopRequireDefault(__webpack_require__(686)); - return null; - } else if (!state[doctype][id]) { - if (true) { - _logger.default.info("getDocumentFromSlice: ".concat(doctype, ":").concat(id, " is absent from the store documents. State is"), state); - } +var _utils = __webpack_require__(688); - return null; - } +function _templateObject2() { + var data = (0, _taggedTemplateLiteral2.default)(["/shortcuts/", ""]); - return state[doctype][id]; -}; + _templateObject2 = function _templateObject2() { + return data; + }; -exports.getDocumentFromSlice = getDocumentFromSlice; + return data; +} -var getCollectionFromSlice = function getCollectionFromSlice() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var doctype = arguments.length > 1 ? arguments[1] : undefined; +function _templateObject() { + var data = (0, _taggedTemplateLiteral2.default)(["/shortcuts"]); - if (!doctype) { - throw new Error('getDocumentFromSlice: Cannot retrieve document with undefined doctype'); - } + _templateObject = function _templateObject() { + return data; + }; - if (!state[doctype]) { - if (true) { - _logger.default.info("getCollectionFromSlice: ".concat(doctype, " is absent from the store documents. State is"), state); - } + return data; +} - return null; - } +var SHORTCUTS_DOCTYPE = 'io.cozy.files.shortcuts'; +exports.SHORTCUTS_DOCTYPE = SHORTCUTS_DOCTYPE; - return Object.values(state[doctype]); -}; -/* - This method has been created in order to get a returned object - in `data` with the full set on information coming potentially from - ìncluded` +var ShortcutsCollection = +/*#__PURE__*/ +function (_DocumentCollection) { + (0, _inherits2.default)(ShortcutsCollection, _DocumentCollection); - This method should be somewhere else. The `document` shall not be - deal with included / data and so on. + function ShortcutsCollection(stackClient) { + (0, _classCallCheck2.default)(this, ShortcutsCollection); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(ShortcutsCollection).call(this, SHORTCUTS_DOCTYPE, stackClient)); + } + /** + * Create a shortcut + * + * @param {object} attributes shortcut's attributes + * @param {string} attributes.name Filename + * @param {string} attributes.url Shortcut's URL + * @param {string} attributes.dir_id dir_id where to create the shortcut + */ - This method takes data and included and merge both sources - together. It should be always up to date. The returned object - will be as full of informations as it can be. -*/ + (0, _createClass2.default)(ShortcutsCollection, [{ + key: "create", + value: function () { + var _create = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(attributes) { + var path, resp; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + if (!attributes.type) { + attributes.type = SHORTCUTS_DOCTYPE; + } -exports.getCollectionFromSlice = getCollectionFromSlice; + if (!(!attributes.name || !attributes.url || !attributes.dir_id)) { + _context.next = 3; + break; + } -var extractAndMergeDocument = function extractAndMergeDocument(data, updatedStateWithIncluded) { - var doctype = data[0]._type; + throw new Error('you need at least a name, an url and a dir_id attributes to create a shortcut'); - if (!doctype) { - _logger.default.info('Document without _type', data[0]); + case 3: + path = (0, _utils.uri)(_templateObject()); + _context.next = 6; + return this.stackClient.fetchJSON('POST', path, { + data: { + attributes: attributes, + type: 'io.cozy.files.shortcuts' + } + }); - throw new Error('Document without _type'); - } + case 6: + resp = _context.sent; + return _context.abrupt("return", { + data: _DocumentCollection2.default.normalizeDoctypeJsonApi(SHORTCUTS_DOCTYPE)(resp.data, resp) + }); - var sortedData = (0, _keyBy.default)(data, _helpers.properId); - var mergedData = {}; + case 8: + case "end": + return _context.stop(); + } + } + }, _callee, this); + })); - if (updatedStateWithIncluded && updatedStateWithIncluded[doctype]) { - Object.values(updatedStateWithIncluded[doctype]).map(function (dataState) { - if (!mergedData[doctype]) mergedData[doctype] = {}; - var id = (0, _helpers.properId)(dataState); + return function create(_x) { + return _create.apply(this, arguments); + }; + }() + }, { + key: "get", + value: function () { + var _get = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(id) { + var path, resp; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + path = (0, _utils.uri)(_templateObject2(), id); + _context2.next = 3; + return this.stackClient.fetchJSON('GET', path); - if (sortedData[id]) { - mergedData[doctype][id] = _objectSpread(_objectSpread(_objectSpread({}, dataState), sortedData[id]), mergedData[doctype][id]); - } else { - mergedData[doctype][id] = _objectSpread(_objectSpread({}, dataState), mergedData[doctype][id]); - } - }); - } + case 3: + resp = _context2.sent; + return _context2.abrupt("return", { + data: _DocumentCollection2.default.normalizeDoctypeJsonApi(SHORTCUTS_DOCTYPE)(resp.data, resp) + }); - Object.values(sortedData).map(function (data) { - if (!mergedData[doctype]) mergedData[doctype] = {}; - var id = (0, _helpers.properId)(data); + case 5: + case "end": + return _context2.stop(); + } + } + }, _callee2, this); + })); - if (mergedData[doctype][id]) { - mergedData[doctype][id] = _objectSpread(_objectSpread({}, mergedData[doctype][id]), data); - } else { - mergedData[doctype][id] = data; - } - }); - return _objectSpread(_objectSpread({}, updatedStateWithIncluded), mergedData); -}; + return function get(_x2) { + return _get.apply(this, arguments); + }; + }() + }]); + return ShortcutsCollection; +}(_DocumentCollection2.default); -exports.extractAndMergeDocument = extractAndMergeDocument; +ShortcutsCollection.normalizeDoctype = _DocumentCollection2.default.normalizeDoctypeJsonApi; +var _default = ShortcutsCollection; +exports.default = _default; /***/ }), -/* 704 */ +/* 727 */ /***/ (function(module, exports, __webpack_require__) { -var baseAssignValue = __webpack_require__(552), - createAggregator = __webpack_require__(705); +"use strict"; -/** - * Creates an object composed of keys generated from the results of running - * each element of `collection` thru `iteratee`. The corresponding value of - * each key is the last element responsible for generating the key. The - * iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee to transform keys. - * @returns {Object} Returns the composed aggregate object. - * @example - * - * var array = [ - * { 'dir': 'left', 'code': 97 }, - * { 'dir': 'right', 'code': 100 } - * ]; - * - * _.keyBy(array, function(o) { - * return String.fromCharCode(o.code); - * }); - * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } - * - * _.keyBy(array, 'dir'); - * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } - */ -var keyBy = createAggregator(function(result, value, key) { - baseAssignValue(result, key, value); + +var _interopRequireWildcard = __webpack_require__(530); + +var _interopRequireDefault = __webpack_require__(532); + +Object.defineProperty(exports, "__esModule", { + value: true }); +exports.default = exports.CONTACTS_DOCTYPE = void 0; -module.exports = keyBy; +var _regenerator = _interopRequireDefault(__webpack_require__(547)); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -/***/ }), -/* 705 */ -/***/ (function(module, exports, __webpack_require__) { +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var arrayAggregator = __webpack_require__(706), - baseAggregator = __webpack_require__(707), - baseIteratee = __webpack_require__(413), - isArray = __webpack_require__(75); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -/** - * Creates a function like `_.groupBy`. - * - * @private - * @param {Function} setter The function to set accumulator values. - * @param {Function} [initializer] The accumulator object initializer. - * @returns {Function} Returns the new aggregator function. - */ -function createAggregator(setter, initializer) { - return function(collection, iteratee) { - var func = isArray(collection) ? arrayAggregator : baseAggregator, - accumulator = initializer ? initializer() : {}; +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); - return func(collection, setter, baseIteratee(iteratee, 2), accumulator); - }; -} +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -module.exports = createAggregator; +var _get2 = _interopRequireDefault(__webpack_require__(565)); +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -/***/ }), -/* 706 */ -/***/ (function(module, exports) { +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -/** - * A specialized version of `baseAggregator` for arrays. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} setter The function to set `accumulator` values. - * @param {Function} iteratee The iteratee to transform keys. - * @param {Object} accumulator The initial aggregated object. - * @returns {Function} Returns `accumulator`. - */ -function arrayAggregator(array, setter, iteratee, accumulator) { - var index = -1, - length = array == null ? 0 : array.length; +var _DocumentCollection2 = _interopRequireWildcard(__webpack_require__(686)); - while (++index < length) { - var value = array[index]; - setter(accumulator, value, iteratee(value), array); +var normalizeMyselfResp = function normalizeMyselfResp(resp) { + return (0, _objectSpread2.default)({}, (0, _DocumentCollection2.normalizeDoc)(resp.data, CONTACTS_DOCTYPE), resp.data.attributes, { + _rev: resp.data.meta.rev + }); +}; + +var ContactsCollection = +/*#__PURE__*/ +function (_DocumentCollection) { + (0, _inherits2.default)(ContactsCollection, _DocumentCollection); + + function ContactsCollection() { + (0, _classCallCheck2.default)(this, ContactsCollection); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(ContactsCollection).apply(this, arguments)); } - return accumulator; -} -module.exports = arrayAggregator; + (0, _createClass2.default)(ContactsCollection, [{ + key: "find", + value: function () { + var _find = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(selector, options) { + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + if (!(Object.values(selector).length === 1 && selector['me'] == true)) { + _context.next = 4; + break; + } + return _context.abrupt("return", this.findMyself()); -/***/ }), -/* 707 */ -/***/ (function(module, exports, __webpack_require__) { + case 4: + return _context.abrupt("return", (0, _get2.default)((0, _getPrototypeOf2.default)(ContactsCollection.prototype), "find", this).call(this, selector, options)); -var baseEach = __webpack_require__(573); + case 5: + case "end": + return _context.stop(); + } + } + }, _callee, this); + })); -/** - * Aggregates elements of `collection` on `accumulator` with keys transformed - * by `iteratee` and values set by `setter`. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} setter The function to set `accumulator` values. - * @param {Function} iteratee The iteratee to transform keys. - * @param {Object} accumulator The initial aggregated object. - * @returns {Function} Returns `accumulator`. - */ -function baseAggregator(collection, setter, iteratee, accumulator) { - baseEach(collection, function(value, key, collection) { - setter(accumulator, value, iteratee(value), collection); - }); - return accumulator; -} + return function find(_x, _x2) { + return _find.apply(this, arguments); + }; + }() + }, { + key: "findMyself", + value: function () { + var _findMyself = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2() { + var resp, col; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + _context2.next = 2; + return this.stackClient.fetchJSON('POST', '/contacts/myself'); -module.exports = baseAggregator; + case 2: + resp = _context2.sent; + col = { + data: [normalizeMyselfResp(resp)], + next: false, + meta: null, + bookmark: false + }; + return _context2.abrupt("return", col); + + case 5: + case "end": + return _context2.stop(); + } + } + }, _callee2, this); + })); + + return function findMyself() { + return _findMyself.apply(this, arguments); + }; + }() + }]); + return ContactsCollection; +}(_DocumentCollection2.default); +var CONTACTS_DOCTYPE = 'io.cozy.contacts'; +exports.CONTACTS_DOCTYPE = CONTACTS_DOCTYPE; +var _default = ContactsCollection; +exports.default = _default; /***/ }), -/* 708 */ +/* 728 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireWildcard = __webpack_require__(530); + +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = void 0; - -var _minilog = _interopRequireDefault(__webpack_require__(709)); - -var logger = (0, _minilog.default)('cozy-client'); - -_minilog.default.suggest.deny('cozy-client', 'info'); - -var _default = logger; -exports.default = _default; +exports.getIconURL = exports.default = void 0; -/***/ }), -/* 709 */ -/***/ (function(module, exports, __webpack_require__) { +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -module.exports = __webpack_require__(710); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var consoleLogger = __webpack_require__(713); +var _memoize = _interopRequireWildcard(__webpack_require__(729)); -// if we are running inside Electron then use the web version of console.js -var isElectron = (typeof window !== 'undefined' && window.process && window.process.type === 'renderer'); -if (isElectron) { - consoleLogger = __webpack_require__(722).minilog; -} +var mimeTypes = { + gif: 'image/gif', + ico: 'image/vnd.microsoft.icon', + jpeg: 'image/jpeg', + jpg: 'image/jpeg', + png: 'image/png', + svg: 'image/svg+xml' +}; -// intercept the pipe method and transparently wrap the stringifier, if the -// destination is a Node core stream +var getIconExtensionFromApp = function getIconExtensionFromApp(app) { + if (!app.icon) { + throw new Error("".concat(app.name, ": Cannot detect icon mime type since app has no icon")); + } -module.exports.Stringifier = __webpack_require__(726); + var extension = app.icon.split('.').pop(); -var oldPipe = module.exports.pipe; -module.exports.pipe = function(dest) { - if(dest instanceof __webpack_require__(100)) { - return oldPipe.call(module.exports, new (module.exports.Stringifier)).pipe(dest); - } else { - return oldPipe.call(module.exports, dest); + if (!extension) { + throw new Error("".concat(app.name, ": Unable to detect icon mime type from extension (").concat(app.icon, ")")); } -}; -module.exports.defaultBackend = consoleLogger; -module.exports.defaultFormatter = consoleLogger.formatMinilog; - -module.exports.backends = { - redis: __webpack_require__(727), - nodeConsole: consoleLogger, - console: consoleLogger + return extension; }; +var fallbacks = +/*#__PURE__*/ +function () { + var _ref = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(tries, check) { + var err, _iteratorNormalCompletion, _didIteratorError, _iteratorError, _iterator, _step, _try, res; -/***/ }), -/* 710 */ -/***/ (function(module, exports, __webpack_require__) { - -var Transform = __webpack_require__(711), - Filter = __webpack_require__(712); + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + _iteratorNormalCompletion = true; + _didIteratorError = false; + _iteratorError = undefined; + _context.prev = 3; + _iterator = tries[Symbol.iterator](); -var log = new Transform(), - slice = Array.prototype.slice; + case 5: + if (_iteratorNormalCompletion = (_step = _iterator.next()).done) { + _context.next = 21; + break; + } -exports = module.exports = function create(name) { - var o = function() { log.write(name, undefined, slice.call(arguments)); return o; }; - o.debug = function() { log.write(name, 'debug', slice.call(arguments)); return o; }; - o.info = function() { log.write(name, 'info', slice.call(arguments)); return o; }; - o.warn = function() { log.write(name, 'warn', slice.call(arguments)); return o; }; - o.error = function() { log.write(name, 'error', slice.call(arguments)); return o; }; - o.group = function() { log.write(name, 'group', slice.call(arguments)); return o; }; - o.groupEnd = function() { log.write(name, 'groupEnd', slice.call(arguments)); return o; }; - o.log = o.debug; // for interface compliance with Node and browser consoles - o.suggest = exports.suggest; - o.format = log.format; - return o; -}; + _try = _step.value; + _context.prev = 7; + _context.next = 10; + return _try(); -// filled in separately -exports.defaultBackend = exports.defaultFormatter = null; + case 10: + res = _context.sent; + check && check(res); + return _context.abrupt("return", res); -exports.pipe = function(dest) { - return log.pipe(dest); -}; + case 15: + _context.prev = 15; + _context.t0 = _context["catch"](7); + err = _context.t0; -exports.end = exports.unpipe = exports.disable = function(from) { - return log.unpipe(from); -}; + case 18: + _iteratorNormalCompletion = true; + _context.next = 5; + break; -exports.Transform = Transform; -exports.Filter = Filter; -// this is the default filter that's applied when .enable() is called normally -// you can bypass it completely and set up your own pipes -exports.suggest = new Filter(); + case 21: + _context.next = 27; + break; -exports.enable = function() { - if(exports.defaultFormatter) { - return log.pipe(exports.suggest) // filter - .pipe(exports.defaultFormatter) // formatter - .pipe(exports.defaultBackend); // backend - } - return log.pipe(exports.suggest) // filter - .pipe(exports.defaultBackend); // formatter -}; + case 23: + _context.prev = 23; + _context.t1 = _context["catch"](3); + _didIteratorError = true; + _iteratorError = _context.t1; + case 27: + _context.prev = 27; + _context.prev = 28; + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } -/***/ }), -/* 711 */ -/***/ (function(module, exports, __webpack_require__) { + case 30: + _context.prev = 30; -var microee = __webpack_require__(576); + if (!_didIteratorError) { + _context.next = 33; + break; + } -// Implements a subset of Node's stream.Transform - in a cross-platform manner. -function Transform() {} + throw _iteratorError; -microee.mixin(Transform); + case 33: + return _context.finish(30); -// The write() signature is different from Node's -// --> makes it much easier to work with objects in logs. -// One of the lessons from v1 was that it's better to target -// a good browser rather than the lowest common denominator -// internally. -// If you want to use external streams, pipe() to ./stringify.js first. -Transform.prototype.write = function(name, level, args) { - this.emit('item', name, level, args); -}; + case 34: + return _context.finish(27); -Transform.prototype.end = function() { - this.emit('end'); - this.removeAllListeners(); -}; + case 35: + throw err; -Transform.prototype.pipe = function(dest) { - var s = this; - // prevent double piping - s.emit('unpipe', dest); - // tell the dest that it's being piped to - dest.emit('pipe', s); + case 36: + case "end": + return _context.stop(); + } + } + }, _callee, null, [[3, 23, 27, 35], [7, 15], [28,, 30, 34]]); + })); - function onItem() { - dest.write.apply(dest, Array.prototype.slice.call(arguments)); - } - function onEnd() { !dest._isStdio && dest.end(); } + return function fallbacks(_x, _x2) { + return _ref.apply(this, arguments); + }; +}(); +/** + * Fetch application/konnector that is installed + * + * @private + */ - s.on('item', onItem); - s.on('end', onEnd); - s.when('unpipe', function(from) { - var match = (from === dest) || typeof from == 'undefined'; - if(match) { - s.removeListener('item', onItem); - s.removeListener('end', onEnd); - dest.emit('unpipe'); - } - return match; +var fetchAppOrKonnector = function fetchAppOrKonnector(stackClient, type, slug) { + return stackClient.fetchJSON('GET', "/".concat(type, "s/").concat(slug)).then(function (x) { + return x.data.attributes; }); - - return dest; }; +/** + * Fetch application/konnector from the registry + * + * @private + */ -Transform.prototype.unpipe = function(from) { - this.emit('unpipe', from); - return this; -}; -Transform.prototype.format = function(dest) { - throw new Error([ - 'Warning: .format() is deprecated in Minilog v2! Use .pipe() instead. For example:', - 'var Minilog = require(\'minilog\');', - 'Minilog', - ' .pipe(Minilog.backends.console.formatClean)', - ' .pipe(Minilog.backends.console);'].join('\n')); +var fetchAppOrKonnectorViaRegistry = function fetchAppOrKonnectorViaRegistry(stackClient, type, slug) { + return stackClient.fetchJSON('GET', "/registry/".concat(slug)).then(function (x) { + return x.latest_version.manifest; + }); }; -Transform.mixin = function(dest) { - var o = Transform.prototype, k; - for (k in o) { - o.hasOwnProperty(k) && (dest.prototype[k] = o[k]); - } -}; +var _getIconURL = +/*#__PURE__*/ +function () { + var _ref2 = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(stackClient, opts) { + var type, slug, appData, _opts$priority, priority, iconDataFetchers, resp, icon, app, appDataFetchers, ext; -module.exports = Transform; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + type = opts.type, slug = opts.slug, appData = opts.appData, _opts$priority = opts.priority, priority = _opts$priority === void 0 ? 'stack' : _opts$priority; + iconDataFetchers = [function () { + return stackClient.fetch('GET', "/".concat(type, "s/").concat(slug, "/icon")); + }, function () { + return stackClient.fetch('GET', "/registry/".concat(slug, "/icon")); + }]; + if (priority === 'registry') { + iconDataFetchers.reverse(); + } -/***/ }), -/* 712 */ -/***/ (function(module, exports, __webpack_require__) { + _context2.next = 5; + return fallbacks(iconDataFetchers, function (resp) { + if (!resp.ok) { + throw new Error("Error while fetching icon ".concat(resp.statusText)); + } + }); -// default filter -var Transform = __webpack_require__(711); + case 5: + resp = _context2.sent; + _context2.next = 8; + return resp.blob(); -var levelMap = { debug: 1, info: 2, warn: 3, error: 4 }; + case 8: + icon = _context2.sent; -function Filter() { - this.enabled = true; - this.defaultResult = true; - this.clear(); -} + if (icon.type) { + _context2.next = 25; + break; + } -Transform.mixin(Filter); + // iOS10 does not set correctly mime type for images, so we assume + // that an empty mime type could mean that the app is running on iOS10. + // For regular images like jpeg, png or gif it still works well in the + // Safari browser but not for SVG. + // So let's set a mime type manually. We cannot always set it to + // image/svg+xml and must guess the mime type based on the icon attribute + // from app/manifest + // See https://stackoverflow.com/questions/38318411/uiwebview-on-ios-10-beta-not-loading-any-svg-images + appDataFetchers = [function () { + return fetchAppOrKonnector(stackClient, type, slug); + }, function () { + return fetchAppOrKonnectorViaRegistry(stackClient, type, slug); + }]; -// allow all matching, with level >= given level -Filter.prototype.allow = function(name, level) { - this._white.push({ n: name, l: levelMap[level] }); - return this; -}; + if (priority === 'registry') { + appDataFetchers.reverse(); + } -// deny all matching, with level <= given level -Filter.prototype.deny = function(name, level) { - this._black.push({ n: name, l: levelMap[level] }); - return this; -}; + _context2.t1 = appData; -Filter.prototype.clear = function() { - this._white = []; - this._black = []; - return this; -}; + if (_context2.t1) { + _context2.next = 17; + break; + } -function test(rule, name) { - // use .test for RegExps - return (rule.n.test ? rule.n.test(name) : rule.n == name); -}; + _context2.next = 16; + return fallbacks(appDataFetchers); -Filter.prototype.test = function(name, level) { - var i, len = Math.max(this._white.length, this._black.length); - for(i = 0; i < len; i++) { - if(this._white[i] && test(this._white[i], name) && levelMap[level] >= this._white[i].l) { - return true; - } - if(this._black[i] && test(this._black[i], name) && levelMap[level] <= this._black[i].l) { - return false; - } - } - return this.defaultResult; -}; + case 16: + _context2.t1 = _context2.sent; -Filter.prototype.write = function(name, level, args) { - if(!this.enabled || this.test(name, level)) { - return this.emit('item', name, level, args); - } -}; + case 17: + _context2.t0 = _context2.t1; -module.exports = Filter; + if (_context2.t0) { + _context2.next = 20; + break; + } + _context2.t0 = {}; -/***/ }), -/* 713 */ -/***/ (function(module, exports, __webpack_require__) { + case 20: + app = _context2.t0; + ext = getIconExtensionFromApp(app); -var Transform = __webpack_require__(711); + if (mimeTypes[ext]) { + _context2.next = 24; + break; + } -function ConsoleBackend() { } + throw new Error("Unknown image extension \"".concat(ext, "\" for app ").concat(app.name)); -Transform.mixin(ConsoleBackend); + case 24: + icon = new Blob([icon], { + type: mimeTypes[ext] + }); -ConsoleBackend.prototype.write = function() { - console.log.apply(console, arguments); -}; + case 25: + return _context2.abrupt("return", URL.createObjectURL(icon)); -var e = new ConsoleBackend(); + case 26: + case "end": + return _context2.stop(); + } + } + }, _callee2); + })); -var levelMap = __webpack_require__(714).levelMap; + return function _getIconURL(_x3, _x4) { + return _ref2.apply(this, arguments); + }; +}(); -e.filterEnv = function() { - console.error('Minilog.backends.console.filterEnv is deprecated in Minilog v2.'); - // return the instance of Minilog - return __webpack_require__(710); +var getIconURL = function getIconURL() { + return _getIconURL.apply(this, arguments).catch(function (e) { + return new _memoize.ErrorReturned(); + }); }; -e.formatters = [ - 'formatClean', 'formatColor', 'formatNpm', - 'formatLearnboost', 'formatMinilog', 'formatWithStack', 'formatTime' -]; - -e.formatClean = new (__webpack_require__(715)); -e.formatColor = new (__webpack_require__(716)); -e.formatNpm = new (__webpack_require__(717)); -e.formatLearnboost = new (__webpack_require__(718)); -e.formatMinilog = new (__webpack_require__(719)); -e.formatWithStack = new (__webpack_require__(720)); -e.formatTime = new (__webpack_require__(721)); +exports.getIconURL = getIconURL; -module.exports = e; +var _default = (0, _memoize.default)(getIconURL, { + maxDuration: 300 * 1000, + key: function key(stackClient, opts) { + var type = opts.type, + slug = opts.slug, + priority = opts.priority; + return stackClient.uri + +':' + type + ':' + slug + ':' + priority; + } +}); +exports.default = _default; /***/ }), -/* 714 */ -/***/ (function(module, exports) { +/* 729 */ +/***/ (function(module, exports, __webpack_require__) { -var styles = { - //styles - bold: ["\x1B[1m", "\x1B[22m"], - italic: ["\x1B[3m", "\x1B[23m"], - underline: ["\x1B[4m", "\x1B[24m"], - inverse: ["\x1B[7m", "\x1B[27m"], - //grayscale - white: ["\x1B[37m", "\x1B[39m"], - grey: ["\x1B[90m", "\x1B[39m"], - black: ["\x1B[30m", "\x1B[39m"], - //colors - blue: ["\x1B[34m", "\x1B[39m"], - cyan: ["\x1B[36m", "\x1B[39m"], - green: ["\x1B[32m", "\x1B[39m"], - magenta: ["\x1B[35m", "\x1B[39m"], - red: ["\x1B[31m", "\x1B[39m"], - yellow: ["\x1B[33m", "\x1B[39m"] -}; +"use strict"; -exports.levelMap = { debug: 1, info: 2, warn: 3, error: 4 }; -exports.style = function(str, style) { - return styles[style][0] + str + styles[style][1]; -}; +var _interopRequireDefault = __webpack_require__(532); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.ErrorReturned = exports.default = void 0; -/***/ }), -/* 715 */ -/***/ (function(module, exports, __webpack_require__) { +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var Transform = __webpack_require__(711); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -function FormatClean() {} +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -Transform.mixin(FormatClean); +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -FormatClean.prototype.write = function(name, level, args) { - function pad(s) { return (s.toString().length == 1? '0'+s : s); } - this.emit('item', (name ? name + ' ' : '') + (level ? level + ' ' : '') + args.join(' ')); -}; +var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(706)); -module.exports = FormatClean; +var ErrorReturned = +/*#__PURE__*/ +function (_String) { + (0, _inherits2.default)(ErrorReturned, _String); + function ErrorReturned() { + (0, _classCallCheck2.default)(this, ErrorReturned); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(ErrorReturned).apply(this, arguments)); + } -/***/ }), -/* 716 */ -/***/ (function(module, exports, __webpack_require__) { + return ErrorReturned; +}((0, _wrapNativeSuper2.default)(String)); -var Transform = __webpack_require__(711), - style = __webpack_require__(714).style; +exports.ErrorReturned = ErrorReturned; -function FormatColor() {} +/** + * Delete outdated results from cache + */ +var garbageCollect = function garbageCollect(cache, maxDuration) { + var now = Date.now(); -Transform.mixin(FormatColor); + for (var _i = 0, _Object$keys = Object.keys(cache); _i < _Object$keys.length; _i++) { + var key = _Object$keys[_i]; + var delta = now - cache[key].date; -FormatColor.prototype.write = function(name, level, args) { - var colors = { debug: 'magenta', info: 'cyan', warn: 'yellow', error: 'red' }; - function pad(s) { return (s.toString().length == 4? ' '+s : s); } - this.emit('item', (name ? name + ' ' : '') - + (level ? style('- ' + pad(level.toUpperCase()) + ' -', colors[level]) + ' ' : '') - + args.join(' ')); + if (delta > maxDuration) { + delete cache[key]; + } + } }; -module.exports = FormatColor; - +var isPromise = function isPromise(maybePromise) { + return typeof maybePromise === 'object' && typeof maybePromise.then === 'function'; +}; +/** + * Memoize with maxDuration and custom key + */ -/***/ }), -/* 717 */ -/***/ (function(module, exports, __webpack_require__) { -var Transform = __webpack_require__(711); +var memoize = function memoize(fn, options) { + var cache = {}; + return function () { + var key = options.key.apply(null, arguments); + garbageCollect(cache, options.maxDuration); + var existing = cache[key]; -function FormatNpm() {} + if (existing) { + return existing.result; + } else { + var result = fn.apply(this, arguments); + cache[key] = { + result: result, + date: Date.now() + }; + /** + * If the result is a promise and this promise + * failed or resolved with a specific error (aka ErrorReturned), + * let's remove the result from the cache since we don't want to + * memoize error + */ -Transform.mixin(FormatNpm); + if (isPromise(result)) { + result.then(function (v) { + if (v instanceof ErrorReturned) { + delete cache[key]; + } + }).catch(function (e) { + delete cache[key]; + }); + } -FormatNpm.prototype.write = function(name, level, args) { - var out = { - debug: "\x1B[34;40m" + "debug" + "\x1B[39m ", - info: "\x1B[32m" + "info" + "\x1B[39m ", - warn: "\x1B[30;41m" + "WARN" + "\x1B[0m ", - error: "\x1B[31;40m" + "ERR!" + "\x1B[0m " + return result; + } }; - this.emit( - "item", - (name ? "\x1B[37;40m" + name + "\x1B[0m " : "") + - (level && out[level] ? out[level] : "") + - args.join(" ") - ); }; -module.exports = FormatNpm; - +var _default = memoize; +exports.default = _default; /***/ }), -/* 718 */ +/* 730 */ /***/ (function(module, exports, __webpack_require__) { -var Transform = __webpack_require__(711), - style = __webpack_require__(714).style; +"use strict"; + + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; -function FormatLearnboost() {} +var logDeprecate = function logDeprecate() { + var _console; -Transform.mixin(FormatLearnboost); + if (false) {} -FormatLearnboost.prototype.write = function(name, level, args) { - var colors = { debug: 'grey', info: 'cyan', warn: 'yellow', error: 'red' }; - this.emit('item', (name ? style(name +' ', 'grey') : '') - + (level ? style(level, colors[level]) + ' ' : '') - + args.join(' ')); + (_console = console).warn.apply(_console, arguments); }; -module.exports = FormatLearnboost; - +var _default = logDeprecate; +exports.default = _default; /***/ }), -/* 719 */ +/* 731 */ /***/ (function(module, exports, __webpack_require__) { -var Transform = __webpack_require__(711), - style = __webpack_require__(714).style, - util = __webpack_require__(9); +"use strict"; -function FormatMinilog() {} -Transform.mixin(FormatMinilog); +var _interopRequireDefault = __webpack_require__(532); -FormatMinilog.prototype.write = function(name, level, args) { - var colors = { debug: 'blue', info: 'cyan', warn: 'yellow', error: 'red' }; - this.emit('item', (name ? style(name +' ', 'grey') : '') - + (level ? style(level, colors[level]) + ' ' : '') - + args.map(function(item) { - return (typeof item == 'string' ? item : util.inspect(item, null, 3, true)); - }).join(' ')); -}; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.shouldXMLHTTPRequestBeUsed = exports.fetchWithXMLHttpRequest = void 0; -module.exports = FormatMinilog; +var _regenerator = _interopRequireDefault(__webpack_require__(547)); +var _slicedToArray2 = _interopRequireDefault(__webpack_require__(540)); -/***/ }), -/* 720 */ -/***/ (function(module, exports, __webpack_require__) { +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var Transform = __webpack_require__(711), - style = __webpack_require__(714).style; +var _memoize = _interopRequireDefault(__webpack_require__(379)); -function FormatNpm() {} +var headersFromString = function headersFromString(headerString) { + return new Headers(headerString.split('\r\n').map(function (x) { + return x.split(':', 2); + }).filter(function (x) { + return x.length == 2; + })); +}; +/** + * Returns a `fetch()` like response but uses XHR. + * XMLHTTPRequest provides upload progress events unlike fetch. + * + * @private + * @param {string} fullpath - Route path + * @param {object} options - Fetch options + * @param {Function} options.onUploadProgress - Callback to receive upload progress events + */ -Transform.mixin(FormatNpm); -function noop(a){ - return a; -} +var fetchWithXMLHttpRequest = +/*#__PURE__*/ +function () { + var _ref = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(fullpath, options) { + var response; + return _regenerator.default.wrap(function _callee3$(_context3) { + while (1) { + switch (_context3.prev = _context3.next) { + case 0: + _context3.next = 2; + return new Promise(function (resolve, reject) { + var xhr = new XMLHttpRequest(); -var types = { - string: noop, - number: noop, - default: JSON.stringify.bind(JSON) -}; + if (options.onUploadProgress && xhr.upload) { + xhr.upload.addEventListener('progress', options.onUploadProgress, false); + } -function stringify(args) { - return args.map(function(arg) { - return (types[typeof arg] || types.default)(arg); - }); -} + xhr.onload = function () { + if (this.readyState == 4) { + resolve(this); + } else { + reject(this); + } + }; -FormatNpm.prototype.write = function(name, level, args) { - var colors = { debug: 'magenta', info: 'cyan', warn: 'yellow', error: 'red' }; - function pad(s) { return (s.toString().length == 4? ' '+s : s); } - function getStack() { - var orig = Error.prepareStackTrace; - Error.prepareStackTrace = function (err, stack) { - return stack; - }; - var err = new Error; - Error.captureStackTrace(err, arguments.callee); - var stack = err.stack; - Error.prepareStackTrace = orig; - return stack; - } + xhr.onerror = function (err) { + reject(err); + }; - var frame = getStack()[5], - fileName = FormatNpm.fullPath ? frame.getFileName() : frame.getFileName().replace(/^.*\/(.+)$/, '/$1'); + xhr.open(options.method, fullpath, true); + xhr.withCredentials = true; - this.emit('item', (name ? name + ' ' : '') - + (level ? style(pad(level), colors[level]) + ' ' : '') - + style(fileName + ":" + frame.getLineNumber(), 'grey') - + ' ' - + stringify(args).join(' ')); -}; + for (var _i = 0, _Object$entries = Object.entries(options.headers); _i < _Object$entries.length; _i++) { + var _Object$entries$_i = (0, _slicedToArray2.default)(_Object$entries[_i], 2), + headerName = _Object$entries$_i[0], + headerValue = _Object$entries$_i[1]; -FormatNpm.fullPath = true; + xhr.setRequestHeader(headerName, headerValue); + } -module.exports = FormatNpm; + xhr.send(options.body); + }); + case 2: + response = _context3.sent; + return _context3.abrupt("return", { + headers: headersFromString(response.getAllResponseHeaders()), + ok: response.status >= 200 && response.status < 300, + text: function () { + var _text = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee() { + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + return _context.abrupt("return", response.responseText); + case 1: + case "end": + return _context.stop(); + } + } + }, _callee); + })); -/***/ }), -/* 721 */ -/***/ (function(module, exports, __webpack_require__) { + return function text() { + return _text.apply(this, arguments); + }; + }(), + json: function () { + var _json = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2() { + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + return _context2.abrupt("return", JSON.parse(response.responseText)); + + case 1: + case "end": + return _context2.stop(); + } + } + }, _callee2); + })); -var Transform = __webpack_require__(711), - style = __webpack_require__(714).style, - util = __webpack_require__(9); + return function json() { + return _json.apply(this, arguments); + }; + }(), + status: response.status, + statusText: response.statusText + }); -function FormatTime() {} + case 4: + case "end": + return _context3.stop(); + } + } + }, _callee3); + })); -function timestamp() { - var d = new Date(); - return ('0' + d.getDate()).slice(-2) + '-' + - ('0' + (d.getMonth() + 1)).slice(-2) + '-' + - d.getFullYear() + ' ' + - ('0' + d.getHours()).slice(-2) + ':' + - ('0' + d.getMinutes()).slice(-2) + ':' + - ('0' + d.getSeconds()).slice(-2) + '.' + - ('00' + d.getMilliseconds()).slice(-3); -} + return function fetchWithXMLHttpRequest(_x, _x2) { + return _ref.apply(this, arguments); + }; +}(); -Transform.mixin(FormatTime); +exports.fetchWithXMLHttpRequest = fetchWithXMLHttpRequest; +var doesXHRSupportLoadAndProgress = (0, _memoize.default)(function () { + var xhr = new XMLHttpRequest(); + return 'onload' in xhr && 'onprogress' in xhr; +}); -FormatTime.prototype.write = function(name, level, args) { - var colors = { debug: 'blue', info: 'cyan', warn: 'yellow', error: 'red' }; - this.emit('item', style(timestamp() +' ', 'grey') - + (name ? style(name +' ', 'grey') : '') - + (level ? style(level, colors[level]) + ' ' : '') - + args.map(function(item) { - return (typeof item == 'string' ? item : util.inspect(item, null, 3, true)); - }).join(' ')); +var shouldXMLHTTPRequestBeUsed = function shouldXMLHTTPRequestBeUsed(method, path, options) { + return Boolean(options.onUploadProgress) && doesXHRSupportLoadAndProgress(); }; -module.exports = FormatTime; - +exports.shouldXMLHTTPRequestBeUsed = shouldXMLHTTPRequestBeUsed; /***/ }), -/* 722 */ -/***/ (function(module, exports, __webpack_require__) { - -var Transform = __webpack_require__(711); - -var newlines = /\n+$/, - logger = new Transform(); +/* 732 */ +/***/ (function(module, exports) { -logger.write = function(name, level, args) { - var i = args.length-1; - if (typeof console === 'undefined' || !console.log) { - return; - } - if(console.log.apply) { - return console.log.apply(console, [name, level].concat(args)); - } else if(JSON && JSON.stringify) { - // console.log.apply is undefined in IE8 and IE9 - // for IE8/9: make console.log at least a bit less awful - if(args[i] && typeof args[i] == 'string') { - args[i] = args[i].replace(newlines, ''); +function M() { this._events = {}; } +M.prototype = { + on: function(ev, cb) { + this._events || (this._events = {}); + var e = this._events; + (e[ev] || (e[ev] = [])).push(cb); + return this; + }, + removeListener: function(ev, cb) { + var e = this._events[ev] || [], i; + for(i = e.length-1; i >= 0 && e[i]; i--){ + if(e[i] === cb || e[i].cb === cb) { e.splice(i, 1); } } - try { - for(i = 0; i < args.length; i++) { - args[i] = JSON.stringify(args[i]); - } - } catch(e) {} - console.log(args.join(' ')); + }, + removeAllListeners: function(ev) { + if(!ev) { this._events = {}; } + else { this._events[ev] && (this._events[ev] = []); } + }, + listeners: function(ev) { + return (this._events ? this._events[ev] || [] : []); + }, + emit: function(ev) { + this._events || (this._events = {}); + var args = Array.prototype.slice.call(arguments, 1), i, e = this._events[ev] || []; + for(i = e.length-1; i >= 0 && e[i]; i--){ + e[i].apply(this, args); + } + return this; + }, + when: function(ev, cb) { + return this.once(ev, cb, true); + }, + once: function(ev, cb, when) { + if(!cb) return this; + function c() { + if(!when) this.removeListener(ev, c); + if(cb.apply(this, arguments) && when) this.removeListener(ev, c); + } + c.cb = cb; + this.on(ev, c); + return this; } }; - -logger.formatters = ['color', 'minilog']; -logger.color = __webpack_require__(723); -logger.minilog = __webpack_require__(725); - -module.exports = logger; +M.mixin = function(dest) { + var o = M.prototype, k; + for (k in o) { + o.hasOwnProperty(k) && (dest.prototype[k] = o[k]); + } +}; +module.exports = M; /***/ }), -/* 723 */ +/* 733 */ /***/ (function(module, exports, __webpack_require__) { -var Transform = __webpack_require__(711), - color = __webpack_require__(724); +"use strict"; -var colors = { debug: ['cyan'], info: ['purple' ], warn: [ 'yellow', true ], error: [ 'red', true ] }, - logger = new Transform(); -logger.write = function(name, level, args) { - var fn = console.log; - if(console[level] && console[level].apply) { - fn = console[level]; - fn.apply(console, [ '%c'+name+' %c'+level, color('gray'), color.apply(color, colors[level])].concat(args)); - } -}; +var _interopRequireDefault = __webpack_require__(532); -// NOP, because piping the formatted logs can only cause trouble. -logger.pipe = function() { }; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; -module.exports = logger; +var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(706)); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -/***/ }), -/* 724 */ -/***/ (function(module, exports) { +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var hex = { - black: '#000', - red: '#c23621', - green: '#25bc26', - yellow: '#bbbb00', - blue: '#492ee1', - magenta: '#d338d3', - cyan: '#33bbc8', - gray: '#808080', - purple: '#708' -}; -function color(fg, isInverse) { - if(isInverse) { - return 'color: #fff; background: '+hex[fg]+';'; - } else { - return 'color: '+hex[fg]+';'; - } -} +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -module.exports = color; +var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(550)); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -/***/ }), -/* 725 */ -/***/ (function(module, exports, __webpack_require__) { +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -var Transform = __webpack_require__(711), - color = __webpack_require__(724), - colors = { debug: ['gray'], info: ['purple' ], warn: [ 'yellow', true ], error: [ 'red', true ] }, - logger = new Transform(); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -logger.write = function(name, level, args) { - var fn = console.log; - if(level != 'debug' && console[level]) { - fn = console[level]; - } +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); - var subset = [], i = 0; - if(level != 'info') { - for(; i < args.length; i++) { - if(typeof args[i] != 'string') break; - } - fn.apply(console, [ '%c'+name +' '+ args.slice(0, i).join(' '), color.apply(color, colors[level]) ].concat(args.slice(i))); - } else { - fn.apply(console, [ '%c'+name, color.apply(color, colors[level]) ].concat(args)); - } -}; +var _get2 = _interopRequireDefault(__webpack_require__(565)); -// NOP, because piping the formatted logs can only cause trouble. -logger.pipe = function() { }; +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -module.exports = logger; +var _CozyStackClient2 = _interopRequireDefault(__webpack_require__(683)); +var _AccessToken = _interopRequireDefault(__webpack_require__(711)); -/***/ }), -/* 726 */ -/***/ (function(module, exports, __webpack_require__) { +var _logDeprecate = _interopRequireDefault(__webpack_require__(730)); -var Transform = __webpack_require__(711); +var defaultoauthOptions = { + clientID: '', + clientName: '', + clientKind: '', + clientSecret: '', + clientURI: '', + registrationAccessToken: '', + redirectURI: '', + softwareID: '', + softwareVersion: '', + logoURI: '', + policyURI: '', + notificationPlatform: '', + notificationDeviceToken: '' +}; +/** + * Specialized `CozyStackClient` for mobile, implementing stack registration + * through OAuth. + */ -function Stringify() {} +var OAuthClient = +/*#__PURE__*/ +function (_CozyStackClient) { + (0, _inherits2.default)(OAuthClient, _CozyStackClient); -Transform.mixin(Stringify); + function OAuthClient(_ref) { + var _this; -Stringify.prototype.write = function(name, level, args) { - var result = []; - if(name) result.push(name); - if(level) result.push(level); - result = result.concat(args); - for(var i = 0; i < result.length; i++) { - if(result[i] && typeof result[i] == 'object') { - // Buffers in Node.js look bad when stringified - if(result[i].constructor && result[i].constructor.isBuffer) { - result[i] = result[i].toString(); - } else { - try { - result[i] = JSON.stringify(result[i]); - } catch(stringifyError) { - // happens when an object has a circular structure - // do not throw an error, when printing, the toString() method of the object will be used - } - } - } else { - result[i] = result[i]; + var oauth = _ref.oauth, + _ref$scope = _ref.scope, + scope = _ref$scope === void 0 ? [] : _ref$scope, + onTokenRefresh = _ref.onTokenRefresh, + options = (0, _objectWithoutProperties2.default)(_ref, ["oauth", "scope", "onTokenRefresh"]); + (0, _classCallCheck2.default)(this, OAuthClient); + _this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(OAuthClient).call(this, options)); + + _this.setOAuthOptions((0, _objectSpread2.default)({}, defaultoauthOptions, oauth)); + + if (oauth.token) { + _this.setToken(oauth.token); } + + _this.scope = scope; + _this.onTokenRefresh = onTokenRefresh; + return _this; } - this.emit('item', result.join(' ') + '\n'); -}; + /** + * Checks if the client has his registration information from the server + * + * @returns {boolean} true if registered, false otherwise + * @private + */ -module.exports = Stringify; + (0, _createClass2.default)(OAuthClient, [{ + key: "isRegistered", + value: function isRegistered() { + return this.oauthOptions.clientID !== ''; + } + /** + * Converts a camel-cased data set to snake case, suitable for sending to the OAuth server + * + * @param {object} data Initial data + * @returns {object} Formatted data + * @private + */ -/***/ }), -/* 727 */ -/***/ (function(module, exports) { + }, { + key: "snakeCaseOAuthData", + value: function snakeCaseOAuthData(data) { + var mappedFields = { + softwareID: 'software_id', + softwareVersion: 'software_version', + clientID: 'client_id', + clientName: 'client_name', + clientKind: 'client_kind', + clientURI: 'client_uri', + logoURI: 'logo_uri', + policyURI: 'policy_uri', + notificationPlatform: 'notification_platform', + notificationDeviceToken: 'notification_device_token', + redirectURI: 'redirect_uris' + }; + var result = {}; + Object.keys(data).forEach(function (fieldName) { + var key = mappedFields[fieldName] || fieldName; + var value = data[fieldName]; + result[key] = value; + }); // special case: turn redirect_uris into an array + + if (result['redirect_uris'] && result['redirect_uris'] instanceof Array === false) result['redirect_uris'] = [result['redirect_uris']]; + return result; + } + /** + * Converts a snake-cased data set to camel case, suitable for internal use + * + * @param {object} data Initial data + * @returns {object} Formatted data + * @private + */ -function RedisBackend(options) { - this.client = options.client; - this.key = options.key; -} + }, { + key: "camelCaseOAuthData", + value: function camelCaseOAuthData(data) { + var mappedFields = { + client_id: 'clientID', + client_name: 'clientName', + client_secret: 'clientSecret', + registration_access_token: 'registrationAccessToken', + software_id: 'softwareID', + redirect_uris: 'redirectURI' + }; + var result = {}; + Object.keys(data).forEach(function (fieldName) { + var key = mappedFields[fieldName] || fieldName; + var value = data[fieldName]; + result[key] = value; + }); + return result; + } + /** Performs the HTTP call to register the client to the server */ -RedisBackend.prototype.write = function(str) { - this.client.rpush(this.key, str); -}; + }, { + key: "doRegistration", + value: function doRegistration() { + return this.fetchJSON('POST', '/auth/register', this.snakeCaseOAuthData({ + redirectURI: this.oauthOptions.redirectURI, + clientName: this.oauthOptions.clientName, + softwareID: this.oauthOptions.softwareID, + clientKind: this.oauthOptions.clientKind, + clientURI: this.oauthOptions.clientURI, + logoURI: this.oauthOptions.logoURI, + policyURI: this.oauthOptions.policyURI, + softwareVersion: this.oauthOptions.softwareVersion, + notificationPlatform: this.oauthOptions.notificationPlatform, + notificationDeviceToken: this.oauthOptions.notificationDeviceToken + })); + } + /** + * Registers the currenly configured client with the OAuth server and + * sets internal information from the server response + * + * @throws {Error} When the client is already registered + * @returns {Promise} A promise that resolves with a complete list of client information, including client ID and client secret. + */ -RedisBackend.prototype.end = function() {}; + }, { + key: "register", + value: function () { + var _register = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee() { + var mandatoryFields, fields, missingMandatoryFields, data; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + if (!this.isRegistered()) { + _context.next = 2; + break; + } -RedisBackend.prototype.clear = function(cb) { - this.client.del(this.key, cb); -}; + throw new Error('Client already registered'); -module.exports = RedisBackend; + case 2: + mandatoryFields = ['redirectURI']; + fields = Object.keys(this.oauthOptions); + missingMandatoryFields = mandatoryFields.filter(function (fieldName) { + return fields[fieldName]; + }); + if (!(missingMandatoryFields.length > 0)) { + _context.next = 7; + break; + } -/***/ }), -/* 728 */ -/***/ (function(module, exports, __webpack_require__) { + throw new Error("Can't register client : missing ".concat(missingMandatoryFields, " fields")); -"use strict"; + case 7: + _context.next = 9; + return this.doRegistration(); + case 9: + data = _context.sent; + this.setOAuthOptions((0, _objectSpread2.default)({}, this.oauthOptions, { + client_id: data.client_id, + client_name: data.client_name, + client_secret: data.client_secret, + registration_access_token: data.registration_access_token, + software_id: data.software_id + })); + return _context.abrupt("return", this.oauthOptions); -var _interopRequireDefault = __webpack_require__(530); + case 12: + case "end": + return _context.stop(); + } + } + }, _callee, this); + })); -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.QueryIDGenerator = exports.getQueryFromSlice = exports.receiveQueryError = exports.receiveQueryResult = exports.loadQuery = exports.initQuery = exports.default = exports.makeSorterFromDefinition = exports.mergeSelectorAndPartialIndex = exports.convert$gtNullSelectors = exports.isReceivingData = exports.isQueryAction = void 0; + return function register() { + return _register.apply(this, arguments); + }; + }() + /** + * Unregisters the currenly configured client with the OAuth server. + * + * @throws {NotRegisteredException} When the client doesn't have it's registration information + * @returns {Promise} + */ -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); + }, { + key: "unregister", + value: function () { + var _unregister = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2() { + var clientID; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + if (this.isRegistered()) { + _context2.next = 2; + break; + } -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + throw new NotRegisteredException(); -var _slicedToArray2 = _interopRequireDefault(__webpack_require__(538)); + case 2: + clientID = this.oauthOptions.clientID; + this.oauthOptions.clientID = ''; + return _context2.abrupt("return", this.fetchJSON('DELETE', "/auth/register/".concat(clientID), null, { + headers: { + Authorization: this.registrationAccessTokenToAuthHeader() + } + })); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + case 5: + case "end": + return _context2.stop(); + } + } + }, _callee2, this); + })); -var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(540)); + return function unregister() { + return _unregister.apply(this, arguments); + }; + }() + /** + * Fetches the complete set of client information from the server after it has been registered. + * + * @throws {NotRegisteredException} When the client doesn't have it's registration information + * @returns {Promise} + */ -var _mapValues = _interopRequireDefault(__webpack_require__(551)); + }, { + key: "fetchInformation", + value: function () { + var _fetchInformation = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3() { + return _regenerator.default.wrap(function _callee3$(_context3) { + while (1) { + switch (_context3.prev = _context3.next) { + case 0: + if (this.isRegistered()) { + _context3.next = 2; + break; + } -var _groupBy = _interopRequireDefault(__webpack_require__(729)); + throw new NotRegisteredException(); -var _difference = _interopRequireDefault(__webpack_require__(730)); + case 2: + return _context3.abrupt("return", this.fetchJSON('GET', "/auth/register/".concat(this.oauthOptions.clientID), null, { + headers: { + Authorization: this.registrationAccessTokenToAuthHeader() + } + })); -var _intersection = _interopRequireDefault(__webpack_require__(732)); + case 3: + case "end": + return _context3.stop(); + } + } + }, _callee3, this); + })); -var _concat = _interopRequireDefault(__webpack_require__(735)); + return function fetchInformation() { + return _fetchInformation.apply(this, arguments); + }; + }() + /** + * Overwrites the client own information. This method will update both the local information and the remote information on the OAuth server. + * + * @throws {NotRegisteredException} When the client doesn't have it's registration information + * @param {object} information Set of information to update. Note that some fields such as `clientID` can't be updated. + * @param {boolean} resetSecret = false Optionnal, whether to reset the client secret or not + * @returns {Promise} Resolves to a complete, updated list of client information + */ -var _isPlainObject = _interopRequireDefault(__webpack_require__(637)); + }, { + key: "updateInformation", + value: function () { + var _updateInformation = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4(information) { + var resetSecret, + mandatoryFields, + data, + result, + _args4 = arguments; + return _regenerator.default.wrap(function _callee4$(_context4) { + while (1) { + switch (_context4.prev = _context4.next) { + case 0: + resetSecret = _args4.length > 1 && _args4[1] !== undefined ? _args4[1] : false; -var _uniq = _interopRequireDefault(__webpack_require__(630)); + if (this.isRegistered()) { + _context4.next = 3; + break; + } -var _orderBy = _interopRequireDefault(__webpack_require__(736)); + throw new NotRegisteredException(); -var _isArray = _interopRequireDefault(__webpack_require__(75)); + case 3: + mandatoryFields = { + clientID: this.oauthOptions.clientID, + clientName: this.oauthOptions.clientName, + redirectURI: this.oauthOptions.redirectURI, + softwareID: this.oauthOptions.softwareID + }; + data = this.snakeCaseOAuthData((0, _objectSpread2.default)({}, mandatoryFields, information)); + if (resetSecret) data['client_secret'] = this.oauthOptions.clientSecret; + _context4.next = 8; + return this.fetchJSON('PUT', "/auth/register/".concat(this.oauthOptions.clientID), data, { + headers: { + Authorization: this.registrationAccessTokenToAuthHeader() + } + }); -var _isString = _interopRequireDefault(__webpack_require__(74)); + case 8: + result = _context4.sent; + this.setOAuthOptions((0, _objectSpread2.default)({}, data, result)); + return _context4.abrupt("return", this.oauthOptions); -var _get = _interopRequireDefault(__webpack_require__(370)); + case 11: + case "end": + return _context4.stop(); + } + } + }, _callee4, this); + })); -var _sift = _interopRequireDefault(__webpack_require__(742)); + return function updateInformation(_x) { + return _updateInformation.apply(this, arguments); + }; + }() + /** + * Generates a random state code to be used during the OAuth process + * + * @returns {string} + */ -var _cozyFlags = _interopRequireDefault(__webpack_require__(621)); + }, { + key: "generateStateCode", + value: function generateStateCode() { + var STATE_SIZE = 16; + var hasCrypto = typeof window !== 'undefined' && typeof window.crypto !== 'undefined' && typeof window.crypto.getRandomValues === 'function'; + var buffer; -var _documents = __webpack_require__(703); + if (hasCrypto) { + buffer = new Uint8Array(STATE_SIZE); + window.crypto.getRandomValues(buffer); + } else { + buffer = new Array(STATE_SIZE); -var _mutations = __webpack_require__(743); + for (var i = 0; i < buffer.length; i++) { + buffer[i] = Math.floor(Math.random() * 255); + } + } -var _helpers = __webpack_require__(744); + return btoa(String.fromCharCode.apply(null, buffer)).replace(/=+$/, '').replace(/\//g, '_').replace(/\+/g, '-'); + } + /** + * Generates the URL that the user should be sent to in order to accept the app's permissions. + * + * @throws {NotRegisteredException} When the client doesn't have it's registration information + * @param {string} stateCode A random code to be included in the URl for security. Can be generated with `client.generateStateCode()` + * @param {Array} scopes = [] An array of permission scopes for the token. + * @returns {string} The URL + */ -var _dsl = __webpack_require__(625); + }, { + key: "getAuthCodeURL", + value: function getAuthCodeURL(stateCode) { + var scopes = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : this.scope; + if (!this.isRegistered()) throw new NotRegisteredException(); + var query = { + client_id: this.oauthOptions.clientID, + redirect_uri: this.oauthOptions.redirectURI, + state: stateCode, + response_type: 'code', + scope: scopes.join(' ') + }; + return "".concat(this.uri, "/auth/authorize?").concat(this.dataToQueryString(query)); + } + }, { + key: "dataToQueryString", + value: function dataToQueryString(data) { + return Object.keys(data).map(function (param) { + return "".concat(param, "=").concat(encodeURIComponent(data[param])); + }).join('&'); + } + /** + * Retrieves the access code contained in the URL to which the user is redirected after accepting the app's permissions (the `redirectURI`). + * + * @throws {Error} The URL should contain the same state code as the one generated with `client.getAuthCodeURL()`. If not, it will throw an error + * @param {string} pageURL The redirected page URL, containing the state code and the access code + * @param {string} stateCode The state code that was contained in the original URL the user was sent to (see `client.getAuthCodeURL()`) + * @returns {string} The access code + */ -var _types = __webpack_require__(628); + }, { + key: "getAccessCodeFromURL", + value: function getAccessCodeFromURL(pageURL, stateCode) { + if (!stateCode) throw new Error('Missing state code'); + var params = new URL(pageURL).searchParams; + var urlStateCode = params.get('state'); + var urlAccessCode = params.get('access_code'); + if (stateCode !== urlStateCode) throw new Error('Given state does not match url query state'); + return urlAccessCode; + } + /** + * Exchanges an access code for an access token. This function does **not** update the client's token. + * + * @throws {NotRegisteredException} When the client doesn't have it's registration information + * @param {string} accessCode - The access code contained in the redirection URL — see `client.getAccessCodeFromURL()` + * @param {object} oauthOptions — To use when OAuthClient is not yet registered (during login process) + * @param {string} uri — To use when OAuthClient is not yet registered (during login process) + * @returns {Promise} A promise that resolves with an AccessToken object. + */ -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + }, { + key: "fetchAccessToken", + value: function () { + var _fetchAccessToken = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee5(accessCode, oauthOptions, uri) { + var data, result; + return _regenerator.default.wrap(function _callee5$(_context5) { + while (1) { + switch (_context5.prev = _context5.next) { + case 0: + if (!(!this.isRegistered() && !oauthOptions)) { + _context5.next = 2; + break; + } -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + throw new NotRegisteredException(); -var INIT_QUERY = 'INIT_QUERY'; -var LOAD_QUERY = 'LOAD_QUERY'; -var RECEIVE_QUERY_RESULT = 'RECEIVE_QUERY_RESULT'; -var RECEIVE_QUERY_ERROR = 'RECEIVE_QUERY_ERROR'; // Read if the devtools are open to store the execution time -// This is done at runtime to not read the value everytime -// we receive a result. So you have to refresh your page -// in order to get the stats + case 2: + oauthOptions = oauthOptions || this.oauthOptions; + data = { + grant_type: 'authorization_code', + code: accessCode, + client_id: oauthOptions.clientID, + client_secret: oauthOptions.clientSecret + }; + _context5.next = 6; + return this.fetchJSON('POST', (uri || '') + '/auth/access_token', this.dataToQueryString(data), { + headers: { + 'Content-Type': 'application/x-www-form-urlencoded' + } + }); -var executionStatsEnabled = (0, _cozyFlags.default)('debug'); + case 6: + result = _context5.sent; + return _context5.abrupt("return", new _AccessToken.default(result)); -var isQueryAction = function isQueryAction(action) { - return [INIT_QUERY, LOAD_QUERY, RECEIVE_QUERY_RESULT, RECEIVE_QUERY_ERROR].indexOf(action.type) !== -1; -}; + case 8: + case "end": + return _context5.stop(); + } + } + }, _callee5, this); + })); -exports.isQueryAction = isQueryAction; + return function fetchAccessToken(_x2, _x3, _x4) { + return _fetchAccessToken.apply(this, arguments); + }; + }() + /** + * Retrieves a new access token by refreshing the currently used token. + * + * @throws {NotRegisteredException} When the client doesn't have it's registration information + * @throws {Error} The client should already have an access token to use this function + * @returns {Promise} A promise that resolves with a new AccessToken object + */ -var isReceivingData = function isReceivingData(action) { - return action.type === RECEIVE_QUERY_RESULT; -}; -/** @type {QueryState} */ + }, { + key: "refreshToken", + value: function () { + var _refreshToken = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee6() { + var data, result, newToken; + return _regenerator.default.wrap(function _callee6$(_context6) { + while (1) { + switch (_context6.prev = _context6.next) { + case 0: + if (this.isRegistered()) { + _context6.next = 2; + break; + } + throw new NotRegisteredException(); -exports.isReceivingData = isReceivingData; -var queryInitialState = { - id: null, - definition: null, - fetchStatus: 'pending', - lastFetch: null, - lastUpdate: null, - lastErrorUpdate: null, - lastError: null, - hasMore: false, - count: 0, - data: [], - bookmark: null -}; + case 2: + if (this.token) { + _context6.next = 4; + break; + } -var updateQueryDataFromResponse = function updateQueryDataFromResponse(queryState, response, documents) { - var updatedIds = (0, _uniq.default)([].concat((0, _toConsumableArray2.default)(queryState.data), (0, _toConsumableArray2.default)(response.data.map(_helpers.properId)))); + throw new Error('No token to refresh'); - if (queryState.definition.sort) { - var sorter = makeSorterFromDefinition(queryState.definition); - var doctype = queryState.definition.doctype; - var allDocs = documents[doctype]; - var docs = allDocs ? updatedIds.map(function (_id) { - return allDocs[_id]; - }).filter(Boolean) : []; - var sortedDocs = sorter(docs); - updatedIds = sortedDocs.map(_helpers.properId); - } + case 4: + data = { + grant_type: 'refresh_token', + refresh_token: this.token.refreshToken, + client_id: this.oauthOptions.clientID, + client_secret: this.oauthOptions.clientSecret + }; + _context6.next = 7; + return (0, _get2.default)((0, _getPrototypeOf2.default)(OAuthClient.prototype), "fetchJSON", this).call(this, 'POST', '/auth/access_token', this.dataToQueryString(data), { + headers: { + 'Content-Type': 'application/x-www-form-urlencoded' + } + }); - return updatedIds; -}; -/** - * Reducer for a query slice - * - * @param {QueryState} state - Current state - * @param {any} action - Redux action - * @param {DocumentsStateSlice} documents - Reference to the next documents slice - * @returns {QueryState} - Next state - */ + case 7: + result = _context6.sent; + newToken = new _AccessToken.default((0, _objectSpread2.default)({ + refresh_token: this.token.refreshToken + }, result)); + if (this.onTokenRefresh && typeof this.onTokenRefresh === 'function') { + this.onTokenRefresh(newToken); + } -var query = function query() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : queryInitialState; - var action = arguments.length > 1 ? arguments[1] : undefined; - var documents = arguments.length > 2 ? arguments[2] : undefined; + return _context6.abrupt("return", newToken); - switch (action.type) { - case INIT_QUERY: - if (state.lastUpdate && state.id === action.queryId && state.definition === action.queryDefinition) { - return state; - } + case 11: + case "end": + return _context6.stop(); + } + } + }, _callee6, this); + })); - return _objectSpread(_objectSpread({}, state), {}, { - id: action.queryId, - definition: action.queryDefinition, - options: action.options, - // When the query is new, we set "fetchStatus" to "loading" - // directly since we know it will be loaded right away. - // This way, the loadQuery action will have no effect, and - // we save an additional render. - fetchStatus: state.lastUpdate ? state.fetchStatus : 'pending' + return function refreshToken() { + return _refreshToken.apply(this, arguments); + }; + }() + }, { + key: "exchangeOAuthSecret", + value: function exchangeOAuthSecret(uri, secret) { + return this.fetchJSON('POST', uri + '/auth/secret_exchange', { + secret: secret }); + } + /** + * Updates the client's stored token + * + * @param {string} token = null The new token to use — can be a string, a json object or an AccessToken instance. + */ - case LOAD_QUERY: - if (state.fetchStatus === 'loading') { - return state; + }, { + key: "setToken", + value: function setToken(token) { + if (token) { + this.token = token instanceof _AccessToken.default ? token : new _AccessToken.default(token); + } else { + this.token = null; } + } + }, { + key: "setCredentials", + value: function setCredentials(token) { + (0, _logDeprecate.default)('setCredentials is deprecated, please replace by setToken'); + return this.setToken(token); + } + /** + * Updates the OAuth informations + * + * @param {object} options Map of OAuth options + */ - return _objectSpread(_objectSpread({}, state), {}, { - fetchStatus: 'loading' - }); - - case RECEIVE_QUERY_RESULT: - { - var response = action.response; - - if (!response.data) { - return state; - } - /** @type {Partial<QueryState>} */ + }, { + key: "setOAuthOptions", + value: function setOAuthOptions(options) { + this.oauthOptions = this.camelCaseOAuthData(options); + } + }, { + key: "resetClientId", + value: function resetClientId() { + this.oauthOptions.clientID = ''; + } + /** + * Reset the current OAuth client + */ + }, { + key: "resetClient", + value: function resetClient() { + this.resetClientId(); + this.setUri(null); + this.setToken(null); + } + /** + * Turns the client's registration access token into a header suitable for HTTP requests. Used in some queries to manipulate the client on the server side. + * + * @returns {string} + * @private + */ - var common = _objectSpread({ - fetchStatus: 'loaded', - lastFetch: Date.now(), - lastUpdate: Date.now() - }, executionStatsEnabled && { - execution_stats: response.execution_stats - }); + }, { + key: "registrationAccessTokenToAuthHeader", + value: function registrationAccessTokenToAuthHeader() { + if (!this.oauthOptions.registrationAccessToken) { + throw new Error('No registration access token'); + } - if (!Array.isArray(response.data)) { - return _objectSpread(_objectSpread(_objectSpread({}, state), common), {}, { - hasMore: false, - count: 1, - data: [(0, _helpers.properId)(response.data)] - }); - } + return 'Bearer ' + this.oauthOptions.registrationAccessToken; + } + }]); + return OAuthClient; +}(_CozyStackClient2.default); - return _objectSpread(_objectSpread(_objectSpread({}, state), common), {}, { - bookmark: response.bookmark || null, - hasMore: response.next !== undefined ? response.next : state.hasMore, - count: response.meta && response.meta.count ? response.meta.count : response.data.length, - data: updateQueryDataFromResponse(state, response, documents) - }); - } +var NotRegisteredException = +/*#__PURE__*/ +function (_Error) { + (0, _inherits2.default)(NotRegisteredException, _Error); - case RECEIVE_QUERY_ERROR: - return _objectSpread(_objectSpread({}, state), {}, { - id: action.queryId, - fetchStatus: 'failed', - lastError: action.error, - lastErrorUpdate: Date.now() - }); + function NotRegisteredException() { + var _this2; - default: - return state; + var message = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'Client not registered or missing OAuth information'; + (0, _classCallCheck2.default)(this, NotRegisteredException); + _this2 = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(NotRegisteredException).call(this, message)); + _this2.message = message; + _this2.name = 'NotRegisteredException'; + return _this2; } -}; -/** - * Normalize sift selector - * - * @returns {object} - */ + return NotRegisteredException; +}((0, _wrapNativeSuper2.default)(Error)); -var convert$gtNullSelectors = function convert$gtNullSelectors(selector) { - var result = {}; +var _default = OAuthClient; +exports.default = _default; - for (var _i = 0, _Object$entries = Object.entries(selector); _i < _Object$entries.length; _i++) { - var _Object$entries$_i = (0, _slicedToArray2.default)(_Object$entries[_i], 2), - key = _Object$entries$_i[0], - value = _Object$entries$_i[1]; +/***/ }), +/* 734 */ +/***/ (function(module, exports, __webpack_require__) { - var convertedValue = (0, _isPlainObject.default)(value) ? convert$gtNullSelectors(value) : value; - var convertedKey = key === '$gt' && convertedValue === null ? '$gtnull' : key; - result[convertedKey] = convertedValue; - } +"use strict"; - return result; -}; -/** - * Merges query selectors with query partial indexes - * - * @param {object} queryDefinition - A query definition - * @returns {object} A query definition selector - */ +var _interopRequireDefault = __webpack_require__(532); -exports.convert$gtNullSelectors = convert$gtNullSelectors; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.authenticateWithCordova = void 0; -var mergeSelectorAndPartialIndex = function mergeSelectorAndPartialIndex(queryDefinition) { - return _objectSpread(_objectSpread({}, queryDefinition.selector), (0, _get.default)(queryDefinition, 'partialFilter')); -}; -/** - * @param {QueryDefinition} queryDefinition - A query definition - * @returns {function(CozyClientDocument): boolean} - */ +var _regenerator = _interopRequireDefault(__webpack_require__(547)); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -exports.mergeSelectorAndPartialIndex = mergeSelectorAndPartialIndex; +var _const = __webpack_require__(554); -var getSelectorFilterFn = function getSelectorFilterFn(queryDefinition) { - if (queryDefinition.selector) { - var selectors = mergeSelectorAndPartialIndex(queryDefinition); // sift does not work like couchdb when using { $gt: null } as a selector, so we use a custom operator +var _cozyDeviceHelper = __webpack_require__(735); - _sift.default.use({ - $gtnull: function $gtnull(_selectorValue, actualValue) { - return !!actualValue; +/* global prompt */ +var authenticateWithSafari = function authenticateWithSafari(url) { + return new Promise(function (resolve, reject) { + window.SafariViewController.show({ + url: url, + transition: 'curl' // (this only works in iOS 9.1/9.2 and lower) unless animated is false you can choose from: curl, flip, fade, slide (default) + // enterReaderModeIfAvailable: readerMode, // default false + // tintColor: "#00ffff", // default is ios blue + // barColor: "#0000ff", // on iOS 10+ you can change the background color as well + // controlTintColor: "#ffffff" // on iOS 10+ you can override the default tintColor + + }, // this success handler will be invoked for the lifecycle events 'opened', 'loaded' and 'closed' + function (result) { + if (result.event === 'closed') { + reject(new Error(_const.REGISTRATION_ABORT)); } + }, function (error) { + console.log('KO: ' + error); + reject(new Error(_const.REGISTRATION_ABORT)); }); + var handle = window.handleOpenURL; - return (0, _sift.default)(convert$gtNullSelectors(selectors)); - } else if (queryDefinition.id) { - /** @type {object} */ - var siftQuery = { - _id: queryDefinition.id - }; - return (0, _sift.default)(siftQuery); - } else if (queryDefinition.ids) { - /** @type {object} */ - var _siftQuery = { - _id: { - $in: queryDefinition.ids + window.handleOpenURL = function (url) { + window.SafariViewController.hide(); + resolve(url); + + if (handle) { + window.handleOpenURL = handle; } }; - return (0, _sift.default)(_siftQuery); - } else { - return null; - } -}; -/** - * - * Returns a predicate function that checks if a document should be - * included in the result of the query. - * - * @param {QueryState} query - Definition of the query - * @returns {function(CozyClientDocument): boolean} Predicate function - */ - - -var getQueryDocumentsChecker = function getQueryDocumentsChecker(query) { - var qdoctype = query.definition.doctype; - var selectorFilterFn = getSelectorFilterFn(query.definition); - return function (datum) { - var ddoctype = datum._type; - if (ddoctype !== qdoctype) return false; - if (datum._deleted) return false; - if (!selectorFilterFn) return true; - return !!selectorFilterFn(datum); - }; -}; - -var makeCaseInsensitiveStringSorter = function makeCaseInsensitiveStringSorter(attrName) { - return function (item) { - var attrValue = (0, _get.default)(item, attrName); - return (0, _isString.default)(attrValue) ? attrValue.toLowerCase() : attrValue; - }; + }); }; -/** - * Creates a sort function from a definition. - * - * Used to sort query results inside the store when creating a file or - * receiving updates. - * - * @param {QueryDefinition} definition - A query definition - * @returns {function(Array<CozyClientDocument>): Array<CozyClientDocument>} - * - * @private - */ - -var makeSorterFromDefinition = function makeSorterFromDefinition(definition) { - var sort = definition.sort; +var authenticateWithInAppBrowser = function authenticateWithInAppBrowser(url) { + return new Promise(function (resolve, reject) { + var target = '_blank'; + var options = 'clearcache=yes,zoom=no'; + var inAppBrowser = window.cordova.InAppBrowser.open(url, target, options); - if (!sort) { - return function (docs) { - return docs; - }; - } else if (!(0, _isArray.default)(definition.sort)) { - console.warn('Correct update of queries with a sort that is not an array is not supported. Use an array as argument of QueryDefinition::sort'); - return function (docs) { - return docs; - }; - } else { - var attributeOrders = sort.map(function (x) { - return Object.entries(x)[0]; - }); - var attrs = attributeOrders.map(function (x) { - return x[0]; - }).map(makeCaseInsensitiveStringSorter); - var orders = attributeOrders.map(function (x) { - return x[1]; - }); - return function (docs) { - return (0, _orderBy.default)(docs, attrs, orders); + var removeListener = function removeListener() { + inAppBrowser.removeEventListener('loadstart', onLoadStart); + inAppBrowser.removeEventListener('exit', onExit); }; - } -}; -/** - * Updates query state when new data comes in - * - * @param {QueryState} query - Current query state - * @param {Array<CozyClientDocument>} newData - New documents (in most case from the server) - * @param {DocumentsStateSlice} documents - A reference to the documents slice - * @returns {QueryState} - Updated query state - */ - -exports.makeSorterFromDefinition = makeSorterFromDefinition; - -var updateData = function updateData(query, newData, documents) { - var belongsToQuery = getQueryDocumentsChecker(query); - var res = (0, _mapValues.default)((0, _groupBy.default)(newData, belongsToQuery), function (docs) { - return docs.map(_helpers.properId); - }); - var _res$true = res.true, - matchedIds = _res$true === void 0 ? [] : _res$true, - _res$false = res.false, - unmatchedIds = _res$false === void 0 ? [] : _res$false; - var originalIds = query.data; - var autoUpdate = query.options && query.options.autoUpdate; - var shouldRemove = !autoUpdate || autoUpdate.remove !== false; - var shouldAdd = !autoUpdate || autoUpdate.add !== false; - var shouldUpdate = !autoUpdate || autoUpdate.update !== false; - var toRemove = shouldRemove ? (0, _intersection.default)(originalIds, unmatchedIds) : []; - var toAdd = shouldAdd ? (0, _difference.default)(matchedIds, originalIds) : []; - var toUpdate = shouldUpdate ? (0, _intersection.default)(originalIds, matchedIds) : []; - var changed = toRemove.length || toAdd.length || toUpdate.length; // concat doesn't check duplicates (contrarily to union), which is ok as - // toAdd does not contain any id present in originalIds, by construction. - // It is also faster than union. + var onLoadStart = function onLoadStart(_ref) { + var url = _ref.url; + var accessCode = /\?access_code=(.+)$/.test(url); + var state = /\?state=(.+)$/.test(url); - var updatedData = (0, _difference.default)((0, _concat.default)(originalIds, toAdd), toRemove); + if (accessCode || state) { + resolve(url); + removeListener(); + inAppBrowser.close(); + } + }; - if (query.definition.sort && documents) { - var sorter = makeSorterFromDefinition(query.definition); - var allDocs = documents[query.definition.doctype]; - var docs = updatedData.map(function (_id) { - return allDocs[_id]; - }); - var sortedDocs = sorter(docs); - updatedData = sortedDocs.map(_helpers.properId); - } + var onExit = function onExit() { + reject(new Error(_const.REGISTRATION_ABORT)); + removeListener(); + inAppBrowser.close(); + }; - return _objectSpread(_objectSpread({}, query), {}, { - data: updatedData, - count: updatedData.length, - lastUpdate: changed ? Date.now() : query.lastUpdate + inAppBrowser.addEventListener('loadstart', onLoadStart); + inAppBrowser.addEventListener('exit', onExit); }); }; -/** - * Creates a function that returns an updated query state - * from an action - * - * @param {object} action - A redux action - * @param {DocumentsStateSlice} documents - Reference to documents slice - * @returns {function(QueryState): QueryState} - Updater query state - */ +var authenticateWithCordova = +/*#__PURE__*/ +function () { + var _ref2 = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(url) { + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + _context.t0 = (0, _cozyDeviceHelper.isIOSApp)(); -var autoQueryUpdater = function autoQueryUpdater(action, documents) { - return function (query) { - var data = (0, _get.default)(action, 'response.data') || (0, _get.default)(action, 'definition.document'); - if (!data) return query; + if (!_context.t0) { + _context.next = 5; + break; + } - if (!Array.isArray(data)) { - data = [data]; - } + _context.next = 4; + return (0, _cozyDeviceHelper.hasSafariPlugin)(); - if (!data.length) { - return query; - } + case 4: + _context.t0 = _context.sent; - if (query.definition.doctype !== data[0]._type) { - return query; - } + case 5: + if (!_context.t0) { + _context.next = 9; + break; + } - return updateData(query, data, documents); - }; -}; -/** - * Creates a function that returns an updated query state - * from an action - * - * @param {object} action - A redux action - * @param {DocumentsStateSlice} documents - Reference to documents slice - * @returns {function(QueryState): QueryState} - Updater query state - */ + return _context.abrupt("return", authenticateWithSafari(url)); + case 9: + if (!(0, _cozyDeviceHelper.hasInAppBrowserPlugin)()) { + _context.next = 13; + break; + } -var manualQueryUpdater = function manualQueryUpdater(action, documents) { - return function (query) { - var updateQueries = action.updateQueries; - var response = action.response; - var updater = updateQueries[query.id]; + return _context.abrupt("return", authenticateWithInAppBrowser(url)); - if (!updater) { - return query; - } + case 13: + /** + * for dev purpose: + * In oauth workflow, the server displays an authorization page + * User must accept to give permission then the server gives an url + * with query parameters used by cozy-client-js to initialize itself. + * + * This hack let developers open the authorization page in a new tab + * then get the "access_code" url and paste it in the prompt to let the + * application initialize and redirect to other pages. + */ + console.log(url); + return _context.abrupt("return", new Promise(function (resolve) { + setTimeout(function () { + var token = prompt('Paste the url here:'); + resolve(token); + }, 5000); + })); - var doctype = query.definition.doctype; - var oldData = query.data; - var oldDocs = mapIdsToDocuments(documents, doctype, oldData); - var newData = updater(oldDocs, response); - var newDataIds = newData.map(_helpers.properId); - return _objectSpread(_objectSpread({}, query), {}, { - data: newDataIds, - count: newDataIds.length, - lastUpdate: Date.now() - }); + case 15: + case "end": + return _context.stop(); + } + } + }, _callee); + })); + + return function authenticateWithCordova(_x) { + return _ref2.apply(this, arguments); }; -}; -/** - * @param {QueriesStateSlice} state - Redux slice containing all the query states indexed by name - * @param {object} action - Income redux action - * @param {DocumentsStateSlice} documents - Reference to documents slice - * @param {boolean} haveDocumentsChanged - Has the document slice changed with current action - * @returns {QueriesStateSlice} - */ +}(); +exports.authenticateWithCordova = authenticateWithCordova; -var queries = function queries() { - var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var action = arguments.length > 1 ? arguments[1] : undefined; - var documents = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - var haveDocumentsChanged = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true; +/***/ }), +/* 735 */ +/***/ (function(module, exports, __webpack_require__) { - if (action.type == INIT_QUERY) { - var newQueryState = query(state[action.queryId], action, documents); // Do not create new object unnecessarily +"use strict"; - if (newQueryState === state[action.queryId]) { - return state; - } - return _objectSpread(_objectSpread({}, state), {}, (0, _defineProperty2.default)({}, action.queryId, newQueryState)); +Object.defineProperty(exports, "__esModule", { + value: true +}); +Object.defineProperty(exports, "getPlatform", { + enumerable: true, + get: function get() { + return _platform.getPlatform; } - - if (isQueryAction(action)) { - var updater = autoQueryUpdater(action, documents); - return (0, _mapValues.default)(state, function (queryState) { - if (queryState.id == action.queryId) { - return query(queryState, action, documents); - } else if (haveDocumentsChanged) { - return updater(queryState); - } else { - return queryState; - } - }); +}); +Object.defineProperty(exports, "isIOSApp", { + enumerable: true, + get: function get() { + return _platform.isIOSApp; } - - if ((0, _mutations.isReceivingMutationResult)(action)) { - var _updater = action.updateQueries ? manualQueryUpdater(action, documents) : autoQueryUpdater(action, documents); - - return (0, _mapValues.default)(state, _updater); +}); +Object.defineProperty(exports, "isAndroidApp", { + enumerable: true, + get: function get() { + return _platform.isAndroidApp; } - - return state; -}; - -var _default = queries; -/** - * Create the query states in the store. Queries are indexed - * in the store by queryId - * - * @param {string} queryId Name/id of the query - * @param {QueryDefinition} queryDefinition - Definition of the created query - * @param {QueryOptions} [options] - Options for the created query - */ - -exports.default = _default; - -var initQuery = function initQuery(queryId, queryDefinition) { - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null; - - if (!queryDefinition.doctype) { - throw new Error('Cannot init query with no doctype'); +}); +Object.defineProperty(exports, "isWebApp", { + enumerable: true, + get: function get() { + return _platform.isWebApp; } +}); +Object.defineProperty(exports, "isMobileApp", { + enumerable: true, + get: function get() { + return _platform.isMobileApp; + } +}); +Object.defineProperty(exports, "isAndroid", { + enumerable: true, + get: function get() { + return _platform.isAndroid; + } +}); +Object.defineProperty(exports, "isIOS", { + enumerable: true, + get: function get() { + return _platform.isIOS; + } +}); +Object.defineProperty(exports, "isMobile", { + enumerable: true, + get: function get() { + return _platform.isMobile; + } +}); +Object.defineProperty(exports, "getDeviceName", { + enumerable: true, + get: function get() { + return _device.getDeviceName; + } +}); +Object.defineProperty(exports, "checkApp", { + enumerable: true, + get: function get() { + return _apps.checkApp; + } +}); +Object.defineProperty(exports, "startApp", { + enumerable: true, + get: function get() { + return _apps.startApp; + } +}); +Object.defineProperty(exports, "hasDevicePlugin", { + enumerable: true, + get: function get() { + return _plugins.hasDevicePlugin; + } +}); +Object.defineProperty(exports, "hasInAppBrowserPlugin", { + enumerable: true, + get: function get() { + return _plugins.hasInAppBrowserPlugin; + } +}); +Object.defineProperty(exports, "hasSafariPlugin", { + enumerable: true, + get: function get() { + return _plugins.hasSafariPlugin; + } +}); +Object.defineProperty(exports, "hasNetworkInformationPlugin", { + enumerable: true, + get: function get() { + return _plugins.hasNetworkInformationPlugin; + } +}); +Object.defineProperty(exports, "isCordova", { + enumerable: true, + get: function get() { + return _cordova.isCordova; + } +}); +Object.defineProperty(exports, "nativeLinkOpen", { + enumerable: true, + get: function get() { + return _link.nativeLinkOpen; + } +}); +Object.defineProperty(exports, "openDeeplinkOrRedirect", { + enumerable: true, + get: function get() { + return _deeplink.openDeeplinkOrRedirect; + } +}); - return { - type: INIT_QUERY, - queryId: queryId, - queryDefinition: queryDefinition, - options: options - }; -}; - -exports.initQuery = initQuery; - -var loadQuery = function loadQuery(queryId) { - return { - type: LOAD_QUERY, - queryId: queryId - }; -}; - -exports.loadQuery = loadQuery; - -var receiveQueryResult = function receiveQueryResult(queryId, response) { - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - return _objectSpread({ - type: RECEIVE_QUERY_RESULT, - queryId: queryId, - response: response - }, options); -}; - -exports.receiveQueryResult = receiveQueryResult; +var _platform = __webpack_require__(736); -var receiveQueryError = function receiveQueryError(queryId, error) { - return { - type: RECEIVE_QUERY_ERROR, - queryId: queryId, - error: error - }; -}; // selectors +var _device = __webpack_require__(738); +var _apps = __webpack_require__(748); -exports.receiveQueryError = receiveQueryError; +var _plugins = __webpack_require__(747); -var mapIdsToDocuments = function mapIdsToDocuments(documents, doctype, ids) { - return ids.map(function (id) { - return (0, _documents.getDocumentFromSlice)(documents, doctype, id); - }); -}; +var _cordova = __webpack_require__(737); -var getQueryFromSlice = function getQueryFromSlice(state, queryId, documents) { - if (!state || !state[queryId]) { - return _objectSpread(_objectSpread({}, queryInitialState), {}, { - id: queryId, - data: null - }); - } +var _link = __webpack_require__(749); - var query = state[queryId]; - return documents ? _objectSpread(_objectSpread({}, query), {}, { - data: mapIdsToDocuments(documents, query.definition.doctype, query.data) - }) : query; -}; +var _deeplink = __webpack_require__(750); -exports.getQueryFromSlice = getQueryFromSlice; +/***/ }), +/* 736 */ +/***/ (function(module, exports, __webpack_require__) { -var QueryIDGenerator = /*#__PURE__*/function () { - function QueryIDGenerator() { - (0, _classCallCheck2.default)(this, QueryIDGenerator); - this.idCounter = 1; - } - /** - * Generates a random id for unamed queries - */ +"use strict"; - (0, _createClass2.default)(QueryIDGenerator, [{ - key: "generateRandomId", - value: function generateRandomId() { - var id = this.idCounter; - this.idCounter++; - return id.toString(); - } - /** - * Generates an id for queries - * If the query is a getById only query, - * we can generate a name for it. - * - * If not, let's generate a random id - * - * @param {QueryDefinition} queryDefinition The query definition - * @returns {string} - */ +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.isMobile = exports.isIOS = exports.isAndroid = exports.isMobileApp = exports.isWebApp = exports.isAndroidApp = exports.isIOSApp = exports.getPlatform = void 0; - }, { - key: "generateId", - value: function generateId(queryDefinition) { - if (!(0, _dsl.isAGetByIdQuery)(queryDefinition)) { - return this.generateRandomId(); - } else { - var id = queryDefinition.id, - doctype = queryDefinition.doctype; - return "".concat(doctype, "/").concat(id); - } - } - }]); - return QueryIDGenerator; -}(); +var _cordova = __webpack_require__(737); -exports.QueryIDGenerator = QueryIDGenerator; -QueryIDGenerator.UNNAMED = 'unnamed'; +var WEB_PLATFORM = 'web'; +var IOS_PLATFORM = 'ios'; +var ANDROID_PLATFORM = 'android'; -/***/ }), -/* 729 */ -/***/ (function(module, exports, __webpack_require__) { +var getPlatform = function getPlatform() { + return (0, _cordova.isCordova)() ? window.cordova.platformId : WEB_PLATFORM; +}; -var baseAssignValue = __webpack_require__(552), - createAggregator = __webpack_require__(705); +exports.getPlatform = getPlatform; -/** Used for built-in method references. */ -var objectProto = Object.prototype; +var isPlatform = function isPlatform(platform) { + return getPlatform() === platform; +}; -/** Used to check objects for own properties. */ -var hasOwnProperty = objectProto.hasOwnProperty; +var isIOSApp = function isIOSApp() { + return isPlatform(IOS_PLATFORM); +}; -/** - * Creates an object composed of keys generated from the results of running - * each element of `collection` thru `iteratee`. The order of grouped values - * is determined by the order they occur in `collection`. The corresponding - * value of each key is an array of elements responsible for generating the - * key. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee to transform keys. - * @returns {Object} Returns the composed aggregate object. - * @example - * - * _.groupBy([6.1, 4.2, 6.3], Math.floor); - * // => { '4': [4.2], '6': [6.1, 6.3] } - * - * // The `_.property` iteratee shorthand. - * _.groupBy(['one', 'two', 'three'], 'length'); - * // => { '3': ['one', 'two'], '5': ['three'] } - */ -var groupBy = createAggregator(function(result, value, key) { - if (hasOwnProperty.call(result, key)) { - result[key].push(value); - } else { - baseAssignValue(result, key, [value]); - } -}); +exports.isIOSApp = isIOSApp; -module.exports = groupBy; +var isAndroidApp = function isAndroidApp() { + return isPlatform(ANDROID_PLATFORM); +}; +exports.isAndroidApp = isAndroidApp; -/***/ }), -/* 730 */ -/***/ (function(module, exports, __webpack_require__) { +var isWebApp = function isWebApp() { + return isPlatform(WEB_PLATFORM); +}; -var baseDifference = __webpack_require__(731), - baseFlatten = __webpack_require__(559), - baseRest = __webpack_require__(562), - isArrayLikeObject = __webpack_require__(570); +exports.isWebApp = isWebApp; -/** - * Creates an array of `array` values not included in the other given arrays - * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. The order and references of result values are - * determined by the first array. - * - * **Note:** Unlike `_.pullAll`, this method returns a new array. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {...Array} [values] The values to exclude. - * @returns {Array} Returns the new array of filtered values. - * @see _.without, _.xor - * @example - * - * _.difference([2, 1], [2, 3]); - * // => [1] - */ -var difference = baseRest(function(array, values) { - return isArrayLikeObject(array) - ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true)) - : []; -}); +var isMobileApp = function isMobileApp() { + return (0, _cordova.isCordova)(); +}; // return if is on an Android Device (native or browser) -module.exports = difference; +exports.isMobileApp = isMobileApp; -/***/ }), -/* 731 */ -/***/ (function(module, exports, __webpack_require__) { +var isAndroid = function isAndroid() { + return window.navigator.userAgent && window.navigator.userAgent.indexOf('Android') >= 0; +}; // return if is on an iOS Device (native or browser) -var SetCache = __webpack_require__(425), - arrayIncludes = __webpack_require__(476), - arrayIncludesWith = __webpack_require__(481), - arrayMap = __webpack_require__(410), - baseUnary = __webpack_require__(452), - cacheHas = __webpack_require__(429); -/** Used as the size to enable large array optimizations. */ -var LARGE_ARRAY_SIZE = 200; +exports.isAndroid = isAndroid; -/** - * The base implementation of methods like `_.difference` without support - * for excluding multiple arrays or iteratee shorthands. - * - * @private - * @param {Array} array The array to inspect. - * @param {Array} values The values to exclude. - * @param {Function} [iteratee] The iteratee invoked per element. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of filtered values. - */ -function baseDifference(array, values, iteratee, comparator) { - var index = -1, - includes = arrayIncludes, - isCommon = true, - length = array.length, - result = [], - valuesLength = values.length; +var isIOS = function isIOS() { + return window.navigator.userAgent && /iPad|iPhone|iPod/.test(window.navigator.userAgent); +}; // isMobile checks if the user is on a smartphone : native app or browser - if (!length) { - return result; - } - if (iteratee) { - values = arrayMap(values, baseUnary(iteratee)); - } - if (comparator) { - includes = arrayIncludesWith; - isCommon = false; - } - else if (values.length >= LARGE_ARRAY_SIZE) { - includes = cacheHas; - isCommon = false; - values = new SetCache(values); - } - outer: - while (++index < length) { - var value = array[index], - computed = iteratee == null ? value : iteratee(value); - value = (comparator || value !== 0) ? value : 0; - if (isCommon && computed === computed) { - var valuesIndex = valuesLength; - while (valuesIndex--) { - if (values[valuesIndex] === computed) { - continue outer; - } - } - result.push(value); - } - else if (!includes(values, computed, comparator)) { - result.push(value); - } - } - return result; -} +exports.isIOS = isIOS; -module.exports = baseDifference; +var isMobile = function isMobile() { + return isAndroid() || isIOS(); +}; +exports.isMobile = isMobile; /***/ }), -/* 732 */ +/* 737 */ /***/ (function(module, exports, __webpack_require__) { -var arrayMap = __webpack_require__(410), - baseIntersection = __webpack_require__(733), - baseRest = __webpack_require__(562), - castArrayLikeObject = __webpack_require__(734); +"use strict"; -/** - * Creates an array of unique values that are included in all given arrays - * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. The order and references of result values are - * determined by the first array. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @returns {Array} Returns the new array of intersecting values. - * @example - * - * _.intersection([2, 1], [2, 3]); - * // => [2] - */ -var intersection = baseRest(function(arrays) { - var mapped = arrayMap(arrays, castArrayLikeObject); - return (mapped.length && mapped[0] === arrays[0]) - ? baseIntersection(mapped) - : []; + +Object.defineProperty(exports, "__esModule", { + value: true }); +exports.isCordova = void 0; -module.exports = intersection; +// cordova +var isCordova = function isCordova() { + return typeof window !== 'undefined' && window.cordova !== undefined; +}; +exports.isCordova = isCordova; /***/ }), -/* 733 */ +/* 738 */ /***/ (function(module, exports, __webpack_require__) { -var SetCache = __webpack_require__(425), - arrayIncludes = __webpack_require__(476), - arrayIncludesWith = __webpack_require__(481), - arrayMap = __webpack_require__(410), - baseUnary = __webpack_require__(452), - cacheHas = __webpack_require__(429); +"use strict"; -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeMin = Math.min; -/** - * The base implementation of methods like `_.intersection`, without support - * for iteratee shorthands, that accepts an array of arrays to inspect. - * - * @private - * @param {Array} arrays The arrays to inspect. - * @param {Function} [iteratee] The iteratee invoked per element. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of shared values. - */ -function baseIntersection(arrays, iteratee, comparator) { - var includes = comparator ? arrayIncludesWith : arrayIncludes, - length = arrays[0].length, - othLength = arrays.length, - othIndex = othLength, - caches = Array(othLength), - maxLength = Infinity, - result = []; +var _interopRequireDefault = __webpack_require__(532); - while (othIndex--) { - var array = arrays[othIndex]; - if (othIndex && iteratee) { - array = arrayMap(array, baseUnary(iteratee)); - } - maxLength = nativeMin(array.length, maxLength); - caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120)) - ? new SetCache(othIndex && array) - : undefined; - } - array = arrays[0]; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.getDeviceName = void 0; - var index = -1, - seen = caches[0]; +var _capitalize = _interopRequireDefault(__webpack_require__(739)); - outer: - while (++index < length && result.length < maxLength) { - var value = array[index], - computed = iteratee ? iteratee(value) : value; +var _cordova = __webpack_require__(737); - value = (comparator || value !== 0) ? value : 0; - if (!(seen - ? cacheHas(seen, computed) - : includes(result, computed, comparator) - )) { - othIndex = othLength; - while (--othIndex) { - var cache = caches[othIndex]; - if (!(cache - ? cacheHas(cache, computed) - : includes(arrays[othIndex], computed, comparator)) - ) { - continue outer; - } - } - if (seen) { - seen.push(computed); - } - result.push(value); - } - } - return result; -} +var _plugins = __webpack_require__(747); -module.exports = baseIntersection; +var _platform = __webpack_require__(736); +var DEFAULT_DEVICE = 'Device'; // device -/***/ }), -/* 734 */ -/***/ (function(module, exports, __webpack_require__) { +var getAppleModel = function getAppleModel(identifier) { + var devices = ['iPhone', 'iPad', 'Watch', 'AppleTV']; -var isArrayLikeObject = __webpack_require__(570); + for (var _i = 0, _devices = devices; _i < _devices.length; _i++) { + var device = _devices[_i]; -/** - * Casts `value` to an empty array if it's not an array like object. - * - * @private - * @param {*} value The value to inspect. - * @returns {Array|Object} Returns the cast array-like object. - */ -function castArrayLikeObject(value) { - return isArrayLikeObject(value) ? value : []; -} + if (identifier.match(new RegExp(device))) { + return device; + } + } -module.exports = castArrayLikeObject; + return DEFAULT_DEVICE; +}; + +var getDeviceName = function getDeviceName() { + if (!(0, _plugins.hasDevicePlugin)()) { + if ((0, _cordova.isCordova)()) { + console.warn('You should install `cordova-plugin-device`.'); // eslint-disable-line no-console + } + + return DEFAULT_DEVICE; + } + + var _window$device = window.device, + manufacturer = _window$device.manufacturer, + originalModel = _window$device.model; + var model = (0, _platform.isIOSApp)() ? getAppleModel(originalModel) : originalModel; + return "".concat((0, _capitalize.default)(manufacturer), " ").concat(model); +}; +exports.getDeviceName = getDeviceName; /***/ }), -/* 735 */ +/* 739 */ /***/ (function(module, exports, __webpack_require__) { -var arrayPush = __webpack_require__(437), - baseFlatten = __webpack_require__(559), - copyArray = __webpack_require__(589), - isArray = __webpack_require__(75); +var toString = __webpack_require__(410), + upperFirst = __webpack_require__(740); /** - * Creates a new array concatenating `array` with any additional arrays - * and/or values. + * Converts the first character of `string` to upper case and the remaining + * to lower case. * * @static * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to concatenate. - * @param {...*} [values] The values to concatenate. - * @returns {Array} Returns the new concatenated array. + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to capitalize. + * @returns {string} Returns the capitalized string. * @example * - * var array = [1]; - * var other = _.concat(array, 2, [3], [[4]]); - * - * console.log(other); - * // => [1, 2, 3, [4]] - * - * console.log(array); - * // => [1] + * _.capitalize('FRED'); + * // => 'Fred' */ -function concat() { - var length = arguments.length; - if (!length) { - return []; - } - var args = Array(length - 1), - array = arguments[0], - index = length; - - while (index--) { - args[index - 1] = arguments[index]; - } - return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1)); +function capitalize(string) { + return upperFirst(toString(string).toLowerCase()); } -module.exports = concat; +module.exports = capitalize; /***/ }), -/* 736 */ +/* 740 */ /***/ (function(module, exports, __webpack_require__) { -var baseOrderBy = __webpack_require__(737), - isArray = __webpack_require__(75); +var createCaseFirst = __webpack_require__(741); /** - * This method is like `_.sortBy` except that it allows specifying the sort - * orders of the iteratees to sort by. If `orders` is unspecified, all values - * are sorted in ascending order. Otherwise, specify an order of "desc" for - * descending or "asc" for ascending sort order of corresponding values. + * Converts the first character of `string` to upper case. * * @static * @memberOf _ * @since 4.0.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]] - * The iteratees to sort by. - * @param {string[]} [orders] The sort orders of `iteratees`. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. - * @returns {Array} Returns the new sorted array. + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the converted string. * @example * - * var users = [ - * { 'user': 'fred', 'age': 48 }, - * { 'user': 'barney', 'age': 34 }, - * { 'user': 'fred', 'age': 40 }, - * { 'user': 'barney', 'age': 36 } - * ]; + * _.upperFirst('fred'); + * // => 'Fred' * - * // Sort by `user` in ascending order and by `age` in descending order. - * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); - * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] + * _.upperFirst('FRED'); + * // => 'FRED' */ -function orderBy(collection, iteratees, orders, guard) { - if (collection == null) { - return []; - } - if (!isArray(iteratees)) { - iteratees = iteratees == null ? [] : [iteratees]; - } - orders = guard ? undefined : orders; - if (!isArray(orders)) { - orders = orders == null ? [] : [orders]; - } - return baseOrderBy(collection, iteratees, orders); -} +var upperFirst = createCaseFirst('toUpperCase'); -module.exports = orderBy; +module.exports = upperFirst; /***/ }), -/* 737 */ +/* 741 */ /***/ (function(module, exports, __webpack_require__) { -var arrayMap = __webpack_require__(410), - baseGet = __webpack_require__(371), - baseIteratee = __webpack_require__(413), - baseMap = __webpack_require__(738), - baseSortBy = __webpack_require__(739), - baseUnary = __webpack_require__(452), - compareMultiple = __webpack_require__(740), - identity = __webpack_require__(471), - isArray = __webpack_require__(75); +var castSlice = __webpack_require__(742), + hasUnicode = __webpack_require__(743), + stringToArray = __webpack_require__(744), + toString = __webpack_require__(410); /** - * The base implementation of `_.orderBy` without param guards. + * Creates a function like `_.lowerFirst`. * * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. - * @param {string[]} orders The sort orders of `iteratees`. - * @returns {Array} Returns the new sorted array. + * @param {string} methodName The name of the `String` case method to use. + * @returns {Function} Returns the new case function. */ -function baseOrderBy(collection, iteratees, orders) { - if (iteratees.length) { - iteratees = arrayMap(iteratees, function(iteratee) { - if (isArray(iteratee)) { - return function(value) { - return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee); - } - } - return iteratee; - }); - } else { - iteratees = [identity]; - } +function createCaseFirst(methodName) { + return function(string) { + string = toString(string); - var index = -1; - iteratees = arrayMap(iteratees, baseUnary(baseIteratee)); + var strSymbols = hasUnicode(string) + ? stringToArray(string) + : undefined; - var result = baseMap(collection, function(value, key, collection) { - var criteria = arrayMap(iteratees, function(iteratee) { - return iteratee(value); - }); - return { 'criteria': criteria, 'index': ++index, 'value': value }; - }); + var chr = strSymbols + ? strSymbols[0] + : string.charAt(0); - return baseSortBy(result, function(object, other) { - return compareMultiple(object, other, orders); - }); + var trailing = strSymbols + ? castSlice(strSymbols, 1).join('') + : string.slice(1); + + return chr[methodName]() + trailing; + }; } -module.exports = baseOrderBy; +module.exports = createCaseFirst; /***/ }), -/* 738 */ +/* 742 */ /***/ (function(module, exports, __webpack_require__) { -var baseEach = __webpack_require__(573), - isArrayLike = __webpack_require__(458); +var baseSlice = __webpack_require__(602); /** - * The base implementation of `_.map` without support for iteratee shorthands. + * Casts `array` to a slice if it's needed. * * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array} Returns the new mapped array. + * @param {Array} array The array to inspect. + * @param {number} start The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the cast slice. */ -function baseMap(collection, iteratee) { - var index = -1, - result = isArrayLike(collection) ? Array(collection.length) : []; - - baseEach(collection, function(value, key, collection) { - result[++index] = iteratee(value, key, collection); - }); - return result; +function castSlice(array, start, end) { + var length = array.length; + end = end === undefined ? length : end; + return (!start && end >= length) ? array : baseSlice(array, start, end); } -module.exports = baseMap; +module.exports = castSlice; /***/ }), -/* 739 */ +/* 743 */ /***/ (function(module, exports) { +/** Used to compose unicode character classes. */ +var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsVarRange = '\\ufe0e\\ufe0f'; + +/** Used to compose unicode capture groups. */ +var rsZWJ = '\\u200d'; + +/** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ +var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); + /** - * The base implementation of `_.sortBy` which uses `comparer` to define the - * sort order of `array` and replaces criteria objects with their corresponding - * values. + * Checks if `string` contains Unicode symbols. * * @private - * @param {Array} array The array to sort. - * @param {Function} comparer The function to define sort order. - * @returns {Array} Returns `array`. + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a symbol is found, else `false`. */ -function baseSortBy(array, comparer) { - var length = array.length; - - array.sort(comparer); - while (length--) { - array[length] = array[length].value; - } - return array; +function hasUnicode(string) { + return reHasUnicode.test(string); } -module.exports = baseSortBy; +module.exports = hasUnicode; /***/ }), -/* 740 */ +/* 744 */ /***/ (function(module, exports, __webpack_require__) { -var compareAscending = __webpack_require__(741); +var asciiToArray = __webpack_require__(745), + hasUnicode = __webpack_require__(743), + unicodeToArray = __webpack_require__(746); /** - * Used by `_.orderBy` to compare multiple properties of a value to another - * and stable sort them. - * - * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, - * specify an order of "desc" for descending or "asc" for ascending sort order - * of corresponding values. + * Converts `string` to an array. * * @private - * @param {Object} object The object to compare. - * @param {Object} other The other object to compare. - * @param {boolean[]|string[]} orders The order to sort by for each property. - * @returns {number} Returns the sort order indicator for `object`. + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. */ -function compareMultiple(object, other, orders) { - var index = -1, - objCriteria = object.criteria, - othCriteria = other.criteria, - length = objCriteria.length, - ordersLength = orders.length; - - while (++index < length) { - var result = compareAscending(objCriteria[index], othCriteria[index]); - if (result) { - if (index >= ordersLength) { - return result; - } - var order = orders[index]; - return result * (order == 'desc' ? -1 : 1); - } - } - // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications - // that causes it, under certain circumstances, to provide the same value for - // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 - // for more details. - // - // This also ensures a stable sort in V8 and other engines. - // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. - return object.index - other.index; +function stringToArray(string) { + return hasUnicode(string) + ? unicodeToArray(string) + : asciiToArray(string); } -module.exports = compareMultiple; +module.exports = stringToArray; /***/ }), -/* 741 */ -/***/ (function(module, exports, __webpack_require__) { - -var isSymbol = __webpack_require__(374); +/* 745 */ +/***/ (function(module, exports) { /** - * Compares values to sort them in ascending order. + * Converts an ASCII `string` to an array. * * @private - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {number} Returns the sort order indicator for `value`. + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. */ -function compareAscending(value, other) { - if (value !== other) { - var valIsDefined = value !== undefined, - valIsNull = value === null, - valIsReflexive = value === value, - valIsSymbol = isSymbol(value); - - var othIsDefined = other !== undefined, - othIsNull = other === null, - othIsReflexive = other === other, - othIsSymbol = isSymbol(other); - - if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || - (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || - (valIsNull && othIsDefined && othIsReflexive) || - (!valIsDefined && othIsReflexive) || - !valIsReflexive) { - return 1; - } - if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || - (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || - (othIsNull && valIsDefined && valIsReflexive) || - (!othIsDefined && valIsReflexive) || - !othIsReflexive) { - return -1; - } - } - return 0; +function asciiToArray(string) { + return string.split(''); } -module.exports = compareAscending; +module.exports = asciiToArray; /***/ }), -/* 742 */ -/***/ (function(module, exports, __webpack_require__) { - -/* - * Sift 3.x - * - * Copryright 2015, Craig Condon - * Licensed under MIT - * - * Filter JavaScript objects with mongodb queries - */ - -(function() { - - 'use strict'; - - /** - */ - - function isFunction(value) { - return typeof value === 'function'; - } - - /** - */ - - function isArray(value) { - return Object.prototype.toString.call(value) === '[object Array]'; - } - - /** - */ - - function comparable(value) { - if (value instanceof Date) { - return value.getTime(); - } else if (isArray(value)) { - return value.map(comparable); - } else if (value && typeof value.toJSON === 'function') { - return value.toJSON(); - } else { - return value; - } - } - - function get(obj, key) { - return isFunction(obj.get) ? obj.get(key) : obj[key]; - } - - /** - */ - - function or(validator) { - return function(a, b) { - if (!isArray(b) || !b.length) { - return validator(a, b); - } - for (var i = 0, n = b.length; i < n; i++) { - if (validator(a, get(b,i))) return true; - } - return false; - } - } - - /** - */ - - function and(validator) { - return function(a, b) { - if (!isArray(b) || !b.length) { - return validator(a, b); - } - for (var i = 0, n = b.length; i < n; i++) { - if (!validator(a, get(b, i))) return false; - } - return true; - }; - } - - function validate(validator, b, k, o) { - return validator.v(validator.a, b, k, o); - } - - var OPERATORS = { - - /** - */ - - $eq: or(function(a, b) { - return a(b); - }), - - /** - */ - - $ne: and(function(a, b) { - return !a(b); - }), - - /** - */ - - $gt: or(function(a, b) { - return sift.compare(comparable(b), a) > 0; - }), - - /** - */ - - $gte: or(function(a, b) { - return sift.compare(comparable(b), a) >= 0; - }), - - /** - */ - - $lt: or(function(a, b) { - return sift.compare(comparable(b), a) < 0; - }), - - /** - */ - - $lte: or(function(a, b) { - return sift.compare(comparable(b), a) <= 0; - }), - - /** - */ - - $mod: or(function(a, b) { - return b % a[0] == a[1]; - }), - - /** - */ - - $in: function(a, b) { - - if (b instanceof Array) { - for (var i = b.length; i--;) { - if (~a.indexOf(comparable(get(b, i)))) { - return true; - } - } - } else { - var comparableB = comparable(b); - if (comparableB === b && typeof b === 'object') { - for (var i = a.length; i--;) { - if (String(a[i]) === String(b) && String(b) !== '[object Object]') { - return true; - } - } - } - - /* - Handles documents that are undefined, whilst also - having a 'null' element in the parameters to $in. - */ - if (typeof comparableB == 'undefined') { - for (var i = a.length; i--;) { - if (a[i] == null) { - return true; - } - } - } - - /* - Handles the case of {'field': {$in: [/regexp1/, /regexp2/, ...]}} - */ - for (var i = a.length; i--;) { - var validator = createRootValidator(get(a, i), undefined); - var result = validate(validator, b, i, a); - if ((result) && (String(result) !== '[object Object]') && (String(b) !== '[object Object]')) { - return true; - } - } - - return !!~a.indexOf(comparableB); - } - - return false; - }, - - /** - */ - - $nin: function(a, b, k, o) { - return !OPERATORS.$in(a, b, k, o); - }, - - /** - */ - - $not: function(a, b, k, o) { - return !validate(a, b, k, o); - }, - - /** - */ - - $type: function(a, b) { - return b != void 0 ? b instanceof a || b.constructor == a : false; - }, - - /** - */ +/* 746 */ +/***/ (function(module, exports) { - $all: function(a, b, k, o) { - return OPERATORS.$and(a, b, k, o); - }, +/** Used to compose unicode character classes. */ +var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsVarRange = '\\ufe0e\\ufe0f'; - /** - */ +/** Used to compose unicode capture groups. */ +var rsAstral = '[' + rsAstralRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsZWJ = '\\u200d'; - $size: function(a, b) { - return b ? a === b.length : false; - }, +/** Used to compose unicode regexes. */ +var reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; - /** - */ +/** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ +var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); - $or: function(a, b, k, o) { - for (var i = 0, n = a.length; i < n; i++) if (validate(get(a, i), b, k, o)) return true; - return false; - }, +/** + * Converts a Unicode `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ +function unicodeToArray(string) { + return string.match(reUnicode) || []; +} - /** - */ +module.exports = unicodeToArray; - $nor: function(a, b, k, o) { - return !OPERATORS.$or(a, b, k, o); - }, - /** - */ +/***/ }), +/* 747 */ +/***/ (function(module, exports, __webpack_require__) { - $and: function(a, b, k, o) { - for (var i = 0, n = a.length; i < n; i++) { - if (!validate(get(a, i), b, k, o)) { - return false; - } - } - return true; - }, +"use strict"; - /** - */ - $regex: or(function(a, b) { - return typeof b === 'string' && a.test(b); - }), +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.hasNetworkInformationPlugin = exports.hasSafariPlugin = exports.hasInAppBrowserPlugin = exports.hasDevicePlugin = void 0; - /** - */ +var _cordova = __webpack_require__(737); - $where: function(a, b, k, o) { - return a.call(b, b, k, o); - }, +var hasDevicePlugin = function hasDevicePlugin() { + return (0, _cordova.isCordova)() && window.device !== undefined; +}; - /** - */ +exports.hasDevicePlugin = hasDevicePlugin; - $elemMatch: function(a, b, k, o) { - if (isArray(b)) { - return !!~search(b, a); - } - return validate(a, b, k, o); - }, +var hasInAppBrowserPlugin = function hasInAppBrowserPlugin() { + return (0, _cordova.isCordova)() && window.cordova.InAppBrowser !== undefined; +}; - /** - */ +exports.hasInAppBrowserPlugin = hasInAppBrowserPlugin; - $exists: function(a, b, k, o) { - return o.hasOwnProperty(k) === a; +var hasSafariPlugin = function hasSafariPlugin() { + return new Promise(function (resolve) { + if (!(0, _cordova.isCordova)() || window.SafariViewController === undefined) { + resolve(false); + return; } - }; - - /** - */ - - var prepare = { - - /** - */ - - $eq: function(a) { - - if (a instanceof RegExp) { - return function(b) { - return typeof b === 'string' && a.test(b); - }; - } else if (a instanceof Function) { - return a; - } else if (isArray(a) && !a.length) { - // Special case of a == [] - return function(b) { - return (isArray(b) && !b.length); - }; - } else if (a === null){ - return function(b){ - //will match both null and undefined - return b == null; - } - } - - return function(b) { - return sift.compare(comparable(b), a) === 0; - }; - }, - - /** - */ - - $ne: function(a) { - return prepare.$eq(a); - }, - - /** - */ - - $and: function(a) { - return a.map(parse); - }, - - /** - */ - - $all: function(a) { - return prepare.$and(a); - }, - - /** - */ - - $or: function(a) { - return a.map(parse); - }, - - /** - */ - $nor: function(a) { - return a.map(parse); - }, - - /** - */ - - $not: function(a) { - return parse(a); - }, - - /** - */ - - $regex: function(a, query) { - return new RegExp(a, query.$options); - }, - - /** - */ - - $where: function(a) { - return typeof a === 'string' ? new Function('obj', 'return ' + a) : a; - }, - - /** - */ + window.SafariViewController.isAvailable(function (available) { + return resolve(available); + }); + }); +}; +/** + * Check if the Cordova's cordova-plugin-network-information plugin is installed + * @see https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-network-information/ + * @returns {boolean} + */ - $elemMatch: function(a) { - return parse(a); - }, - /** - */ +exports.hasSafariPlugin = hasSafariPlugin; - $exists: function(a) { - return !!a; - } - }; +var hasNetworkInformationPlugin = function hasNetworkInformationPlugin() { + return (0, _cordova.isCordova)() && window.navigator.connection !== undefined; +}; - /** - */ +exports.hasNetworkInformationPlugin = hasNetworkInformationPlugin; - function search(array, validator) { +/***/ }), +/* 748 */ +/***/ (function(module, exports, __webpack_require__) { - for (var i = 0; i < array.length; i++) { - var result = get(array, i); - if (validate(validator, get(array, i))) { - return i; - } - } +"use strict"; - return -1; - } - /** - */ +var _interopRequireDefault = __webpack_require__(532); - function createValidator(a, validate) { - return { a: a, v: validate }; - } +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = exports.startApp = exports.checkApp = void 0; - /** - */ +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - function nestedValidator(a, b) { - var values = []; - findValues(b, a.k, 0, b, values); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); - if (values.length === 1) { - var first = values[0]; - return validate(a.nv, first[0], first[1], first[2]); - } +var _platform = __webpack_require__(736); - // If the query contains $ne, need to test all elements ANDed together - var inclusive = a && a.q && typeof a.q.$ne !== 'undefined'; - var allValid = inclusive; - for (var i = 0; i < values.length; i++) { - var result = values[i]; - var isValid = validate(a.nv, result[0], result[1], result[2]); - if (inclusive) { - allValid &= isValid; - } else { - allValid |= isValid; - } - } - return allValid; - } +var cordovaPluginIsInstalled = function cordovaPluginIsInstalled() { + return window.startApp; +}; +/** + * Normalize startApp params for Android and iOS + */ - /** - */ - function findValues(current, keypath, index, object, values) { +var getParams = function getParams(_ref) { + var appId = _ref.appId, + uri = _ref.uri; - if (index === keypath.length || current == void 0) { + if ((0, _platform.isAndroidApp)()) { + return { + package: appId + }; + } else { + return uri; + } +}; - values.push([current, keypath[index - 1], object]); - return; - } +var exported = {}; +/** + * Start an application if it is installed on the phone + * @returns Promise - False if the application was not able to be started + */ - var k = get(keypath, index); +var startApp = exported.startApp = /*#__PURE__*/function () { + var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(appInfo) { + var startAppPlugin, isAppInstalled, params; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + startAppPlugin = window.startApp; + _context.next = 3; + return exported.checkApp(appInfo); - // ensure that if current is an array, that the current key - // is NOT an array index. This sort of thing needs to work: - // sift({'foo.0':42}, [{foo: [42]}]); - if (isArray(current) && isNaN(Number(k))) { - for (var i = 0, n = current.length; i < n; i++) { - findValues(get(current, i), keypath, index, current, values); - } - } else { - findValues(get(current, k), keypath, index + 1, current, values); - } - } + case 3: + isAppInstalled = _context.sent; - /** - */ + if (!isAppInstalled) { + _context.next = 9; + break; + } - function createNestedValidator(keypath, a, q) { - return { a: { k: keypath, nv: a, q: q }, v: nestedValidator }; - } + params = getParams(appInfo); + return _context.abrupt("return", new Promise(function (resolve, reject) { + if (!cordovaPluginIsInstalled()) { + reject(new Error("Cordova plugin 'com.lampa.startapp' is not installed. This plugin is needed to start a native app. Required by cozy-bar")); + return; + } - /** - * flatten the query - */ + startAppPlugin.set(params).start(resolve, reject); + })); - function isVanillaObject(value) { - return value && value.constructor === Object; - } + case 9: + return _context.abrupt("return", false); - function parse(query) { - query = comparable(query); + case 10: + case "end": + return _context.stop(); + } + } + }, _callee); + })); - if (!query || !isVanillaObject(query)) { // cross browser support - query = { $eq: query }; - } + return function (_x) { + return _ref2.apply(this, arguments); + }; +}(); +/** + * Check that an application is installed on the phone + * @returns Promise - Promise containing information on the application + * + * @example + * > checkApp({ appId: 'io.cozy.drive.mobile', uri: 'cozydrive://' }) + * Promise.resolve({ + * versionName: "0.9.2", + * packageName: "io.cozy.drive.mobile", + * versionCode: 902, + * applicationInfo: "ApplicationInfo{70aa0ef io.cozy.drive.mobile}" + * }) + */ - var validators = []; - for (var key in query) { - var a = query[key]; +exports.startApp = startApp; - if (key === '$options') { - continue; - } +var checkApp = exported.checkApp = /*#__PURE__*/function () { + var _ref3 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(appInfo) { + var startAppPlugin, params; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + startAppPlugin = window.startApp; + params = getParams(appInfo); + return _context2.abrupt("return", new Promise(function (resolve, reject) { + if (!cordovaPluginIsInstalled()) { + reject(new Error("Cordova plugin 'com.lampa.startapp' is not installed.")); + return; + } - if (OPERATORS[key]) { - if (prepare[key]) a = prepare[key](a, query); - validators.push(createValidator(comparable(a), OPERATORS[key])); - } else { + startAppPlugin.set(params).check(function (infos) { + resolve(infos === 'OK' ? true : infos); + }, function (error) { + if (error === false || error.indexOf('NameNotFoundException') === 0) { + // Plugin returns an error 'NameNotFoundException' on Android and + // false on iOS when an application is not found. + // We prefer to always return false + resolve(false); + } else { + reject(error); + } + }); + })); - if (key.charCodeAt(0) === 36) { - throw new Error('Unknown operation ' + key); + case 3: + case "end": + return _context2.stop(); } - validators.push(createNestedValidator(key.split('.'), parse(a), a)); } - } + }, _callee2); + })); - return validators.length === 1 ? validators[0] : createValidator(validators, OPERATORS.$and); - } + return function (_x2) { + return _ref3.apply(this, arguments); + }; +}(); - /** - */ +exports.checkApp = checkApp; +var _default = exported; +exports.default = _default; - function createRootValidator(query, getter) { - var validator = parse(query); - if (getter) { - validator = { - a: validator, - v: function(a, b, k, o) { - return validate(a, getter(b), k, o); - } - }; - } - return validator; - } +/***/ }), +/* 749 */ +/***/ (function(module, exports, __webpack_require__) { - /** - */ +"use strict"; - function sift(query, array, getter) { - if (isFunction(array)) { - getter = array; - array = void 0; - } +var _interopRequireDefault = __webpack_require__(532); - var validator = createRootValidator(query, getter); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.nativeLinkOpen = void 0; - function filter(b, k, o) { - return validate(validator, b, k, o); - } +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - if (array) { - return array.filter(filter); - } +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); - return filter; - } +var _plugins = __webpack_require__(747); - /** - */ +var nativeLinkOpen = /*#__PURE__*/function () { + var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(_ref) { + var url, target, options; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + url = _ref.url; + _context.next = 3; + return (0, _plugins.hasSafariPlugin)(); - sift.use = function(plugin) { - if (isFunction(plugin)) return plugin(sift); - for (var key in plugin) { - /* istanbul ignore else */ - if (key.charCodeAt(0) === 36) { - OPERATORS[key] = plugin[key]; - } - } - }; + case 3: + _context.t0 = _context.sent; - /** - */ + if (!_context.t0) { + _context.next = 6; + break; + } - sift.indexOf = function(query, array, getter) { - return search(array, createRootValidator(query, getter)); - }; + _context.t0 = window.SafariViewController; - /** - */ + case 6: + if (!_context.t0) { + _context.next = 10; + break; + } - sift.compare = function(a, b) { - if(a===b) return 0; - if(typeof a === typeof b) { - if (a > b) { - return 1; - } - if (a < b) { - return -1; - } - } - }; + window.SafariViewController.show({ + url: url, + transition: 'curl' + }, function (result) { + if (result.event === 'closed') { + window.SafariViewController.hide(); + } + }, function () { + window.SafariViewController.hide(); + }); + _context.next = 11; + break; - /* istanbul ignore next */ - if ( true && typeof module.exports !== 'undefined') { - Object.defineProperty(exports, "__esModule", { - value: true - }); + case 10: + if ((0, _plugins.hasInAppBrowserPlugin)()) { + target = '_blank'; + options = 'clearcache=yes,zoom=no'; + window.cordova.InAppBrowser.open(url, target, options); + } else { + window.location = url; + } - module.exports = sift; - exports['default'] = module.exports.default = sift; - } + case 11: + case "end": + return _context.stop(); + } + } + }, _callee); + })); - /* istanbul ignore next */ - if (typeof window !== 'undefined') { - window.sift = sift; - } -})(); + return function nativeLinkOpen(_x) { + return _ref2.apply(this, arguments); + }; +}(); +exports.nativeLinkOpen = nativeLinkOpen; /***/ }), -/* 743 */ +/* 750 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); - Object.defineProperty(exports, "__esModule", { value: true }); -exports.receiveMutationError = exports.receiveMutationResult = exports.initMutation = exports.isReceivingMutationResult = exports.isMutationAction = void 0; +exports.openDeeplinkOrRedirect = void 0; + +/** + * This file is used to open the native app from a webapp + * if this native app is installed + * + * From a webapp, we don't have any clue if a native app is installed. + * The only way to know that, is to try to open the custom link + * (aka cozydrive://) and if nothing happens (no blur) we redirect to + * the callback + * + * Firefox tries to open custom link, so we need to create an iframe + * to detect if this is supported or not + */ +var _createHiddenIframe = function _createHiddenIframe(target, uri, randomId) { + var iframe = document.createElement('iframe'); + iframe.src = uri; + iframe.id = "hiddenIframe_".concat(randomId); + iframe.style.display = 'none'; + target.appendChild(iframe); + return iframe; +}; -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +var openUriWithHiddenFrame = function openUriWithHiddenFrame(uri, failCb) { + var randomId = Math.random().toString(36).replace(/[^a-z]+/g, '').substr(0, 5); + window.addEventListener('blur', onBlur); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + var iframe = _createHiddenIframe(document.body, 'about:blank', randomId); -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + var timeout = setTimeout(function () { + failCb(); + window.removeEventListener('blur', onBlur); + iframe.parentElement.removeChild(iframe); + }, 500); -var INIT_MUTATION = 'INIT_MUTATION'; -var RECEIVE_MUTATION_RESULT = 'RECEIVE_MUTATION_RESULT'; -var RECEIVE_MUTATION_ERROR = 'RECEIVE_MUTATION_ERROR'; + function onBlur() { + clearTimeout(timeout); + window.removeEventListener('blur', onBlur); + iframe.parentElement.removeChild(iframe); + } -var isMutationAction = function isMutationAction(action) { - return [INIT_MUTATION, RECEIVE_MUTATION_RESULT, RECEIVE_MUTATION_ERROR].indexOf(action.type) !== -1; + iframe.contentWindow.location.href = uri; }; -exports.isMutationAction = isMutationAction; - -var isReceivingMutationResult = function isReceivingMutationResult(action) { - return action.type === RECEIVE_MUTATION_RESULT; -}; // actions +var openUriWithTimeoutHack = function openUriWithTimeoutHack(uri, failCb) { + var timeout = setTimeout(function () { + failCb(); + target.removeEventListener('blur', onBlur); + }, 500); // handle page running in an iframe (blur must be registered with top level window) + var target = window; -exports.isReceivingMutationResult = isReceivingMutationResult; + while (target != target.parent) { + target = target.parent; + } -var initMutation = function initMutation(mutationId, definition) { - return { - type: INIT_MUTATION, - mutationId: mutationId, - definition: definition - }; -}; + target.addEventListener('blur', onBlur); -exports.initMutation = initMutation; + function onBlur() { + clearTimeout(timeout); + target.removeEventListener('blur', onBlur); + } -var receiveMutationResult = function receiveMutationResult(mutationId, response) { - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - var definition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; - return _objectSpread(_objectSpread({ - type: RECEIVE_MUTATION_RESULT, - mutationId: mutationId, - response: response - }, options), {}, { - definition: definition - }); + window.location = uri; }; -exports.receiveMutationResult = receiveMutationResult; +var openUriWithMsLaunchUri = function openUriWithMsLaunchUri(uri, failCb) { + navigator.msLaunchUri(uri, undefined, failCb); +}; -var receiveMutationError = function receiveMutationError(mutationId, error) { - var definition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; +var checkBrowser = function checkBrowser() { + var isOpera = !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0; + var ua = navigator.userAgent.toLowerCase(); + var isSafari = ua.includes('safari') && !ua.includes('chrome') || Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0; + var isIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream; + var isIOS122 = isIOS && (ua.includes('os 12_2') || ua.includes('os 12_3')); return { - type: RECEIVE_MUTATION_ERROR, - mutationId: mutationId, - error: error, - definition: definition + isOpera: isOpera, + isFirefox: typeof InstallTrigger !== 'undefined', + isSafari: isSafari, + isChrome: !!window.chrome && !isOpera, + isIOS122: isIOS122, + isIOS: isIOS }; }; - -exports.receiveMutationError = receiveMutationError; - -/***/ }), -/* 744 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; +/** + * + * @param {String} deeplink (cozydrive://) + * @param {String} failCb (http://drive.cozy.ios) + */ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.properId = void 0; +var openDeeplinkOrRedirect = function openDeeplinkOrRedirect(deeplink, failCb) { + if (navigator.msLaunchUri) { + // for IE and Edge in Win 8 and Win 10 + openUriWithMsLaunchUri(deeplink, failCb); + } else { + var browser = checkBrowser(); -var properId = function properId(doc) { - return doc.id || doc._id; + if (browser.isChrome || browser.isIOS && !browser.isIOS122) { + openUriWithTimeoutHack(deeplink, failCb); + } else if (browser.isSafari && !browser.isIOS122 || browser.isFirefox) { + openUriWithHiddenFrame(deeplink, failCb); + } else { + failCb(); + } + } }; -exports.properId = properId; +exports.openDeeplinkOrRedirect = openDeeplinkOrRedirect; /***/ }), -/* 745 */ +/* 751 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +var _mapValues = _interopRequireDefault(__webpack_require__(641)); + +var _groupBy2 = _interopRequireDefault(__webpack_require__(752)); + +var _flatten = _interopRequireDefault(__webpack_require__(606)); + +var _isEqual = _interopRequireDefault(__webpack_require__(669)); -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +var _uniq = _interopRequireDefault(__webpack_require__(653)); -var _types = __webpack_require__(628); +var _uniqWith = _interopRequireDefault(__webpack_require__(753)); -var _dsl = __webpack_require__(625); +var _dsl = __webpack_require__(561); +var isIdQuery = function isIdQuery(query) { + return query.id || query.ids; +}; /** - * Associations are used by components to access related store documents that are - * linked in a document. They are also responsible for building the `QueryDefinition` that is - * used by the client to automatically fetch relationship data. - * - * Hydrated documents used by components come with Association instances. - * - * @interface - * - * @description - * Example: The schema defines an `author` relationship : - * - * ```js - * const BOOK_SCHEMA = { - * relationships: { - * author: 'has-one' - * } - * } - * ``` - * - * Hydrated `books` will have the `author` association instance under the `author` key. - * Accessing `hydratedBook.author.data` gives you the author from the store, for example : - * - * ```json - * { - * "name": "St-Exupery", - * "firstName": "Antoine", - * "_id": "antoine" - * } - * ``` - * - * It is the responsibility of the relationship to decide how the relationship data is stored. - * For example, here since we use the default `has-one` relationship, the relationship data - * is stored in the `relationships` attribute of the original document (in our case here, our book - * would be - * - * ```json - * { - * "title": "Le petit prince", - * "relationships": { - * "author": { - * "data": { - * "doctype": "io.cozy.authors", - * "_id": "antoine" - * } - * } - * } - * } - * ``` - * - * In the case of an "in-place" relationship, the relationship data is stored directly under the attribute named - * by the relationship (in our case `author`). Our book would be - * - * ```json - * { - * "title": "Le petit prince", - * "author": "antoine" - * } - * ``` - * - * --- + * Optimize queries on a single doctype * - * Each different type of Association may change: + * @param {QueryDefinition[]} queries - Queries of a same doctype + * @returns {QueryDefinition[]} Optimized queries + * @private + */ + + +var optimizeDoctypeQueries = function optimizeDoctypeQueries(queries) { + var _groupBy = (0, _groupBy2.default)(queries, function (q) { + return isIdQuery(q) ? 'idQueries' : 'others'; + }), + _groupBy$idQueries = _groupBy.idQueries, + idQueries = _groupBy$idQueries === void 0 ? [] : _groupBy$idQueries, + _groupBy$others = _groupBy.others, + others = _groupBy$others === void 0 ? [] : _groupBy$others; + + var groupedIdQueries = idQueries.length > 0 ? new _dsl.QueryDefinition({ + doctype: queries[0].doctype, + ids: (0, _uniq.default)((0, _flatten.default)(idQueries.map(function (q) { + return q.id || q.ids; + }))) + }) : []; // Deduplicate before concataining + + return (0, _uniqWith.default)(others, _isEqual.default).concat(groupedIdQueries); +}; +/** + * Reduce the number of queries used to fetch documents. * - * - `get raw`: how the relationship data is stored (either as per the JSON API spec or - * in a custom way) - * - `get data`: how the store documents are then fetched from the store to be added to - * the hydrated document (.data method). View components will access - * `hydratedDoc[relationshipName].data`. - * - `get query`: how to build the query to fetch related documents + * - Deduplication of queries + * - Groups id queries * + * @param {QueryDefinition[]} queries - Queries to optimized + * @returns {QueryDefinition[]} Optimized queries + * @private */ -var Association = /*#__PURE__*/function () { - /** - * @param {object} target - Original object containing raw data - * @param {string} name - Attribute under which the association is stored - * @param {string} doctype - Doctype of the documents managed by the association - * @param {object} options - Options passed from the client - * @param {Function} options.get - Get a document from the store - * @param {Function} options.query - Execute client query - * @param {Function} options.mutate - Execute client mutate - * @param {Function} options.save - Execute client save - * @param {Function} options.dispatch - Store's dispatch, comes from the client - */ - function Association(target, name, doctype, options) { - (0, _classCallCheck2.default)(this, Association); - var dispatch = options.dispatch, - get = options.get, - query = options.query, - mutate = options.mutate, - save = options.save; - /** - * The original document declaring the relationship - * - * @type {object} - */ - this.target = target; - /** - * The name of the relationship. - * - * @type {string} - * @example 'author' - */ - this.name = name; - /** - * Doctype of the relationship - * - * @type {string} - * @example 'io.cozy.authors' - */ +var optimizeQueries = function optimizeQueries(queries) { + var byDoctype = (0, _groupBy2.default)(queries, function (q) { + return q.doctype; + }); + return (0, _flatten.default)(Object.values((0, _mapValues.default)(byDoctype, optimizeDoctypeQueries))); +}; - this.doctype = doctype; - /** - * Returns the document from the store - * - * @type {Function} - */ +var _default = optimizeQueries; +exports.default = _default; - this.get = get; - /** - * Performs a query to retrieve relationship documents. - * - * @param {QueryDefinition} queryDefinition - * @function - */ +/***/ }), +/* 752 */ +/***/ (function(module, exports, __webpack_require__) { - this.query = query; - /** - * Performs a mutation on the relationship. - * - * @function - */ +var baseAssignValue = __webpack_require__(571), + createAggregator = __webpack_require__(666); - this.mutate = mutate; - /** - * Saves the relationship in store. - * - * @type {Function} - */ +/** Used for built-in method references. */ +var objectProto = Object.prototype; - this.save = save; - /** - * Dispatch an action on the store. - * - * @type {Function} - */ +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; - this.dispatch = dispatch; +/** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The order of grouped values + * is determined by the order they occur in `collection`. The corresponding + * value of each key is an array of elements responsible for generating the + * key. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.groupBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': [4.2], '6': [6.1, 6.3] } + * + * // The `_.property` iteratee shorthand. + * _.groupBy(['one', 'two', 'three'], 'length'); + * // => { '3': ['one', 'two'], '5': ['three'] } + */ +var groupBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + result[key].push(value); + } else { + baseAssignValue(result, key, [value]); } - /** - * - * Returns the raw relationship data as stored in the original document - * - * For a document with relationships stored as JSON API spec: - * - * ```js - * const book = { - * title: 'Moby Dick', - * relationships: { - * author: { - * data: { - * doctype: 'io.cozy.authors', - * id: 'herman' - * } - * } - * } - * } - * ``` - * - * Raw value will be - * - * ```json - * { - * "doctype": "io.cozy.authors", - * "id": "herman" - * } - * ``` - * - * Derived `Association`s need to implement this method. - * - * @returns {object} - */ +}); +module.exports = groupBy; - (0, _createClass2.default)(Association, [{ - key: "raw", - get: function get() { - throw new Error('A relationship must define its raw getter'); - } - /** - * Returns the document(s) from the store - * - * For document with relationships stored as JSON API spec : - * - * ```js - * const book = { - * title: 'Moby Dick', - * relationships: { - * author: { - * data: { - * doctype: 'io.cozy.authors', - * id: 'herman' - * } - * } - * } - * } - * ``` - * - * `data` will be - * - * ```json - * { - * "_id": "herman" - * "_type": "io.cozy.authors", - * "firstName": "herman", - * "name": "Melville" - * } - * ``` - * - * Derived `Association`s need to implement this method. - * - * @returns {object} - */ - }, { - key: "data", - get: function get() { - throw new Error('A relationship must define its data getter'); - } - /** - * Derived `Association`s need to implement this method. - * - * @param {CozyClientDocument} document - Document to query - * @param {object} client - The CozyClient instance - * @param {Association} assoc - Association containing info on how to build the query to fetch related documents - * - * @returns {CozyClientDocument | QueryDefinition } - */ +/***/ }), +/* 753 */ +/***/ (function(module, exports, __webpack_require__) { - }], [{ - key: "query", - value: function query(document, client, assoc) { - throw new Error('A custom relationship must define its query() function'); - } - }]); - return Association; -}(); +var baseUniq = __webpack_require__(477); + +/** + * This method is like `_.uniq` except that it accepts `comparator` which + * is invoked to compare elements of `array`. The order of result values is + * determined by the order they occur in the array.The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.uniqWith(objects, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] + */ +function uniqWith(array, comparator) { + comparator = typeof comparator == 'function' ? comparator : undefined; + return (array && array.length) ? baseUniq(array, undefined, comparator) : []; +} + +module.exports = uniqWith; -var _default = Association; -exports.default = _default; /***/ }), -/* 746 */ +/* 754 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); - Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = exports.updateRelationship = exports.updateHasManyItem = exports.removeHasManyItem = exports.setHasManyItem = exports.getHasManyItems = exports.getHasManyItem = void 0; +exports.default = void 0; -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +/** + * Use those fetch policies with `<Query />` to limit the number of re-fetch. + * + * @example + * ``` + * import { fetchPolicies } from 'cozy-client' + * const olderThan30s = fetchPolicies.olderThan(30 * 1000) + * <Query fetchPolicy={olderThan30s} /> + * ``` + */ +var fetchPolicies = { + /** + * Returns a fetchPolicy that will only re-fetch queries that are older + * than `<delay>` ms. + * + * @param {number} delay - Milliseconds since the query has been fetched + * @returns {Function} Fetch policy to be used with `<Query />` + */ + olderThan: function olderThan(delay) { + return function (queryState) { + if (!queryState || !queryState.lastUpdate) { + return true; + } else { + var elapsed = Date.now() - queryState.lastUpdate; + return elapsed > delay; + } + }; + }, -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + /** + * Fetch policy that deactivates any fetching. + */ + noFetch: function noFetch() { + return false; + } +}; +var _default = fetchPolicies; +exports.default = _default; -var _assertThisInitialized2 = _interopRequireDefault(__webpack_require__(612)); +/***/ }), +/* 755 */ +/***/ (function(module, exports, __webpack_require__) { -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); +"use strict"; -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); +var _interopRequireDefault = __webpack_require__(532); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; -var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(540)); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -var _get = _interopRequireDefault(__webpack_require__(370)); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var _merge = _interopRequireDefault(__webpack_require__(747)); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var _dsl = __webpack_require__(625); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -var _store = __webpack_require__(698); +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -var _types = __webpack_require__(628); +var _keyBy = _interopRequireDefault(__webpack_require__(665)); -var _Association2 = _interopRequireDefault(__webpack_require__(745)); +var _mapValues = _interopRequireDefault(__webpack_require__(641)); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +var _merge = _interopRequireDefault(__webpack_require__(756)); -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +var _size = _interopRequireDefault(__webpack_require__(764)); -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +var _intersectionBy = _interopRequireDefault(__webpack_require__(768)); -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +var _associations = __webpack_require__(563); -/** - * @typedef {object} Relationship - * @property {string} relName - name of the relationship - * @property {string} relItemId - id of the relation - * @property {Relation} relItemAttrs - Attributes to be set (at least _id and _type) - */ +var normalizeDoctypeSchema = function normalizeDoctypeSchema(doctypeSchema) { + var relationships = (0, _mapValues.default)(doctypeSchema.relationships || {}, function (v, k) { + return (0, _objectSpread2.default)({}, v, { + name: k, + type: (0, _associations.resolveClass)(v.doctype, v.type) + }); + }); + return (0, _objectSpread2.default)({}, doctypeSchema, { + relationships: (0, _size.default)(relationships) > 0 ? (0, _keyBy.default)(relationships, 'name') : null + }); +}; -/** - * @typedef {object} Relation - * @property {string} _id - id of the relation - * @property {string} _type - doctype of the relation - */ -var empty = function empty() { - return { - data: [], - next: true, - meta: { - count: 0 - } - }; +var assert = function assert(predicate, errorMessage) { + if (!predicate) throw new Error(errorMessage); }; -var updateArray = function updateArray(array, indexArg, el) { - var index = indexArg === -1 ? array.length : indexArg; - return [].concat((0, _toConsumableArray2.default)(array.slice(0, index)), [el], (0, _toConsumableArray2.default)(array.slice(index + 1))); +var ensureCanBeAdded = function ensureCanBeAdded(newSchemas, existingSchemas) { + var sameNames = (0, _intersectionBy.default)(newSchemas, existingSchemas, function (x) { + return x.name; + }); + assert(sameNames.length === 0, "Duplicated names in schemas being added: ".concat(sameNames.map(function (x) { + return x.name; + }).join(', '))); + var sameDoctypes = (0, _intersectionBy.default)(newSchemas, existingSchemas, function (x) { + return x.doctype; + }); + assert(sameDoctypes.length === 0, "Duplicated doctypes in schemas being added: ".concat(sameDoctypes.map(function (x) { + return x.name; + }).join(', '))); }; /** - * Related documents are stored in the relationships attribute of the object, - * following the JSON API spec. - * - * Responsible for - * - * - Creating relationships - * - Removing relationships + * Stores information on a particular doctype. * - * @description + * - Attribute validation + * - Relationship access * - * ``` - * const schema = { + * ```js + * const schema = new Schema({ * todos: { - * doctype: 'io.cozy.todos', - * relationships: { - * tasks: { - * doctype: 'io.cozy.tasks', - * type: 'has-many' - * } - * } - * } - * } - * - * const todo = { - * label: "Protect people's privacy", - * relationships: { - * tasks: { - * data: [ - * {_id: 1, _type: 'io.cozy.tasks'}, - * {_id: 2, _type: 'io.cozy.tasks'} - * ] + * attributes: { + * label: { + * unique: true + * } + * }, + * relationships: { + * author: 'has-one-in-place' * } * } - * } + * }, cozyStackClient) * ``` */ -var HasMany = /*#__PURE__*/function (_Association) { - (0, _inherits2.default)(HasMany, _Association); - - var _super = _createSuper(HasMany); - - function HasMany() { - var _this; - - (0, _classCallCheck2.default)(this, HasMany); - - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { - args[_key] = arguments[_key]; - } - - _this = _super.call.apply(_super, [this].concat(args)); - (0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "updateRelationshipData", function (getUpdatedRelationshipData) { - return function (dispatch, getState) { - var previousRelationship = (0, _store.getDocumentFromState)(getState(), _this.target._type, _this.target._id); - dispatch((0, _store.receiveQueryResult)(null, { - data: _objectSpread(_objectSpread({}, previousRelationship), {}, { - relationships: _objectSpread(_objectSpread({}, previousRelationship.relationships), {}, (0, _defineProperty2.default)({}, _this.name, getUpdatedRelationshipData(previousRelationship.relationships[_this.name]))) - }) - })); - }; - }); - return _this; +var Schema = +/*#__PURE__*/ +function () { + function Schema() { + var schemaDefinition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var client = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + (0, _classCallCheck2.default)(this, Schema); + this.byDoctype = {}; + this.add(schemaDefinition); + this.client = client; } - (0, _createClass2.default)(HasMany, [{ - key: "fetchMore", - value: function fetchMore() { - throw 'Not implemented'; - } - }, { - key: "exists", - value: function exists(document) { - return this.existsById(document._id); - } - }, { - key: "containsById", - value: function containsById(id) { - return this.getRelationship().data.find(function (_ref) { - var _id = _ref._id; - return id === _id; - }) !== undefined; - } - }, { - key: "existsById", - value: function existsById(id) { - return Boolean(this.containsById(id) && this.get(this.doctype, id)); + (0, _createClass2.default)(Schema, [{ + key: "add", + value: function add() { + var schemaDefinition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var normalizedSchemaDefinition = (0, _mapValues.default)(schemaDefinition, function (obj, name) { + return (0, _objectSpread2.default)({ + name: name + }, normalizeDoctypeSchema(obj)); + }); + ensureCanBeAdded(Object.values(normalizedSchemaDefinition), Object.values(this.byDoctype)); + (0, _merge.default)(this.byDoctype, (0, _keyBy.default)(normalizedSchemaDefinition, function (x) { + return x.doctype; + })); } /** - * Add a referenced document by id. You need to call save() - * in order to synchronize your document with the store. - * - * @todo We shouldn't create the array of relationship manually since - * it'll not be present in the store as well. - * We certainly should use something like `updateRelationship` + * Returns the schema for a doctype * + * Creates an empty schema implicitly if it does not exist */ }, { - key: "addById", - value: function addById(idsArg) { - var _this2 = this, - _this$target$relation; - - if (!this.target.relationships) this.target.relationships = {}; - - if (!this.target.relationships[this.name]) { - this.target.relationships[this.name] = { - data: [] - }; - } - - var ids = Array.isArray(idsArg) ? idsArg : [idsArg]; - var newRelations = ids.filter(function (id) { - return !_this2.existsById(id); - }).map(function (id) { - return { - _id: id, - _type: _this2.doctype - }; - }); - - (_this$target$relation = this.target.relationships[this.name].data).push.apply(_this$target$relation, (0, _toConsumableArray2.default)(newRelations)); + key: "getDoctypeSchema", + value: function getDoctypeSchema(doctype) { + var schema = this.byDoctype[doctype]; - this.updateMetaCount(); - return this.save(this.target); - } - }, { - key: "removeById", - value: function removeById(idsArg) { - var ids = Array.isArray(idsArg) ? idsArg : [idsArg]; - this.target.relationships[this.name].data = this.target.relationships[this.name].data.filter(function (_ref2) { - var _id = _ref2._id; - return !ids.includes(_id); - }); - this.updateMetaCount(); - return this.save(this.target); - } - }, { - key: "updateMetaCount", - value: function updateMetaCount() { - if ((0, _get.default)(this.target.relationships[this.name], 'meta.count') !== undefined) { - this.target.relationships[this.name].meta = _objectSpread(_objectSpread({}, this.target.relationships[this.name].meta), {}, { - count: this.target.relationships[this.name].data.length + if (!schema) { + schema = normalizeDoctypeSchema({ + name: doctype, + doctype: doctype }); - } - } - }, { - key: "getRelationship", - value: function getRelationship() { - var rawData = this.target[this.name]; - var relationship = (0, _get.default)(this.target, "relationships.".concat(this.name)); - - if (!relationship) { - if (rawData && rawData.length) { - console.warn("You're trying to access data on a relationship that appear to not be loaded yet. You may want to use 'include()' on your query"); - } - - return empty(); + this.byDoctype[doctype] = schema; } - return relationship; - } - }, { - key: "updateTargetRelationship", - value: function updateTargetRelationship(store, updateFn) { - // TODO See if updateTargetRelationship is still used, removing it would enable us - // to remove store.readDocument and store.writeDocument and the StoreProxy - var prevTarget = store.readDocument(this.target._type, this.target._id); - store.writeDocument(this.updateRelationship(prevTarget, updateFn)); - } - }, { - key: "updateRelationship", - value: function updateRelationship(target, updateFn) { - return HasMany.updateRelationship(target, this.name, updateFn); - } - }, { - key: "dehydrate", - value: function dehydrate(doc) { - return _objectSpread(_objectSpread({}, doc), {}, { - relationships: _objectSpread(_objectSpread({}, doc.relationships), {}, (0, _defineProperty2.default)({}, this.name, { - data: this.raw - })) - }); + return schema; } /** - * @param {CozyClientDocument} document - Document to query - * @param {object} client - The CozyClient instance - * @param {Association} assoc - The query params - * - * @returns {CozyClientDocument | QueryDefinition} + * Returns the relationship for a given doctype/name */ }, { - key: "raw", - get: function get() { - return this.getRelationship().data; + key: "getRelationship", + value: function getRelationship(doctype, relationshipName) { + var schema = this.getDoctypeSchema(doctype); + return schema.relationships[relationshipName]; } /** - * Returns store documents + * Validates a document considering the descriptions in schema.attributes. */ }, { - key: "data", - get: function get() { - var _this3 = this; + key: "validate", + value: function () { + var _validate = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(document) { + var errors, schema, n, ret; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + errors = {}; + schema = this.byDoctype[document._type]; - return this.getRelationship().data.map(function (_ref3) { - var _id = _ref3._id, - _type = _ref3._type; - return _this3.get(_type, _id); - }).filter(Boolean); - } - }, { - key: "hasMore", - get: function get() { - return this.getRelationship().next; - } - /** - * Returns the total number of documents in the relationship. - * Does not handle documents absent from the store. If you want - * to do that, you can use .data.length. - * - * @returns {number} - Total number of documents in the relationships - */ + if (schema) { + _context.next = 4; + break; + } - }, { - key: "count", - get: function get() { - var relationship = this.getRelationship(); - return relationship.meta ? relationship.meta.count : relationship.data.length; - } - }], [{ - key: "query", - value: function query(document, client, assoc) { - var relationships = (0, _get.default)(document, "relationships.".concat(assoc.name, ".data"), []); - var ids = relationships.map(function (assoc) { - return assoc._id; - }); - return new _dsl.QueryDefinition({ - doctype: assoc.doctype, - ids: ids - }); - } - }]); - return HasMany; -}(_Association2.default); -/** - * Gets a relationship item with the relationship name and id - * - * @param {object} doc - Document to be updated - * @param {string} relName - Name of the relationship - * @param {string} relItemId - Id of the relationship item - */ + return _context.abrupt("return", true); + case 4: + if (schema.attributes) { + _context.next = 6; + break; + } -var getHasManyItem = HasMany.getHasManyItem = function (doc, relName, relItemId) { - var relData = (0, _get.default)(doc, "relationships.".concat(relName, ".data"), []); - return relData.find(function (rel) { - return rel._id == relItemId; - }); -}; + return _context.abrupt("return", true); -exports.getHasManyItem = getHasManyItem; + case 6: + _context.t0 = _regenerator.default.keys(schema.attributes); -var getHasManyItems = HasMany.getHasManyItems = function (doc, relName) { - return (0, _get.default)(doc, "relationships.".concat(relName, ".data"), []); -}; -/** - * Sets a relationship item with the relationship name and id - * - * @param {object} doc - Document to be updated - * @param {string} relName - Name of the relationship - * @param {string} relItemId - Id of the relationship item - * @param {object} relItemAttrs - Attributes to be set (at least _id and _type) - */ + case 7: + if ((_context.t1 = _context.t0()).done) { + _context.next = 15; + break; + } + n = _context.t1.value; + _context.next = 11; + return this.validateAttribute(document, n, schema.attributes[n]); -exports.getHasManyItems = getHasManyItems; + case 11: + ret = _context.sent; + if (ret !== true) errors[n] = ret; + _context.next = 7; + break; -var setHasManyItem = HasMany.setHasManyItem = function (doc, relName, relItemId, relItemAttrs) { - var relData = HasMany.getHasManyItems(doc, relName); - var relIndex = relData.findIndex(function (rel) { - return rel._id === relItemId; - }); - var updatedRelItem = (0, _merge.default)({}, relData[relIndex], relItemAttrs); - var updatedRelData = updateArray(relData, relIndex, updatedRelItem); - var updatedDocument = HasMany.updateRelationship(doc, relName, function (relationship) { - return (0, _merge.default)({}, relationship, { - data: updatedRelData - }); - }); - return updatedDocument; -}; -/** - * Remove one relationship item - * - * @param {object} doc - Document to be updated - * @param {string} relName - Name of the relationship - * @param {string} relItemId - Id of the relationship item - */ + case 15: + if (!(Object.keys(errors).length === 0)) { + _context.next = 17; + break; + } + return _context.abrupt("return", true); -exports.setHasManyItem = setHasManyItem; + case 17: + return _context.abrupt("return", errors); -var removeHasManyItem = HasMany.removeHasManyItem = function (doc, relName, relItemId) { - var relData = HasMany.getHasManyItems(doc, relName); - var updatedRelData = relData.filter(function (rel) { - return rel._id !== relItemId; - }); - var updatedDocument = HasMany.updateRelationship(doc, relName, function () { - return { - data: updatedRelData - }; - }); - return updatedDocument; -}; -/** - * Updates a relationship item with the relationship name and id - * - * @param {object} doc - Document to be updated - * @param {string} relName - Name of the relationship - * @param {string} relItemId - Id of the relationship item - * @param {Function} updater - receives the current relationship item and should - * return an updated version. Merge should be used in the updater - * if previous relationship item fields are to be kept. - */ + case 18: + case "end": + return _context.stop(); + } + } + }, _callee, this); + })); + + return function validate(_x) { + return _validate.apply(this, arguments); + }; + }() + }, { + key: "validateAttribute", + value: function () { + var _validateAttribute = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(document, attrName, attrProps) { + var ret; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + if (!(attrProps.unique && this.client)) { + _context2.next = 6; + break; + } + _context2.next = 3; + return this.client.collection(document._type).checkUniquenessOf(attrName, document[attrName]); -exports.removeHasManyItem = removeHasManyItem; + case 3: + ret = _context2.sent; -var updateHasManyItem = HasMany.updateHasManyItem = function (doc, relName, relItemId, updater) { - var relItem = HasMany.getHasManyItem(doc, relName, relItemId); - var updatedRelItem = updater(relItem); - return HasMany.setHasManyItem(doc, relName, relItemId, updatedRelItem); -}; + if (!(ret !== true)) { + _context2.next = 6; + break; + } -exports.updateHasManyItem = updateHasManyItem; + return _context2.abrupt("return", 'must be unique'); -var updateRelationship = HasMany.updateRelationship = function (doc, relName, updateFn) { - return _objectSpread(_objectSpread({}, doc), {}, { - relationships: _objectSpread(_objectSpread({}, doc.relationships), {}, (0, _defineProperty2.default)({}, relName, _objectSpread(_objectSpread({}, doc.relationships ? doc.relationships[relName] : {}), updateFn(doc.relationships ? doc.relationships[relName] : {})))) - }); -}; + case 6: + return _context2.abrupt("return", true); -exports.updateRelationship = updateRelationship; -var _default = HasMany; + case 7: + case "end": + return _context2.stop(); + } + } + }, _callee2, this); + })); + + return function validateAttribute(_x2, _x3, _x4) { + return _validateAttribute.apply(this, arguments); + }; + }() + }]); + return Schema; +}(); + +var _default = Schema; exports.default = _default; /***/ }), -/* 747 */ +/* 756 */ /***/ (function(module, exports, __webpack_require__) { -var baseMerge = __webpack_require__(748), - createAssigner = __webpack_require__(753); +var baseMerge = __webpack_require__(757), + createAssigner = __webpack_require__(762); /** * This method is like `_.assign` except that it recursively merges own and @@ -115790,16 +112273,16 @@ module.exports = merge; /***/ }), -/* 748 */ +/* 757 */ /***/ (function(module, exports, __webpack_require__) { -var Stack = __webpack_require__(416), - assignMergeValue = __webpack_require__(749), - baseFor = __webpack_require__(555), - baseMergeDeep = __webpack_require__(750), +var Stack = __webpack_require__(418), + assignMergeValue = __webpack_require__(758), + baseFor = __webpack_require__(643), + baseMergeDeep = __webpack_require__(759), isObject = __webpack_require__(72), - keysIn = __webpack_require__(585), - safeGet = __webpack_require__(751); + keysIn = __webpack_require__(576), + safeGet = __webpack_require__(760); /** * The base implementation of `_.merge` without support for multiple sources. @@ -115838,11 +112321,11 @@ module.exports = baseMerge; /***/ }), -/* 749 */ +/* 758 */ /***/ (function(module, exports, __webpack_require__) { -var baseAssignValue = __webpack_require__(552), - eq = __webpack_require__(397); +var baseAssignValue = __webpack_require__(571), + eq = __webpack_require__(399); /** * This function is like `assignValue` except that it doesn't assign @@ -115864,24 +112347,24 @@ module.exports = assignMergeValue; /***/ }), -/* 750 */ +/* 759 */ /***/ (function(module, exports, __webpack_require__) { -var assignMergeValue = __webpack_require__(749), - cloneBuffer = __webpack_require__(588), - cloneTypedArray = __webpack_require__(601), - copyArray = __webpack_require__(589), - initCloneObject = __webpack_require__(602), - isArguments = __webpack_require__(444), +var assignMergeValue = __webpack_require__(758), + cloneBuffer = __webpack_require__(579), + cloneTypedArray = __webpack_require__(592), + copyArray = __webpack_require__(580), + initCloneObject = __webpack_require__(593), + isArguments = __webpack_require__(446), isArray = __webpack_require__(75), - isArrayLikeObject = __webpack_require__(570), - isBuffer = __webpack_require__(446), + isArrayLikeObject = __webpack_require__(648), + isBuffer = __webpack_require__(448), isFunction = __webpack_require__(65), isObject = __webpack_require__(72), - isPlainObject = __webpack_require__(637), - isTypedArray = __webpack_require__(449), - safeGet = __webpack_require__(751), - toPlainObject = __webpack_require__(752); + isPlainObject = __webpack_require__(604), + isTypedArray = __webpack_require__(451), + safeGet = __webpack_require__(760), + toPlainObject = __webpack_require__(761); /** * A specialized version of `baseMerge` for arrays and objects which performs @@ -115964,7 +112447,7 @@ module.exports = baseMergeDeep; /***/ }), -/* 751 */ +/* 760 */ /***/ (function(module, exports) { /** @@ -115991,11 +112474,11 @@ module.exports = safeGet; /***/ }), -/* 752 */ +/* 761 */ /***/ (function(module, exports, __webpack_require__) { -var copyObject = __webpack_require__(583), - keysIn = __webpack_require__(585); +var copyObject = __webpack_require__(574), + keysIn = __webpack_require__(576); /** * Converts `value` to a plain object flattening inherited enumerable string @@ -116029,11 +112512,11 @@ module.exports = toPlainObject; /***/ }), -/* 753 */ +/* 762 */ /***/ (function(module, exports, __webpack_require__) { -var baseRest = __webpack_require__(562), - isIterateeCall = __webpack_require__(754); +var baseRest = __webpack_require__(647), + isIterateeCall = __webpack_require__(763); /** * Creates a function like `_.assign`. @@ -116072,12 +112555,12 @@ module.exports = createAssigner; /***/ }), -/* 754 */ +/* 763 */ /***/ (function(module, exports, __webpack_require__) { -var eq = __webpack_require__(397), - isArrayLike = __webpack_require__(458), - isIndex = __webpack_require__(448), +var eq = __webpack_require__(399), + isArrayLike = __webpack_require__(460), + isIndex = __webpack_require__(450), isObject = __webpack_require__(72); /** @@ -116108,4754 +112591,4661 @@ module.exports = isIterateeCall; /***/ }), -/* 755 */ +/* 764 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var baseKeys = __webpack_require__(456), + getTag = __webpack_require__(461), + isArrayLike = __webpack_require__(460), + isString = __webpack_require__(74), + stringSize = __webpack_require__(765); +/** `Object#toString` result references. */ +var mapTag = '[object Map]', + setTag = '[object Set]'; -var _interopRequireDefault = __webpack_require__(530); +/** + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable string keyed properties for objects. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the collection size. + * @example + * + * _.size([1, 2, 3]); + * // => 3 + * + * _.size({ 'a': 1, 'b': 2 }); + * // => 2 + * + * _.size('pebbles'); + * // => 7 + */ +function size(collection) { + if (collection == null) { + return 0; + } + if (isArrayLike(collection)) { + return isString(collection) ? stringSize(collection) : collection.length; + } + var tag = getTag(collection); + if (tag == mapTag || tag == setTag) { + return collection.size; + } + return baseKeys(collection).length; +} -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; +module.exports = size; -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +/***/ }), +/* 765 */ +/***/ (function(module, exports, __webpack_require__) { -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +var asciiSize = __webpack_require__(766), + hasUnicode = __webpack_require__(743), + unicodeSize = __webpack_require__(767); -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); +/** + * Gets the number of symbols in `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the string size. + */ +function stringSize(string) { + return hasUnicode(string) + ? unicodeSize(string) + : asciiSize(string); +} -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); +module.exports = stringSize; -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); -var _get2 = _interopRequireDefault(__webpack_require__(370)); +/***/ }), +/* 766 */ +/***/ (function(module, exports, __webpack_require__) { -var _set2 = _interopRequireDefault(__webpack_require__(756)); +var baseProperty = __webpack_require__(475); -var _dsl = __webpack_require__(625); +/** + * Gets the size of an ASCII `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ +var asciiSize = baseProperty('length'); -var _types = __webpack_require__(628); +module.exports = asciiSize; -var _Association2 = _interopRequireDefault(__webpack_require__(745)); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +/***/ }), +/* 767 */ +/***/ (function(module, exports) { -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +/** Used to compose unicode character classes. */ +var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsVarRange = '\\ufe0e\\ufe0f'; -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +/** Used to compose unicode capture groups. */ +var rsAstral = '[' + rsAstralRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsZWJ = '\\u200d'; -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +/** Used to compose unicode regexes. */ +var reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; -var HasOne = /*#__PURE__*/function (_Association) { - (0, _inherits2.default)(HasOne, _Association); +/** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ +var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); - var _super = _createSuper(HasOne); +/** + * Gets the size of a Unicode `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ +function unicodeSize(string) { + var result = reUnicode.lastIndex = 0; + while (reUnicode.test(string)) { + ++result; + } + return result; +} - function HasOne() { - (0, _classCallCheck2.default)(this, HasOne); - return _super.apply(this, arguments); +module.exports = unicodeSize; + + +/***/ }), +/* 768 */ +/***/ (function(module, exports, __webpack_require__) { + +var arrayMap = __webpack_require__(412), + baseIntersection = __webpack_require__(650), + baseIteratee = __webpack_require__(415), + baseRest = __webpack_require__(647), + castArrayLikeObject = __webpack_require__(651), + last = __webpack_require__(600); + +/** + * This method is like `_.intersection` except that it accepts `iteratee` + * which is invoked for each element of each `arrays` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of intersecting values. + * @example + * + * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [2.1] + * + * // The `_.property` iteratee shorthand. + * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }] + */ +var intersectionBy = baseRest(function(arrays) { + var iteratee = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + if (iteratee === last(mapped)) { + iteratee = undefined; + } else { + mapped.pop(); } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, baseIteratee(iteratee, 2)) + : []; +}); - (0, _createClass2.default)(HasOne, [{ - key: "set", - value: function set(doc) { - if (doc && doc._type !== this.doctype) { - throw new Error("Tried to associate a ".concat(doc._type, " document to a HasOne relationship on ").concat(this.doctype, " document")); +module.exports = intersectionBy; + + +/***/ }), +/* 769 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +var _interopRequireDefault = __webpack_require__(532); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = void 0; + +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); + +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); + +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); + +var _defineProperty2 = _interopRequireDefault(__webpack_require__(546)); + +var _store = __webpack_require__(617); + +/** + * ObservableQueries are the glue between the store and observers + * of the store. They have the responsibility to hydrate the documents + * before passing them to the React component. + */ +var hasOwn = Object.prototype.hasOwnProperty; + +var ObservableQuery = +/*#__PURE__*/ +function () { + function ObservableQuery(queryId, definition, client) { + var _this = this; + + (0, _classCallCheck2.default)(this, ObservableQuery); + (0, _defineProperty2.default)(this, "handleStoreChange", function () { + var nextResult = _this.currentRawResult(); + + if (!shallowEqual(nextResult, _this.lastResult)) { + _this.lastResult = nextResult; + + _this.notifyObservers(); } + }); - var path = "relationships[".concat(this.name, "].data"); + if (!queryId || !definition || !client) { + throw new Error('ObservableQuery takes 3 arguments: queryId, definition and client'); + } - if (doc) { - (0, _set2.default)(this.target, path, { - _id: doc._id, - _type: doc._type - }); - } else { - (0, _set2.default)(this.target, path, undefined); + this.queryId = queryId; + this.definition = definition; + this.client = client; + this.observers = {}; + this.idCounter = 1; + this.lastResult = this.currentRawResult(); + } + + (0, _createClass2.default)(ObservableQuery, [{ + key: "currentResult", + + /** + * Returns the query from the store with hydrated documents. + * + * @returns {HydratedQueryState} + */ + value: function currentResult() { + var result = this.client.getQueryFromState(this.queryId, { + hydrated: true + }); + + if (!result.lastFetch) { + return result; } + + return (0, _objectSpread2.default)({}, result, { + // Weird to have this.definition.id here, maybe it could be getQueryFromState + // that should do that + data: this.definition.id ? result.data[0] : result.data + }); } }, { - key: "unset", - value: function unset() { - this.set(undefined); + key: "fetch", + value: function fetch() { + return this.client.query(this.definition, { + as: this.queryId + }); } + /** + * Generates and executes a query that is offsetted by the number of documents + * we have in the store. + */ + }, { - key: "dehydrate", - value: function dehydrate(doc) { - if (!this.raw) { - return doc; - } + key: "fetchMore", + value: function fetchMore() { + var rawResult = this.currentRawResult(); + return rawResult.bookmark ? this.client.query(this.definition.offsetBookmark(rawResult.bookmark), { + as: this.queryId + }) : this.client.query(this.definition.offset(rawResult.data.length), { + as: this.queryId + }); + } + }, { + key: "currentRawResult", + value: function currentRawResult() { + return (0, _store.getRawQueryFromState)(this.getStore().getState(), this.queryId); + } + }, { + key: "notifyObservers", + value: function notifyObservers() { + var _this2 = this; - return _objectSpread(_objectSpread({}, doc), {}, { - relationships: _objectSpread(_objectSpread({}, doc.relationships), {}, (0, _defineProperty2.default)({}, this.name, { - data: this.raw - })) + Object.keys(this.observers).forEach(function (id) { + return _this2.observers[id](); }); } }, { - key: "raw", - get: function get() { - return (0, _get2.default)(this.target, "relationships[".concat(this.name, "].data"), null); + key: "subscribeToStore", + value: function subscribeToStore() { + if (this._unsubscribeStore) { + throw new Error('ObservableQuery instance is already subscribed to store.'); + } + + this._unsubscribeStore = this.getStore().subscribe(this.handleStoreChange); } }, { - key: "data", - get: function get() { - if (!this.raw) { - return null; + key: "unsubscribeFromStore", + value: function unsubscribeFromStore() { + if (!this._unsubscribeStore) { + throw new Error('ObservableQuery instance is not subscribed to store'); } - return this.get(this.doctype, this.raw._id); + this._unsubscribeStore(); } - /** - * @param {CozyClientDocument} document - Document to query - * @param {object} client - The CozyClient instance - * @param {Association} assoc - The query params - * - * @returns {CozyClientDocument | QueryDefinition} - */ + }, { + key: "subscribe", + value: function subscribe(callback) { + var _this3 = this; - }], [{ - key: "query", - value: function query(document, client, assoc) { - var relationship = (0, _get2.default)(document, "relationships.".concat(assoc.name, ".data"), {}); + var callbackId = this.idCounter; + this.idCounter++; + this.observers[callbackId] = callback; - if (!relationship || !relationship._id) { - return null; + if (Object.keys(this.observers).length === 1) { + this.subscribeToStore(); + } + + return function () { + return _this3.unsubscribe(callbackId); + }; + } + }, { + key: "unsubscribe", + value: function unsubscribe(callbackId) { + if (!this.observers[callbackId]) { + throw new Error("Cannot unsubscribe unknown callbackId ".concat(callbackId)); } - return (0, _dsl.Q)(assoc.doctype).getById(relationship._id); + delete this.observers[callbackId]; + + if (Object.keys(this.observers).length === 0) { + this.unsubscribeFromStore(); + this._unsubscribeStore = null; + } + } + }, { + key: "getStore", + value: function getStore() { + return this.client.store; } }]); - return HasOne; -}(_Association2.default); + return ObservableQuery; +}(); -exports.default = HasOne; +exports.default = ObservableQuery; -/***/ }), -/* 756 */ -/***/ (function(module, exports, __webpack_require__) { +function is(x, y) { + if (x === y) { + return x !== 0 || y !== 0 || 1 / x === 1 / y; + } else { + return x !== x && y !== y; + } +} + +function shallowEqual(objA, objB) { + if (is(objA, objB)) return true; + + if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) { + return false; + } + + var keysA = Object.keys(objA); + var keysB = Object.keys(objB); + if (keysA.length !== keysB.length) return false; + + for (var i = 0; i < keysA.length; i++) { + if (!hasOwn.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) { + return false; + } + } + + return true; +} -var baseSet = __webpack_require__(657); +/***/ }), +/* 770 */ +/***/ (function(module, exports) { /** - * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, - * it's created. Arrays are created for missing index properties while objects - * are created for all other missing properties. Use `_.setWith` to customize - * `path` creation. - * - * **Note:** This method mutates `object`. + * The inverse of `_.toPairs`; this method returns an object composed + * from key-value `pairs`. * * @static * @memberOf _ - * @since 3.7.0 - * @category Object - * @param {Object} object The object to modify. - * @param {Array|string} path The path of the property to set. - * @param {*} value The value to set. - * @returns {Object} Returns `object`. + * @since 4.0.0 + * @category Array + * @param {Array} pairs The key-value pairs. + * @returns {Object} Returns the new object. * @example * - * var object = { 'a': [{ 'b': { 'c': 3 } }] }; - * - * _.set(object, 'a[0].b.c', 4); - * console.log(object.a[0].b.c); - * // => 4 - * - * _.set(object, ['x', '0', 'y', 'z'], 5); - * console.log(object.x[0].y.z); - * // => 5 + * _.fromPairs([['a', 1], ['b', 2]]); + * // => { 'a': 1, 'b': 2 } */ -function set(object, path, value) { - return object == null ? object : baseSet(object, path, value); +function fromPairs(pairs) { + var index = -1, + length = pairs == null ? 0 : pairs.length, + result = {}; + + while (++index < length) { + var pair = pairs[index]; + result[pair[0]] = pair[1]; + } + return result; } -module.exports = set; +module.exports = fromPairs; /***/ }), -/* 757 */ +/* 771 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var baseRest = __webpack_require__(647), + unzip = __webpack_require__(772); +/** + * Creates an array of grouped elements, the first of which contains the + * first elements of the given arrays, the second of which contains the + * second elements of the given arrays, and so on. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @returns {Array} Returns the new array of grouped elements. + * @example + * + * _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + */ +var zip = baseRest(unzip); -var _interopRequireDefault = __webpack_require__(530); +module.exports = zip; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.BelongsToInPlace = exports.default = void 0; -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +/***/ }), +/* 772 */ +/***/ (function(module, exports, __webpack_require__) { -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +var arrayFilter = __webpack_require__(441), + arrayMap = __webpack_require__(412), + baseProperty = __webpack_require__(475), + baseTimes = __webpack_require__(445), + isArrayLikeObject = __webpack_require__(648); -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); +/** + * This method is like `_.zip` except that it accepts an array of grouped + * elements and creates an array regrouping the elements to their pre-zip + * configuration. + * + * @static + * @memberOf _ + * @since 1.2.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + * + * _.unzip(zipped); + * // => [['a', 'b'], [1, 2], [true, false]] + */ +function unzip(array) { + if (!(array && array.length)) { + return []; + } + var length = 0; + array = arrayFilter(array, function(group) { + if (isArrayLikeObject(group)) { + length = nativeMax(group.length, length); + return true; + } + }); + return baseTimes(length, function(index) { + return arrayMap(array, baseProperty(index)); + }); +} -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); +module.exports = unzip; -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); -var _Association2 = _interopRequireDefault(__webpack_require__(745)); +/***/ }), +/* 773 */ +/***/ (function(module, exports, __webpack_require__) { -var _dsl = __webpack_require__(625); +var arrayEach = __webpack_require__(569), + baseEach = __webpack_require__(657), + castFunction = __webpack_require__(774), + isArray = __webpack_require__(75); -var _types = __webpack_require__(628); +/** + * Iterates over elements of `collection` and invokes `iteratee` for each element. + * The iteratee is invoked with three arguments: (value, index|key, collection). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * **Note:** As with other "Collections" methods, objects with a "length" + * property are iterated like arrays. To avoid this behavior use `_.forIn` + * or `_.forOwn` for object iteration. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @alias each + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEachRight + * @example + * + * _.forEach([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `1` then `2`. + * + * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ +function forEach(collection, iteratee) { + var func = isArray(collection) ? arrayEach : baseEach; + return func(collection, castFunction(iteratee)); +} -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +module.exports = forEach; -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +/***/ }), +/* 774 */ +/***/ (function(module, exports, __webpack_require__) { -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +var identity = __webpack_require__(473); /** - * Here the id of the document is directly set in the attribute - * of the document, not in the relationships attribute + * Casts `value` to `identity` if it's not a function. + * + * @private + * @param {*} value The value to inspect. + * @returns {Function} Returns cast function. */ -var HasOneInPlace = /*#__PURE__*/function (_Association) { - (0, _inherits2.default)(HasOneInPlace, _Association); - - var _super = _createSuper(HasOneInPlace); - - function HasOneInPlace() { - (0, _classCallCheck2.default)(this, HasOneInPlace); - return _super.apply(this, arguments); - } - - (0, _createClass2.default)(HasOneInPlace, [{ - key: "dehydrate", - value: function dehydrate(doc) { - return _objectSpread(_objectSpread({}, doc), {}, (0, _defineProperty2.default)({}, this.name, this.raw || undefined)); - } - }, { - key: "raw", - get: function get() { - return this.target[this.name]; - } - }, { - key: "data", - get: function get() { - return this.get(this.doctype, this.raw); - } - /** - * @param {CozyClientDocument} document - Document to query - * @param {object} client - The CozyClient instance - * @param {Association} assoc - The query params - * - * @returns {CozyClientDocument | QueryDefinition} - */ +function castFunction(value) { + return typeof value == 'function' ? value : identity; +} - }], [{ - key: "query", - value: function query(document, client, assoc) { - var id = document[assoc.name]; - return client.getDocumentFromState(assoc.doctype, id) || (0, _dsl.Q)(assoc.doctype).getById(id); - } - }]); - return HasOneInPlace; -}(_Association2.default); +module.exports = castFunction; -exports.default = HasOneInPlace; -var BelongsToInPlace = HasOneInPlace; -exports.BelongsToInPlace = BelongsToInPlace; /***/ }), -/* 758 */ +/* 775 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = void 0; - -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +exports.CozyClient = void 0; -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(556)); -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); +var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(558)); -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); +var _inherits2 = _interopRequireDefault(__webpack_require__(559)); -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var _dsl = __webpack_require__(625); +var SnapshotObject = function SnapshotObject(attrs) { + (0, _classCallCheck2.default)(this, SnapshotObject); + Object.assign(this, attrs); +}; -var _types = __webpack_require__(628); +var CozyClient = +/*#__PURE__*/ +function (_SnapshotObject) { + (0, _inherits2.default)(CozyClient, _SnapshotObject); -var _Association2 = _interopRequireDefault(__webpack_require__(745)); + function CozyClient() { + (0, _classCallCheck2.default)(this, CozyClient); + return (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(CozyClient).apply(this, arguments)); + } -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + return CozyClient; +}(SnapshotObject); -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +exports.CozyClient = CozyClient; -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +/***/ }), +/* 776 */ +/***/ (function(module, exports, __webpack_require__) { -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +var createFlow = __webpack_require__(777); /** + * Creates a function that returns the result of invoking the given functions + * with the `this` binding of the created function, where each successive + * invocation is supplied the return value of the previous. * - * Used when related documents are stored directly under the attribute with - * only the ids. - * - * @property {Function} get - * - * @description - * - * An example document representing a TODO. See as the related - * tasks are represented via ids. - * - * ```js - * const todo = { - * label: "Protect people's privacy", - * tasks: [1, 2] - * } - * ``` - * - * Here is the `Schema` that would represent this kind of document. - * Components receiving todos via `Query`s would have an instance of `HasManyInPlace` - * as their `tasks` attribute. - * - * ```js - * const schema = { - * todos: { - * doctype: 'io.cozy.todos', - * relationships: { - * tasks: { - * doctype: 'io.cozy.tasks', - * type: 'has-many-in-place' - * } - * } - * } - * } + * @static + * @memberOf _ + * @since 3.0.0 + * @category Util + * @param {...(Function|Function[])} [funcs] The functions to invoke. + * @returns {Function} Returns the new composite function. + * @see _.flowRight + * @example * - * const todo = { - * label: "Get rich", - * tasks: [1, 2] + * function square(n) { + * return n * n; * } - * ``` * + * var addSquare = _.flow([_.add, square]); + * addSquare(1, 2); + * // => 9 */ -var HasManyInPlace = /*#__PURE__*/function (_Association) { - (0, _inherits2.default)(HasManyInPlace, _Association); +var flow = createFlow(); - var _super = _createSuper(HasManyInPlace); +module.exports = flow; - function HasManyInPlace() { - (0, _classCallCheck2.default)(this, HasManyInPlace); - return _super.apply(this, arguments); - } - (0, _createClass2.default)(HasManyInPlace, [{ - key: "addById", - value: function addById(id) { - var rel = this.getRelationship(); - rel.push(id); - } - }, { - key: "removeById", - value: function removeById(id) { - var rel = this.getRelationship(); - var index = rel.indexOf(id); +/***/ }), +/* 777 */ +/***/ (function(module, exports, __webpack_require__) { - if (index !== -1) { - rel.splice(index, 1); - } - } - }, { - key: "existsById", - value: function existsById(id) { - var rel = this.getRelationship(); - return rel.indexOf(id) !== -1; - } - }, { - key: "getRelationship", - value: function getRelationship() { - this.target[this.name] = this.target[this.name] || []; - return this.target[this.name]; - } - }, { - key: "dehydrate", - value: function dehydrate(doc) { - return _objectSpread(_objectSpread({}, doc), {}, (0, _defineProperty2.default)({}, this.name, this.raw || [])); - } - }, { - key: "raw", +var LodashWrapper = __webpack_require__(778), + flatRest = __webpack_require__(605), + getData = __webpack_require__(780), + getFuncName = __webpack_require__(782), + isArray = __webpack_require__(75), + isLaziable = __webpack_require__(784); - /** - * Raw property - * - * @type {Array<string>} - */ - get: function get() { - return this.target[this.name]; - } - }, { - key: "data", - get: function get() { - var _this = this; +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; - var doctype = this.doctype; - return (this.raw || []).map(function (_id) { - return _this.get(doctype, _id); - }); +/** Used to compose bitmasks for function metadata. */ +var WRAP_CURRY_FLAG = 8, + WRAP_PARTIAL_FLAG = 32, + WRAP_ARY_FLAG = 128, + WRAP_REARG_FLAG = 256; + +/** + * Creates a `_.flow` or `_.flowRight` function. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new flow function. + */ +function createFlow(fromRight) { + return flatRest(function(funcs) { + var length = funcs.length, + index = length, + prereq = LodashWrapper.prototype.thru; + + if (fromRight) { + funcs.reverse(); } - /** - * @param {CozyClientDocument} document - Document to query - * @param {object} client - The CozyClient instance - * @param {Association} assoc - The query params - * - * @returns {CozyClientDocument | QueryDefinition} - */ + while (index--) { + var func = funcs[index]; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (prereq && !wrapper && getFuncName(func) == 'wrapper') { + var wrapper = new LodashWrapper([], true); + } + } + index = wrapper ? index : length; + while (++index < length) { + func = funcs[index]; - }], [{ - key: "query", - value: function query(document, client, assoc) { - var ids = document[assoc.name]; + var funcName = getFuncName(func), + data = funcName == 'wrapper' ? getData(func) : undefined; - if (ids && ids > 0) { - return (0, _dsl.Q)(assoc.doctype).getByIds(ids); + if (data && isLaziable(data[0]) && + data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && + !data[4].length && data[9] == 1 + ) { + wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]); } else { - return null; + wrapper = (func.length == 1 && isLaziable(func)) + ? wrapper[funcName]() + : wrapper.thru(func); } } - }]); - return HasManyInPlace; -}(_Association2.default); + return function() { + var args = arguments, + value = args[0]; -var _default = HasManyInPlace; -exports.default = _default; + if (wrapper && args.length == 1 && isArray(value)) { + return wrapper.plant(value).value(); + } + var index = 0, + result = length ? funcs[index].apply(this, args) : value; -/***/ }), -/* 759 */ -/***/ (function(module, exports, __webpack_require__) { + while (++index < length) { + result = funcs[index].call(this, result); + } + return result; + }; + }); +} -"use strict"; +module.exports = createFlow; -var _interopRequireDefault = __webpack_require__(530); +/***/ }), +/* 778 */ +/***/ (function(module, exports, __webpack_require__) { -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; +var baseCreate = __webpack_require__(594), + baseLodash = __webpack_require__(779); -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +/** + * The base constructor for creating `lodash` wrapper objects. + * + * @private + * @param {*} value The value to wrap. + * @param {boolean} [chainAll] Enable explicit method chain sequences. + */ +function LodashWrapper(value, chainAll) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__chain__ = !!chainAll; + this.__index__ = 0; + this.__values__ = undefined; +} -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); +LodashWrapper.prototype = baseCreate(baseLodash.prototype); +LodashWrapper.prototype.constructor = LodashWrapper; -var _get2 = _interopRequireDefault(__webpack_require__(676)); +module.exports = LodashWrapper; -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); +/***/ }), +/* 779 */ +/***/ (function(module, exports) { -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); +/** + * The function whose prototype chain sequence wrappers inherit from. + * + * @private + */ +function baseLodash() { + // No operation performed. +} -var _HasMany2 = _interopRequireDefault(__webpack_require__(746)); +module.exports = baseLodash; -var _dsl = __webpack_require__(625); -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +/***/ }), +/* 780 */ +/***/ (function(module, exports, __webpack_require__) { -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } +var metaMap = __webpack_require__(781), + noop = __webpack_require__(485); -var TRIGGERS_DOCTYPE = 'io.cozy.triggers'; /** - * Association used for konnectors to retrieve all their related triggers. + * Gets metadata for `func`. * - * @augments HasMany + * @private + * @param {Function} func The function to query. + * @returns {*} Returns the metadata for `func`. */ +var getData = !metaMap ? noop : function(func) { + return metaMap.get(func); +}; -var HasManyTriggers = /*#__PURE__*/function (_HasMany) { - (0, _inherits2.default)(HasManyTriggers, _HasMany); +module.exports = getData; - var _super = _createSuper(HasManyTriggers); - function HasManyTriggers() { - (0, _classCallCheck2.default)(this, HasManyTriggers); - return _super.apply(this, arguments); - } +/***/ }), +/* 781 */ +/***/ (function(module, exports, __webpack_require__) { - (0, _createClass2.default)(HasManyTriggers, [{ - key: "data", - get: function get() { - var _this = this; +var WeakMap = __webpack_require__(465); - return (0, _get2.default)((0, _getPrototypeOf2.default)(HasManyTriggers.prototype), "data", this).filter(function (_ref) { - var slug = _ref.slug; - return slug === _this.target.slug; - }); - } - /** - * In this association the query is special, we need to fetch all the triggers - * having for the 'konnector' worker, and then filter them based on their - * `message.konnector` attribute - */ +/** Used to store function metadata. */ +var metaMap = WeakMap && new WeakMap; - }], [{ - key: "query", - value: function query(doc, client) { - return (0, _dsl.Q)(TRIGGERS_DOCTYPE).where({ - worker: 'konnector' - }); - } - }]); - return HasManyTriggers; -}(_HasMany2.default); +module.exports = metaMap; -var _default = HasManyTriggers; -exports.default = _default; /***/ }), -/* 760 */ +/* 782 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var realNames = __webpack_require__(783); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; -var _interopRequireDefault = __webpack_require__(530); +/** + * Gets the name of `func`. + * + * @private + * @param {Function} func The function to query. + * @returns {string} Returns the function name. + */ +function getFuncName(func) { + var result = (func.name + ''), + array = realNames[result], + length = hasOwnProperty.call(realNames, result) ? array.length : 0; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.create = exports.resolveClass = exports.attachRelationships = exports.responseToRelationship = exports.pickTypeAndId = void 0; + while (length--) { + var data = array[length], + otherFunc = data.func; + if (otherFunc == null || otherFunc == func) { + return data.name; + } + } + return result; +} -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +module.exports = getFuncName; -var _pick = _interopRequireDefault(__webpack_require__(671)); -var _pickBy = _interopRequireDefault(__webpack_require__(655)); +/***/ }), +/* 783 */ +/***/ (function(module, exports) { -var _Association = _interopRequireDefault(__webpack_require__(745)); +/** Used to lookup unminified function names. */ +var realNames = {}; -var _HasOne = _interopRequireDefault(__webpack_require__(755)); +module.exports = realNames; -var _HasOneInPlace = _interopRequireDefault(__webpack_require__(757)); -var _HasMany = _interopRequireDefault(__webpack_require__(746)); +/***/ }), +/* 784 */ +/***/ (function(module, exports, __webpack_require__) { -var _HasManyInPlace = _interopRequireDefault(__webpack_require__(758)); +var LazyWrapper = __webpack_require__(785), + getData = __webpack_require__(780), + getFuncName = __webpack_require__(782), + lodash = __webpack_require__(786); -var _HasManyFiles = _interopRequireDefault(__webpack_require__(697)); +/** + * Checks if `func` has a lazy counterpart. + * + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` has a lazy counterpart, + * else `false`. + */ +function isLaziable(func) { + var funcName = getFuncName(func), + other = lodash[funcName]; -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { + return false; + } + if (func === other) { + return true; + } + var data = getData(other); + return !!data && func === data[0]; +} -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +module.exports = isLaziable; -var pickTypeAndId = function pickTypeAndId(x) { - return (0, _pick.default)(x, '_type', '_id'); -}; -exports.pickTypeAndId = pickTypeAndId; +/***/ }), +/* 785 */ +/***/ (function(module, exports, __webpack_require__) { -var applyHelper = function applyHelper(fn, objOrArr) { - return Array.isArray(objOrArr) ? objOrArr.map(fn) : fn(objOrArr); -}; +var baseCreate = __webpack_require__(594), + baseLodash = __webpack_require__(779); -var responseToRelationship = function responseToRelationship(response) { - return (0, _pickBy.default)({ - data: applyHelper(pickTypeAndId, response.data), - meta: response.meta, - next: response.next, - skip: response.skip, - bookmark: response.bookmark - }); -}; +/** Used as references for the maximum length and index of an array. */ +var MAX_ARRAY_LENGTH = 4294967295; -exports.responseToRelationship = responseToRelationship; +/** + * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. + * + * @private + * @constructor + * @param {*} value The value to wrap. + */ +function LazyWrapper(value) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__dir__ = 1; + this.__filtered__ = false; + this.__iteratees__ = []; + this.__takeCount__ = MAX_ARRAY_LENGTH; + this.__views__ = []; +} -var attachRelationship = function attachRelationship(doc, relationships) { - return _objectSpread(_objectSpread({}, doc), {}, { - relationships: _objectSpread(_objectSpread({}, doc.relationships), relationships) - }); -}; +// Ensure `LazyWrapper` is an instance of `baseLodash`. +LazyWrapper.prototype = baseCreate(baseLodash.prototype); +LazyWrapper.prototype.constructor = LazyWrapper; -var attachRelationships = function attachRelationships(response, relationshipsByDocId) { - if (Array.isArray(response.data)) { - return _objectSpread(_objectSpread({}, response), {}, { - data: response.data.map(function (doc) { - return attachRelationship(doc, relationshipsByDocId[doc._id]); - }) - }); - } else { - var doc = response.data; - return _objectSpread(_objectSpread({}, response), {}, { - data: attachRelationship(doc, relationshipsByDocId[doc._id]) - }); - } -}; +module.exports = LazyWrapper; + + +/***/ }), +/* 786 */ +/***/ (function(module, exports, __webpack_require__) { + +var LazyWrapper = __webpack_require__(785), + LodashWrapper = __webpack_require__(778), + baseLodash = __webpack_require__(779), + isArray = __webpack_require__(75), + isObjectLike = __webpack_require__(73), + wrapperClone = __webpack_require__(787); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; -exports.attachRelationships = attachRelationships; -var aliases = { - 'io.cozy.files:has-many': _HasManyFiles.default, - 'has-many': _HasMany.default, - 'belongs-to-in-place': _HasOneInPlace.default, - 'has-one': _HasOne.default, - 'has-one-in-place': _HasOneInPlace.default, - 'has-many-in-place': _HasManyInPlace.default -}; /** - * Returns the relationship class for a given doctype/type. + * Creates a `lodash` object which wraps `value` to enable implicit method + * chain sequences. Methods that operate on and return arrays, collections, + * and functions can be chained together. Methods that retrieve a single value + * or may return a primitive value will automatically end the chain sequence + * and return the unwrapped value. Otherwise, the value must be unwrapped + * with `_#value`. * - * In the schema definition, some classes have string aliases - * so you do not have to import directly the association. + * Explicit chain sequences, which must be unwrapped with `_#value`, may be + * enabled using `_.chain`. * - * Some doctypes can have built-in overriden relationships. + * The execution of chained methods is lazy, that is, it's deferred until + * `_#value` is implicitly or explicitly called. * - * @private + * Lazy evaluation allows several methods to support shortcut fusion. + * Shortcut fusion is an optimization to merge iteratee calls; this avoids + * the creation of intermediate arrays and can greatly reduce the number of + * iteratee executions. Sections of a chain sequence qualify for shortcut + * fusion if the section is applied to an array and iteratees accept only + * one argument. The heuristic for whether a section qualifies for shortcut + * fusion is subject to change. + * + * Chaining is supported in custom builds as long as the `_#value` method is + * directly or indirectly included in the build. + * + * In addition to lodash methods, wrappers have `Array` and `String` methods. + * + * The wrapper `Array` methods are: + * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` + * + * The wrapper `String` methods are: + * `replace` and `split` + * + * The wrapper methods that support shortcut fusion are: + * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, + * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, + * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` + * + * The chainable wrapper methods are: + * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, + * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, + * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, + * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, + * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, + * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, + * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, + * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, + * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, + * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, + * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, + * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, + * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, + * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, + * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, + * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, + * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, + * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, + * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, + * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, + * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, + * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, + * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, + * `zipObject`, `zipObjectDeep`, and `zipWith` + * + * The wrapper methods that are **not** chainable by default are: + * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, + * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, + * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, + * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, + * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, + * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, + * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, + * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, + * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, + * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, + * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, + * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, + * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, + * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, + * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, + * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, + * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, + * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, + * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, + * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, + * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, + * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, + * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, + * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, + * `upperFirst`, `value`, and `words` + * + * @name _ + * @constructor + * @category Seq + * @param {*} value The value to wrap in a `lodash` instance. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2, 3]); + * + * // Returns an unwrapped value. + * wrapped.reduce(_.add); + * // => 6 + * + * // Returns a wrapped value. + * var squares = wrapped.map(square); + * + * _.isArray(squares); + * // => false + * + * _.isArray(squares.value()); + * // => true */ - -var resolveClass = function resolveClass(doctype, type) { - if (type === undefined) { - throw new Error('Undefined type for ' + doctype); +function lodash(value) { + if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { + if (value instanceof LodashWrapper) { + return value; + } + if (hasOwnProperty.call(value, '__wrapped__')) { + return wrapperClone(value); + } } + return new LodashWrapper(value); +} - if (typeof type !== 'string') { - return type; - } else { - var qualified = "".concat(doctype, ":").concat(type); - var cls = aliases[qualified] || aliases[type]; +// Ensure wrappers are instances of `baseLodash`. +lodash.prototype = baseLodash.prototype; +lodash.prototype.constructor = lodash; - if (!cls) { - throw new Error("Unknown association '".concat(type, "'")); - } else { - return cls; - } - } -}; +module.exports = lodash; -exports.resolveClass = resolveClass; -var create = function create(target, _ref, accessors) { - var name = _ref.name, - type = _ref.type, - doctype = _ref.doctype; +/***/ }), +/* 787 */ +/***/ (function(module, exports, __webpack_require__) { - if (target[name] instanceof _Association.default) { - throw new Error("Association ".concat(name, " already exists")); +var LazyWrapper = __webpack_require__(785), + LodashWrapper = __webpack_require__(778), + copyArray = __webpack_require__(580); + +/** + * Creates a clone of `wrapper`. + * + * @private + * @param {Object} wrapper The wrapper to clone. + * @returns {Object} Returns the cloned wrapper. + */ +function wrapperClone(wrapper) { + if (wrapper instanceof LazyWrapper) { + return wrapper.clone(); } + var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); + result.__actions__ = copyArray(wrapper.__actions__); + result.__index__ = wrapper.__index__; + result.__values__ = wrapper.__values__; + return result; +} - return new type(target, name, doctype, accessors); -}; +module.exports = wrapperClone; -exports.create = create; /***/ }), -/* 761 */ +/* 788 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); - Object.defineProperty(exports, "__esModule", { value: true }); -exports.generateWebLink = exports.dehydrate = void 0; - -var _slicedToArray2 = _interopRequireDefault(__webpack_require__(538)); - -var _associations = __webpack_require__(696); - -function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } - -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } - -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } +exports.hasQueryBeenLoaded = exports.isQueryLoading = exports.cancelable = void 0; -var dehydrate = function dehydrate(document) { - var dehydrated = Object.entries(document).reduce(function (documentArg, _ref) { - var _ref2 = (0, _slicedToArray2.default)(_ref, 2), - key = _ref2[0], - value = _ref2[1]; +/** + * Wraps a promise so that it can be canceled + * + * Rejects with canceled: true as soon as cancel is called + * + * @param {Promise} promise + * @returns {AugmentedPromise} - Promise with .cancel method + */ +var cancelable = function cancelable(promise) { + var _reject; - var document = documentArg; + var wrapped = new Promise(function (resolve, reject) { + _reject = reject; + promise.then(resolve); + promise.catch(reject); + }); - if (!(value instanceof _associations.Association)) { - document[key] = value; // @ts-ignore - } else if (value.dehydrate) { - // @ts-ignore - document = value.dehydrate(document); - } else { - throw new Error("Association on key ".concat(key, " should have a dehydrate method")); - } + wrapped.cancel = function () { + _reject({ + canceled: true + }); + }; - return document; - }, {}); - return dehydrated; + return wrapped; }; -exports.dehydrate = dehydrate; +exports.cancelable = cancelable; -var ensureFirstSlash = function ensureFirstSlash(path) { - if (!path) { - return '/'; - } else { - return path.startsWith('/') ? path : '/' + path; - } -}; /** - * generateWebLink - Construct a link to a web app - * - * This function does not get its cozy url from a CozyClient instance so it can - * be used to build urls that point to other Cozies than the user's own Cozy. - * This is useful when pointing to the Cozy of the owner of a shared note for - * example. - * - * @param {object} options Object of options - * @param {string} options.cozyUrl Base URL of the cozy, eg. cozy.tools or test.mycozy.cloud - * @param {Array} [options.searchParams] Array of search parameters as [key, value] arrays, eg. ['username', 'bob'] - * @param {string} [options.pathname] Path to a specific part of the app, eg. /public - * @param {string} [options.hash] Path inside the app, eg. /files/test.jpg - * @param {string} [options.slug] Slug of the app - * @param {string} [options.subDomainType] Whether the cozy is using flat or nested subdomains. Defaults to flat. - * - * @returns {string} Generated URL + * Returns whether the result of a query (given via queryConnect or Query) + * is loading. */ +var isQueryLoading = function isQueryLoading(col) { + if (!col) { + console.warn('isQueryLoading called on falsy value.'); // eslint-disable-line no-console + return false; + } -var generateWebLink = function generateWebLink(_ref3) { - var cozyUrl = _ref3.cozyUrl, - searchParamsOption = _ref3.searchParams, - pathname = _ref3.pathname, - hash = _ref3.hash, - slug = _ref3.slug, - subDomainType = _ref3.subDomainType; - var searchParams = searchParamsOption || []; - var url = new URL(cozyUrl); - url.host = subDomainType === 'nested' ? "".concat(slug, ".").concat(url.host) : url.host.split('.').map(function (x, i) { - return i === 0 ? x + '-' + slug : x; - }).join('.'); - url.pathname = pathname; - url.hash = ensureFirstSlash(hash); - - var _iterator = _createForOfIteratorHelper(searchParams), - _step; + return col.fetchStatus === 'loading' || col.fetchStatus === 'pending'; +}; +/** + * Returns whether a query has been loaded at least once + */ - try { - for (_iterator.s(); !(_step = _iterator.n()).done;) { - var _step$value = (0, _slicedToArray2.default)(_step.value, 2), - param = _step$value[0], - value = _step$value[1]; - url.searchParams.set(param, value); - } - } catch (err) { - _iterator.e(err); - } finally { - _iterator.f(); - } +exports.isQueryLoading = isQueryLoading; - return url.toString(); +var hasQueryBeenLoaded = function hasQueryBeenLoaded(col) { + return col.lastFetch; }; -exports.generateWebLink = generateWebLink; +exports.hasQueryBeenLoaded = hasQueryBeenLoaded; /***/ }), -/* 762 */ +/* 789 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.authFunction = exports.authenticateWithCordova = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); +exports.default = void 0; -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -var _const = __webpack_require__(690); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var _cozyDeviceHelper = __webpack_require__(763); +var _classCallCheck2 = _interopRequireDefault(__webpack_require__(552)); -var _types = __webpack_require__(628); +var _createClass2 = _interopRequireDefault(__webpack_require__(553)); -/* global prompt */ +__webpack_require__(790); -/** - * @type {CordovaWindow} - */ -// @ts-ignore -var win = typeof window !== 'undefined' ? window : null; -/** - * Open a SafariView Controller and resolve with the URL containing the token - * - * @param {string} url - * @returns {Promise} - */ +var _terms = _interopRequireDefault(__webpack_require__(791)); -var authenticateWithSafari = function authenticateWithSafari(url) { - return new Promise(function (resolve, reject) { - win.SafariViewController.show({ - url: url, - transition: 'curl' // (this only works in iOS 9.1/9.2 and lower) unless animated is false you can choose from: curl, flip, fade, slide (default) - // enterReaderModeIfAvailable: readerMode, // default false - // tintColor: "#00ffff", // default is ios blue - // barColor: "#0000ff", // on iOS 10+ you can change the background color as well - // controlTintColor: "#ffffff" // on iOS 10+ you can override the default tintColor +var _constants = __webpack_require__(792); - }, // this success handler will be invoked for the lifecycle events 'opened', 'loaded' and 'closed' - function (result) { - if (result.event === 'closed') { - reject(new Error(_const.REGISTRATION_ABORT)); - } - }, function (error) { - console.log('KO: ' + error); - reject(new Error(_const.REGISTRATION_ABORT)); - }); - var handle = win.handleOpenURL; +var queryPartFromOptions = function queryPartFromOptions(options) { + var query = new URLSearchParams(options).toString(); + return query ? "?".concat(query) : ''; +}; - win.handleOpenURL = function (url) { - win.SafariViewController.hide(); - resolve(url); +var getBaseRoute = function getBaseRoute(app) { + var type = app.type; // TODO node is an historic type, it should be `konnector`, check with the back - if (handle) { - win.handleOpenURL = handle; - } - }; - }); + var route = type === _constants.APP_TYPE.KONNECTOR || type === 'node' ? 'konnectors' : 'apps'; + return "/".concat(route); }; /** - * Opens an InAppBrowser and resolves with the URL containing the token - * - * @param {string} url - * @returns {Promise} + *@typedef {RegistryApp} */ -var authenticateWithInAppBrowser = function authenticateWithInAppBrowser(url) { - return new Promise(function (resolve, reject) { - var target = '_blank'; - var options = 'clearcache=yes,zoom=no'; - var inAppBrowser = win.cordova.InAppBrowser.open(url, target, options); +var Registry = +/*#__PURE__*/ +function () { + function Registry(options) { + (0, _classCallCheck2.default)(this, Registry); - var removeListener = function removeListener() { - inAppBrowser.removeEventListener('loadstart', onLoadStart); - inAppBrowser.removeEventListener('exit', onExit); - }; + if (!options.client) { + throw new Error('Need to pass a client to instantiate a Registry API.'); + } - var onLoadStart = function onLoadStart(_ref) { - var url = _ref.url; - var accessCode = /\?access_code=(.+)$/.test(url); - var state = /\?state=(.+)$/.test(url); + this.client = options.client; + } + /** + * Installs or updates an app from a source. + * + * Accepts the terms if the app has them. + * + * @param {RegistryApp} app - App to be installed + * @param {string} source - String (ex: registry://drive/stable) + * @returns {Promise} + */ - if (accessCode || state) { - resolve(url); - removeListener(); - inAppBrowser.close(); - } - }; - var onExit = function onExit() { - reject(new Error(_const.REGISTRATION_ABORT)); - removeListener(); - inAppBrowser.close(); - }; + (0, _createClass2.default)(Registry, [{ + key: "installApp", + value: function () { + var _installApp = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(app, source) { + var slug, terms, searchParams, isUpdate, querypart, verb, baseRoute; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + slug = app.slug, terms = app.terms; + searchParams = {}; + isUpdate = app.installed; + if (isUpdate) searchParams.PermissionsAcked = isUpdate; + if (source) searchParams.Source = source; + querypart = queryPartFromOptions(searchParams); - inAppBrowser.addEventListener('loadstart', onLoadStart); - inAppBrowser.addEventListener('exit', onExit); - }); -}; + if (!terms) { + _context.next = 9; + break; + } -var authenticateWithCordova = /*#__PURE__*/function () { - var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(url) { - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - _context.t0 = (0, _cozyDeviceHelper.isIOSApp)(); + _context.next = 9; + return _terms.default.save(this.client, terms); - if (!_context.t0) { - _context.next = 5; - break; + case 9: + verb = app.installed ? 'PUT' : 'POST'; + baseRoute = getBaseRoute(app); + return _context.abrupt("return", this.client.stackClient.fetchJSON(verb, "".concat(baseRoute, "/").concat(slug).concat(querypart))); + + case 12: + case "end": + return _context.stop(); } + } + }, _callee, this); + })); - _context.next = 4; - return (0, _cozyDeviceHelper.hasSafariPlugin)(); + return function installApp(_x, _x2) { + return _installApp.apply(this, arguments); + }; + }() + /** + * Uninstalls an app. + */ - case 4: - _context.t0 = _context.sent; + }, { + key: "uninstallApp", + value: function () { + var _uninstallApp = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(app) { + var slug, baseRoute; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + slug = app.slug; + baseRoute = getBaseRoute(app); + return _context2.abrupt("return", this.client.stackClient.fetchJSON('DELETE', "".concat(baseRoute, "/").concat(slug))); - case 5: - if (!_context.t0) { - _context.next = 9; - break; + case 3: + case "end": + return _context2.stop(); } + } + }, _callee2, this); + })); - return _context.abrupt("return", authenticateWithSafari(url)); + return function uninstallApp(_x3) { + return _uninstallApp.apply(this, arguments); + }; + }() + /** + * Fetch at most 200 apps from the channel + * + * @param {string} params - Fetching parameters + * @param {string} params.type - "webapp" or "konnector" + * @param {string} params.channel - "dev"/"beta"/"stable" + * + * @returns {Array<RegistryApp>} + */ - case 9: - if (!(0, _cozyDeviceHelper.hasInAppBrowserPlugin)()) { - _context.next = 13; - break; - } + }, { + key: "fetchApps", + value: function () { + var _fetchApps = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(params) { + var channel, type, searchParams, querypart, _ref, apps; - return _context.abrupt("return", authenticateWithInAppBrowser(url)); + return _regenerator.default.wrap(function _callee3$(_context3) { + while (1) { + switch (_context3.prev = _context3.next) { + case 0: + channel = params.channel, type = params.type; + searchParams = { + limit: 200, + versionsChannel: channel, + latestChannelVersion: channel + }; + querypart = new URLSearchParams(searchParams).toString(); - case 13: - /** - * for dev purpose: - * In oauth workflow, the server displays an authorization page - * User must accept to give permission then the server gives an url - * with query parameters used by cozy-client-js to initialize itself. - * - * This hack let developers open the authorization page in a new tab - * then get the "access_code" url and paste it in the prompt to let the - * application initialize and redirect to other pages. - */ - console.log(url); // Useful for dev (see above). + if (type) { + // Unfortunately, URLSearchParams encodes brackets so we have to do + // the querypart handling manually + querypart = querypart + "&filter[type]=".concat(type); + } - return _context.abrupt("return", new Promise(function (resolve) { - setTimeout(function () { - var token = prompt('Paste the url here:'); - resolve(token); - }, 5000); - })); + _context3.next = 6; + return this.client.stackClient.fetchJSON('GET', "/registry?".concat(querypart)); - case 15: - case "end": - return _context.stop(); - } - } - }, _callee); - })); + case 6: + _ref = _context3.sent; + apps = _ref.data; + return _context3.abrupt("return", apps); - return function authenticateWithCordova(_x) { - return _ref2.apply(this, arguments); - }; + case 9: + case "end": + return _context3.stop(); + } + } + }, _callee3, this); + })); + + return function fetchApps(_x4) { + return _fetchApps.apply(this, arguments); + }; + }() + /** + * Fetch the list of apps that are in maintenance mode + * + * @returns {Array<RegistryApp>} + */ + + }, { + key: "fetchAppsInMaintenance", + value: function fetchAppsInMaintenance() { + return this.client.stackClient.fetchJSON('GET', '/registry/maintenance'); + } + /** + * Fetch the status of a single app on the registry + * + * @param {string} slug - The slug of the app to fetch + * + * @returns {RegistryApp} + */ + + }, { + key: "fetchApp", + value: function fetchApp(slug) { + return this.client.stackClient.fetchJSON('GET', "/registry/".concat(slug)); + } + }]); + return Registry; }(); -exports.authenticateWithCordova = authenticateWithCordova; -var authFunction = authenticateWithCordova; -exports.authFunction = authFunction; +var _default = Registry; +exports.default = _default; /***/ }), -/* 763 */ -/***/ (function(module, exports, __webpack_require__) { +/* 790 */ +/***/ (function(module, exports) { -"use strict"; +/** + * + * + * @author Jerry Bendy <jerry@icewingcc.com> + * @licence MIT + * + */ +(function(self) { + 'use strict'; -Object.defineProperty(exports, "__esModule", { - value: true -}); -Object.defineProperty(exports, "getPlatform", { - enumerable: true, - get: function get() { - return _platform.getPlatform; - } -}); -Object.defineProperty(exports, "isIOSApp", { - enumerable: true, - get: function get() { - return _platform.isIOSApp; - } -}); -Object.defineProperty(exports, "isAndroidApp", { - enumerable: true, - get: function get() { - return _platform.isAndroidApp; - } -}); -Object.defineProperty(exports, "isWebApp", { - enumerable: true, - get: function get() { - return _platform.isWebApp; - } -}); -Object.defineProperty(exports, "isMobileApp", { - enumerable: true, - get: function get() { - return _platform.isMobileApp; - } -}); -Object.defineProperty(exports, "isAndroid", { - enumerable: true, - get: function get() { - return _platform.isAndroid; - } -}); -Object.defineProperty(exports, "isIOS", { - enumerable: true, - get: function get() { - return _platform.isIOS; - } -}); -Object.defineProperty(exports, "isMobile", { - enumerable: true, - get: function get() { - return _platform.isMobile; - } -}); -Object.defineProperty(exports, "getDeviceName", { - enumerable: true, - get: function get() { - return _device.getDeviceName; - } -}); -Object.defineProperty(exports, "checkApp", { - enumerable: true, - get: function get() { - return _apps.checkApp; - } -}); -Object.defineProperty(exports, "startApp", { - enumerable: true, - get: function get() { - return _apps.startApp; - } -}); -Object.defineProperty(exports, "hasDevicePlugin", { - enumerable: true, - get: function get() { - return _plugins.hasDevicePlugin; - } -}); -Object.defineProperty(exports, "hasInAppBrowserPlugin", { - enumerable: true, - get: function get() { - return _plugins.hasInAppBrowserPlugin; - } -}); -Object.defineProperty(exports, "hasSafariPlugin", { - enumerable: true, - get: function get() { - return _plugins.hasSafariPlugin; - } -}); -Object.defineProperty(exports, "hasNetworkInformationPlugin", { - enumerable: true, - get: function get() { - return _plugins.hasNetworkInformationPlugin; - } -}); -Object.defineProperty(exports, "isCordova", { - enumerable: true, - get: function get() { - return _cordova.isCordova; - } -}); -Object.defineProperty(exports, "nativeLinkOpen", { - enumerable: true, - get: function get() { - return _link.nativeLinkOpen; - } -}); -Object.defineProperty(exports, "openDeeplinkOrRedirect", { - enumerable: true, - get: function get() { - return _deeplink.openDeeplinkOrRedirect; - } -}); + var nativeURLSearchParams = (self.URLSearchParams && self.URLSearchParams.prototype.get) ? self.URLSearchParams : null, + isSupportObjectConstructor = nativeURLSearchParams && (new nativeURLSearchParams({a: 1})).toString() === 'a=1', + // There is a bug in safari 10.1 (and earlier) that incorrectly decodes `%2B` as an empty space and not a plus. + decodesPlusesCorrectly = nativeURLSearchParams && (new nativeURLSearchParams('s=%2B').get('s') === '+'), + __URLSearchParams__ = "__URLSearchParams__", + // Fix bug in Edge which cannot encode ' &' correctly + encodesAmpersandsCorrectly = nativeURLSearchParams ? (function() { + var ampersandTest = new nativeURLSearchParams(); + ampersandTest.append('s', ' &'); + return ampersandTest.toString() === 's=+%26'; + })() : true, + prototype = URLSearchParamsPolyfill.prototype, + iterable = !!(self.Symbol && self.Symbol.iterator); + + if (nativeURLSearchParams && isSupportObjectConstructor && decodesPlusesCorrectly && encodesAmpersandsCorrectly) { + return; + } + + + /** + * Make a URLSearchParams instance + * + * @param {object|string|URLSearchParams} search + * @constructor + */ + function URLSearchParamsPolyfill(search) { + search = search || ""; -var _platform = __webpack_require__(764); + // support construct object with another URLSearchParams instance + if (search instanceof URLSearchParams || search instanceof URLSearchParamsPolyfill) { + search = search.toString(); + } + this [__URLSearchParams__] = parseToDict(search); + } -var _device = __webpack_require__(766); -var _apps = __webpack_require__(776); + /** + * Appends a specified key/value pair as a new search parameter. + * + * @param {string} name + * @param {string} value + */ + prototype.append = function(name, value) { + appendTo(this [__URLSearchParams__], name, value); + }; -var _plugins = __webpack_require__(775); + /** + * Deletes the given search parameter, and its associated value, + * from the list of all search parameters. + * + * @param {string} name + */ + prototype['delete'] = function(name) { + delete this [__URLSearchParams__] [name]; + }; -var _cordova = __webpack_require__(765); + /** + * Returns the first value associated to the given search parameter. + * + * @param {string} name + * @returns {string|null} + */ + prototype.get = function(name) { + var dict = this [__URLSearchParams__]; + return name in dict ? dict[name][0] : null; + }; -var _link = __webpack_require__(777); + /** + * Returns all the values association with a given search parameter. + * + * @param {string} name + * @returns {Array} + */ + prototype.getAll = function(name) { + var dict = this [__URLSearchParams__]; + return name in dict ? dict [name].slice(0) : []; + }; -var _deeplink = __webpack_require__(778); + /** + * Returns a Boolean indicating if such a search parameter exists. + * + * @param {string} name + * @returns {boolean} + */ + prototype.has = function(name) { + return name in this [__URLSearchParams__]; + }; -/***/ }), -/* 764 */ -/***/ (function(module, exports, __webpack_require__) { + /** + * Sets the value associated to a given search parameter to + * the given value. If there were several values, delete the + * others. + * + * @param {string} name + * @param {string} value + */ + prototype.set = function set(name, value) { + this [__URLSearchParams__][name] = ['' + value]; + }; -"use strict"; + /** + * Returns a string containg a query string suitable for use in a URL. + * + * @returns {string} + */ + prototype.toString = function() { + var dict = this[__URLSearchParams__], query = [], i, key, name, value; + for (key in dict) { + name = encode(key); + for (i = 0, value = dict[key]; i < value.length; i++) { + query.push(name + '=' + encode(value[i])); + } + } + return query.join('&'); + }; + // There is a bug in Safari 10.1 and `Proxy`ing it is not enough. + var forSureUsePolyfill = !decodesPlusesCorrectly; + var useProxy = (!forSureUsePolyfill && nativeURLSearchParams && !isSupportObjectConstructor && self.Proxy); + /* + * Apply polifill to global object and append other prototype into it + */ + Object.defineProperty(self, 'URLSearchParams', { + value: (useProxy ? + // Safari 10.0 doesn't support Proxy, so it won't extend URLSearchParams on safari 10.0 + new Proxy(nativeURLSearchParams, { + construct: function(target, args) { + return new target((new URLSearchParamsPolyfill(args[0]).toString())); + } + }) : + URLSearchParamsPolyfill) + }); -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.isMobile = exports.isIOS = exports.isAndroid = exports.isMobileApp = exports.isWebApp = exports.isAndroidApp = exports.isIOSApp = exports.getPlatform = void 0; + var USPProto = self.URLSearchParams.prototype; -var _cordova = __webpack_require__(765); + USPProto.polyfill = true; -var WEB_PLATFORM = 'web'; -var IOS_PLATFORM = 'ios'; -var ANDROID_PLATFORM = 'android'; + /** + * + * @param {function} callback + * @param {object} thisArg + */ + USPProto.forEach = USPProto.forEach || function(callback, thisArg) { + var dict = parseToDict(this.toString()); + Object.getOwnPropertyNames(dict).forEach(function(name) { + dict[name].forEach(function(value) { + callback.call(thisArg, value, name, this); + }, this); + }, this); + }; -var getPlatform = function getPlatform() { - return (0, _cordova.isCordova)() ? window.cordova.platformId : WEB_PLATFORM; -}; + /** + * Sort all name-value pairs + */ + USPProto.sort = USPProto.sort || function() { + var dict = parseToDict(this.toString()), keys = [], k, i, j; + for (k in dict) { + keys.push(k); + } + keys.sort(); -exports.getPlatform = getPlatform; + for (i = 0; i < keys.length; i++) { + this['delete'](keys[i]); + } + for (i = 0; i < keys.length; i++) { + var key = keys[i], values = dict[key]; + for (j = 0; j < values.length; j++) { + this.append(key, values[j]); + } + } + }; -var isPlatform = function isPlatform(platform) { - return getPlatform() === platform; -}; + /** + * Returns an iterator allowing to go through all keys of + * the key/value pairs contained in this object. + * + * @returns {function} + */ + USPProto.keys = USPProto.keys || function() { + var items = []; + this.forEach(function(item, name) { + items.push(name); + }); + return makeIterator(items); + }; -var isIOSApp = function isIOSApp() { - return isPlatform(IOS_PLATFORM); -}; + /** + * Returns an iterator allowing to go through all values of + * the key/value pairs contained in this object. + * + * @returns {function} + */ + USPProto.values = USPProto.values || function() { + var items = []; + this.forEach(function(item) { + items.push(item); + }); + return makeIterator(items); + }; -exports.isIOSApp = isIOSApp; + /** + * Returns an iterator allowing to go through all key/value + * pairs contained in this object. + * + * @returns {function} + */ + USPProto.entries = USPProto.entries || function() { + var items = []; + this.forEach(function(item, name) { + items.push([name, item]); + }); + return makeIterator(items); + }; -var isAndroidApp = function isAndroidApp() { - return isPlatform(ANDROID_PLATFORM); -}; -exports.isAndroidApp = isAndroidApp; + if (iterable) { + USPProto[self.Symbol.iterator] = USPProto[self.Symbol.iterator] || USPProto.entries; + } -var isWebApp = function isWebApp() { - return isPlatform(WEB_PLATFORM); -}; -exports.isWebApp = isWebApp; + function encode(str) { + var replace = { + '!': '%21', + "'": '%27', + '(': '%28', + ')': '%29', + '~': '%7E', + '%20': '+', + '%00': '\x00' + }; + return encodeURIComponent(str).replace(/[!'\(\)~]|%20|%00/g, function(match) { + return replace[match]; + }); + } -var isMobileApp = function isMobileApp() { - return (0, _cordova.isCordova)(); -}; // return if is on an Android Device (native or browser) + function decode(str) { + return str + .replace(/[ +]/g, '%20') + .replace(/(%[a-f0-9]{2})+/ig, function(match) { + return decodeURIComponent(match); + }); + } + function makeIterator(arr) { + var iterator = { + next: function() { + var value = arr.shift(); + return {done: value === undefined, value: value}; + } + }; -exports.isMobileApp = isMobileApp; + if (iterable) { + iterator[self.Symbol.iterator] = function() { + return iterator; + }; + } -var isAndroid = function isAndroid() { - return window.navigator.userAgent && window.navigator.userAgent.indexOf('Android') >= 0; -}; // return if is on an iOS Device (native or browser) + return iterator; + } + function parseToDict(search) { + var dict = {}; -exports.isAndroid = isAndroid; + if (typeof search === "object") { + // if `search` is an array, treat it as a sequence + if (isArray(search)) { + for (var i = 0; i < search.length; i++) { + var item = search[i]; + if (isArray(item) && item.length === 2) { + appendTo(dict, item[0], item[1]); + } else { + throw new TypeError("Failed to construct 'URLSearchParams': Sequence initializer must only contain pair elements"); + } + } -var isIOS = function isIOS() { - return window.navigator.userAgent && /iPad|iPhone|iPod/.test(window.navigator.userAgent); -}; // isMobile checks if the user is on a smartphone : native app or browser + } else { + for (var key in search) { + if (search.hasOwnProperty(key)) { + appendTo(dict, key, search[key]); + } + } + } + } else { + // remove first '?' + if (search.indexOf("?") === 0) { + search = search.slice(1); + } -exports.isIOS = isIOS; + var pairs = search.split("&"); + for (var j = 0; j < pairs.length; j++) { + var value = pairs [j], + index = value.indexOf('='); -var isMobile = function isMobile() { - return isAndroid() || isIOS(); -}; + if (-1 < index) { + appendTo(dict, decode(value.slice(0, index)), decode(value.slice(index + 1))); -exports.isMobile = isMobile; + } else { + if (value) { + appendTo(dict, decode(value), ''); + } + } + } + } -/***/ }), -/* 765 */ -/***/ (function(module, exports, __webpack_require__) { + return dict; + } -"use strict"; + function appendTo(dict, name, value) { + var val = typeof value === 'string' ? value : ( + value !== null && value !== undefined && typeof value.toString === 'function' ? value.toString() : JSON.stringify(value) + ) + if (name in dict) { + dict[name].push(val); + } else { + dict[name] = [val]; + } + } -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.isCordova = void 0; + function isArray(val) { + return !!val && '[object Array]' === Object.prototype.toString.call(val); + } -// cordova -var isCordova = function isCordova() { - return typeof window !== 'undefined' && window.cordova !== undefined; -}; +})(typeof global !== 'undefined' ? global : (typeof window !== 'undefined' ? window : this)); -exports.isCordova = isCordova; /***/ }), -/* 766 */ +/* 791 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.getDeviceName = void 0; +exports.default = void 0; -var _capitalize = _interopRequireDefault(__webpack_require__(767)); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); -var _cordova = __webpack_require__(765); +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -var _plugins = __webpack_require__(775); +var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(550)); -var _platform = __webpack_require__(764); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); -var DEFAULT_DEVICE = 'Device'; // device +var TERMS_DOCTYPE = 'io.cozy.terms'; +/* TODO Use collection terms */ -var getAppleModel = function getAppleModel(identifier) { - var devices = ['iPhone', 'iPad', 'Watch', 'AppleTV']; +function save(_x, _x2) { + return _save.apply(this, arguments); +} - for (var _i = 0, _devices = devices; _i < _devices.length; _i++) { - var device = _devices[_i]; +function _save() { + _save = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(client, terms) { + var id, termsAttributes, _ref, savedTermsDocs, savedTerms, termsToSave, _termsToSave; - if (identifier.match(new RegExp(device))) { - return device; - } - } + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + id = terms.id, termsAttributes = (0, _objectWithoutProperties2.default)(terms, ["id"]); + _context.next = 3; + return client.query({ + doctype: TERMS_DOCTYPE, + selector: { + termsId: id, + version: termsAttributes.version + }, + limit: 1 + }); - return DEFAULT_DEVICE; -}; + case 3: + _ref = _context.sent; + savedTermsDocs = _ref.data; -var getDeviceName = function getDeviceName() { - if (!(0, _plugins.hasDevicePlugin)()) { - if ((0, _cordova.isCordova)()) { - console.warn('You should install `cordova-plugin-device`.'); // eslint-disable-line no-console - } + if (!(savedTermsDocs && savedTermsDocs.length)) { + _context.next = 13; + break; + } - return DEFAULT_DEVICE; - } + // we just update the url if this is the same id and same version + // but the url changed + savedTerms = savedTermsDocs[0]; - var _window$device = window.device, - manufacturer = _window$device.manufacturer, - originalModel = _window$device.model; - var model = (0, _platform.isIOSApp)() ? getAppleModel(originalModel) : originalModel; - return "".concat((0, _capitalize.default)(manufacturer), " ").concat(model); -}; + if (!(savedTerms.termsId == id && savedTerms.version == termsAttributes.version && savedTerms.url != termsAttributes.url)) { + _context.next = 11; + break; + } -exports.getDeviceName = getDeviceName; + termsToSave = (0, _objectSpread2.default)({ + _type: TERMS_DOCTYPE + }, savedTerms, { + url: termsAttributes.url + }); + _context.next = 11; + return client.save(termsToSave); -/***/ }), -/* 767 */ -/***/ (function(module, exports, __webpack_require__) { + case 11: + _context.next = 16; + break; -var toString = __webpack_require__(408), - upperFirst = __webpack_require__(768); + case 13: + _termsToSave = (0, _objectSpread2.default)({ + _type: TERMS_DOCTYPE + }, termsAttributes, { + termsId: id, + accepted: true, + acceptedAt: new Date() + }); + _context.next = 16; + return client.save(_termsToSave); -/** - * Converts the first character of `string` to upper case and the remaining - * to lower case. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to capitalize. - * @returns {string} Returns the capitalized string. - * @example - * - * _.capitalize('FRED'); - * // => 'Fred' - */ -function capitalize(string) { - return upperFirst(toString(string).toLowerCase()); + case 16: + case "end": + return _context.stop(); + } + } + }, _callee); + })); + return _save.apply(this, arguments); } -module.exports = capitalize; - - -/***/ }), -/* 768 */ -/***/ (function(module, exports, __webpack_require__) { - -var createCaseFirst = __webpack_require__(769); - -/** - * Converts the first character of `string` to upper case. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the converted string. - * @example - * - * _.upperFirst('fred'); - * // => 'Fred' - * - * _.upperFirst('FRED'); - * // => 'FRED' - */ -var upperFirst = createCaseFirst('toUpperCase'); - -module.exports = upperFirst; - +var _default = { + save: save +}; +exports.default = _default; /***/ }), -/* 769 */ +/* 792 */ /***/ (function(module, exports, __webpack_require__) { -var castSlice = __webpack_require__(770), - hasUnicode = __webpack_require__(771), - stringToArray = __webpack_require__(772), - toString = __webpack_require__(408); - -/** - * Creates a function like `_.lowerFirst`. - * - * @private - * @param {string} methodName The name of the `String` case method to use. - * @returns {Function} Returns the new case function. - */ -function createCaseFirst(methodName) { - return function(string) { - string = toString(string); - - var strSymbols = hasUnicode(string) - ? stringToArray(string) - : undefined; - - var chr = strSymbols - ? strSymbols[0] - : string.charAt(0); - - var trailing = strSymbols - ? castSlice(strSymbols, 1).join('') - : string.slice(1); - - return chr[methodName]() + trailing; - }; -} +"use strict"; -module.exports = createCaseFirst; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.APP_TYPE = void 0; +var APP_TYPE = { + KONNECTOR: 'konnector', + WEBAPP: 'webapp' +}; +exports.APP_TYPE = APP_TYPE; /***/ }), -/* 770 */ +/* 793 */ /***/ (function(module, exports, __webpack_require__) { -var baseSlice = __webpack_require__(635); - -/** - * Casts `array` to a slice if it's needed. - * - * @private - * @param {Array} array The array to inspect. - * @param {number} start The start position. - * @param {number} [end=array.length] The end position. - * @returns {Array} Returns the cast slice. - */ -function castSlice(array, start, end) { - var length = array.length; - end = end === undefined ? length : end; - return (!start && end >= length) ? array : baseSlice(array, start, end); -} - -module.exports = castSlice; +"use strict"; -/***/ }), -/* 771 */ -/***/ (function(module, exports) { +var _interopRequireDefault = __webpack_require__(532); -/** Used to compose unicode character classes. */ -var rsAstralRange = '\\ud800-\\udfff', - rsComboMarksRange = '\\u0300-\\u036f', - reComboHalfMarksRange = '\\ufe20-\\ufe2f', - rsComboSymbolsRange = '\\u20d0-\\u20ff', - rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, - rsVarRange = '\\ufe0e\\ufe0f'; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.sanitizeCategories = sanitizeCategories; +exports.areTermsValid = areTermsValid; +exports.isPartnershipValid = isPartnershipValid; +exports.sanitize = sanitize; -/** Used to compose unicode capture groups. */ -var rsZWJ = '\\u200d'; +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -/** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ -var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); +var APP_CATEGORIES = ['banking', 'cozy', 'energy', 'health', 'host_provider', 'insurance', 'isp', 'mes_infos', 'online_services', 'others', 'partners', 'press', 'productivity', 'ptnb', 'public_service', 'shopping', 'social', 'telecom', 'transport']; +/** Filters unauthorized categories. Defaults to ['others'] if no suitable category. */ -/** - * Checks if `string` contains Unicode symbols. - * - * @private - * @param {string} string The string to inspect. - * @returns {boolean} Returns `true` if a symbol is found, else `false`. - */ -function hasUnicode(string) { - return reHasUnicode.test(string); +function sanitizeCategories(categories) { + if (!categories) return ['others']; + var filteredList = categories.filter(function (c) { + return APP_CATEGORIES.includes(c); + }); + if (!filteredList.length) return ['others']; + return filteredList; } -module.exports = hasUnicode; - - -/***/ }), -/* 772 */ -/***/ (function(module, exports, __webpack_require__) { - -var asciiToArray = __webpack_require__(773), - hasUnicode = __webpack_require__(771), - unicodeToArray = __webpack_require__(774); - -/** - * Converts `string` to an array. - * - * @private - * @param {string} string The string to convert. - * @returns {Array} Returns the converted array. - */ -function stringToArray(string) { - return hasUnicode(string) - ? unicodeToArray(string) - : asciiToArray(string); +function areTermsValid(terms) { + return Boolean(terms && terms.id && terms.url && terms.version); } -module.exports = stringToArray; - - -/***/ }), -/* 773 */ -/***/ (function(module, exports) { - -/** - * Converts an ASCII `string` to an array. - * - * @private - * @param {string} string The string to convert. - * @returns {Array} Returns the converted array. - */ -function asciiToArray(string) { - return string.split(''); +function isPartnershipValid(partnership) { + return Boolean(partnership && partnership.description); } - -module.exports = asciiToArray; - - -/***/ }), -/* 774 */ -/***/ (function(module, exports) { - -/** Used to compose unicode character classes. */ -var rsAstralRange = '\\ud800-\\udfff', - rsComboMarksRange = '\\u0300-\\u036f', - reComboHalfMarksRange = '\\ufe20-\\ufe2f', - rsComboSymbolsRange = '\\u20d0-\\u20ff', - rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, - rsVarRange = '\\ufe0e\\ufe0f'; - -/** Used to compose unicode capture groups. */ -var rsAstral = '[' + rsAstralRange + ']', - rsCombo = '[' + rsComboRange + ']', - rsFitz = '\\ud83c[\\udffb-\\udfff]', - rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', - rsNonAstral = '[^' + rsAstralRange + ']', - rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', - rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', - rsZWJ = '\\u200d'; - -/** Used to compose unicode regexes. */ -var reOptMod = rsModifier + '?', - rsOptVar = '[' + rsVarRange + ']?', - rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', - rsSeq = rsOptVar + reOptMod + rsOptJoin, - rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; - -/** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ -var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); - /** - * Converts a Unicode `string` to an array. + * Normalize app manifest, retrocompatibility for old manifests * - * @private - * @param {string} string The string to convert. - * @returns {Array} Returns the converted array. + * @param {Manifest} manifest + * @returns {Manifest} */ -function unicodeToArray(string) { - return string.match(reUnicode) || []; -} - -module.exports = unicodeToArray; - - -/***/ }), -/* 775 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.hasNetworkInformationPlugin = exports.hasSafariPlugin = exports.hasInAppBrowserPlugin = exports.hasDevicePlugin = void 0; +function sanitize(manifest) { + var sanitized = (0, _objectSpread2.default)({}, manifest); // Make categories an array and delete category attribute if it exists -var _cordova = __webpack_require__(765); + if (!manifest.categories && manifest.category && typeof manifest.category === 'string') { + sanitized.categories = [manifest.category]; + delete sanitized.category; + } -var hasDevicePlugin = function hasDevicePlugin() { - return (0, _cordova.isCordova)() && window.device !== undefined; -}; + sanitized.categories = sanitizeCategories(sanitized.categories); // manifest name is not an object -exports.hasDevicePlugin = hasDevicePlugin; + if (typeof manifest.name === 'object') sanitized.name = manifest.name.en; // Fix camelCase from cozy-stack -var hasInAppBrowserPlugin = function hasInAppBrowserPlugin() { - return (0, _cordova.isCordova)() && window.cordova.InAppBrowser !== undefined; -}; + if (manifest.available_version) { + sanitized.availableVersion = manifest.available_version; + delete sanitized.available_version; + } // Fix camelCase from cozy-stack -exports.hasInAppBrowserPlugin = hasInAppBrowserPlugin; -var hasSafariPlugin = function hasSafariPlugin() { - return new Promise(function (resolve) { - if (!(0, _cordova.isCordova)() || window.SafariViewController === undefined) { - resolve(false); - return; - } + if (manifest.latest_version) { + sanitized.latestVersion = manifest.latestVersion; + delete sanitized.latest_version; + } // Remove invalid terms - window.SafariViewController.isAvailable(function (available) { - return resolve(available); - }); - }); -}; -/** - * Check if the Cordova's cordova-plugin-network-information plugin is installed - * @see https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-network-information/ - * @returns {boolean} - */ + if (sanitized.terms && !areTermsValid(sanitized.terms)) { + delete sanitized.terms; + } // Remove invalid partnership -exports.hasSafariPlugin = hasSafariPlugin; -var hasNetworkInformationPlugin = function hasNetworkInformationPlugin() { - return (0, _cordova.isCordova)() && window.navigator.connection !== undefined; -}; + if (sanitized.partnership && !isPartnershipValid(sanitized.partnership)) { + delete sanitized.partnership; + } -exports.hasNetworkInformationPlugin = hasNetworkInformationPlugin; + return sanitized; +} /***/ }), -/* 776 */ +/* 794 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.default = exports.startApp = exports.checkApp = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _platform = __webpack_require__(764); - -var cordovaPluginIsInstalled = function cordovaPluginIsInstalled() { - return window.startApp; -}; -/** - * Normalize startApp params for Android and iOS - */ - - -var getParams = function getParams(_ref) { - var appId = _ref.appId, - uri = _ref.uri; +exports.createMockClient = void 0; - if ((0, _platform.isAndroidApp)()) { - return { - package: appId - }; - } else { - return uri; - } -}; +var _slicedToArray2 = _interopRequireDefault(__webpack_require__(540)); -var exported = {}; -/** - * Start an application if it is installed on the phone - * @returns Promise - False if the application was not able to be started - */ +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); -var startApp = exported.startApp = /*#__PURE__*/function () { - var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(appInfo) { - var startAppPlugin, isAppInstalled, params; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - startAppPlugin = window.startApp; - _context.next = 3; - return exported.checkApp(appInfo); +var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(550)); - case 3: - isAppInstalled = _context.sent; +var _CozyClient = _interopRequireDefault(__webpack_require__(533)); - if (!isAppInstalled) { - _context.next = 9; - break; - } +var _store = __webpack_require__(617); - params = getParams(appInfo); - return _context.abrupt("return", new Promise(function (resolve, reject) { - if (!cordovaPluginIsInstalled()) { - reject(new Error("Cordova plugin 'com.lampa.startapp' is not installed. This plugin is needed to start a native app. Required by cozy-bar")); - return; - } +var _cozyStackClient = __webpack_require__(682); - startAppPlugin.set(params).start(resolve, reject); - })); +var _cozyClient = __webpack_require__(529); - case 9: - return _context.abrupt("return", false); +var fillQueryInsideClient = function fillQueryInsideClient(client, queryName, queryOptions) { + var definition = queryOptions.definition, + doctype = queryOptions.doctype, + data = queryOptions.data, + queryResult = (0, _objectWithoutProperties2.default)(queryOptions, ["definition", "doctype", "data"]); + client.store.dispatch((0, _store.initQuery)(queryName, definition || (0, _cozyClient.Q)(doctype))); + client.store.dispatch((0, _store.receiveQueryResult)(queryName, (0, _objectSpread2.default)({ + data: data.map(function (doc) { + return (0, _cozyStackClient.normalizeDoc)(doc, doctype); + }) + }, queryResult))); +}; - case 10: - case "end": - return _context.stop(); - } - } - }, _callee); - })); +var mockedQueryFromMockedRemoteData = function mockedQueryFromMockedRemoteData(remoteData) { + return function (qdef) { + if (!remoteData) { + return { + data: null + }; + } - return function (_x) { - return _ref2.apply(this, arguments); + if (remoteData[qdef.doctype]) { + return { + data: remoteData[qdef.doctype] + }; + } else { + return { + data: [] + }; + } }; -}(); +}; /** - * Check that an application is installed on the phone - * @returns Promise - Promise containing information on the application + * Creates a client suitable for use in tests * - * @example - * > checkApp({ appId: 'io.cozy.drive.mobile', uri: 'cozydrive://' }) - * Promise.resolve({ - * versionName: "0.9.2", - * packageName: "io.cozy.drive.mobile", - * versionCode: 902, - * applicationInfo: "ApplicationInfo{70aa0ef io.cozy.drive.mobile}" - * }) + * - client.{query,save} are mocked + * - client.stackClient.fetchJSON is mocked + * + * @param {object} options Options + * @param {object} options.queries Prefill queries inside the store + * @param {object} options.remote Mock data from the server + * @param {object} options.clientOptions Options passed to the client + * @returns {CozyClient} */ -exports.startApp = startApp; - -var checkApp = exported.checkApp = /*#__PURE__*/function () { - var _ref3 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(appInfo) { - var startAppPlugin, params; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - startAppPlugin = window.startApp; - params = getParams(appInfo); - return _context2.abrupt("return", new Promise(function (resolve, reject) { - if (!cordovaPluginIsInstalled()) { - reject(new Error("Cordova plugin 'com.lampa.startapp' is not installed.")); - return; - } +var createMockClient = function createMockClient(_ref) { + var queries = _ref.queries, + remote = _ref.remote, + clientOptions = _ref.clientOptions; + var client = new _CozyClient.default(clientOptions || {}); + client.ensureStore(); - startAppPlugin.set(params).check(function (infos) { - resolve(infos === 'OK' ? true : infos); - }, function (error) { - if (error === false || error.indexOf('NameNotFoundException') === 0) { - // Plugin returns an error 'NameNotFoundException' on Android and - // false on iOS when an application is not found. - // We prefer to always return false - resolve(false); - } else { - reject(error); - } - }); - })); + for (var _i = 0, _Object$entries = Object.entries(queries || {}); _i < _Object$entries.length; _i++) { + var _Object$entries$_i = (0, _slicedToArray2.default)(_Object$entries[_i], 2), + queryName = _Object$entries$_i[0], + queryOptions = _Object$entries$_i[1]; - case 3: - case "end": - return _context2.stop(); - } - } - }, _callee2); - })); + fillQueryInsideClient(client, queryName, queryOptions); + } - return function (_x2) { - return _ref3.apply(this, arguments); - }; -}(); + client.query = jest.fn().mockImplementation(mockedQueryFromMockedRemoteData(remote)); + client.save = jest.fn(); + client.stackClient.fetchJSON = jest.fn(); + return client; +}; -exports.checkApp = checkApp; -var _default = exported; -exports.default = _default; +exports.createMockClient = createMockClient; /***/ }), -/* 777 */ +/* 795 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +/* WEBPACK VAR INJECTION */(function(module) { - -var _interopRequireDefault = __webpack_require__(530); +var _interopRequireDefault = __webpack_require__(532); Object.defineProperty(exports, "__esModule", { value: true }); -exports.nativeLinkOpen = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _plugins = __webpack_require__(775); +exports.createClientInteractive = void 0; -var nativeLinkOpen = /*#__PURE__*/function () { - var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(_ref) { - var url, target, options; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - url = _ref.url; - _context.next = 3; - return (0, _plugins.hasSafariPlugin)(); +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - case 3: - _context.t0 = _context.sent; +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); - if (!_context.t0) { - _context.next = 6; - break; - } +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); - _context.t0 = window.SafariViewController; +var _http = _interopRequireDefault(__webpack_require__(98)); - case 6: - if (!_context.t0) { - _context.next = 10; - break; - } +var _open = _interopRequireDefault(__webpack_require__(796)); - window.SafariViewController.show({ - url: url, - transition: 'curl' - }, function (result) { - if (result.event === 'closed') { - window.SafariViewController.hide(); - } - }, function () { - window.SafariViewController.hide(); - }); - _context.next = 11; - break; +var _fs = _interopRequireDefault(__webpack_require__(167)); - case 10: - if ((0, _plugins.hasInAppBrowserPlugin)()) { - target = '_blank'; - options = 'clearcache=yes,zoom=no'; - window.cordova.InAppBrowser.open(url, target, options); - } else { - window.location = url; - } +var _merge = _interopRequireDefault(__webpack_require__(756)); - case 11: - case "end": - return _context.stop(); - } - } - }, _callee); - })); +var _serverDestroy = _interopRequireDefault(__webpack_require__(800)); - return function nativeLinkOpen(_x) { - return _ref2.apply(this, arguments); - }; -}(); +var _CozyClient = _interopRequireDefault(__webpack_require__(533)); -exports.nativeLinkOpen = nativeLinkOpen; +var _cozyLogger = _interopRequireDefault(__webpack_require__(2)); -/***/ }), -/* 778 */ -/***/ (function(module, exports, __webpack_require__) { +var log = _cozyLogger.default.namespace('create-cli-client'); -"use strict"; +global.fetch = __webpack_require__(801); +global.btoa = __webpack_require__(492); +/** + * Creates and starts and HTTP server suitable for OAuth authentication + * + * @param {Function} serverOptions - OAuth callback server options + * @param {Function} serverOptions.onAuthentication - Additional callback called + * when the user authenticates + * @param {Function} serverOptions.route - Route used for authentication + * @param {Function} serverOptions.route - Port on which the server will listen + * @param {Function} serverOptions.onListen - Callback called when the + * server starts + * + * @private + */ +var createCallbackServer = function createCallbackServer(serverOptions) { + var route = serverOptions.route, + onListen = serverOptions.onListen, + onAuthentication = serverOptions.onAuthentication, + port = serverOptions.port; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.openDeeplinkOrRedirect = void 0; + var server = _http.default.createServer(function (request, response) { + if (request.url.indexOf(route) === 0) { + onAuthentication(request.url); + response.write('Authentication successful, you can close this page.'); + response.end(); + } + }); + server.listen(port, function () { + onListen(); + }); + (0, _serverDestroy.default)(server); + return server; +}; /** - * This file is used to open the native app from a webapp - * if this native app is installed + * Creates a function suitable for usage with CozyClient::startOAuthFlow * - * From a webapp, we don't have any clue if a native app is installed. - * The only way to know that, is to try to open the custom link - * (aka cozydrive://) and if nothing happens (no blur) we redirect to - * the callback + * Starts a local server. The stack upon user authentication will + * redirect to this local server with a URL containing credentials. + * The callback resolves with this authenticationURL which continues + * the authentication flow inside startOAuthFlow. * - * Firefox tries to open custom link, so we need to create an iframe - * to detect if this is supported or not + * When the server is started, the authentication page is opened on the + * desktop browser of the user. + * + * @param {object} serverOptions - Options for the OAuth callback server + * @param {integer} serverOptions.port - Port used for the OAuth callback server + * @param {Function} serverOptions.onAuthentication - Callback when the user authenticates + * @param {Function} serverOptions.onListen - Callback called with the authentication URL + * when the server starts + * @param {boolean} serverOptions.shouldOpenAuthenticationPage - Whether the authentication + * page should be automatically opened (default: true) + * + * @private */ -var _createHiddenIframe = function _createHiddenIframe(target, uri, randomId) { - var iframe = document.createElement('iframe'); - iframe.src = uri; - iframe.id = "hiddenIframe_".concat(randomId); - iframe.style.display = 'none'; - target.appendChild(iframe); - return iframe; -}; - -var openUriWithHiddenFrame = function openUriWithHiddenFrame(uri, failCb) { - var randomId = Math.random().toString(36).replace(/[^a-z]+/g, '').substr(0, 5); - window.addEventListener('blur', onBlur); - var iframe = _createHiddenIframe(document.body, 'about:blank', randomId); - var timeout = setTimeout(function () { - failCb(); - window.removeEventListener('blur', onBlur); - iframe.parentElement.removeChild(iframe); - }, 500); +var mkServerFlowCallback = function mkServerFlowCallback(serverOptions) { + return function (authenticationURL) { + return new Promise(function (resolve, reject) { + var rejectTimeout, successTimeout; + var server = createCallbackServer((0, _objectSpread2.default)({}, serverOptions, { + onAuthentication: function onAuthentication(callbackURL) { + log('debug', 'Authenticated, Shutting server down'); + successTimeout = setTimeout(function () { + // Is there a way to call destroy only after all requests have + // been completely served ? Otherwise we close the server while + // the successful oauth page is being served and the page does + // not get loaded on the client side. + server.destroy(); + resolve('http://localhost:8000/' + callbackURL); + clearTimeout(rejectTimeout); + }, 300); + }, + onListen: function onListen() { + log('debug', 'OAuth callback server started, waiting for authentication'); - function onBlur() { - clearTimeout(timeout); - window.removeEventListener('blur', onBlur); - iframe.parentElement.removeChild(iframe); - } + if (serverOptions.shouldOpenAuthenticationPage !== false) { + (0, _open.default)(authenticationURL, { + wait: false + }); + } - iframe.contentWindow.location.href = uri; + if (serverOptions.onListen) { + serverOptions.onListen({ + authenticationURL: authenticationURL + }); + } + } + })); + rejectTimeout = setTimeout(function () { + clearTimeout(successTimeout); + server.destroy(); + reject('Timeout for authentication'); + }, 30 * 1000); + }); + }; }; -var openUriWithTimeoutHack = function openUriWithTimeoutHack(uri, failCb) { - var timeout = setTimeout(function () { - failCb(); - target.removeEventListener('blur', onBlur); - }, 500); // handle page running in an iframe (blur must be registered with top level window) - - var target = window; +var hashCode = function hashCode(str) { + var hash = 0, + i, + chr; + if (str.length === 0) return hash; - while (target != target.parent) { - target = target.parent; + for (i = 0; i < str.length; i++) { + chr = str.charCodeAt(i); + hash = (hash << 5) - hash + chr; + hash |= 0; // Convert to 32bit integer } - target.addEventListener('blur', onBlur); + return hash; +}; + +var DEFAULT_SERVER_OPTIONS = { + port: 3333, + route: '/do_access', + getSavedCredentials: function getSavedCredentials(clientOptions) { + if (!clientOptions.oauth.softwareID) { + throw new Error('Please provide oauth.softwareID in your clientOptions.'); + } - function onBlur() { - clearTimeout(timeout); - target.removeEventListener('blur', onBlur); + var doctypeHash = Math.abs(hashCode(JSON.stringify(clientOptions.scope))); + var sluggedURI = clientOptions.uri.replace(/https?:\/\//, '').replace(/\./g, '-'); + return "/tmp/cozy-client-oauth-".concat(sluggedURI, "-").concat(clientOptions.oauth.softwareID, "-").concat(doctypeHash, ".json"); } - - window.location = uri; -}; - -var openUriWithMsLaunchUri = function openUriWithMsLaunchUri(uri, failCb) { - navigator.msLaunchUri(uri, undefined, failCb); }; -var checkBrowser = function checkBrowser() { - var isOpera = !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0; - var ua = navigator.userAgent.toLowerCase(); - var isSafari = ua.includes('safari') && !ua.includes('chrome') || Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0; - var isIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream; - var isIOS122 = isIOS && (ua.includes('os 12_2') || ua.includes('os 12_3')); - return { - isOpera: isOpera, - isFirefox: typeof InstallTrigger !== 'undefined', - isSafari: isSafari, - isChrome: !!window.chrome && !isOpera, - isIOS122: isIOS122, - isIOS: isIOS - }; +var writeJSON = function writeJSON(fs, filename, data) { + fs.writeFileSync(filename, JSON.stringify(data)); }; /** + * Parses a JSON from a file + * Returns null in case of error * - * @param {String} deeplink (cozydrive://) - * @param {String} failCb (http://drive.cozy.ios) + * @private */ -var openDeeplinkOrRedirect = function openDeeplinkOrRedirect(deeplink, failCb) { - if (navigator.msLaunchUri) { - // for IE and Edge in Win 8 and Win 10 - openUriWithMsLaunchUri(deeplink, failCb); - } else { - var browser = checkBrowser(); - - if (browser.isChrome || browser.isIOS && !browser.isIOS122) { - openUriWithTimeoutHack(deeplink, failCb); - } else if (browser.isSafari && !browser.isIOS122 || browser.isFirefox) { - openUriWithHiddenFrame(deeplink, failCb); - } else { - failCb(); +var readJSON = function readJSON(fs, filename) { + try { + if (!fs.existsSync(filename)) { + return null; } + + var res = JSON.parse(fs.readFileSync(filename).toString()); + return res; + } catch (e) { + console.warn("Could not load ".concat(filename, " (").concat(e.message, ")")); + return null; } }; +/** + * Creates a client with interactive authentication. + * + * - Will start an OAuth flow and open an authentication page + * - Starts a local server to listen for the oauth callback + * - Resolves with the client after user authentication + * + * @param {object} clientOptions Same as CozyClient::constructor. + * + * @example + * ``` + * import { createClientInteractive } from 'cozy-client/dist/cli' + * await createClientInteractive({ + * uri: 'http://cozy.tools:8080', + * scope: ['io.cozy.bills'], + * oauth: { + * softwareID: 'my-cli-application-using-bills' + * } + * }) + * ``` + */ -exports.openDeeplinkOrRedirect = openDeeplinkOrRedirect; - -/***/ }), -/* 779 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireDefault = __webpack_require__(530); -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; +var createClientInteractive = function createClientInteractive(clientOptions, serverOpts) { + var serverOptions = (0, _merge.default)(DEFAULT_SERVER_OPTIONS, serverOpts); + var createClientFS = serverOptions.fs || _fs.default; + var mergedClientOptions = (0, _merge.default)({ + oauth: { + clientName: 'cli-client', + redirectURI: "http://localhost:".concat(serverOptions.port).concat(serverOptions.route) + } + }, clientOptions); -var _mapValues = _interopRequireDefault(__webpack_require__(551)); + if (!clientOptions.scope) { + throw new Error('scope must be provided in client options'); + } -var _groupBy2 = _interopRequireDefault(__webpack_require__(729)); + var getSavedCredentials = serverOptions.getSavedCredentials; + var savedCredentialsFilename = getSavedCredentials(mergedClientOptions); + var savedCredentials = readJSON(createClientFS, savedCredentialsFilename); + var client = new _CozyClient.default(mergedClientOptions); -var _flatten = _interopRequireDefault(__webpack_require__(558)); + if (savedCredentials) { + log('debug', "Using saved credentials in ".concat(savedCredentialsFilename)); + client.stackClient.setToken(savedCredentials.token); + client.stackClient.setOAuthOptions(savedCredentials.oauthOptions); + return client; + } -var _isEqual = _interopRequireDefault(__webpack_require__(653)); + log('debug', "Starting OAuth flow"); + return new Promise( + /*#__PURE__*/ + function () { + var _ref = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(resolve, reject) { + var resolveWithClient; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + resolveWithClient = function resolveWithClient() { + resolve(client); + log('debug', "Saving credentials to ".concat(savedCredentialsFilename)); + writeJSON(createClientFS, savedCredentialsFilename, { + oauthOptions: client.stackClient.oauthOptions, + token: client.stackClient.token + }); + }; -var _uniq = _interopRequireDefault(__webpack_require__(630)); + _context.next = 3; + return client.startOAuthFlow(mkServerFlowCallback(serverOptions)); -var _uniqWith = _interopRequireDefault(__webpack_require__(780)); + case 3: + resolveWithClient(); -var _dsl = __webpack_require__(625); + case 4: + case "end": + return _context.stop(); + } + } + }, _callee); + })); -var isIdQuery = function isIdQuery(query) { - return query.id || query.ids; + return function (_x, _x2) { + return _ref.apply(this, arguments); + }; + }()); }; -/** - * Optimize queries on a single doctype - * - * @param {QueryDefinition[]} queries - Queries of a same doctype - * @returns {QueryDefinition[]} Optimized queries - * @private - */ +exports.createClientInteractive = createClientInteractive; -var optimizeDoctypeQueries = function optimizeDoctypeQueries(queries) { - var _groupBy = (0, _groupBy2.default)(queries, function (q) { - return isIdQuery(q) ? 'idQueries' : 'others'; - }), - _groupBy$idQueries = _groupBy.idQueries, - idQueries = _groupBy$idQueries === void 0 ? [] : _groupBy$idQueries, - _groupBy$others = _groupBy.others, - others = _groupBy$others === void 0 ? [] : _groupBy$others; +var main = +/*#__PURE__*/ +function () { + var _ref2 = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2() { + var client; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + _context2.next = 2; + return createClientInteractive({ + scope: ['io.cozy.files'], + uri: 'http://cozy.tools:8080', + oauth: { + softwareID: 'io.cozy.client.cli' + } + }); - var groupedIdQueries = idQueries.length > 0 ? new _dsl.QueryDefinition({ - doctype: queries[0].doctype, - ids: (0, _uniq.default)((0, _flatten.default)(idQueries.map(function (q) { - return q.id || q.ids; - }))) - }) : []; // Deduplicate before concataining + case 2: + client = _context2.sent; + console.log(client.toJSON()); - return (0, _uniqWith.default)(others, _isEqual.default).concat(groupedIdQueries); -}; -/** - * Reduce the number of queries used to fetch documents. - * - * - Deduplication of queries - * - Groups id queries - * - * @param {QueryDefinition[]} queries - Queries to optimized - * @returns {QueryDefinition[]} Optimized queries - * @private - */ + case 4: + case "end": + return _context2.stop(); + } + } + }, _callee2); + })); + return function main() { + return _ref2.apply(this, arguments); + }; +}(); -var optimizeQueries = function optimizeQueries(queries) { - var byDoctype = (0, _groupBy2.default)(queries, function (q) { - return q.doctype; +if (__webpack_require__.c[__webpack_require__.s] === module) { + main().catch(function (e) { + console.error(e); + process.exit(1); }); - return (0, _flatten.default)(Object.values((0, _mapValues.default)(byDoctype, optimizeDoctypeQueries))); -}; - -var _default = optimizeQueries; -exports.default = _default; - -/***/ }), -/* 780 */ -/***/ (function(module, exports, __webpack_require__) { - -var baseUniq = __webpack_require__(475); - -/** - * This method is like `_.uniq` except that it accepts `comparator` which - * is invoked to compare elements of `array`. The order of result values is - * determined by the order they occur in the array.The comparator is invoked - * with two arguments: (arrVal, othVal). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new duplicate free array. - * @example - * - * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; - * - * _.uniqWith(objects, _.isEqual); - * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] - */ -function uniqWith(array, comparator) { - comparator = typeof comparator == 'function' ? comparator : undefined; - return (array && array.length) ? baseUniq(array, undefined, comparator) : []; } - -module.exports = uniqWith; - +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) /***/ }), -/* 781 */ +/* 796 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +/* WEBPACK VAR INJECTION */(function(__dirname) { +const {promisify} = __webpack_require__(9); +const path = __webpack_require__(160); +const childProcess = __webpack_require__(797); +const fs = __webpack_require__(167); +const isWsl = __webpack_require__(798); +const isDocker = __webpack_require__(799); +const pAccess = promisify(fs.access); +const pReadFile = promisify(fs.readFile); -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; +// Path to included `xdg-open`. +const localXdgOpenPath = path.join(__dirname, 'xdg-open'); /** - * Use those fetch policies with `<Query />` to limit the number of re-fetch. - * - * @example - * ``` - * import { fetchPolicies } from 'cozy-client' - * const olderThan30s = fetchPolicies.olderThan(30 * 1000) - * <Query fetchPolicy={olderThan30s} /> - * ``` - */ -var fetchPolicies = { - /** - * Returns a fetchPolicy that will only re-fetch queries that are older - * than `<delay>` ms. - * - * @param {number} delay - Milliseconds since the query has been fetched - * @returns {Function} Fetch policy to be used with `<Query />` - */ - olderThan: function olderThan(delay) { - return function (queryState) { - if (!queryState || !queryState.lastUpdate) { - return true; - } else { - var elapsed = Date.now() - queryState.lastUpdate; - return elapsed > delay; - } - }; - }, - - /** - * Fetch policy that deactivates any fetching. - */ - noFetch: function noFetch() { - return false; - } -}; -var _default = fetchPolicies; -exports.default = _default; +Get the mount point for fixed drives in WSL. -/***/ }), -/* 782 */ -/***/ (function(module, exports, __webpack_require__) { +@inner +@returns {string} The mount point. +*/ +const getWslDrivesMountPoint = (() => { + // Default value for "root" param + // according to https://docs.microsoft.com/en-us/windows/wsl/wsl-config + const defaultMountPoint = '/mnt/'; -"use strict"; + let mountPoint; + return async function () { + if (mountPoint) { + // Return memoized mount point value + return mountPoint; + } -var _interopRequireDefault = __webpack_require__(530); + const configFilePath = '/etc/wsl.conf'; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; + let isConfigFileExists = false; + try { + await pAccess(configFilePath, fs.constants.F_OK); + isConfigFileExists = true; + } catch (_) {} -var _regenerator = _interopRequireDefault(__webpack_require__(545)); + if (!isConfigFileExists) { + return defaultMountPoint; + } -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + const configContent = await pReadFile(configFilePath, {encoding: 'utf8'}); + const configMountPoint = /root\s*=\s*(.*)/g.exec(configContent); -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); + if (!configMountPoint) { + return defaultMountPoint; + } -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + mountPoint = configMountPoint[1].trim(); + mountPoint = mountPoint.endsWith('/') ? mountPoint : mountPoint + '/'; -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + return mountPoint; + }; +})(); -var _keyBy = _interopRequireDefault(__webpack_require__(704)); +module.exports = async (target, options) => { + if (typeof target !== 'string') { + throw new TypeError('Expected a `target`'); + } -var _mapValues = _interopRequireDefault(__webpack_require__(551)); + options = { + wait: false, + background: false, + allowNonzeroExitCode: false, + ...options + }; -var _merge = _interopRequireDefault(__webpack_require__(747)); + let command; + let {app} = options; + let appArguments = []; + const cliArguments = []; + const childProcessOptions = {}; -var _size = _interopRequireDefault(__webpack_require__(783)); + if (Array.isArray(app)) { + appArguments = app.slice(1); + app = app[0]; + } -var _intersectionBy = _interopRequireDefault(__webpack_require__(787)); + if (process.platform === 'darwin') { + command = 'open'; -var _associations = __webpack_require__(696); + if (options.wait) { + cliArguments.push('--wait-apps'); + } -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + if (options.background) { + cliArguments.push('--background'); + } -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + if (app) { + cliArguments.push('-a', app); + } + } else if (process.platform === 'win32' || (isWsl && !isDocker())) { + const mountPoint = await getWslDrivesMountPoint(); -/** - * @typedef {object} DoctypeSchema - */ + command = isWsl ? + `${mountPoint}c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe` : + `${process.env.SYSTEMROOT}\\System32\\WindowsPowerShell\\v1.0\\powershell`; -/** - * @typedef {Record<string, DoctypeSchema>} SchemaDefinition - */ + cliArguments.push( + '-NoProfile', + '-NonInteractive', + '–ExecutionPolicy', + 'Bypass', + '-EncodedCommand' + ); -/** - * Returns a normalized schema object from the schema definition. - * - * - Relationships are resolved to classes if needed - * - The name of the relationship (its key in the schema definition) - * is included in the relationship - * - Empty relationships are nulled - * - * @private - */ -var normalizeDoctypeSchema = function normalizeDoctypeSchema(doctypeSchema) { - var relationships = (0, _mapValues.default)(doctypeSchema.relationships || {}, function (v, k) { - return _objectSpread(_objectSpread({}, v), {}, { - name: k, - type: (0, _associations.resolveClass)(v.doctype, v.type) - }); - }); - return _objectSpread(_objectSpread({}, doctypeSchema), {}, { - relationships: (0, _size.default)(relationships) > 0 ? (0, _keyBy.default)(relationships, 'name') : null - }); -}; + if (!isWsl) { + childProcessOptions.windowsVerbatimArguments = true; + } -var assert = function assert(predicate, errorMessage) { - if (!predicate) throw new Error(errorMessage); -}; + const encodedArguments = ['Start']; -var ensureCanBeAdded = function ensureCanBeAdded(newSchemas, existingSchemas) { - var sameNames = (0, _intersectionBy.default)(newSchemas, existingSchemas, function (x) { - return x.name; - }); - assert(sameNames.length === 0, "Duplicated names in schemas being added: ".concat(sameNames.map(function (x) { - return x.name; - }).join(', '))); - var sameDoctypes = (0, _intersectionBy.default)(newSchemas, existingSchemas, function (x) { - return x.doctype; - }); - assert(sameDoctypes.length === 0, "Duplicated doctypes in schemas being added: ".concat(sameDoctypes.map(function (x) { - return x.name; - }).join(', '))); -}; -/** - * Stores information on a particular doctype. - * - * - Attribute validation - * - Relationship access - * - * ```js - * const schema = new Schema({ - * todos: { - * attributes: { - * label: { - * unique: true - * } - * }, - * relationships: { - * author: 'has-one-in-place' - * } - * } - * }, cozyStackClient) - * ``` - */ + if (options.wait) { + encodedArguments.push('-Wait'); + } + if (app) { + // Double quote with double quotes to ensure the inner quotes are passed through. + // Inner quotes are delimited for PowerShell interpretation with backticks. + encodedArguments.push(`"\`"${app}\`""`, '-ArgumentList'); + appArguments.unshift(target); + } else { + encodedArguments.push(`"${target}"`); + } -var Schema = /*#__PURE__*/function () { - /** - * @param {SchemaDefinition} schemaDefinition - Schema for the application documents - * @param {object} client - An instance of cozy client (optional) - */ - function Schema() { - var schemaDefinition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var client = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; - (0, _classCallCheck2.default)(this, Schema); - this.byDoctype = {}; - this.add(schemaDefinition); - this.client = client; - } - /** - * @param {SchemaDefinition} schemaDefinition - Additional schema to merge to current schema - */ + if (appArguments.length > 0) { + appArguments = appArguments.map(arg => `"\`"${arg}\`""`); + encodedArguments.push(appArguments.join(',')); + } + // Using Base64-encoded command, accepted by PowerShell, to allow special characters. + target = Buffer.from(encodedArguments.join(' '), 'utf16le').toString('base64'); + } else { + if (app) { + command = app; + } else { + // When bundled by Webpack, there's no actual package file path and no local `xdg-open`. + const isBundled = false || __dirname === '/'; - (0, _createClass2.default)(Schema, [{ - key: "add", - value: function add() { - var schemaDefinition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - var normalizedSchemaDefinition = (0, _mapValues.default)(schemaDefinition, function (obj, name) { - return _objectSpread({ - name: name - }, normalizeDoctypeSchema(obj)); - }); - ensureCanBeAdded(Object.values(normalizedSchemaDefinition), Object.values(this.byDoctype)); - (0, _merge.default)(this.byDoctype, (0, _keyBy.default)(normalizedSchemaDefinition, function (x) { - return x.doctype; - })); - } - /** - * Returns the schema for a doctype - * - * Creates an empty schema implicitly if it does not exist - * - * @param {string} doctype - Doctype - */ + // Check if local `xdg-open` exists and is executable. + let exeLocalXdgOpen = false; + try { + await pAccess(localXdgOpenPath, fs.constants.X_OK); + exeLocalXdgOpen = true; + } catch (_) {} - }, { - key: "getDoctypeSchema", - value: function getDoctypeSchema(doctype) { - var schema = this.byDoctype[doctype]; + const useSystemXdgOpen = process.versions.electron || + process.platform === 'android' || isBundled || !exeLocalXdgOpen; + command = useSystemXdgOpen ? 'xdg-open' : localXdgOpenPath; + } - if (!schema) { - schema = normalizeDoctypeSchema({ - name: doctype, - doctype: doctype - }); - this.byDoctype[doctype] = schema; - } + if (appArguments.length > 0) { + cliArguments.push(...appArguments); + } - return schema; - } - /** - * Returns the relationship for a given doctype/name - * - * @param {string} doctype - Doctype - * @param {string} relationshipName - Relationship name - */ + if (!options.wait) { + // `xdg-open` will block the process unless stdio is ignored + // and it's detached from the parent even if it's unref'd. + childProcessOptions.stdio = 'ignore'; + childProcessOptions.detached = true; + } + } - }, { - key: "getRelationship", - value: function getRelationship(doctype, relationshipName) { - if (!doctype) { - throw new TypeError("Invalid doctype ".concat(doctype)); - } + cliArguments.push(target); - var schema = this.getDoctypeSchema(doctype); + if (process.platform === 'darwin' && appArguments.length > 0) { + cliArguments.push('--args', ...appArguments); + } - if (!schema) { - throw new Error("Cannot find doctype ".concat(doctype, " in schema")); - } + const subprocess = childProcess.spawn(command, cliArguments, childProcessOptions); - if (!schema.relationships) { - throw new Error("Schema for doctype ".concat(doctype, " has no relationships")); - } + if (options.wait) { + return new Promise((resolve, reject) => { + subprocess.once('error', reject); - return schema.relationships[relationshipName]; - } - /** - * Validates a document considering the descriptions in schema.attributes. - */ + subprocess.once('close', exitCode => { + if (options.allowNonzeroExitCode && exitCode > 0) { + reject(new Error(`Exited with code ${exitCode}`)); + return; + } - }, { - key: "validate", - value: function () { - var _validate = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(document) { - var errors, schema, n, ret; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - errors = {}; - schema = this.byDoctype[document._type]; + resolve(subprocess); + }); + }); + } - if (schema) { - _context.next = 4; - break; - } + subprocess.unref(); - return _context.abrupt("return", true); + return subprocess; +}; - case 4: - if (schema.attributes) { - _context.next = 6; - break; - } +/* WEBPACK VAR INJECTION */}.call(this, "/")) - return _context.abrupt("return", true); +/***/ }), +/* 797 */ +/***/ (function(module, exports) { - case 6: - _context.t0 = _regenerator.default.keys(schema.attributes); +module.exports = require("child_process"); - case 7: - if ((_context.t1 = _context.t0()).done) { - _context.next = 15; - break; - } +/***/ }), +/* 798 */ +/***/ (function(module, exports, __webpack_require__) { - n = _context.t1.value; - _context.next = 11; - return this.validateAttribute(document, n, schema.attributes[n]); +"use strict"; - case 11: - ret = _context.sent; - if (ret !== true) errors[n] = ret; - _context.next = 7; - break; +const os = __webpack_require__(19); +const fs = __webpack_require__(167); +const isDocker = __webpack_require__(799); - case 15: - if (!(Object.keys(errors).length === 0)) { - _context.next = 17; - break; - } +const isWsl = () => { + if (process.platform !== 'linux') { + return false; + } - return _context.abrupt("return", true); + if (os.release().toLowerCase().includes('microsoft')) { + if (isDocker()) { + return false; + } - case 17: - return _context.abrupt("return", errors); + return true; + } - case 18: - case "end": - return _context.stop(); - } - } - }, _callee, this); - })); + try { + return fs.readFileSync('/proc/version', 'utf8').toLowerCase().includes('microsoft') ? + !isDocker() : false; + } catch (_) { + return false; + } +}; - function validate(_x) { - return _validate.apply(this, arguments); - } +if (process.env.__IS_WSL_TEST__) { + module.exports = isWsl; +} else { + module.exports = isWsl(); +} - return validate; - }() - }, { - key: "validateAttribute", - value: function () { - var _validateAttribute = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(document, attrName, attrProps) { - var ret; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - if (!(attrProps.unique && this.client)) { - _context2.next = 6; - break; - } - _context2.next = 3; - return this.client.collection(document._type).checkUniquenessOf(attrName, document[attrName]); +/***/ }), +/* 799 */ +/***/ (function(module, exports, __webpack_require__) { - case 3: - ret = _context2.sent; +"use strict"; - if (!(ret !== true)) { - _context2.next = 6; - break; - } +const fs = __webpack_require__(167); - return _context2.abrupt("return", 'must be unique'); +let isDocker; - case 6: - return _context2.abrupt("return", true); +function hasDockerEnv() { + try { + fs.statSync('/.dockerenv'); + return true; + } catch (_) { + return false; + } +} - case 7: - case "end": - return _context2.stop(); - } - } - }, _callee2, this); - })); +function hasDockerCGroup() { + try { + return fs.readFileSync('/proc/self/cgroup', 'utf8').includes('docker'); + } catch (_) { + return false; + } +} - function validateAttribute(_x2, _x3, _x4) { - return _validateAttribute.apply(this, arguments); - } +module.exports = () => { + if (isDocker === undefined) { + isDocker = hasDockerEnv() || hasDockerCGroup(); + } - return validateAttribute; - }() - }]); - return Schema; -}(); + return isDocker; +}; -var _default = Schema; -exports.default = _default; /***/ }), -/* 783 */ -/***/ (function(module, exports, __webpack_require__) { +/* 800 */ +/***/ (function(module, exports) { -var baseKeys = __webpack_require__(454), - getTag = __webpack_require__(459), - isArrayLike = __webpack_require__(458), - isString = __webpack_require__(74), - stringSize = __webpack_require__(784); +module.exports = enableDestroy; -/** `Object#toString` result references. */ -var mapTag = '[object Map]', - setTag = '[object Set]'; +function enableDestroy(server) { + var connections = {} -/** - * Gets the size of `collection` by returning its length for array-like - * values or the number of own enumerable string keyed properties for objects. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object|string} collection The collection to inspect. - * @returns {number} Returns the collection size. - * @example - * - * _.size([1, 2, 3]); - * // => 3 - * - * _.size({ 'a': 1, 'b': 2 }); - * // => 2 - * - * _.size('pebbles'); - * // => 7 - */ -function size(collection) { - if (collection == null) { - return 0; - } - if (isArrayLike(collection)) { - return isString(collection) ? stringSize(collection) : collection.length; - } - var tag = getTag(collection); - if (tag == mapTag || tag == setTag) { - return collection.size; - } - return baseKeys(collection).length; -} + server.on('connection', function(conn) { + var key = conn.remoteAddress + ':' + conn.remotePort; + connections[key] = conn; + conn.on('close', function() { + delete connections[key]; + }); + }); -module.exports = size; + server.destroy = function(cb) { + server.close(cb); + for (var key in connections) + connections[key].destroy(); + }; +} /***/ }), -/* 784 */ +/* 801 */ /***/ (function(module, exports, __webpack_require__) { -var asciiSize = __webpack_require__(785), - hasUnicode = __webpack_require__(771), - unicodeSize = __webpack_require__(786); +"use strict"; + -/** - * Gets the number of symbols in `string`. - * - * @private - * @param {string} string The string to inspect. - * @returns {number} Returns the string size. - */ -function stringSize(string) { - return hasUnicode(string) - ? unicodeSize(string) - : asciiSize(string); -} +var realFetch = __webpack_require__(802); +module.exports = function(url, options) { + if (/^\/\//.test(url)) { + url = 'https:' + url; + } + return realFetch.call(this, url, options); +}; -module.exports = stringSize; +if (!global.fetch) { + global.fetch = module.exports; + global.Response = realFetch.Response; + global.Headers = realFetch.Headers; + global.Request = realFetch.Request; +} /***/ }), -/* 785 */ +/* 802 */ /***/ (function(module, exports, __webpack_require__) { -var baseProperty = __webpack_require__(473); /** - * Gets the size of an ASCII `string`. + * index.js * - * @private - * @param {string} string The string inspect. - * @returns {number} Returns the string size. + * a request API compatible with window.fetch */ -var asciiSize = baseProperty('length'); - -module.exports = asciiSize; - - -/***/ }), -/* 786 */ -/***/ (function(module, exports) { -/** Used to compose unicode character classes. */ -var rsAstralRange = '\\ud800-\\udfff', - rsComboMarksRange = '\\u0300-\\u036f', - reComboHalfMarksRange = '\\ufe20-\\ufe2f', - rsComboSymbolsRange = '\\u20d0-\\u20ff', - rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, - rsVarRange = '\\ufe0e\\ufe0f'; - -/** Used to compose unicode capture groups. */ -var rsAstral = '[' + rsAstralRange + ']', - rsCombo = '[' + rsComboRange + ']', - rsFitz = '\\ud83c[\\udffb-\\udfff]', - rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', - rsNonAstral = '[^' + rsAstralRange + ']', - rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', - rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', - rsZWJ = '\\u200d'; +var parse_url = __webpack_require__(83).parse; +var resolve_url = __webpack_require__(83).resolve; +var http = __webpack_require__(98); +var https = __webpack_require__(99); +var zlib = __webpack_require__(101); +var stream = __webpack_require__(100); -/** Used to compose unicode regexes. */ -var reOptMod = rsModifier + '?', - rsOptVar = '[' + rsVarRange + ']?', - rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', - rsSeq = rsOptVar + reOptMod + rsOptJoin, - rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; +var Body = __webpack_require__(803); +var Response = __webpack_require__(829); +var Headers = __webpack_require__(830); +var Request = __webpack_require__(831); +var FetchError = __webpack_require__(828); -/** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ -var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); +// commonjs +module.exports = Fetch; +// es6 default export compatibility +module.exports.default = module.exports; /** - * Gets the size of a Unicode `string`. + * Fetch class * - * @private - * @param {string} string The string inspect. - * @returns {number} Returns the string size. + * @param Mixed url Absolute url or Request instance + * @param Object opts Fetch options + * @return Promise */ -function unicodeSize(string) { - var result = reUnicode.lastIndex = 0; - while (reUnicode.test(string)) { - ++result; - } - return result; -} - -module.exports = unicodeSize; +function Fetch(url, opts) { + // allow call as function + if (!(this instanceof Fetch)) + return new Fetch(url, opts); -/***/ }), -/* 787 */ -/***/ (function(module, exports, __webpack_require__) { + // allow custom promise + if (!Fetch.Promise) { + throw new Error('native promise missing, set Fetch.Promise to your favorite alternative'); + } -var arrayMap = __webpack_require__(410), - baseIntersection = __webpack_require__(733), - baseIteratee = __webpack_require__(413), - baseRest = __webpack_require__(562), - castArrayLikeObject = __webpack_require__(734), - last = __webpack_require__(633); + Body.Promise = Fetch.Promise; -/** - * This method is like `_.intersection` except that it accepts `iteratee` - * which is invoked for each element of each `arrays` to generate the criterion - * by which they're compared. The order and references of result values are - * determined by the first array. The iteratee is invoked with one argument: - * (value). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns the new array of intersecting values. - * @example - * - * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor); - * // => [2.1] - * - * // The `_.property` iteratee shorthand. - * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); - * // => [{ 'x': 1 }] - */ -var intersectionBy = baseRest(function(arrays) { - var iteratee = last(arrays), - mapped = arrayMap(arrays, castArrayLikeObject); + var self = this; - if (iteratee === last(mapped)) { - iteratee = undefined; - } else { - mapped.pop(); - } - return (mapped.length && mapped[0] === arrays[0]) - ? baseIntersection(mapped, baseIteratee(iteratee, 2)) - : []; -}); + // wrap http.request into fetch + return new Fetch.Promise(function(resolve, reject) { + // build request object + var options = new Request(url, opts); -module.exports = intersectionBy; + if (!options.protocol || !options.hostname) { + throw new Error('only absolute urls are supported'); + } + if (options.protocol !== 'http:' && options.protocol !== 'https:') { + throw new Error('only http(s) protocols are supported'); + } -/***/ }), -/* 788 */ -/***/ (function(module, exports, __webpack_require__) { + var send; + if (options.protocol === 'https:') { + send = https.request; + } else { + send = http.request; + } -"use strict"; + // normalize headers + var headers = new Headers(options.headers); + if (options.compress) { + headers.set('accept-encoding', 'gzip,deflate'); + } -var _interopRequireDefault = __webpack_require__(530); + if (!headers.has('user-agent')) { + headers.set('user-agent', 'node-fetch/1.0 (+https://github.com/bitinn/node-fetch)'); + } -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; + if (!headers.has('connection') && !options.agent) { + headers.set('connection', 'close'); + } -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); + if (!headers.has('accept')) { + headers.set('accept', '*/*'); + } -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + // detect form data input from form-data module, this hack avoid the need to pass multipart header manually + if (!headers.has('content-type') && options.body && typeof options.body.getBoundary === 'function') { + headers.set('content-type', 'multipart/form-data; boundary=' + options.body.getBoundary()); + } -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + // bring node-fetch closer to browser behavior by setting content-length automatically + if (!headers.has('content-length') && /post|put|patch|delete/i.test(options.method)) { + if (typeof options.body === 'string') { + headers.set('content-length', Buffer.byteLength(options.body)); + // detect form data input from form-data module, this hack avoid the need to add content-length header manually + } else if (options.body && typeof options.body.getLengthSync === 'function') { + // for form-data 1.x + if (options.body._lengthRetrievers && options.body._lengthRetrievers.length == 0) { + headers.set('content-length', options.body.getLengthSync().toString()); + // for form-data 2.x + } else if (options.body.hasKnownLength && options.body.hasKnownLength()) { + headers.set('content-length', options.body.getLengthSync().toString()); + } + // this is only necessary for older nodejs releases (before iojs merge) + } else if (options.body === undefined || options.body === null) { + headers.set('content-length', '0'); + } + } -var _get = _interopRequireDefault(__webpack_require__(370)); + options.headers = headers.raw(); -var _store = __webpack_require__(698); + // http.request only support string as host header, this hack make custom host header possible + if (options.headers.host) { + options.headers.host = options.headers.host[0]; + } -/** - * ObservableQueries are the glue between the store and observers - * of the store. They have the responsibility to hydrate the documents - * before passing them to the React component. - */ -var hasOwn = Object.prototype.hasOwnProperty; + // send request + var req = send(options); + var reqTimeout; + + if (options.timeout) { + req.once('socket', function(socket) { + reqTimeout = setTimeout(function() { + req.abort(); + reject(new FetchError('network timeout at: ' + options.url, 'request-timeout')); + }, options.timeout); + }); + } -var ObservableQuery = /*#__PURE__*/function () { - function ObservableQuery(queryId, definition, client, options) { - var _this = this; + req.on('error', function(err) { + clearTimeout(reqTimeout); + reject(new FetchError('request to ' + options.url + ' failed, reason: ' + err.message, 'system', err)); + }); - (0, _classCallCheck2.default)(this, ObservableQuery); - (0, _defineProperty2.default)(this, "handleStoreChange", function () { - var nextResult = _this.currentRawResult(); + req.on('response', function(res) { + clearTimeout(reqTimeout); - if (!shallowEqual(nextResult, _this.lastResult)) { - _this.lastResult = nextResult; + // handle redirect + if (self.isRedirect(res.statusCode) && options.redirect !== 'manual') { + if (options.redirect === 'error') { + reject(new FetchError('redirect mode is set to error: ' + options.url, 'no-redirect')); + return; + } - _this.notifyObservers(); - } - }); + if (options.counter >= options.follow) { + reject(new FetchError('maximum redirect reached at: ' + options.url, 'max-redirect')); + return; + } - if (!queryId || !definition || !client) { - throw new Error('ObservableQuery takes 3 arguments: queryId, definition and client'); - } + if (!res.headers.location) { + reject(new FetchError('redirect location header missing at: ' + options.url, 'invalid-redirect')); + return; + } - this.queryId = queryId; - this.definition = definition; - this.client = client; - this.observers = {}; - this.idCounter = 1; - this.lastResult = this.currentRawResult(); - this.options = options; - } + // per fetch spec, for POST request with 301/302 response, or any request with 303 response, use GET when following redirect + if (res.statusCode === 303 + || ((res.statusCode === 301 || res.statusCode === 302) && options.method === 'POST')) + { + options.method = 'GET'; + delete options.body; + delete options.headers['content-length']; + } - (0, _createClass2.default)(ObservableQuery, [{ - key: "currentResult", + options.counter++; - /** - * Returns the query from the store with hydrated documents. - * - * @typedef {object} HydratedQueryState - * - * @returns {HydratedQueryState} - */ - value: function currentResult() { - return this.client.getQueryFromState(this.queryId, { - hydrated: (0, _get.default)(this.options, 'hydrated', true), - singleDocData: true - }); - } - }, { - key: "fetch", - value: function fetch() { - return this.client.query(this.definition, { - as: this.queryId - }); - } - /** - * Generates and executes a query that is offsetted by the number of documents - * we have in the store. - */ + resolve(Fetch(resolve_url(options.url, res.headers.location), options)); + return; + } - }, { - key: "fetchMore", - value: function fetchMore() { - var rawResult = this.currentRawResult(); - return rawResult.bookmark ? this.client.query(this.definition.offsetBookmark(rawResult.bookmark), { - as: this.queryId - }) : this.client.query(this.definition.offset(rawResult.data.length), { - as: this.queryId - }); - } - }, { - key: "currentRawResult", - value: function currentRawResult() { - return (0, _store.getRawQueryFromState)(this.getStore().getState(), this.queryId); - } - }, { - key: "notifyObservers", - value: function notifyObservers() { - var _this2 = this; + // normalize location header for manual redirect mode + var headers = new Headers(res.headers); + if (options.redirect === 'manual' && headers.has('location')) { + headers.set('location', resolve_url(options.url, headers.get('location'))); + } - Object.keys(this.observers).forEach(function (id) { - return _this2.observers[id](); - }); - } - }, { - key: "subscribeToStore", - value: function subscribeToStore() { - if (this._unsubscribeStore) { - throw new Error('ObservableQuery instance is already subscribed to store.'); - } + // prepare response + var body = res.pipe(new stream.PassThrough()); + var response_options = { + url: options.url + , status: res.statusCode + , statusText: res.statusMessage + , headers: headers + , size: options.size + , timeout: options.timeout + }; - this._unsubscribeStore = this.getStore().subscribe(this.handleStoreChange); - } - }, { - key: "unsubscribeFromStore", - value: function unsubscribeFromStore() { - if (!this._unsubscribeStore) { - throw new Error('ObservableQuery instance is not subscribed to store'); - } + // response object + var output; - this._unsubscribeStore(); - } - }, { - key: "subscribe", - value: function subscribe(callback) { - var _this3 = this; + // in following scenarios we ignore compression support + // 1. compression support is disabled + // 2. HEAD request + // 3. no content-encoding header + // 4. no content response (204) + // 5. content not modified response (304) + if (!options.compress || options.method === 'HEAD' || !headers.has('content-encoding') || res.statusCode === 204 || res.statusCode === 304) { + output = new Response(body, response_options); + resolve(output); + return; + } - var callbackId = this.idCounter; - this.idCounter++; - this.observers[callbackId] = callback; + // otherwise, check for gzip or deflate + var name = headers.get('content-encoding'); - if (Object.keys(this.observers).length === 1) { - this.subscribeToStore(); - } + // for gzip + if (name == 'gzip' || name == 'x-gzip') { + body = body.pipe(zlib.createGunzip()); + output = new Response(body, response_options); + resolve(output); + return; - return function () { - return _this3.unsubscribe(callbackId); - }; - } - }, { - key: "unsubscribe", - value: function unsubscribe(callbackId) { - if (!this.observers[callbackId]) { - throw new Error("Cannot unsubscribe unknown callbackId ".concat(callbackId)); - } + // for deflate + } else if (name == 'deflate' || name == 'x-deflate') { + // handle the infamous raw deflate response from old servers + // a hack for old IIS and Apache servers + var raw = res.pipe(new stream.PassThrough()); + raw.once('data', function(chunk) { + // see http://stackoverflow.com/questions/37519828 + if ((chunk[0] & 0x0F) === 0x08) { + body = body.pipe(zlib.createInflate()); + } else { + body = body.pipe(zlib.createInflateRaw()); + } + output = new Response(body, response_options); + resolve(output); + }); + return; + } - delete this.observers[callbackId]; + // otherwise, use response as-is + output = new Response(body, response_options); + resolve(output); + return; + }); - if (Object.keys(this.observers).length === 0) { - this.unsubscribeFromStore(); - this._unsubscribeStore = null; - } - } - }, { - key: "getStore", - value: function getStore() { - return this.client.store; - } - }]); - return ObservableQuery; -}(); + // accept string, buffer or readable stream as body + // per spec we will call tostring on non-stream objects + if (typeof options.body === 'string') { + req.write(options.body); + req.end(); + } else if (options.body instanceof Buffer) { + req.write(options.body); + req.end(); + } else if (typeof options.body === 'object' && options.body.pipe) { + options.body.pipe(req); + } else if (typeof options.body === 'object') { + req.write(options.body.toString()); + req.end(); + } else { + req.end(); + } + }); -exports.default = ObservableQuery; +}; -function is(x, y) { - if (x === y) { - return x !== 0 || y !== 0 || 1 / x === 1 / y; - } else { - return x !== x && y !== y; - } +/** + * Redirect code matching + * + * @param Number code Status code + * @return Boolean + */ +Fetch.prototype.isRedirect = function(code) { + return code === 301 || code === 302 || code === 303 || code === 307 || code === 308; } -function shallowEqual(objA, objB) { - if (is(objA, objB)) return true; +// expose Promise +Fetch.Promise = global.Promise; +Fetch.Response = Response; +Fetch.Headers = Headers; +Fetch.Request = Request; - if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) { - return false; - } - var keysA = Object.keys(objA); - var keysB = Object.keys(objB); - if (keysA.length !== keysB.length) return false; +/***/ }), +/* 803 */ +/***/ (function(module, exports, __webpack_require__) { - for (var i = 0; i < keysA.length; i++) { - if (!hasOwn.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) { - return false; - } - } - return true; -} +/** + * body.js + * + * Body interface provides common methods for Request and Response + */ -/***/ }), -/* 789 */ -/***/ (function(module, exports, __webpack_require__) { +var convert = __webpack_require__(804).convert; +var bodyStream = __webpack_require__(827); +var PassThrough = __webpack_require__(100).PassThrough; +var FetchError = __webpack_require__(828); -"use strict"; +module.exports = Body; + +/** + * Body class + * + * @param Stream body Readable stream + * @param Object opts Response options + * @return Void + */ +function Body(body, opts) { + opts = opts || {}; -var _interopRequireDefault = __webpack_require__(530); + this.body = body; + this.bodyUsed = false; + this.size = opts.size || 0; + this.timeout = opts.timeout || 0; + this._raw = []; + this._abort = false; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.CozyClient = void 0; +} -var _inherits2 = _interopRequireDefault(__webpack_require__(609)); +/** + * Decode response as json + * + * @return Promise + */ +Body.prototype.json = function() { -var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(611)); + var self = this; -var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(613)); + return this._decode().then(function(buffer) { + try { + return JSON.parse(buffer.toString()); + } catch (err) { + return Body.Promise.reject(new FetchError('invalid json response body at ' + self.url + ' reason: ' + err.message, 'invalid-json')); + } + }); -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +}; -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } +/** + * Decode response as text + * + * @return Promise + */ +Body.prototype.text = function() { -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } + return this._decode().then(function(buffer) { + return buffer.toString(); + }); -var SnapshotObject = function SnapshotObject(attrs) { - (0, _classCallCheck2.default)(this, SnapshotObject); - Object.assign(this, attrs); }; -var CozyClient = /*#__PURE__*/function (_SnapshotObject) { - (0, _inherits2.default)(CozyClient, _SnapshotObject); +/** + * Decode response as buffer (non-spec api) + * + * @return Promise + */ +Body.prototype.buffer = function() { - var _super = _createSuper(CozyClient); + return this._decode(); - function CozyClient() { - (0, _classCallCheck2.default)(this, CozyClient); - return _super.apply(this, arguments); - } +}; - return CozyClient; -}(SnapshotObject); +/** + * Decode buffers into utf-8 string + * + * @return Promise + */ +Body.prototype._decode = function() { -exports.CozyClient = CozyClient; + var self = this; -/***/ }), -/* 790 */ -/***/ (function(module, exports, __webpack_require__) { + if (this.bodyUsed) { + return Body.Promise.reject(new Error('body used already for: ' + this.url)); + } -var json = typeof JSON !== 'undefined' ? JSON : __webpack_require__(791); + this.bodyUsed = true; + this._bytes = 0; + this._abort = false; + this._raw = []; -module.exports = function (obj, opts) { - if (!opts) opts = {}; - if (typeof opts === 'function') opts = { cmp: opts }; - var space = opts.space || ''; - if (typeof space === 'number') space = Array(space+1).join(' '); - var cycles = (typeof opts.cycles === 'boolean') ? opts.cycles : false; - var replacer = opts.replacer || function(key, value) { return value; }; + return new Body.Promise(function(resolve, reject) { + var resTimeout; - var cmp = opts.cmp && (function (f) { - return function (node) { - return function (a, b) { - var aobj = { key: a, value: node[a] }; - var bobj = { key: b, value: node[b] }; - return f(aobj, bobj); - }; - }; - })(opts.cmp); + // body is string + if (typeof self.body === 'string') { + self._bytes = self.body.length; + self._raw = [new Buffer(self.body)]; + return resolve(self._convert()); + } - var seen = []; - return (function stringify (parent, key, node, level) { - var indent = space ? ('\n' + new Array(level + 1).join(space)) : ''; - var colonSeparator = space ? ': ' : ':'; + // body is buffer + if (self.body instanceof Buffer) { + self._bytes = self.body.length; + self._raw = [self.body]; + return resolve(self._convert()); + } - if (node && node.toJSON && typeof node.toJSON === 'function') { - node = node.toJSON(); - } + // allow timeout on slow response body + if (self.timeout) { + resTimeout = setTimeout(function() { + self._abort = true; + reject(new FetchError('response timeout at ' + self.url + ' over limit: ' + self.timeout, 'body-timeout')); + }, self.timeout); + } - node = replacer.call(parent, key, node); + // handle stream error, such as incorrect content-encoding + self.body.on('error', function(err) { + reject(new FetchError('invalid response body at: ' + self.url + ' reason: ' + err.message, 'system', err)); + }); - if (node === undefined) { - return; - } - if (typeof node !== 'object' || node === null) { - return json.stringify(node); - } - if (isArray(node)) { - var out = []; - for (var i = 0; i < node.length; i++) { - var item = stringify(node, i, node[i], level+1) || json.stringify(null); - out.push(indent + space + item); - } - return '[' + out.join(',') + indent + ']'; - } - else { - if (seen.indexOf(node) !== -1) { - if (cycles) return json.stringify('__cycle__'); - throw new TypeError('Converting circular structure to JSON'); - } - else seen.push(node); + // body is stream + self.body.on('data', function(chunk) { + if (self._abort || chunk === null) { + return; + } - var keys = objectKeys(node).sort(cmp && cmp(node)); - var out = []; - for (var i = 0; i < keys.length; i++) { - var key = keys[i]; - var value = stringify(node, key, node[key], level+1); + if (self.size && self._bytes + chunk.length > self.size) { + self._abort = true; + reject(new FetchError('content size at ' + self.url + ' over limit: ' + self.size, 'max-size')); + return; + } - if(!value) continue; + self._bytes += chunk.length; + self._raw.push(chunk); + }); - var keyValue = json.stringify(key) - + colonSeparator - + value; - ; - out.push(indent + space + keyValue); - } - seen.splice(seen.indexOf(node), 1); - return '{' + out.join(',') + indent + '}'; - } - })({ '': obj }, '', obj, 0); -}; + self.body.on('end', function() { + if (self._abort) { + return; + } -var isArray = Array.isArray || function (x) { - return {}.toString.call(x) === '[object Array]'; -}; + clearTimeout(resTimeout); + resolve(self._convert()); + }); + }); -var objectKeys = Object.keys || function (obj) { - var has = Object.prototype.hasOwnProperty || function () { return true }; - var keys = []; - for (var key in obj) { - if (has.call(obj, key)) keys.push(key); - } - return keys; }; +/** + * Detect buffer encoding and convert to target encoding + * ref: http://www.w3.org/TR/2011/WD-html5-20110113/parsing.html#determining-the-character-encoding + * + * @param String encoding Target encoding + * @return String + */ +Body.prototype._convert = function(encoding) { -/***/ }), -/* 791 */ -/***/ (function(module, exports, __webpack_require__) { + encoding = encoding || 'utf-8'; -exports.parse = __webpack_require__(792); -exports.stringify = __webpack_require__(793); + var ct = this.headers.get('content-type'); + var charset = 'utf-8'; + var res, str; + // header + if (ct) { + // skip encoding detection altogether if not html/xml/plain text + if (!/text\/html|text\/plain|\+xml|\/xml/i.test(ct)) { + return Buffer.concat(this._raw); + } -/***/ }), -/* 792 */ -/***/ (function(module, exports) { + res = /charset=([^;]*)/i.exec(ct); + } -var at, // The index of the current character - ch, // The current character - escapee = { - '"': '"', - '\\': '\\', - '/': '/', - b: '\b', - f: '\f', - n: '\n', - r: '\r', - t: '\t' - }, - text, - - error = function (m) { - // Call error when something is wrong. - throw { - name: 'SyntaxError', - message: m, - at: at, - text: text - }; - }, - - next = function (c) { - // If a c parameter is provided, verify that it matches the current character. - if (c && c !== ch) { - error("Expected '" + c + "' instead of '" + ch + "'"); - } - - // Get the next character. When there are no more characters, - // return the empty string. - - ch = text.charAt(at); - at += 1; - return ch; - }, - - number = function () { - // Parse a number value. - var number, - string = ''; - - if (ch === '-') { - string = '-'; - next('-'); - } - while (ch >= '0' && ch <= '9') { - string += ch; - next(); - } - if (ch === '.') { - string += '.'; - while (next() && ch >= '0' && ch <= '9') { - string += ch; - } - } - if (ch === 'e' || ch === 'E') { - string += ch; - next(); - if (ch === '-' || ch === '+') { - string += ch; - next(); - } - while (ch >= '0' && ch <= '9') { - string += ch; - next(); - } - } - number = +string; - if (!isFinite(number)) { - error("Bad number"); - } else { - return number; - } - }, - - string = function () { - // Parse a string value. - var hex, - i, - string = '', - uffff; - - // When parsing for string values, we must look for " and \ characters. - if (ch === '"') { - while (next()) { - if (ch === '"') { - next(); - return string; - } else if (ch === '\\') { - next(); - if (ch === 'u') { - uffff = 0; - for (i = 0; i < 4; i += 1) { - hex = parseInt(next(), 16); - if (!isFinite(hex)) { - break; - } - uffff = uffff * 16 + hex; - } - string += String.fromCharCode(uffff); - } else if (typeof escapee[ch] === 'string') { - string += escapee[ch]; - } else { - break; - } - } else { - string += ch; - } - } - } - error("Bad string"); - }, + // no charset in content type, peek at response body for at most 1024 bytes + if (!res && this._raw.length > 0) { + for (var i = 0; i < this._raw.length; i++) { + str += this._raw[i].toString() + if (str.length > 1024) { + break; + } + } + str = str.substr(0, 1024); + } - white = function () { + // html5 + if (!res && str) { + res = /<meta.+?charset=(['"])(.+?)\1/i.exec(str); + } -// Skip whitespace. + // html4 + if (!res && str) { + res = /<meta[\s]+?http-equiv=(['"])content-type\1[\s]+?content=(['"])(.+?)\2/i.exec(str); - while (ch && ch <= ' ') { - next(); - } - }, + if (res) { + res = /charset=(.*)/i.exec(res.pop()); + } + } - word = function () { + // xml + if (!res && str) { + res = /<\?xml.+?encoding=(['"])(.+?)\1/i.exec(str); + } -// true, false, or null. + // found charset + if (res) { + charset = res.pop(); - switch (ch) { - case 't': - next('t'); - next('r'); - next('u'); - next('e'); - return true; - case 'f': - next('f'); - next('a'); - next('l'); - next('s'); - next('e'); - return false; - case 'n': - next('n'); - next('u'); - next('l'); - next('l'); - return null; - } - error("Unexpected '" + ch + "'"); - }, + // prevent decode issues when sites use incorrect encoding + // ref: https://hsivonen.fi/encoding-menu/ + if (charset === 'gb2312' || charset === 'gbk') { + charset = 'gb18030'; + } + } - value, // Place holder for the value function. + // turn raw buffers into a single utf-8 buffer + return convert( + Buffer.concat(this._raw) + , encoding + , charset + ); - array = function () { +}; -// Parse an array value. +/** + * Clone body given Res/Req instance + * + * @param Mixed instance Response or Request instance + * @return Mixed + */ +Body.prototype._clone = function(instance) { + var p1, p2; + var body = instance.body; - var array = []; + // don't allow cloning a used body + if (instance.bodyUsed) { + throw new Error('cannot clone body after it is used'); + } - if (ch === '[') { - next('['); - white(); - if (ch === ']') { - next(']'); - return array; // empty array - } - while (ch) { - array.push(value()); - white(); - if (ch === ']') { - next(']'); - return array; - } - next(','); - white(); - } - } - error("Bad array"); - }, + // check that body is a stream and not form-data object + // note: we can't clone the form-data object without having it as a dependency + if (bodyStream(body) && typeof body.getBoundary !== 'function') { + // tee instance body + p1 = new PassThrough(); + p2 = new PassThrough(); + body.pipe(p1); + body.pipe(p2); + // set instance body to teed body and return the other teed body + instance.body = p1; + body = p2; + } - object = function () { + return body; +} -// Parse an object value. +// expose Promise +Body.Promise = global.Promise; - var key, - object = {}; - - if (ch === '{') { - next('{'); - white(); - if (ch === '}') { - next('}'); - return object; // empty object - } - while (ch) { - key = string(); - white(); - next(':'); - if (Object.hasOwnProperty.call(object, key)) { - error('Duplicate key "' + key + '"'); - } - object[key] = value(); - white(); - if (ch === '}') { - next('}'); - return object; - } - next(','); - white(); - } - } - error("Bad object"); - }; -value = function () { - -// Parse a JSON value. It could be an object, an array, a string, a number, -// or a word. - - white(); - switch (ch) { - case '{': - return object(); - case '[': - return array(); - case '"': - return string(); - case '-': - return number(); - default: - return ch >= '0' && ch <= '9' ? number() : word(); - } -}; +/***/ }), +/* 804 */ +/***/ (function(module, exports, __webpack_require__) { -// Return the json_parse function. It will have access to all of the above -// functions and variables. +"use strict"; -module.exports = function (source, reviver) { - var result; - - text = source; - at = 0; - ch = ' '; - result = value(); - white(); - if (ch) { - error("Syntax error"); - } - - // If there is a reviver function, we recursively walk the new structure, - // passing each name/value pair to the reviver function for possible - // transformation, starting with a temporary root object that holds the result - // in an empty key. If there is not a reviver function, we simply return the - // result. - - return typeof reviver === 'function' ? (function walk(holder, key) { - var k, v, value = holder[key]; - if (value && typeof value === 'object') { - for (k in value) { - if (Object.prototype.hasOwnProperty.call(value, k)) { - v = walk(value, k); - if (v !== undefined) { - value[k] = v; - } else { - delete value[k]; - } - } - } - } - return reviver.call(holder, key, value); - }({'': result}, '')) : result; -}; +var iconvLite = __webpack_require__(805); -/***/ }), -/* 793 */ -/***/ (function(module, exports) { +// Expose to the world +module.exports.convert = convert; -var cx = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g, - escapable = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g, - gap, - indent, - meta = { // table of character substitutions - '\b': '\\b', - '\t': '\\t', - '\n': '\\n', - '\f': '\\f', - '\r': '\\r', - '"' : '\\"', - '\\': '\\\\' - }, - rep; +/** + * Convert encoding of an UTF-8 string or a buffer + * + * @param {String|Buffer} str String to be converted + * @param {String} to Encoding to be converted to + * @param {String} [from='UTF-8'] Encoding to be converted from + * @return {Buffer} Encoded string + */ +function convert(str, to, from) { + from = checkEncoding(from || 'UTF-8'); + to = checkEncoding(to || 'UTF-8'); + str = str || ''; -function quote(string) { - // If the string contains no control characters, no quote characters, and no - // backslash characters, then we can safely slap some quotes around it. - // Otherwise we must also replace the offending characters with safe escape - // sequences. - - escapable.lastIndex = 0; - return escapable.test(string) ? '"' + string.replace(escapable, function (a) { - var c = meta[a]; - return typeof c === 'string' ? c : - '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); - }) + '"' : '"' + string + '"'; -} - -function str(key, holder) { - // Produce a string from holder[key]. - var i, // The loop counter. - k, // The member key. - v, // The member value. - length, - mind = gap, - partial, - value = holder[key]; - - // If the value has a toJSON method, call it to obtain a replacement value. - if (value && typeof value === 'object' && - typeof value.toJSON === 'function') { - value = value.toJSON(key); - } - - // If we were called with a replacer function, then call the replacer to - // obtain a replacement value. - if (typeof rep === 'function') { - value = rep.call(holder, key, value); - } - - // What happens next depends on the value's type. - switch (typeof value) { - case 'string': - return quote(value); - - case 'number': - // JSON numbers must be finite. Encode non-finite numbers as null. - return isFinite(value) ? String(value) : 'null'; - - case 'boolean': - case 'null': - // If the value is a boolean or null, convert it to a string. Note: - // typeof null does not produce 'null'. The case is included here in - // the remote chance that this gets fixed someday. - return String(value); - - case 'object': - if (!value) return 'null'; - gap += indent; - partial = []; - - // Array.isArray - if (Object.prototype.toString.apply(value) === '[object Array]') { - length = value.length; - for (i = 0; i < length; i += 1) { - partial[i] = str(i, value) || 'null'; - } - - // Join all of the elements together, separated with commas, and - // wrap them in brackets. - v = partial.length === 0 ? '[]' : gap ? - '[\n' + gap + partial.join(',\n' + gap) + '\n' + mind + ']' : - '[' + partial.join(',') + ']'; - gap = mind; - return v; - } - - // If the replacer is an array, use it to select the members to be - // stringified. - if (rep && typeof rep === 'object') { - length = rep.length; - for (i = 0; i < length; i += 1) { - k = rep[i]; - if (typeof k === 'string') { - v = str(k, value); - if (v) { - partial.push(quote(k) + (gap ? ': ' : ':') + v); - } - } - } - } - else { - // Otherwise, iterate through all of the keys in the object. - for (k in value) { - if (Object.prototype.hasOwnProperty.call(value, k)) { - v = str(k, value); - if (v) { - partial.push(quote(k) + (gap ? ': ' : ':') + v); - } - } - } - } - - // Join all of the member texts together, separated with commas, - // and wrap them in braces. + var result; - v = partial.length === 0 ? '{}' : gap ? - '{\n' + gap + partial.join(',\n' + gap) + '\n' + mind + '}' : - '{' + partial.join(',') + '}'; - gap = mind; - return v; + if (from !== 'UTF-8' && typeof str === 'string') { + str = Buffer.from(str, 'binary'); } -} -module.exports = function (value, replacer, space) { - var i; - gap = ''; - indent = ''; - - // If the space parameter is a number, make an indent string containing that - // many spaces. - if (typeof space === 'number') { - for (i = 0; i < space; i += 1) { - indent += ' '; + if (from === to) { + if (typeof str === 'string') { + result = Buffer.from(str); + } else { + result = str; + } + } else { + try { + result = convertIconvLite(str, to, from); + } catch (E) { + console.error(E); + result = str; } } - // If the space parameter is a string, it will be used as the indent string. - else if (typeof space === 'string') { - indent = space; + + if (typeof result === 'string') { + result = Buffer.from(result, 'utf-8'); } - // If there is a replacer, it must be a function or an array. - // Otherwise, throw an error. - rep = replacer; - if (replacer && typeof replacer !== 'function' - && (typeof replacer !== 'object' || typeof replacer.length !== 'number')) { - throw new Error('JSON.stringify'); + return result; +} + +/** + * Convert encoding of astring with iconv-lite + * + * @param {String|Buffer} str String to be converted + * @param {String} to Encoding to be converted to + * @param {String} [from='UTF-8'] Encoding to be converted from + * @return {Buffer} Encoded string + */ +function convertIconvLite(str, to, from) { + if (to === 'UTF-8') { + return iconvLite.decode(str, from); + } else if (from === 'UTF-8') { + return iconvLite.encode(str, to); + } else { + return iconvLite.encode(iconvLite.decode(str, from), to); } - - // Make a fake root object containing our value under the key of ''. - // Return the result of stringifying the value. - return str('', {'': value}); -}; +} + +/** + * Converts charset name if needed + * + * @param {String} name Character set + * @return {String} Character set name + */ +function checkEncoding(name) { + return (name || '') + .toString() + .trim() + .replace(/^latin[\-_]?(\d+)$/i, 'ISO-8859-$1') + .replace(/^win(?:dows)?[\-_]?(\d+)$/i, 'WINDOWS-$1') + .replace(/^utf[\-_]?(\d+)$/i, 'UTF-$1') + .replace(/^ks_c_5601\-1987$/i, 'CP949') + .replace(/^us[\-_]?ascii$/i, 'ASCII') + .toUpperCase(); +} /***/ }), -/* 794 */ +/* 805 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +var Buffer = __webpack_require__(114).Buffer; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.default = void 0; +var bomHandling = __webpack_require__(806), + iconv = module.exports; -var _regenerator = _interopRequireDefault(__webpack_require__(545)); +// All codecs and aliases are kept here, keyed by encoding name/alias. +// They are lazy loaded in `iconv.getCodec` from `encodings/index.js`. +iconv.encodings = null; -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); +// Characters emitted in case of error. +iconv.defaultCharUnicode = '�'; +iconv.defaultCharSingleByte = '?'; -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); +// Public API. +iconv.encode = function encode(str, encoding, options) { + str = "" + (str || ""); // Ensure string. -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); + var encoder = iconv.getEncoder(encoding, options); -/** - * Caches promises while they are pending - * Serves to dedupe equal queries requested at the same time - */ -var PromiseCache = /*#__PURE__*/function () { - function PromiseCache() { - (0, _classCallCheck2.default)(this, PromiseCache); + var res = encoder.write(str); + var trail = encoder.end(); + + return (trail && trail.length > 0) ? Buffer.concat([res, trail]) : res; +} - /** - * Holds pending promises - * - * @type {Object.<string, Promise>} - */ - this.pending = {}; - } - /** - * Tries to find a pending promise corresponding to the result of keyFunc - * - If not found, promiseFunc is executed and the resulting promise is stored while it's pending - * - If found, it is immediately returned - * - * @template T - * @param {function(): Promise<T>} promiseFunc - Not executed only if an "equal" promise is already pending. - * @param {function(): string} keyFunc - Returns a key to find in cache to find a pending promise. - * @returns {Promise<T>} - */ +iconv.decode = function decode(buf, encoding, options) { + if (typeof buf === 'string') { + if (!iconv.skipDecodeWarning) { + console.error('Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding'); + iconv.skipDecodeWarning = true; + } + buf = Buffer.from("" + (buf || ""), "binary"); // Ensure buffer. + } - (0, _createClass2.default)(PromiseCache, [{ - key: "exec", - value: function () { - var _exec = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(promiseFunc, keyFunc) { - var key, already, prom, response; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - key = keyFunc(); - already = this.pending[key]; + var decoder = iconv.getDecoder(encoding, options); - if (already) { - prom = already; - } else { - prom = promiseFunc(); - this.pending[key] = prom; - } + var res = decoder.write(buf); + var trail = decoder.end(); - _context.prev = 3; - _context.next = 6; - return prom; + return trail ? (res + trail) : res; +} - case 6: - response = _context.sent; - return _context.abrupt("return", response); +iconv.encodingExists = function encodingExists(enc) { + try { + iconv.getCodec(enc); + return true; + } catch (e) { + return false; + } +} - case 8: - _context.prev = 8; - this.pending[key] = null; - return _context.finish(8); +// Legacy aliases to convert functions +iconv.toEncoding = iconv.encode; +iconv.fromEncoding = iconv.decode; - case 11: - case "end": - return _context.stop(); - } - } - }, _callee, this, [[3,, 8, 11]]); - })); +// Search for a codec in iconv.encodings. Cache codec data in iconv._codecDataCache. +iconv._codecDataCache = {}; +iconv.getCodec = function getCodec(encoding) { + if (!iconv.encodings) + iconv.encodings = __webpack_require__(807); // Lazy load all encoding definitions. + + // Canonicalize encoding name: strip all non-alphanumeric chars and appended year. + var enc = iconv._canonicalizeEncoding(encoding); - function exec(_x, _x2) { - return _exec.apply(this, arguments); - } + // Traverse iconv.encodings to find actual codec. + var codecOptions = {}; + while (true) { + var codec = iconv._codecDataCache[enc]; + if (codec) + return codec; - return exec; - }() - /** - * - * @param {function(): string} keyFunc - Returns a key to find in cache to find a pending promise. - * @returns {Promise | null} - */ + var codecDef = iconv.encodings[enc]; - }, { - key: "get", - value: function get(keyFunc) { - var key = keyFunc(); - var already = this.pending[key]; - if (already) return already; - return null; - } - }]); - return PromiseCache; -}(); + switch (typeof codecDef) { + case "string": // Direct alias to other encoding. + enc = codecDef; + break; -var _default = PromiseCache; -exports.default = _default; + case "object": // Alias with options. Can be layered. + for (var key in codecDef) + codecOptions[key] = codecDef[key]; -/***/ }), -/* 795 */ -/***/ (function(module, exports, __webpack_require__) { + if (!codecOptions.encodingName) + codecOptions.encodingName = enc; + + enc = codecDef.type; + break; -var createFlow = __webpack_require__(796); + case "function": // Codec itself. + if (!codecOptions.encodingName) + codecOptions.encodingName = enc; -/** - * Creates a function that returns the result of invoking the given functions - * with the `this` binding of the created function, where each successive - * invocation is supplied the return value of the previous. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Util - * @param {...(Function|Function[])} [funcs] The functions to invoke. - * @returns {Function} Returns the new composite function. - * @see _.flowRight - * @example - * - * function square(n) { - * return n * n; - * } - * - * var addSquare = _.flow([_.add, square]); - * addSquare(1, 2); - * // => 9 - */ -var flow = createFlow(); + // The codec function must load all tables and return object with .encoder and .decoder methods. + // It'll be called only once (for each different options object). + codec = new codecDef(codecOptions, iconv); -module.exports = flow; + iconv._codecDataCache[codecOptions.encodingName] = codec; // Save it to be reused later. + return codec; + default: + throw new Error("Encoding not recognized: '" + encoding + "' (searched as: '"+enc+"')"); + } + } +} -/***/ }), -/* 796 */ -/***/ (function(module, exports, __webpack_require__) { +iconv._canonicalizeEncoding = function(encoding) { + // Canonicalize encoding name: strip all non-alphanumeric chars and appended year. + return (''+encoding).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g, ""); +} -var LodashWrapper = __webpack_require__(797), - flatRest = __webpack_require__(638), - getData = __webpack_require__(799), - getFuncName = __webpack_require__(801), - isArray = __webpack_require__(75), - isLaziable = __webpack_require__(803); +iconv.getEncoder = function getEncoder(encoding, options) { + var codec = iconv.getCodec(encoding), + encoder = new codec.encoder(options, codec); -/** Error message constants. */ -var FUNC_ERROR_TEXT = 'Expected a function'; + if (codec.bomAware && options && options.addBOM) + encoder = new bomHandling.PrependBOM(encoder, options); -/** Used to compose bitmasks for function metadata. */ -var WRAP_CURRY_FLAG = 8, - WRAP_PARTIAL_FLAG = 32, - WRAP_ARY_FLAG = 128, - WRAP_REARG_FLAG = 256; + return encoder; +} -/** - * Creates a `_.flow` or `_.flowRight` function. - * - * @private - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new flow function. - */ -function createFlow(fromRight) { - return flatRest(function(funcs) { - var length = funcs.length, - index = length, - prereq = LodashWrapper.prototype.thru; +iconv.getDecoder = function getDecoder(encoding, options) { + var codec = iconv.getCodec(encoding), + decoder = new codec.decoder(options, codec); - if (fromRight) { - funcs.reverse(); + if (codec.bomAware && !(options && options.stripBOM === false)) + decoder = new bomHandling.StripBOM(decoder, options); + + return decoder; +} + +// Streaming API +// NOTE: Streaming API naturally depends on 'stream' module from Node.js. Unfortunately in browser environments this module can add +// up to 100Kb to the output bundle. To avoid unnecessary code bloat, we don't enable Streaming API in browser by default. +// If you would like to enable it explicitly, please add the following code to your app: +// > iconv.enableStreamingAPI(require('stream')); +iconv.enableStreamingAPI = function enableStreamingAPI(stream_module) { + if (iconv.supportsStreams) + return; + + // Dependency-inject stream module to create IconvLite stream classes. + var streams = __webpack_require__(826)(stream_module); + + // Not public API yet, but expose the stream classes. + iconv.IconvLiteEncoderStream = streams.IconvLiteEncoderStream; + iconv.IconvLiteDecoderStream = streams.IconvLiteDecoderStream; + + // Streaming API. + iconv.encodeStream = function encodeStream(encoding, options) { + return new iconv.IconvLiteEncoderStream(iconv.getEncoder(encoding, options), options); } - while (index--) { - var func = funcs[index]; - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - if (prereq && !wrapper && getFuncName(func) == 'wrapper') { - var wrapper = new LodashWrapper([], true); - } + + iconv.decodeStream = function decodeStream(encoding, options) { + return new iconv.IconvLiteDecoderStream(iconv.getDecoder(encoding, options), options); } - index = wrapper ? index : length; - while (++index < length) { - func = funcs[index]; - var funcName = getFuncName(func), - data = funcName == 'wrapper' ? getData(func) : undefined; + iconv.supportsStreams = true; +} - if (data && isLaziable(data[0]) && - data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && - !data[4].length && data[9] == 1 - ) { - wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]); - } else { - wrapper = (func.length == 1 && isLaziable(func)) - ? wrapper[funcName]() - : wrapper.thru(func); - } - } - return function() { - var args = arguments, - value = args[0]; +// Enable Streaming API automatically if 'stream' module is available and non-empty (the majority of environments). +var stream_module; +try { + stream_module = __webpack_require__(100); +} catch (e) {} - if (wrapper && args.length == 1 && isArray(value)) { - return wrapper.plant(value).value(); - } - var index = 0, - result = length ? funcs[index].apply(this, args) : value; +if (stream_module && stream_module.Transform) { + iconv.enableStreamingAPI(stream_module); - while (++index < length) { - result = funcs[index].call(this, result); - } - return result; +} else { + // In rare cases where 'stream' module is not available by default, throw a helpful exception. + iconv.encodeStream = iconv.decodeStream = function() { + throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it."); }; - }); } -module.exports = createFlow; +if (false) {} /***/ }), -/* 797 */ +/* 806 */ /***/ (function(module, exports, __webpack_require__) { -var baseCreate = __webpack_require__(603), - baseLodash = __webpack_require__(798); +"use strict"; -/** - * The base constructor for creating `lodash` wrapper objects. - * - * @private - * @param {*} value The value to wrap. - * @param {boolean} [chainAll] Enable explicit method chain sequences. - */ -function LodashWrapper(value, chainAll) { - this.__wrapped__ = value; - this.__actions__ = []; - this.__chain__ = !!chainAll; - this.__index__ = 0; - this.__values__ = undefined; + +var BOMChar = '\uFEFF'; + +exports.PrependBOM = PrependBOMWrapper +function PrependBOMWrapper(encoder, options) { + this.encoder = encoder; + this.addBOM = true; } -LodashWrapper.prototype = baseCreate(baseLodash.prototype); -LodashWrapper.prototype.constructor = LodashWrapper; +PrependBOMWrapper.prototype.write = function(str) { + if (this.addBOM) { + str = BOMChar + str; + this.addBOM = false; + } -module.exports = LodashWrapper; + return this.encoder.write(str); +} +PrependBOMWrapper.prototype.end = function() { + return this.encoder.end(); +} -/***/ }), -/* 798 */ -/***/ (function(module, exports) { -/** - * The function whose prototype chain sequence wrappers inherit from. - * - * @private - */ -function baseLodash() { - // No operation performed. +//------------------------------------------------------------------------------ + +exports.StripBOM = StripBOMWrapper; +function StripBOMWrapper(decoder, options) { + this.decoder = decoder; + this.pass = false; + this.options = options || {}; +} + +StripBOMWrapper.prototype.write = function(buf) { + var res = this.decoder.write(buf); + if (this.pass || !res) + return res; + + if (res[0] === BOMChar) { + res = res.slice(1); + if (typeof this.options.stripBOM === 'function') + this.options.stripBOM(); + } + + this.pass = true; + return res; +} + +StripBOMWrapper.prototype.end = function() { + return this.decoder.end(); } -module.exports = baseLodash; /***/ }), -/* 799 */ +/* 807 */ /***/ (function(module, exports, __webpack_require__) { -var metaMap = __webpack_require__(800), - noop = __webpack_require__(483); +"use strict"; -/** - * Gets metadata for `func`. - * - * @private - * @param {Function} func The function to query. - * @returns {*} Returns the metadata for `func`. - */ -var getData = !metaMap ? noop : function(func) { - return metaMap.get(func); -}; -module.exports = getData; +// Update this array if you add/rename/remove files in this directory. +// We support Browserify by skipping automatic module discovery and requiring modules directly. +var modules = [ + __webpack_require__(808), + __webpack_require__(810), + __webpack_require__(811), + __webpack_require__(812), + __webpack_require__(813), + __webpack_require__(814), + __webpack_require__(815), + __webpack_require__(816), + __webpack_require__(817), +]; + +// Put all encoding/alias/codec definitions to single object and export it. +for (var i = 0; i < modules.length; i++) { + var module = modules[i]; + for (var enc in module) + if (Object.prototype.hasOwnProperty.call(module, enc)) + exports[enc] = module[enc]; +} /***/ }), -/* 800 */ +/* 808 */ /***/ (function(module, exports, __webpack_require__) { -var WeakMap = __webpack_require__(463); +"use strict"; -/** Used to store function metadata. */ -var metaMap = WeakMap && new WeakMap; +var Buffer = __webpack_require__(114).Buffer; -module.exports = metaMap; +// Export Node.js internal encodings. +module.exports = { + // Encodings + utf8: { type: "_internal", bomAware: true}, + cesu8: { type: "_internal", bomAware: true}, + unicode11utf8: "utf8", -/***/ }), -/* 801 */ -/***/ (function(module, exports, __webpack_require__) { + ucs2: { type: "_internal", bomAware: true}, + utf16le: "ucs2", -var realNames = __webpack_require__(802); + binary: { type: "_internal" }, + base64: { type: "_internal" }, + hex: { type: "_internal" }, -/** Used for built-in method references. */ -var objectProto = Object.prototype; + // Codec. + _internal: InternalCodec, +}; -/** Used to check objects for own properties. */ -var hasOwnProperty = objectProto.hasOwnProperty; +//------------------------------------------------------------------------------ -/** - * Gets the name of `func`. - * - * @private - * @param {Function} func The function to query. - * @returns {string} Returns the function name. - */ -function getFuncName(func) { - var result = (func.name + ''), - array = realNames[result], - length = hasOwnProperty.call(realNames, result) ? array.length : 0; +function InternalCodec(codecOptions, iconv) { + this.enc = codecOptions.encodingName; + this.bomAware = codecOptions.bomAware; - while (length--) { - var data = array[length], - otherFunc = data.func; - if (otherFunc == null || otherFunc == func) { - return data.name; + if (this.enc === "base64") + this.encoder = InternalEncoderBase64; + else if (this.enc === "cesu8") { + this.enc = "utf8"; // Use utf8 for decoding. + this.encoder = InternalEncoderCesu8; + + // Add decoder for versions of Node not supporting CESU-8 + if (Buffer.from('eda0bdedb2a9', 'hex').toString() !== '💩') { + this.decoder = InternalDecoderCesu8; + this.defaultCharUnicode = iconv.defaultCharUnicode; + } } - } - return result; } -module.exports = getFuncName; - - -/***/ }), -/* 802 */ -/***/ (function(module, exports) { +InternalCodec.prototype.encoder = InternalEncoder; +InternalCodec.prototype.decoder = InternalDecoder; -/** Used to lookup unminified function names. */ -var realNames = {}; +//------------------------------------------------------------------------------ -module.exports = realNames; +// We use node.js internal decoder. Its signature is the same as ours. +var StringDecoder = __webpack_require__(809).StringDecoder; +if (!StringDecoder.prototype.end) // Node v0.8 doesn't have this method. + StringDecoder.prototype.end = function() {}; -/***/ }), -/* 803 */ -/***/ (function(module, exports, __webpack_require__) { -var LazyWrapper = __webpack_require__(804), - getData = __webpack_require__(799), - getFuncName = __webpack_require__(801), - lodash = __webpack_require__(805); +function InternalDecoder(options, codec) { + this.decoder = new StringDecoder(codec.enc); +} -/** - * Checks if `func` has a lazy counterpart. - * - * @private - * @param {Function} func The function to check. - * @returns {boolean} Returns `true` if `func` has a lazy counterpart, - * else `false`. - */ -function isLaziable(func) { - var funcName = getFuncName(func), - other = lodash[funcName]; +InternalDecoder.prototype.write = function(buf) { + if (!Buffer.isBuffer(buf)) { + buf = Buffer.from(buf); + } - if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { - return false; - } - if (func === other) { - return true; - } - var data = getData(other); - return !!data && func === data[0]; + return this.decoder.write(buf); } -module.exports = isLaziable; +InternalDecoder.prototype.end = function() { + return this.decoder.end(); +} -/***/ }), -/* 804 */ -/***/ (function(module, exports, __webpack_require__) { +//------------------------------------------------------------------------------ +// Encoder is mostly trivial -var baseCreate = __webpack_require__(603), - baseLodash = __webpack_require__(798); +function InternalEncoder(options, codec) { + this.enc = codec.enc; +} -/** Used as references for the maximum length and index of an array. */ -var MAX_ARRAY_LENGTH = 4294967295; +InternalEncoder.prototype.write = function(str) { + return Buffer.from(str, this.enc); +} -/** - * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. - * - * @private - * @constructor - * @param {*} value The value to wrap. - */ -function LazyWrapper(value) { - this.__wrapped__ = value; - this.__actions__ = []; - this.__dir__ = 1; - this.__filtered__ = false; - this.__iteratees__ = []; - this.__takeCount__ = MAX_ARRAY_LENGTH; - this.__views__ = []; +InternalEncoder.prototype.end = function() { } -// Ensure `LazyWrapper` is an instance of `baseLodash`. -LazyWrapper.prototype = baseCreate(baseLodash.prototype); -LazyWrapper.prototype.constructor = LazyWrapper; -module.exports = LazyWrapper; +//------------------------------------------------------------------------------ +// Except base64 encoder, which must keep its state. +function InternalEncoderBase64(options, codec) { + this.prevStr = ''; +} -/***/ }), -/* 805 */ -/***/ (function(module, exports, __webpack_require__) { +InternalEncoderBase64.prototype.write = function(str) { + str = this.prevStr + str; + var completeQuads = str.length - (str.length % 4); + this.prevStr = str.slice(completeQuads); + str = str.slice(0, completeQuads); -var LazyWrapper = __webpack_require__(804), - LodashWrapper = __webpack_require__(797), - baseLodash = __webpack_require__(798), - isArray = __webpack_require__(75), - isObjectLike = __webpack_require__(73), - wrapperClone = __webpack_require__(806); + return Buffer.from(str, "base64"); +} -/** Used for built-in method references. */ -var objectProto = Object.prototype; +InternalEncoderBase64.prototype.end = function() { + return Buffer.from(this.prevStr, "base64"); +} -/** Used to check objects for own properties. */ -var hasOwnProperty = objectProto.hasOwnProperty; -/** - * Creates a `lodash` object which wraps `value` to enable implicit method - * chain sequences. Methods that operate on and return arrays, collections, - * and functions can be chained together. Methods that retrieve a single value - * or may return a primitive value will automatically end the chain sequence - * and return the unwrapped value. Otherwise, the value must be unwrapped - * with `_#value`. - * - * Explicit chain sequences, which must be unwrapped with `_#value`, may be - * enabled using `_.chain`. - * - * The execution of chained methods is lazy, that is, it's deferred until - * `_#value` is implicitly or explicitly called. - * - * Lazy evaluation allows several methods to support shortcut fusion. - * Shortcut fusion is an optimization to merge iteratee calls; this avoids - * the creation of intermediate arrays and can greatly reduce the number of - * iteratee executions. Sections of a chain sequence qualify for shortcut - * fusion if the section is applied to an array and iteratees accept only - * one argument. The heuristic for whether a section qualifies for shortcut - * fusion is subject to change. - * - * Chaining is supported in custom builds as long as the `_#value` method is - * directly or indirectly included in the build. - * - * In addition to lodash methods, wrappers have `Array` and `String` methods. - * - * The wrapper `Array` methods are: - * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` - * - * The wrapper `String` methods are: - * `replace` and `split` - * - * The wrapper methods that support shortcut fusion are: - * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, - * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, - * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` - * - * The chainable wrapper methods are: - * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, - * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, - * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, - * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, - * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, - * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, - * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, - * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, - * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, - * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, - * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, - * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, - * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, - * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, - * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, - * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, - * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, - * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, - * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, - * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, - * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, - * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, - * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, - * `zipObject`, `zipObjectDeep`, and `zipWith` - * - * The wrapper methods that are **not** chainable by default are: - * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, - * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, - * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, - * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, - * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, - * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, - * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, - * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, - * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, - * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, - * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, - * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, - * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, - * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, - * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, - * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, - * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, - * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, - * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, - * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, - * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, - * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, - * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, - * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, - * `upperFirst`, `value`, and `words` - * - * @name _ - * @constructor - * @category Seq - * @param {*} value The value to wrap in a `lodash` instance. - * @returns {Object} Returns the new `lodash` wrapper instance. - * @example - * - * function square(n) { - * return n * n; - * } - * - * var wrapped = _([1, 2, 3]); - * - * // Returns an unwrapped value. - * wrapped.reduce(_.add); - * // => 6 - * - * // Returns a wrapped value. - * var squares = wrapped.map(square); - * - * _.isArray(squares); - * // => false - * - * _.isArray(squares.value()); - * // => true - */ -function lodash(value) { - if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { - if (value instanceof LodashWrapper) { - return value; - } - if (hasOwnProperty.call(value, '__wrapped__')) { - return wrapperClone(value); +//------------------------------------------------------------------------------ +// CESU-8 encoder is also special. + +function InternalEncoderCesu8(options, codec) { +} + +InternalEncoderCesu8.prototype.write = function(str) { + var buf = Buffer.alloc(str.length * 3), bufIdx = 0; + for (var i = 0; i < str.length; i++) { + var charCode = str.charCodeAt(i); + // Naive implementation, but it works because CESU-8 is especially easy + // to convert from UTF-16 (which all JS strings are encoded in). + if (charCode < 0x80) + buf[bufIdx++] = charCode; + else if (charCode < 0x800) { + buf[bufIdx++] = 0xC0 + (charCode >>> 6); + buf[bufIdx++] = 0x80 + (charCode & 0x3f); + } + else { // charCode will always be < 0x10000 in javascript. + buf[bufIdx++] = 0xE0 + (charCode >>> 12); + buf[bufIdx++] = 0x80 + ((charCode >>> 6) & 0x3f); + buf[bufIdx++] = 0x80 + (charCode & 0x3f); + } } - } - return new LodashWrapper(value); + return buf.slice(0, bufIdx); } -// Ensure wrappers are instances of `baseLodash`. -lodash.prototype = baseLodash.prototype; -lodash.prototype.constructor = lodash; +InternalEncoderCesu8.prototype.end = function() { +} -module.exports = lodash; +//------------------------------------------------------------------------------ +// CESU-8 decoder is not implemented in Node v4.0+ +function InternalDecoderCesu8(options, codec) { + this.acc = 0; + this.contBytes = 0; + this.accBytes = 0; + this.defaultCharUnicode = codec.defaultCharUnicode; +} -/***/ }), -/* 806 */ -/***/ (function(module, exports, __webpack_require__) { +InternalDecoderCesu8.prototype.write = function(buf) { + var acc = this.acc, contBytes = this.contBytes, accBytes = this.accBytes, + res = ''; + for (var i = 0; i < buf.length; i++) { + var curByte = buf[i]; + if ((curByte & 0xC0) !== 0x80) { // Leading byte + if (contBytes > 0) { // Previous code is invalid + res += this.defaultCharUnicode; + contBytes = 0; + } -var LazyWrapper = __webpack_require__(804), - LodashWrapper = __webpack_require__(797), - copyArray = __webpack_require__(589); + if (curByte < 0x80) { // Single-byte code + res += String.fromCharCode(curByte); + } else if (curByte < 0xE0) { // Two-byte code + acc = curByte & 0x1F; + contBytes = 1; accBytes = 1; + } else if (curByte < 0xF0) { // Three-byte code + acc = curByte & 0x0F; + contBytes = 2; accBytes = 1; + } else { // Four or more are not supported for CESU-8. + res += this.defaultCharUnicode; + } + } else { // Continuation byte + if (contBytes > 0) { // We're waiting for it. + acc = (acc << 6) | (curByte & 0x3f); + contBytes--; accBytes++; + if (contBytes === 0) { + // Check for overlong encoding, but support Modified UTF-8 (encoding NULL as C0 80) + if (accBytes === 2 && acc < 0x80 && acc > 0) + res += this.defaultCharUnicode; + else if (accBytes === 3 && acc < 0x800) + res += this.defaultCharUnicode; + else + // Actually add character. + res += String.fromCharCode(acc); + } + } else { // Unexpected continuation byte + res += this.defaultCharUnicode; + } + } + } + this.acc = acc; this.contBytes = contBytes; this.accBytes = accBytes; + return res; +} -/** - * Creates a clone of `wrapper`. - * - * @private - * @param {Object} wrapper The wrapper to clone. - * @returns {Object} Returns the cloned wrapper. - */ -function wrapperClone(wrapper) { - if (wrapper instanceof LazyWrapper) { - return wrapper.clone(); - } - var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); - result.__actions__ = copyArray(wrapper.__actions__); - result.__index__ = wrapper.__index__; - result.__values__ = wrapper.__values__; - return result; +InternalDecoderCesu8.prototype.end = function() { + var res = 0; + if (this.contBytes > 0) + res += this.defaultCharUnicode; + return res; } -module.exports = wrapperClone; +/***/ }), +/* 809 */ +/***/ (function(module, exports) { + +module.exports = require("string_decoder"); /***/ }), -/* 807 */ +/* 810 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.hasQueryBeenLoaded = exports.isQueryLoading = exports.cancelable = void 0; - -/** - * @typedef {Promise} CancelablePromise - * @property {Function} cancel - Cancel the promise - */ +var Buffer = __webpack_require__(114).Buffer; -/** - * Wraps a promise so that it can be canceled - * - * Rejects with canceled: true as soon as cancel is called - * - * @param {Promise} promise - Promise - * @returns {CancelablePromise} - Promise with .cancel method - */ -var cancelable = function cancelable(promise) { - var _reject; +// == UTF32-LE/BE codec. ========================================================== - var wrapped = new Promise(function (resolve, reject) { - _reject = reject; - promise.then(resolve); - promise.catch(reject); - }); // @ts-ignore +exports._utf32 = Utf32Codec; - wrapped.cancel = function () { - _reject({ - canceled: true - }); - }; +function Utf32Codec(codecOptions, iconv) { + this.iconv = iconv; + this.bomAware = true; + this.isLE = codecOptions.isLE; +} - return wrapped; -}; +exports.utf32le = { type: '_utf32', isLE: true }; +exports.utf32be = { type: '_utf32', isLE: false }; -exports.cancelable = cancelable; +// Aliases +exports.ucs4le = 'utf32le'; +exports.ucs4be = 'utf32be'; -/** - * Returns whether the result of a query (given via queryConnect or Query) - * is loading. - */ -var isQueryLoading = function isQueryLoading(col) { - if (!col) { - console.warn('isQueryLoading called on falsy value.'); // eslint-disable-line no-console +Utf32Codec.prototype.encoder = Utf32Encoder; +Utf32Codec.prototype.decoder = Utf32Decoder; - return false; - } +// -- Encoding - return col.fetchStatus === 'loading' || col.fetchStatus === 'pending'; -}; -/** - * Returns whether a query has been loaded at least once - */ +function Utf32Encoder(options, codec) { + this.isLE = codec.isLE; + this.highSurrogate = 0; +} +Utf32Encoder.prototype.write = function(str) { + var src = Buffer.from(str, 'ucs2'); + var dst = Buffer.alloc(src.length * 2); + var write32 = this.isLE ? dst.writeUInt32LE : dst.writeUInt32BE; + var offset = 0; -exports.isQueryLoading = isQueryLoading; + for (var i = 0; i < src.length; i += 2) { + var code = src.readUInt16LE(i); + var isHighSurrogate = (0xD800 <= code && code < 0xDC00); + var isLowSurrogate = (0xDC00 <= code && code < 0xE000); -var hasQueryBeenLoaded = function hasQueryBeenLoaded(col) { - return col.lastFetch; -}; + if (this.highSurrogate) { + if (isHighSurrogate || !isLowSurrogate) { + // There shouldn't be two high surrogates in a row, nor a high surrogate which isn't followed by a low + // surrogate. If this happens, keep the pending high surrogate as a stand-alone semi-invalid character + // (technically wrong, but expected by some applications, like Windows file names). + write32.call(dst, this.highSurrogate, offset); + offset += 4; + } + else { + // Create 32-bit value from high and low surrogates; + var codepoint = (((this.highSurrogate - 0xD800) << 10) | (code - 0xDC00)) + 0x10000; -exports.hasQueryBeenLoaded = hasQueryBeenLoaded; + write32.call(dst, codepoint, offset); + offset += 4; + this.highSurrogate = 0; -/***/ }), -/* 808 */ -/***/ (function(module, exports, __webpack_require__) { + continue; + } + } -"use strict"; + if (isHighSurrogate) + this.highSurrogate = code; + else { + // Even if the current character is a low surrogate, with no previous high surrogate, we'll + // encode it as a semi-invalid stand-alone character for the same reasons expressed above for + // unpaired high surrogates. + write32.call(dst, code, offset); + offset += 4; + this.highSurrogate = 0; + } + } + if (offset < dst.length) + dst = dst.slice(0, offset); -var _interopRequireDefault = __webpack_require__(530); + return dst; +}; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.sanitizeCategories = sanitizeCategories; -exports.areTermsValid = areTermsValid; -exports.isPartnershipValid = isPartnershipValid; -exports.sanitize = sanitize; +Utf32Encoder.prototype.end = function() { + // Treat any leftover high surrogate as a semi-valid independent character. + if (!this.highSurrogate) + return; -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + var buf = Buffer.alloc(4); -var _types = __webpack_require__(628); + if (this.isLE) + buf.writeUInt32LE(this.highSurrogate, 0); + else + buf.writeUInt32BE(this.highSurrogate, 0); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + this.highSurrogate = 0; -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + return buf; +}; -var APP_CATEGORIES = ['banking', 'cozy', 'energy', 'health', 'host_provider', 'insurance', 'isp', 'mes_infos', 'online_services', 'others', 'partners', 'press', 'productivity', 'ptnb', 'public_service', 'shopping', 'social', 'telecom', 'transport']; -/** Filters unauthorized categories. Defaults to ['others'] if no suitable category. */ +// -- Decoding -function sanitizeCategories(categories) { - if (!categories) return ['others']; - var filteredList = categories.filter(function (c) { - return APP_CATEGORIES.includes(c); - }); - if (!filteredList.length) return ['others']; - return filteredList; +function Utf32Decoder(options, codec) { + this.isLE = codec.isLE; + this.badChar = codec.iconv.defaultCharUnicode.charCodeAt(0); + this.overflow = []; } -function areTermsValid(terms) { - return Boolean(terms && terms.id && terms.url && terms.version); -} +Utf32Decoder.prototype.write = function(src) { + if (src.length === 0) + return ''; -function isPartnershipValid(partnership) { - return Boolean(partnership && partnership.description); -} -/** - * Normalize app manifest, retrocompatibility for old manifests - * - * @param {Manifest} manifest - * @returns {Manifest} - */ + var i = 0; + var codepoint = 0; + var dst = Buffer.alloc(src.length + 4); + var offset = 0; + var isLE = this.isLE; + var overflow = this.overflow; + var badChar = this.badChar; + + if (overflow.length > 0) { + for (; i < src.length && overflow.length < 4; i++) + overflow.push(src[i]); + + if (overflow.length === 4) { + // NOTE: codepoint is a signed int32 and can be negative. + // NOTE: We copied this block from below to help V8 optimize it (it works with array, not buffer). + if (isLE) { + codepoint = overflow[i] | (overflow[i+1] << 8) | (overflow[i+2] << 16) | (overflow[i+3] << 24); + } else { + codepoint = overflow[i+3] | (overflow[i+2] << 8) | (overflow[i+1] << 16) | (overflow[i] << 24); + } + overflow.length = 0; + offset = _writeCodepoint(dst, offset, codepoint, badChar); + } + } -function sanitize(manifest) { - var sanitized = _objectSpread({}, manifest); // Make categories an array and delete category attribute if it exists + // Main loop. Should be as optimized as possible. + for (; i < src.length - 3; i += 4) { + // NOTE: codepoint is a signed int32 and can be negative. + if (isLE) { + codepoint = src[i] | (src[i+1] << 8) | (src[i+2] << 16) | (src[i+3] << 24); + } else { + codepoint = src[i+3] | (src[i+2] << 8) | (src[i+1] << 16) | (src[i] << 24); + } + offset = _writeCodepoint(dst, offset, codepoint, badChar); + } + // Keep overflowing bytes. + for (; i < src.length; i++) { + overflow.push(src[i]); + } - if (!manifest.categories && manifest.category && typeof manifest.category === 'string') { - sanitized.categories = [manifest.category]; - delete sanitized.category; - } + return dst.slice(0, offset).toString('ucs2'); +}; - sanitized.categories = sanitizeCategories(sanitized.categories); // manifest name is not an object +function _writeCodepoint(dst, offset, codepoint, badChar) { + // NOTE: codepoint is signed int32 and can be negative. We keep it that way to help V8 with optimizations. + if (codepoint < 0 || codepoint > 0x10FFFF) { + // Not a valid Unicode codepoint + codepoint = badChar; + } - if (typeof manifest.name === 'object') sanitized.name = manifest.name.en; // Fix camelCase from cozy-stack + // Ephemeral Planes: Write high surrogate. + if (codepoint >= 0x10000) { + codepoint -= 0x10000; - if (manifest.available_version) { - sanitized.availableVersion = manifest.available_version; - delete sanitized.available_version; - } // Fix camelCase from cozy-stack + var high = 0xD800 | (codepoint >> 10); + dst[offset++] = high & 0xff; + dst[offset++] = high >> 8; + // Low surrogate is written below. + var codepoint = 0xDC00 | (codepoint & 0x3FF); + } - if (manifest.latest_version) { - sanitized.latestVersion = manifest.latestVersion; - delete sanitized.latest_version; - } // Remove invalid terms + // Write BMP char or low surrogate. + dst[offset++] = codepoint & 0xff; + dst[offset++] = codepoint >> 8; + + return offset; +}; +Utf32Decoder.prototype.end = function() { + this.overflow.length = 0; +}; - if (sanitized.terms && !areTermsValid(sanitized.terms)) { - delete sanitized.terms; - } // Remove invalid partnership +// == UTF-32 Auto codec ============================================================= +// Decoder chooses automatically from UTF-32LE and UTF-32BE using BOM and space-based heuristic. +// Defaults to UTF-32LE. http://en.wikipedia.org/wiki/UTF-32 +// Encoder/decoder default can be changed: iconv.decode(buf, 'utf32', {defaultEncoding: 'utf-32be'}); +// Encoder prepends BOM (which can be overridden with (addBOM: false}). - if (sanitized.partnership && !isPartnershipValid(sanitized.partnership)) { - delete sanitized.partnership; - } +exports.utf32 = Utf32AutoCodec; +exports.ucs4 = 'utf32'; - return sanitized; +function Utf32AutoCodec(options, iconv) { + this.iconv = iconv; } -/***/ }), -/* 809 */ -/***/ (function(module, exports, __webpack_require__) { +Utf32AutoCodec.prototype.encoder = Utf32AutoEncoder; +Utf32AutoCodec.prototype.decoder = Utf32AutoDecoder; -"use strict"; +// -- Encoding +function Utf32AutoEncoder(options, codec) { + options = options || {}; -var _interopRequireDefault = __webpack_require__(530); + if (options.addBOM === undefined) + options.addBOM = true; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.createMockClient = void 0; + this.encoder = codec.iconv.getEncoder(options.defaultEncoding || 'utf-32le', options); +} -var _slicedToArray2 = _interopRequireDefault(__webpack_require__(538)); +Utf32AutoEncoder.prototype.write = function(str) { + return this.encoder.write(str); +}; -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +Utf32AutoEncoder.prototype.end = function() { + return this.encoder.end(); +}; -var _objectWithoutProperties2 = _interopRequireDefault(__webpack_require__(543)); +// -- Decoding -var _CozyClient = _interopRequireDefault(__webpack_require__(531)); +function Utf32AutoDecoder(options, codec) { + this.decoder = null; + this.initialBufs = []; + this.initialBufsLen = 0; + this.options = options || {}; + this.iconv = codec.iconv; +} -var _store = __webpack_require__(698); +Utf32AutoDecoder.prototype.write = function(buf) { + if (!this.decoder) { + // Codec is not chosen yet. Accumulate initial bytes. + this.initialBufs.push(buf); + this.initialBufsLen += buf.length; -var _cozyStackClient = __webpack_require__(577); + if (this.initialBufsLen < 32) // We need more bytes to use space heuristic (see below) + return ''; -var _dsl = __webpack_require__(625); + // We have enough bytes -> detect endianness. + var encoding = detectEncoding(this.initialBufs, this.options.defaultEncoding); + this.decoder = this.iconv.getDecoder(encoding, this.options); -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + var resStr = ''; + for (var i = 0; i < this.initialBufs.length; i++) + resStr += this.decoder.write(this.initialBufs[i]); -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + this.initialBufs.length = this.initialBufsLen = 0; + return resStr; + } -var fillQueryInsideClient = function fillQueryInsideClient(client, queryName, queryOptions) { - var definition = queryOptions.definition, - doctype = queryOptions.doctype, - data = queryOptions.data, - queryResult = (0, _objectWithoutProperties2.default)(queryOptions, ["definition", "doctype", "data"]); - client.store.dispatch((0, _store.initQuery)(queryName, definition || (0, _dsl.Q)(doctype))); - client.store.dispatch((0, _store.receiveQueryResult)(queryName, _objectSpread({ - data: data ? data.map(function (doc) { - return (0, _cozyStackClient.normalizeDoc)(doc, doctype); - }) : data - }, queryResult))); + return this.decoder.write(buf); }; -var mockedQueryFromMockedRemoteData = function mockedQueryFromMockedRemoteData(remoteData) { - return function (qdef) { - if (!remoteData) { - return { - data: null - }; - } +Utf32AutoDecoder.prototype.end = function() { + if (!this.decoder) { + var encoding = detectEncoding(this.initialBufs, this.options.defaultEncoding); + this.decoder = this.iconv.getDecoder(encoding, this.options); - if (remoteData[qdef.doctype]) { - return { - data: remoteData[qdef.doctype] - }; - } else { - return { - data: [] - }; + var resStr = ''; + for (var i = 0; i < this.initialBufs.length; i++) + resStr += this.decoder.write(this.initialBufs[i]); + + var trail = this.decoder.end(); + if (trail) + resStr += trail; + + this.initialBufs.length = this.initialBufsLen = 0; + return resStr; } - }; + + return this.decoder.end(); }; -/** - * Creates a client suitable for use in tests - * - * - client.{query,save} are mocked - * - client.stackClient.fetchJSON is mocked - * - * @param {object} options Options - * @param {object} [options.queries] Prefill queries inside the store - * @param {object} [options.remote] Mock data from the server - * @param {object} [options.clientOptions] Options passed to the client - * @returns {CozyClient} - */ +function detectEncoding(bufs, defaultEncoding) { + var b = []; + var charsProcessed = 0; + var invalidLE = 0, invalidBE = 0; // Number of invalid chars when decoded as LE or BE. + var bmpCharsLE = 0, bmpCharsBE = 0; // Number of BMP chars when decoded as LE or BE. + + outer_loop: + for (var i = 0; i < bufs.length; i++) { + var buf = bufs[i]; + for (var j = 0; j < buf.length; j++) { + b.push(buf[j]); + if (b.length === 4) { + if (charsProcessed === 0) { + // Check BOM first. + if (b[0] === 0xFF && b[1] === 0xFE && b[2] === 0 && b[3] === 0) { + return 'utf-32le'; + } + if (b[0] === 0 && b[1] === 0 && b[2] === 0xFE && b[3] === 0xFF) { + return 'utf-32be'; + } + } -var createMockClient = function createMockClient(_ref) { - var queries = _ref.queries, - remote = _ref.remote, - clientOptions = _ref.clientOptions; - var client = new _CozyClient.default(clientOptions || {}); - client.ensureStore(); + if (b[0] !== 0 || b[1] > 0x10) invalidBE++; + if (b[3] !== 0 || b[2] > 0x10) invalidLE++; - for (var _i = 0, _Object$entries = Object.entries(queries || {}); _i < _Object$entries.length; _i++) { - var _Object$entries$_i = (0, _slicedToArray2.default)(_Object$entries[_i], 2), - queryName = _Object$entries$_i[0], - queryOptions = _Object$entries$_i[1]; + if (b[0] === 0 && b[1] === 0 && (b[2] !== 0 || b[3] !== 0)) bmpCharsBE++; + if ((b[0] !== 0 || b[1] !== 0) && b[2] === 0 && b[3] === 0) bmpCharsLE++; - fillQueryInsideClient(client, queryName, queryOptions); - } + b.length = 0; + charsProcessed++; - client.query = jest.fn().mockImplementation(mockedQueryFromMockedRemoteData(remote)); - client.save = jest.fn(); - client.saveAll = jest.fn(); - client.stackClient.fetchJSON = jest.fn(); - return client; -}; + if (charsProcessed >= 100) { + break outer_loop; + } + } + } + } + + // Make decisions. + if (bmpCharsBE - invalidBE > bmpCharsLE - invalidLE) return 'utf-32be'; + if (bmpCharsBE - invalidBE < bmpCharsLE - invalidLE) return 'utf-32le'; + + // Couldn't decide (likely all zeros or not enough data). + return defaultEncoding || 'utf-32le'; +} -exports.createMockClient = createMockClient; /***/ }), -/* 810 */ +/* 811 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -/* WEBPACK VAR INJECTION */(function(module) { -var _interopRequireDefault = __webpack_require__(530); +var Buffer = __webpack_require__(114).Buffer; -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.createClientInteractive = void 0; +// Note: UTF16-LE (or UCS2) codec is Node.js native. See encodings/internal.js -var _regenerator = _interopRequireDefault(__webpack_require__(545)); +// == UTF16-BE codec. ========================================================== -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); +exports.utf16be = Utf16BECodec; +function Utf16BECodec() { +} -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +Utf16BECodec.prototype.encoder = Utf16BEEncoder; +Utf16BECodec.prototype.decoder = Utf16BEDecoder; +Utf16BECodec.prototype.bomAware = true; -var _http = _interopRequireDefault(__webpack_require__(98)); -var _open = _interopRequireDefault(__webpack_require__(811)); +// -- Encoding -var _fs = _interopRequireDefault(__webpack_require__(167)); +function Utf16BEEncoder() { +} -var _merge = _interopRequireDefault(__webpack_require__(747)); +Utf16BEEncoder.prototype.write = function(str) { + var buf = Buffer.from(str, 'ucs2'); + for (var i = 0; i < buf.length; i += 2) { + var tmp = buf[i]; buf[i] = buf[i+1]; buf[i+1] = tmp; + } + return buf; +} -var _serverDestroy = _interopRequireDefault(__webpack_require__(815)); +Utf16BEEncoder.prototype.end = function() { +} -var _CozyClient = _interopRequireDefault(__webpack_require__(531)); -var _cozyLogger = _interopRequireDefault(__webpack_require__(2)); +// -- Decoding -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +function Utf16BEDecoder() { + this.overflowByte = -1; +} -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +Utf16BEDecoder.prototype.write = function(buf) { + if (buf.length == 0) + return ''; -var log = _cozyLogger.default.namespace('create-cli-client'); + var buf2 = Buffer.alloc(buf.length + 1), + i = 0, j = 0; -var nodeFetch = __webpack_require__(493); + if (this.overflowByte !== -1) { + buf2[0] = buf[0]; + buf2[1] = this.overflowByte; + i = 1; j = 2; + } -var btoa = __webpack_require__(490); -/** - * Creates and starts and HTTP server suitable for OAuth authentication - * - * @param {object} serverOptions - OAuth callback server options - * @param {Function} serverOptions.onAuthentication - Additional callback called - * when the user authenticates - * @param {string} serverOptions.route - Route used for authentication - * @param {number} serverOptions.port - Port on which the server will listen - * @param {Function} serverOptions.onListen - Callback called when the - * server starts - * - * @typedef {object} DestroyableServer - * @function destroy - * - * @returns {DestroyableServer} - * - * @private - */ + for (; i < buf.length-1; i += 2, j+= 2) { + buf2[j] = buf[i+1]; + buf2[j+1] = buf[i]; + } + this.overflowByte = (i == buf.length-1) ? buf[buf.length-1] : -1; -var createCallbackServer = function createCallbackServer(serverOptions) { - var route = serverOptions.route, - onListen = serverOptions.onListen, - onAuthentication = serverOptions.onAuthentication, - port = serverOptions.port; + return buf2.slice(0, j).toString('ucs2'); +} - var server = _http.default.createServer(function (request, response) { - if (request.url.indexOf(route) === 0) { - onAuthentication(request.url); - response.write('Authentication successful, you can close this page.'); - response.end(); - } - }); +Utf16BEDecoder.prototype.end = function() { + this.overflowByte = -1; +} - server.listen(port, function () { - onListen(); - }); - (0, _serverDestroy.default)(server); - return server; -}; -/** - * Creates a function suitable for usage with CozyClient::startOAuthFlow - * - * Starts a local server. The stack upon user authentication will - * redirect to this local server with a URL containing credentials. - * The callback resolves with this authenticationURL which continues - * the authentication flow inside startOAuthFlow. - * - * When the server is started, the authentication page is opened on the - * desktop browser of the user. - * - * @param {object} serverOptions - Options for the OAuth callback server - * @param {number} serverOptions.port - Port used for the OAuth callback server - * @param {Function} serverOptions.onAuthentication - Callback when the user authenticates - * @param {Function} serverOptions.onListen - Callback called with the authentication URL - * @param {string} serverOptions.route - Route used for authentication - * @param {boolean} serverOptions.shouldOpenAuthenticationPage - Whether the authentication - * page should be automatically opened (default: true) - * - * @private - */ +// == UTF-16 codec ============================================================= +// Decoder chooses automatically from UTF-16LE and UTF-16BE using BOM and space-based heuristic. +// Defaults to UTF-16LE, as it's prevalent and default in Node. +// http://en.wikipedia.org/wiki/UTF-16 and http://encoding.spec.whatwg.org/#utf-16le +// Decoder default can be changed: iconv.decode(buf, 'utf16', {defaultEncoding: 'utf-16be'}); -var mkServerFlowCallback = function mkServerFlowCallback(serverOptions) { - return function (authenticationURL) { - return new Promise(function (resolve, reject) { - var rejectTimeout, successTimeout; - var server = createCallbackServer(_objectSpread(_objectSpread({}, serverOptions), {}, { - onAuthentication: function onAuthentication(callbackURL) { - log('debug', 'Authenticated, Shutting server down'); - successTimeout = setTimeout(function () { - // Is there a way to call destroy only after all requests have - // been completely served ? Otherwise we close the server while - // the successful oauth page is being served and the page does - // not get loaded on the client side. - server.destroy(); - resolve('http://localhost:8000/' + callbackURL); - clearTimeout(rejectTimeout); - }, 300); - }, - onListen: function onListen() { - log('debug', 'OAuth callback server started, waiting for authentication'); +// Encoder uses UTF-16LE and prepends BOM (which can be overridden with addBOM: false). - if (serverOptions.shouldOpenAuthenticationPage !== false) { - (0, _open.default)(authenticationURL, { - wait: false - }); - } +exports.utf16 = Utf16Codec; +function Utf16Codec(codecOptions, iconv) { + this.iconv = iconv; +} - if (serverOptions.onListen) { - serverOptions.onListen({ - authenticationURL: authenticationURL - }); - } - } - })); - rejectTimeout = setTimeout(function () { - clearTimeout(successTimeout); - server.destroy(); - reject('Timeout for authentication'); - }, 30 * 1000); - }); - }; -}; +Utf16Codec.prototype.encoder = Utf16Encoder; +Utf16Codec.prototype.decoder = Utf16Decoder; -var hashCode = function hashCode(str) { - var hash = 0, - i, - chr; - if (str.length === 0) return hash; - for (i = 0; i < str.length; i++) { - chr = str.charCodeAt(i); - hash = (hash << 5) - hash + chr; - hash |= 0; // Convert to 32bit integer - } +// -- Encoding (pass-through) - return hash; -}; +function Utf16Encoder(options, codec) { + options = options || {}; + if (options.addBOM === undefined) + options.addBOM = true; + this.encoder = codec.iconv.getEncoder('utf-16le', options); +} -var DEFAULT_SERVER_OPTIONS = { - port: 3333, - route: '/do_access', - getSavedCredentials: function getSavedCredentials(clientOptions) { - if (!clientOptions.oauth.softwareID) { - throw new Error('Please provide oauth.softwareID in your clientOptions.'); +Utf16Encoder.prototype.write = function(str) { + return this.encoder.write(str); +} + +Utf16Encoder.prototype.end = function() { + return this.encoder.end(); +} + + +// -- Decoding + +function Utf16Decoder(options, codec) { + this.decoder = null; + this.initialBufs = []; + this.initialBufsLen = 0; + + this.options = options || {}; + this.iconv = codec.iconv; +} + +Utf16Decoder.prototype.write = function(buf) { + if (!this.decoder) { + // Codec is not chosen yet. Accumulate initial bytes. + this.initialBufs.push(buf); + this.initialBufsLen += buf.length; + + if (this.initialBufsLen < 16) // We need more bytes to use space heuristic (see below) + return ''; + + // We have enough bytes -> detect endianness. + var encoding = detectEncoding(this.initialBufs, this.options.defaultEncoding); + this.decoder = this.iconv.getDecoder(encoding, this.options); + + var resStr = ''; + for (var i = 0; i < this.initialBufs.length; i++) + resStr += this.decoder.write(this.initialBufs[i]); + + this.initialBufs.length = this.initialBufsLen = 0; + return resStr; } - var doctypeHash = Math.abs(hashCode(JSON.stringify(clientOptions.scope))); - var sluggedURI = clientOptions.uri.replace(/https?:\/\//, '').replace(/\./g, '-'); - return "/tmp/cozy-client-oauth-".concat(sluggedURI, "-").concat(clientOptions.oauth.softwareID, "-").concat(doctypeHash, ".json"); - } -}; + return this.decoder.write(buf); +} -var writeJSON = function writeJSON(fs, filename, data) { - fs.writeFileSync(filename, JSON.stringify(data)); -}; -/** - * Parses a JSON from a file - * Returns null in case of error - * - * @private - */ +Utf16Decoder.prototype.end = function() { + if (!this.decoder) { + var encoding = detectEncoding(this.initialBufs, this.options.defaultEncoding); + this.decoder = this.iconv.getDecoder(encoding, this.options); + var resStr = ''; + for (var i = 0; i < this.initialBufs.length; i++) + resStr += this.decoder.write(this.initialBufs[i]); -var readJSON = function readJSON(fs, filename) { - try { - if (!fs.existsSync(filename)) { - return null; + var trail = this.decoder.end(); + if (trail) + resStr += trail; + + this.initialBufs.length = this.initialBufsLen = 0; + return resStr; } + return this.decoder.end(); +} - var res = JSON.parse(fs.readFileSync(filename).toString()); - return res; - } catch (e) { - console.warn("Could not load ".concat(filename, " (").concat(e.message, ")")); - return null; - } -}; -/** - * Creates a client with interactive authentication. - * - * - Will start an OAuth flow and open an authentication page - * - Starts a local server to listen for the oauth callback - * - Resolves with the client after user authentication - * - * @param {object} clientOptions Same as CozyClient::constructor. - * - * @example - * ``` - * import { createClientInteractive } from 'cozy-client/dist/cli' - * await createClientInteractive({ - * uri: 'http://cozy.tools:8080', - * scope: ['io.cozy.bills'], - * oauth: { - * softwareID: 'my-cli-application-using-bills' - * } - * }) - * ``` - * - * @returns {Promise<CozyClient>} - A client that is ready with a token - */ +function detectEncoding(bufs, defaultEncoding) { + var b = []; + var charsProcessed = 0; + var asciiCharsLE = 0, asciiCharsBE = 0; // Number of ASCII chars when decoded as LE or BE. + + outer_loop: + for (var i = 0; i < bufs.length; i++) { + var buf = bufs[i]; + for (var j = 0; j < buf.length; j++) { + b.push(buf[j]); + if (b.length === 2) { + if (charsProcessed === 0) { + // Check BOM first. + if (b[0] === 0xFF && b[1] === 0xFE) return 'utf-16le'; + if (b[0] === 0xFE && b[1] === 0xFF) return 'utf-16be'; + } + if (b[0] === 0 && b[1] !== 0) asciiCharsBE++; + if (b[0] !== 0 && b[1] === 0) asciiCharsLE++; -var createClientInteractive = function createClientInteractive(clientOptions, serverOpts) { - var serverOptions = (0, _merge.default)(DEFAULT_SERVER_OPTIONS, serverOpts); - var createClientFS = serverOptions.fs || _fs.default; - var mergedClientOptions = (0, _merge.default)({ - oauth: { - clientName: 'cli-client', - redirectURI: "http://localhost:".concat(serverOptions.port).concat(serverOptions.route) + b.length = 0; + charsProcessed++; + + if (charsProcessed >= 100) { + break outer_loop; + } + } + } } - }, clientOptions); - if (!clientOptions.scope) { - throw new Error('scope must be provided in client options'); - } + // Make decisions. + // Most of the time, the content has ASCII chars (U+00**), but the opposite (U+**00) is uncommon. + // So, we count ASCII as if it was LE or BE, and decide from that. + if (asciiCharsBE > asciiCharsLE) return 'utf-16be'; + if (asciiCharsBE < asciiCharsLE) return 'utf-16le'; - var getSavedCredentials = serverOptions.getSavedCredentials; - var savedCredentialsFilename = getSavedCredentials(mergedClientOptions); - var savedCredentials = readJSON(createClientFS, savedCredentialsFilename); - log('debug', "Starting OAuth flow"); - return new Promise( /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(resolve, reject) { - var client; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - client = new _CozyClient.default(mergedClientOptions); + // Couldn't decide (likely all zeros or not enough data). + return defaultEncoding || 'utf-16le'; +} - if (!savedCredentials) { - _context.next = 7; - break; - } - log('debug', "Using saved credentials in ".concat(savedCredentialsFilename)); - client.stackClient.setToken(savedCredentials.token); - client.stackClient.setOAuthOptions(savedCredentials.oauthOptions); - resolve(client); - return _context.abrupt("return"); - case 7: - _context.next = 9; - return client.startOAuthFlow(mkServerFlowCallback(serverOptions)); - case 9: - resolve(client); - log('debug', "Saving credentials to ".concat(savedCredentialsFilename)); - writeJSON(createClientFS, savedCredentialsFilename, { - oauthOptions: client.stackClient.oauthOptions, - token: client.stackClient.token - }); +/***/ }), +/* 812 */ +/***/ (function(module, exports, __webpack_require__) { - case 12: - case "end": - return _context.stop(); - } - } - }, _callee); - })); +"use strict"; - return function (_x, _x2) { - return _ref.apply(this, arguments); - }; - }()); +var Buffer = __webpack_require__(114).Buffer; + +// UTF-7 codec, according to https://tools.ietf.org/html/rfc2152 +// See also below a UTF-7-IMAP codec, according to http://tools.ietf.org/html/rfc3501#section-5.1.3 + +exports.utf7 = Utf7Codec; +exports.unicode11utf7 = 'utf7'; // Alias UNICODE-1-1-UTF-7 +function Utf7Codec(codecOptions, iconv) { + this.iconv = iconv; }; -exports.createClientInteractive = createClientInteractive; +Utf7Codec.prototype.encoder = Utf7Encoder; +Utf7Codec.prototype.decoder = Utf7Decoder; +Utf7Codec.prototype.bomAware = true; -var main = /*#__PURE__*/function () { - var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2() { - var client; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - global.fetch = nodeFetch; - global.btoa = btoa; - _context2.next = 4; - return createClientInteractive({ - scope: ['io.cozy.files'], - uri: 'http://cozy.tools:8080', - oauth: { - softwareID: 'io.cozy.client.cli' - } - }); - case 4: - client = _context2.sent; - console.log(client.toJSON()); +// -- Encoding - case 6: - case "end": - return _context2.stop(); - } - } - }, _callee2); - })); +var nonDirectChars = /[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g; - return function main() { - return _ref2.apply(this, arguments); - }; -}(); +function Utf7Encoder(options, codec) { + this.iconv = codec.iconv; +} -if (__webpack_require__.c[__webpack_require__.s] === module) { - main().catch(function (e) { - console.error(e); - process.exit(1); - }); +Utf7Encoder.prototype.write = function(str) { + // Naive implementation. + // Non-direct chars are encoded as "+<base64>-"; single "+" char is encoded as "+-". + return Buffer.from(str.replace(nonDirectChars, function(chunk) { + return "+" + (chunk === '+' ? '' : + this.iconv.encode(chunk, 'utf16-be').toString('base64').replace(/=+$/, '')) + + "-"; + }.bind(this))); } -/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) -/***/ }), -/* 811 */ -/***/ (function(module, exports, __webpack_require__) { +Utf7Encoder.prototype.end = function() { +} -"use strict"; -/* WEBPACK VAR INJECTION */(function(__dirname) { -const {promisify} = __webpack_require__(9); -const path = __webpack_require__(160); -const childProcess = __webpack_require__(812); -const fs = __webpack_require__(167); -const isWsl = __webpack_require__(813); -const isDocker = __webpack_require__(814); -const pAccess = promisify(fs.access); -const pReadFile = promisify(fs.readFile); +// -- Decoding -// Path to included `xdg-open`. -const localXdgOpenPath = path.join(__dirname, 'xdg-open'); +function Utf7Decoder(options, codec) { + this.iconv = codec.iconv; + this.inBase64 = false; + this.base64Accum = ''; +} -/** -Get the mount point for fixed drives in WSL. +var base64Regex = /[A-Za-z0-9\/+]/; +var base64Chars = []; +for (var i = 0; i < 256; i++) + base64Chars[i] = base64Regex.test(String.fromCharCode(i)); -@inner -@returns {string} The mount point. -*/ -const getWslDrivesMountPoint = (() => { - // Default value for "root" param - // according to https://docs.microsoft.com/en-us/windows/wsl/wsl-config - const defaultMountPoint = '/mnt/'; +var plusChar = '+'.charCodeAt(0), + minusChar = '-'.charCodeAt(0), + andChar = '&'.charCodeAt(0); - let mountPoint; +Utf7Decoder.prototype.write = function(buf) { + var res = "", lastI = 0, + inBase64 = this.inBase64, + base64Accum = this.base64Accum; - return async function () { - if (mountPoint) { - // Return memoized mount point value - return mountPoint; - } + // The decoder is more involved as we must handle chunks in stream. - const configFilePath = '/etc/wsl.conf'; + for (var i = 0; i < buf.length; i++) { + if (!inBase64) { // We're in direct mode. + // Write direct chars until '+' + if (buf[i] == plusChar) { + res += this.iconv.decode(buf.slice(lastI, i), "ascii"); // Write direct chars. + lastI = i+1; + inBase64 = true; + } + } else { // We decode base64. + if (!base64Chars[buf[i]]) { // Base64 ended. + if (i == lastI && buf[i] == minusChar) {// "+-" -> "+" + res += "+"; + } else { + var b64str = base64Accum + this.iconv.decode(buf.slice(lastI, i), "ascii"); + res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be"); + } - let isConfigFileExists = false; - try { - await pAccess(configFilePath, fs.constants.F_OK); - isConfigFileExists = true; - } catch (_) {} + if (buf[i] != minusChar) // Minus is absorbed after base64. + i--; - if (!isConfigFileExists) { - return defaultMountPoint; - } + lastI = i+1; + inBase64 = false; + base64Accum = ''; + } + } + } - const configContent = await pReadFile(configFilePath, {encoding: 'utf8'}); - const configMountPoint = /root\s*=\s*(.*)/g.exec(configContent); + if (!inBase64) { + res += this.iconv.decode(buf.slice(lastI), "ascii"); // Write direct chars. + } else { + var b64str = base64Accum + this.iconv.decode(buf.slice(lastI), "ascii"); - if (!configMountPoint) { - return defaultMountPoint; - } + var canBeDecoded = b64str.length - (b64str.length % 8); // Minimal chunk: 2 quads -> 2x3 bytes -> 3 chars. + base64Accum = b64str.slice(canBeDecoded); // The rest will be decoded in future. + b64str = b64str.slice(0, canBeDecoded); - mountPoint = configMountPoint[1].trim(); - mountPoint = mountPoint.endsWith('/') ? mountPoint : mountPoint + '/'; + res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be"); + } - return mountPoint; - }; -})(); + this.inBase64 = inBase64; + this.base64Accum = base64Accum; -module.exports = async (target, options) => { - if (typeof target !== 'string') { - throw new TypeError('Expected a `target`'); - } + return res; +} - options = { - wait: false, - background: false, - allowNonzeroExitCode: false, - ...options - }; +Utf7Decoder.prototype.end = function() { + var res = ""; + if (this.inBase64 && this.base64Accum.length > 0) + res = this.iconv.decode(Buffer.from(this.base64Accum, 'base64'), "utf16-be"); - let command; - let {app} = options; - let appArguments = []; - const cliArguments = []; - const childProcessOptions = {}; + this.inBase64 = false; + this.base64Accum = ''; + return res; +} - if (Array.isArray(app)) { - appArguments = app.slice(1); - app = app[0]; - } - if (process.platform === 'darwin') { - command = 'open'; +// UTF-7-IMAP codec. +// RFC3501 Sec. 5.1.3 Modified UTF-7 (http://tools.ietf.org/html/rfc3501#section-5.1.3) +// Differences: +// * Base64 part is started by "&" instead of "+" +// * Direct characters are 0x20-0x7E, except "&" (0x26) +// * In Base64, "," is used instead of "/" +// * Base64 must not be used to represent direct characters. +// * No implicit shift back from Base64 (should always end with '-') +// * String must end in non-shifted position. +// * "-&" while in base64 is not allowed. - if (options.wait) { - cliArguments.push('--wait-apps'); - } - if (options.background) { - cliArguments.push('--background'); - } +exports.utf7imap = Utf7IMAPCodec; +function Utf7IMAPCodec(codecOptions, iconv) { + this.iconv = iconv; +}; - if (app) { - cliArguments.push('-a', app); - } - } else if (process.platform === 'win32' || (isWsl && !isDocker())) { - const mountPoint = await getWslDrivesMountPoint(); +Utf7IMAPCodec.prototype.encoder = Utf7IMAPEncoder; +Utf7IMAPCodec.prototype.decoder = Utf7IMAPDecoder; +Utf7IMAPCodec.prototype.bomAware = true; - command = isWsl ? - `${mountPoint}c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe` : - `${process.env.SYSTEMROOT}\\System32\\WindowsPowerShell\\v1.0\\powershell`; - cliArguments.push( - '-NoProfile', - '-NonInteractive', - '–ExecutionPolicy', - 'Bypass', - '-EncodedCommand' - ); +// -- Encoding - if (!isWsl) { - childProcessOptions.windowsVerbatimArguments = true; - } +function Utf7IMAPEncoder(options, codec) { + this.iconv = codec.iconv; + this.inBase64 = false; + this.base64Accum = Buffer.alloc(6); + this.base64AccumIdx = 0; +} - const encodedArguments = ['Start']; +Utf7IMAPEncoder.prototype.write = function(str) { + var inBase64 = this.inBase64, + base64Accum = this.base64Accum, + base64AccumIdx = this.base64AccumIdx, + buf = Buffer.alloc(str.length*5 + 10), bufIdx = 0; - if (options.wait) { - encodedArguments.push('-Wait'); - } + for (var i = 0; i < str.length; i++) { + var uChar = str.charCodeAt(i); + if (0x20 <= uChar && uChar <= 0x7E) { // Direct character or '&'. + if (inBase64) { + if (base64AccumIdx > 0) { + bufIdx += buf.write(base64Accum.slice(0, base64AccumIdx).toString('base64').replace(/\//g, ',').replace(/=+$/, ''), bufIdx); + base64AccumIdx = 0; + } - if (app) { - // Double quote with double quotes to ensure the inner quotes are passed through. - // Inner quotes are delimited for PowerShell interpretation with backticks. - encodedArguments.push(`"\`"${app}\`""`, '-ArgumentList'); - appArguments.unshift(target); - } else { - encodedArguments.push(`"${target}"`); - } + buf[bufIdx++] = minusChar; // Write '-', then go to direct mode. + inBase64 = false; + } - if (appArguments.length > 0) { - appArguments = appArguments.map(arg => `"\`"${arg}\`""`); - encodedArguments.push(appArguments.join(',')); - } + if (!inBase64) { + buf[bufIdx++] = uChar; // Write direct character - // Using Base64-encoded command, accepted by PowerShell, to allow special characters. - target = Buffer.from(encodedArguments.join(' '), 'utf16le').toString('base64'); - } else { - if (app) { - command = app; - } else { - // When bundled by Webpack, there's no actual package file path and no local `xdg-open`. - const isBundled = false || __dirname === '/'; + if (uChar === andChar) // Ampersand -> '&-' + buf[bufIdx++] = minusChar; + } - // Check if local `xdg-open` exists and is executable. - let exeLocalXdgOpen = false; - try { - await pAccess(localXdgOpenPath, fs.constants.X_OK); - exeLocalXdgOpen = true; - } catch (_) {} + } else { // Non-direct character + if (!inBase64) { + buf[bufIdx++] = andChar; // Write '&', then go to base64 mode. + inBase64 = true; + } + if (inBase64) { + base64Accum[base64AccumIdx++] = uChar >> 8; + base64Accum[base64AccumIdx++] = uChar & 0xFF; - const useSystemXdgOpen = process.versions.electron || - process.platform === 'android' || isBundled || !exeLocalXdgOpen; - command = useSystemXdgOpen ? 'xdg-open' : localXdgOpenPath; - } + if (base64AccumIdx == base64Accum.length) { + bufIdx += buf.write(base64Accum.toString('base64').replace(/\//g, ','), bufIdx); + base64AccumIdx = 0; + } + } + } + } - if (appArguments.length > 0) { - cliArguments.push(...appArguments); - } + this.inBase64 = inBase64; + this.base64AccumIdx = base64AccumIdx; - if (!options.wait) { - // `xdg-open` will block the process unless stdio is ignored - // and it's detached from the parent even if it's unref'd. - childProcessOptions.stdio = 'ignore'; - childProcessOptions.detached = true; - } - } + return buf.slice(0, bufIdx); +} + +Utf7IMAPEncoder.prototype.end = function() { + var buf = Buffer.alloc(10), bufIdx = 0; + if (this.inBase64) { + if (this.base64AccumIdx > 0) { + bufIdx += buf.write(this.base64Accum.slice(0, this.base64AccumIdx).toString('base64').replace(/\//g, ',').replace(/=+$/, ''), bufIdx); + this.base64AccumIdx = 0; + } + + buf[bufIdx++] = minusChar; // Write '-', then go to direct mode. + this.inBase64 = false; + } + + return buf.slice(0, bufIdx); +} + + +// -- Decoding + +function Utf7IMAPDecoder(options, codec) { + this.iconv = codec.iconv; + this.inBase64 = false; + this.base64Accum = ''; +} + +var base64IMAPChars = base64Chars.slice(); +base64IMAPChars[','.charCodeAt(0)] = true; + +Utf7IMAPDecoder.prototype.write = function(buf) { + var res = "", lastI = 0, + inBase64 = this.inBase64, + base64Accum = this.base64Accum; + + // The decoder is more involved as we must handle chunks in stream. + // It is forgiving, closer to standard UTF-7 (for example, '-' is optional at the end). + + for (var i = 0; i < buf.length; i++) { + if (!inBase64) { // We're in direct mode. + // Write direct chars until '&' + if (buf[i] == andChar) { + res += this.iconv.decode(buf.slice(lastI, i), "ascii"); // Write direct chars. + lastI = i+1; + inBase64 = true; + } + } else { // We decode base64. + if (!base64IMAPChars[buf[i]]) { // Base64 ended. + if (i == lastI && buf[i] == minusChar) { // "&-" -> "&" + res += "&"; + } else { + var b64str = base64Accum + this.iconv.decode(buf.slice(lastI, i), "ascii").replace(/,/g, '/'); + res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be"); + } - cliArguments.push(target); + if (buf[i] != minusChar) // Minus may be absorbed after base64. + i--; - if (process.platform === 'darwin' && appArguments.length > 0) { - cliArguments.push('--args', ...appArguments); - } + lastI = i+1; + inBase64 = false; + base64Accum = ''; + } + } + } - const subprocess = childProcess.spawn(command, cliArguments, childProcessOptions); + if (!inBase64) { + res += this.iconv.decode(buf.slice(lastI), "ascii"); // Write direct chars. + } else { + var b64str = base64Accum + this.iconv.decode(buf.slice(lastI), "ascii").replace(/,/g, '/'); - if (options.wait) { - return new Promise((resolve, reject) => { - subprocess.once('error', reject); + var canBeDecoded = b64str.length - (b64str.length % 8); // Minimal chunk: 2 quads -> 2x3 bytes -> 3 chars. + base64Accum = b64str.slice(canBeDecoded); // The rest will be decoded in future. + b64str = b64str.slice(0, canBeDecoded); - subprocess.once('close', exitCode => { - if (options.allowNonzeroExitCode && exitCode > 0) { - reject(new Error(`Exited with code ${exitCode}`)); - return; - } + res += this.iconv.decode(Buffer.from(b64str, 'base64'), "utf16-be"); + } - resolve(subprocess); - }); - }); - } + this.inBase64 = inBase64; + this.base64Accum = base64Accum; - subprocess.unref(); + return res; +} - return subprocess; -}; +Utf7IMAPDecoder.prototype.end = function() { + var res = ""; + if (this.inBase64 && this.base64Accum.length > 0) + res = this.iconv.decode(Buffer.from(this.base64Accum, 'base64'), "utf16-be"); + + this.inBase64 = false; + this.base64Accum = ''; + return res; +} -/* WEBPACK VAR INJECTION */}.call(this, "/")) -/***/ }), -/* 812 */ -/***/ (function(module, exports) { -module.exports = require("child_process"); /***/ }), /* 813 */ @@ -120863,19881 +117253,20783 @@ module.exports = require("child_process"); "use strict"; -const os = __webpack_require__(19); -const fs = __webpack_require__(167); -const isDocker = __webpack_require__(814); +var Buffer = __webpack_require__(114).Buffer; -const isWsl = () => { - if (process.platform !== 'linux') { - return false; - } +// Single-byte codec. Needs a 'chars' string parameter that contains 256 or 128 chars that +// correspond to encoded bytes (if 128 - then lower half is ASCII). - if (os.release().toLowerCase().includes('microsoft')) { - if (isDocker()) { - return false; - } +exports._sbcs = SBCSCodec; +function SBCSCodec(codecOptions, iconv) { + if (!codecOptions) + throw new Error("SBCS codec is called without the data.") + + // Prepare char buffer for decoding. + if (!codecOptions.chars || (codecOptions.chars.length !== 128 && codecOptions.chars.length !== 256)) + throw new Error("Encoding '"+codecOptions.type+"' has incorrect 'chars' (must be of len 128 or 256)"); + + if (codecOptions.chars.length === 128) { + var asciiString = ""; + for (var i = 0; i < 128; i++) + asciiString += String.fromCharCode(i); + codecOptions.chars = asciiString + codecOptions.chars; + } - return true; - } + this.decodeBuf = Buffer.from(codecOptions.chars, 'ucs2'); + + // Encoding buffer. + var encodeBuf = Buffer.alloc(65536, iconv.defaultCharSingleByte.charCodeAt(0)); - try { - return fs.readFileSync('/proc/version', 'utf8').toLowerCase().includes('microsoft') ? - !isDocker() : false; - } catch (_) { - return false; - } -}; + for (var i = 0; i < codecOptions.chars.length; i++) + encodeBuf[codecOptions.chars.charCodeAt(i)] = i; -if (process.env.__IS_WSL_TEST__) { - module.exports = isWsl; -} else { - module.exports = isWsl(); + this.encodeBuf = encodeBuf; } +SBCSCodec.prototype.encoder = SBCSEncoder; +SBCSCodec.prototype.decoder = SBCSDecoder; -/***/ }), -/* 814 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; -const fs = __webpack_require__(167); +function SBCSEncoder(options, codec) { + this.encodeBuf = codec.encodeBuf; +} -let isDocker; +SBCSEncoder.prototype.write = function(str) { + var buf = Buffer.alloc(str.length); + for (var i = 0; i < str.length; i++) + buf[i] = this.encodeBuf[str.charCodeAt(i)]; + + return buf; +} -function hasDockerEnv() { - try { - fs.statSync('/.dockerenv'); - return true; - } catch (_) { - return false; - } +SBCSEncoder.prototype.end = function() { } -function hasDockerCGroup() { - try { - return fs.readFileSync('/proc/self/cgroup', 'utf8').includes('docker'); - } catch (_) { - return false; - } + +function SBCSDecoder(options, codec) { + this.decodeBuf = codec.decodeBuf; } -module.exports = () => { - if (isDocker === undefined) { - isDocker = hasDockerEnv() || hasDockerCGroup(); - } +SBCSDecoder.prototype.write = function(buf) { + // Strings are immutable in JS -> we use ucs2 buffer to speed up computations. + var decodeBuf = this.decodeBuf; + var newBuf = Buffer.alloc(buf.length*2); + var idx1 = 0, idx2 = 0; + for (var i = 0; i < buf.length; i++) { + idx1 = buf[i]*2; idx2 = i*2; + newBuf[idx2] = decodeBuf[idx1]; + newBuf[idx2+1] = decodeBuf[idx1+1]; + } + return newBuf.toString('ucs2'); +} - return isDocker; -}; +SBCSDecoder.prototype.end = function() { +} /***/ }), -/* 815 */ -/***/ (function(module, exports) { +/* 814 */ +/***/ (function(module, exports, __webpack_require__) { -module.exports = enableDestroy; +"use strict"; -function enableDestroy(server) { - var connections = {} - server.on('connection', function(conn) { - var key = conn.remoteAddress + ':' + conn.remotePort; - connections[key] = conn; - conn.on('close', function() { - delete connections[key]; - }); - }); +// Manually added data to be used by sbcs codec in addition to generated one. - server.destroy = function(cb) { - server.close(cb); - for (var key in connections) - connections[key].destroy(); - }; -} +module.exports = { + // Not supported by iconv, not sure why. + "10029": "maccenteuro", + "maccenteuro": { + "type": "_sbcs", + "chars": "ÄĀÄÉĄÖÜáąČäÄĆć鏟ĎÃÄĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňÅÕőŌ–—“â€â€˜â€™Ã·â—ŠÅŔŕŘ‹›řŖŗŠ‚„šŚśÃŤťÃŽžŪÓÔūŮÚůŰűŲųÃýķŻÅżĢˇ" + }, + "808": "cp808", + "ibm808": "cp808", + "cp808": { + "type": "_sbcs", + "chars": "ÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀рÑтуфхцчшщъыьÑÑŽÑÐёЄєЇїЎў°∙·√№€■ " + }, -/***/ }), -/* 816 */ -/***/ (function(module, exports, __webpack_require__) { + "mik": { + "type": "_sbcs", + "chars": "ÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмнопрÑтуфхцчшщъыьÑÑŽÑ└┴┬├─┼╣║╚╔╩╦╠â•╬â”░▒▓│┤№§╗â•┘┌█▄▌â–▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√â¿Â²â–  " + }, -"use strict"; + "cp720": { + "type": "_sbcs", + "chars": "\x80\x81éâ\x84à \x86çêëèïî\x8d\x8e\x8f\x90\u0651\u0652Ã´Â¤Ù€Ã»Ã¹Ø¡Ø¢Ø£Ø¤Â£Ø¥Ø¦Ø§Ø¨Ø©ØªØ«Ø¬ØØ®Ø¯Ø°Ø±Ø²Ø³Ø´ØµÂ«Â»â–‘▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀ضطظعغÙµقكلمنهوىي≡\u064b\u064c\u064d\u064e\u064f\u0650≈°∙·√â¿Â²â– \u00a0" + }, + // Aliases of generated encodings. + "ascii8bit": "ascii", + "usascii": "ascii", + "ansix34": "ascii", + "ansix341968": "ascii", + "ansix341986": "ascii", + "csascii": "ascii", + "cp367": "ascii", + "ibm367": "ascii", + "isoir6": "ascii", + "iso646us": "ascii", + "iso646irv": "ascii", + "us": "ascii", -var _interopRequireWildcard = __webpack_require__(528); + "latin1": "iso88591", + "latin2": "iso88592", + "latin3": "iso88593", + "latin4": "iso88594", + "latin5": "iso88599", + "latin6": "iso885910", + "latin7": "iso885913", + "latin8": "iso885914", + "latin9": "iso885915", + "latin10": "iso885916", -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.timeseries = exports.document = exports.contact = exports.utils = exports.permission = exports.note = exports.account = exports.folder = exports.file = exports.applications = exports.instance = exports.trigger = exports.accounts = exports.triggers = void 0; + "csisolatin1": "iso88591", + "csisolatin2": "iso88592", + "csisolatin3": "iso88593", + "csisolatin4": "iso88594", + "csisolatincyrillic": "iso88595", + "csisolatinarabic": "iso88596", + "csisolatingreek" : "iso88597", + "csisolatinhebrew": "iso88598", + "csisolatin5": "iso88599", + "csisolatin6": "iso885910", -var trigger = _interopRequireWildcard(__webpack_require__(817)); + "l1": "iso88591", + "l2": "iso88592", + "l3": "iso88593", + "l4": "iso88594", + "l5": "iso88599", + "l6": "iso885910", + "l7": "iso885913", + "l8": "iso885914", + "l9": "iso885915", + "l10": "iso885916", -exports.trigger = trigger; + "isoir14": "iso646jp", + "isoir57": "iso646cn", + "isoir100": "iso88591", + "isoir101": "iso88592", + "isoir109": "iso88593", + "isoir110": "iso88594", + "isoir144": "iso88595", + "isoir127": "iso88596", + "isoir126": "iso88597", + "isoir138": "iso88598", + "isoir148": "iso88599", + "isoir157": "iso885910", + "isoir166": "tis620", + "isoir179": "iso885913", + "isoir199": "iso885914", + "isoir203": "iso885915", + "isoir226": "iso885916", -var instance = _interopRequireWildcard(__webpack_require__(819)); + "cp819": "iso88591", + "ibm819": "iso88591", -exports.instance = instance; + "cyrillic": "iso88595", -var applications = _interopRequireWildcard(__webpack_require__(820)); + "arabic": "iso88596", + "arabic8": "iso88596", + "ecma114": "iso88596", + "asmo708": "iso88596", -exports.applications = applications; + "greek" : "iso88597", + "greek8" : "iso88597", + "ecma118" : "iso88597", + "elot928" : "iso88597", -var file = _interopRequireWildcard(__webpack_require__(821)); + "hebrew": "iso88598", + "hebrew8": "iso88598", -exports.file = file; + "turkish": "iso88599", + "turkish8": "iso88599", -var folder = _interopRequireWildcard(__webpack_require__(825)); + "thai": "iso885911", + "thai8": "iso885911", -exports.folder = folder; + "celtic": "iso885914", + "celtic8": "iso885914", + "isoceltic": "iso885914", -var account = _interopRequireWildcard(__webpack_require__(818)); + "tis6200": "tis620", + "tis62025291": "tis620", + "tis62025330": "tis620", -exports.account = account; + "10000": "macroman", + "10006": "macgreek", + "10007": "maccyrillic", + "10079": "maciceland", + "10081": "macturkish", -var note = _interopRequireWildcard(__webpack_require__(827)); + "cspc8codepage437": "cp437", + "cspc775baltic": "cp775", + "cspc850multilingual": "cp850", + "cspcp852": "cp852", + "cspc862latinhebrew": "cp862", + "cpgr": "cp869", -exports.note = note; + "msee": "cp1250", + "mscyrl": "cp1251", + "msansi": "cp1252", + "msgreek": "cp1253", + "msturk": "cp1254", + "mshebr": "cp1255", + "msarab": "cp1256", + "winbaltrim": "cp1257", -var permission = _interopRequireWildcard(__webpack_require__(828)); + "cp20866": "koi8r", + "20866": "koi8r", + "ibm878": "koi8r", + "cskoi8r": "koi8r", -exports.permission = permission; + "cp21866": "koi8u", + "21866": "koi8u", + "ibm1168": "koi8u", -var utils = _interopRequireWildcard(__webpack_require__(829)); + "strk10482002": "rk1048", -exports.utils = utils; + "tcvn5712": "tcvn", + "tcvn57121": "tcvn", -var contact = _interopRequireWildcard(__webpack_require__(830)); + "gb198880": "iso646cn", + "cn": "iso646cn", -exports.contact = contact; + "csiso14jisc6220ro": "iso646jp", + "jisc62201969ro": "iso646jp", + "jp": "iso646jp", -var document = _interopRequireWildcard(__webpack_require__(822)); + "cshproman8": "hproman8", + "r8": "hproman8", + "roman8": "hproman8", + "xroman8": "hproman8", + "ibm1051": "hproman8", -exports.document = document; + "mac": "macintosh", + "csmacintosh": "macintosh", +}; -var timeseries = _interopRequireWildcard(__webpack_require__(832)); -exports.timeseries = timeseries; -// For backward compatibility before 9.0.0 -var triggers = trigger; -exports.triggers = triggers; -var accounts = account; -exports.accounts = accounts; /***/ }), -/* 817 */ +/* 815 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +// Generated data for sbcs codec. Don't edit manually. Regenerate using generation/gen-sbcs.js script. +module.exports = { + "437": "cp437", + "737": "cp737", + "775": "cp775", + "850": "cp850", + "852": "cp852", + "855": "cp855", + "856": "cp856", + "857": "cp857", + "858": "cp858", + "860": "cp860", + "861": "cp861", + "862": "cp862", + "863": "cp863", + "864": "cp864", + "865": "cp865", + "866": "cp866", + "869": "cp869", + "874": "windows874", + "922": "cp922", + "1046": "cp1046", + "1124": "cp1124", + "1125": "cp1125", + "1129": "cp1129", + "1133": "cp1133", + "1161": "cp1161", + "1162": "cp1162", + "1163": "cp1163", + "1250": "windows1250", + "1251": "windows1251", + "1252": "windows1252", + "1253": "windows1253", + "1254": "windows1254", + "1255": "windows1255", + "1256": "windows1256", + "1257": "windows1257", + "1258": "windows1258", + "28591": "iso88591", + "28592": "iso88592", + "28593": "iso88593", + "28594": "iso88594", + "28595": "iso88595", + "28596": "iso88596", + "28597": "iso88597", + "28598": "iso88598", + "28599": "iso88599", + "28600": "iso885910", + "28601": "iso885911", + "28603": "iso885913", + "28604": "iso885914", + "28605": "iso885915", + "28606": "iso885916", + "windows874": { + "type": "_sbcs", + "chars": "€����…�����������‘’“â€â€¢â€“—�������� à¸à¸‚ฃคฅฆงจฉชซฌà¸à¸Žà¸à¸à¸‘ฒณดตถทธนบปผà¸à¸žà¸Ÿà¸ มยรฤลฦวศษสหฬà¸à¸®à¸¯à¸°à¸±à¸²à¸³à¸´à¸µà¸¶à¸·à¸¸à¸¹à¸ºï¿½ï¿½ï¿½ï¿½à¸¿à¹€à¹à¹‚ใไๅๆ็่้๊๋์à¹à¹Žà¹à¹à¹‘๒๓๔๕๖๗๘๙๚๛����" + }, + "win874": "windows874", + "cp874": "windows874", + "windows1250": { + "type": "_sbcs", + "chars": "€�‚�„…†‡�‰Š‹ŚŤŽŹ�‘’“â€â€¢â€“—�™š›śťžź ˇ˘Å¤Ą¦§¨©Ş«¬Â®Ż°±˛ł´µ¶·¸ąş»ĽËľżŔÃÂĂÄĹĆÇČÉĘËĚÃÃŽÄŽÄŃŇÓÔÅÖ×ŘŮÚŰÜÃŢßŕáâăäĺćçÄéęëěÃîÄđńňóôőö÷řůúűüýţ˙" + }, + "win1250": "windows1250", + "cp1250": "windows1250", + "windows1251": { + "type": "_sbcs", + "chars": "ЂЃ‚ѓ„…†‡€‰Љ‹ЊЌЋÐђ‘’“â€â€¢â€“—�™љ›њќћџ ЎўЈ¤Ò¦§Ð©Є«¬Â®Ї°±Ііґµ¶·ё№є»јЅѕїÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмнопрÑтуфхцчшщъыьÑÑŽÑ" + }, + "win1251": "windows1251", + "cp1251": "windows1251", + "windows1252": { + "type": "_sbcs", + "chars": "€�‚ƒ„…†‡ˆ‰Š‹Œ�Ž��‘’“â€â€¢â€“—˜™š›œ�žŸ ¡¢£¤¥¦§¨©ª«¬Â®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖרÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõö÷øùúûüýþÿ" + }, + "win1252": "windows1252", + "cp1252": "windows1252", + "windows1253": { + "type": "_sbcs", + "chars": "€�‚ƒ„…†‡�‰�‹�����‘’“â€â€¢â€“—�™�›���� ΅Ά£¤¥¦§¨©�«¬Â®―°±²³΄µ¶·ΈΉΊ»Ό½ΎÎÎΑΒΓΔΕΖΗΘΙΚΛΜÎΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάÎήίΰαβγδεζηθικλμνξοπÏςστυφχψωϊϋόÏώ�" + }, + "win1253": "windows1253", + "cp1253": "windows1253", + "windows1254": { + "type": "_sbcs", + "chars": "€�‚ƒ„…†‡ˆ‰Š‹Œ����‘’“â€â€¢â€“—˜™š›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬Â®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃĞÑÒÓÔÕÖרÙÚÛÜİŞßà áâãäåæçèéêëìÃîïğñòóôõö÷øùúûüışÿ" + }, + "win1254": "windows1254", + "cp1254": "windows1254", + "windows1255": { + "type": "_sbcs", + "chars": "€�‚ƒ„…†‡ˆ‰�‹�����‘’“â€â€¢â€“—˜™�›���� ¡¢£₪¥¦§¨©×«¬Â®¯°±²³´µ¶·¸¹÷»¼½¾¿ְֱֲֳִֵֶַָֹֺֻּֽ־ֿ׀×ׂ׃װױײ׳״�������×בגדהוזחטיךכל××ž×Ÿ× ×¡×¢×£×¤×¥×¦×§×¨×©×ªï¿½ï¿½â€Žâ€ï¿½" + }, + "win1255": "windows1255", + "cp1255": "windows1255", + "windows1256": { + "type": "_sbcs", + "chars": "€پ‚ƒ„…†‡ˆ‰ٹ‹Œچژڈگ‘’“â€â€¢â€“—ک™ڑ›œ‌â€ÚºÂ ،¢£¤¥¦§¨©ھ«¬ÂÂ®Â¯Â°Â±Â²Â³Â´ÂµÂ¶Â·Â¸Â¹Ø›Â»Â¼Â½Â¾ØŸÛØ¡Ø¢Ø£Ø¤Ø¥Ø¦Ø§Ø¨Ø©ØªØ«Ø¬ØØ®Ø¯Ø°Ø±Ø²Ø³Ø´ØµØ¶Ã—طظعغـÙقكà لâمنهوçèéêëىيîïًٌÙَôÙÙ÷ّùْûü‎â€Û’" + }, + "win1256": "windows1256", + "cp1256": "windows1256", + "windows1257": { + "type": "_sbcs", + "chars": "€�‚�„…†‡�‰�‹�¨ˇ¸�‘’“â€â€¢â€“—�™�›�¯˛� �¢£¤�¦§Ø©Ŗ«¬Â®Æ°±²³´µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲÅŚŪÜŻŽßąįÄćäåęēÄéźėģķīļšńņóÅõö÷ųłśūüżž˙" + }, + "win1257": "windows1257", + "cp1257": "windows1257", + "windows1258": { + "type": "_sbcs", + "chars": "€�‚ƒ„…†‡ˆ‰�‹Œ����‘’“â€â€¢â€“—˜™�›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬Â®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÃÂĂÄÅÆÇÈÉÊË̀ÃÃŽÃÄÃ‘Ì‰Ã“Ã”Æ Ã–Ã—Ã˜Ã™ÃšÃ›ÃœÆ¯ÌƒÃŸÃ Ã¡Ã¢ÄƒÃ¤Ã¥Ã¦Ã§Ã¨Ã©ÃªÃ«ÌÃîïđṇ̃óôơö÷øùúûüư₫ÿ" + }, + "win1258": "windows1258", + "cp1258": "windows1258", + "iso88591": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ¡¢£¤¥¦§¨©ª«¬Â®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖרÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõö÷øùúûüýþÿ" + }, + "cp28591": "iso88591", + "iso88592": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ Ą˘Å¤ĽŚ§¨ŠŞŤŹÂŽŻ°ą˛ł´ľśˇ¸šşťźËžżŔÃÂĂÄĹĆÇČÉĘËĚÃÃŽÄŽÄŃŇÓÔÅÖ×ŘŮÚŰÜÃŢßŕáâăäĺćçÄéęëěÃîÄđńňóôőö÷řůúűüýţ˙" + }, + "cp28592": "iso88592", + "iso88593": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ Ħ˘£¤�Ĥ§¨İŞĞĴÂ�ݰħ²³´µĥ·¸ışğĵ½�żÀÃÂ�ÄĊĈÇÈÉÊËÌÃÃŽÃï¿½Ã‘Ã’Ã“Ã”Ä Ã–Ã—ÄœÃ™ÃšÃ›ÃœÅ¬ÅœÃŸÃ Ã¡Ã¢ï¿½Ã¤Ä‹Ä‰Ã§Ã¨Ã©ÃªÃ«Ã¬Ãîï�ñòóôġö÷ÄùúûüÅÅË™" + }, + "cp28593": "iso88593", + "iso88594": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ĄĸŖ¤Ĩϧ¨ŠĒĢŦÂޝ°ą˛ŗ´ĩšēģŧŊžŋĀÃÂÃÄÅÆĮČÉĘËĖÃÎĪÄŅŌĶÔÕÖרŲÚÛÜŨŪßÄáâãäåæįÄéęëėÃîīđņÅķôõö÷øųúûüũū˙" + }, + "cp28594": "iso88594", + "iso88595": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ÐЂЃЄЅІЇЈЉЊЋЌÂÐŽÐÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмнопрÑтуфхцчшщъыьÑÑŽÑ№ёђѓєѕіїјљњћќ§ўџ" + }, + "cp28595": "iso88595", + "iso88596": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ���¤�������،Âï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½Ø›ï¿½ï¿½ï¿½ØŸï¿½Ø¡Ø¢Ø£Ø¤Ø¥Ø¦Ø§Ø¨Ø©ØªØ«Ø¬ØØ®Ø¯Ø°Ø±Ø²Ø³Ø´ØµØ¶Ø·Ø¸Ø¹Øºï¿½ï¿½ï¿½ï¿½ï¿½Ù€ÙقكلمنهوىيًٌÙÙŽÙÙّْ�������������" + }, + "cp28596": "iso88596", + "iso88597": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ‘’£€₯¦§¨©ͺ«¬Â�―°±²³΄΅Ά·ΈΉΊ»Ό½ΎÎÎΑΒΓΔΕΖΗΘΙΚΛΜÎΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάÎήίΰαβγδεζηθικλμνξοπÏςστυφχψωϊϋόÏώ�" + }, + "cp28597": "iso88597", + "iso88598": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ �¢£¤¥¦§¨©×«¬Â®¯°±²³´µ¶·¸¹÷»¼½¾��������������������������������‗×בגדהוזחטיךכל××ž×Ÿ× ×¡×¢×£×¤×¥×¦×§×¨×©×ªï¿½ï¿½â€Žâ€ï¿½" + }, + "cp28598": "iso88598", + "iso88599": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ¡¢£¤¥¦§¨©ª«¬Â®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃĞÑÒÓÔÕÖרÙÚÛÜİŞßà áâãäåæçèéêëìÃîïğñòóôõö÷øùúûüışÿ" + }, + "cp28599": "iso88599", + "iso885910": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ĄĒĢĪĨͧĻÄŠŦŽÂŪŊ°ąēģīĩķ·ļđšŧž―ūŋĀÃÂÃÄÅÆĮČÉĘËĖÃÃŽÃÃŅŌÓÔÕÖŨØŲÚÛÜÃÞßÄáâãäåæįÄéęëėÃîïðņÅóôõöũøųúûüýþĸ" + }, + "cp28600": "iso885910", + "iso885911": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ à¸à¸‚ฃคฅฆงจฉชซฌà¸à¸Žà¸à¸à¸‘ฒณดตถทธนบปผà¸à¸žà¸Ÿà¸ มยรฤลฦวศษสหฬà¸à¸®à¸¯à¸°à¸±à¸²à¸³à¸´à¸µà¸¶à¸·à¸¸à¸¹à¸ºï¿½ï¿½ï¿½ï¿½à¸¿à¹€à¹à¹‚ใไๅๆ็่้๊๋์à¹à¹Žà¹à¹à¹‘๒๓๔๕๖๗๘๙๚๛����" + }, + "cp28601": "iso885911", + "iso885913": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ â€Â¢Â£Â¤â€žÂ¦Â§Ã˜Â©Å–«¬Â®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲÅŚŪÜŻŽßąįÄćäåęēÄéźėģķīļšńņóÅõö÷ųłśūüżž’" + }, + "cp28603": "iso885913", + "iso885914": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ Ḃḃ£ĊċḊ§Ẁ©ẂḋỲÂÂ®Å¸á¸žá¸ŸÄ Ä¡á¹€á¹Â¶á¹–áºá¹—ẃṠỳẄẅṡÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃŴÑÒÓÔÕÖṪØÙÚÛÜÃŶßà áâãäåæçèéêëìÃîïŵñòóôõöṫøùúûüýŷÿ" + }, + "cp28604": "iso885914", + "iso885915": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ¡¢£€¥Š§š©ª«¬Â®¯°±²³Žµ¶·ž¹º»ŒœŸ¿ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖרÙÚÛÜÃÞßà áâãäåæçèéêëìÃîïðñòóôõö÷øùúûüýþÿ" + }, + "cp28605": "iso885915", + "iso885916": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ĄąÅ€„Чš©Ș«ŹÂźŻ°±ČłŽâ€Â¶Â·Å¾Äș»ŒœŸżÀÃÂĂÄĆÆÇÈÉÊËÌÃÃŽÃÄŃÒÓÔÅÖŚŰÙÚÛÜĘȚßà áâăäćæçèéêëìÃîïđńòóôőöśűùúûüęțÿ" + }, + "cp28606": "iso885916", + "cp437": { + "type": "_sbcs", + "chars": "Çüéâäà åçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáÃóúñѪº¿âŒÂ¬Â½Â¼Â¡Â«Â»â–‘▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√â¿Â²â–  " + }, + "ibm437": "cp437", + "csibm437": "cp437", + "cp737": { + "type": "_sbcs", + "chars": "ΑΒΓΔΕΖΗΘΙΚΛΜÎΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπÏσςτυφχψ░▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀ωάÎήϊίόÏϋώΆΈΉΊΌΎÎ±≥≤ΪΫ÷≈°∙·√â¿Â²â–  " + }, + "ibm737": "cp737", + "csibm737": "cp737", + "cp775": { + "type": "_sbcs", + "chars": "ĆüéÄäģåćłēŖŗīŹÄÅÉæÆÅöĢ¢ŚśÖÜø£Ø×¤ĀĪóŻżźâ€Â¦Â©Â®Â¬Â½Â¼Å«»░▒▓│┤ĄČĘĖ╣║╗â•ĮŠâ”└┴┬├─┼ŲŪ╚╔╩╦╠â•╬ŽąÄęėįšųūž┘┌█▄▌â–▀ÓßŌŃõÕµńĶķĻļņĒŅ’Â±“¾¶§÷„°∙·¹³²■ " + }, + "ibm775": "cp775", + "csibm775": "cp775", + "cp850": { + "type": "_sbcs", + "chars": "Çüéâäà åçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáÃóúñѪº¿®¬½¼¡«»░▒▓│┤ÃÂÀ©╣║╗â•¢¥â”└┴┬├─┼ãÃ╚╔╩╦╠â•╬¤ðÃÊËÈıÃÃŽÃ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýï´Â±‗¾¶§÷¸°¨·¹³²■ " + }, + "ibm850": "cp850", + "csibm850": "cp850", + "cp852": { + "type": "_sbcs", + "chars": "ÇüéâäůćçłëÅőîŹÄĆÉĹĺôöĽľŚśÖÜŤťÅ×ÄáÃóúĄąŽžĘ꬟Ⱥ«»░▒▓│┤ÃÂĚŞ╣║╗╯żâ”└┴┬├─┼Ăă╚╔╩╦╠â•╬¤đÄĎËÄŇÃÎě┘┌█▄ŢŮ▀ÓßÔŃńňŠšŔÚŕŰýÃţ´Â˲ˇ˘§÷¸°¨˙űŘř■ " + }, + "ibm852": "cp852", + "csibm852": "cp852", + "cp855": { + "type": "_sbcs", + "chars": "ђЂѓЃёÐєЄѕЅіІїЇјЈљЉњЊћЋќЌўЎџÐюЮъЪаÐбБцЦдДеЕфФгГ«»░▒▓│┤хХиИ╣║╗â•йЙâ”└┴┬├─┼кК╚╔╩╦╠â•╬¤лЛмМнÐоОп┘┌█▄ПÑ▀ЯрРÑСтТуУжЖвВьЬ№ÂыЫзЗшШÑÐщЩчЧ§■ " + }, + "ibm855": "cp855", + "csibm855": "cp855", + "cp856": { + "type": "_sbcs", + "chars": "×בגדהוזחטיךכל××ž×Ÿ× ×¡×¢×£×¤×¥×¦×§×¨×©×ªï¿½Â£ï¿½Ã—ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½Â®Â¬Â½Â¼ï¿½Â«Â»â–‘â–’â–“â”‚â”¤ï¿½ï¿½ï¿½Â©â•£â•‘â•—â•¢¥â”└┴┬├─┼��╚╔╩╦╠â•╬¤���������┘┌█▄¦�▀������µ�������¯´Â±‗¾¶§÷¸°¨·¹³²■ " + }, + "ibm856": "cp856", + "csibm856": "cp856", + "cp857": { + "type": "_sbcs", + "chars": "Çüéâäà åçêëèïîıÄÅÉæÆôöòûùİÖÜø£ØŞşáÃóúñÑĞ𿮬½¼¡«»░▒▓│┤ÃÂÀ©╣║╗â•¢¥â”└┴┬├─┼ãÃ╚╔╩╦╠â•╬¤ºªÊËÈ�ÃÃŽÃ┘┌█▄¦Ì▀ÓßÔÒõÕµ�×ÚÛÙìÿ¯´Â±�¾¶§÷¸°¨·¹³²■ " + }, + "ibm857": "cp857", + "csibm857": "cp857", + "cp858": { + "type": "_sbcs", + "chars": "Çüéâäà åçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáÃóúñѪº¿®¬½¼¡«»░▒▓│┤ÃÂÀ©╣║╗â•¢¥â”└┴┬├─┼ãÃ╚╔╩╦╠â•╬¤ðÃÊËÈ€ÃÃŽÃ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýï´Â±‗¾¶§÷¸°¨·¹³²■ " + }, + "ibm858": "cp858", + "csibm858": "cp858", + "cp860": { + "type": "_sbcs", + "chars": "Çüéâãà ÃçêÊèÃÔìÃÂÉÀÈôõòÚùÌÕÜ¢£Ù₧ÓáÃóúñѪº¿Ò¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√â¿Â²â–  " + }, + "ibm860": "cp860", + "csibm860": "cp860", + "cp861": { + "type": "_sbcs", + "chars": "Çüéâäà åçêëèÃðÞÄÅÉæÆôöþûÃýÖÜø£Ø₧ƒáÃóúÃÃÓÚ¿âŒÂ¬Â½Â¼Â¡Â«Â»â–‘▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√â¿Â²â–  " + }, + "ibm861": "cp861", + "csibm861": "cp861", + "cp862": { + "type": "_sbcs", + "chars": "×בגדהוזחטיךכל××ž×Ÿ× ×¡×¢×£×¤×¥×¦×§×¨×©×ªÂ¢Â£Â¥â‚§Æ’Ã¡ÃóúñѪº¿âŒÂ¬Â½Â¼Â¡Â«Â»â–‘▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√â¿Â²â–  " + }, + "ibm862": "cp862", + "csibm862": "cp862", + "cp863": { + "type": "_sbcs", + "chars": "ÇüéâÂà ¶çêëèïî‗À§ÉÈÊôËÃûù¤ÔÜ¢£ÙÛƒ¦´óú¨¸³¯ÎâŒÂ¬Â½Â¼Â¾Â«Â»â–‘▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√â¿Â²â–  " + }, + "ibm863": "cp863", + "csibm863": "cp863", + "cp864": { + "type": "_sbcs", + "chars": "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#$Ùª&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~°·∙√▒─│┼┤┬├┴â”┌└┘β∞φ±½¼≈«»ﻷﻸ��ﻻﻼ� Âﺂ£¤ﺄ��ﺎïºïº•ﺙ،ïºïº¡ïº¥Ù ١٢٣٤٥٦٧٨٩ﻑ؛ﺱﺵﺹ؟¢ﺀïºïºƒïº…ﻊﺋïºïº‘ﺓﺗﺛﺟﺣﺧﺩﺫïºïº¯ïº³ïº·ïº»ïº¿ï»ï»…ﻋï»Â¦Â¬Ã·Ã—ﻉـﻓﻗﻛﻟﻣﻧﻫï»ï»¯ï»³ïº½ï»Œï»Žï»ï»¡ï¹½Ù‘ﻥﻩﻬﻰﻲï»ï»•ﻵﻶï»ï»™ï»±â– �" + }, + "ibm864": "cp864", + "csibm864": "cp864", + "cp865": { + "type": "_sbcs", + "chars": "Çüéâäà åçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø₧ƒáÃóúñѪº¿âŒÂ¬Â½Â¼Â¡Â«Â¤â–‘▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√â¿Â²â–  " + }, + "ibm865": "cp865", + "csibm865": "cp865", + "cp866": { + "type": "_sbcs", + "chars": "ÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀рÑтуфхцчшщъыьÑÑŽÑÐёЄєЇїЎў°∙·√№¤■ " + }, + "ibm866": "cp866", + "csibm866": "cp866", + "cp869": { + "type": "_sbcs", + "chars": "������Ά�·¬¦‘’Έ―ΉΊΪΌ��ΎΫ©Î²³ά£ÎήίϊÎÏŒÏΑΒΓΔΕΖΗ½ΘΙ«»░▒▓│┤ΚΛΜÎ╣║╗â•ΞΟâ”└┴┬├─┼ΠΡ╚╔╩╦╠â•╬ΣΤΥΦΧΨΩαβγ┘┌█▄δε▀ζηθικλμνξοπÏσςτ΄Â±υφχ§ψ΅°¨ωϋΰώ■ " + }, + "ibm869": "cp869", + "csibm869": "cp869", + "cp922": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ¡¢£¤¥¦§¨©ª«¬Â®‾°±²³´µ¶·¸¹º»¼½¾¿ÀÃÂÃÄÅÆÇÈÉÊËÌÃÎÊÑÒÓÔÕÖרÙÚÛÜÃŽßà áâãäåæçèéêëìÃîïšñòóôõö÷øùúûüýžÿ" + }, + "ibm922": "cp922", + "csibm922": "cp922", + "cp1046": { + "type": "_sbcs", + "chars": "ﺈ×÷ﹱˆ■│─â”┌└┘ﹹﹻﹽﹿﹷﺊﻰﻳﻲﻎï»ï»ï»¶ï»¸ï»ºï»¼Â ¤ﺋﺑﺗﺛﺟﺣ،Âïº§ïº³Ù Ù¡Ù¢Ù£Ù¤Ù¥Ù¦Ù§Ù¨Ù©ïº·Ø›ïº»ïº¿ï»ŠØŸï»‹Ø¡Ø¢Ø£Ø¤Ø¥Ø¦Ø§Ø¨Ø©ØªØ«Ø¬ØØ®Ø¯Ø°Ø±Ø²Ø³Ø´ØµØ¶Ø·ï»‡Ø¹Øºï»Œïº‚ﺄﺎﻓـÙقكلمنهوىيًٌÙÙŽÙÙّْﻗﻛﻟﻵﻷﻹﻻﻣﻧﻬﻩ�" + }, + "ibm1046": "cp1046", + "csibm1046": "cp1046", + "cp1124": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ÐЂÒЄЅІЇЈЉЊЋЌÂÐŽÐÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмнопрÑтуфхцчшщъыьÑÑŽÑ№ёђґєѕіїјљњћќ§ўџ" + }, + "ibm1124": "cp1124", + "csibm1124": "cp1124", + "cp1125": { + "type": "_sbcs", + "chars": "ÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗â•╜╛â”└┴┬├─┼╞╟╚╔╩╦╠â•╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌â–▀рÑтуфхцчшщъыьÑÑŽÑÐÑ‘ÒґЄєІіЇї·√№¤■ " + }, + "ibm1125": "cp1125", + "csibm1125": "cp1125", + "cp1129": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ¡¢£¤¥¦§œ©ª«¬Â®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÃÂĂÄÅÆÇÈÉÊË̀ÃÃŽÃÄÃ‘Ì‰Ã“Ã”Æ Ã–Ã—Ã˜Ã™ÃšÃ›ÃœÆ¯ÌƒÃŸÃ Ã¡Ã¢ÄƒÃ¤Ã¥Ã¦Ã§Ã¨Ã©ÃªÃ«ÌÃîïđṇ̃óôơö÷øùúûüư₫ÿ" + }, + "ibm1129": "cp1129", + "csibm1129": "cp1129", + "cp1133": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ àºàº‚ຄງຈສຊàºàº”ຕຖທນບປຜàºàºžàºŸàº¡àº¢àº£àº¥àº§àº«àºàº®ï¿½ï¿½ï¿½àº¯àº°àº²àº³àº´àºµàº¶àº·àº¸àº¹àº¼àº±àº»àº½ï¿½ï¿½ï¿½à»€à»à»‚ໃໄ່້໊໋໌à»à»†ï¿½à»œà»â‚����������������à»à»‘໒໓໔໕໖໗໘໙��¢¬¦�" + }, + "ibm1133": "cp1133", + "csibm1133": "cp1133", + "cp1161": { + "type": "_sbcs", + "chars": "��������������������������������่à¸à¸‚ฃคฅฆงจฉชซฌà¸à¸Žà¸à¸à¸‘ฒณดตถทธนบปผà¸à¸žà¸Ÿà¸ มยรฤลฦวศษสหฬà¸à¸®à¸¯à¸°à¸±à¸²à¸³à¸´à¸µà¸¶à¸·à¸¸à¸¹à¸ºà¹‰à¹Šà¹‹â‚¬à¸¿à¹€à¹à¹‚ใไๅๆ็่้๊๋์à¹à¹Žà¹à¹à¹‘๒๓๔๕๖๗๘๙๚๛¢¬¦ " + }, + "ibm1161": "cp1161", + "csibm1161": "cp1161", + "cp1162": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“â€â€¢â€“—˜™š›œÂžŸ à¸à¸‚ฃคฅฆงจฉชซฌà¸à¸Žà¸à¸à¸‘ฒณดตถทธนบปผà¸à¸žà¸Ÿà¸ มยรฤลฦวศษสหฬà¸à¸®à¸¯à¸°à¸±à¸²à¸³à¸´à¸µà¸¶à¸·à¸¸à¸¹à¸ºï¿½ï¿½ï¿½ï¿½à¸¿à¹€à¹à¹‚ใไๅๆ็่้๊๋์à¹à¹Žà¹à¹à¹‘๒๓๔๕๖๗๘๙๚๛����" + }, + "ibm1162": "cp1162", + "csibm1162": "cp1162", + "cp1163": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ¡¢£€¥¦§œ©ª«¬Â®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÃÂĂÄÅÆÇÈÉÊË̀ÃÃŽÃÄÃ‘Ì‰Ã“Ã”Æ Ã–Ã—Ã˜Ã™ÃšÃ›ÃœÆ¯ÌƒÃŸÃ Ã¡Ã¢ÄƒÃ¤Ã¥Ã¦Ã§Ã¨Ã©ÃªÃ«ÌÃîïđṇ̃óôơö÷øùúûüư₫ÿ" + }, + "ibm1163": "cp1163", + "csibm1163": "cp1163", + "maccroatian": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáà âäãåçéèêëÃìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑âˆÅ¡âˆ«ÂªÂºâ„¦Å¾Ã¸Â¿Â¡Â¬âˆšÆ’≈ƫȅ ÀÃÕŒœÄ—“â€â€˜â€™Ã·â—Šï¿½Â©â„¤‹›Æ»–·‚„‰ÂćÃÄÈÃÃŽÃÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ" + }, + "maccyrillic": { + "type": "_sbcs", + "chars": "ÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯ†°¢£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµ∂ЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“â€â€˜â€™Ã·â€žÐŽÑžÐÑŸâ„–ÐÑ‘ÑабвгдежзийклмнопрÑтуфхцчшщъыьÑю¤" + }, + "macgreek": { + "type": "_sbcs", + "chars": "Ĺ²É³ÖÜ΅à âä΄¨çéèê룙î‰ôö¦Âùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάάΟΡ≈Τ«»… ΥΧΆΈœ–―“â€â€˜â€™Ã·Î‰ÎŠÎŒÎŽÎήίόÎÏαβψδεφγηιξκλμνοπώÏστθωςχυζϊϋÎΰ�" + }, + "maciceland": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáà âäãåçéèêëÃìîïñóòôöõúùûü𢣧•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑âˆÏ€âˆ«ÂªÂºâ„¦Ã¦Ã¸Â¿Â¡Â¬âˆšÆ’≈∆«»… ÀÃÕŒœ–—“â€â€˜â€™Ã·â—ŠÃ¿Å¸â„¤ÃðÞþý·‚„‰ÂÊÃËÈÃÃŽÃÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸Ë˛ˇ" + }, + "macroman": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáà âäãåçéèêëÃìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑âˆÏ€âˆ«ÂªÂºâ„¦Ã¦Ã¸Â¿Â¡Â¬âˆšÆ’≈∆«»… ÀÃÕŒœ–—“â€â€˜â€™Ã·â—ŠÃ¿Å¸â„¤‹›ï¬ï¬‚‡·‚„‰ÂÊÃËÈÃÃŽÃÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸Ë˛ˇ" + }, + "macromania": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáà âäãåçéèêëÃìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂŞ∞±≤≥¥µ∂∑âˆÏ€âˆ«ÂªÂºâ„¦ÄƒÅŸÂ¿Â¡Â¬âˆšÆ’≈∆«»… ÀÃÕŒœ–—“â€â€˜â€™Ã·â—ŠÃ¿Å¸â„¤‹›Ţţ‡·‚„‰ÂÊÃËÈÃÃŽÃÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸Ë˛ˇ" + }, + "macthai": { + "type": "_sbcs", + "chars": "«»…ï¢ï¢’“â€ï¢™ï¿½â€¢ï¢„ï¢ï¢ï¢“‘’� à¸à¸‚ฃคฅฆงจฉชซฌà¸à¸Žà¸à¸à¸‘ฒณดตถทธนบปผà¸à¸žà¸Ÿà¸ มยรฤลฦวศษสหฬà¸à¸®à¸¯à¸°à¸±à¸²à¸³à¸´à¸µà¸¶à¸·à¸¸à¸¹à¸ºï»¿â€‹â€“—฿เà¹à¹‚ใไๅๆ็่้๊๋์à¹â„¢à¹à¹à¹‘๒๓๔๕๖๗๘๙®©����" + }, + "macturkish": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáà âäãåçéèêëÃìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑âˆÏ€âˆ«ÂªÂºâ„¦Ã¦Ã¸Â¿Â¡Â¬âˆšÆ’≈∆«»… ÀÃÕŒœ–—“â€â€˜â€™Ã·â—ŠÃ¿Å¸ÄžÄŸÄ°Ä±ÅžÅŸâ€¡Â·â€šâ€žâ€°Ã‚ÊÃËÈÃÃŽÃÌÓÔ�ÒÚÛÙ�ˆ˜¯˘˙˚¸Ë˛ˇ" + }, + "macukraine": { + "type": "_sbcs", + "chars": "ÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯ†°Ò£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµґЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“â€â€˜â€™Ã·â€žÐŽÑžÐÑŸâ„–ÐÑ‘ÑабвгдежзийклмнопрÑтуфхцчшщъыьÑю¤" + }, + "koi8r": { + "type": "_sbcs", + "chars": "─│┌â”└┘├┤┬┴┼▀▄█▌â–░▒▓⌠■∙√≈≤≥ ⌡°²·÷â•║╒ё╓╔╕╖╗╘╙╚╛╜â•╞╟╠╡Ð╢╣╤╥╦╧╨╩╪╫╬©юабцдефгхийклмнопÑÑ€ÑтужвьызшÑщчъЮÐБЦДЕФГХИЙКЛМÐОПЯРСТУЖВЬЫЗШÐЩЧЪ" + }, + "koi8u": { + "type": "_sbcs", + "chars": "─│┌â”└┘├┤┬┴┼▀▄█▌â–░▒▓⌠■∙√≈≤≥ ⌡°²·÷â•║╒ёє╔ії╗╘╙╚╛ґâ•╞╟╠╡ÐЄ╣ІЇ╦╧╨╩╪Ò╬©юабцдефгхийклмнопÑÑ€ÑтужвьызшÑщчъЮÐБЦДЕФГХИЙКЛМÐОПЯРСТУЖВЬЫЗШÐЩЧЪ" + }, + "koi8ru": { + "type": "_sbcs", + "chars": "─│┌â”└┘├┤┬┴┼▀▄█▌â–░▒▓⌠■∙√≈≤≥ ⌡°²·÷â•║╒ёє╔ії╗╘╙╚╛ґў╞╟╠╡ÐЄ╣ІЇ╦╧╨╩╪ÒЎ©юабцдефгхийклмнопÑÑ€ÑтужвьызшÑщчъЮÐБЦДЕФГХИЙКЛМÐОПЯРСТУЖВЬЫЗШÐЩЧЪ" + }, + "koi8t": { + "type": "_sbcs", + "chars": "қғ‚Ғ„…†‡�‰ҳ‹ҲҷҶ�Қ‘’“â€â€¢â€“—�™�›�����ӯӮё¤ӣ¦§���«¬Â®�°±²Ð�Ӣ¶·�№�»���©юабцдефгхийклмнопÑÑ€ÑтужвьызшÑщчъЮÐБЦДЕФГХИЙКЛМÐОПЯРСТУЖВЬЫЗШÐЩЧЪ" + }, + "armscii8": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ �և։)(»«—.Õ,-֊…՜՛՞ԱաԲբԳգԴդԵեԶզԷէԸըԹթԺժԻիԼլԽÕÔ¾Õ®Ô¿Õ¯Õ€Õ°ÕձՂղՃճՄմՅյՆնՇշՈոՉչՊպՋջՌռÕÕ½ÕŽÕ¾ÕÕ¿ÕÖ€Õ‘ÖՒւՓփՔքՕօՖֆ՚�" + }, + "rk1048": { + "type": "_sbcs", + "chars": "ЂЃ‚ѓ„…†‡€‰Љ‹ЊҚҺÐђ‘’“â€â€¢â€“—�™љ›њқһџ ҰұӘ¤Ө¦§Ð©Ғ«¬Â®Ү°±Ііөµ¶·ё№ғ»әҢңүÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмнопрÑтуфхцчшщъыьÑÑŽÑ" + }, + "tcvn": { + "type": "_sbcs", + "chars": "\u0000ÚỤ\u0003ỪỬỮ\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010ỨỰỲỶỸÃá»´\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ÀẢÃÃẠẶẬÈẺẼÉẸỆÌỈĨÃá»ŠÃ’á»ŽÃ•Ã“á»Œá»˜á»œá»žá» á»šá»¢Ã™á»¦Å¨Â Ä‚Ã‚ÃŠÃ”Æ Æ¯ÄăâêôơưđẰ̀̉̃Ị̀à ảãáạẲằẳẵắẴẮẦẨẪẤỀặầẩẫấáºÃ¨á»‚ẻẽéẹá»á»ƒá»…ếệìỉỄẾỒĩÃịòỔá»ÃµÃ³á»á»“ổỗốộá»á»Ÿá»¡á»›á»£Ã¹á»–ủũúụừá»á»¯á»©á»±á»³á»·á»¹Ã½á»µá»" + }, + "georgianacademy": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“â€â€¢â€“—˜™š›œÂžŸ ¡¢£¤¥¦§¨©ª«¬Â®¯°±²³´µ¶·¸¹º»¼½¾¿áƒáƒ‘გდევზთიკლმნáƒáƒžáƒŸáƒ სტუფქღყშჩცძწáƒáƒ®áƒ¯áƒ°áƒ±áƒ²áƒ³áƒ´áƒµáƒ¶Ã§Ã¨Ã©ÃªÃ«Ã¬Ãîïðñòóôõö÷øùúûüýþÿ" + }, + "georgianps": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“â€â€¢â€“—˜™š›œÂžŸ ¡¢£¤¥¦§¨©ª«¬Â®¯°±²³´µ¶·¸¹º»¼½¾¿áƒáƒ‘გდევზჱთიკლმნჲáƒáƒžáƒŸáƒ სტჳუფქღყშჩცძწáƒáƒ®áƒ´áƒ¯áƒ°áƒµÃ¦Ã§Ã¨Ã©ÃªÃ«Ã¬Ãîïðñòóôõö÷øùúûüýþÿ" + }, + "pt154": { + "type": "_sbcs", + "chars": "Ò–Ò’Ó®Ò“â€žâ€¦Ò¶Ò®Ò²Ò¯Ò Ó¢Ò¢ÒšÒºÒ¸Ò—â€˜â€™â€œâ€â€¢â€“—ҳҷҡӣңқһҹ ЎўЈӨҘҰ§Ð©Ә«¬ӯ®Ҝ°ұІіҙө¶·ё№ә»јҪҫÒÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬÐЮЯабвгдежзийклмнопрÑтуфхцчшщъыьÑÑŽÑ" + }, + "viscii": { + "type": "_sbcs", + "chars": "\u0000\u0001Ẳ\u0003\u0004ẴẪ\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013á»¶\u0015\u0016\u0017\u0018Ỹ\u001a\u001b\u001c\u001dá»´\u001f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ẠẮẰẶẤẦẨẬẼẸẾỀỂỄỆá»á»’ỔỖỘỢỚỜỞỊỎỌỈỦŨỤỲÕắằặấầẩáºáº½áº¹áº¿á»á»ƒá»…á»‡á»‘á»“á»•á»—á» Æ á»™á»á»Ÿá»‹á»°á»¨á»ªá»¬Æ¡á»›Æ¯Ã€ÃÂÃẢĂẳẵÈÉÊẺÌÃĨỳÄứÒÓÔạỷừá»Ã™Ãšá»¹á»µÃỡưà áâãảăữẫèéêẻìÃĩỉđựòóôõá»á»á»¥Ã¹ÃºÅ©á»§Ã½á»£á»®" + }, + "iso646cn": { + "type": "_sbcs", + "chars": "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#Â¥%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������" + }, + "iso646jp": { + "type": "_sbcs", + "chars": "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[Â¥]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������" + }, + "hproman8": { + "type": "_sbcs", + "chars": "€Â‚ƒ„…†‡ˆ‰Š‹ŒÂŽ‘’“”•–—˜™š›œÂžŸ ÀÂÈÊËÎôˋˆ¨˜ÙÛ₤¯Ãý°ÇçÑñ¡¿¤£¥§ƒ¢âêôûáéóúà èòùäëöüÅîØÆåÃøæÄìÖÜÉïßÔÃÃãÃðÃÌÓÒÕõŠšÚŸÿÞþ·µ¶¾—¼½ªº«■»±�" + }, + "macintosh": { + "type": "_sbcs", + "chars": "ÄÅÇÉÑÖÜáà âäãåçéèêëÃìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑âˆÏ€âˆ«ÂªÂºâ„¦Ã¦Ã¸Â¿Â¡Â¬âˆšÆ’≈∆«»… ÀÃÕŒœ–—“â€â€˜â€™Ã·â—ŠÃ¿Å¸â„¤‹›ï¬ï¬‚‡·‚„‰ÂÊÃËÈÃÃŽÃÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸Ë˛ˇ" + }, + "ascii": { + "type": "_sbcs", + "chars": "��������������������������������������������������������������������������������������������������������������������������������" + }, + "tis620": { + "type": "_sbcs", + "chars": "���������������������������������à¸à¸‚ฃคฅฆงจฉชซฌà¸à¸Žà¸à¸à¸‘ฒณดตถทธนบปผà¸à¸žà¸Ÿà¸ มยรฤลฦวศษสหฬà¸à¸®à¸¯à¸°à¸±à¸²à¸³à¸´à¸µà¸¶à¸·à¸¸à¸¹à¸ºï¿½ï¿½ï¿½ï¿½à¸¿à¹€à¹à¹‚ใไๅๆ็่้๊๋์à¹à¹Žà¹à¹à¹‘๒๓๔๕๖๗๘๙๚๛����" + } +} + +/***/ }), +/* 816 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +var Buffer = __webpack_require__(114).Buffer; -var _interopRequireDefault = __webpack_require__(530); +// Multibyte codec. In this scheme, a character is represented by 1 or more bytes. +// Our codec supports UTF-16 surrogates, extensions for GB18030 and unicode sequences. +// To save memory and loading time, we read table files only when requested. -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.triggers = exports.triggerStates = void 0; +exports._dbcs = DBCSCodec; -var _get = _interopRequireDefault(__webpack_require__(370)); +var UNASSIGNED = -1, + GB18030_CODE = -2, + SEQ_START = -10, + NODE_START = -1000, + UNASSIGNED_NODE = new Array(0x100), + DEF_CHAR = -1; -var _account = __webpack_require__(818); +for (var i = 0; i < 0x100; i++) + UNASSIGNED_NODE[i] = UNASSIGNED; -var actionableErrors = ['CHALLENGE_ASKED', 'DISK_QUOTA_EXCEEDED', 'TERMS_VERSION_MISMATCH', 'USER_ACTION_NEEDED', 'USER_ACTION_NEEDED.CHANGE_PASSWORD', 'USER_ACTION_NEEDED.ACCOUNT_REMOVED', 'USER_ACTION_NEEDED.WEBAUTH_REQUIRED', 'USER_ACTION_NEEDED.SCA_REQUIRED', 'LOGIN_FAILED']; -/** Trigger states come from /jobs/triggers */ -var triggerStates = { - /** Returns when the trigger was last executed. Need a trigger */ - getLastExecution: function getLastExecution(triggerState) { - return (0, _get.default)(triggerState, 'current_state.last_execution'); - }, - getLastsuccess: function getLastsuccess(triggerState) { - console.warn('Deprecated, please use getLastSuccess instead of getLastsuccess'); - return (0, _get.default)(triggerState, 'current_state.last_success'); - }, +// Class DBCSCodec reads and initializes mapping tables. +function DBCSCodec(codecOptions, iconv) { + this.encodingName = codecOptions.encodingName; + if (!codecOptions) + throw new Error("DBCS codec is called without the data.") + if (!codecOptions.table) + throw new Error("Encoding '" + this.encodingName + "' has no data."); - /** Returns when the trigger was last successfully executed. */ - getLastSuccess: function getLastSuccess(triggerState) { - return (0, _get.default)(triggerState, 'current_state.last_success'); - }, + // Load tables. + var mappingTable = codecOptions.table(); - /** Returns whether last job failed */ - isErrored: function isErrored(triggerState) { - return (0, _get.default)(triggerState, 'current_state.status') === 'errored'; - }, - /** Returns the type of the last error to occur */ - getLastErrorType: function getLastErrorType(triggerState) { - return (0, _get.default)(triggerState, 'current_state.last_error'); - } -}; -exports.triggerStates = triggerStates; -var triggers = { - isKonnectorWorker: function isKonnectorWorker(trigger) { - return trigger.worker === 'konnector'; - }, + // Decode tables: MBCS -> Unicode. - /** - * Returns the konnector slug that executed a trigger - * - * @param {object} trigger io.cozy.triggers - * - * @returns {string|void} A konnector slug - */ - getKonnector: function getKonnector(trigger) { - if (!triggers.isKonnectorWorker(trigger)) { - return null; + // decodeTables is a trie, encoded as an array of arrays of integers. Internal arrays are trie nodes and all have len = 256. + // Trie root is decodeTables[0]. + // Values: >= 0 -> unicode character code. can be > 0xFFFF + // == UNASSIGNED -> unknown/unassigned sequence. + // == GB18030_CODE -> this is the end of a GB18030 4-byte sequence. + // <= NODE_START -> index of the next node in our trie to process next byte. + // <= SEQ_START -> index of the start of a character code sequence, in decodeTableSeq. + this.decodeTables = []; + this.decodeTables[0] = UNASSIGNED_NODE.slice(0); // Create root node. + + // Sometimes a MBCS char corresponds to a sequence of unicode chars. We store them as arrays of integers here. + this.decodeTableSeq = []; + + // Actual mapping tables consist of chunks. Use them to fill up decode tables. + for (var i = 0; i < mappingTable.length; i++) + this._addDecodeChunk(mappingTable[i]); + + // Load & create GB18030 tables when needed. + if (typeof codecOptions.gb18030 === 'function') { + this.gb18030 = codecOptions.gb18030(); // Load GB18030 ranges. + + // Add GB18030 common decode nodes. + var commonThirdByteNodeIdx = this.decodeTables.length; + this.decodeTables.push(UNASSIGNED_NODE.slice(0)); + + var commonFourthByteNodeIdx = this.decodeTables.length; + this.decodeTables.push(UNASSIGNED_NODE.slice(0)); + + // Fill out the tree + var firstByteNode = this.decodeTables[0]; + for (var i = 0x81; i <= 0xFE; i++) { + var secondByteNode = this.decodeTables[NODE_START - firstByteNode[i]]; + for (var j = 0x30; j <= 0x39; j++) { + if (secondByteNode[j] === UNASSIGNED) { + secondByteNode[j] = NODE_START - commonThirdByteNodeIdx; + } else if (secondByteNode[j] > NODE_START) { + throw new Error("gb18030 decode tables conflict at byte 2"); + } + + var thirdByteNode = this.decodeTables[NODE_START - secondByteNode[j]]; + for (var k = 0x81; k <= 0xFE; k++) { + if (thirdByteNode[k] === UNASSIGNED) { + thirdByteNode[k] = NODE_START - commonFourthByteNodeIdx; + } else if (thirdByteNode[k] === NODE_START - commonFourthByteNodeIdx) { + continue; + } else if (thirdByteNode[k] > NODE_START) { + throw new Error("gb18030 decode tables conflict at byte 3"); + } + + var fourthByteNode = this.decodeTables[NODE_START - thirdByteNode[k]]; + for (var l = 0x30; l <= 0x39; l++) { + if (fourthByteNode[l] === UNASSIGNED) + fourthByteNode[l] = GB18030_CODE; + } + } + } + } } - if (trigger.message && trigger.message.konnector) { - return trigger.message.konnector; - } else if (trigger.message && trigger.message.Data) { - // Legacy triggers - var message = JSON.parse(atob(trigger.message.Data)); - return message.konnector; + this.defaultCharUnicode = iconv.defaultCharUnicode; + + + // Encode tables: Unicode -> DBCS. + + // `encodeTable` is array mapping from unicode char to encoded char. All its values are integers for performance. + // Because it can be sparse, it is represented as array of buckets by 256 chars each. Bucket can be null. + // Values: >= 0 -> it is a normal char. Write the value (if <=256 then 1 byte, if <=65536 then 2 bytes, etc.). + // == UNASSIGNED -> no conversion found. Output a default char. + // <= SEQ_START -> it's an index in encodeTableSeq, see below. The character starts a sequence. + this.encodeTable = []; + + // `encodeTableSeq` is used when a sequence of unicode characters is encoded as a single code. We use a tree of + // objects where keys correspond to characters in sequence and leafs are the encoded dbcs values. A special DEF_CHAR key + // means end of sequence (needed when one sequence is a strict subsequence of another). + // Objects are kept separately from encodeTable to increase performance. + this.encodeTableSeq = []; + + // Some chars can be decoded, but need not be encoded. + var skipEncodeChars = {}; + if (codecOptions.encodeSkipVals) + for (var i = 0; i < codecOptions.encodeSkipVals.length; i++) { + var val = codecOptions.encodeSkipVals[i]; + if (typeof val === 'number') + skipEncodeChars[val] = true; + else + for (var j = val.from; j <= val.to; j++) + skipEncodeChars[j] = true; + } + + // Use decode trie to recursively fill out encode tables. + this._fillEncodeTable(0, 0, skipEncodeChars); + + // Add more encoding pairs when needed. + if (codecOptions.encodeAdd) { + for (var uChar in codecOptions.encodeAdd) + if (Object.prototype.hasOwnProperty.call(codecOptions.encodeAdd, uChar)) + this._setEncodeChar(uChar.charCodeAt(0), codecOptions.encodeAdd[uChar]); } - }, - /** - * getAccountId - Returns the account id for a trigger - * - * @param {object} trigger io.cozy.triggers - * - * @returns {string} Id for an io.cozy.accounts - */ - getAccountId: function getAccountId(trigger) { - var legacyData = (0, _get.default)(trigger, 'message.Data'); + this.defCharSB = this.encodeTable[0][iconv.defaultCharSingleByte.charCodeAt(0)]; + if (this.defCharSB === UNASSIGNED) this.defCharSB = this.encodeTable[0]['?']; + if (this.defCharSB === UNASSIGNED) this.defCharSB = "?".charCodeAt(0); +} - if (legacyData) { - var message = JSON.parse(atob(legacyData)); - return message.account; - } else { - return (0, _get.default)(trigger, 'message.account'); +DBCSCodec.prototype.encoder = DBCSEncoder; +DBCSCodec.prototype.decoder = DBCSDecoder; + +// Decoder helpers +DBCSCodec.prototype._getDecodeTrieNode = function(addr) { + var bytes = []; + for (; addr > 0; addr >>>= 8) + bytes.push(addr & 0xFF); + if (bytes.length == 0) + bytes.push(0); + + var node = this.decodeTables[0]; + for (var i = bytes.length-1; i > 0; i--) { // Traverse nodes deeper into the trie. + var val = node[bytes[i]]; + + if (val == UNASSIGNED) { // Create new node. + node[bytes[i]] = NODE_START - this.decodeTables.length; + this.decodeTables.push(node = UNASSIGNED_NODE.slice(0)); + } + else if (val <= NODE_START) { // Existing node. + node = this.decodeTables[NODE_START - val]; + } + else + throw new Error("Overwrite byte in " + this.encodingName + ", addr: " + addr.toString(16)); } - }, + return node; +} - /** - * Checks if the triggers current error has been muted in the corresponding io.cozy.accounts - * - * @param {object} trigger io.cozy.triggers - * @param {object} account io.cozy.accounts used by the trigger - * - * @returns {boolean} Whether the error is muted or not - */ - isLatestErrorMuted: function isLatestErrorMuted(trigger, account) { - var lastErrorType = triggerStates.getLastErrorType(trigger); - var lastSuccess = triggerStates.getLastSuccess(trigger); - var lastSuccessDate = lastSuccess ? new Date(lastSuccess) : new Date(); - var mutedErrors = (0, _account.getMutedErrors)(account); - var isErrorMuted = mutedErrors.some(function (mutedError) { - return mutedError.type === lastErrorType && (!lastSuccess || new Date(mutedError.mutedAt) > lastSuccessDate); - }); - return isErrorMuted; - }, - /** - * Returns whether the error in trigger can be solved by the user - * - * @param {object} trigger io.cozy.triggers - * - * @returns {boolean} Whether the error is muted or not - */ - hasActionableError: function hasActionableError(trigger) { - return actionableErrors.includes(trigger.current_state.last_error); - } -}; -exports.triggers = triggers; +DBCSCodec.prototype._addDecodeChunk = function(chunk) { + // First element of chunk is the hex mbcs code where we start. + var curAddr = parseInt(chunk[0], 16); + + // Choose the decoding node where we'll write our chars. + var writeTable = this._getDecodeTrieNode(curAddr); + curAddr = curAddr & 0xFF; -/***/ }), -/* 818 */ -/***/ (function(module, exports, __webpack_require__) { + // Write all other elements of the chunk to the table. + for (var k = 1; k < chunk.length; k++) { + var part = chunk[k]; + if (typeof part === "string") { // String, write as-is. + for (var l = 0; l < part.length;) { + var code = part.charCodeAt(l++); + if (0xD800 <= code && code < 0xDC00) { // Decode surrogate + var codeTrail = part.charCodeAt(l++); + if (0xDC00 <= codeTrail && codeTrail < 0xE000) + writeTable[curAddr++] = 0x10000 + (code - 0xD800) * 0x400 + (codeTrail - 0xDC00); + else + throw new Error("Incorrect surrogate pair in " + this.encodingName + " at chunk " + chunk[0]); + } + else if (0x0FF0 < code && code <= 0x0FFF) { // Character sequence (our own encoding used) + var len = 0xFFF - code + 2; + var seq = []; + for (var m = 0; m < len; m++) + seq.push(part.charCodeAt(l++)); // Simple variation: don't support surrogates or subsequences in seq. -"use strict"; + writeTable[curAddr++] = SEQ_START - this.decodeTableSeq.length; + this.decodeTableSeq.push(seq); + } + else + writeTable[curAddr++] = code; // Basic char + } + } + else if (typeof part === "number") { // Integer, meaning increasing sequence starting with prev character. + var charCode = writeTable[curAddr - 1] + 1; + for (var l = 0; l < part; l++) + writeTable[curAddr++] = charCode++; + } + else + throw new Error("Incorrect type '" + typeof part + "' given in " + this.encodingName + " at chunk " + chunk[0]); + } + if (curAddr > 0xFF) + throw new Error("Incorrect chunk in " + this.encodingName + " at addr " + chunk[0] + ": too long" + curAddr); +} +// Encoder helpers +DBCSCodec.prototype._getEncodeBucket = function(uCode) { + var high = uCode >> 8; // This could be > 0xFF because of astral characters. + if (this.encodeTable[high] === undefined) + this.encodeTable[high] = UNASSIGNED_NODE.slice(0); // Create bucket on demand. + return this.encodeTable[high]; +} -var _interopRequireDefault = __webpack_require__(530); +DBCSCodec.prototype._setEncodeChar = function(uCode, dbcsCode) { + var bucket = this._getEncodeBucket(uCode); + var low = uCode & 0xFF; + if (bucket[low] <= SEQ_START) + this.encodeTableSeq[SEQ_START-bucket[low]][DEF_CHAR] = dbcsCode; // There's already a sequence, set a single-char subsequence of it. + else if (bucket[low] == UNASSIGNED) + bucket[low] = dbcsCode; +} -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.setContractSyncStatusInAccount = exports.getContractSyncStatusFromAccount = exports.muteError = exports.getMutedErrors = void 0; +DBCSCodec.prototype._setEncodeSequence = function(seq, dbcsCode) { + + // Get the root of character tree according to first character of the sequence. + var uCode = seq[0]; + var bucket = this._getEncodeBucket(uCode); + var low = uCode & 0xFF; -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + var node; + if (bucket[low] <= SEQ_START) { + // There's already a sequence with - use it. + node = this.encodeTableSeq[SEQ_START-bucket[low]]; + } + else { + // There was no sequence object - allocate a new one. + node = {}; + if (bucket[low] !== UNASSIGNED) node[DEF_CHAR] = bucket[low]; // If a char was set before - make it a single-char subsequence. + bucket[low] = SEQ_START - this.encodeTableSeq.length; + this.encodeTableSeq.push(node); + } -var _get = _interopRequireDefault(__webpack_require__(370)); + // Traverse the character tree, allocating new nodes as needed. + for (var j = 1; j < seq.length-1; j++) { + var oldVal = node[uCode]; + if (typeof oldVal === 'object') + node = oldVal; + else { + node = node[uCode] = {} + if (oldVal !== undefined) + node[DEF_CHAR] = oldVal + } + } -var _merge = _interopRequireDefault(__webpack_require__(747)); + // Set the leaf to given dbcsCode. + uCode = seq[seq.length-1]; + node[uCode] = dbcsCode; +} -var _HasMany = __webpack_require__(746); +DBCSCodec.prototype._fillEncodeTable = function(nodeIdx, prefix, skipEncodeChars) { + var node = this.decodeTables[nodeIdx]; + var hasValues = false; + var subNodeEmpty = {}; + for (var i = 0; i < 0x100; i++) { + var uCode = node[i]; + var mbCode = prefix + i; + if (skipEncodeChars[mbCode]) + continue; -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + if (uCode >= 0) { + this._setEncodeChar(uCode, mbCode); + hasValues = true; + } else if (uCode <= NODE_START) { + var subNodeIdx = NODE_START - uCode; + if (!subNodeEmpty[subNodeIdx]) { // Skip empty subtrees (they are too large in gb18030). + var newPrefix = (mbCode << 8) >>> 0; // NOTE: '>>> 0' keeps 32-bit num positive. + if (this._fillEncodeTable(subNodeIdx, newPrefix, skipEncodeChars)) + hasValues = true; + else + subNodeEmpty[subNodeIdx] = true; + } + } else if (uCode <= SEQ_START) { + this._setEncodeSequence(this.decodeTableSeq[SEQ_START - uCode], mbCode); + hasValues = true; + } + } + return hasValues; +} -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } -/** - * @typedef {object} CozyAccount - */ -/** - * getMutedErrors - Returns the list of errors that have been muted for the given account - * - * @param {object} account io.cozy.accounts - * - * @returns {Array} An array of errors with a `type` and `mutedAt` field - */ -var getMutedErrors = function getMutedErrors(account) { - return (0, _get.default)(account, 'mutedErrors', []); -}; -/** - * muteError - Adds an error to the list of muted errors for the given account - * - * @param {CozyAccount} account io.cozy.accounts - * @param {string} errorType The type of the error to mute - * - * @returns {CozyAccount} An updated io.cozy.accounts - */ +// == Encoder ================================================================== +function DBCSEncoder(options, codec) { + // Encoder state + this.leadSurrogate = -1; + this.seqObj = undefined; + + // Static data + this.encodeTable = codec.encodeTable; + this.encodeTableSeq = codec.encodeTableSeq; + this.defaultCharSingleByte = codec.defCharSB; + this.gb18030 = codec.gb18030; +} -exports.getMutedErrors = getMutedErrors; +DBCSEncoder.prototype.write = function(str) { + var newBuf = Buffer.alloc(str.length * (this.gb18030 ? 4 : 3)), + leadSurrogate = this.leadSurrogate, + seqObj = this.seqObj, nextChar = -1, + i = 0, j = 0; -var muteError = function muteError(account, errorType) { - var mutedErrors = getMutedErrors(account); - mutedErrors.push({ - type: errorType, - mutedAt: new Date().toISOString() - }); - return _objectSpread(_objectSpread({}, account), {}, { - mutedErrors: mutedErrors - }); -}; + while (true) { + // 0. Get next character. + if (nextChar === -1) { + if (i == str.length) break; + var uCode = str.charCodeAt(i++); + } + else { + var uCode = nextChar; + nextChar = -1; + } -exports.muteError = muteError; -var DEFAULT_CONTRACT_SYNC_STATUS = true; -/** - * Returns whether a contract is synced from account relationship - * - * @param {CozyAccount} account - Cozy account - */ + // 1. Handle surrogates. + if (0xD800 <= uCode && uCode < 0xE000) { // Char is one of surrogates. + if (uCode < 0xDC00) { // We've got lead surrogate. + if (leadSurrogate === -1) { + leadSurrogate = uCode; + continue; + } else { + leadSurrogate = uCode; + // Double lead surrogate found. + uCode = UNASSIGNED; + } + } else { // We've got trail surrogate. + if (leadSurrogate !== -1) { + uCode = 0x10000 + (leadSurrogate - 0xD800) * 0x400 + (uCode - 0xDC00); + leadSurrogate = -1; + } else { + // Incomplete surrogate pair - only trail surrogate found. + uCode = UNASSIGNED; + } + + } + } + else if (leadSurrogate !== -1) { + // Incomplete surrogate pair - only lead surrogate found. + nextChar = uCode; uCode = UNASSIGNED; // Write an error, then current char. + leadSurrogate = -1; + } -var getContractSyncStatusFromAccount = function getContractSyncStatusFromAccount(account, contractId) { - var relItem = (0, _HasMany.getHasManyItem)(account, 'contracts', contractId); + // 2. Convert uCode character. + var dbcsCode = UNASSIGNED; + if (seqObj !== undefined && uCode != UNASSIGNED) { // We are in the middle of the sequence + var resCode = seqObj[uCode]; + if (typeof resCode === 'object') { // Sequence continues. + seqObj = resCode; + continue; - if (!relItem) { - throw new Error("Cannot find contrat ".concat(contractId, " in account")); - } + } else if (typeof resCode == 'number') { // Sequence finished. Write it. + dbcsCode = resCode; - return (0, _get.default)(relItem, 'metadata.imported', DEFAULT_CONTRACT_SYNC_STATUS); -}; -/** - * Sets contract sync status into account relationship - * - * @param {CozyAccount} account - Cozy account - */ + } else if (resCode == undefined) { // Current character is not part of the sequence. + // Try default character for this sequence + resCode = seqObj[DEF_CHAR]; + if (resCode !== undefined) { + dbcsCode = resCode; // Found. Write it. + nextChar = uCode; // Current character will be written too in the next iteration. -exports.getContractSyncStatusFromAccount = getContractSyncStatusFromAccount; + } else { + // TODO: What if we have no default? (resCode == undefined) + // Then, we should write first char of the sequence as-is and try the rest recursively. + // Didn't do it for now because no encoding has this situation yet. + // Currently, just skip the sequence and write current char. + } + } + seqObj = undefined; + } + else if (uCode >= 0) { // Regular character + var subtable = this.encodeTable[uCode >> 8]; + if (subtable !== undefined) + dbcsCode = subtable[uCode & 0xFF]; + + if (dbcsCode <= SEQ_START) { // Sequence start + seqObj = this.encodeTableSeq[SEQ_START-dbcsCode]; + continue; + } -var setContractSyncStatusInAccount = function setContractSyncStatusInAccount(account, contractId, syncStatus) { - return (0, _HasMany.updateHasManyItem)(account, 'contracts', contractId, function (contractRel) { - if (contractRel === undefined) { - throw new Error("Cannot find contrat ".concat(contractId, " in account")); - } + if (dbcsCode == UNASSIGNED && this.gb18030) { + // Use GB18030 algorithm to find character(s) to write. + var idx = findIdx(this.gb18030.uChars, uCode); + if (idx != -1) { + var dbcsCode = this.gb18030.gbChars[idx] + (uCode - this.gb18030.uChars[idx]); + newBuf[j++] = 0x81 + Math.floor(dbcsCode / 12600); dbcsCode = dbcsCode % 12600; + newBuf[j++] = 0x30 + Math.floor(dbcsCode / 1260); dbcsCode = dbcsCode % 1260; + newBuf[j++] = 0x81 + Math.floor(dbcsCode / 10); dbcsCode = dbcsCode % 10; + newBuf[j++] = 0x30 + dbcsCode; + continue; + } + } + } - return (0, _merge.default)({}, contractRel, { - metadata: { - imported: syncStatus - } - }); - }); -}; + // 3. Write dbcsCode character. + if (dbcsCode === UNASSIGNED) + dbcsCode = this.defaultCharSingleByte; + + if (dbcsCode < 0x100) { + newBuf[j++] = dbcsCode; + } + else if (dbcsCode < 0x10000) { + newBuf[j++] = dbcsCode >> 8; // high byte + newBuf[j++] = dbcsCode & 0xFF; // low byte + } + else if (dbcsCode < 0x1000000) { + newBuf[j++] = dbcsCode >> 16; + newBuf[j++] = (dbcsCode >> 8) & 0xFF; + newBuf[j++] = dbcsCode & 0xFF; + } else { + newBuf[j++] = dbcsCode >>> 24; + newBuf[j++] = (dbcsCode >>> 16) & 0xFF; + newBuf[j++] = (dbcsCode >>> 8) & 0xFF; + newBuf[j++] = dbcsCode & 0xFF; + } + } -exports.setContractSyncStatusInAccount = setContractSyncStatusInAccount; + this.seqObj = seqObj; + this.leadSurrogate = leadSurrogate; + return newBuf.slice(0, j); +} -/***/ }), -/* 819 */ -/***/ (function(module, exports, __webpack_require__) { +DBCSEncoder.prototype.end = function() { + if (this.leadSurrogate === -1 && this.seqObj === undefined) + return; // All clean. Most often case. -"use strict"; + var newBuf = Buffer.alloc(10), j = 0; + if (this.seqObj) { // We're in the sequence. + var dbcsCode = this.seqObj[DEF_CHAR]; + if (dbcsCode !== undefined) { // Write beginning of the sequence. + if (dbcsCode < 0x100) { + newBuf[j++] = dbcsCode; + } + else { + newBuf[j++] = dbcsCode >> 8; // high byte + newBuf[j++] = dbcsCode & 0xFF; // low byte + } + } else { + // See todo above. + } + this.seqObj = undefined; + } -var _interopRequireDefault = __webpack_require__(530); + if (this.leadSurrogate !== -1) { + // Incomplete surrogate pair - only lead surrogate found. + newBuf[j++] = this.defaultCharSingleByte; + this.leadSurrogate = -1; + } + + return newBuf.slice(0, j); +} -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.buildPremiumLink = exports.hasAnOffer = exports.shouldDisplayOffers = exports.getUuid = exports.isFreemiumUser = exports.arePremiumLinksEnabled = exports.isSelfHosted = void 0; +// Export for testing +DBCSEncoder.prototype.findIdx = findIdx; -var _get = _interopRequireDefault(__webpack_require__(370)); -var GB = 1000 * 1000 * 1000; -var PREMIUM_QUOTA = 50 * GB; -/** - * @typedef {object} InstanceInfo - * @typedef {object} ContextInfo - * @typedef {object} DiskUsageInfo - */ +// == Decoder ================================================================== -/** - * @typedef SettingsInfo - * @property {ContextInfo} context - Object returned by /settings/context - * @property {InstanceInfo} instance - Object returned by /settings/instance - * @property {DiskUsageInfo} diskUsage - Object returned by /settings/disk-usage - */ -// If manager URL is present, then the instance is not self-hosted +function DBCSDecoder(options, codec) { + // Decoder state + this.nodeIdx = 0; + this.prevBytes = []; -var isSelfHosted = function isSelfHosted(instanceInfo) { - return (0, _get.default)(instanceInfo, 'context.data.attributes.manager_url') ? false : true; -}; + // Static data + this.decodeTables = codec.decodeTables; + this.decodeTableSeq = codec.decodeTableSeq; + this.defaultCharUnicode = codec.defaultCharUnicode; + this.gb18030 = codec.gb18030; +} -exports.isSelfHosted = isSelfHosted; +DBCSDecoder.prototype.write = function(buf) { + var newBuf = Buffer.alloc(buf.length*2), + nodeIdx = this.nodeIdx, + prevBytes = this.prevBytes, prevOffset = this.prevBytes.length, + seqStart = -this.prevBytes.length, // idx of the start of current parsed sequence. + uCode; -var arePremiumLinksEnabled = function arePremiumLinksEnabled(instanceInfo) { - return (0, _get.default)(instanceInfo, 'context.data.attributes.enable_premium_links') ? true : false; -}; + for (var i = 0, j = 0; i < buf.length; i++) { + var curByte = (i >= 0) ? buf[i] : prevBytes[i + prevOffset]; -exports.arePremiumLinksEnabled = arePremiumLinksEnabled; + // Lookup in current trie node. + var uCode = this.decodeTables[nodeIdx][curByte]; -var isFreemiumUser = function isFreemiumUser(instanceInfo) { - var quota = (0, _get.default)(instanceInfo, 'diskUsage.data.attributes.quota', false); - return parseInt(quota) <= PREMIUM_QUOTA; -}; + if (uCode >= 0) { + // Normal character, just use it. + } + else if (uCode === UNASSIGNED) { // Unknown char. + // TODO: Callback with seq. + uCode = this.defaultCharUnicode.charCodeAt(0); + i = seqStart; // Skip one byte ('i' will be incremented by the for loop) and try to parse again. + } + else if (uCode === GB18030_CODE) { + if (i >= 3) { + var ptr = (buf[i-3]-0x81)*12600 + (buf[i-2]-0x30)*1260 + (buf[i-1]-0x81)*10 + (curByte-0x30); + } else { + var ptr = (prevBytes[i-3+prevOffset]-0x81)*12600 + + (((i-2 >= 0) ? buf[i-2] : prevBytes[i-2+prevOffset])-0x30)*1260 + + (((i-1 >= 0) ? buf[i-1] : prevBytes[i-1+prevOffset])-0x81)*10 + + (curByte-0x30); + } + var idx = findIdx(this.gb18030.gbChars, ptr); + uCode = this.gb18030.uChars[idx] + ptr - this.gb18030.gbChars[idx]; + } + else if (uCode <= NODE_START) { // Go to next trie node. + nodeIdx = NODE_START - uCode; + continue; + } + else if (uCode <= SEQ_START) { // Output a sequence of chars. + var seq = this.decodeTableSeq[SEQ_START - uCode]; + for (var k = 0; k < seq.length - 1; k++) { + uCode = seq[k]; + newBuf[j++] = uCode & 0xFF; + newBuf[j++] = uCode >> 8; + } + uCode = seq[seq.length-1]; + } + else + throw new Error("iconv-lite internal error: invalid decoding table value " + uCode + " at " + nodeIdx + "/" + curByte); -exports.isFreemiumUser = isFreemiumUser; + // Write the character to buffer, handling higher planes using surrogate pair. + if (uCode >= 0x10000) { + uCode -= 0x10000; + var uCodeLead = 0xD800 | (uCode >> 10); + newBuf[j++] = uCodeLead & 0xFF; + newBuf[j++] = uCodeLead >> 8; -var getUuid = function getUuid(instanceInfo) { - return (0, _get.default)(instanceInfo, 'instance.data.attributes.uuid'); -}; -/** - * Returns whether an instance is concerned by our offers - * - * @param {SettingsInfo} data Object containing all the results from /settings/* - * @returns {boolean} Should we display offers - */ + uCode = 0xDC00 | (uCode & 0x3FF); + } + newBuf[j++] = uCode & 0xFF; + newBuf[j++] = uCode >> 8; + // Reset trie node. + nodeIdx = 0; seqStart = i+1; + } -exports.getUuid = getUuid; + this.nodeIdx = nodeIdx; + this.prevBytes = (seqStart >= 0) + ? Array.prototype.slice.call(buf, seqStart) + : prevBytes.slice(seqStart + prevOffset).concat(Array.prototype.slice.call(buf)); -var shouldDisplayOffers = function shouldDisplayOffers(data) { - return !isSelfHosted(data) && arePremiumLinksEnabled(data) && getUuid(data) && isFreemiumUser(data); -}; -/** - * Returns if an instance has subscribed to one of our offers - * - * @param {SettingsInfo} data Object containing all the results from /settings/* - * @returns {boolean} Does the cozy have offers - */ + return newBuf.slice(0, j).toString('ucs2'); +} +DBCSDecoder.prototype.end = function() { + var ret = ''; -exports.shouldDisplayOffers = shouldDisplayOffers; + // Try to parse all remaining chars. + while (this.prevBytes.length > 0) { + // Skip 1 character in the buffer. + ret += this.defaultCharUnicode; + var bytesArr = this.prevBytes.slice(1); -var hasAnOffer = function hasAnOffer(data) { - return !isSelfHosted(data) && arePremiumLinksEnabled(data) && getUuid(data) && !isFreemiumUser(data); -}; -/** - * Returns the link to the Premium page on the Cozy's Manager - * - * @param {InstanceInfo} instanceInfo - Instance information - */ + // Parse remaining as usual. + this.prevBytes = []; + this.nodeIdx = 0; + if (bytesArr.length > 0) + ret += this.write(bytesArr); + } + this.prevBytes = []; + this.nodeIdx = 0; + return ret; +} -exports.hasAnOffer = hasAnOffer; +// Binary search for GB18030. Returns largest i such that table[i] <= val. +function findIdx(table, val) { + if (table[0] > val) + return -1; -var buildPremiumLink = function buildPremiumLink(instanceInfo) { - var managerUrl = (0, _get.default)(instanceInfo, 'context.data.attributes.manager_url', false); - var uuid = getUuid(instanceInfo); + var l = 0, r = table.length; + while (l < r-1) { // always table[l] <= val < table[r] + var mid = l + ((r-l+1) >> 1); + if (table[mid] <= val) + l = mid; + else + r = mid; + } + return l; +} - if (managerUrl && uuid) { - return "".concat(managerUrl, "/cozy/instances/").concat(uuid, "/premium"); - } else { - return null; - } -}; -exports.buildPremiumLink = buildPremiumLink; /***/ }), -/* 820 */ +/* 817 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var _interopRequireDefault = __webpack_require__(530); +// Description of supported double byte encodings and aliases. +// Tables are not require()-d until they are needed to speed up library load. +// require()-s are direct to support Browserify. -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.getAppDisplayName = exports.getUrl = exports.isInstalled = exports.getStoreInstallationURL = exports.getStoreURL = void 0; +module.exports = { + + // == Japanese/ShiftJIS ==================================================== + // All japanese encodings are based on JIS X set of standards: + // JIS X 0201 - Single-byte encoding of ASCII + Â¥ + Kana chars at 0xA1-0xDF. + // JIS X 0208 - Main set of 6879 characters, placed in 94x94 plane, to be encoded by 2 bytes. + // Has several variations in 1978, 1983, 1990 and 1997. + // JIS X 0212 - Supplementary plane of 6067 chars in 94x94 plane. 1990. Effectively dead. + // JIS X 0213 - Extension and modern replacement of 0208 and 0212. Total chars: 11233. + // 2 planes, first is superset of 0208, second - revised 0212. + // Introduced in 2000, revised 2004. Some characters are in Unicode Plane 2 (0x2xxxx) -var _get = _interopRequireDefault(__webpack_require__(370)); + // Byte encodings are: + // * Shift_JIS: Compatible with 0201, uses not defined chars in top half as lead bytes for double-byte + // encoding of 0208. Lead byte ranges: 0x81-0x9F, 0xE0-0xEF; Trail byte ranges: 0x40-0x7E, 0x80-0x9E, 0x9F-0xFC. + // Windows CP932 is a superset of Shift_JIS. Some companies added more chars, notably KDDI. + // * EUC-JP: Up to 3 bytes per character. Used mostly on *nixes. + // 0x00-0x7F - lower part of 0201 + // 0x8E, 0xA1-0xDF - upper part of 0201 + // (0xA1-0xFE)x2 - 0208 plane (94x94). + // 0x8F, (0xA1-0xFE)x2 - 0212 plane (94x94). + // * JIS X 208: 7-bit, direct encoding of 0208. Byte ranges: 0x21-0x7E (94 values). Uncommon. + // Used as-is in ISO2022 family. + // * ISO2022-JP: Stateful encoding, with escape sequences to switch between ASCII, + // 0201-1976 Roman, 0208-1978, 0208-1983. + // * ISO2022-JP-1: Adds esc seq for 0212-1990. + // * ISO2022-JP-2: Adds esc seq for GB2313-1980, KSX1001-1992, ISO8859-1, ISO8859-7. + // * ISO2022-JP-3: Adds esc seq for 0201-1976 Kana set, 0213-2000 Planes 1, 2. + // * ISO2022-JP-2004: Adds 0213-2004 Plane 1. + // + // After JIS X 0213 appeared, Shift_JIS-2004, EUC-JISX0213 and ISO2022-JP-2004 followed, with just changing the planes. + // + // Overall, it seems that it's a mess :( http://www8.plala.or.jp/tkubota1/unicode-symbols-map2.html -var STORE_SLUG = 'store'; -/** - * Returns the store URL of an app/konnector - * - * @param {Array} [appData=[]] Apps data, as returned by endpoint /apps/ or /konnectors - * @param {object} [app={}] AppObject - * @returns {string} URL as string - */ + 'shiftjis': { + type: '_dbcs', + table: function() { return __webpack_require__(818) }, + encodeAdd: {'\u00a5': 0x5C, '\u203E': 0x7E}, + encodeSkipVals: [{from: 0xED40, to: 0xF940}], + }, + 'csshiftjis': 'shiftjis', + 'mskanji': 'shiftjis', + 'sjis': 'shiftjis', + 'windows31j': 'shiftjis', + 'ms31j': 'shiftjis', + 'xsjis': 'shiftjis', + 'windows932': 'shiftjis', + 'ms932': 'shiftjis', + '932': 'shiftjis', + 'cp932': 'shiftjis', -var getStoreURL = function getStoreURL() { - var appData = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; - var app = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + 'eucjp': { + type: '_dbcs', + table: function() { return __webpack_require__(819) }, + encodeAdd: {'\u00a5': 0x5C, '\u203E': 0x7E}, + }, - if (!app.slug) { - throw new Error('Expected app / konnector with the defined slug'); - } + // TODO: KDDI extension to Shift_JIS + // TODO: IBM CCSID 942 = CP932, but F0-F9 custom chars and other char changes. + // TODO: IBM CCSID 943 = Shift_JIS = CP932 with original Shift_JIS lower 128 chars. - var storeApp = isInstalled(appData, { - slug: STORE_SLUG - }); - if (!storeApp) return null; - var storeUrl = storeApp.links && storeApp.links.related; - if (!storeUrl) return null; - return "".concat(storeUrl, "#/discover/").concat(app.slug); -}; -/** - * Returns the store URL to install/update an app/konnector - * - * @param {Array} [appData=[]] Apps data, as returned by endpoint /apps/ or - * /konnectors/ - * @param {object} [app={}] AppObject - * @returns {string} URL as string - */ + // == Chinese/GBK ========================================================== + // http://en.wikipedia.org/wiki/GBK + // We mostly implement W3C recommendation: https://www.w3.org/TR/encoding/#gbk-encoder -exports.getStoreURL = getStoreURL; + // Oldest GB2312 (1981, ~7600 chars) is a subset of CP936 + 'gb2312': 'cp936', + 'gb231280': 'cp936', + 'gb23121980': 'cp936', + 'csgb2312': 'cp936', + 'csiso58gb231280': 'cp936', + 'euccn': 'cp936', -var getStoreInstallationURL = function getStoreInstallationURL() { - var appData = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; - var app = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var storeUrl = getStoreURL(appData, app); + // Microsoft's CP936 is a subset and approximation of GBK. + 'windows936': 'cp936', + 'ms936': 'cp936', + '936': 'cp936', + 'cp936': { + type: '_dbcs', + table: function() { return __webpack_require__(820) }, + }, - if (!storeUrl) { - return null; - } + // GBK (~22000 chars) is an extension of CP936 that added user-mapped chars and some other. + 'gbk': { + type: '_dbcs', + table: function() { return __webpack_require__(820).concat(__webpack_require__(821)) }, + }, + 'xgbk': 'gbk', + 'isoir58': 'gbk', - return "".concat(storeUrl, "/install"); -}; -/** - * - * @param {Array} apps Array of apps returned by /apps /konnectors - * @param {object} wantedApp io.cozy.app with at least a slug - * @returns {object} The io.cozy.app is installed or undefined if not - */ + // GB18030 is an algorithmic extension of GBK. + // Main source: https://www.w3.org/TR/encoding/#gbk-encoder + // http://icu-project.org/docs/papers/gb18030.html + // http://source.icu-project.org/repos/icu/data/trunk/charset/data/xml/gb-18030-2000.xml + // http://www.khngai.com/chinese/charmap/tblgbk.php?page=0 + 'gb18030': { + type: '_dbcs', + table: function() { return __webpack_require__(820).concat(__webpack_require__(821)) }, + gb18030: function() { return __webpack_require__(822) }, + encodeSkipVals: [0x80], + encodeAdd: {'€': 0xA2E3}, + }, + 'chinese': 'gb18030', -exports.getStoreInstallationURL = getStoreInstallationURL; -var isInstalled = function isInstalled() { - var apps = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; - var wantedApp = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - return apps.find(function (app) { - return app.attributes && app.attributes.slug === wantedApp.slug; - }); -}; -/** - * - * @param {object} app io.cozy.apps document - * @returns {string} url to the app - */ + // == Korean =============================================================== + // EUC-KR, KS_C_5601 and KS X 1001 are exactly the same. + 'windows949': 'cp949', + 'ms949': 'cp949', + '949': 'cp949', + 'cp949': { + type: '_dbcs', + table: function() { return __webpack_require__(823) }, + }, + 'cseuckr': 'cp949', + 'csksc56011987': 'cp949', + 'euckr': 'cp949', + 'isoir149': 'cp949', + 'korean': 'cp949', + 'ksc56011987': 'cp949', + 'ksc56011989': 'cp949', + 'ksc5601': 'cp949', -exports.isInstalled = isInstalled; -var getUrl = function getUrl(app) { - return app.links && app.links.related; -}; -/** - * getAppDisplayName - Combines the translated prefix and name of the app into a single string. - * - * @param {object} app io.cozy.apps or io.cozy.konnectors document - * @param {string} lang Locale to use - * - * @returns {string} Name of the app suitable for display - */ + // == Big5/Taiwan/Hong Kong ================================================ + // There are lots of tables for Big5 and cp950. Please see the following links for history: + // http://moztw.org/docs/big5/ http://www.haible.de/bruno/charsets/conversion-tables/Big5.html + // Variations, in roughly number of defined chars: + // * Windows CP 950: Microsoft variant of Big5. Canonical: http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP950.TXT + // * Windows CP 951: Microsoft variant of Big5-HKSCS-2001. Seems to be never public. http://me.abelcheung.org/articles/research/what-is-cp951/ + // * Big5-2003 (Taiwan standard) almost superset of cp950. + // * Unicode-at-on (UAO) / Mozilla 1.8. Falling out of use on the Web. Not supported by other browsers. + // * Big5-HKSCS (-2001, -2004, -2008). Hong Kong standard. + // many unicode code points moved from PUA to Supplementary plane (U+2XXXX) over the years. + // Plus, it has 4 combining sequences. + // Seems that Mozilla refused to support it for 10 yrs. https://bugzilla.mozilla.org/show_bug.cgi?id=162431 https://bugzilla.mozilla.org/show_bug.cgi?id=310299 + // because big5-hkscs is the only encoding to include astral characters in non-algorithmic way. + // Implementations are not consistent within browsers; sometimes labeled as just big5. + // MS Internet Explorer switches from big5 to big5-hkscs when a patch applied. + // Great discussion & recap of what's going on https://bugzilla.mozilla.org/show_bug.cgi?id=912470#c31 + // In the encoder, it might make sense to support encoding old PUA mappings to Big5 bytes seq-s. + // Official spec: http://www.ogcio.gov.hk/en/business/tech_promotion/ccli/terms/doc/2003cmp_2008.txt + // http://www.ogcio.gov.hk/tc/business/tech_promotion/ccli/terms/doc/hkscs-2008-big5-iso.txt + // + // Current understanding of how to deal with Big5(-HKSCS) is in the Encoding Standard, http://encoding.spec.whatwg.org/#big5-encoder + // Unicode mapping (http://www.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/OTHER/BIG5.TXT) is said to be wrong. + 'windows950': 'cp950', + 'ms950': 'cp950', + '950': 'cp950', + 'cp950': { + type: '_dbcs', + table: function() { return __webpack_require__(824) }, + }, -exports.getUrl = getUrl; + // Big5 has many variations and is an extension of cp950. We use Encoding Standard's as a consensus. + 'big5': 'big5hkscs', + 'big5hkscs': { + type: '_dbcs', + table: function() { return __webpack_require__(824).concat(__webpack_require__(825)) }, + encodeSkipVals: [0xa2cc], + }, -var getAppDisplayName = function getAppDisplayName(app, lang) { - var basePrefix = (0, _get.default)(app, 'name_prefix'); - var baseName = (0, _get.default)(app, 'name'); - var translatedName = (0, _get.default)(app, ['locales', lang, 'name'], baseName); - var translatedPrefix = (0, _get.default)(app, ['locales', lang, 'name_prefix'], basePrefix); - return translatedPrefix && translatedPrefix.toLowerCase() !== 'cozy' ? "".concat(translatedPrefix, " ").concat(translatedName) : translatedName; + 'cnbig5': 'big5hkscs', + 'csbig5': 'big5hkscs', + 'xxbig5': 'big5hkscs', }; -exports.getAppDisplayName = getAppDisplayName; /***/ }), -/* 821 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; +/* 818 */ +/***/ (function(module) { +module.exports = JSON.parse("[[\"0\",\"\\u0000\",128],[\"a1\",\"。\",62],[\"8140\",\" ã€ã€‚,.・:;?ï¼ã‚›ã‚œÂ´ï½€Â¨ï¼¾ï¿£ï¼¿ãƒ½ãƒ¾ã‚ゞ〃ä»ã€…〆〇ー―â€ï¼ï¼¼ï½žâˆ¥ï½œâ€¦â€¥â€˜â€™â€œâ€ï¼ˆï¼‰ã€”〕[]{ï½ã€ˆ\",9,\"+ï¼Â±Ã—\"],[\"8180\",\"÷ï¼â‰ ï¼œï¼žâ‰¦â‰§âˆžâˆ´â™‚â™€Â°â€²â€³â„ƒï¿¥ï¼„ï¿ ï¿¡ï¼…ï¼ƒï¼†ï¼Šï¼ Â§â˜†â˜…â—‹â—◎◇◆□■△▲▽▼※〒→â†â†‘↓〓\"],[\"81b8\",\"∈∋⊆⊇⊂⊃∪∩\"],[\"81c8\",\"∧∨¬⇒⇔∀∃\"],[\"81da\",\"∠⊥⌒∂∇≡≒≪≫√∽âˆâˆµâˆ«âˆ¬\"],[\"81f0\",\"ʼn♯â™â™ªâ€ ‡¶\"],[\"81fc\",\"â—¯\"],[\"824f\",\"ï¼\",9],[\"8260\",\"A\",25],[\"8281\",\"ï½\",25],[\"829f\",\"ã\",82],[\"8340\",\"ã‚¡\",62],[\"8380\",\"ム\",22],[\"839f\",\"Α\",16,\"Σ\",6],[\"83bf\",\"α\",16,\"σ\",6],[\"8440\",\"Ð\",5,\"ÐЖ\",25],[\"8470\",\"а\",5,\"ёж\",7],[\"8480\",\"о\",17],[\"849f\",\"─│┌â”┘└├┬┤┴┼â”┃â”┓┛┗┣┳┫┻╋┠┯┨┷┿â”┰┥┸╂\"],[\"8740\",\"â‘ \",19,\"â… \",9],[\"875f\",\"ã‰ãŒ”㌢ã㌘㌧㌃㌶ã‘ã—ãŒãŒ¦ãŒ£ãŒ«ãŠãŒ»ãŽœãŽãŽžãŽŽãŽã„㎡\"],[\"877e\",\"ã»\"],[\"8780\",\"ã€ã€Ÿâ„–ã℡㊤\",4,\"㈱㈲㈹ã¾ã½ã¼â‰’≡∫∮∑√⊥∠∟⊿∵∩∪\"],[\"889f\",\"äºœå”–å¨ƒé˜¿å“€æ„›æŒ¨å§¶é€¢è‘µèŒœç©æ‚ªæ¡æ¸¥æ—葦芦鯵梓圧斡扱宛å§è™»é£´çµ¢ç¶¾é®Žæˆ–ç²Ÿè¢·å®‰åºµæŒ‰æš—æ¡ˆé—‡éžæä»¥ä¼Šä½ä¾å‰å›²å¤·å§”å¨å°‰æƒŸæ„慰易椅為ç•ç•°ç§»ç¶ç·¯èƒƒèŽè¡£è¬‚é•éºåŒ»äº•亥域育éƒç£¯ä¸€å£±æº¢é€¸ç¨²èŒ¨èЋ鰝å…å°å’½å“¡å› 姻引飲淫胤è”\"],[\"8940\",\"é™¢é™°éš éŸ»å‹å³å®‡çƒç¾½è¿‚雨å¯éµœçªºä¸‘碓臼渦嘘唄æ¬è”šé°»å§¥åŽ©æµ¦ç“œé–噂云é‹é›²è餌å¡å–¶å¬°å½±æ˜ æ›³æ „æ°¸æ³³æ´©ç‘›ç›ˆç©Žé ´è‹±è¡›è© é‹æ¶²ç–«ç›Šé§…悦è¬è¶Šé–²æ¦ŽåŽå††\"],[\"8980\",\"åœ’å °å¥„å®´å»¶æ€¨æŽ©æ´æ²¿æ¼”炎焔煙燕猿ç¸è‰¶è‹‘è–—é 鉛鴛塩於汚甥凹央奥往応押旺横欧殴王ç¿è¥–鴬鴎黄岡沖è»å„„å±‹æ†¶è‡†æ¡¶ç‰¡ä¹™ä¿ºå¸æ©æ¸©ç©éŸ³ä¸‹åŒ–ä»®ä½•ä¼½ä¾¡ä½³åŠ å¯å˜‰å¤å«å®¶å¯¡ç§‘æš‡æžœæž¶æŒæ²³ç«ç‚ç¦ç¦¾ç¨¼ç®‡èŠ±è‹›èŒ„è·è¯è“è¦èª²å˜©è²¨è¿¦éŽéœžèšŠä¿„å³¨æˆ‘ç‰™ç”»è‡¥èŠ½è›¾è³€é›…é¤“é§•ä»‹ä¼šè§£å›žå¡Šå£Šå»»å¿«æ€ªæ‚”æ¢æ‡æˆ’æ‹æ”¹\"],[\"8a40\",\"éæ™¦æ¢°æµ·ç°ç•Œçš†çµµèŠ¥èŸ¹é–‹éšŽè²å‡±åŠ¾å¤–å’³å®³å´–æ…¨æ¦‚æ¶¯ç¢è“‹è¡—該鎧骸浬馨蛙垣柿蛎鈎劃嚇å„å»“æ‹¡æ’¹æ ¼æ ¸æ®»ç²ç¢ºç©«è¦šè§’赫較éƒé–£éš”é©å¦å²³æ¥½é¡é¡ŽæŽ›ç¬ 樫\"],[\"8a80\",\"æ©¿æ¢¶é°æ½Ÿå‰²å–æ°æ‹¬æ´»æ¸‡æ»‘è‘›è¤è½„䏔鰹嶿¤›æ¨ºéž„æ ªå…œç«ƒè’²é‡œéŽŒå™›é´¨æ ¢èŒ…è±ç²¥åˆˆè‹…ç“¦ä¹¾ä¾ƒå† å¯’åˆŠå‹˜å‹§å·»å–šå ªå§¦å®Œå®˜å¯›å¹²å¹¹æ‚£æ„Ÿæ…£æ†¾æ›æ•¢æŸ‘æ¡“æ£ºæ¬¾æ“æ±—漢澗潅環甘監看竿管簡緩缶翰è‚艦莞観諌貫還鑑間閑関陥韓館舘丸å«å²¸å·ŒçŽ©ç™Œçœ¼å²©ç¿«è´‹é›é ‘顔願ä¼ä¼Žå±å–œå™¨åŸºå¥‡å¬‰å¯„å²å¸Œå¹¾å¿Œæ®æœºæ——既期棋棄\"],[\"8b40\",\"機帰毅気汽畿祈å£ç¨€ç´€å¾½è¦è¨˜è²´èµ·è»Œè¼é£¢é¨Žé¬¼äº€å½å„€å¦“å®œæˆ¯æŠ€æ“¬æ¬ºçŠ ç–‘ç¥‡ç¾©èŸ»èª¼è°æŽ¬èŠéž å‰åƒå–«æ¡”æ©˜è©°ç §æµé»å´å®¢è„šè™é€†ä¸˜ä¹…仇休åŠå¸å®®å¼“急救\"],[\"8b80\",\"朽求汲泣ç¸çƒç©¶çª®ç¬ˆç´šç³¾çµ¦æ—§ç‰›åŽ»å±…å·¨æ‹’æ‹ æŒ™æ¸ è™šè¨±è·é‹¸æ¼ç¦¦éšäº¨äº«äº¬ä¾›ä¾ 僑兇競共凶å”匡å¿å«å–¬å¢ƒå³¡å¼·å½Šæ€¯æææŒŸæ•™æ©‹æ³ç‹‚ç‹çŸ¯èƒ¸è„…興蕎郷é¡éŸ¿é¥—驚仰å‡å°æšæ¥å±€æ›²æ¥µçމæ¡ç²åƒ…勤å‡å·¾éŒ¦æ–¤æ¬£æ¬½ç´ç¦ç¦½ç‹ç·ŠèйèŒè¡¿è¥Ÿè¬¹è¿‘金åŸéŠ€ä¹å€¶å¥åŒºç‹—玖矩苦躯駆駈駒具愚虞喰空å¶å¯“é‡éš…串櫛釧屑屈\"],[\"8c40\",\"掘窟沓é´è½¡çªªç†Šéšˆç²‚æ —ç¹°æ¡‘é¬å‹²å›è–«è¨“群è»éƒ¡å¦è¢ˆç¥ä¿‚傾刑兄啓åœçªåž‹å¥‘å½¢å¾„æµæ…¶æ…§æ†©æŽ²æºæ•¬æ™¯æ¡‚渓畦稽系経継繋罫茎èŠè›è¨ˆè©£è¦è»½é šé¶èŠ¸è¿Žé¯¨\"],[\"8c80\",\"劇戟撃激隙æ¡å‚‘æ¬ æ±ºæ½”ç©´çµè¡€è¨£æœˆä»¶å€¹å€¦å¥å…¼åˆ¸å‰£å–§åœå …å«Œå»ºæ†²æ‡¸æ‹³æ²æ¤œæ¨©ç‰½çŠ¬çŒ®ç ”ç¡¯çµ¹çœŒè‚©è¦‹è¬™è³¢è»’é£éµé™ºé¡•験鹸元原厳幻弦減æºçŽ„ç¾çµƒèˆ·è¨€è«ºé™ä¹Žå€‹å¤å‘¼å›ºå§‘å¤å·±åº«å¼§æˆ¸æ•…枯湖ç‹ç³Šè¢´è‚¡èƒ¡è°è™Žèª‡è·¨éˆ·é›‡é¡§é¼“五互ä¼åˆå‘‰å¾å¨¯å¾Œå¾¡æ‚Ÿæ¢§æªŽç‘šç¢èªžèª¤è·é†ä¹žé¯‰äº¤ä½¼ä¾¯å€™å€–光公功効勾厚å£å‘\"],[\"8d40\",\"åŽå–‰å‘垢好å”åå®å·¥å·§å··å¹¸åºƒåºšåº·å¼˜æ’æ…ŒæŠ—æ‹˜æŽ§æ”»æ˜‚æ™ƒæ›´ææ ¡æ¢—構江洪浩港æºç”²çš‡ç¡¬ç¨¿ç³ 紅紘絞綱耕考肯肱腔è†èˆªè’è¡Œè¡¡è¬›è²¢è³¼éƒŠé…µé‰±ç ¿é‹¼é–¤é™\"],[\"8d80\",\"é …é¦™é«˜é´»å‰›åŠ«å·åˆå£•æ‹·æ¿ è±ªè½Ÿéº¹å…‹åˆ»å‘Šå›½ç©€é…·éµ é»’ç„æ¼‰è…°ç”‘忽惚骨狛込æ¤é ƒä»Šå›°å¤å¢¾å©šæ¨æ‡‡æ˜æ˜†æ ¹æ¢±æ··ç—•紺艮é‚些ä½å‰å”†åµ¯å·¦å·®æŸ»æ²™ç‘³ç ‚è©éŽ–è£Ÿååº§æŒ«å‚µå‚¬å†æœ€å“‰å¡žå¦»å®°å½©æ‰æŽ¡æ ½æ³æ¸ˆç½é‡‡çŠ€ç •ç ¦ç¥æ–Žç´°èœè£è¼‰éš›å‰¤åœ¨æç½ªè²¡å†´å‚é˜ªå ºæ¦Šè‚´å’²å´ŽåŸ¼ç¢•é·ºä½œå‰Šå’‹æ¾æ˜¨æœ”柵窄ç–索錯桜é®ç¬¹åŒ™å†Šåˆ·\"],[\"8e40\",\"å¯Ÿæ‹¶æ’®æ“¦æœæ®ºè–©é›‘çšé¯–æŒéŒ†é®«çš¿æ™’三傘å‚山惨撒散桟燦çŠç”£ç®—çº‚èš•è®ƒè³›é…¸é¤æ–¬æš«æ®‹ä»•仔伺使刺å¸å²å—£å››å£«å§‹å§‰å§¿åå±å¸‚å¸«å¿—æ€æŒ‡æ”¯åœæ–¯æ–½æ—¨æžæ¢\"],[\"8e80\",\"æ»æ°ç…祉ç§ç³¸ç´™ç´«è‚¢è„‚至視詞詩試誌諮資賜雌飼æ¯äº‹ä¼¼ä¾å…å—å¯ºæ…ˆæŒæ™‚次滋治爾璽痔ç£ç¤ºè€Œè€³è‡ªè’”辞æ±é¹¿å¼è˜é´«ç«ºè»¸å®é›«ä¸ƒå±åŸ·å¤±å«‰å®¤æ‚‰æ¹¿æ¼†ç–¾è³ªå®Ÿè”€ç¯ 岿Ÿ´èŠå±¡è•Šç¸žèˆŽå†™å°„æ¨èµ¦æ–œç…®ç¤¾ç´—者è¬è»Šé®è›‡é‚ªå€Ÿå‹ºå°ºæ“ç¼çˆµé…Œé‡ˆéŒ«è‹¥å¯‚弱惹主å–守手朱殊狩ç 種腫趣酒首儒å—呪寿授樹綬需囚åŽå‘¨\"],[\"8f40\",\"å®—å°±å·žä¿®æ„æ‹¾æ´²ç§€ç§‹çµ‚ç¹ç¿’è‡èˆŸè’衆襲è®è¹´è¼¯é€±é…‹é…¬é›†é†œä»€ä½å……åå¾“æˆŽæŸ”æ±æ¸‹ç£ç¸¦é‡éŠƒå”夙宿淑ç¥ç¸®ç²›å¡¾ç†Ÿå‡ºè¡“述俊峻春瞬竣舜駿准循旬楯殉淳\"],[\"8f80\",\"準潤盾純巡éµé†‡é †å‡¦åˆæ‰€æš‘曙渚庶緒署書薯藷諸助å™å¥³åºå¾æ•鋤除傷償å‹åŒ å‡å¬å“¨å•†å”±å˜—奨妾娼宵将å°å°‘å°šåº„åºŠå» å½°æ‰¿æŠ„æ‹›æŽŒæ·æ˜‡æ˜Œæ˜æ™¶æ¾æ¢¢æ¨Ÿæ¨µæ²¼æ¶ˆæ¸‰æ¹˜ç„¼ç„¦ç…§ç—‡çœç¡ç¤ç¥¥ç§°ç« 笑粧紹肖è–蒋蕉è¡è£³è¨Ÿè¨¼è©”詳象賞醤鉦é¾é˜éšœéž˜ä¸Šä¸ˆä¸žä¹—å†—å‰°åŸŽå ´å£Œå¬¢å¸¸æƒ…æ“¾æ¡æ–浄状畳穣蒸è²é†¸éŒ 嘱埴飾\"],[\"9040\",\"æ‹æ¤æ®–ç‡ç¹”è·è‰²è§¦é£Ÿè•è¾±å°»ä¼¸ä¿¡ä¾µå”‡å¨ å¯å¯©å¿ƒæ…ŽæŒ¯æ–°æ™‹æ£®æ¦›æµ¸æ·±ç”³ç–¹çœŸç¥žç§¦ç´³è‡£èŠ¯è–ªè¦ªè¨ºèº«è¾›é€²é‡éœ‡äººä»åˆƒå¡µå£¬å°‹ç”šå°½è…Žè¨Šè¿…陣é笥è«é ˆé…¢å›³åލ\"],[\"9080\",\"逗å¹åž‚帥推水炊ç¡ç²‹ç¿ è¡°é‚é…”éŒéŒ˜éšç‘žé«„å´‡åµ©æ•°æž¢è¶¨é››æ®æ‰æ¤™è…é —é›€è£¾æ¾„æ‘ºå¯¸ä¸–ç€¬ç•æ˜¯å‡„åˆ¶å‹¢å§“å¾æ€§æˆæ”¿æ•´æ˜Ÿæ™´æ£²æ –æ£æ¸…牲生盛精è–å£°è£½è¥¿èª èª“è«‹é€é†’é’陿–‰ç¨Žè„†éš»å¸æƒœæˆšæ–¥æ˜”æžçŸ³ç©ç±ç¸¾è„Šè²¬èµ¤è·¡è¹Ÿç¢©åˆ‡æ‹™æŽ¥æ‘‚折è¨çªƒç¯€èª¬é›ªçµ¶èˆŒè‰ä»™å…ˆåƒå 宣専尖巿ˆ¦æ‰‡æ’°æ “æ ´æ³‰æµ…æ´—æŸ“æ½œç…Žç…½æ—‹ç©¿ç®ç·š\"],[\"9140\",\"繊羨腺舛船薦詮賎践é¸é·éŠéŠ‘é–ƒé®®å‰å–„漸然全禅繕膳糎噌塑岨措曾曽楚狙ç–ç–Žç¤Žç¥–ç§Ÿç²—ç´ çµ„è˜‡è¨´é˜»é¡é¼ 僧創åŒå¢å€‰å–ªå£®å¥çˆ½å®‹å±¤åŒæƒ£æƒ³æœæŽƒæŒ¿æŽ»\"],[\"9180\",\"æ“æ—©æ›¹å·£æ§æ§½æ¼•燥争痩相窓糟ç·ç¶œè¡è‰è˜è‘¬è’¼è—»è£…èµ°é€é鎗霜騒åƒå¢—æ†Žè‡“è”µè´ˆé€ ä¿ƒå´å‰‡å³æ¯æ‰æŸæ¸¬è¶³é€Ÿä¿—属賊æ—ç¶šå’袖其æƒå˜å«å°Šææ‘éœä»–å¤šå¤ªæ±°è©‘å”¾å •å¦¥æƒ°æ‰“æŸèˆµæ¥•é™€é§„é¨¨ä½“å †å¯¾è€å²±å¸¯å¾…æ€ æ…‹æˆ´æ›¿æ³°æ»žèƒŽè…¿è‹”è¢‹è²¸é€€é€®éšŠé»›é¯›ä»£å°å¤§ç¬¬é†é¡Œé·¹æ»ç€§å“啄宅托択拓沢濯ç¢è¨—鏿¿è«¾èŒ¸å‡§è›¸åª\"],[\"9240\",\"å©ä½†é”辰奪脱巽竪辿棚谷狸鱈樽誰丹å˜å˜†å¦æ‹…æŽ¢æ—¦æŽæ·¡æ¹›ç‚çŸç«¯ç®ªç¶»è€½èƒ†è›‹èª•é›å›£å£‡å¼¾æ–æš–æª€æ®µç”·è«‡å€¤çŸ¥åœ°å¼›æ¥æ™ºæ± 痴稚置致蜘é…馳築畜竹ç‘è“„\"],[\"9280\",\"é€ç§©çª’茶嫡ç€ä¸ä»²å®™å¿ æŠ½æ˜¼æŸ±æ³¨è™«è¡·è¨»é…Žé‹³é§æ¨—瀦猪苧著貯ä¸å…†å‡‹å–‹å¯µå¸–帳åºå¼”å¼µå½«å¾´æ‡²æŒ‘æš¢æœæ½®ç‰’町眺è´è„¹è…¸è¶èª¿è«œè¶…è·³éŠšé•·é ‚é³¥å‹…æ—直朕沈çè³ƒéŽ®é™³æ´¥å¢œæ¤Žæ§Œè¿½éŽšç—›é€šå¡šæ ‚æŽ´æ§»ä½ƒæ¼¬æŸ˜è¾»è”¦ç¶´é”æ¤¿æ½°åªå£·å¬¬ç´¬çˆªåŠé‡£é¶´äºä½Žåœåµå‰ƒè²žå‘ˆå ¤å®šå¸åº•åºå»·å¼Ÿæ‚ŒæŠµæŒºææ¢¯æ±€ç¢‡ç¦Žç¨‹ç· 艇訂諦蹄逓\"],[\"9340\",\"邸é„釘鼎泥摘擢敵滴的笛é©é‘溺哲徹撤è½è¿é‰„典填天展店添çºç”œè²¼è»¢é¡›ç‚¹ä¼æ®¿æ¾±ç”°é›»å…Žåå µå¡—å¦¬å± å¾’æ–—æœæ¸¡ç™»èŸè³é€”都éç ¥ç ºåŠªåº¦åœŸå¥´æ€’å€’å…šå†¬\"],[\"9380\",\"å‡åˆ€å”å¡”å¡˜å¥—å®•å³¶å¶‹æ‚¼æŠ•ææ±æ¡ƒæ¢¼æ£Ÿç›—æ·˜æ¹¯æ¶›ç¯ç‡ˆå½“痘祷ç‰ç”ç’糖統到董蕩藤討謄豆è¸é€ƒé€é™é™¶é 騰闘åƒå‹•åŒå ‚導憧撞洞瞳童胴è„é“éŠ…å³ é´‡åŒ¿å¾—å¾³æ¶œç‰¹ç£ç¦¿ç¯¤æ¯’ç‹¬èªæ ƒæ©¡å‡¸çªæ¤´å±Šé³¶è‹«å¯…酉瀞噸屯惇敦沌豚éé “å‘‘æ›‡éˆå¥ˆé‚£å†…ä¹å‡ªè–™è¬Žç˜æºé‹æ¥¢é¦´ç¸„ç•·å—æ¥ 軟難æ±äºŒå°¼å¼è¿©åŒ‚賑肉虹廿日乳入\"],[\"9440\",\"如尿韮任妊å¿èªæ¿¡ç¦°ç¥¢å¯§è‘±çŒ«ç†±å¹´å¿µæ»æ’šç‡ƒç²˜ä¹ƒå»¼ä¹‹åŸœå𢿂©æ¿ƒç´èƒ½è„³è†¿è¾²è¦—蚤巴把æ’è¦‡æ·æ³¢æ´¾ç¶ç ´å©†ç½µèŠé¦¬ä¿³å»ƒæ‹æŽ’æ•—æ¯ç›ƒç‰ŒèƒŒè‚ºè¼©é…å€åŸ¹åª’梅\"],[\"9480\",\"æ¥³ç…¤ç‹½è²·å£²è³ é™ªé€™è¿ç§¤çŸ§è©ä¼¯å‰¥å𿋿Ÿæ³Šç™½ç®”ç²•èˆ¶è–„è¿«æ›æ¼ 爆縛莫é§éº¦å‡½ç®±ç¡²ç®¸è‚‡çˆæ«¨å¹¡è‚Œç•‘ç• å…«é‰¢æºŒç™ºé†—é«ªä¼ç½°æŠœç閥鳩噺塙蛤隼伴判åŠåå›å¸†æ¬æ–‘æ¿æ°¾æ±Žç‰ˆçНçç•”ç¹èˆ¬è—©è²©ç¯„é‡†ç…©é ’é£¯æŒ½æ™©ç•ªç›¤ç£è•ƒè›®åŒªå‘å¦å¦ƒåº‡å½¼æ‚²æ‰‰æ‰¹æŠ«æ–比泌疲皮碑秘緋罷肥被誹費é¿éžé£›æ¨‹ç°¸å‚™å°¾å¾®æž‡æ¯˜çµçœ‰ç¾Ž\"],[\"9540\",\"鼻柊稗匹疋é«å½¦è†è±è‚˜å¼¼å¿…ç•¢ç†é€¼æ¡§å§«åª›ç´ç™¾è¬¬ä¿µå½ªæ¨™æ°·æ¼‚瓢票表評豹廟æç—…秒苗錨鋲蒜è›é°å“å½¬æ–Œæµœç€•è²§è³“é »æ•ç“¶ä¸ä»˜åŸ 夫婦富冨布府怖扶敷\"],[\"9580\",\"斧普浮父符è…膚芙èœè² 賦赴阜附侮撫æ¦èˆžè‘¡è•ªéƒ¨å°æ¥“風葺蕗ä¼å‰¯å¾©å¹…æœç¦è…¹è¤‡è¦†æ·µå¼—払沸ä»ç‰©é®’分å»å™´å¢³æ†¤æ‰®ç„šå¥®ç²‰ç³žç´›é›°æ–‡èžä¸™ä½µå…µå¡€å¹£å¹³å¼ŠæŸ„並蔽閉陛米é 僻å£ç™–碧別瞥蔑箆å変片篇編辺返é便勉娩å¼éžä¿èˆ—é‹ªåœƒæ•æ©ç”«è£œè¼”穂募墓慕戊暮æ¯ç°¿è©å€£ä¿¸åŒ…å‘†å ±å¥‰å®å³°å³¯å´©åº–æŠ±æ§æ”¾æ–¹æœ‹\"],[\"9640\",\"æ³•æ³¡çƒ¹ç ²ç¸«èƒžèŠ³èŒè“¬èœ‚褒訪豊邦鋒飽鳳鵬ä¹äº¡å‚剖åŠå¦¨å¸½å¿˜å¿™æˆ¿æš´æœ›æŸæ£’冒紡肪膨謀貌貿鉾防å é ¬åŒ—åƒ•åœå¢¨æ’²æœ´ç‰§ç¦ç©†é‡¦å‹ƒæ²¡æ®†å €å¹Œå¥”本翻凡盆\"],[\"9680\",\"摩磨é”麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒æ¡äº¦ä¿£åˆæŠ¹æœ«æ²«è¿„ä¾ç¹éº¿ä¸‡æ…¢æº€æ¼«è”“味未é…å·³ç®•å²¬å¯†èœœæ¹Šè“‘ç¨”è„ˆå¦™ç²æ°‘çœ å‹™å¤¢ç„¡ç‰ŸçŸ›éœ§éµ¡æ¤‹å©¿å¨˜å†¥åå‘½æ˜Žç›Ÿè¿·éŠ˜é³´å§ªç‰æ»…å…æ£‰ç¶¿ç·¬é¢éººæ‘¸æ¨¡èŒ‚å¦„åŸæ¯›çŒ›ç›²ç¶²è€—蒙儲木黙目æ¢å‹¿é¤…å°¤æˆ»ç±¾è²°å•æ‚¶ç´‹é–€åŒä¹Ÿå†¶å¤œçˆºè€¶é‡Žå¼¥çŸ¢åŽ„å½¹ç´„è–¬è¨³èºé–柳薮鑓愉愈油癒\"],[\"9740\",\"è«è¼¸å”¯ä½‘優勇å‹å®¥å¹½æ‚ æ†‚æ–æœ‰æŸšæ¹§æ¶ŒçŒ¶çŒ·ç”±ç¥è£•誘éŠé‚‘郵雄èžå¤•予余与誉輿é å‚å¹¼å¦–å®¹åº¸æšæºæ“曜楊様洋溶熔用窯羊耀葉蓉è¦è¬¡è¸Šé¥é™½é¤Šæ…¾æŠ‘欲\"],[\"9780\",\"沃浴翌翼淀羅螺裸æ¥èŽ±é ¼é›·æ´›çµ¡è½é…ªä¹±åµåµæ¬„æ¿«è—è˜è¦§åˆ©åå±¥æŽæ¢¨ç†ç’ƒç—¢è£è£¡é‡Œé›¢é™¸å¾‹çŽ‡ç«‹è‘ŽæŽ ç•¥åŠ‰æµæºœç‰ç•™ç¡«ç²’隆竜é¾ä¾¶æ…®æ—…è™œäº†äº®åƒšä¸¡å‡Œå¯®æ–™æ¢æ¶¼çŒŸç™‚çžç¨œç³§è‰¯è«’é¼é‡é™µé ˜åŠ›ç·‘å€«åŽ˜æž—æ·‹ç‡ç³è‡¨è¼ªéš£é±—éºŸç‘ å¡æ¶™ç´¯é¡žä»¤ä¼¶ä¾‹å†·åŠ±å¶ºæ€œçŽ²ç¤¼è‹“éˆ´éš·é›¶éœŠéº—é½¢æš¦æ´åˆ—åŠ£çƒˆè£‚å»‰æ‹æ†æ¼£ç…‰ç°¾ç·´è¯\"],[\"9840\",\"è“®é€£éŒ¬å‘‚é¯æ«“炉賂路露労å©å»Šå¼„朗楼榔浪æ¼ç‰¢ç‹¼ç¯è€è¾è‹éƒŽå…麓禄肋録論å€å’Œè©±æªè³„è„‡æƒ‘æž é·²äº™äº˜é°è©«è—蕨椀湾碗腕\"],[\"989f\",\"弌ä¸ä¸•个丱丶丼丿乂乖乘亂亅豫亊舒å¼äºŽäºžäºŸäº 亢亰亳亶从ä»ä»„仆仂仗仞ä»ä»Ÿä»·ä¼‰ä½šä¼°ä½›ä½ä½—佇佶侈ä¾ä¾˜ä½»ä½©ä½°ä¾‘佯來侖儘俔俟俎俘俛俑俚ä¿ä¿¤ä¿¥å€šå€¨å€”倪倥倅伜俶倡倩倬俾俯們倆åƒå‡æœƒå•ååˆåšå–å¬å¸å‚€å‚šå‚…傴傲\"],[\"9940\",\"僉僊傳僂僖僞僥åƒåƒ£åƒ®åƒ¹åƒµå„‰å„儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉å†å†‘å†“å†•å†–å†¤å†¦å†¢å†©å†ªå†«å†³å†±å†²å†°å†µå†½å‡…å‡‰å‡›å‡ è™•å‡©å‡\"],[\"9980\",\"凰凵凾刄刋刔刎刧刪刮刳刹å‰å‰„剋剌剞剔剪剴剩剳剿剽åŠåŠ”åŠ’å‰±åŠˆåŠ‘è¾¨è¾§åŠ¬åŠåŠ¼åŠµå‹å‹å‹—勞勣勦é£å‹ 勳勵勸勹匆匈甸åŒåŒåŒåŒ•匚匣匯匱匳匸å€å†å…丗å‰å凖åžå©å®å¤˜å»å·åŽ‚åŽ–åŽ åŽ¦åŽ¥åŽ®åŽ°åŽ¶åƒç°’é›™åŸæ›¼ç‡®å®å¨ååºåå½å‘€å¬åå¼å®å¶å©å呎å’呵咎呟呱呷呰咒呻咀呶咄å’咆哇咢咸咥咬哄哈咨\"],[\"9a40\",\"咫哂咤咾咼哘哥哦å”唔哽哮å“哺哢唹啀啣啌售啜啅啖啗唸唳å•喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎å™ç‡Ÿå˜´å˜¶å˜²å˜¸\"],[\"9a80\",\"å™«å™¤å˜¯å™¬å™ªåš†åš€åšŠåš åš”åšåš¥åš®åš¶åš´å›‚åš¼å›å›ƒå›€å›ˆå›Žå›‘囓囗囮囹圀囿圄圉圈國åœåœ“團圖嗇圜圦圷圸åŽåœ»å€åå©åŸ€åžˆå¡å¿åž‰åž“åž åž³åž¤åžªåž°åŸƒåŸ†åŸ”åŸ’åŸ“å ŠåŸ–åŸ£å ‹å ™å å¡²å ¡å¡¢å¡‹å¡°æ¯€å¡’å ½å¡¹å¢…å¢¹å¢Ÿå¢«å¢ºå£žå¢»å¢¸å¢®å£…å£“å£‘å£—å£™å£˜å£¥å£œå£¤å£Ÿå£¯å£ºå£¹å£»å£¼å£½å¤‚å¤Šå¤å¤›æ¢¦å¤¥å¤¬å¤å¤²å¤¸å¤¾ç«’奕å¥å¥Žå¥šå¥˜å¥¢å¥ 奧奬奩\"],[\"9b40\",\"奸å¦å¦ä½žä¾«å¦£å¦²å§†å§¨å§œå¦å§™å§šå¨¥å¨Ÿå¨‘娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲å«å¬ªå¬¶å¬¾åƒå…å€å‘å•åšå›å¥å©å°å³åµå¸æ–ˆåºå®€\"],[\"9b80\",\"它宦宸寃寇寉寔å¯å¯¤å¯¦å¯¢å¯žå¯¥å¯«å¯°å¯¶å¯³å°…將專å°å°“å° å°¢å°¨å°¸å°¹å±å±†å±Žå±“å±å±å±å±¬å±®ä¹¢å±¶å±¹å²Œå²‘岔妛岫岻岶岼岷峅岾峇峙峩峽峺å³å¶Œå³ªå´‹å´•崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢å¶å¶¬å¶®å¶½å¶å¶·å¶¼å·‰å·å·“å·’å·–å·›å·«å·²å·µå¸‹å¸šå¸™å¸‘å¸›å¸¶å¸·å¹„å¹ƒå¹€å¹Žå¹—å¹”å¹Ÿå¹¢å¹¤å¹‡å¹µå¹¶å¹ºéº¼å¹¿åº å»å»‚廈å»å»\"],[\"9c40\",\"廖廣å»å»šå»›å»¢å»¡å»¨å»©å»¬å»±å»³å»°å»´å»¸å»¾å¼ƒå¼‰å½å½œå¼‹å¼‘弖弩å¼å¼¸å½å½ˆå½Œå½Žå¼¯å½‘彖彗彙彡å½å½³å½·å¾ƒå¾‚å½¿å¾Šå¾ˆå¾‘å¾‡å¾žå¾™å¾˜å¾ å¾¨å¾å¾¼å¿–å¿»å¿¤å¿¸å¿±å¿æ‚³å¿¿æ€¡æ \"],[\"9c80\",\"æ€™æ€æ€©æ€Žæ€±æ€›æ€•æ€«æ€¦æ€æ€ºæšææªæ·æŸæŠæ†ææ£æƒæ¤æ‚æ¬æ«æ™æ‚æ‚æƒ§æ‚ƒæ‚šæ‚„æ‚›æ‚–æ‚—æ‚’æ‚§æ‚‹æƒ¡æ‚¸æƒ æƒ“æ‚´å¿°æ‚½æƒ†æ‚µæƒ˜æ…æ„•æ„†æƒ¶æƒ·æ„€æƒ´æƒºæ„ƒæ„¡æƒ»æƒ±æ„æ„Žæ…‡æ„¾æ„¨æ„§æ…Šæ„¿æ„¼æ„¬æ„´æ„½æ…‚æ…„æ…³æ…·æ…˜æ…™æ…šæ…«æ…´æ…¯æ…¥æ…±æ…Ÿæ…æ…“æ…µæ†™æ†–æ†‡æ†¬æ†”æ†šæ†Šæ†‘æ†«æ†®æ‡Œæ‡Šæ‡‰æ‡·æ‡ˆæ‡ƒæ‡†æ†ºæ‡‹ç½¹æ‡æ‡¦æ‡£æ‡¶æ‡ºæ‡´æ‡¿æ‡½æ‡¼æ‡¾æˆ€æˆˆæˆ‰æˆæˆŒæˆ”戛\"],[\"9d40\",\"æˆžæˆ¡æˆªæˆ®æˆ°æˆ²æˆ³æ‰æ‰Žæ‰žæ‰£æ‰›æ‰ æ‰¨æ‰¼æŠ‚æŠ‰æ‰¾æŠ’æŠ“æŠ–æ‹”æŠƒæŠ”æ‹—æ‹‘æŠ»æ‹æ‹¿æ‹†æ“”æ‹ˆæ‹œæ‹Œæ‹Šæ‹‚æ‹‡æŠ›æ‹‰æŒŒæ‹®æ‹±æŒ§æŒ‚æŒˆæ‹¯æ‹µææŒ¾ææœææŽ–æŽŽæŽ€æŽ«æ¶æŽ£æŽæŽ‰æŽŸæŽµæ«\"],[\"9d80\",\"æ©æŽ¾æ©æ€æ†æ£æ‰æ’æ¶æ„æ–æ´æ†æ“æ¦æ¶æ”æ—æ¨ææ‘§æ‘¯æ‘¶æ‘Žæ”ªæ’•æ’“æ’¥æ’©æ’ˆæ’¼æ“šæ“’æ“…æ“‡æ’»æ“˜æ“‚æ“±æ“§èˆ‰æ“ æ“¡æŠ¬æ“£æ“¯æ”¬æ“¶æ“´æ“²æ“ºæ”€æ“½æ”˜æ”œæ”…æ”¤æ”£æ”«æ”´æ”µæ”·æ”¶æ”¸ç•‹æ•ˆæ•–æ••æ•æ•˜æ•žæ•æ•²æ•¸æ–‚æ–ƒè®Šæ–›æ–Ÿæ–«æ–·æ—ƒæ—†æ—æ—„æ—Œæ—’æ—›æ—™æ— æ—¡æ—±æ²æ˜Šæ˜ƒæ—»æ³æ˜µæ˜¶æ˜´æ˜œæ™æ™„æ™‰æ™æ™žæ™æ™¤æ™§æ™¨æ™Ÿæ™¢æ™°æšƒæšˆæšŽæš‰æš„æš˜æšæ›æš¹æ›‰æš¾æš¼\"],[\"9e40\",\"æ›„æš¸æ›–æ›šæ› æ˜¿æ›¦æ›©æ›°æ›µæ›·æœæœ–æœžæœ¦æœ§éœ¸æœ®æœ¿æœ¶ææœ¸æœ·æ†æžæ æ™æ£æ¤æž‰æ°æž©æ¼æªæžŒæž‹æž¦æž¡æž…æž·æŸ¯æž´æŸ¬æž³æŸ©æž¸æŸ¤æŸžæŸæŸ¢æŸ®æž¹æŸŽæŸ†æŸ§æªœæ žæ¡†æ ©æ¡€æ¡æ ²æ¡Ž\"],[\"9e80\",\"æ¢³æ «æ¡™æ¡£æ¡·æ¡¿æ¢Ÿæ¢æ¢æ¢”æ¢æ¢›æ¢ƒæª®æ¢¹æ¡´æ¢µæ¢ æ¢ºæ¤æ¢æ¡¾æ¤æ£Šæ¤ˆæ£˜æ¤¢æ¤¦æ£¡æ¤Œæ£æ£”æ£§æ£•æ¤¶æ¤’æ¤„æ£—æ££æ¤¥æ£¹æ£ æ£¯æ¤¨æ¤ªæ¤šæ¤£æ¤¡æ£†æ¥¹æ¥·æ¥œæ¥¸æ¥«æ¥”æ¥¾æ¥®æ¤¹æ¥´æ¤½æ¥™æ¤°æ¥¡æ¥žæ¥æ¦æ¥ªæ¦²æ¦®æ§æ¦¿æ§æ§“æ¦¾æ§Žå¯¨æ§Šæ§æ¦»æ§ƒæ¦§æ¨®æ¦‘æ¦ æ¦œæ¦•æ¦´æ§žæ§¨æ¨‚æ¨›æ§¿æ¬Šæ§¹æ§²æ§§æ¨…æ¦±æ¨žæ§æ¨”æ§«æ¨Šæ¨’æ«æ¨£æ¨“æ©„æ¨Œæ©²æ¨¶æ©¸æ©‡æ©¢æ©™æ©¦æ©ˆæ¨¸æ¨¢æªæªæª 檄檢檣\"],[\"9f40\",\"æª—è˜—æª»æ«ƒæ«‚æª¸æª³æª¬æ«žæ«‘æ«Ÿæªªæ«šæ«ªæ«»æ¬…è˜–æ«ºæ¬’æ¬–é¬±æ¬Ÿæ¬¸æ¬·ç›œæ¬¹é£®æ‡æƒæ‰ææ™æ”æ›æŸæ¡æ¸æ¹æ¿æ®€æ®„æ®ƒæ®æ®˜æ®•殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯\"],[\"9f80\",\"éº¾æ°ˆæ°“æ°”æ°›æ°¤æ°£æ±žæ±•æ±¢æ±ªæ²‚æ²æ²šæ²æ²›æ±¾æ±¨æ±³æ²’æ²æ³„æ³±æ³“æ²½æ³—æ³…æ³æ²®æ²±æ²¾æ²ºæ³›æ³¯æ³™æ³ªæ´Ÿè¡æ´¶æ´«æ´½æ´¸æ´™æ´µæ´³æ´’æ´Œæµ£æ¶“æµ¤æµšæµ¹æµ™æ¶Žæ¶•æ¿¤æ¶…æ·¹æ¸•æ¸Šæ¶µæ·‡æ·¦æ¶¸æ·†æ·¬æ·žæ·Œæ·¨æ·’æ·…æ·ºæ·™æ·¤æ·•æ·ªæ·®æ¸æ¹®æ¸®æ¸™æ¹²æ¹Ÿæ¸¾æ¸£æ¹«æ¸«æ¹¶æ¹æ¸Ÿæ¹ƒæ¸ºæ¹Žæ¸¤æ»¿æ¸æ¸¸æº‚æºªæº˜æ»‰æº·æ»“æº½æº¯æ»„æº²æ»”æ»•æºæº¥æ»‚æºŸæ½æ¼‘çŒæ»¬æ»¸æ»¾æ¼¿æ»²æ¼±æ»¯æ¼²æ»Œ\"],[\"e040\",\"æ¼¾æ¼“æ»·æ¾†æ½ºæ½¸æ¾æ¾€æ½¯æ½›æ¿³æ½æ¾‚潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑ç€ç€æ¿¾ç€›ç€šæ½´ç€ç€˜ç€Ÿç€°ç€¾ç€²ç‘ç£ç‚™ç‚’炯烱炬炸炳炮烟烋çƒ\"],[\"e080\",\"烙焉烽焜焙煥煕熈煦煢煌煖煬ç†ç‡»ç†„ç†•ç†¨ç†¬ç‡—ç†¹ç†¾ç‡’ç‡‰ç‡”ç‡Žç‡ ç‡¬ç‡§ç‡µç‡¼ç‡¹ç‡¿çˆçˆçˆ›çˆ¨çˆçˆ¬çˆ°çˆ²çˆ»çˆ¼çˆ¿ç‰€ç‰†ç‰‹ç‰˜ç‰´ç‰¾çŠ‚çŠçŠ‡çŠ’çŠ–çŠ¢çŠ§çŠ¹çŠ²ç‹ƒç‹†ç‹„ç‹Žç‹’ç‹¢ç‹ ç‹¡ç‹¹ç‹·å€çŒ—猊猜猖çŒçŒ´çŒ¯çŒ©çŒ¥çŒ¾çŽç默ç—çªç¨ç°ç¸çµç»çºçˆç޳çŽçŽ»ç€ç¥ç®çžç’¢ç…瑯ç¥ç¸ç²çºç‘•ç¿ç‘Ÿç‘™ç‘瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊ç“ç“”ç±\"],[\"e140\",\"ç“ ç“£ç“§ç“©ç“®ç“²ç“°ç“±ç“¸ç“·ç”„ç”ƒç”…ç”Œç”Žç”甕甓甞甦甬甼畄ç•畊畉畛畆畚畩畤畧畫ç•畸當疆疇畴疊疉疂疔疚ç–疥疣痂疳痃疵疽疸疼疱ç—痊痒痙痣痞痾痿\"],[\"e180\",\"ç—¼ç˜ç—°ç—ºç—²ç—³ç˜‹ç˜ç˜‰ç˜Ÿç˜§ç˜ 瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂ç›ç›–盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸ç‡çšç¨ç«ç›ç¥ç¿ç¾ç¹çžŽçž‹çž‘çž çžžçž°çž¶çž¹çž¿çž¼çž½çž»çŸ‡çŸçŸ—çŸšçŸœçŸ£çŸ®çŸ¼ç Œç ’ç¤¦ç 礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬\"],[\"e240\",\"ç£§ç£šç£½ç£´ç¤‡ç¤’ç¤‘ç¤™ç¤¬ç¤«ç¥€ç¥ ç¥—ç¥Ÿç¥šç¥•ç¥“ç¥ºç¥¿ç¦Šç¦ç¦§é½‹ç¦ªç¦®ç¦³ç¦¹ç¦ºç§‰ç§•秧秬秡秣稈ç¨ç¨˜ç¨™ç¨ 稟禀稱稻稾稷穃穗穉穡穢穩é¾ç©°ç©¹ç©½çªˆçª—窕窘窖窩竈窰\"],[\"e280\",\"窶竅竄窿邃竇竊ç«ç«ç«•竓站竚ç«ç«¡ç«¢ç«¦ç«ç«°ç¬‚ç¬ç¬Šç¬†ç¬³ç¬˜ç¬™ç¬žç¬µç¬¨ç¬¶ççºç¬„ç笋çŒç…çµç¥ç´ç§ç°ç±ç¬ç®ç®ç®˜ç®Ÿç®ç®œç®šç®‹ç®’ç®ç箙篋ç¯ç¯Œç¯ç®´ç¯†ç¯ç¯©ç°‘ç°”ç¯¦ç¯¥ç± ç°€ç°‡ç°“ç¯³ç¯·ç°—ç°ç¯¶ç°£ç°§ç°ªç°Ÿç°·ç°«ç°½ç±Œç±ƒç±”ç±ç±€ç±ç±˜ç±Ÿç±¤ç±–籥籬籵粃ç²ç²¤ç²ç²¢ç²«ç²¡ç²¨ç²³ç²²ç²±ç²®ç²¹ç²½ç³€ç³…糂糘糒糜糢鬻糯糲糴糶糺紆\"],[\"e340\",\"紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮çµçµ£ç¶“綉絛ç¶çµ½ç¶›ç¶ºç¶®ç¶£ç¶µç·‡ç¶½ç¶«ç¸½ç¶¢ç¶¯ç·œç¶¸ç¶Ÿç¶°ç·˜ç·ç·¤ç·žç·»ç·²ç·¡ç¸…縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷\"],[\"e380\",\"縲縺繧ç¹ç¹–繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒çºçº“纔纖纎纛纜缸缺罅罌ç½ç½Žç½ç½‘ç½•ç½”ç½˜ç½Ÿç½ ç½¨ç½©ç½§ç½¸ç¾‚ç¾†ç¾ƒç¾ˆç¾‡ç¾Œç¾”ç¾žç¾ç¾šç¾£ç¾¯ç¾²ç¾¹ç¾®ç¾¶ç¾¸è±ç¿…翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻èŠè†è’è˜èšèŸè¢è¨è³è²è°è¶è¹è½è¿è‚„肆肅肛肓肚è‚å†è‚¬èƒ›èƒ¥èƒ™èƒèƒ„胚胖脉胯胱脛脩脣脯腋\"],[\"e440\",\"éš‹è…†è„¾è…“è…‘èƒ¼è…±è…®è…¥è…¦è…´è†ƒè†ˆè†Šè†€è†‚è† è†•è†¤è†£è…Ÿè†“è†©è†°è†µè†¾è†¸è†½è‡€è‡‚è†ºè‡‰è‡è‡‘è‡™è‡˜è‡ˆè‡šè‡Ÿè‡ è‡§è‡ºè‡»è‡¾èˆèˆ‚舅與舊èˆèˆèˆ–舩舫舸舳艀艙艘è‰è‰šè‰Ÿè‰¤\"],[\"e480\",\"艢艨艪艫舮艱艷艸艾èŠèŠ’èŠ«èŠŸèŠ»èŠ¬è‹¡è‹£è‹Ÿè‹’è‹´è‹³è‹ºèŽ“èŒƒè‹»è‹¹è‹žèŒ†è‹œèŒ‰è‹™èŒµèŒ´èŒ–èŒ²èŒ±è€èŒ¹èè…茯茫茗茘莅莚莪莟莢莖茣莎莇莊è¼è޵è³èµèŽ èŽ‰èŽ¨è´è“è«èŽè½èƒè˜è‹èè·è‡è è²èè¢è 莽è¸è”†è»è‘èªè¼è•šè’„è‘·è‘«è’葮蒂葩葆è¬è‘¯è‘¹èµè“Šè‘¢è’¹è’¿è’Ÿè“™è“蒻蓚è“è“蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈\"],[\"e540\",\"è•蘂蕋蕕薀薤薈薑薊薨è•薔薛藪薇薜蕷蕾è–藉薺è—è–¹è—è—•è—藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿è™ä¹•è™”è™Ÿè™§è™±èš“èš£èš©èšªèš‹èšŒèš¶èš¯è›„è›†èš°è›‰è £èš«è›”è›žè›©è›¬\"],[\"e580\",\"蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉èœè›¹èœŠèœ´èœ¿èœ·èœ»èœ¥èœ©èœšè èŸè¸èŒèŽè´è—è¨è®è™è“è£èªè …螢螟螂螯蟋螽蟀èŸé›–èž«èŸ„èž³èŸ‡èŸ†èž»èŸ¯èŸ²èŸ è è èŸ¾èŸ¶èŸ·è ŽèŸ’è ‘è –è •è ¢è ¡è ±è ¶è ¹è §è »è¡„è¡‚è¡’è¡™è¡žè¡¢è¡«è¢è¡¾è¢žè¡µè¡½è¢µè¡²è¢‚袗袒袮袙袢è¢è¢¤è¢°è¢¿è¢±è£ƒè£„裔裘裙è£è£¹è¤‚裼裴裨裲褄褌褊褓襃褞褥褪褫è¥è¥„褻褶褸襌è¤è¥ 襞\"],[\"e640\",\"襦襤è¥è¥ªè¥¯è¥´è¥·è¥¾è¦ƒè¦ˆè¦Šè¦“覘覡覩覦覬覯覲覺覽覿觀觚觜è§è§§è§´è§¸è¨ƒè¨–è¨è¨Œè¨›è¨è¨¥è¨¶è©è©›è©’詆詈詼è©è©¬è©¢èª…誂誄誨誡誑誥誦誚誣諄è«è«‚諚諫諳諧\"],[\"e680\",\"è«¤è«±è¬”è« è«¢è«·è«žè«›è¬Œè¬‡è¬šè«¡è¬–è¬è¬—è¬ è¬³éž«è¬¦è¬«è¬¾è¬¨èèŒèèŽè‰è–è›èšè«èŸè¬è¯è´è½è®€è®Œè®Žè®’讓讖讙讚谺è±è°¿è±ˆè±Œè±Žè±è±•豢豬豸豺貂貉貅貊è²è²Žè²”豼貘æˆè²è²ªè²½è²²è²³è²®è²¶è³ˆè³è³¤è³£è³šè³½è³ºè³»è´„è´…è´Šè´‡è´è´è´é½Žè´“è³è´”è´–èµ§èµèµ±èµ³è¶è¶™è·‚趾趺è·è·šè·–跌跛跋跪跫跟跣跼踈踉跿è¸è¸žè¸è¸Ÿè¹‚踵踰踴蹊\"],[\"e740\",\"蹇蹉蹌è¹è¹ˆè¹™è¹¤è¹ 踪蹣蹕蹶蹲蹼èºèº‡èº…躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜\"],[\"e780\",\"轢轣轤辜辟辣è¾è¾¯è¾·è¿šè¿¥è¿¢è¿ªè¿¯é‚‡è¿´é€…迹迺逑逕逡é€é€žé€–逋逧逶逵逹迸ééé‘é’逎é‰é€¾é–é˜éžé¨é¯é¶éš¨é²é‚‚é½é‚邀邊邉é‚邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀é‡é‡‰é‡‹é‡é‡–釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋é‰éŠœéŠ–éŠ“éŠ›é‰šé‹éŠ¹éŠ·é‹©éŒé‹ºé„錮\"],[\"e840\",\"錙錢錚錣錺錵錻éœé é¼é®é–鎰鎬éŽéŽ”éŽ¹é–é—é¨é¥é˜éƒéééˆé¤éšé”é“éƒé‡éé¶é«éµé¡éºé‘é‘’é‘„é‘›é‘ é‘¢é‘žé‘ªéˆ©é‘°é‘µé‘·é‘½é‘šé‘¼é‘¾é’鑿閂閇閊閔閖閘閙\"],[\"e880\",\"é– é–¨é–§é–閼閻閹閾闊濶闃é—闌闕闔闖關闡闥闢阡阨阮阯陂陌é™é™‹é™·é™œé™žé™é™Ÿé™¦é™²é™¬éšéš˜éš•隗險隧隱隲隰隴隶隸隹雎雋雉é›è¥é›œéœé›•雹霄霆霈霓霎霑éœéœ–霙霤霪霰霹霽霾é„é†éˆé‚é‰éœé é¤é¦é¨å‹’é«é±é¹éž…é¼éžéºéž†éž‹éžéžéžœéž¨éž¦éž£éž³éž´éŸƒéŸ†éŸˆéŸ‹éŸœéŸé½éŸ²ç«ŸéŸ¶éŸµé é Œé ¸é ¤é ¡é ·é ½é¡†é¡é¡‹é¡«é¡¯é¡°\"],[\"e940\",\"顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡é¤é¤žé¤¤é¤ 餬餮餽餾饂饉饅é¥é¥‹é¥‘饒饌饕馗馘馥é¦é¦®é¦¼é§Ÿé§›é§é§˜é§‘é§é§®é§±é§²é§»é§¸é¨é¨é¨…駢騙騫騷驅驂驀驃\"],[\"e980\",\"騾驕é©é©›é©—驟驢驥驤驩驫驪éªéª°éª¼é«€é«é«‘髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲é„éƒéééŽé‘é˜é´é®“é®ƒé®‘é®–é®—é®Ÿé® é®¨é®´é¯€é¯Šé®¹é¯†é¯é¯‘é¯’é¯£é¯¢é¯¤é¯”é¯¡é°ºé¯²é¯±é¯°é°•é°”é°‰é°“é°Œé°†é°ˆé°’é°Šé°„é°®é°›é°¥é°¤é°¡é°°é±‡é°²é±†é°¾é±šé± é±§é±¶é±¸é³§é³¬é³°é´‰é´ˆé³«é´ƒé´†é´ªé´¦é¶¯é´£é´Ÿéµ„é´•é´’éµé´¿é´¾éµ†éµˆ\"],[\"ea40\",\"éµéµžéµ¤éµ‘éµéµ™éµ²é¶‰é¶‡é¶«éµ¯éµºé¶šé¶¤é¶©é¶²é·„é·é¶»é¶¸é¶ºé·†é·é·‚鷙鷓鷸鷦é·é·¯é·½é¸šé¸›é¸žé¹µé¹¹é¹½éºéºˆéº‹éºŒéº’麕麑éºéº¥éº©éº¸éºªéºé¡é»Œé»Žé»é»é»”黜點é»é» 黥黨黯\"],[\"ea80\",\"é»´é»¶é»·é»¹é»»é»¼é»½é¼‡é¼ˆçš·é¼•é¼¡é¼¬é¼¾é½Šé½’é½”é½£é½Ÿé½ é½¡é½¦é½§é½¬é½ªé½·é½²é½¶é¾•é¾œé¾ å ¯æ§‡é™ç‘¤å‡œç†™\"],[\"ed40\",\"纊褜éˆéŠˆè“œä¿‰ç‚»æ˜±æ£ˆé‹¹æ›»å½…ä¸¨ä»¡ä»¼ä¼€ä¼ƒä¼¹ä½–ä¾’ä¾Šä¾šä¾”ä¿å€å€¢ä¿¿å€žå†å°å‚傔僴僘兊兤å†å†¾å‡¬åˆ•劜劦勀勛匀匇匤å²åŽ“åŽ²å﨎咜咊咩哿喆å™å¥åž¬åŸˆåŸ‡ï¨\"],[\"ed80\",\"ï¨å¢žå¢²å¤‹å¥“奛å¥å¥£å¦¤å¦ºå–寀甯寘寬尞岦岺峵崧嵓﨑嵂åµå¶¸å¶¹å·å¼¡å¼´å½§å¾·å¿žææ‚…æ‚Šæƒžæƒ•æ„ æƒ²æ„‘æ„·æ„°æ†˜æˆ“æŠ¦æµæ‘ æ’æ“Žæ•Žæ˜€æ˜•æ˜»æ˜‰æ˜®æ˜žæ˜¤æ™¥æ™—æ™™ï¨’æ™³æš™æš æš²æš¿æ›ºæœŽï¤©æ¦æž»æ¡’æŸ€æ æ¡„æ£ï¨“æ¥¨ï¨”æ¦˜æ§¢æ¨°æ©«æ©†æ©³æ©¾æ«¢æ«¤æ¯–æ°¿æ±œæ²†æ±¯æ³šæ´„æ¶‡æµ¯æ¶–æ¶¬æ·æ·¸æ·²æ·¼æ¸¹æ¹œæ¸§æ¸¼æº¿æ¾ˆæ¾µæ¿µç€…瀇瀨炅炫ç„焄煜煆煇凞ç‡ç‡¾çб\"],[\"ee40\",\"犾猤猪ç·ç޽ç‰ç–ç£ç’ç‡çµç¦çªç©ç®ç‘¢ç’‰ç’Ÿç”畯皂皜皞皛皦益ç†åŠ¯ç ¡ç¡Žç¡¤ç¡ºç¤°ï¨˜ï¨™ï¨šç¦”ï¨›ç¦›ç«‘ç«§ï¨œç««ç®žï¨çµˆçµœç¶·ç¶ 緖繒罇羡羽èŒè¢è¿è‡è¶è‘ˆè’´è•“è•™\"],[\"ee80\",\"è•«ï¨Ÿè–°ï¨ ï¨¡è ‡è£µè¨’è¨·è©¹èª§èª¾è«Ÿï¨¢è«¶è“è¿è³°è³´è´’赶﨣è»ï¨¤ï¨¥é§éƒžï¨¦é„•鄧釚釗釞é‡é‡®é‡¤é‡¥éˆ†éˆéˆŠéˆºé‰€éˆ¼é‰Žé‰™é‰‘鈹鉧銧鉷鉸鋧鋗鋙é‹ï¨§é‹•é‹ é‹“éŒ¥éŒ¡é‹»ï¨¨éŒžé‹¿éŒéŒ‚é°é—鎤é†éžé¸é±é‘…鑈閒隆﨩éšéš¯éœ³éœ»éƒééé‘é•顗顥飯飼餧館馞驎髙髜éµé²é®é®±é®»é°€éµ°éµ«ï¨é¸™é»‘\"],[\"eeef\",\"â…°\",9,\"¬¦'"\"],[\"f040\",\"\",62],[\"f080\",\"\",124],[\"f140\",\"\",62],[\"f180\",\"\",124],[\"f240\",\"î…¸\",62],[\"f280\",\"\",124],[\"f340\",\"\",62],[\"f380\",\"\",124],[\"f440\",\"î‹°\",62],[\"f480\",\"\",124],[\"f540\",\"\",62],[\"f580\",\"î«\",124],[\"f640\",\"\",62],[\"f680\",\"î’§\",124],[\"f740\",\"\",62],[\"f780\",\"î•£\",124],[\"f840\",\"î— \",62],[\"f880\",\"\",124],[\"f940\",\"îšœ\"],[\"fa40\",\"â…°\",9,\"â… \",9,\"¬¦'"㈱№℡∵纊褜éˆéŠˆè“œä¿‰ç‚»æ˜±æ£ˆé‹¹æ›»å½…ä¸¨ä»¡ä»¼ä¼€ä¼ƒä¼¹ä½–ä¾’ä¾Šä¾šä¾”ä¿å€å€¢ä¿¿å€žå†å°å‚傔僴僘兊\"],[\"fa80\",\"å…¤å†å†¾å‡¬åˆ•劜劦勀勛匀匇匤å²åŽ“åŽ²å﨎咜咊咩哿喆å™å¥åž¬åŸˆåŸ‡ï¨ï¨å¢žå¢²å¤‹å¥“奛å¥å¥£å¦¤å¦ºå–寀甯寘寬尞岦岺峵崧嵓﨑嵂åµå¶¸å¶¹å·å¼¡å¼´å½§å¾·å¿žææ‚…æ‚Šæƒžæƒ•æ„ æƒ²æ„‘æ„·æ„°æ†˜æˆ“æŠ¦æµæ‘ æ’æ“Žæ•Žæ˜€æ˜•æ˜»æ˜‰æ˜®æ˜žæ˜¤æ™¥æ™—æ™™ï¨’æ™³æš™æš æš²æš¿æ›ºæœŽï¤©æ¦æž»æ¡’æŸ€æ æ¡„æ£ï¨“楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯\"],[\"fb40\",\"æ¶–æ¶¬æ·æ·¸æ·²æ·¼æ¸¹æ¹œæ¸§æ¸¼æº¿æ¾ˆæ¾µæ¿µç€…瀇瀨炅炫ç„焄煜煆煇凞ç‡ç‡¾çŠ±çŠ¾çŒ¤ï¨–ç·ç޽ç‰ç–ç£ç’ç‡çµç¦çªç©ç®ç‘¢ç’‰ç’Ÿç”畯皂皜皞皛皦益ç†åŠ¯ç ¡ç¡Žç¡¤ç¡ºç¤°ï¨˜ï¨™\"],[\"fb80\",\"祥禔福禛竑竧靖竫箞ï¨çµˆçµœç¶·ç¶ 緖繒罇羡羽èŒè¢è¿è‡è¶è‘ˆè’´è•“è•™è•«ï¨Ÿè–°ï¨ ï¨¡è ‡è£µè¨’è¨·è©¹èª§èª¾è«Ÿï¨¢è«¶è“è¿è³°è³´è´’赶﨣è»ï¨¤ï¨¥é§éƒžï¨¦é„•鄧釚釗釞é‡é‡®é‡¤é‡¥éˆ†éˆéˆŠéˆºé‰€éˆ¼é‰Žé‰™é‰‘鈹鉧銧鉷鉸鋧鋗鋙é‹ï¨§é‹•é‹ é‹“éŒ¥éŒ¡é‹»ï¨¨éŒžé‹¿éŒéŒ‚é°é—鎤é†éžé¸é±é‘…鑈閒隆﨩éšéš¯éœ³éœ»éƒééé‘é•顗顥飯飼餧館馞驎髙\"],[\"fc40\",\"髜éµé²é®é®±é®»é°€éµ°éµ«ï¨é¸™é»‘\"]]"); -var _interopRequireDefault = __webpack_require__(530); +/***/ }), +/* 819 */ +/***/ (function(module) { -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.normalize = normalize; -exports.ensureFilePath = ensureFilePath; -exports.getParentFolderId = getParentFolderId; -exports.hasMetadataAttribute = exports.isReferencedByAlbum = exports.fetchFilesByQualificationRules = exports.saveFileQualification = exports.isSharingShorcutNew = exports.isSharingShortcutNew = exports.isSharingShorcut = exports.isSharingShortcut = exports.getSharingShortcutTargetDoctype = exports.getSharingShortcutTargetMime = exports.getSharingShortcutStatus = exports.isShortcut = exports.shouldBeOpenedByOnlyOffice = exports.isOnlyOfficeFile = exports.isNote = exports.isDirectory = exports.isFile = exports.splitFilename = exports.ALBUMS_DOCTYPE = void 0; +module.exports = JSON.parse("[[\"0\",\"\\u0000\",127],[\"8ea1\",\"。\",62],[\"a1a1\",\" ã€ã€‚,.・:;?ï¼ã‚›ã‚œÂ´ï½€Â¨ï¼¾ï¿£ï¼¿ãƒ½ãƒ¾ã‚ゞ〃ä»ã€…〆〇ー―â€ï¼ï¼¼ï½žâˆ¥ï½œâ€¦â€¥â€˜â€™â€œâ€ï¼ˆï¼‰ã€”〕[]{ï½ã€ˆ\",9,\"+ï¼Â±Ã—÷ï¼â‰ ï¼œï¼žâ‰¦â‰§âˆžâˆ´â™‚â™€Â°â€²â€³â„ƒï¿¥ï¼„ï¿ ï¿¡ï¼…ï¼ƒï¼†ï¼Šï¼ Â§â˜†â˜…â—‹â—â—Žâ—‡\"],[\"a2a1\",\"◆□■△▲▽▼※〒→â†â†‘↓〓\"],[\"a2ba\",\"∈∋⊆⊇⊂⊃∪∩\"],[\"a2ca\",\"∧∨¬⇒⇔∀∃\"],[\"a2dc\",\"∠⊥⌒∂∇≡≒≪≫√∽âˆâˆµâˆ«âˆ¬\"],[\"a2f2\",\"ʼn♯â™â™ªâ€ ‡¶\"],[\"a2fe\",\"â—¯\"],[\"a3b0\",\"ï¼\",9],[\"a3c1\",\"A\",25],[\"a3e1\",\"ï½\",25],[\"a4a1\",\"ã\",82],[\"a5a1\",\"ã‚¡\",85],[\"a6a1\",\"Α\",16,\"Σ\",6],[\"a6c1\",\"α\",16,\"σ\",6],[\"a7a1\",\"Ð\",5,\"ÐЖ\",25],[\"a7d1\",\"а\",5,\"ёж\",25],[\"a8a1\",\"─│┌â”┘└├┬┤┴┼â”┃â”┓┛┗┣┳┫┻╋┠┯┨┷┿â”┰┥┸╂\"],[\"ada1\",\"â‘ \",19,\"â… \",9],[\"adc0\",\"ã‰ãŒ”㌢ã㌘㌧㌃㌶ã‘ã—ãŒãŒ¦ãŒ£ãŒ«ãŠãŒ»ãŽœãŽãŽžãŽŽãŽã„㎡\"],[\"addf\",\"ã»ã€ã€Ÿâ„–ã℡㊤\",4,\"㈱㈲㈹ã¾ã½ã¼â‰’≡∫∮∑√⊥∠∟⊿∵∩∪\"],[\"b0a1\",\"äºœå”–å¨ƒé˜¿å“€æ„›æŒ¨å§¶é€¢è‘µèŒœç©æ‚ªæ¡æ¸¥æ—葦芦鯵梓圧斡扱宛å§è™»é£´çµ¢ç¶¾é®Žæˆ–ç²Ÿè¢·å®‰åºµæŒ‰æš—æ¡ˆé—‡éžæä»¥ä¼Šä½ä¾å‰å›²å¤·å§”å¨å°‰æƒŸæ„慰易椅為ç•ç•°ç§»ç¶ç·¯èƒƒèŽè¡£è¬‚é•éºåŒ»äº•亥域育éƒç£¯ä¸€å£±æº¢é€¸ç¨²èŒ¨èЋ鰝å…å°å’½å“¡å› 姻引飲淫胤è”\"],[\"b1a1\",\"é™¢é™°éš éŸ»å‹å³å®‡çƒç¾½è¿‚雨å¯éµœçªºä¸‘碓臼渦嘘唄æ¬è”šé°»å§¥åŽ©æµ¦ç“œé–噂云é‹é›²è餌å¡å–¶å¬°å½±æ˜ æ›³æ „æ°¸æ³³æ´©ç‘›ç›ˆç©Žé ´è‹±è¡›è© é‹æ¶²ç–«ç›Šé§…悦è¬è¶Šé–²æ¦ŽåŽå††åœ’å °å¥„å®´å»¶æ€¨æŽ©æ´æ²¿æ¼”炎焔煙燕猿ç¸è‰¶è‹‘è–—é 鉛鴛塩於汚甥凹央奥往応\"],[\"b2a1\",\"押旺横欧殴王ç¿è¥–鴬鴎黄岡沖è»å„„å±‹æ†¶è‡†æ¡¶ç‰¡ä¹™ä¿ºå¸æ©æ¸©ç©éŸ³ä¸‹åŒ–ä»®ä½•ä¼½ä¾¡ä½³åŠ å¯å˜‰å¤å«å®¶å¯¡ç§‘æš‡æžœæž¶æŒæ²³ç«ç‚ç¦ç¦¾ç¨¼ç®‡èŠ±è‹›èŒ„è·è¯è“è¦èª²å˜©è²¨è¿¦éŽéœžèšŠä¿„å³¨æˆ‘ç‰™ç”»è‡¥èŠ½è›¾è³€é›…é¤“é§•ä»‹ä¼šè§£å›žå¡Šå£Šå»»å¿«æ€ªæ‚”æ¢æ‡æˆ’æ‹æ”¹\"],[\"b3a1\",\"éæ™¦æ¢°æµ·ç°ç•Œçš†çµµèŠ¥èŸ¹é–‹éšŽè²å‡±åŠ¾å¤–å’³å®³å´–æ…¨æ¦‚æ¶¯ç¢è“‹è¡—該鎧骸浬馨蛙垣柿蛎鈎劃嚇å„å»“æ‹¡æ’¹æ ¼æ ¸æ®»ç²ç¢ºç©«è¦šè§’赫較éƒé–£éš”é©å¦å²³æ¥½é¡é¡ŽæŽ›ç¬ æ¨«æ©¿æ¢¶é°æ½Ÿå‰²å–æ°æ‹¬æ´»æ¸‡æ»‘è‘›è¤è½„䏔鰹嶿¤›æ¨ºéž„æ ªå…œç«ƒè’²é‡œéŽŒå™›é´¨æ ¢èŒ…è±\"],[\"b4a1\",\"ç²¥åˆˆè‹…ç“¦ä¹¾ä¾ƒå† å¯’åˆŠå‹˜å‹§å·»å–šå ªå§¦å®Œå®˜å¯›å¹²å¹¹æ‚£æ„Ÿæ…£æ†¾æ›æ•¢æŸ‘æ¡“æ£ºæ¬¾æ“æ±—漢澗潅環甘監看竿管簡緩缶翰è‚艦莞観諌貫還鑑間閑関陥韓館舘丸å«å²¸å·ŒçŽ©ç™Œçœ¼å²©ç¿«è´‹é›é ‘顔願ä¼ä¼Žå±å–œå™¨åŸºå¥‡å¬‰å¯„å²å¸Œå¹¾å¿Œæ®æœºæ——既期棋棄\"],[\"b5a1\",\"機帰毅気汽畿祈å£ç¨€ç´€å¾½è¦è¨˜è²´èµ·è»Œè¼é£¢é¨Žé¬¼äº€å½å„€å¦“å®œæˆ¯æŠ€æ“¬æ¬ºçŠ ç–‘ç¥‡ç¾©èŸ»èª¼è°æŽ¬èŠéž å‰åƒå–«æ¡”æ©˜è©°ç §æµé»å´å®¢è„šè™é€†ä¸˜ä¹…仇休åŠå¸å®®å¼“急救朽求汲泣ç¸çƒç©¶çª®ç¬ˆç´šç³¾çµ¦æ—§ç‰›åŽ»å±…å·¨æ‹’æ‹ æŒ™æ¸ è™šè¨±è·é‹¸æ¼ç¦¦éšäº¨äº«äº¬\"],[\"b6a1\",\"ä¾›ä¾ åƒ‘å…‡ç«¶å…±å‡¶å”匡å¿å«å–¬å¢ƒå³¡å¼·å½Šæ€¯æææŒŸæ•™æ©‹æ³ç‹‚ç‹çŸ¯èƒ¸è„…興蕎郷é¡éŸ¿é¥—驚仰å‡å°æšæ¥å±€æ›²æ¥µçމæ¡ç²åƒ…勤å‡å·¾éŒ¦æ–¤æ¬£æ¬½ç´ç¦ç¦½ç‹ç·ŠèйèŒè¡¿è¥Ÿè¬¹è¿‘金åŸéŠ€ä¹å€¶å¥åŒºç‹—玖矩苦躯駆駈駒具愚虞喰空å¶å¯“é‡éš…串櫛釧屑屈\"],[\"b7a1\",\"掘窟沓é´è½¡çªªç†Šéšˆç²‚æ —ç¹°æ¡‘é¬å‹²å›è–«è¨“群è»éƒ¡å¦è¢ˆç¥ä¿‚傾刑兄啓åœçªåž‹å¥‘å½¢å¾„æµæ…¶æ…§æ†©æŽ²æºæ•¬æ™¯æ¡‚渓畦稽系経継繋罫茎èŠè›è¨ˆè©£è¦è»½é šé¶èŠ¸è¿Žé¯¨åŠ‡æˆŸæ’ƒæ¿€éš™æ¡å‚‘æ¬ æ±ºæ½”ç©´çµè¡€è¨£æœˆä»¶å€¹å€¦å¥å…¼åˆ¸å‰£å–§åœå …嫌建憲懸拳æ²\"],[\"b8a1\",\"æ¤œæ¨©ç‰½çŠ¬çŒ®ç ”ç¡¯çµ¹çœŒè‚©è¦‹è¬™è³¢è»’é£éµé™ºé¡•験鹸元原厳幻弦減æºçŽ„ç¾çµƒèˆ·è¨€è«ºé™ä¹Žå€‹å¤å‘¼å›ºå§‘å¤å·±åº«å¼§æˆ¸æ•…枯湖ç‹ç³Šè¢´è‚¡èƒ¡è°è™Žèª‡è·¨éˆ·é›‡é¡§é¼“五互ä¼åˆå‘‰å¾å¨¯å¾Œå¾¡æ‚Ÿæ¢§æªŽç‘šç¢èªžèª¤è·é†ä¹žé¯‰äº¤ä½¼ä¾¯å€™å€–光公功効勾厚å£å‘\"],[\"b9a1\",\"åŽå–‰å‘垢好å”åå®å·¥å·§å··å¹¸åºƒåºšåº·å¼˜æ’æ…ŒæŠ—æ‹˜æŽ§æ”»æ˜‚æ™ƒæ›´ææ ¡æ¢—構江洪浩港æºç”²çš‡ç¡¬ç¨¿ç³ 紅紘絞綱耕考肯肱腔è†èˆªè’è¡Œè¡¡è¬›è²¢è³¼éƒŠé…µé‰±ç ¿é‹¼é–¤é™é …香高鴻剛劫å·åˆå£•æ‹·æ¿ è±ªè½Ÿéº¹å…‹åˆ»å‘Šå›½ç©€é…·éµ é»’ç„æ¼‰è…°ç”‘忽惚骨狛込\"],[\"baa1\",\"æ¤é ƒä»Šå›°å¤å¢¾å©šæ¨æ‡‡æ˜æ˜†æ ¹æ¢±æ··ç—•紺艮é‚些ä½å‰å”†åµ¯å·¦å·®æŸ»æ²™ç‘³ç ‚è©éŽ–è£Ÿååº§æŒ«å‚µå‚¬å†æœ€å“‰å¡žå¦»å®°å½©æ‰æŽ¡æ ½æ³æ¸ˆç½é‡‡çŠ€ç •ç ¦ç¥æ–Žç´°èœè£è¼‰éš›å‰¤åœ¨æç½ªè²¡å†´å‚é˜ªå ºæ¦Šè‚´å’²å´ŽåŸ¼ç¢•é·ºä½œå‰Šå’‹æ¾æ˜¨æœ”柵窄ç–索錯桜é®ç¬¹åŒ™å†Šåˆ·\"],[\"bba1\",\"å¯Ÿæ‹¶æ’®æ“¦æœæ®ºè–©é›‘çšé¯–æŒéŒ†é®«çš¿æ™’三傘å‚山惨撒散桟燦çŠç”£ç®—çº‚èš•è®ƒè³›é…¸é¤æ–¬æš«æ®‹ä»•仔伺使刺å¸å²å—£å››å£«å§‹å§‰å§¿åå±å¸‚å¸«å¿—æ€æŒ‡æ”¯åœæ–¯æ–½æ—¨æžæ¢æ»æ°ç…祉ç§ç³¸ç´™ç´«è‚¢è„‚至視詞詩試誌諮資賜雌飼æ¯äº‹ä¼¼ä¾å…å—å¯ºæ…ˆæŒæ™‚\"],[\"bca1\",\"次滋治爾璽痔ç£ç¤ºè€Œè€³è‡ªè’”辞æ±é¹¿å¼è˜é´«ç«ºè»¸å®é›«ä¸ƒå±åŸ·å¤±å«‰å®¤æ‚‰æ¹¿æ¼†ç–¾è³ªå®Ÿè”€ç¯ 岿Ÿ´èŠå±¡è•Šç¸žèˆŽå†™å°„æ¨èµ¦æ–œç…®ç¤¾ç´—者è¬è»Šé®è›‡é‚ªå€Ÿå‹ºå°ºæ“ç¼çˆµé…Œé‡ˆéŒ«è‹¥å¯‚弱惹主å–守手朱殊狩ç 種腫趣酒首儒å—呪寿授樹綬需囚åŽå‘¨\"],[\"bda1\",\"å®—å°±å·žä¿®æ„æ‹¾æ´²ç§€ç§‹çµ‚ç¹ç¿’è‡èˆŸè’衆襲è®è¹´è¼¯é€±é…‹é…¬é›†é†œä»€ä½å……åå¾“æˆŽæŸ”æ±æ¸‹ç£ç¸¦é‡éŠƒå”夙宿淑ç¥ç¸®ç²›å¡¾ç†Ÿå‡ºè¡“述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡éµé†‡é †å‡¦åˆæ‰€æš‘曙渚庶緒署書薯藷諸助å™å¥³åºå¾æ•鋤除傷償\"],[\"bea1\",\"å‹åŒ å‡å¬å“¨å•†å”±å˜—奨妾娼宵将å°å°‘å°šåº„åºŠå» å½°æ‰¿æŠ„æ‹›æŽŒæ·æ˜‡æ˜Œæ˜æ™¶æ¾æ¢¢æ¨Ÿæ¨µæ²¼æ¶ˆæ¸‰æ¹˜ç„¼ç„¦ç…§ç—‡çœç¡ç¤ç¥¥ç§°ç« 笑粧紹肖è–蒋蕉è¡è£³è¨Ÿè¨¼è©”詳象賞醤鉦é¾é˜éšœéž˜ä¸Šä¸ˆä¸žä¹—å†—å‰°åŸŽå ´å£Œå¬¢å¸¸æƒ…æ“¾æ¡æ–浄状畳穣蒸è²é†¸éŒ 嘱埴飾\"],[\"bfa1\",\"æ‹æ¤æ®–ç‡ç¹”è·è‰²è§¦é£Ÿè•è¾±å°»ä¼¸ä¿¡ä¾µå”‡å¨ å¯å¯©å¿ƒæ…ŽæŒ¯æ–°æ™‹æ£®æ¦›æµ¸æ·±ç”³ç–¹çœŸç¥žç§¦ç´³è‡£èŠ¯è–ªè¦ªè¨ºèº«è¾›é€²é‡éœ‡äººä»åˆƒå¡µå£¬å°‹ç”šå°½è…Žè¨Šè¿…陣é笥è«é ˆé…¢å›³åލ逗å¹åž‚帥推水炊ç¡ç²‹ç¿ è¡°é‚é…”éŒéŒ˜éšç‘žé«„å´‡åµ©æ•°æž¢è¶¨é››æ®æ‰æ¤™è…é —é›€è£¾\"],[\"c0a1\",\"æ¾„æ‘ºå¯¸ä¸–ç€¬ç•æ˜¯å‡„åˆ¶å‹¢å§“å¾æ€§æˆæ”¿æ•´æ˜Ÿæ™´æ£²æ –æ£æ¸…牲生盛精è–å£°è£½è¥¿èª èª“è«‹é€é†’é’陿–‰ç¨Žè„†éš»å¸æƒœæˆšæ–¥æ˜”æžçŸ³ç©ç±ç¸¾è„Šè²¬èµ¤è·¡è¹Ÿç¢©åˆ‡æ‹™æŽ¥æ‘‚折è¨çªƒç¯€èª¬é›ªçµ¶èˆŒè‰ä»™å…ˆåƒå 宣専尖巿ˆ¦æ‰‡æ’°æ “æ ´æ³‰æµ…æ´—æŸ“æ½œç…Žç…½æ—‹ç©¿ç®ç·š\"],[\"c1a1\",\"繊羨腺舛船薦詮賎践é¸é·éŠéŠ‘é–ƒé®®å‰å–„漸然全禅繕膳糎噌塑岨措曾曽楚狙ç–ç–Žç¤Žç¥–ç§Ÿç²—ç´ çµ„è˜‡è¨´é˜»é¡é¼ 僧創åŒå¢å€‰å–ªå£®å¥çˆ½å®‹å±¤åŒæƒ£æƒ³æœæŽƒæŒ¿æŽ»æ“æ—©æ›¹å·£æ§æ§½æ¼•燥争痩相窓糟ç·ç¶œè¡è‰è˜è‘¬è’¼è—»è£…èµ°é€é鎗霜騒åƒå¢—憎\"],[\"c2a1\",\"è‡“è”µè´ˆé€ ä¿ƒå´å‰‡å³æ¯æ‰æŸæ¸¬è¶³é€Ÿä¿—属賊æ—ç¶šå’袖其æƒå˜å«å°Šææ‘éœä»–å¤šå¤ªæ±°è©‘å”¾å •å¦¥æƒ°æ‰“æŸèˆµæ¥•é™€é§„é¨¨ä½“å †å¯¾è€å²±å¸¯å¾…æ€ æ…‹æˆ´æ›¿æ³°æ»žèƒŽè…¿è‹”è¢‹è²¸é€€é€®éšŠé»›é¯›ä»£å°å¤§ç¬¬é†é¡Œé·¹æ»ç€§å“啄宅托択拓沢濯ç¢è¨—鏿¿è«¾èŒ¸å‡§è›¸åª\"],[\"c3a1\",\"å©ä½†é”辰奪脱巽竪辿棚谷狸鱈樽誰丹å˜å˜†å¦æ‹…æŽ¢æ—¦æŽæ·¡æ¹›ç‚çŸç«¯ç®ªç¶»è€½èƒ†è›‹èª•é›å›£å£‡å¼¾æ–æš–æª€æ®µç”·è«‡å€¤çŸ¥åœ°å¼›æ¥æ™ºæ± 痴稚置致蜘é…馳築畜竹ç‘è“„é€ç§©çª’茶嫡ç€ä¸ä»²å®™å¿ æŠ½æ˜¼æŸ±æ³¨è™«è¡·è¨»é…Žé‹³é§æ¨—瀦猪苧著貯ä¸å…†å‡‹å–‹å¯µ\"],[\"c4a1\",\"帖帳åºå¼”å¼µå½«å¾´æ‡²æŒ‘æš¢æœæ½®ç‰’町眺è´è„¹è…¸è¶èª¿è«œè¶…è·³éŠšé•·é ‚é³¥å‹…æ—直朕沈çè³ƒéŽ®é™³æ´¥å¢œæ¤Žæ§Œè¿½éŽšç—›é€šå¡šæ ‚æŽ´æ§»ä½ƒæ¼¬æŸ˜è¾»è”¦ç¶´é”æ¤¿æ½°åªå£·å¬¬ç´¬çˆªåŠé‡£é¶´äºä½Žåœåµå‰ƒè²žå‘ˆå ¤å®šå¸åº•åºå»·å¼Ÿæ‚ŒæŠµæŒºææ¢¯æ±€ç¢‡ç¦Žç¨‹ç· 艇訂諦蹄逓\"],[\"c5a1\",\"邸é„釘鼎泥摘擢敵滴的笛é©é‘溺哲徹撤è½è¿é‰„典填天展店添çºç”œè²¼è»¢é¡›ç‚¹ä¼æ®¿æ¾±ç”°é›»å…Žåå µå¡—å¦¬å± å¾’æ–—æœæ¸¡ç™»èŸè³é€”都éç ¥ç ºåŠªåº¦åœŸå¥´æ€’å€’å…šå†¬å‡åˆ€å”å¡”å¡˜å¥—å®•å³¶å¶‹æ‚¼æŠ•ææ±æ¡ƒæ¢¼æ£Ÿç›—æ·˜æ¹¯æ¶›ç¯ç‡ˆå½“痘祷ç‰ç”ç’糖統到\"],[\"c6a1\",\"董蕩藤討謄豆è¸é€ƒé€é™é™¶é 騰闘åƒå‹•åŒå ‚導憧撞洞瞳童胴è„é“éŠ…å³ é´‡åŒ¿å¾—å¾³æ¶œç‰¹ç£ç¦¿ç¯¤æ¯’ç‹¬èªæ ƒæ©¡å‡¸çªæ¤´å±Šé³¶è‹«å¯…酉瀞噸屯惇敦沌豚éé “å‘‘æ›‡éˆå¥ˆé‚£å†…ä¹å‡ªè–™è¬Žç˜æºé‹æ¥¢é¦´ç¸„ç•·å—æ¥ 軟難æ±äºŒå°¼å¼è¿©åŒ‚賑肉虹廿日乳入\"],[\"c7a1\",\"如尿韮任妊å¿èªæ¿¡ç¦°ç¥¢å¯§è‘±çŒ«ç†±å¹´å¿µæ»æ’šç‡ƒç²˜ä¹ƒå»¼ä¹‹åŸœå𢿂©æ¿ƒç´èƒ½è„³è†¿è¾²è¦—蚤巴把æ’è¦‡æ·æ³¢æ´¾ç¶ç ´å©†ç½µèŠé¦¬ä¿³å»ƒæ‹æŽ’æ•—æ¯ç›ƒç‰ŒèƒŒè‚ºè¼©é…å€åŸ¹åª’æ¢…æ¥³ç…¤ç‹½è²·å£²è³ é™ªé€™è¿ç§¤çŸ§è©ä¼¯å‰¥å𿋿Ÿæ³Šç™½ç®”ç²•èˆ¶è–„è¿«æ›æ¼ 爆縛莫é§éº¦\"],[\"c8a1\",\"å‡½ç®±ç¡²ç®¸è‚‡çˆæ«¨å¹¡è‚Œç•‘ç• å…«é‰¢æºŒç™ºé†—é«ªä¼ç½°æŠœç閥鳩噺塙蛤隼伴判åŠåå›å¸†æ¬æ–‘æ¿æ°¾æ±Žç‰ˆçНçç•”ç¹èˆ¬è—©è²©ç¯„é‡†ç…©é ’é£¯æŒ½æ™©ç•ªç›¤ç£è•ƒè›®åŒªå‘å¦å¦ƒåº‡å½¼æ‚²æ‰‰æ‰¹æŠ«æ–比泌疲皮碑秘緋罷肥被誹費é¿éžé£›æ¨‹ç°¸å‚™å°¾å¾®æž‡æ¯˜çµçœ‰ç¾Ž\"],[\"c9a1\",\"鼻柊稗匹疋é«å½¦è†è±è‚˜å¼¼å¿…ç•¢ç†é€¼æ¡§å§«åª›ç´ç™¾è¬¬ä¿µå½ªæ¨™æ°·æ¼‚瓢票表評豹廟æç—…秒苗錨鋲蒜è›é°å“å½¬æ–Œæµœç€•è²§è³“é »æ•ç“¶ä¸ä»˜åŸ 夫婦富冨布府怖扶敷斧普浮父符è…膚芙èœè² 賦赴阜附侮撫æ¦èˆžè‘¡è•ªéƒ¨å°æ¥“風葺蕗ä¼å‰¯å¾©å¹…æœ\"],[\"caa1\",\"ç¦è…¹è¤‡è¦†æ·µå¼—払沸ä»ç‰©é®’分å»å™´å¢³æ†¤æ‰®ç„šå¥®ç²‰ç³žç´›é›°æ–‡èžä¸™ä½µå…µå¡€å¹£å¹³å¼ŠæŸ„並蔽閉陛米é 僻å£ç™–碧別瞥蔑箆å変片篇編辺返é便勉娩å¼éžä¿èˆ—é‹ªåœƒæ•æ©ç”«è£œè¼”穂募墓慕戊暮æ¯ç°¿è©å€£ä¿¸åŒ…å‘†å ±å¥‰å®å³°å³¯å´©åº–æŠ±æ§æ”¾æ–¹æœ‹\"],[\"cba1\",\"æ³•æ³¡çƒ¹ç ²ç¸«èƒžèŠ³èŒè“¬èœ‚褒訪豊邦鋒飽鳳鵬ä¹äº¡å‚剖åŠå¦¨å¸½å¿˜å¿™æˆ¿æš´æœ›æŸæ£’冒紡肪膨謀貌貿鉾防å é ¬åŒ—åƒ•åœå¢¨æ’²æœ´ç‰§ç¦ç©†é‡¦å‹ƒæ²¡æ®†å €å¹Œå¥”本翻凡盆摩磨é”麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒æ¡äº¦ä¿£åˆæŠ¹æœ«æ²«è¿„ä¾ç¹éº¿ä¸‡æ…¢æº€\"],[\"cca1\",\"漫蔓味未é…å·³ç®•å²¬å¯†èœœæ¹Šè“‘ç¨”è„ˆå¦™ç²æ°‘çœ å‹™å¤¢ç„¡ç‰ŸçŸ›éœ§éµ¡æ¤‹å©¿å¨˜å†¥åå‘½æ˜Žç›Ÿè¿·éŠ˜é³´å§ªç‰æ»…å…æ£‰ç¶¿ç·¬é¢éººæ‘¸æ¨¡èŒ‚å¦„åŸæ¯›çŒ›ç›²ç¶²è€—蒙儲木黙目æ¢å‹¿é¤…å°¤æˆ»ç±¾è²°å•æ‚¶ç´‹é–€åŒä¹Ÿå†¶å¤œçˆºè€¶é‡Žå¼¥çŸ¢åŽ„å½¹ç´„è–¬è¨³èºé–柳薮鑓愉愈油癒\"],[\"cda1\",\"è«è¼¸å”¯ä½‘優勇å‹å®¥å¹½æ‚ æ†‚æ–æœ‰æŸšæ¹§æ¶ŒçŒ¶çŒ·ç”±ç¥è£•誘éŠé‚‘郵雄èžå¤•予余与誉輿é å‚å¹¼å¦–å®¹åº¸æšæºæ“曜楊様洋溶熔用窯羊耀葉蓉è¦è¬¡è¸Šé¥é™½é¤Šæ…¾æŠ‘欲沃浴翌翼淀羅螺裸æ¥èŽ±é ¼é›·æ´›çµ¡è½é…ªä¹±åµåµæ¬„æ¿«è—è˜è¦§åˆ©åå±¥æŽæ¢¨ç†ç’ƒ\"],[\"cea1\",\"ç—¢è£è£¡é‡Œé›¢é™¸å¾‹çŽ‡ç«‹è‘ŽæŽ ç•¥åŠ‰æµæºœç‰ç•™ç¡«ç²’隆竜é¾ä¾¶æ…®æ—…è™œäº†äº®åƒšä¸¡å‡Œå¯®æ–™æ¢æ¶¼çŒŸç™‚çžç¨œç³§è‰¯è«’é¼é‡é™µé ˜åŠ›ç·‘å€«åŽ˜æž—æ·‹ç‡ç³è‡¨è¼ªéš£é±—éºŸç‘ å¡æ¶™ç´¯é¡žä»¤ä¼¶ä¾‹å†·åŠ±å¶ºæ€œçŽ²ç¤¼è‹“éˆ´éš·é›¶éœŠéº—é½¢æš¦æ´åˆ—åŠ£çƒˆè£‚å»‰æ‹æ†æ¼£ç…‰ç°¾ç·´è¯\"],[\"cfa1\",\"è“®é€£éŒ¬å‘‚é¯æ«“炉賂路露労å©å»Šå¼„朗楼榔浪æ¼ç‰¢ç‹¼ç¯è€è¾è‹éƒŽå…麓禄肋録論å€å’Œè©±æªè³„è„‡æƒ‘æž é·²äº™äº˜é°è©«è—蕨椀湾碗腕\"],[\"d0a1\",\"弌ä¸ä¸•个丱丶丼丿乂乖乘亂亅豫亊舒å¼äºŽäºžäºŸäº 亢亰亳亶从ä»ä»„仆仂仗仞ä»ä»Ÿä»·ä¼‰ä½šä¼°ä½›ä½ä½—佇佶侈ä¾ä¾˜ä½»ä½©ä½°ä¾‘佯來侖儘俔俟俎俘俛俑俚ä¿ä¿¤ä¿¥å€šå€¨å€”倪倥倅伜俶倡倩倬俾俯們倆åƒå‡æœƒå•ååˆåšå–å¬å¸å‚€å‚šå‚…傴傲\"],[\"d1a1\",\"僉僊傳僂僖僞僥åƒåƒ£åƒ®åƒ¹åƒµå„‰å„儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉å†å†‘å†“å†•å†–å†¤å†¦å†¢å†©å†ªå†«å†³å†±å†²å†°å†µå†½å‡…å‡‰å‡›å‡ è™•å‡©å‡å‡°å‡µå‡¾åˆ„刋刔刎刧刪刮刳刹å‰å‰„剋剌剞剔剪剴剩剳剿剽åŠåŠ”åŠ’å‰±åŠˆåŠ‘è¾¨\"],[\"d2a1\",\"辧劬åŠåŠ¼åŠµå‹å‹å‹—勞勣勦é£å‹ 勳勵勸勹匆匈甸åŒåŒåŒåŒ•匚匣匯匱匳匸å€å†å…丗å‰å凖åžå©å®å¤˜å»å·åŽ‚åŽ–åŽ åŽ¦åŽ¥åŽ®åŽ°åŽ¶åƒç°’é›™åŸæ›¼ç‡®å®å¨ååºåå½å‘€å¬åå¼å®å¶å©å呎å’呵咎呟呱呷呰咒呻咀呶咄å’咆哇咢咸咥咬哄哈咨\"],[\"d3a1\",\"咫哂咤咾咼哘哥哦å”唔哽哮å“哺哢唹啀啣啌售啜啅啖啗唸唳å•喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎å™ç‡Ÿå˜´å˜¶å˜²å˜¸å™«å™¤å˜¯å™¬å™ªåš†åš€åšŠåš åš”åšåš¥åš®åš¶åš´å›‚åš¼å›å›ƒå›€å›ˆå›Žå›‘囓囗囮囹圀囿圄圉\"],[\"d4a1\",\"圈國åœåœ“團圖嗇圜圦圷圸åŽåœ»å€åå©åŸ€åžˆå¡å¿åž‰åž“åž åž³åž¤åžªåž°åŸƒåŸ†åŸ”åŸ’åŸ“å ŠåŸ–åŸ£å ‹å ™å å¡²å ¡å¡¢å¡‹å¡°æ¯€å¡’å ½å¡¹å¢…å¢¹å¢Ÿå¢«å¢ºå£žå¢»å¢¸å¢®å£…å£“å£‘å£—å£™å£˜å£¥å£œå£¤å£Ÿå£¯å£ºå£¹å£»å£¼å£½å¤‚å¤Šå¤å¤›æ¢¦å¤¥å¤¬å¤å¤²å¤¸å¤¾ç«’奕å¥å¥Žå¥šå¥˜å¥¢å¥ 奧奬奩\"],[\"d5a1\",\"奸å¦å¦ä½žä¾«å¦£å¦²å§†å§¨å§œå¦å§™å§šå¨¥å¨Ÿå¨‘娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲å«å¬ªå¬¶å¬¾åƒå…å€å‘å•åšå›å¥å©å°å³åµå¸æ–ˆåºå®€å®ƒå®¦å®¸å¯ƒå¯‡å¯‰å¯”å¯å¯¤å¯¦å¯¢å¯žå¯¥å¯«å¯°å¯¶å¯³å°…將專å°å°“å° å°¢å°¨å°¸å°¹å±å±†å±Žå±“\"],[\"d6a1\",\"å±å±å±å±¬å±®ä¹¢å±¶å±¹å²Œå²‘岔妛岫岻岶岼岷峅岾峇峙峩峽峺å³å¶Œå³ªå´‹å´•崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢å¶å¶¬å¶®å¶½å¶å¶·å¶¼å·‰å·å·“å·’å·–å·›å·«å·²å·µå¸‹å¸šå¸™å¸‘å¸›å¸¶å¸·å¹„å¹ƒå¹€å¹Žå¹—å¹”å¹Ÿå¹¢å¹¤å¹‡å¹µå¹¶å¹ºéº¼å¹¿åº å»å»‚廈å»å»\"],[\"d7a1\",\"廖廣å»å»šå»›å»¢å»¡å»¨å»©å»¬å»±å»³å»°å»´å»¸å»¾å¼ƒå¼‰å½å½œå¼‹å¼‘弖弩å¼å¼¸å½å½ˆå½Œå½Žå¼¯å½‘彖彗彙彡å½å½³å½·å¾ƒå¾‚å½¿å¾Šå¾ˆå¾‘å¾‡å¾žå¾™å¾˜å¾ å¾¨å¾å¾¼å¿–å¿»å¿¤å¿¸å¿±å¿æ‚³å¿¿æ€¡æ æ€™æ€æ€©æ€Žæ€±æ€›æ€•æ€«æ€¦æ€æ€ºæšææªæ·æŸæŠæ†ææ£æƒæ¤æ‚æ¬æ«æ™æ‚æ‚æƒ§æ‚ƒæ‚š\"],[\"d8a1\",\"æ‚„æ‚›æ‚–æ‚—æ‚’æ‚§æ‚‹æƒ¡æ‚¸æƒ æƒ“æ‚´å¿°æ‚½æƒ†æ‚µæƒ˜æ…æ„•æ„†æƒ¶æƒ·æ„€æƒ´æƒºæ„ƒæ„¡æƒ»æƒ±æ„æ„Žæ…‡æ„¾æ„¨æ„§æ…Šæ„¿æ„¼æ„¬æ„´æ„½æ…‚æ…„æ…³æ…·æ…˜æ…™æ…šæ…«æ…´æ…¯æ…¥æ…±æ…Ÿæ…æ…“æ…µæ†™æ†–æ†‡æ†¬æ†”æ†šæ†Šæ†‘æ†«æ†®æ‡Œæ‡Šæ‡‰æ‡·æ‡ˆæ‡ƒæ‡†æ†ºæ‡‹ç½¹æ‡æ‡¦æ‡£æ‡¶æ‡ºæ‡´æ‡¿æ‡½æ‡¼æ‡¾æˆ€æˆˆæˆ‰æˆæˆŒæˆ”戛\"],[\"d9a1\",\"æˆžæˆ¡æˆªæˆ®æˆ°æˆ²æˆ³æ‰æ‰Žæ‰žæ‰£æ‰›æ‰ æ‰¨æ‰¼æŠ‚æŠ‰æ‰¾æŠ’æŠ“æŠ–æ‹”æŠƒæŠ”æ‹—æ‹‘æŠ»æ‹æ‹¿æ‹†æ“”æ‹ˆæ‹œæ‹Œæ‹Šæ‹‚æ‹‡æŠ›æ‹‰æŒŒæ‹®æ‹±æŒ§æŒ‚æŒˆæ‹¯æ‹µææŒ¾ææœææŽ–æŽŽæŽ€æŽ«æ¶æŽ£æŽæŽ‰æŽŸæŽµæ«æ©æŽ¾æ©æ€æ†æ£æ‰æ’æ¶æ„æ–æ´æ†æ“æ¦æ¶æ”æ—æ¨ææ‘§æ‘¯æ‘¶æ‘Žæ”ªæ’•撓撥撩撈撼\"],[\"daa1\",\"æ“šæ“’æ“…æ“‡æ’»æ“˜æ“‚æ“±æ“§èˆ‰æ“ æ“¡æŠ¬æ“£æ“¯æ”¬æ“¶æ“´æ“²æ“ºæ”€æ“½æ”˜æ”œæ”…æ”¤æ”£æ”«æ”´æ”µæ”·æ”¶æ”¸ç•‹æ•ˆæ•–æ••æ•æ•˜æ•žæ•æ•²æ•¸æ–‚æ–ƒè®Šæ–›æ–Ÿæ–«æ–·æ—ƒæ—†æ—æ—„æ—Œæ—’æ—›æ—™æ— æ—¡æ—±æ²æ˜Šæ˜ƒæ—»æ³æ˜µæ˜¶æ˜´æ˜œæ™æ™„æ™‰æ™æ™žæ™æ™¤æ™§æ™¨æ™Ÿæ™¢æ™°æšƒæšˆæšŽæš‰æš„æš˜æšæ›æš¹æ›‰æš¾æš¼\"],[\"dba1\",\"æ›„æš¸æ›–æ›šæ› æ˜¿æ›¦æ›©æ›°æ›µæ›·æœæœ–æœžæœ¦æœ§éœ¸æœ®æœ¿æœ¶ææœ¸æœ·æ†æžæ æ™æ£æ¤æž‰æ°æž©æ¼æªæžŒæž‹æž¦æž¡æž…æž·æŸ¯æž´æŸ¬æž³æŸ©æž¸æŸ¤æŸžæŸæŸ¢æŸ®æž¹æŸŽæŸ†æŸ§æªœæ žæ¡†æ ©æ¡€æ¡æ ²æ¡Žæ¢³æ «æ¡™æ¡£æ¡·æ¡¿æ¢Ÿæ¢æ¢æ¢”æ¢æ¢›æ¢ƒæª®æ¢¹æ¡´æ¢µæ¢ æ¢ºæ¤æ¢æ¡¾æ¤æ£Šæ¤ˆæ£˜æ¤¢æ¤¦æ£¡æ¤Œæ£\"],[\"dca1\",\"æ£”æ£§æ£•æ¤¶æ¤’æ¤„æ£—æ££æ¤¥æ£¹æ£ æ£¯æ¤¨æ¤ªæ¤šæ¤£æ¤¡æ£†æ¥¹æ¥·æ¥œæ¥¸æ¥«æ¥”æ¥¾æ¥®æ¤¹æ¥´æ¤½æ¥™æ¤°æ¥¡æ¥žæ¥æ¦æ¥ªæ¦²æ¦®æ§æ¦¿æ§æ§“æ¦¾æ§Žå¯¨æ§Šæ§æ¦»æ§ƒæ¦§æ¨®æ¦‘æ¦ æ¦œæ¦•æ¦´æ§žæ§¨æ¨‚æ¨›æ§¿æ¬Šæ§¹æ§²æ§§æ¨…æ¦±æ¨žæ§æ¨”æ§«æ¨Šæ¨’æ«æ¨£æ¨“æ©„æ¨Œæ©²æ¨¶æ©¸æ©‡æ©¢æ©™æ©¦æ©ˆæ¨¸æ¨¢æªæªæª 檄檢檣\"],[\"dda1\",\"æª—è˜—æª»æ«ƒæ«‚æª¸æª³æª¬æ«žæ«‘æ«Ÿæªªæ«šæ«ªæ«»æ¬…è˜–æ«ºæ¬’æ¬–é¬±æ¬Ÿæ¬¸æ¬·ç›œæ¬¹é£®æ‡æƒæ‰ææ™æ”æ›æŸæ¡æ¸æ¹æ¿æ®€æ®„æ®ƒæ®æ®˜æ®•æ®žæ®¤æ®ªæ®«æ®¯æ®²æ®±æ®³æ®·æ®¼æ¯†æ¯‹æ¯“æ¯Ÿæ¯¬æ¯«æ¯³æ¯¯éº¾æ°ˆæ°“æ°”æ°›æ°¤æ°£æ±žæ±•æ±¢æ±ªæ²‚æ²æ²šæ²æ²›æ±¾æ±¨æ±³æ²’æ²æ³„æ³±æ³“æ²½æ³—æ³…æ³æ²®æ²±æ²¾\"],[\"dea1\",\"æ²ºæ³›æ³¯æ³™æ³ªæ´Ÿè¡æ´¶æ´«æ´½æ´¸æ´™æ´µæ´³æ´’æ´Œæµ£æ¶“æµ¤æµšæµ¹æµ™æ¶Žæ¶•æ¿¤æ¶…æ·¹æ¸•æ¸Šæ¶µæ·‡æ·¦æ¶¸æ·†æ·¬æ·žæ·Œæ·¨æ·’æ·…æ·ºæ·™æ·¤æ·•æ·ªæ·®æ¸æ¹®æ¸®æ¸™æ¹²æ¹Ÿæ¸¾æ¸£æ¹«æ¸«æ¹¶æ¹æ¸Ÿæ¹ƒæ¸ºæ¹Žæ¸¤æ»¿æ¸æ¸¸æº‚æºªæº˜æ»‰æº·æ»“æº½æº¯æ»„æº²æ»”æ»•æºæº¥æ»‚æºŸæ½æ¼‘çŒæ»¬æ»¸æ»¾æ¼¿æ»²æ¼±æ»¯æ¼²æ»Œ\"],[\"dfa1\",\"æ¼¾æ¼“æ»·æ¾†æ½ºæ½¸æ¾æ¾€æ½¯æ½›æ¿³æ½æ¾‚潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑ç€ç€æ¿¾ç€›ç€šæ½´ç€ç€˜ç€Ÿç€°ç€¾ç€²ç‘ç£ç‚™ç‚’炯烱炬炸炳炮烟烋çƒçƒ™ç„‰çƒ½ç„œç„™ç…¥ç…•熈煦煢煌煖煬ç†ç‡»ç†„ç†•ç†¨ç†¬ç‡—ç†¹ç†¾ç‡’ç‡‰ç‡”ç‡Žç‡ ç‡¬ç‡§ç‡µç‡¼\"],[\"e0a1\",\"燹燿çˆçˆçˆ›çˆ¨çˆçˆ¬çˆ°çˆ²çˆ»çˆ¼çˆ¿ç‰€ç‰†ç‰‹ç‰˜ç‰´ç‰¾çŠ‚çŠçŠ‡çŠ’çŠ–çŠ¢çŠ§çŠ¹çŠ²ç‹ƒç‹†ç‹„ç‹Žç‹’ç‹¢ç‹ ç‹¡ç‹¹ç‹·å€çŒ—猊猜猖çŒçŒ´çŒ¯çŒ©çŒ¥çŒ¾çŽç默ç—çªç¨ç°ç¸çµç»çºçˆç޳çŽçŽ»ç€ç¥ç®çžç’¢ç…瑯ç¥ç¸ç²çºç‘•ç¿ç‘Ÿç‘™ç‘瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊ç“ç“”ç±\"],[\"e1a1\",\"ç“ ç“£ç“§ç“©ç“®ç“²ç“°ç“±ç“¸ç“·ç”„ç”ƒç”…ç”Œç”Žç”甕甓甞甦甬甼畄ç•畊畉畛畆畚畩畤畧畫ç•畸當疆疇畴疊疉疂疔疚ç–疥疣痂疳痃疵疽疸疼疱ç—痊痒痙痣痞痾痿痼ç˜ç—°ç—ºç—²ç—³ç˜‹ç˜ç˜‰ç˜Ÿç˜§ç˜ 瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰\"],[\"e2a1\",\"癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂ç›ç›–盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸ç‡çšç¨ç«ç›ç¥ç¿ç¾ç¹çžŽçž‹çž‘çž çžžçž°çž¶çž¹çž¿çž¼çž½çž»çŸ‡çŸçŸ—çŸšçŸœçŸ£çŸ®çŸ¼ç Œç ’ç¤¦ç 礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬\"],[\"e3a1\",\"ç£§ç£šç£½ç£´ç¤‡ç¤’ç¤‘ç¤™ç¤¬ç¤«ç¥€ç¥ ç¥—ç¥Ÿç¥šç¥•ç¥“ç¥ºç¥¿ç¦Šç¦ç¦§é½‹ç¦ªç¦®ç¦³ç¦¹ç¦ºç§‰ç§•秧秬秡秣稈ç¨ç¨˜ç¨™ç¨ 稟禀稱稻稾稷穃穗穉穡穢穩é¾ç©°ç©¹ç©½çªˆçª—窕窘窖窩竈窰窶竅竄窿邃竇竊ç«ç«ç«•竓站竚ç«ç«¡ç«¢ç«¦ç«ç«°ç¬‚ç¬ç¬Šç¬†ç¬³ç¬˜ç¬™ç¬žç¬µç¬¨ç¬¶ç\"],[\"e4a1\",\"çºç¬„ç笋çŒç…çµç¥ç´ç§ç°ç±ç¬ç®ç®ç®˜ç®Ÿç®ç®œç®šç®‹ç®’ç®ç箙篋ç¯ç¯Œç¯ç®´ç¯†ç¯ç¯©ç°‘ç°”ç¯¦ç¯¥ç± ç°€ç°‡ç°“ç¯³ç¯·ç°—ç°ç¯¶ç°£ç°§ç°ªç°Ÿç°·ç°«ç°½ç±Œç±ƒç±”ç±ç±€ç±ç±˜ç±Ÿç±¤ç±–籥籬籵粃ç²ç²¤ç²ç²¢ç²«ç²¡ç²¨ç²³ç²²ç²±ç²®ç²¹ç²½ç³€ç³…糂糘糒糜糢鬻糯糲糴糶糺紆\"],[\"e5a1\",\"紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮çµçµ£ç¶“綉絛ç¶çµ½ç¶›ç¶ºç¶®ç¶£ç¶µç·‡ç¶½ç¶«ç¸½ç¶¢ç¶¯ç·œç¶¸ç¶Ÿç¶°ç·˜ç·ç·¤ç·žç·»ç·²ç·¡ç¸…縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧ç¹ç¹–繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒çºçº“纔纖纎纛纜缸缺\"],[\"e6a1\",\"罅罌ç½ç½Žç½ç½‘ç½•ç½”ç½˜ç½Ÿç½ ç½¨ç½©ç½§ç½¸ç¾‚ç¾†ç¾ƒç¾ˆç¾‡ç¾Œç¾”ç¾žç¾ç¾šç¾£ç¾¯ç¾²ç¾¹ç¾®ç¾¶ç¾¸è±ç¿…翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻èŠè†è’è˜èšèŸè¢è¨è³è²è°è¶è¹è½è¿è‚„肆肅肛肓肚è‚å†è‚¬èƒ›èƒ¥èƒ™èƒèƒ„胚胖脉胯胱脛脩脣脯腋\"],[\"e7a1\",\"éš‹è…†è„¾è…“è…‘èƒ¼è…±è…®è…¥è…¦è…´è†ƒè†ˆè†Šè†€è†‚è† è†•è†¤è†£è…Ÿè†“è†©è†°è†µè†¾è†¸è†½è‡€è‡‚è†ºè‡‰è‡è‡‘è‡™è‡˜è‡ˆè‡šè‡Ÿè‡ è‡§è‡ºè‡»è‡¾èˆèˆ‚舅與舊èˆèˆèˆ–舩舫舸舳艀艙艘è‰è‰šè‰Ÿè‰¤è‰¢è‰¨è‰ªè‰«èˆ®è‰±è‰·è‰¸è‰¾èŠèŠ’èŠ«èŠŸèŠ»èŠ¬è‹¡è‹£è‹Ÿè‹’è‹´è‹³è‹ºèŽ“èŒƒè‹»è‹¹è‹žèŒ†è‹œèŒ‰è‹™\"],[\"e8a1\",\"茵茴茖茲茱è€èŒ¹èè…茯茫茗茘莅莚莪莟莢莖茣莎莇莊è¼è޵è³èµèŽ èŽ‰èŽ¨è´è“è«èŽè½èƒè˜è‹èè·è‡è è²èè¢è 莽è¸è”†è»è‘èªè¼è•šè’„è‘·è‘«è’葮蒂葩葆è¬è‘¯è‘¹èµè“Šè‘¢è’¹è’¿è’Ÿè“™è“蒻蓚è“è“蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈\"],[\"e9a1\",\"è•蘂蕋蕕薀薤薈薑薊薨è•薔薛藪薇薜蕷蕾è–藉薺è—è–¹è—è—•è—藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿è™ä¹•è™”è™Ÿè™§è™±èš“èš£èš©èšªèš‹èšŒèš¶èš¯è›„è›†èš°è›‰è £èš«è›”è›žè›©è›¬è›Ÿè››è›¯èœ’èœ†èœˆèœ€èœƒè›»èœ‘èœ‰èœè›¹èœŠèœ´èœ¿èœ·èœ»èœ¥èœ©èœšè èŸè¸èŒèŽè´è—è¨è®è™\"],[\"eaa1\",\"è“è£èªè …螢螟螂螯蟋螽蟀èŸé›–èž«èŸ„èž³èŸ‡èŸ†èž»èŸ¯èŸ²èŸ è è èŸ¾èŸ¶èŸ·è ŽèŸ’è ‘è –è •è ¢è ¡è ±è ¶è ¹è §è »è¡„è¡‚è¡’è¡™è¡žè¡¢è¡«è¢è¡¾è¢žè¡µè¡½è¢µè¡²è¢‚袗袒袮袙袢è¢è¢¤è¢°è¢¿è¢±è£ƒè£„裔裘裙è£è£¹è¤‚裼裴裨裲褄褌褊褓襃褞褥褪褫è¥è¥„褻褶褸襌è¤è¥ 襞\"],[\"eba1\",\"襦襤è¥è¥ªè¥¯è¥´è¥·è¥¾è¦ƒè¦ˆè¦Šè¦“覘覡覩覦覬覯覲覺覽覿觀觚觜è§è§§è§´è§¸è¨ƒè¨–è¨è¨Œè¨›è¨è¨¥è¨¶è©è©›è©’詆詈詼è©è©¬è©¢èª…誂誄誨誡誑誥誦誚誣諄è«è«‚è«šè««è«³è«§è«¤è«±è¬”è« è«¢è«·è«žè«›è¬Œè¬‡è¬šè«¡è¬–è¬è¬—è¬ è¬³éž«è¬¦è¬«è¬¾è¬¨èèŒèèŽè‰è–è›èšè«\"],[\"eca1\",\"èŸè¬è¯è´è½è®€è®Œè®Žè®’讓讖讙讚谺è±è°¿è±ˆè±Œè±Žè±è±•豢豬豸豺貂貉貅貊è²è²Žè²”豼貘æˆè²è²ªè²½è²²è²³è²®è²¶è³ˆè³è³¤è³£è³šè³½è³ºè³»è´„è´…è´Šè´‡è´è´è´é½Žè´“è³è´”è´–èµ§èµèµ±èµ³è¶è¶™è·‚趾趺è·è·šè·–跌跛跋跪跫跟跣跼踈踉跿è¸è¸žè¸è¸Ÿè¹‚踵踰踴蹊\"],[\"eda1\",\"蹇蹉蹌è¹è¹ˆè¹™è¹¤è¹ 踪蹣蹕蹶蹲蹼èºèº‡èº…躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣è¾è¾¯è¾·è¿šè¿¥è¿¢è¿ªè¿¯é‚‡è¿´é€…迹迺逑逕逡é€é€žé€–逋逧逶逵逹迸\"],[\"eea1\",\"ééé‘é’逎é‰é€¾é–é˜éžé¨é¯é¶éš¨é²é‚‚é½é‚邀邊邉é‚邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀é‡é‡‰é‡‹é‡é‡–釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋é‰éŠœéŠ–éŠ“éŠ›é‰šé‹éŠ¹éŠ·é‹©éŒé‹ºé„錮\"],[\"efa1\",\"錙錢錚錣錺錵錻éœé é¼é®é–鎰鎬éŽéŽ”éŽ¹é–é—é¨é¥é˜éƒéééˆé¤éšé”é“éƒé‡éé¶é«éµé¡éºé‘é‘’é‘„é‘›é‘ é‘¢é‘žé‘ªéˆ©é‘°é‘µé‘·é‘½é‘šé‘¼é‘¾é’é‘¿é–‚é–‡é–Šé–”é––é–˜é–™é– é–¨é–§é–閼閻閹閾闊濶闃é—闌闕闔闖關闡闥闢阡阨阮阯陂陌é™é™‹é™·é™œé™ž\"],[\"f0a1\",\"é™é™Ÿé™¦é™²é™¬éšéš˜éš•隗險隧隱隲隰隴隶隸隹雎雋雉é›è¥é›œéœé›•雹霄霆霈霓霎霑éœéœ–霙霤霪霰霹霽霾é„é†éˆé‚é‰éœé é¤é¦é¨å‹’é«é±é¹éž…é¼éžéºéž†éž‹éžéžéžœéž¨éž¦éž£éž³éž´éŸƒéŸ†éŸˆéŸ‹éŸœéŸé½éŸ²ç«ŸéŸ¶éŸµé é Œé ¸é ¤é ¡é ·é ½é¡†é¡é¡‹é¡«é¡¯é¡°\"],[\"f1a1\",\"顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡é¤é¤žé¤¤é¤ 餬餮餽餾饂饉饅é¥é¥‹é¥‘饒饌饕馗馘馥é¦é¦®é¦¼é§Ÿé§›é§é§˜é§‘é§é§®é§±é§²é§»é§¸é¨é¨é¨…駢騙騫騷驅驂驀驃騾驕é©é©›é©—驟驢驥驤驩驫驪éªéª°éª¼é«€é«é«‘髓體髞髟髢髣髦髯髫髮髴髱髷\"],[\"f2a1\",\"髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲é„éƒéééŽé‘é˜é´é®“é®ƒé®‘é®–é®—é®Ÿé® é®¨é®´é¯€é¯Šé®¹é¯†é¯é¯‘é¯’é¯£é¯¢é¯¤é¯”é¯¡é°ºé¯²é¯±é¯°é°•é°”é°‰é°“é°Œé°†é°ˆé°’é°Šé°„é°®é°›é°¥é°¤é°¡é°°é±‡é°²é±†é°¾é±šé± é±§é±¶é±¸é³§é³¬é³°é´‰é´ˆé³«é´ƒé´†é´ªé´¦é¶¯é´£é´Ÿéµ„é´•é´’éµé´¿é´¾éµ†éµˆ\"],[\"f3a1\",\"éµéµžéµ¤éµ‘éµéµ™éµ²é¶‰é¶‡é¶«éµ¯éµºé¶šé¶¤é¶©é¶²é·„é·é¶»é¶¸é¶ºé·†é·é·‚鷙鷓鷸鷦é·é·¯é·½é¸šé¸›é¸žé¹µé¹¹é¹½éºéºˆéº‹éºŒéº’麕麑éºéº¥éº©éº¸éºªéºé¡é»Œé»Žé»é»é»”黜點é»é» é»¥é»¨é»¯é»´é»¶é»·é»¹é»»é»¼é»½é¼‡é¼ˆçš·é¼•é¼¡é¼¬é¼¾é½Šé½’é½”é½£é½Ÿé½ é½¡é½¦é½§é½¬é½ªé½·é½²é½¶é¾•é¾œé¾ \"],[\"f4a1\",\"å ¯æ§‡é™ç‘¤å‡œç†™\"],[\"f9a1\",\"纊褜éˆéŠˆè“œä¿‰ç‚»æ˜±æ£ˆé‹¹æ›»å½…ä¸¨ä»¡ä»¼ä¼€ä¼ƒä¼¹ä½–ä¾’ä¾Šä¾šä¾”ä¿å€å€¢ä¿¿å€žå†å°å‚傔僴僘兊兤å†å†¾å‡¬åˆ•劜劦勀勛匀匇匤å²åŽ“åŽ²å﨎咜咊咩哿喆å™å¥åž¬åŸˆåŸ‡ï¨ï¨å¢žå¢²å¤‹å¥“奛å¥å¥£å¦¤å¦ºå–寀甯寘寬尞岦岺峵崧嵓﨑嵂åµå¶¸å¶¹å·å¼¡å¼´å½§å¾·\"],[\"faa1\",\"å¿žææ‚…æ‚Šæƒžæƒ•æ„ æƒ²æ„‘æ„·æ„°æ†˜æˆ“æŠ¦æµæ‘ æ’æ“Žæ•Žæ˜€æ˜•æ˜»æ˜‰æ˜®æ˜žæ˜¤æ™¥æ™—æ™™ï¨’æ™³æš™æš æš²æš¿æ›ºæœŽï¤©æ¦æž»æ¡’æŸ€æ æ¡„æ£ï¨“æ¥¨ï¨”æ¦˜æ§¢æ¨°æ©«æ©†æ©³æ©¾æ«¢æ«¤æ¯–æ°¿æ±œæ²†æ±¯æ³šæ´„æ¶‡æµ¯æ¶–æ¶¬æ·æ·¸æ·²æ·¼æ¸¹æ¹œæ¸§æ¸¼æº¿æ¾ˆæ¾µæ¿µç€…瀇瀨炅炫ç„焄煜煆煇凞ç‡ç‡¾çб\"],[\"fba1\",\"犾猤猪ç·ç޽ç‰ç–ç£ç’ç‡çµç¦çªç©ç®ç‘¢ç’‰ç’Ÿç”畯皂皜皞皛皦益ç†åŠ¯ç ¡ç¡Žç¡¤ç¡ºç¤°ï¨˜ï¨™ï¨šç¦”ï¨›ç¦›ç«‘ç«§ï¨œç««ç®žï¨çµˆçµœç¶·ç¶ 緖繒罇羡羽èŒè¢è¿è‡è¶è‘ˆè’´è•“è•™è•«ï¨Ÿè–°ï¨ ï¨¡è ‡è£µè¨’è¨·è©¹èª§èª¾è«Ÿï¨¢è«¶è“è¿è³°è³´è´’赶﨣è»ï¨¤ï¨¥é§éƒžï¨¦é„•鄧釚\"],[\"fca1\",\"釗釞é‡é‡®é‡¤é‡¥éˆ†éˆéˆŠéˆºé‰€éˆ¼é‰Žé‰™é‰‘鈹鉧銧鉷鉸鋧鋗鋙é‹ï¨§é‹•é‹ é‹“éŒ¥éŒ¡é‹»ï¨¨éŒžé‹¿éŒéŒ‚é°é—鎤é†éžé¸é±é‘…鑈閒隆﨩éšéš¯éœ³éœ»éƒééé‘é•顗顥飯飼餧館馞驎髙髜éµé²é®é®±é®»é°€éµ°éµ«ï¨é¸™é»‘\"],[\"fcf1\",\"â…°\",9,\"¬¦'"\"],[\"8fa2af\",\"˘ˇ¸˙˯˛˚~΄΅\"],[\"8fa2c2\",\"¡¦¿\"],[\"8fa2eb\",\"ºª©®™¤№\"],[\"8fa6e1\",\"ΆΈΉΊΪ\"],[\"8fa6e7\",\"ÎŒ\"],[\"8fa6e9\",\"ΎΫ\"],[\"8fa6ec\",\"Î\"],[\"8fa6f1\",\"άÎήίϊÎόςÏϋΰώ\"],[\"8fa7c2\",\"Ђ\",10,\"ÐŽÐ\"],[\"8fa7f2\",\"Ñ’\",10,\"ўџ\"],[\"8fa9a1\",\"ÆÄ\"],[\"8fa9a4\",\"Ħ\"],[\"8fa9a6\",\"IJ\"],[\"8fa9a8\",\"ÅÄ¿\"],[\"8fa9ab\",\"ŊØŒ\"],[\"8fa9af\",\"ŦÞ\"],[\"8fa9c1\",\"æđðħıijĸłŀʼnŋøœßŧþ\"],[\"8faaa1\",\"ÃÀÄÂĂÇĀĄÅÃĆĈČÇĊĎÉÈËÊĚĖĒĘ\"],[\"8faaba\",\"ÄœÄžÄ¢Ä Ä¤ÃÃŒÃÃŽÇİĪĮĨĴĶĹĽĻŃŇŅÑÓÒÖÔǑÅŌÕŔŘŖŚŜŠŞŤŢÚÙÜÛŬǓŰŪŲŮŨǗǛǙǕŴßŶŹŽŻ\"],[\"8faba1\",\"áà äâăǎÄąåãćĉÄçċÄéèëêěėēęǵÄÄŸ\"],[\"8fabbd\",\"ġĥÃìïîÇ\"],[\"8fabc5\",\"īįĩĵķĺľļńňņñóòöôǒőÅõŕřŗśÅšşťţúùüûÅǔűūųůũǘǜǚǖŵýÿŷźžż\"],[\"8fb0a1\",\"丂丄丅丌丒丟丣两丨丫丮丯丰丵乀ä¹ä¹„乇乑乚乜乣乨乩乴乵乹乿äºäº–亗äºäº¯äº¹ä»ƒä»ä»šä»›ä» ä»¡ä»¢ä»¨ä»¯ä»±ä»³ä»µä»½ä»¾ä»¿ä¼€ä¼‚ä¼ƒä¼ˆä¼‹ä¼Œä¼’ä¼•ä¼–ä¼—ä¼™ä¼®ä¼±ä½ ä¼³ä¼µä¼·ä¼¹ä¼»ä¼¾ä½€ä½‚ä½ˆä½‰ä½‹ä½Œä½’ä½”ä½–ä½˜ä½Ÿä½£ä½ªä½¬ä½®ä½±ä½·ä½¸ä½¹ä½ºä½½ä½¾ä¾ä¾‚侄\"],[\"8fb1a1\",\"侅侉侊侌侎ä¾ä¾’侓侔侗侙侚侞侟侲侷侹侻侼侽侾俀ä¿ä¿…俆俈俉俋俌ä¿ä¿ä¿’ä¿œä¿ ä¿¢ä¿°ä¿²ä¿¼ä¿½ä¿¿å€€å€å€„倇倊倌倎å€å€“倗倘倛倜å€å€žå€¢å€§å€®å€°å€²å€³å€µå€åå‚å…å†åŠåŒåŽå‘å’å“å—å™åŸå å¢å£å¦å§åªåå°å±å€»å‚傃傄傆傊傎å‚å‚\"],[\"8fb2a1\",\"傒傓傔傖傛傜傞\",4,\"傪傯傰傹傺傽僀僃僄僇僌僎åƒåƒ“僔僘僜åƒåƒŸåƒ¢åƒ¤åƒ¦åƒ¨åƒ©åƒ¯åƒ±åƒ¶åƒºåƒ¾å„ƒå„†å„‡å„ˆå„‹å„Œå„儎僲å„儗儙儛儜å„儞儣儧儨儬å„儯儱儳儴儵儸儹兂兊å…兓兕兗兘兟兤兦兾冃冄冋冎冘å†å†¡å†£å†å†¸å†ºå†¼å†¾å†¿å‡‚\"],[\"8fb3a1\",\"凈å‡å‡‘凒凓凕凘凞凢凥凮凲凳凴凷åˆåˆ‚åˆ…åˆ’åˆ“åˆ•åˆ–åˆ˜åˆ¢åˆ¨åˆ±åˆ²åˆµåˆ¼å‰…å‰‰å‰•å‰—å‰˜å‰šå‰œå‰Ÿå‰ å‰¡å‰¦å‰®å‰·å‰¸å‰¹åŠ€åŠ‚åŠ…åŠŠåŠŒåŠ“åŠ•åŠ–åŠ—åŠ˜åŠšåŠœåŠ¤åŠ¥åŠ¦åŠ§åŠ¯åŠ°åŠ¶åŠ·åŠ¸åŠºåŠ»åŠ½å‹€å‹„å‹†å‹ˆå‹Œå‹å‹‘勔勖勛勜勡勥勨勩勪勬勰勱勴勶勷匀匃匊匋\"],[\"8fb4a1\",\"匌匑匓匘匛匜匞匟匥匧匨匩匫匬åŒåŒ°åŒ²åŒµåŒ¼åŒ½åŒ¾å‚åŒå‹å™å›å¡å£å¥å¬åå²å¹å¾åŽƒåŽ‡åŽˆåŽŽåŽ“åŽ”åŽ™åŽåŽ¡åŽ¤åŽªåŽ«åŽ¯åŽ²åŽ´åŽµåŽ·åŽ¸åŽºåŽ½å€å…åå’å“å•åšååžå å¦å§åµå‚å“åšå¡å§å¨åªå¯å±å´åµå‘ƒå‘„呇å‘å‘呞呢呤呦呧呩呫å‘呮呴呿\"],[\"8fb5a1\",\"å’咃咅咈咉å’咑咕咖咜咟咡咦咧咩咪å’咮咱咷咹咺咻咿哆哊å“å“Žå“ å“ªå“¬å“¯å“¶å“¼å“¾å“¿å”€å”唅唈唉唌å”唎唕唪唫唲唵唶唻唼唽å•啇啉啊å•å•å•‘å•˜å•šå•›å•žå• å•¡å•¤å•¦å•¿å–喂喆喈喎å–喑喒喓喔喗喣喤å–喲喿å—嗃嗆嗉嗋嗌嗎嗑嗒\"],[\"8fb6a1\",\"嗓嗗嗘嗛嗞嗢嗩嗶嗿嘅嘈嘊å˜\",5,\"嘙嘬嘰嘳嘵嘷嘹嘻嘼嘽嘿噀å™å™ƒå™„噆噉噋å™å™å™”å™žå™ å™¡å™¢å™£å™¦å™©å™å™¯å™±å™²å™µåš„嚅嚈嚋嚌嚕嚙嚚åšåšžåšŸåš¦åš§åš¨åš©åš«åš¬åšåš±åš³åš·åš¾å›…囉囊囋å›å›å›Œå›å›™å›œå›å›Ÿå›¡å›¤\",4,\"囱囫å›\"],[\"8fb7a1\",\"å›¶å›·åœåœ‚圇圊圌圑圕圚圛åœåœ 圢圣圤圥圩圪圬圮圯圳圴圽圾圿å…å†åŒåå’å¢å¥å§å¨å«å\",4,\"å³å´åµå·å¹åºå»å¼å¾åžåžƒåžŒåž”垗垙垚垜åžåžžåžŸåž¡åž•垧垨垩垬垸垽埇埈埌åŸåŸ•åŸåŸžåŸ¤åŸ¦åŸ§åŸ©åŸåŸ°åŸµåŸ¶åŸ¸åŸ½åŸ¾åŸ¿å ƒå „å ˆå ‰åŸ¡\"],[\"8fb8a1\",\"å Œå å ›å žå Ÿå å ¦å §å å ²å ¹å ¿å¡‰å¡Œå¡å¡å¡å¡•塟塡塤塧塨塸塼塿墀å¢å¢‡å¢ˆå¢‰å¢Šå¢Œå¢å¢å¢å¢”墖å¢å¢ 墡墢墦墩墱墲壄墼壂壈å£å£Žå£å£’壔壖壚å£å£¡å£¢å£©å£³å¤…夆夋夌夒夓夔è™å¤å¤¡å¤£å¤¤å¤¨å¤¯å¤°å¤³å¤µå¤¶å¤¿å¥ƒå¥†å¥’奓奙奛å¥å¥žå¥Ÿå¥¡å¥£å¥«å¥\"],[\"8fb9a1\",\"奯奲奵奶她奻奼妋妌妎妒妕妗妟妤妧å¦å¦®å¦¯å¦°å¦³å¦·å¦ºå¦¼å§å§ƒå§„姈姊å§å§’å§å§žå§Ÿå§£å§¤å§§å§®å§¯å§±å§²å§´å§·å¨€å¨„娌å¨å¨Žå¨’娓娞娣娤娧娨娪å¨å¨°å©„婅婇婈婌å©å©•婞婣婥婧å©å©·å©ºå©»å©¾åª‹åªåª“åª–åª™åªœåªžåªŸåª åª¢åª§åª¬åª±åª²åª³åªµåª¸åªºåª»åª¿\"],[\"8fbaa1\",\"嫄嫆嫈å«å«šå«œå« 嫥嫪嫮嫵嫶嫽嬀å¬å¬ˆå¬—嬴嬙嬛å¬å¬¡å¬¥å¬å¬¸åå‹åŒå’å–åžå¨å®å¯å¼å½å¾å¿å®å®„宆宊宎å®å®‘宓宔宖宨宩宬å®å®¯å®±å®²å®·å®ºå®¼å¯€å¯å¯å¯å¯–\",4,\"å¯ å¯¯å¯±å¯´å¯½å°Œå°—å°žå°Ÿå°£å°¦å°©å°«å°¬å°®å°°å°²å°µå°¶å±™å±šå±œå±¢å±£å±§å±¨å±©\"],[\"8fbba1\",\"å±å±°å±´å±µå±ºå±»å±¼å±½å²‡å²ˆå²Šå²å²’å²å²Ÿå² 岢岣岦岪岲岴岵岺峉峋峒å³å³—峮峱峲峴å´å´†å´å´’å´«å´£å´¤å´¦å´§å´±å´´å´¹å´½å´¿åµ‚åµƒåµ†åµˆåµ•åµ‘åµ™åµŠåµŸåµ åµ¡åµ¢åµ¤åµªåµåµ°åµ¹åµºåµ¾åµ¿å¶å¶ƒå¶ˆå¶Šå¶’å¶“å¶”å¶•å¶™å¶›å¶Ÿå¶ å¶§å¶«å¶°å¶´å¶¸å¶¹å·ƒå·‡å·‹å·å·Žå·˜å·™å· å·¤\"],[\"8fbca1\",\"巩巸巹帀帇å¸å¸’å¸”å¸•å¸˜å¸Ÿå¸ å¸®å¸¨å¸²å¸µå¸¾å¹‹å¹å¹‰å¹‘幖幘幛幜幞幨幪\",4,\"幰庀庋庎庢庤庥庨庪庬庱庳庽庾庿廆廌廋廎廑廒廔廕廜廞廥廫异弆弇弈弎弙弜å¼å¼¡å¼¢å¼£å¼¤å¼¨å¼«å¼¬å¼®å¼°å¼´å¼¶å¼»å¼½å¼¿å½€å½„彅彇å½å½å½”å½˜å½›å½ å½£å½¤å½§\"],[\"8fbda1\",\"彯彲彴彵彸彺彽彾徉å¾å¾å¾–徜å¾å¾¢å¾§å¾«å¾¤å¾¬å¾¯å¾°å¾±å¾¸å¿„忇忈忉忋å¿\",4,\"忞忡忢忨忩忪忬å¿å¿®å¿¯å¿²å¿³å¿¶å¿ºå¿¼æ€‡æ€Šæ€æ€“æ€”æ€—æ€˜æ€šæ€Ÿæ€¤æ€æ€³æ€µæ€æ‡æˆæ‰æŒæ‘æ”æ–æ—ææ¡æ§æ±æ¾æ¿æ‚‚æ‚†æ‚ˆæ‚Šæ‚Žæ‚‘æ‚“æ‚•æ‚˜æ‚æ‚žæ‚¢æ‚¤æ‚¥æ‚¨æ‚°æ‚±æ‚·\"],[\"8fbea1\",\"æ‚»æ‚¾æƒ‚æƒ„æƒˆæƒ‰æƒŠæƒ‹æƒŽæƒæƒ”æƒ•æƒ™æƒ›æƒæƒžæƒ¢æƒ¥æƒ²æƒµæƒ¸æƒ¼æƒ½æ„‚愇愊愌æ„\",4,\"æ„–æ„—æ„™æ„œæ„žæ„¢æ„ªæ„«æ„°æ„±æ„µæ„¶æ„·æ„¹æ…æ……æ…†æ…‰æ…žæ… æ…¬æ…²æ…¸æ…»æ…¼æ…¿æ†€æ†æ†ƒæ†„æ†‹æ†æ†’æ†“æ†—æ†˜æ†œæ†æ†Ÿæ† æ†¥æ†¨æ†ªæ†æ†¸æ†¹æ†¼æ‡€æ‡æ‡‚æ‡Žæ‡æ‡•æ‡œæ‡æ‡žæ‡Ÿæ‡¡æ‡¢æ‡§æ‡©æ‡¥\"],[\"8fbfa1\",\"æ‡¬æ‡æ‡¯æˆæˆƒæˆ„æˆ‡æˆ“æˆ•æˆœæˆ æˆ¢æˆ£æˆ§æˆ©æˆ«æˆ¹æˆ½æ‰‚æ‰ƒæ‰„æ‰†æ‰Œæ‰æ‰‘æ‰’æ‰”æ‰–æ‰šæ‰œæ‰¤æ‰æ‰¯æ‰³æ‰ºæ‰½æŠæŠŽæŠæŠæŠ¦æŠ¨æŠ³æŠ¶æŠ·æŠºæŠ¾æŠ¿æ‹„æ‹Žæ‹•æ‹–æ‹šæ‹ªæ‹²æ‹´æ‹¼æ‹½æŒƒæŒ„æŒŠæŒ‹æŒæŒæŒ“æŒ–æŒ˜æŒ©æŒªæŒæŒµæŒ¶æŒ¹æŒ¼ææ‚æƒæ„æ†æŠæ‹æŽæ’æ“æ”æ˜æ›æ¥æ¦æ¬ææ±æ´æµ\"],[\"8fc0a1\",\"æ¸æ¼æ½æ¿æŽ‚æŽ„æŽ‡æŽŠæŽæŽ”æŽ•æŽ™æŽšæŽžæŽ¤æŽ¦æŽæŽ®æŽ¯æŽ½ææ…æˆæŽæ‘æ“æ”æ•æœæ æ¥æªæ¬æ²æ³æµæ¸æ¹æ‰æŠææ’æ”æ˜æžæ æ¢æ¤æ¥æ©æªæ¯æ°æµæ½æ¿æ‘‹æ‘æ‘‘æ‘’æ‘“æ‘”æ‘šæ‘›æ‘œæ‘æ‘Ÿæ‘ æ‘¡æ‘£æ‘æ‘³æ‘´æ‘»æ‘½æ’…æ’‡æ’æ’æ’‘æ’˜æ’™æ’›æ’æ’Ÿæ’¡æ’£æ’¦æ’¨æ’¬æ’³æ’½æ’¾æ’¿\"],[\"8fc1a1\",\"æ“„æ“‰æ“Šæ“‹æ“Œæ“Žæ“æ“‘æ“•æ“—æ“¤æ“¥æ“©æ“ªæ“æ“°æ“µæ“·æ“»æ“¿æ”æ”„æ”ˆæ”‰æ”Šæ”æ”“æ””æ”–æ”™æ”›æ”žæ”Ÿæ”¢æ”¦æ”©æ”®æ”±æ”ºæ”¼æ”½æ•ƒæ•‡æ•‰æ•æ•’æ•”æ•Ÿæ• æ•§æ•«æ•ºæ•½æ–æ–…æ–Šæ–’æ–•æ–˜æ–æ– æ–£æ–¦æ–®æ–²æ–³æ–´æ–¿æ—‚æ—ˆæ—‰æ—Žæ—æ—”æ—–æ—˜æ—Ÿæ—°æ—²æ—´æ—µæ—¹æ—¾æ—¿æ˜€æ˜„æ˜ˆæ˜‰æ˜æ˜‘昒昕昖æ˜\"],[\"8fc2a1\",\"æ˜žæ˜¡æ˜¢æ˜£æ˜¤æ˜¦æ˜©æ˜ªæ˜«æ˜¬æ˜®æ˜°æ˜±æ˜³æ˜¹æ˜·æ™€æ™…æ™†æ™Šæ™Œæ™‘æ™Žæ™—æ™˜æ™™æ™›æ™œæ™ æ™¡æ›»æ™ªæ™«æ™¬æ™¾æ™³æ™µæ™¿æ™·æ™¸æ™¹æ™»æš€æ™¼æš‹æšŒæšæšæš’æš™æššæš›æšœæšŸæš æš¤æšæš±æš²æšµæš»æš¿æ›€æ›‚æ›ƒæ›ˆæ›Œæ›Žæ›æ›”æ››æ›Ÿæ›¨æ›«æ›¬æ›®æ›ºæœ…æœ‡æœŽæœ“æœ™æœœæœ æœ¢æœ³æœ¾æ…æ‡æˆæŒæ”æ•æ\"],[\"8fc3a1\",\"æ¦æ¬æ®æ´æ¶æ»æžæž„æžŽæžæž‘æž“æž–æž˜æž™æž›æž°æž±æž²æžµæž»æž¼æž½æŸ¹æŸ€æŸ‚æŸƒæŸ…æŸˆæŸ‰æŸ’æŸ—æŸ™æŸœæŸ¡æŸ¦æŸ°æŸ²æŸ¶æŸ·æ¡’æ ”æ ™æ æ Ÿæ ¨æ §æ ¬æ æ ¯æ °æ ±æ ³æ »æ ¿æ¡„æ¡…æ¡Šæ¡Œæ¡•æ¡—æ¡˜æ¡›æ¡«æ¡®\",4,\"桵桹桺桻桼梂梄梆梈梖梘梚梜梡梣梥梩梪梮梲梻棅棈棌æ£\"],[\"8fc4a1\",\"æ£æ£‘æ£“æ£–æ£™æ£œæ£æ£¥æ£¨æ£ªæ£«æ£¬æ£æ£°æ£±æ£µæ£¶æ£»æ£¼æ£½æ¤†æ¤‰æ¤Šæ¤æ¤‘æ¤“æ¤–æ¤—æ¤±æ¤³æ¤µæ¤¸æ¤»æ¥‚æ¥…æ¥‰æ¥Žæ¥—æ¥›æ¥£æ¥¤æ¥¥æ¥¦æ¥¨æ¥©æ¥¬æ¥°æ¥±æ¥²æ¥ºæ¥»æ¥¿æ¦€æ¦æ¦’æ¦–æ¦˜æ¦¡æ¦¥æ¦¦æ¦¨æ¦«æ¦æ¦¯æ¦·æ¦¸æ¦ºæ¦¼æ§…æ§ˆæ§‘æ§–æ§—æ§¢æ§¥æ§®æ§¯æ§±æ§³æ§µæ§¾æ¨€æ¨æ¨ƒæ¨æ¨‘æ¨•æ¨šæ¨æ¨ 樤樨樰樲\"],[\"8fc5a1\",\"æ¨´æ¨·æ¨»æ¨¾æ¨¿æ©…æ©†æ©‰æ©Šæ©Žæ©æ©‘æ©’æ©•æ©–æ©›æ©¤æ©§æ©ªæ©±æ©³æ©¾æªæªƒæª†æª‡æª‰æª‹æª‘æª›æªæªžæªŸæª¥æª«æª¯æª°æª±æª´æª½æª¾æª¿æ«†æ«‰æ«ˆæ«Œæ«æ«”æ«•æ«–æ«œæ«æ«¤æ«§æ«¬æ«°æ«±æ«²æ«¼æ«½æ¬‚æ¬ƒæ¬†æ¬‡æ¬‰æ¬æ¬æ¬‘æ¬—æ¬›æ¬žæ¬¤æ¬¨æ¬«æ¬¬æ¬¯æ¬µæ¬¶æ¬»æ¬¿æ†æŠææ’æ–æ˜ææ æ§æ«æ®æ°æµæ½\"],[\"8fc6a1\",\"æ¾æ®‚æ®…æ®—æ®›æ®Ÿæ® æ®¢æ®£æ®¨æ®©æ®¬æ®æ®®æ®°æ®¸æ®¹æ®½æ®¾æ¯ƒæ¯„æ¯‰æ¯Œæ¯–æ¯šæ¯¡æ¯£æ¯¦æ¯§æ¯®æ¯±æ¯·æ¯¹æ¯¿æ°‚æ°„æ°…æ°‰æ°æ°Žæ°æ°’æ°™æ°Ÿæ°¦æ°§æ°¨æ°¬æ°®æ°³æ°µæ°¶æ°ºæ°»æ°¿æ±Šæ±‹æ±æ±æ±’æ±”æ±™æ±›æ±œæ±«æ±æ±¯æ±´æ±¶æ±¸æ±¹æ±»æ²…æ²†æ²‡æ²‰æ²”æ²•æ²—æ²˜æ²œæ²Ÿæ²°æ²²æ²´æ³‚æ³†æ³æ³æ³æ³‘泒泔泖\"],[\"8fc7a1\",\"æ³šæ³œæ³ æ³§æ³©æ³«æ³¬æ³®æ³²æ³´æ´„æ´‡æ´Šæ´Žæ´æ´‘æ´“æ´šæ´¦æ´§æ´¨æ±§æ´®æ´¯æ´±æ´¹æ´¼æ´¿æµ—æµžæµŸæµ¡æµ¥æµ§æµ¯æµ°æµ¼æ¶‚æ¶‡æ¶‘æ¶’æ¶”æ¶–æ¶—æ¶˜æ¶ªæ¶¬æ¶´æ¶·æ¶¹æ¶½æ¶¿æ·„æ·ˆæ·Šæ·Žæ·æ·–æ·›æ·æ·Ÿæ· æ·¢æ·¥æ·©æ·¯æ·°æ·´æ·¶æ·¼æ¸€æ¸„æ¸žæ¸¢æ¸§æ¸²æ¸¶æ¸¹æ¸»æ¸¼æ¹„æ¹…æ¹ˆæ¹‰æ¹‹æ¹æ¹‘æ¹’æ¹“æ¹”æ¹—æ¹œæ¹æ¹ž\"],[\"8fc8a1\",\"æ¹¢æ¹£æ¹¨æ¹³æ¹»æ¹½æºæº“æº™æº æº§æºæº®æº±æº³æº»æº¿æ»€æ»æ»ƒæ»‡æ»ˆæ»Šæ»æ»Žæ»æ»«æ»æ»®æ»¹æ»»æ»½æ¼„æ¼ˆæ¼Šæ¼Œæ¼æ¼–æ¼˜æ¼šæ¼›æ¼¦æ¼©æ¼ªæ¼¯æ¼°æ¼³æ¼¶æ¼»æ¼¼æ¼æ½æ½‘æ½’æ½“æ½—æ½™æ½šæ½æ½žæ½¡æ½¢æ½¨æ½¬æ½½æ½¾æ¾ƒæ¾‡æ¾ˆæ¾‹æ¾Œæ¾æ¾æ¾’æ¾“æ¾”æ¾–æ¾šæ¾Ÿæ¾ æ¾¥æ¾¦æ¾§æ¾¨æ¾®æ¾¯æ¾°æ¾µæ¾¶æ¾¼æ¿…æ¿‡æ¿ˆæ¿Š\"],[\"8fc9a1\",\"濚濞濨濩濰濵濹濼濽瀀瀅瀆瀇ç€ç€—ç€ ç€£ç€¯ç€´ç€·ç€¹ç€¼çƒç„çˆç‰çŠç‹ç”ç•ççžçŽç¤ç¥ç¬ç®çµç¶ç¾ç‚炅炆炔\",4,\"炛炤炫炰炱炴炷烊烑烓烔烕烖烘烜烤烺焃\",4,\"焋焌ç„ç„žç„ ç„«ç„焯焰焱焸ç…煅煆煇煊煋ç…ç…’ç…—ç…šç…œç…žç… \"],[\"8fcaa1\",\"ç…¨ç…¹ç†€ç†…ç†‡ç†Œç†’ç†šç†›ç† ç†¢ç†¯ç†°ç†²ç†³ç†ºç†¿ç‡€ç‡ç‡„燋燌燓燖燙燚燜燸燾爀爇爈爉爓爗爚çˆçˆŸçˆ¤çˆ«çˆ¯çˆ´çˆ¸çˆ¹ç‰ç‰‚牃牅牎ç‰ç‰ç‰“ç‰•ç‰–ç‰šç‰œç‰žç‰ ç‰£ç‰¨ç‰«ç‰®ç‰¯ç‰±ç‰·ç‰¸ç‰»ç‰¼ç‰¿çŠ„çŠ‰çŠçŠŽçŠ“çŠ›çŠ¨çŠçŠ®çŠ±çŠ´çŠ¾ç‹ç‹‡ç‹‰ç‹Œç‹•狖狘狟狥狳狴狺狻\"],[\"8fcba1\",\"狾猂猄猅猇猋çŒçŒ’猓猘猙猞猢猤猧猨猬猱猲猵猺猻猽çƒççç’ç–ç˜ççžçŸç ç¦ç§ç©ç«ç¬ç®ç¯ç±ç·ç¹ç¼çŽ€çŽçŽƒçŽ…çŽ†çŽŽçŽçŽ“çŽ•çŽ—çŽ˜çŽœçŽžçŽŸçŽ çŽ¢çŽ¥çŽ¦çŽªçŽ«çŽçŽµçŽ·çŽ¹çŽ¼çŽ½çŽ¿ç…ç†ç‰ç‹çŒçç’ç“ç–ç™çç¡ç£ç¦ç§ç©ç´çµç·ç¹çºç»ç½\"],[\"8fcca1\",\"ç¿ç€çç„ç‡çŠç‘çšç›ç¤ç¦ç¨\",9,\"ç¹ç‘€ç‘ƒç‘„瑆瑇瑋ç‘ç‘‘ç‘’ç‘—ç‘瑢瑦瑧瑨瑫ç‘瑮瑱瑲璀ç’璅璆璇璉ç’ç’ç’‘ç’’ç’˜ç’™ç’šç’œç’Ÿç’ ç’¡ç’£ç’¦ç’¨ç’©ç’ªç’«ç’®ç’¯ç’±ç’²ç’µç’¹ç’»ç’¿ç“ˆç“‰ç“Œç“瓓瓘瓚瓛瓞瓟瓤瓨瓪瓫瓯瓴瓺瓻瓼瓿甆\"],[\"8fcda1\",\"ç”’ç”–ç”—ç” ç”¡ç”¤ç”§ç”©ç”ªç”¯ç”¶ç”¹ç”½ç”¾ç”¿ç•€ç•ƒç•‡ç•ˆç•Žç•畒畗畞畟畡畯畱畹\",5,\"ç–ç–…ç–疒疓疕疙疜疢疤疴疺疿痀ç—痄痆痌痎ç—ç——ç—œç—Ÿç— ç—¡ç—¤ç—§ç—¬ç—®ç—¯ç—±ç—¹ç˜€ç˜‚ç˜ƒç˜„ç˜‡ç˜ˆç˜Šç˜Œç˜ç˜’瘓瘕瘖瘙瘛瘜ç˜ç˜žç˜£ç˜¥ç˜¦ç˜©ç˜ç˜²ç˜³ç˜µç˜¸ç˜¹\"],[\"8fcea1\",\"瘺瘼癊癀ç™ç™ƒç™„癅癉癋癕癙癟癤癥ç™ç™®ç™¯ç™±ç™´çšçš…皌çšçš•皛皜çšçšŸçš 皢\",6,\"皪çšçš½ç›ç›…ç›‰ç›‹ç›Œç›Žç›”ç›™ç› ç›¦ç›¨ç›¬ç›°ç›±ç›¶ç›¹ç›¼çœ€çœ†çœŠçœŽçœ’çœ”çœ•çœ—çœ™çœšçœœçœ¢çœ¨çœçœ®çœ¯çœ´çœµçœ¶çœ¹çœ½çœ¾ç‚ç…ç†çŠççŽçç’ç–ç—çœçžçŸç ç¢\"],[\"8fcfa1\",\"ç¤ç§çªç¬ç°ç²ç³ç´çºç½çž€çž„瞌çžçž”çž•çž–çžšçžŸçž¢çž§çžªçž®çž¯çž±çžµçž¾çŸƒçŸ‰çŸ‘çŸ’çŸ•çŸ™çŸžçŸŸçŸ çŸ¤çŸ¦çŸªçŸ¬çŸ°çŸ±çŸ´çŸ¸çŸ»ç …ç †ç ‰ç ç Žç ‘ç ç ¡ç ¢ç £ç ç ®ç °ç µç ·ç¡ƒç¡„ç¡‡ç¡ˆç¡Œç¡Žç¡’ç¡œç¡žç¡ ç¡¡ç¡£ç¡¤ç¡¨ç¡ªç¡®ç¡ºç¡¾ç¢Šç¢ç¢”碘碡ç¢ç¢žç¢Ÿç¢¤ç¢¨ç¢¬ç¢ç¢°ç¢±ç¢²ç¢³\"],[\"8fd0a1\",\"ç¢»ç¢½ç¢¿ç£‡ç£ˆç£‰ç£Œç£Žç£’ç£“ç£•ç£–ç£¤ç£›ç£Ÿç£ ç£¡ç£¦ç£ªç£²ç£³ç¤€ç£¶ç£·ç£ºç£»ç£¿ç¤†ç¤Œç¤ç¤šç¤œç¤žç¤Ÿç¤ 礥礧礩ç¤ç¤±ç¤´ç¤µç¤»ç¤½ç¤¿ç¥„祅祆祊祋ç¥ç¥‘祔祘祛祜祧祩祫祲祹祻祼祾禋禌禑禓禔禕禖禘禛禜禡禨禩禫禯禱禴禸离秂秄秇秈秊ç§ç§”ç§–ç§šç§ç§ž\"],[\"8fd1a1\",\"ç§ ç§¢ç§¥ç§ªç§«ç§ç§±ç§¸ç§¼ç¨‚稃稇稉稊稌稑稕稛稞稡稧稫ç¨ç¨¯ç¨°ç¨´ç¨µç¨¸ç¨¹ç¨ºç©„穅穇穈穌穕穖穙穜ç©ç©Ÿç© 穥穧穪ç©ç©µç©¸ç©¾çª€çª‚窅窆窊窋çªçª‘çª”çªžçª çª£çª¬çª³çªµçª¹çª»çª¼ç«†ç«‰ç«Œç«Žç«‘ç«›ç«¨ç«©ç««ç«¬ç«±ç«´ç«»ç«½ç«¾ç¬‡ç¬”ç¬Ÿç¬£ç¬§ç¬©ç¬ªç¬«ç¬ç¬®ç¬¯ç¬°\"],[\"8fd2a1\",\"笱笴笽笿ç€çç‡çŽç•ç ç¤ç¦ç©çªçç¯ç²ç³ç·ç®„箉箎ç®ç®‘ç®–ç®›ç®žç® ç®¥ç®¬ç®¯ç®°ç®²ç®µç®¶ç®ºç®»ç®¼ç®½ç¯‚ç¯…ç¯ˆç¯Šç¯”ç¯–ç¯—ç¯™ç¯šç¯›ç¯¨ç¯ªç¯²ç¯´ç¯µç¯¸ç¯¹ç¯ºç¯¼ç¯¾ç°ç°‚簃簄簆簉簋簌簎ç°ç°™ç°›ç° 簥簦簨簬簱簳簴簶簹簺籆籊籕籑籒籓籙\",5],[\"8fd3a1\",\"籡籣籧籩ç±ç±®ç±°ç±²ç±¹ç±¼ç±½ç²†ç²‡ç²ç²”ç²žç² ç²¦ç²°ç²¶ç²·ç²ºç²»ç²¼ç²¿ç³„ç³‡ç³ˆç³‰ç³ç³ç³“糔糕糗糙糚ç³ç³¦ç³©ç³«ç³µç´ƒç´‡ç´ˆç´‰ç´ç´‘ç´’ç´“ç´–ç´ç´žç´£ç´¦ç´ªç´ç´±ç´¼ç´½ç´¾çµ€çµçµ‡çµˆçµçµ‘絓絗絙絚絜çµçµ¥çµ§çµªçµ°çµ¸çµºçµ»çµ¿ç¶ç¶‚綃綅綆綈綋綌ç¶ç¶‘ç¶–ç¶—ç¶\"],[\"8fd4a1\",\"綞綦綧綪綳綶綷綹緂\",4,\"ç·Œç·ç·Žç·—緙縀緢緥緦緪緫ç·ç·±ç·µç·¶ç·¹ç·ºç¸ˆç¸ç¸‘縕縗縜ç¸ç¸ 縧縨縬ç¸ç¸¯ç¸³ç¸¶ç¸¿ç¹„繅繇繎ç¹ç¹’繘繟繡繢繥繫繮繯繳繸繾çºçº†çº‡çºŠçºçº‘纕纘纚çºçºžç¼¼ç¼»ç¼½ç¼¾ç¼¿ç½ƒç½„罇ç½ç½’罓罛罜ç½ç½¡ç½£ç½¤ç½¥ç½¦ç½\"],[\"8fd5a1\",\"罱罽罾罿羀羋ç¾ç¾ç¾ç¾‘羖羗羜羡羢羦羪ç¾ç¾´ç¾¼ç¾¿ç¿€ç¿ƒç¿ˆç¿Žç¿ç¿›ç¿Ÿç¿£ç¿¥ç¿¨ç¿¬ç¿®ç¿¯ç¿²ç¿ºç¿½ç¿¾ç¿¿è€‡è€ˆè€Šè€è€Žè€è€‘耓耔耖è€è€žè€Ÿè€ 耤耦耬耮耰耴耵耷耹耺耼耾è€è„è è¤è¦èè±èµè‚肈肎肜肞肦肧肫肸肹胈èƒèƒèƒ’èƒ”èƒ•èƒ—èƒ˜èƒ èƒèƒ®\"],[\"8fd6a1\",\"èƒ°èƒ²èƒ³èƒ¶èƒ¹èƒºèƒ¾è„ƒè„‹è„–è„—è„˜è„œè„žè„ è„¤è„§è„¬è„°è„µè„ºè„¼è……è…‡è…Šè…Œè…’è…—è… è…¡è…§è…¨è…©è…腯腷è†è†è†„膅膆膋膎膖膘膛膞膢膮膲膴膻臋臃臅臊臎è‡è‡•臗臛è‡è‡žè‡¡è‡¤è‡«è‡¬è‡°è‡±è‡²è‡µè‡¶è‡¸è‡¹è‡½è‡¿èˆ€èˆƒèˆèˆ“舔舙舚èˆèˆ¡èˆ¢èˆ¨èˆ²èˆ´èˆºè‰ƒè‰„艅艆\"],[\"8fd7a1\",\"艋艎è‰è‰‘è‰–è‰œè‰ è‰£è‰§è‰è‰´è‰»è‰½è‰¿èŠ€èŠèŠƒèŠ„èŠ‡èŠ‰èŠŠèŠŽèŠ‘èŠ”èŠ–èŠ˜èŠšèŠ›èŠ èŠ¡èŠ£èŠ¤èŠ§èŠ¨èŠ©èŠªèŠ®èŠ°èŠ²èŠ´èŠ·èŠºèŠ¼èŠ¾èŠ¿è‹†è‹è‹•è‹šè‹ è‹¢è‹¤è‹¨è‹ªè‹è‹¯è‹¶è‹·è‹½è‹¾èŒ€èŒèŒ‡èŒˆèŒŠèŒ‹è”茛èŒèŒžèŒŸèŒ¡èŒ¢èŒ¬èŒèŒ®èŒ°èŒ³èŒ·èŒºèŒ¼èŒ½è‚èƒè„è‡èèŽè‘è•è–è—è°è¸\"],[\"8fd8a1\",\"è½è¿èŽ€èŽ‚èŽ„èŽ†èŽèŽ’èŽ”èŽ•èŽ˜èŽ™èŽ›èŽœèŽèŽ¦èŽ§èŽ©èŽ¬èŽ¾èŽ¿è€è‡è‰èèè‘è”èè“è¨èªè¶è¸è¹è¼èè†èŠèè‘è•è™èŽè¯è¹è‘…葇葈葊è‘è‘è‘‘è‘’è‘–è‘˜è‘™è‘šè‘œè‘ è‘¤è‘¥è‘§è‘ªè‘°è‘³è‘´è‘¶è‘¸è‘¼è‘½è’蒅蒒蒓蒕蒞蒦蒨蒩蒪蒯蒱蒴蒺蒽蒾蓀蓂蓇蓈蓌è“è““\"],[\"8fd9a1\",\"蓜蓧蓪蓯蓰蓱蓲蓷蔲蓺蓻蓽蔂蔃蔇蔌蔎è”蔜蔞蔢蔣蔤蔥蔧蔪蔫蔯蔳蔴蔶蔿蕆è•\",4,\"蕖蕙蕜\",6,\"蕤蕫蕯蕹蕺蕻蕽蕿è–薅薆薉薋薌è–è–“è–˜è–è–Ÿè– è–¢è–¥è–§è–´è–¶è–·è–¸è–¼è–½è–¾è–¿è—‚è—‡è—Šè—‹è—Žè–è—˜è—šè—Ÿè— è—¦è—¨è—藳藶藼\"],[\"8fdaa1\",\"藿蘀蘄蘅è˜è˜Žè˜è˜‘蘒蘘蘙蘛蘞蘡蘧蘩蘶蘸蘺蘼蘽虀虂虆虒虓虖虗虘虙è™è™ \",4,\"虩虬虯虵虶虷虺èšèš‘蚖蚘蚚蚜蚡蚦蚧蚨èšèš±èš³èš´èšµèš·èš¸èš¹èš¿è›€è›è›ƒè›…è›‘è›’è›•è›—è›šè›œè› è›£è›¥è›§èšˆè›ºè›¼è›½èœ„èœ…èœ‡èœ‹èœŽèœèœèœ“蜔蜙蜞蜟蜡蜣\"],[\"8fdba1\",\"蜨蜮蜯蜱蜲蜹蜺蜼蜽蜾è€èƒè…èè˜èè¡è¤è¥è¯è±è²è»èžƒ\",6,\"螋螌èžèž“èž•èž—èž˜èž™èžžèž èž£èž§èž¬èžèž®èž±èžµèž¾èž¿èŸèŸˆèŸ‰èŸŠèŸŽèŸ•蟖蟙蟚蟜蟟蟢蟣蟤蟪蟫èŸèŸ±èŸ³èŸ¸èŸºèŸ¿è è ƒè †è ‰è Šè ‹è è ™è ’è “è ”è ˜è šè ›è œè žè Ÿè ¨è è ®è °è ²è µ\"],[\"8fdca1\",\"è ºè ¼è¡è¡ƒè¡…è¡ˆè¡‰è¡Šè¡‹è¡Žè¡‘è¡•è¡–è¡˜è¡šè¡œè¡Ÿè¡ è¡¤è¡©è¡±è¡¹è¡»è¢€è¢˜è¢šè¢›è¢œè¢Ÿè¢ è¢¨è¢ªè¢ºè¢½è¢¾è£€è£Š\",4,\"裑裒裓裛裞裧裯裰裱裵裷è¤è¤†è¤è¤Žè¤è¤•è¤–è¤˜è¤™è¤šè¤œè¤ è¤¦è¤§è¤¨è¤°è¤±è¤²è¤µè¤¹è¤ºè¤¾è¥€è¥‚è¥…è¥†è¥‰è¥è¥’襗襚襛襜襡襢襣襫襮襰襳襵襺\"],[\"8fdda1\",\"襻襼襽覉è¦è¦è¦”è¦•è¦›è¦œè¦Ÿè¦ è¦¥è¦°è¦´è¦µè¦¶è¦·è¦¼è§”\",4,\"觥觩觫è§è§±è§³è§¶è§¹è§½è§¿è¨„訅訇è¨è¨‘è¨’è¨”è¨•è¨žè¨ è¨¢è¨¤è¨¦è¨«è¨¬è¨¯è¨µè¨·è¨½è¨¾è©€è©ƒè©…è©‡è©‰è©è©Žè©“詖詗詘詜è©è©¡è©¥è©§è©µè©¶è©·è©¹è©ºè©»è©¾è©¿èª€èªƒèª†èª‹èªèªèª’誖誗誙誟誧誩誮誯誳\"],[\"8fdea1\",\"誶誷誻誾諃諆諈諉諊諑諓諔諕諗è«è«Ÿè«¬è«°è«´è«µè«¶è«¼è«¿è¬…謆謋謑謜謞謟謊è¬è¬°è¬·è¬¼è‚\",4,\"èˆè’è“è”è™èèžè£èè¶è¸è¹è¼è¾è®è®„讅讋è®è®è®”讕讜讞讟谸谹谽谾豅豇豉豋è±è±‘豓豔豗豘豛è±è±™è±£è±¤è±¦è±¨è±©è±è±³è±µè±¶è±»è±¾è²†\"],[\"8fdfa1\",\"貇貋è²è²’貓貙貛貜貤貹貺賅賆賉賋è³è³–賕賙è³è³¡è³¨è³¬è³¯è³°è³²è³µè³·è³¸è³¾è³¿è´è´ƒè´‰è´’贗贛赥赩赬赮赿趂趄趈è¶è¶è¶‘è¶•è¶žè¶Ÿè¶ è¶¦è¶«è¶¬è¶¯è¶²è¶µè¶·è¶¹è¶»è·€è·…è·†è·‡è·ˆè·Šè·Žè·‘è·”è·•è·—è·™è·¤è·¥è·§è·¬è·°è¶¼è·±è·²è·´è·½è¸è¸„è¸…è¸†è¸‹è¸‘è¸”è¸–è¸ è¸¡è¸¢\"],[\"8fe0a1\",\"踣踦踧踱踳踶踷踸踹踽蹀è¹è¹‹è¹è¹Žè¹è¹”蹛蹜è¹è¹žè¹¡è¹¢è¹©è¹¬è¹è¹¯è¹°è¹±è¹¹è¹ºè¹»èº‚躃躉èºèº’躕躚躛èºèºžèº¢èº§èº©èºèº®èº³èºµèººèº»è»€è»è»ƒè»„軇è»è»‘軔軜軨軮軰軱軷軹軺è»è¼€è¼‚輇輈è¼è¼è¼–è¼—è¼˜è¼žè¼ è¼¡è¼£è¼¥è¼§è¼¨è¼¬è¼è¼®è¼´è¼µè¼¶è¼·è¼ºè½€è½\"],[\"8fe1a1\",\"轃轇è½è½‘\",4,\"轘è½è½žè½¥è¾è¾ 辡辤辥辦辵辶辸达迀è¿è¿†è¿Šè¿‹è¿è¿è¿’è¿“è¿•è¿ è¿£è¿¤è¿¨è¿®è¿±è¿µè¿¶è¿»è¿¾é€‚é€„é€ˆé€Œé€˜é€›é€¨é€©é€¯é€ªé€¬é€é€³é€´é€·é€¿éƒé„éŒé›éé¢é¦é§é¬é°é´é¹é‚…邈邋邌邎é‚é‚•é‚—é‚˜é‚™é‚›é‚ é‚¡é‚¢é‚¥é‚°é‚²é‚³é‚´é‚¶é‚½éƒŒé‚¾éƒƒ\"],[\"8fe2a1\",\"郄郅郇郈郕郗郘郙郜éƒéƒŸéƒ¥éƒ’郶郫郯郰郴郾郿鄀鄄鄅鄆鄈é„é„é„”é„–é„—é„˜é„šé„œé„žé„ é„¥é„¢é„£é„§é„©é„®é„¯é„±é„´é„¶é„·é„¹é„ºé„¼é„½é…ƒé…‡é…ˆé…酓酗酙酚酛酡酤酧é…酴酹酺酻é†é†ƒé†…醆醊醎醑醓醔醕醘醞醡醦醨醬é†é†®é†°é†±é†²é†³é†¶é†»é†¼é†½é†¿\"],[\"8fe3a1\",\"釂釃釅釓釔釗釙釚釞釤釥釩釪釬\",5,\"釷釹釻釽鈀éˆéˆ„鈅鈆鈇鈉鈊鈌éˆéˆ’鈓鈖鈘鈜éˆéˆ£éˆ¤éˆ¥éˆ¦éˆ¨éˆ®éˆ¯éˆ°éˆ³éˆµéˆ¶éˆ¸éˆ¹éˆºéˆ¼éˆ¾é‰€é‰‚鉃鉆鉇鉊é‰é‰Žé‰é‰‘鉘鉙鉜é‰é‰ 鉡鉥鉧鉨鉩鉮鉯鉰鉵\",4,\"鉻鉼鉽鉿銈銉銊éŠéŠŽéŠ’éŠ—\"],[\"8fe4a1\",\"éŠ™éŠŸéŠ éŠ¤éŠ¥éŠ§éŠ¨éŠ«éŠ¯éŠ²éŠ¶éŠ¸éŠºéŠ»éŠ¼éŠ½éŠ¿\",4,\"鋅鋆鋇鋈鋋鋌é‹é‹Žé‹é‹“鋕鋗鋘鋙鋜é‹é‹Ÿé‹ 鋡鋣鋥鋧鋨鋬鋮鋰鋹鋻鋿錀錂錈éŒéŒ‘錔錕錜éŒéŒžéŒŸéŒ¡éŒ¤éŒ¥éŒ§éŒ©éŒªéŒ³éŒ´éŒ¶éŒ·é‡éˆé‰éé‘é’é•é—é˜éšéžé¤é¥é§é©éªéé¯é°é±é³é´é¶\"],[\"8fe5a1\",\"éºé½é¿éŽ€éŽéŽ‚éŽˆéŽŠéŽ‹éŽéŽéŽ’éŽ•éŽ˜éŽ›éŽžéŽ¡éŽ£éŽ¤éŽ¦éŽ¨éŽ«éŽ´éŽµéŽ¶éŽºéŽ©éé„é…é†é‡é‰\",4,\"é“é™éœéžéŸé¢é¦é§é¹é·é¸éºé»é½éé‚é„éˆé‰ééŽéé•é–é—éŸé®é¯é±é²é³é´é»é¿é½é‘ƒé‘…鑈鑊鑌鑕鑙鑜鑟鑡鑣鑨鑫é‘鑮鑯鑱鑲钄钃镸镹\"],[\"8fe6a1\",\"镾閄閈閌é–é–Žé–閞閟閡閦閩閫閬閴閶閺閽閿闆闈闉闋é—闑闒闓闙闚é—é—žé—Ÿé— é—¤é—¦é˜é˜žé˜¢é˜¤é˜¥é˜¦é˜¬é˜±é˜³é˜·é˜¸é˜¹é˜ºé˜¼é˜½é™é™’陔陖陗陘陡陮陴陻陼陾陿éšéš‚隃隄隉隑隖隚éšéšŸéš¤éš¥éš¦éš©éš®éš¯éš³éšºé›Šé›’嶲雘雚é›é›žé›Ÿé›©é›¯é›±é›ºéœ‚\"],[\"8fe7a1\",\"霃霅霉霚霛éœéœ¡éœ¢éœ£éœ¨éœ±éœ³ééƒéŠéŽéé•é—é˜éšé›é£é§éªé®é³é¶é·é¸é»é½é¿éž€éž‰éž•鞖鞗鞙鞚鞞鞟鞢鞬鞮鞱鞲鞵鞶鞸鞹鞺鞼鞾鞿éŸéŸ„韅韇韉韊韌éŸéŸŽéŸéŸ‘韔韗韘韙éŸéŸžéŸ éŸ›éŸ¡éŸ¤éŸ¯éŸ±éŸ´éŸ·éŸ¸éŸºé ‡é Šé ™é é Žé ”é –é œé žé é £é ¦\"],[\"8fe8a1\",\"é «é ®é ¯é °é ²é ³é µé ¥é ¾é¡„é¡‡é¡Šé¡‘é¡’é¡“é¡–é¡—é¡™é¡šé¡¢é¡£é¡¥é¡¦é¡ªé¡¬é¢«é¢é¢®é¢°é¢´é¢·é¢¸é¢ºé¢»é¢¿é£‚飅飈飌飡飣飥飦飧飪飳飶餂餇餈餑餕餖餗餚餛餜餟餢餦餧餫餱\",4,\"餹餺餻餼饀é¥é¥†é¥‡é¥ˆé¥é¥Žé¥”é¥˜é¥™é¥›é¥œé¥žé¥Ÿé¥ é¦›é¦é¦Ÿé¦¦é¦°é¦±é¦²é¦µ\"],[\"8fe9a1\",\"馹馺馽馿駃駉駓駔駙駚駜駞駧駪駫駬駰駴駵駹駽駾騂騃騄騋騌é¨é¨‘é¨–é¨žé¨ é¨¢é¨£é¨¤é¨§é¨é¨®é¨³é¨µé¨¶é¨¸é©‡é©é©„驊驋驌驎驑驔驖é©éªªéª¬éª®éª¯éª²éª´éªµéª¶éª¹éª»éª¾éª¿é«é«ƒé«†é«ˆé«Žé«é«’é«•é«–é«—é«›é«œé« é«¤é«¥é«§é«©é«¬é«²é«³é«µé«¹é«ºé«½é«¿\",4],[\"8feaa1\",\"鬄鬅鬈鬉鬋鬌é¬é¬Žé¬é¬’é¬–é¬™é¬›é¬œé¬ é¬¦é¬«é¬é¬³é¬´é¬µé¬·é¬¹é¬ºé¬½éˆé‹éŒé•é–é—é›éžé¡é£é¥é¦é¨éª\",4,\"é³éµé·é¸é¹é¿é®€é®„鮅鮆鮇鮉鮊鮋é®é®é®é®”鮚é®é®žé®¦é®§é®©é®¬é®°é®±é®²é®·é®¸é®»é®¼é®¾é®¿é¯é¯‡é¯ˆé¯Žé¯é¯—鯘é¯é¯Ÿé¯¥é¯§é¯ªé¯«é¯¯é¯³é¯·é¯¸\"],[\"8feba1\",\"鯹鯺鯽鯿鰀鰂鰋é°é°‘鰖鰘鰙鰚鰜鰞鰢鰣鰦\",4,\"鰱鰵鰶鰷鰽é±é±ƒé±„鱅鱉鱊鱎é±é±é±“鱔鱖鱘鱛é±é±žé±Ÿé±£é±©é±ªé±œé±«é±¨é±®é±°é±²é±µé±·é±»é³¦é³²é³·é³¹é´‹é´‚鴑鴗鴘鴜é´é´žé´¯é´°é´²é´³é´´é´ºé´¼éµ…鴽鵂鵃鵇鵊鵓鵔鵟鵣鵢鵥鵩鵪鵫鵰鵶鵷鵻\"],[\"8feca1\",\"鵼鵾鶃鶄鶆鶊é¶é¶Žé¶’é¶“é¶•é¶–é¶—é¶˜é¶¡é¶ªé¶¬é¶®é¶±é¶µé¶¹é¶¼é¶¿é·ƒé·‡é·‰é·Šé·”é·•é·–é·—é·šé·žé·Ÿé· é·¥é·§é·©é·«é·®é·°é·³é·´é·¾é¸Šé¸‚é¸‡é¸Žé¸é¸‘鸒鸕鸖鸙鸜é¸é¹ºé¹»é¹¼éº€éº‚麃麄麅麇麎éºéº–麘麛麞麤麨麬麮麯麰麳麴麵黆黈黋黕黟黤黧黬é»é»®é»°é»±é»²é»µ\"],[\"8feda1\",\"黸黿鼂鼃鼉é¼é¼é¼‘鼒鼔鼖鼗鼙鼚鼛鼟鼢鼦鼪鼫鼯鼱鼲鼴鼷鼹鼺鼼鼽鼿é½é½ƒ\",4,\"齓齕齖齗齘齚é½é½žé½¨é½©é½\",4,\"齳齵齺齽é¾é¾é¾‘龒龔龖龗龞龡龢龣龥\"]]"); -var _regenerator = _interopRequireDefault(__webpack_require__(545)); +/***/ }), +/* 820 */ +/***/ (function(module) { -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); +module.exports = JSON.parse("[[\"0\",\"\\u0000\",127,\"€\"],[\"8140\",\"丂丄丅丆ä¸ä¸’ä¸—ä¸Ÿä¸ ä¸¡ä¸£ä¸¦ä¸©ä¸®ä¸¯ä¸±ä¸³ä¸µä¸·ä¸¼ä¹€ä¹ä¹‚乄乆乊乑乕乗乚乛乢乣乤乥乧乨乪\",5,\"乲乴\",9,\"乿\",6,\"亇亊\"],[\"8180\",\"äºäº–亗亙亜äºäºžäº£äºªäº¯äº°äº±äº´äº¶äº·äº¸äº¹äº¼äº½äº¾ä»ˆä»Œä»ä»ä»’ä»šä»›ä»œä» ä»¢ä»¦ä»§ä»©ä»ä»®ä»¯ä»±ä»´ä»¸ä»¹ä»ºä»¼ä»¾ä¼€ä¼‚\",6,\"伋伌伒\",4,\"伜ä¼ä¼¡ä¼£ä¼¨ä¼©ä¼¬ä¼ä¼®ä¼±ä¼³ä¼µä¼·ä¼¹ä¼»ä¼¾\",4,\"佄佅佇\",5,\"佒佔佖佡佢佦佨佪佫ä½ä½®ä½±ä½²ä½µä½·ä½¸ä½¹ä½ºä½½ä¾€ä¾ä¾‚侅來侇侊侌侎ä¾ä¾’侓侕侖侘侙侚侜侞侟価侢\"],[\"8240\",\"侤侫ä¾ä¾°\",4,\"ä¾¶\",8,\"ä¿€ä¿ä¿‚俆俇俈俉俋俌ä¿ä¿’\",4,\"ä¿™ä¿›ä¿ ä¿¢ä¿¤ä¿¥ä¿§ä¿«ä¿¬ä¿°ä¿²ä¿´ä¿µä¿¶ä¿·ä¿¹ä¿»ä¿¼ä¿½ä¿¿\",11],[\"8280\",\"個倎å€å€‘倓倕倖倗倛å€å€žå€ 倢倣値倧倫倯\",10,\"倻倽倿å€åå‚å„å…å†å‰åŠå‹åå\",4,\"å–å—å˜å™å›å\",7,\"å¦\",5,\"å\",8,\"å¸å¹åºå¼å½å‚傂傃傄傆傇傉傊傋傌傎\",20,\"傤傦傪傫å‚\",4,\"傳\",6,\"傼\"],[\"8340\",\"傽\",17,\"åƒ\",5,\"僗僘僙僛\",10,\"僨僩僪僫僯僰僱僲僴僶\",4,\"僼\",9,\"儈\"],[\"8380\",\"儉儊儌\",5,\"å„“\",13,\"å„¢\",28,\"兂兇兊兌兎å…å…兒兓兗兘兙兛å…\",4,\"兣兤兦內兩兪兯兲兺兾兿冃冄円冇冊冋冎å†å†å†‘冓冔冘冚å†å†žå†Ÿå†¡å†£å†¦\",4,\"å†å†®å†´å†¸å†¹å†ºå†¾å†¿å‡å‡‚凃凅凈凊å‡å‡Žå‡å‡’\",5],[\"8440\",\"凘凙凚凜凞凟凢凣凥\",5,\"凬凮凱凲凴凷凾刄刅刉刋刌åˆåˆåˆ“刔刕刜刞刟刡刢刣別刦刧刪刬刯刱刲刴刵刼刾剄\",5,\"剋剎å‰å‰’剓剕剗剘\"],[\"8480\",\"剙剚剛å‰å‰Ÿå‰ 剢剣剤剦剨剫剬å‰å‰®å‰°å‰±å‰³\",9,\"剾劀劃\",4,\"劉\",6,\"劑劒劔\",6,\"劜劤劥劦劧劮劯劰労\",9,\"å‹€å‹å‹‚勄勅勆勈勊勌å‹å‹Žå‹å‹‘勓勔動勗務\",5,\"å‹ å‹¡å‹¢å‹£å‹¥\",10,\"勱\",7,\"勻勼勽åŒåŒ‚匃匄匇匉匊匋匌匎\"],[\"8540\",\"匑匒匓匔匘匛匜匞匟匢匤匥匧匨匩匫匬åŒåŒ¯\",9,\"匼匽å€å‚å„å†å‹åŒååå”å˜å™å›åå¥å¨åªå¬åå²å¶å¹å»å¼å½å¾åŽ€åŽåŽƒåŽ‡åŽˆåŽŠåŽŽåŽ\"],[\"8580\",\"åŽ\",4,\"åŽ–åŽ—åŽ™åŽ›åŽœåŽžåŽ åŽ¡åŽ¤åŽ§åŽªåŽ«åŽ¬åŽåޝ\",6,\"厷厸厹厺厼厽厾å€åƒ\",4,\"åŽååå’å“å•åšåœååžå¡å¢å§å´åºå¾å¿å€å‚å…å‡å‹å”å˜å™åšåœå¢å¤å¥åªå°å³å¶å·åºå½å¿å‘呂呄呅呇呉呌å‘呎å‘呑呚å‘\",4,\"呣呥呧呩\",7,\"呴呹呺呾呿å’咃咅咇咈咉咊å’å’‘å’“å’—å’˜å’œå’žå’Ÿå’ å’¡\"],[\"8640\",\"å’¢å’¥å’®å’°å’²å’µå’¶å’·å’¹å’ºå’¼å’¾å“ƒå“…å“Šå“‹å“–å“˜å“›å“ \",4,\"哫哬哯哰哱哴\",5,\"哻哾唀唂唃唄唅唈唊\",4,\"唒唓唕\",5,\"唜å”唞唟唡唥唦\"],[\"8680\",\"唨唩唫å”唲唴唵唶唸唹唺唻唽啀啂啅啇啈啋\",4,\"啑啒啓啔啗\",4,\"å•å•žå•Ÿå• å•¢å•£å•¨å•©å•«å•¯\",5,\"啹啺啽啿喅喆喌å–å–Žå–å–’å–“å–•å––å–—å–šå–›å–žå– \",6,\"å–¨\",8,\"喲喴営喸喺喼喿\",4,\"嗆嗇嗈嗊嗋嗎å—å—å—•å——\",4,\"å—žå— å—¢å—§å—©å—嗮嗰嗱嗴嗶嗸\",4,\"嗿嘂嘃嘄嘅\"],[\"8740\",\"嘆嘇嘊嘋å˜å˜\",7,\"嘙嘚嘜å˜å˜ 嘡嘢嘥嘦嘨嘩嘪嘫嘮嘯嘰嘳嘵嘷嘸嘺嘼嘽嘾噀\",11,\"å™\",4,\"噕噖噚噛å™\",4],[\"8780\",\"噣噥噦噧å™å™®å™¯å™°å™²å™³å™´å™µå™·å™¸å™¹å™ºå™½\",7,\"嚇\",6,\"åšåš‘åš’åš”\",14,\"嚤\",10,\"åš°\",6,\"嚸嚹嚺嚻嚽\",12,\"囋\",8,\"囕囖囘囙囜団囥\",5,\"囬囮囯囲図囶囷囸囻囼圀åœåœ‚圅圇國\",6],[\"8840\",\"園\",9,\"åœåœžåœ 圡圢圤圥圦圧圫圱圲圴\",4,\"圼圽圿ååƒå„å…å†åˆå‰å‹å’\",4,\"å˜å™å¢å£å¥å§å¬å®å°å±å²å´åµå¸å¹åºå½å¾å¿åž€\"],[\"8880\",\"åžåž‡åžˆåž‰åžŠåž\",4,\"åž”\",6,\"åžœåžåžžåžŸåž¥åž¨åžªåž¬åž¯åž°åž±åž³åžµåž¶åž·åž¹\",8,\"埄\",6,\"埌åŸåŸåŸ‘埓埖埗埛埜埞埡埢埣埥\",7,\"埮埰埱埲埳埵埶執埻埼埾埿å å ƒå „å …å ˆå ‰å Šå Œå Žå å å ’å “å ”å –å —å ˜å šå ›å œå å Ÿå ¢å £å ¥\",4,\"å «\",4,\"å ±å ²å ³å ´å ¶\",7],[\"8940\",\"å ¾\",5,\"å¡…\",6,\"塎å¡å¡å¡’å¡“å¡•å¡–å¡—å¡™\",4,\"塟\",5,\"塦\",4,\"å¡\",16,\"塿墂墄墆墇墈墊墋墌\"],[\"8980\",\"å¢\",4,\"墔\",4,\"墛墜å¢å¢ \",7,\"墪\",17,\"墽墾墿壀壂壃壄壆\",10,\"壒壓壔壖\",13,\"壥\",5,\"å£å£¯å£±å£²å£´å£µå£·å£¸å£º\",7,\"夃夅夆夈\",4,\"夎å¤å¤‘夒夓夗夘夛å¤å¤žå¤ 夡夢夣夦夨夬夰夲夳夵夶夻\"],[\"8a40\",\"夽夾夿奀奃奅奆奊奌å¥å¥å¥’奓奙奛\",4,\"奡奣奤奦\",12,\"奵奷奺奻奼奾奿妀妅妉妋妌妎å¦å¦å¦‘妔妕妘妚妛妜å¦å¦Ÿå¦ 妡妢妦\"],[\"8a80\",\"妧妬å¦å¦°å¦±å¦³\",5,\"妺妼妽妿\",6,\"姇姈姉姌å§å§Žå§å§•姖姙姛姞\",4,\"姤姦姧姩姪姫å§\",11,\"姺姼姽姾娀娂娊娋å¨å¨Žå¨å¨å¨’娔娕娖娗娙娚娛å¨å¨žå¨¡å¨¢å¨¤å¨¦å¨§å¨¨å¨ª\",6,\"娳娵娷\",4,\"娽娾娿å©\",4,\"婇婈婋\",9,\"婖婗婘婙婛\",5],[\"8b40\",\"婡婣婤婥婦婨婩婫\",8,\"婸婹婻婼婽婾媀\",17,\"媓\",6,\"媜\",13,\"媫媬\"],[\"8b80\",\"åª\",4,\"媴媶媷媹\",4,\"媿嫀嫃\",5,\"嫊嫋å«\",4,\"嫓嫕嫗嫙嫚嫛å«å«žå«Ÿå«¢å«¤å«¥å«§å«¨å«ªå«¬\",4,\"嫲\",22,\"嬊\",11,\"嬘\",25,\"嬳嬵嬶嬸\",7,\"å\",6],[\"8c40\",\"åˆ\",7,\"å’å–åžå å¡å§å¨å«åå®å¯å²å´å¶å·å¸å¹å»å¼å¾å¿å®‚宆宊å®å®Žå®å®‘宒宔宖実宧宨宩宬å®å®®å®¯å®±å®²å®·å®ºå®»å®¼å¯€å¯å¯ƒå¯ˆå¯‰å¯Šå¯‹å¯å¯Žå¯\"],[\"8c80\",\"寑寔\",8,\"å¯ å¯¢å¯£å¯¦å¯§å¯©\",4,\"寯寱\",6,\"寽対尀専尃尅將專尋尌å°å°Žå°å°’å°“å°—å°™å°›å°žå°Ÿå° å°¡å°£å°¦å°¨å°©å°ªå°«å°å°®å°¯å°°å°²å°³å°µå°¶å°·å±ƒå±„屆屇屌å±å±’屓屔屖屗屘屚屛屜å±å±Ÿå±¢å±¤å±§\",6,\"å±°å±²\",6,\"屻屼屽屾岀岃\",4,\"岉岊岋岎å²å²’岓岕å²\",4,\"岤\",4],[\"8d40\",\"岪岮岯岰岲岴岶岹岺岻岼岾峀峂峃峅\",5,\"峌\",5,\"峓\",5,\"峚\",6,\"峢峣峧峩峫峬峮峯峱\",9,\"å³¼\",4],[\"8d80\",\"å´å´„å´…å´ˆ\",5,\"å´\",4,\"崕崗崘崙崚崜å´å´Ÿ\",4,\"崥崨崪崫崬崯\",4,\"å´µ\",7,\"å´¿\",7,\"嵈嵉åµ\",10,\"嵙嵚嵜嵞\",10,\"嵪åµåµ®åµ°åµ±åµ²åµ³åµµ\",12,\"嶃\",21,\"å¶šå¶›å¶œå¶žå¶Ÿå¶ \"],[\"8e40\",\"å¶¡\",21,\"嶸\",12,\"å·†\",6,\"å·Ž\",12,\"å·œå·Ÿå· å·£å·¤å·ªå·¬å·\"],[\"8e80\",\"巰巵巶巸\",4,\"巿帀帄帇帉帊帋å¸å¸Žå¸’帓帗帞\",7,\"帨\",4,\"帯帰帲\",4,\"帹帺帾帿幀å¹å¹ƒå¹†\",5,\"å¹\",6,\"å¹–\",4,\"幜å¹å¹Ÿå¹ å¹£\",14,\"幵幷幹幾åºåº‚広庅庈庉庌åºåºŽåº’庘庛åºåº¡åº¢åº£åº¤åº¨\",4,\"庮\",4,\"庴庺庻庼庽庿\",6],[\"8f40\",\"廆廇廈廋\",5,\"廔廕廗廘廙廚廜\",11,\"廩廫\",8,\"廵廸廹廻廼廽弅弆弇弉弌å¼å¼Žå¼å¼’弔弖弙弚弜å¼å¼žå¼¡å¼¢å¼£å¼¤\"],[\"8f80\",\"弨弫弬弮弰弲\",6,\"弻弽弾弿å½\",14,\"å½‘å½”å½™å½šå½›å½œå½žå½Ÿå½ å½£å½¥å½§å½¨å½«å½®å½¯å½²å½´å½µå½¶å½¸å½ºå½½å½¾å½¿å¾ƒå¾†å¾å¾Žå¾å¾‘従徔徖徚徛å¾å¾žå¾Ÿå¾ å¾¢\",5,\"復徫徬徯\",5,\"徶徸徹徺徻徾\",4,\"忇忈忊忋忎忓忔忕忚忛応忞忟忢忣忥忦忨忩忬忯忰忲忳忴忶忷忹忺忼怇\"],[\"9040\",\"æ€ˆæ€‰æ€‹æ€Œæ€æ€‘æ€“æ€—æ€˜æ€šæ€žæ€Ÿæ€¢æ€£æ€¤æ€¬æ€æ€®æ€°\",4,\"怶\",4,\"æ€½æ€¾æ€æ„\",6,\"æŒæŽææ‘æ“æ”æ–æ—æ˜æ›æœæžæŸæ æ¡æ¥æ¦æ®æ±æ²æ´æµæ·æ¾æ‚€\"],[\"9080\",\"æ‚æ‚‚æ‚…æ‚†æ‚‡æ‚ˆæ‚Šæ‚‹æ‚Žæ‚æ‚悑悓悕悗悘悙悜悞悡悢悤悥悧悩悪悮悰悳悵悶悷悹悺悽\",7,\"惇惈惉惌\",4,\"惒惓惔惖惗惙惛惞惡\",4,\"惪惱惲惵惷惸惻\",4,\"愂愃愄愅愇愊愋愌æ„\",4,\"æ„–æ„—æ„˜æ„™æ„›æ„œæ„æ„žæ„¡æ„¢æ„¥æ„¨æ„©æ„ªæ„¬\",18,\"æ…€\",6],[\"9140\",\"æ…‡æ…‰æ…‹æ…æ…æ…æ…’慓慔慖\",6,\"æ…žæ…Ÿæ… æ…¡æ…£æ…¤æ…¥æ…¦æ…©\",6,\"慱慲慳慴慶慸\",18,\"æ†Œæ†æ†\",4,\"憕\"],[\"9180\",\"憖\",6,\"憞\",8,\"憪憫æ†\",9,\"憸\",5,\"æ†¿æ‡€æ‡æ‡ƒ\",4,\"應懌\",4,\"懓懕\",16,\"懧\",13,\"懶\",8,\"戀\",5,\"æˆ‡æˆ‰æˆ“æˆ”æˆ™æˆœæˆæˆžæˆ æˆ£æˆ¦æˆ§æˆ¨æˆ©æˆ«æˆæˆ¯æˆ°æˆ±æˆ²æˆµæˆ¶æˆ¸\",4,\"扂扄扅扆扊\"],[\"9240\",\"æ‰æ‰æ‰•扖扗扙扚扜\",6,\"æ‰¤æ‰¥æ‰¨æ‰±æ‰²æ‰´æ‰µæ‰·æ‰¸æ‰ºæ‰»æ‰½æŠæŠ‚æŠƒæŠ…æŠ†æŠ‡æŠˆæŠ‹\",5,\"æŠ”æŠ™æŠœæŠæŠžæŠ£æŠ¦æŠ§æŠ©æŠªæŠæŠ®æŠ¯æŠ°æŠ²æŠ³æŠ´æŠ¶æŠ·æŠ¸æŠºæŠ¾æ‹€æ‹\"],[\"9280\",\"æ‹ƒæ‹‹æ‹æ‹‘æ‹•æ‹æ‹žæ‹ æ‹¡æ‹¤æ‹ªæ‹«æ‹°æ‹²æ‹µæ‹¸æ‹¹æ‹ºæ‹»æŒ€æŒƒæŒ„æŒ…æŒ†æŒŠæŒ‹æŒŒæŒæŒæŒæŒ’æŒ“æŒ”æŒ•æŒ—æŒ˜æŒ™æŒœæŒ¦æŒ§æŒ©æŒ¬æŒæŒ®æŒ°æŒ±æŒ³\",5,\"æŒ»æŒ¼æŒ¾æŒ¿æ€ææ„æ‡æˆæŠæ‘æ’æ“æ”æ–\",7,\"æ æ¤æ¥æ¦æ¨æªæ«æ¬æ¯æ°æ²æ³æ´æµæ¸æ¹æ¼æ½æ¾æ¿æŽæŽƒæŽ„æŽ…æŽ†æŽ‹æŽæŽ‘æŽ“æŽ”æŽ•æŽ—æŽ™\",6,\"採掤掦掫掯掱掲掵掶掹掻掽掿æ€\"],[\"9340\",\"ææ‚æƒæ…æ‡æˆæŠæ‹æŒæ‘æ“æ”æ•æ—\",6,\"æŸæ¢æ¤\",4,\"æ«æ¬æ®æ¯æ°æ±æ³æµæ·æ¹æºæ»æ¼æ¾æƒæ„æ†\",4,\"ææŽæ‘æ’æ•\",5,\"ææŸæ¢æ£æ¤\"],[\"9380\",\"æ¥æ§æ¨æ©æ«æ®\",5,\"æµ\",4,\"æ»æ¼æ¾æ‘€æ‘‚摃摉摋\",6,\"æ‘“æ‘•æ‘–æ‘—æ‘™\",4,\"摟\",7,\"摨摪摫摬摮\",9,\"æ‘»\",6,\"撃撆撈\",8,\"æ’“æ’”æ’—æ’˜æ’šæ’›æ’œæ’æ’Ÿ\",4,\"æ’¥æ’¦æ’§æ’¨æ’ªæ’«æ’¯æ’±æ’²æ’³æ’´æ’¶æ’¹æ’»æ’½æ’¾æ’¿æ“æ“ƒæ“„擆\",6,\"æ“æ“‘擓擔擕擖擙據\"],[\"9440\",\"æ“›æ“œæ“æ“Ÿæ“ 擡擣擥擧\",24,\"æ”\",7,\"攊\",7,\"攓\",4,\"æ”™\",8],[\"9480\",\"攢攣攤攦\",4,\"æ”¬æ”æ”°æ”±æ”²æ”³æ”·æ”ºæ”¼æ”½æ•€\",4,\"æ•†æ•‡æ•Šæ•‹æ•æ•Žæ•æ•’æ•“æ•”æ•—æ•˜æ•šæ•œæ•Ÿæ• æ•¡æ•¤æ•¥æ•§æ•¨æ•©æ•ªæ•æ•®æ•¯æ•±æ•³æ•µæ•¶æ•¸\",14,\"æ–ˆæ–‰æ–Šæ–æ–Žæ–æ–’æ–”æ–•æ––æ–˜æ–šæ–æ–žæ– 斢斣斦斨斪斬斮斱\",7,\"æ–ºæ–»æ–¾æ–¿æ—€æ—‚æ—‡æ—ˆæ—‰æ—Šæ—æ—旑旓旔旕旘\",7,\"旡旣旤旪旫\"],[\"9540\",\"旲旳旴旵旸旹旻\",4,\"æ˜æ˜„æ˜…æ˜‡æ˜ˆæ˜‰æ˜‹æ˜æ˜æ˜‘昒昖昗昘昚昛昜昞昡昢昣昤昦昩昪昫昬昮昰昲昳昷\",4,\"昽昿晀時晄\",6,\"æ™æ™Žæ™æ™‘晘\"],[\"9580\",\"æ™™æ™›æ™œæ™æ™žæ™ 晢晣晥晧晩\",4,\"æ™±æ™²æ™³æ™µæ™¸æ™¹æ™»æ™¼æ™½æ™¿æš€æšæšƒæš…æš†æšˆæš‰æšŠæš‹æšæšŽæšæšæš’æš“暔暕暘\",4,\"æšž\",8,\"æš©\",4,\"暯\",4,\"暵暶暷暸暺暻暼暽暿\",25,\"曚曞\",7,\"曧曨曪\",5,\"æ›±æ›µæ›¶æ›¸æ›ºæ›»æ›½æœæœ‚會\"],[\"9640\",\"æœ„æœ…æœ†æœ‡æœŒæœŽæœæœ‘æœ’æœ“æœ–æœ˜æœ™æœšæœœæœžæœ \",5,\"æœ§æœ©æœ®æœ°æœ²æœ³æœ¶æœ·æœ¸æœ¹æœ»æœ¼æœ¾æœ¿ææ„æ…æ‡æŠæ‹ææ’æ”æ•æ—\",4,\"ææ¢æ£æ¤æ¦æ§æ«æ¬æ®æ±æ´æ¶\"],[\"9680\",\"æ¸æ¹æºæ»æ½æž€æž‚æžƒæž…æž†æžˆæžŠæžŒæžæžŽæžæž‘æž’æž“æž”æž–æž™æž›æžŸæž æž¡æž¤æž¦æž©æž¬æž®æž±æž²æž´æž¹\",7,\"柂柅\",9,\"æŸ•æŸ–æŸ—æŸ›æŸŸæŸ¡æŸ£æŸ¤æŸ¦æŸ§æŸ¨æŸªæŸ«æŸæŸ®æŸ²æŸµ\",7,\"æŸ¾æ æ ‚æ ƒæ „æ †æ æ æ ’æ ”æ •æ ˜\",4,\"æ žæ Ÿæ æ ¢\",6,\"æ «\",6,\"æ ´æ µæ ¶æ ºæ »æ ¿æ¡‡æ¡‹æ¡æ¡æ¡’æ¡–\",5],[\"9740\",\"æ¡œæ¡æ¡žæ¡Ÿæ¡ªæ¡¬\",7,\"桵桸\",8,\"梂梄梇\",7,\"æ¢æ¢‘梒梔梕梖梘\",9,\"梣梤梥梩梪梫梬梮梱梲梴梶梷梸\"],[\"9780\",\"梹\",6,\"æ£æ£ƒ\",5,\"æ£Šæ£Œæ£Žæ£æ£æ£‘棓棔棖棗棙棛\",4,\"棡棢棤\",9,\"棯棲棳棴棶棷棸棻棽棾棿椀椂椃椄椆\",4,\"æ¤Œæ¤æ¤‘椓\",11,\"椡椢椣椥\",7,\"æ¤®æ¤¯æ¤±æ¤²æ¤³æ¤µæ¤¶æ¤·æ¤¸æ¤ºæ¤»æ¤¼æ¤¾æ¥€æ¥æ¥ƒ\",16,\"楕楖楘楙楛楜楟\"],[\"9840\",\"æ¥¡æ¥¢æ¥¤æ¥¥æ¥§æ¥¨æ¥©æ¥ªæ¥¬æ¥æ¥¯æ¥°æ¥²\",4,\"æ¥ºæ¥»æ¥½æ¥¾æ¥¿æ¦æ¦ƒæ¦…榊榋榌榎\",5,\"榖榗榙榚æ¦\",9,\"榩榪榬榮榯榰榲榳榵榶榸榹榺榼榽\"],[\"9880\",\"榾榿槀槂\",7,\"æ§‹æ§æ§æ§‘æ§’æ§“æ§•\",5,\"æ§œæ§æ§žæ§¡\",11,\"槮槯槰槱槳\",9,\"槾樀\",9,\"樋\",11,\"標\",5,\"æ¨ æ¨¢\",5,\"æ¨©æ¨«æ¨¬æ¨æ¨®æ¨°æ¨²æ¨³æ¨´æ¨¶\",6,\"樿\",4,\"橅橆橈\",7,\"æ©‘\",6,\"橚\"],[\"9940\",\"橜\",4,\"橢橣橤橦\",10,\"橲\",6,\"æ©ºæ©»æ©½æ©¾æ©¿æªæª‚檃檅\",8,\"æªæª’\",4,\"檘\",7,\"檡\",5],[\"9980\",\"檧檨檪æª\",114,\"欥欦欨\",6],[\"9a40\",\"æ¬¯æ¬°æ¬±æ¬³æ¬´æ¬µæ¬¶æ¬¸æ¬»æ¬¼æ¬½æ¬¿æ€ææ‚æ„æ…æˆæŠæ‹æ\",11,\"æš\",7,\"æ¨æ©æ«\",13,\"æºæ½æ¾æ¿æ®€æ®…殈\"],[\"9a80\",\"æ®Œæ®Žæ®æ®æ®‘殔殕殗殘殙殜\",4,\"殢\",7,\"殫\",7,\"殶殸\",6,\"毀毃毄毆\",4,\"æ¯Œæ¯Žæ¯æ¯‘毘毚毜\",4,\"毢\",7,\"æ¯¬æ¯æ¯®æ¯°æ¯±æ¯²æ¯´æ¯¶æ¯·æ¯¸æ¯ºæ¯»æ¯¼æ¯¾\",6,\"æ°ˆ\",4,\"æ°Žæ°’æ°—æ°œæ°æ°žæ° æ°£æ°¥æ°«æ°¬æ°æ°±æ°³æ°¶æ°·æ°¹æ°ºæ°»æ°¼æ°¾æ°¿æ±ƒæ±„汅汈汋\",4,\"汑汒汓汖汘\"],[\"9b40\",\"汙汚汢汣汥汦汧汫\",4,\"æ±±æ±³æ±µæ±·æ±¸æ±ºæ±»æ±¼æ±¿æ²€æ²„æ²‡æ²Šæ²‹æ²æ²Žæ²‘æ²’æ²•æ²–æ²—æ²˜æ²šæ²œæ²æ²žæ² æ²¢æ²¨æ²¬æ²¯æ²°æ²´æ²µæ²¶æ²·æ²ºæ³€æ³æ³‚æ³ƒæ³†æ³‡æ³ˆæ³‹æ³æ³Žæ³æ³‘泒泘\"],[\"9b80\",\"æ³™æ³šæ³œæ³æ³Ÿæ³¤æ³¦æ³§æ³©æ³¬æ³æ³²æ³´æ³¹æ³¿æ´€æ´‚æ´ƒæ´…æ´†æ´ˆæ´‰æ´Šæ´æ´æ´æ´‘æ´“æ´”æ´•æ´–æ´˜æ´œæ´æ´Ÿ\",5,\"æ´¦æ´¨æ´©æ´¬æ´æ´¯æ´°æ´´æ´¶æ´·æ´¸æ´ºæ´¿æµ€æµ‚æµ„æµ‰æµŒæµæµ•æµ–æµ—æµ˜æµ›æµæµŸæµ¡æµ¢æµ¤æµ¥æµ§æµ¨æµ«æµ¬æµæµ°æµ±æµ²æµ³æµµæµ¶æµ¹æµºæµ»æµ½\",4,\"æ¶ƒæ¶„æ¶†æ¶‡æ¶Šæ¶‹æ¶æ¶æ¶æ¶’æ¶–\",4,\"æ¶œæ¶¢æ¶¥æ¶¬æ¶æ¶°æ¶±æ¶³æ¶´æ¶¶æ¶·æ¶¹\",5,\"æ·æ·‚淃淈淉淊\"],[\"9c40\",\"æ·æ·Žæ·æ·æ·’æ·“æ·”æ·•æ·—æ·šæ·›æ·œæ·Ÿæ·¢æ·£æ·¥æ·§æ·¨æ·©æ·ªæ·æ·¯æ·°æ·²æ·´æ·µæ·¶æ·¸æ·ºæ·½\",7,\"æ¸†æ¸‡æ¸ˆæ¸‰æ¸‹æ¸æ¸’渓渕渘渙減渜渞渟渢渦渧渨渪測渮渰渱渳渵\"],[\"9c80\",\"渶渷渹渻\",7,\"æ¹…\",7,\"æ¹æ¹æ¹‘æ¹’æ¹•æ¹—æ¹™æ¹šæ¹œæ¹æ¹žæ¹ \",10,\"æ¹¬æ¹æ¹¯\",14,\"æº€æºæº‚溄溇溈溊\",4,\"溑\",6,\"æº™æºšæº›æºæºžæº æº¡æº£æº¤æº¦æº¨æº©æº«æº¬æºæº®æº°æº³æºµæº¸æº¹æº¼æº¾æº¿æ»€æ»ƒæ»„æ»…æ»†æ»ˆæ»‰æ»Šæ»Œæ»æ»Žæ»æ»’æ»–æ»˜æ»™æ»›æ»œæ»æ»£æ»§æ»ª\",5],[\"9d40\",\"滰滱滲滳滵滶滷滸滺\",7,\"漃漄漅漇漈漊\",4,\"æ¼æ¼‘æ¼’æ¼–\",9,\"漡漢漣漥漦漧漨漬漮漰漲漴漵漷\",6,\"æ¼¿æ½€æ½æ½‚\"],[\"9d80\",\"潃潄潅潈潉潊潌潎\",9,\"æ½™æ½šæ½›æ½æ½Ÿæ½ 潡潣潤潥潧\",5,\"潯潰潱潳潵潶潷潹潻潽\",6,\"澅澆澇澊澋æ¾\",12,\"æ¾æ¾žæ¾Ÿæ¾ æ¾¢\",4,\"澨\",10,\"澴澵澷澸澺\",5,\"æ¿æ¿ƒ\",5,\"濊\",6,\"æ¿“\",10,\"濟濢濣濤濥\"],[\"9e40\",\"濦\",7,\"æ¿°\",32,\"瀒\",7,\"瀜\",6,\"瀤\",6],[\"9e80\",\"瀫\",9,\"瀶瀷瀸瀺\",17,\"ççŽç\",13,\"çŸ\",11,\"ç®ç±ç²ç³ç´ç·ç¹çºç»ç½ç‚炂炃炄炆炇炈炋炌ç‚ç‚ç‚炑炓炗炘炚炛炞\",12,\"炰炲炴炵炶為炾炿烄烅烆烇烉烋\",12,\"烚\"],[\"9f40\",\"烜çƒçƒžçƒ 烡烢烣烥烪烮烰\",6,\"烸烺烻烼烾\",10,\"ç„‹\",4,\"焑焒焔焗焛\",10,\"ç„§\",7,\"焲焳焴\"],[\"9f80\",\"焵焷\",13,\"煆煇煈煉煋ç…ç…\",12,\"ç…ç…Ÿ\",4,\"煥煩\",4,\"煯煰煱煴煵煶煷煹煻煼煾\",5,\"熅\",4,\"熋熌ç†ç†Žç†ç†‘熒熓熕熖熗熚\",4,\"熡\",6,\"熩熪熫ç†\",5,\"熴熶熷熸熺\",8,\"燄\",9,\"ç‡\",4],[\"a040\",\"燖\",9,\"燡燢燣燤燦燨\",5,\"燯\",9,\"燺\",11,\"爇\",19],[\"a080\",\"爛爜爞\",9,\"爩爫çˆçˆ®çˆ¯çˆ²çˆ³çˆ´çˆºçˆ¼çˆ¾ç‰€\",6,\"牉牊牋牎ç‰ç‰ç‰‘ç‰“ç‰”ç‰•ç‰—ç‰˜ç‰šç‰œç‰žç‰ ç‰£ç‰¤ç‰¥ç‰¨ç‰ªç‰«ç‰¬ç‰ç‰°ç‰±ç‰³ç‰´ç‰¶ç‰·ç‰¸ç‰»ç‰¼ç‰½çŠ‚çŠƒçŠ…\",4,\"犌犎çŠçŠ‘çŠ“\",11,\"çŠ \",11,\"犮犱犲犳犵犺\",6,\"狅狆狇狉狊狋狌ç‹ç‹‘狓狔狕狖狘狚狛\"],[\"a1a1\",\" ã€ã€‚·ˉˇ¨〃々—~‖…‘’“â€ã€”〕〈\",7,\"〖〗ã€ã€‘±×÷∶∧∨∑âˆâˆªâˆ©âˆˆâˆ·âˆšâŠ¥âˆ¥âˆ âŒ’âŠ™âˆ«âˆ®â‰¡â‰Œâ‰ˆâˆ½âˆâ‰ â‰®â‰¯â‰¤â‰¥âˆžâˆµâˆ´â™‚â™€Â°â€²â€³â„ƒï¼„Â¤ï¿ ï¿¡â€°Â§â„–â˜†â˜…â—‹â—◎◇◆□■△▲※→â†â†‘↓〓\"],[\"a2a1\",\"â…°\",9],[\"a2b1\",\"â’ˆ\",19,\"â‘´\",19,\"â‘ \",9],[\"a2e5\",\"㈠\",9],[\"a2f1\",\"â… \",11],[\"a3a1\",\"ï¼ï¼‚#¥%\",88,\"ï¿£\"],[\"a4a1\",\"ã\",82],[\"a5a1\",\"ã‚¡\",85],[\"a6a1\",\"Α\",16,\"Σ\",6],[\"a6c1\",\"α\",16,\"σ\",6],[\"a6e0\",\"︵︶︹︺︿﹀︽︾ï¹ï¹‚﹃﹄\"],[\"a6ee\",\"︻︼︷︸︱\"],[\"a6f4\",\"︳︴\"],[\"a7a1\",\"Ð\",5,\"ÐЖ\",25],[\"a7d1\",\"а\",5,\"ёж\",25],[\"a840\",\"ˊˋ˙–―‥‵℅℉↖↗↘↙∕∟∣≒≦≧⊿â•\",35,\"â–\",6],[\"a880\",\"â–ˆ\",7,\"▓▔▕▼▽◢◣◤◥☉⊕〒ã€ã€ž\"],[\"a8a1\",\"Äáǎà ēéěèīÃÇìÅóǒòūúǔùǖǘǚǜüêɑ\"],[\"a8bd\",\"ńň\"],[\"a8c0\",\"É¡\"],[\"a8c5\",\"ã„…\",36],[\"a940\",\"〡\",8,\"㊣㎎ãŽãŽœãŽãŽžãŽ¡ã„ãŽã‘ã’ã•︰¬¦\"],[\"a959\",\"℡㈱\"],[\"a95c\",\"â€\"],[\"a960\",\"ー゛゜ヽヾ〆ã‚ゞ﹉\",9,\"﹔﹕﹖﹗﹙\",8],[\"a980\",\"ï¹¢\",4,\"﹨﹩﹪﹫\"],[\"a996\",\"〇\"],[\"a9a4\",\"─\",75],[\"aa40\",\"狜ç‹ç‹Ÿç‹¢\",5,\"狪狫狵狶狹狽狾狿猀猂猄\",5,\"猋猌çŒçŒçŒçŒ‘çŒ’çŒ”çŒ˜çŒ™çŒšçŒŸçŒ çŒ£çŒ¤çŒ¦çŒ§çŒ¨çŒçŒ¯çŒ°çŒ²çŒ³çŒµçŒ¶çŒºçŒ»çŒ¼çŒ½ç€\",8],[\"aa80\",\"ç‰çŠç‹çŒçŽçç‘ç“ç”ç•ç–ç˜\",7,\"ç¡\",10,\"ç®ç°ç±\"],[\"ab40\",\"ç²\",11,\"ç¿\",4,\"玅玆玈玊玌çŽçŽçŽçŽ’çŽ“çŽ”çŽ•çŽ—çŽ˜çŽ™çŽšçŽœçŽçŽžçŽ çŽ¡çŽ£\",5,\"玪玬çŽçŽ±çŽ´çŽµçŽ¶çŽ¸çŽ¹çŽ¼çŽ½çŽ¾çŽ¿ççƒ\",4],[\"ab80\",\"ç‹çŒçŽç’\",6,\"çšç›çœççŸç¡ç¢ç£ç¤ç¦ç¨çªç«ç¬ç®ç¯ç°ç±ç³\",4],[\"ac40\",\"ç¸\",10,\"ç„ç‡çˆç‹çŒççŽç‘\",8,\"çœ\",5,\"ç£ç¤ç§ç©ç«çç¯ç±ç²ç·\",4,\"ç½ç¾ç¿ç‘€ç‘‚\",11],[\"ac80\",\"瑎\",6,\"瑖瑘ç‘ç‘ \",12,\"瑮瑯瑱\",4,\"瑸瑹瑺\"],[\"ad40\",\"瑻瑼瑽瑿璂璄璅璆璈璉璊璌ç’ç’ç’‘\",10,\"ç’ç’Ÿ\",7,\"ç’ª\",15,\"ç’»\",12],[\"ad80\",\"瓈\",9,\"ç““\",8,\"ç“瓟瓡瓥瓧\",6,\"瓰瓱瓲\"],[\"ae40\",\"瓳瓵瓸\",6,\"甀ç”甂甃甅\",7,\"甎ç”甒甔甕甖甗甛ç”ç”žç” \",4,\"甦甧甪甮甴甶甹甼甽甿ç•畂畃畄畆畇畉畊ç•ç•畑畒畓畕畖畗畘\"],[\"ae80\",\"ç•\",7,\"畧畨畩畫\",6,\"畳畵當畷畺\",4,\"ç–€ç–ç–‚ç–„ç–…ç–‡\"],[\"af40\",\"疈疉疊疌ç–ç–Žç–疓疕疘疛疜疞疢疦\",4,\"ç–疶疷疺疻疿痀ç—痆痋痌痎ç—ç—痑痓痗痙痚痜ç—ç—Ÿç— ç—¡ç—¥ç—©ç—¬ç—痮痯痲痳痵痶痷痸痺痻痽痾瘂瘄瘆瘇\"],[\"af80\",\"瘈瘉瘋ç˜ç˜Žç˜ç˜‘瘒瘓瘔瘖瘚瘜ç˜ç˜žç˜¡ç˜£ç˜§ç˜¨ç˜¬ç˜®ç˜¯ç˜±ç˜²ç˜¶ç˜·ç˜¹ç˜ºç˜»ç˜½ç™ç™‚癄\"],[\"b040\",\"ç™…\",6,\"癎\",5,\"癕癗\",4,\"ç™ç™Ÿç™ 癡癢癤\",6,\"癬ç™ç™®ç™°\",7,\"癹発發癿皀çšçšƒçš…皉皊皌çšçšçšçš’皔皕皗皘皚皛\"],[\"b080\",\"çšœ\",7,\"皥\",8,\"皯皰皳皵\",9,\"盀ç›ç›ƒå•Šé˜¿åŸƒæŒ¨å“Žå”‰å“€çš‘癌蔼矮艾ç¢çˆ±éš˜éžæ°¨å®‰ä¿ºæŒ‰æš—å²¸èƒºæ¡ˆè‚®æ˜‚ç›Žå‡¹æ•–ç†¬ç¿±è¢„å‚²å¥¥æ‡Šæ¾³èŠæŒæ‰’åå§ç¬†å…«ç–¤å·´æ‹”è·‹é¶æŠŠè€™å霸罢爸白æŸç™¾æ‘†ä½°è´¥æ‹œç¨—æ–‘çæ¬æ‰³èˆ¬é¢æ¿ç‰ˆæ‰®æ‹Œä¼´ç“£åŠåŠžç»Šé‚¦å¸®æ¢†æ¦œè†€ç»‘æ£’ç£…èšŒé•‘å‚谤苞胞包褒剥\"],[\"b140\",\"盄盇盉盋盌盓盕盙盚盜ç›ç›žç› \",4,\"盦\",7,\"盰盳盵盶盷盺盻盽盿眀眂眃眅眆眊県眎\",10,\"眛眜çœçœžçœ¡çœ£çœ¤çœ¥çœ§çœªçœ«\"],[\"b180\",\"眬眮眰\",4,\"眹眻眽眾眿ç‚ç„ç…ç†çˆ\",7,\"ç’\",7,\"çœè–„雹ä¿å ¡é¥±å®æŠ±æŠ¥æš´è±¹é²çˆ†æ¯ç¢‘悲å‘北辈背è´é’¡å€ç‹ˆå¤‡æƒ«ç„™è¢«å¥”è‹¯æœ¬ç¬¨å´©ç»·ç”æ³µè¹¦è¿¸é€¼é¼»æ¯”鄙笔彼碧蓖蔽毕毙毖å¸åº‡ç—¹é—æ•弊必辟å£è‡‚é¿é™›éžè¾¹ç¼–è´¬æ‰ä¾¿å˜åžè¾¨è¾©è¾«éæ ‡å½ªè†˜è¡¨é³–æ†‹åˆ«ç˜ªå½¬æ–Œæ¿’æ»¨å®¾æ‘ˆå…µå†°æŸ„ä¸™ç§‰é¥¼ç‚³\"],[\"b240\",\"ççžçŸç ç¤ç§ç©çªç\",11,\"çºç»ç¼çžçž‚瞃瞆\",5,\"çžçžçž“\",11,\"瞡瞣瞤瞦瞨瞫çžçž®çž¯çž±çž²çž´çž¶\",4],[\"b280\",\"瞼瞾矀\",12,\"矎\",8,\"矘矙矚çŸ\",4,\"çŸ¤ç—…å¹¶çŽ»è æ’拨钵波åšå‹ƒæé“‚箔伯帛舶脖膊渤泊驳æ•åœå“ºè¡¥åŸ ä¸å¸ƒæ¥ç°¿éƒ¨æ€–æ“¦çŒœè£ææ‰è´¢ç¬è¸©é‡‡å½©èœè”¡é¤å‚èš•æ®‹æƒæƒ¨ç¿è‹èˆ±ä»“æ²§è—æ“糙槽曹è‰åŽ•ç–ä¾§å†Œæµ‹å±‚è¹æ’å‰èŒ¬èŒ¶æŸ¥ç¢´æ½å¯Ÿå²”å·®è¯§æ‹†æŸ´è±ºæ€æŽºè‰é¦‹è°—ç¼ é“²äº§é˜é¢¤æ˜ŒçŒ–\"],[\"b340\",\"çŸ¦çŸ¨çŸªçŸ¯çŸ°çŸ±çŸ²çŸ´çŸµçŸ·çŸ¹çŸºçŸ»çŸ¼ç ƒ\",5,\"ç Šç ‹ç Žç ç ç “ç •ç ™ç ›ç žç ç ¡ç ¢ç ¤ç ¨ç ªç «ç ®ç ¯ç ±ç ²ç ³ç µç ¶ç ½ç ¿ç¡ç¡‚硃硄硆硈硉硊硋ç¡ç¡ç¡‘硓硔硘硙硚\"],[\"b380\",\"硛硜硞\",11,\"硯\",7,\"硸硹硺硻硽\",6,\"场å°å¸¸é•¿å¿è‚ 厂敞畅唱倡超抄钞æœå˜²æ½®å·¢åµç‚’车扯撤掣彻澈郴臣辰尘晨忱沉陈è¶è¡¬æ’‘称城橙æˆå‘ˆä¹˜ç¨‹æƒ©æ¾„诚承逞骋秤åƒç—´æŒåŒ™æ± è¿Ÿå¼›é©°è€»é½¿ä¾ˆå°ºèµ¤ç¿…æ–¥ç‚½å……å†²è™«å´‡å® æŠ½é…¬ç•´è¸Œç¨ æ„ç¹ä»‡ç»¸çž…丑è‡åˆå‡ºæ©±åŽ¨èº‡é”„é›æ»é™¤æ¥š\"],[\"b440\",\"碄碅碆碈碊碋ç¢ç¢ç¢’碔碕碖碙ç¢ç¢žç¢ 碢碤碦碨\",7,\"碵碶碷碸確碻碼碽碿磀磂磃磄磆磇磈磌ç£ç£Žç£ç£‘磒磓磖磗磘磚\",9],[\"b480\",\"磤磥磦磧磩磪磫ç£\",4,\"磳磵磶磸磹磻\",5,\"礂礃礄礆\",6,\"础储矗æè§¦å¤„æ£å·ç©¿æ¤½ä¼ 船喘串疮窗幢床闯创å¹ç‚Šæ¶é”¤åž‚æ˜¥æ¤¿é†‡å”‡æ·³çº¯è ¢æˆ³ç»°ç–µèŒ¨ç£é›Œè¾žæ…ˆç“·è¯æ¤åˆºèµæ¬¡èªè‘±å›±åŒ†ä»Žä¸›å‡‘粗醋簇促蹿篡窜摧崔催脆ç˜ç²¹æ·¬ç¿ æ‘å˜å¯¸ç£‹æ’®æ“措挫错æè¾¾ç”瘩打大呆æ¹å‚£æˆ´å¸¦æ®†ä»£è´·è¢‹å¾…逮\"],[\"b540\",\"ç¤\",5,\"礔\",9,\"礟\",4,\"礥\",14,\"礵\",4,\"礽礿祂祃祄祅祇祊\",8,\"祔祕祘祙祡祣\"],[\"b580\",\"祤祦祩祪祫祬祮祰\",6,\"祹祻\",4,\"禂禃禆禇禈禉禋禌ç¦ç¦Žç¦ç¦‘ç¦’æ€ è€½æ‹…ä¸¹å•éƒ¸æŽ¸èƒ†æ—¦æ°®ä½†æƒ®æ·¡è¯žå¼¹è›‹å½“æŒ¡å…šè¡æ¡£åˆ€æ£è¹ˆå€’岛祷导到稻悼é“盗德得的蹬ç¯ç™»ç‰çžªå‡³é‚“å ¤ä½Žæ»´è¿ªæ•Œç¬›ç‹„æ¶¤ç¿Ÿå«¡æŠµåº•åœ°è’‚ç¬¬å¸å¼Ÿé€’ç¼”é¢ æŽ‚æ»‡ç¢˜ç‚¹å…¸é›åž«ç”µä½ƒç”¸åº—æƒ¦å¥ æ·€æ®¿ç¢‰å¼é›•å‡‹åˆæŽ‰åŠé’“调跌爹碟è¶è¿è°å \"],[\"b640\",\"禓\",6,\"禛\",11,\"禨\",10,\"禴\",4,\"禼禿秂秄秅秇秈秊秌秎ç§ç§ç§“秔秖秗秙\",5,\"ç§ ç§¡ç§¢ç§¥ç§¨ç§ª\"],[\"b680\",\"秬秮秱\",6,\"秹秺秼秾秿ç¨ç¨„稅稇稈稉稊稌ç¨\",4,\"稕稖稘稙稛稜ä¸ç›¯å®é’‰é¡¶é¼Žé”å®šè®¢ä¸¢ä¸œå†¬è‘£æ‡‚åŠ¨æ ‹ä¾—æ«å†»æ´žå…œæŠ–æ–—é™¡è±†é€—ç—˜éƒ½ç£æ¯’çŠŠç‹¬è¯»å µç¹èµŒæœé•€è‚šåº¦æ¸¡å¦’端çŸé”»æ®µæ–ç¼Žå †å…‘é˜Ÿå¯¹å¢©å¨è¹²æ•¦é¡¿å›¤é’ç›¾éæŽ‡å“†å¤šå¤ºåž›èº²æœµè·ºèˆµå‰æƒ°å •蛾峨鹅俄é¢è®¹å¨¥æ¶åŽ„æ‰¼é鄂饿æ©è€Œå„¿è€³å°”饵洱二\"],[\"b740\",\"ç¨ç¨Ÿç¨¡ç¨¢ç¨¤\",14,\"稴稵稶稸稺稾穀\",5,\"穇\",9,\"ç©’\",4,\"穘\",16],[\"b780\",\"ç©©\",6,\"穱穲穳穵穻穼穽穾窂窅窇窉窊窋窌窎çªçªçª“窔窙窚窛窞窡窢贰å‘罚çä¼ä¹é˜€æ³•ç藩帆番翻樊矾钒ç¹å‡¡çƒ¦åè¿”èŒƒè´©çŠ¯é¥æ³›åŠèŠ³æ–¹è‚ªæˆ¿é˜²å¦¨ä»¿è®¿çººæ”¾è²éžå•¡é£žè‚¥åŒªè¯½å è‚ºåºŸæ²¸è´¹èŠ¬é…šå©æ°›åˆ†çº·åŸç„šæ±¾ç²‰å¥‹ä»½å¿¿æ„¤ç²ªä¸°å°æž«èœ‚峰锋风疯烽逢冯ç¼è®½å¥‰å‡¤ä½›å¦å¤«æ•·è‚¤åµæ‰¶æ‹‚è¾å¹…氟符ä¼ä¿˜æœ\"],[\"b840\",\"窣窤窧窩窪窫窮\",4,\"窴\",10,\"ç«€\",10,\"竌\",9,\"竗竘竚竛竜ç«ç«¡ç«¢ç«¤ç«§\",5,\"竮竰竱竲竳\"],[\"b880\",\"ç«´\",4,\"竻竼竾笀ç¬ç¬‚笅笇笉笌ç¬ç¬Žç¬ç¬’笓笖笗笘笚笜ç¬ç¬Ÿç¬¡ç¬¢ç¬£ç¬§ç¬©ç¬æµ®æ¶ªç¦è¢±å¼—甫抚辅俯釜斧脯腑府è…赴副覆赋å¤å‚…付阜父腹负富讣附妇缚å’å™¶å˜Žè¯¥æ”¹æ¦‚é’™ç›–æº‰å¹²ç”˜æ†æŸ‘ç«¿è‚赶感秆敢赣冈刚钢缸肛纲岗港æ 篙皋高è†ç¾”糕æžé•ç¨¿å‘Šå“¥æŒææˆˆé¸½èƒ³ç–™å‰²é©è‘›æ ¼è›¤é˜éš”铬个å„ç»™æ ¹è·Ÿè€•æ›´åºšç¾¹\"],[\"b940\",\"笯笰笲笴笵笶笷笹笻笽笿\",5,\"ç†çˆçŠççŽç“ç•ç—ç™çœçžçŸç¡ç£\",10,\"ç¯ç°ç³ç´ç¶ç¸çºç¼ç½ç¿ç®ç®‚箃箄箆\",6,\"箎ç®\"],[\"b980\",\"ç®‘ç®’ç®“ç®–ç®˜ç®™ç®šç®›ç®žç®Ÿç® ç®£ç®¤ç®¥ç®®ç®¯ç®°ç®²ç®³ç®µç®¶ç®·ç®¹\",7,\"篂篃範埂耿梗工攻功æé¾šä¾›èº¬å…¬å®«å¼“巩汞拱贡共钩勾沟苟狗垢构è´å¤Ÿè¾œè‡å’•ç®ä¼°æ²½å¤å§‘鼓å¤è›Šéª¨è°·è‚¡æ•…顾固雇刮瓜å‰å¯¡æŒ‚è¤‚ä¹–æ‹æ€ªæ£ºå…³å®˜å† è§‚ç®¡é¦†ç½æƒ¯çŒè´¯å…‰å¹¿é€›ç‘°è§„åœç¡…归龟闺轨鬼诡癸桂柜跪贵刽辊滚æ£é”…éƒå›½æžœè£¹è¿‡å“ˆ\"],[\"ba40\",\"篅篈築篊篋ç¯ç¯Žç¯ç¯ç¯’篔\",4,\"ç¯›ç¯œç¯žç¯Ÿç¯ ç¯¢ç¯£ç¯¤ç¯§ç¯¨ç¯©ç¯«ç¯¬ç¯ç¯¯ç¯°ç¯²\",4,\"篸篹篺篻篽篿\",7,\"簈簉簊ç°ç°Žç°\",5,\"簗簘簙\"],[\"ba80\",\"ç°š\",4,\"ç° \",5,\"簨簩簫\",12,\"ç°¹\",5,\"ç±‚éª¸å©æµ·æ°¦äº¥å®³éª‡é…£æ†¨é‚¯éŸ©å«æ¶µå¯’å‡½å–Šç½•ç¿°æ’¼ææ—±æ†¾æ‚焊汗汉夯æèˆªå£•嚎豪毫éƒå¥½è€—å·æµ©å‘µå–è·èæ ¸ç¦¾å’Œä½•åˆç›’貉阂河涸赫è¤é¹¤è´ºå˜¿é»‘ç—•å¾ˆç‹ æ¨å“¼äº¨æ¨ªè¡¡æ’轰哄烘虹鸿洪å®å¼˜çº¢å–‰ä¾¯çŒ´å¼åŽšå€™åŽå‘¼ä¹Žå¿½ç‘šå£¶è‘«èƒ¡è´ç‹ç³Šæ¹–\"],[\"bb40\",\"籃\",9,\"籎\",36,\"ç±µ\",5,\"ç±¾\",9],[\"bb80\",\"粈粊\",6,\"ç²“ç²”ç²–ç²™ç²šç²›ç² ç²¡ç²£ç²¦ç²§ç²¨ç²©ç²«ç²¬ç²ç²¯ç²°ç²´\",4,\"粺粻弧虎唬护互沪户花哗åŽçŒ¾æ»‘ç”»åˆ’åŒ–è¯æ§å¾Šæ€€æ·®åæ¬¢çŽ¯æ¡“è¿˜ç¼“æ¢æ‚£å”¤ç—ªè±¢ç„•æ¶£å®¦å¹»è’æ…Œé»„磺è—簧皇凰惶煌晃幌æè°Žç°æŒ¥è¾‰å¾½æ¢è›”å›žæ¯æ‚”æ…§å‰æƒ æ™¦è´¿ç§½ä¼šçƒ©æ±‡è®³è¯²ç»˜è¤æ˜å©šé‚æµ‘æ··è±æ´»ä¼™ç«èŽ·æˆ–æƒ‘éœè´§ç¥¸å‡»åœ¾åŸºæœºç•¸ç¨½ç§¯ç®•\"],[\"bc40\",\"粿糀糂糃糄糆糉糋糎\",6,\"糘糚糛ç³ç³žç³¡\",6,\"糩\",5,\"ç³°\",7,\"糹糺糼\",13,\"ç´‹\",5],[\"bc80\",\"ç´‘\",14,\"紡紣紤紥紦紨紩紪紬ç´ç´®ç´°\",6,\"è‚Œé¥¥è¿¹æ¿€è®¥é¸¡å§¬ç»©ç¼‰å‰æžæ£˜è¾‘ç±é›†åŠæ€¥ç–¾æ±²å³å«‰çº§æŒ¤å‡ 脊己蓟技冀å£ä¼Žç¥å‰‚æ‚¸æµŽå¯„å¯‚è®¡è®°æ—¢å¿Œé™…å¦“ç»§çºªå˜‰æž·å¤¹ä½³å®¶åŠ èšé¢Šè´¾ç”²é’¾å‡ç¨¼ä»·æž¶é©¾å«æ¼ç›‘åšå°–笺间煎兼肩艰奸缄茧检柬碱硷拣æ¡ç®€ä¿å‰ªå‡è槛鉴践贱è§é”®ç®ä»¶\"],[\"bd40\",\"ç´·\",54,\"絯\",7],[\"bd80\",\"絸\",32,\"å¥èˆ°å‰‘é¥¯æ¸æº…æ¶§å»ºåƒµå§œå°†æµ†æ±Ÿç–†è’‹æ¡¨å¥–è®²åŒ é…±é™è•‰æ¤’ç¤ç„¦èƒ¶äº¤éƒŠæµ‡éª„娇嚼æ…铰矫侥脚狡角饺缴绞剿教酵轿较å«çª–ææŽ¥çš†ç§¸è¡—é˜¶æˆªåŠ«èŠ‚æ¡”æ°æ·ç«ç«æ´ç»“è§£å§æˆ’è—‰èŠ¥ç•Œå€Ÿä»‹ç–¥è¯«å±Šå·¾ç‹æ–¤é‡‘ä»Šæ´¥è¥Ÿç´§é”¦ä»…è°¨è¿›é³æ™‹ç¦è¿‘烬浸\"],[\"be40\",\"ç¶™\",12,\"ç¶§\",6,\"綯\",42],[\"be80\",\"ç·š\",32,\"尽劲è†å…¢èŒŽç›æ™¶é²¸äº¬æƒŠç²¾ç²³ç»äº•è¦æ™¯é¢ˆé™å¢ƒæ•¬é•œå¾„ç—‰é–竟竞净炯窘æªç©¶çº 玖éŸä¹…ç¸ä¹é…’åŽ©æ•‘æ—§è‡¼èˆ…å’Žå°±ç–šéž æ‹˜ç‹™ç–½å±…é©¹èŠå±€å’€çŸ©ä¸¾æ²®èšæ‹’æ®å·¨å…·è·è¸žé”¯ä¿±å¥æƒ§ç‚¬å‰§æé¹ƒå¨Ÿå€¦çœ·å·ç»¢æ’…攫抉掘倔爵觉决诀ç»å‡èŒé’§å†›å›å³»\"],[\"bf40\",\"ç·»\",62],[\"bf80\",\"縺縼\",4,\"繂\",4,\"繈\",21,\"俊竣浚郡éªå–€å’–å¡å’¯å¼€æ©æ¥·å‡¯æ…¨åˆŠå ªå‹˜åŽç çœ‹åº·æ…·ç³ æ‰›æŠ—äº¢ç‚•è€ƒæ‹·çƒ¤é å·è‹›æŸ¯æ£µç£•é¢—ç§‘å£³å’³å¯æ¸´å…‹åˆ»å®¢è¯¾è‚¯å•ƒåž¦æ³å‘å空æå”æŽ§æŠ å£æ‰£å¯‡æž¯å“窟苦酷库裤夸垮挎跨胯å—ç·ä¾©å¿«å®½æ¬¾åŒ¡ç狂框矿眶旷况äºç›”岿窥葵奎éå‚€\"],[\"c040\",\"繞\",35,\"纃\",23,\"纜çºçºž\"],[\"c080\",\"纮纴纻纼绖绤绬绹缊ç¼ç¼žç¼·ç¼¹ç¼»\",6,\"罃罆\",9,\"ç½’ç½“é¦ˆæ„§æºƒå¤æ˜†æ†å›°æ‹¬æ‰©å»“阔垃拉喇蜡腊辣啦莱æ¥èµ–è“å©ªæ æ‹¦ç¯®é˜‘兰澜谰æ½è§ˆæ‡’ç¼†çƒ‚æ»¥ç…æ¦”狼廊郎朗浪æžåŠ³ç‰¢è€ä½¬å§¥é…ªçƒ™æ¶å‹’ä¹é›·é•蕾磊累儡垒擂肋类泪棱楞冷厘梨çŠé»Žç¯±ç‹¸ç¦»æ¼“ç†æŽé‡Œé²¤ç¤¼èމè”åæ —ä¸½åŽ‰åŠ±ç ¾åŽ†åˆ©å‚ˆä¾‹ä¿\"],[\"c140\",\"罖罙罛罜ç½ç½žç½ ç½£\",4,\"罫罬ç½ç½¯ç½°ç½³ç½µç½¶ç½·ç½¸ç½ºç½»ç½¼ç½½ç½¿ç¾€ç¾‚\",7,\"羋ç¾ç¾\",4,\"羕\",4,\"ç¾›ç¾œç¾ ç¾¢ç¾£ç¾¥ç¾¦ç¾¨\",6,\"ç¾±\"],[\"c180\",\"ç¾³\",4,\"羺羻羾翀翂翃翄翆翇翈翉翋ç¿ç¿\",4,\"ç¿–ç¿—ç¿™\",5,\"翢翣痢立粒沥隶力璃哩俩è”莲连镰廉怜涟帘敛脸链æ‹ç‚¼ç»ƒç²®å‡‰æ¢ç²±è‰¯ä¸¤è¾†é‡æ™¾äº®è°…æ’©èŠåƒšç–—ç‡Žå¯¥è¾½æ½¦äº†æ’‚é•£å»–æ–™åˆ—è£‚çƒˆåŠ£çŒŽç³æž—磷霖临邻鳞淋凛èµå拎玲è±é›¶é¾„铃伶羚凌çµé™µå²é¢†å¦ä»¤æºœç‰æ¦´ç¡«é¦ç•™åˆ˜ç˜¤æµæŸ³å…é¾™è‹å’™ç¬¼çª¿\"],[\"c240\",\"翤翧翨翪翫翬ç¿ç¿¯ç¿²ç¿´\",6,\"翽翾翿耂耇耈耉耊耎è€è€‘耓耚耛è€è€žè€Ÿè€¡è€£è€¤è€«\",5,\"耲耴耹耺耼耾è€èè„è…è‡èˆè‰èŽèèè‘è“è•è–è—\"],[\"c280\",\"è™è›\",13,\"è«\",5,\"è²\",11,\"隆垄拢陇楼娄æ‚篓æ¼é™‹èЦå¢é¢…åºç‚‰æŽ³å¤è™é²éº“碌露路赂鹿潞禄录陆戮驴å•é“ä¾£æ—…å±¥å±¡ç¼•è™‘æ°¯å¾‹çŽ‡æ»¤ç»¿å³¦æŒ›åªæ»¦åµä¹±æŽ 略抡轮伦仑沦纶论èèžºç½—é€»é”£ç®©éª¡è£¸è½æ´›éª†ç»œå¦ˆéº»çŽ›ç 蚂马骂嘛å—埋买麦å–迈脉瞒馒蛮满蔓曼慢漫\"],[\"c340\",\"è¾è‚肂肅肈肊è‚\",5,\"肔肕肗肙肞肣肦肧肨肬肰肳肵肶肸肹肻胅胇\",4,\"èƒ\",6,\"èƒ˜èƒŸèƒ èƒ¢èƒ£èƒ¦èƒ®èƒµèƒ·èƒ¹èƒ»èƒ¾èƒ¿è„€è„脃脄脅脇脈脋\"],[\"c380\",\"脌脕脗脙脛脜è„脟\",12,\"è„脮脰脳脴脵脷脹\",4,\"脿谩芒茫盲氓忙莽猫茅锚毛矛铆å¯èŒ‚å†’å¸½è²Œè´¸ä¹ˆçŽ«æžšæ¢…é…¶éœ‰ç…¤æ²¡çœ‰åª’é•æ¯ç¾Žæ˜§å¯å¦¹åªšé—¨é—·ä»¬èŒè’™æª¬ç›Ÿé”°çŒ›æ¢¦åŸçœ¯é†šé¡ç³œè¿·è°œå¼¥ç±³ç§˜è§…æ³Œèœœå¯†å¹‚æ£‰çœ ç»µå†•å…勉娩缅é¢è‹—æçž„è—ç§’æ¸ºåº™å¦™è”‘çæ°‘æŠ¿çš¿æ•æ‚¯é—½æ˜ŽèžŸé¸£é“å命谬摸\"],[\"c440\",\"è…€\",5,\"腇腉è…è…Žè…腒腖腗腘腛\",4,\"腡腢腣腤腦腨腪腫腬腯腲腳腵腶腷腸è†è†ƒ\",4,\"膉膋膌è†è†Žè†è†’\",5,\"膙膚膞\",4,\"膤膥\"],[\"c480\",\"膧膩膫\",7,\"膴\",5,\"膼膽膾膿臄臅臇臈臉臋è‡\",6,\"æ‘¹è˜‘æ¨¡è†œç£¨æ‘©é”æŠ¹æœ«èŽ«å¢¨é»˜æ²«æ¼ å¯žé™Œè°‹ç‰ŸæŸæ‹‡ç‰¡äº©å§†æ¯å¢“暮幕募慕木目ç¦ç‰§ç©†æ‹¿å“ªå‘é’ é‚£å¨œçº³æ°–ä¹ƒå¥¶è€å¥ˆå—ç”·éš¾å›ŠæŒ è„‘æ¼é—¹æ·–å‘¢é¦å†…å«©èƒ½å¦®éœ“å€ªæ³¥å°¼æ‹Ÿä½ åŒ¿è…»é€†æººè”«æ‹ˆå¹´ç¢¾æ’µæ»å¿µå¨˜é…¿é¸Ÿå°¿æè‚å½å•®é•Šé•æ¶…æ‚¨æŸ ç‹žå‡å®\"],[\"c540\",\"臔\",14,\"臤臥臦臨臩臫臮\",4,\"臵\",5,\"臽臿舃與\",4,\"舎èˆèˆ‘舓舕\",5,\"èˆèˆ 舤舥舦舧舩舮舲舺舼舽舿\"],[\"c580\",\"艀è‰è‰‚艃艅艆艈艊艌è‰è‰Žè‰\",7,\"艙艛艜è‰è‰žè‰ \",7,\"艩拧泞牛æ‰é’®çº½è„“浓农弄奴努怒女暖è™ç–ŸæŒªæ‡¦ç³¯è¯ºå“¦æ¬§é¸¥æ®´è—•å‘•å¶æ²¤å•ªè¶´çˆ¬å¸•æ€•ç¶æ‹æŽ’牌徘湃派攀潘盘ç£ç›¼ç•”判å›ä¹“庞æ—耪胖抛咆刨炮è¢è·‘泡呸胚培裴赔陪é…ä½©æ²›å–·ç›†ç °æŠ¨çƒ¹æ¾Žå½è“¬æ£šç¡¼ç¯·è†¨æœ‹é¹æ§ç¢°å¯ç ’éœ¹æ‰¹æŠ«åŠˆçµæ¯—\"],[\"c640\",\"艪艫艬è‰è‰±è‰µè‰¶è‰·è‰¸è‰»è‰¼èŠ€èŠèŠƒèŠ…èŠ†èŠ‡èŠ‰èŠŒèŠèŠ“èŠ”èŠ•èŠ–èŠšèŠ›èŠžèŠ èŠ¢èŠ£èŠ§èŠ²èŠµèŠ¶èŠºèŠ»èŠ¼èŠ¿è‹€è‹‚è‹ƒè‹…è‹†è‹‰è‹è‹–苙苚è‹è‹¢è‹§è‹¨è‹©è‹ªè‹¬è‹è‹®è‹°è‹²è‹³è‹µè‹¶è‹¸\"],[\"c680\",\"苺苼\",4,\"茊茋èŒèŒèŒ’茓茖茘茙èŒ\",9,\"茩茪茮茰茲茷茻茽啤脾疲皮匹痞僻å±è¬ç¯‡å片骗飘漂瓢票撇瞥拼频贫å“è˜ä¹’åªè‹¹èå¹³å‡ç“¶è¯„å±å¡æ³¼é¢‡å©†ç ´é„迫粕剖扑铺仆莆葡è©è’²åŸ”朴圃普浦谱æ›ç€‘æœŸæ¬ºæ –æˆšå¦»ä¸ƒå‡„æ¼†æŸ’æ²å…¶æ£‹å¥‡æ§ç•¦å´Žè„齿——祈ç¥éª‘起岂乞ä¼å¯å¥‘ç Œå™¨æ°”è¿„å¼ƒæ±½æ³£è®«æŽ\"],[\"c740\",\"茾茿èè‚è„è…èˆèŠ\",4,\"è“è•\",4,\"èè¢è°\",6,\"è¹èºè¾\",6,\"莇莈莊莋莌èŽèŽèŽèŽ‘èŽ”èŽ•èŽ–èŽ—èŽ™èŽšèŽèŽŸèŽ¡\",6,\"莬èŽèŽ®\"],[\"c780\",\"莯莵莻莾莿è‚èƒè„è†èˆè‰è‹èèŽèè‘è’è“è•è—è™èšè›èžè¢è£è¤è¦è§è¨è«è¬èæ°æ´½ç‰µæ‰¦é’Žé“…åƒè¿ç¾ä»Ÿè°¦ä¹¾é»”钱钳剿½œé£æµ…è°´å ‘åµŒæ¬ æ‰æžªå‘›è…”羌墙蔷强抢橇锹敲悄桥瞧乔侨巧鞘撬翘å³ä¿çªåˆ‡èŒ„且怯窃钦侵亲秦ç´å‹¤èŠ¹æ“’ç¦½å¯æ²é’è½»æ°¢å€¾å¿æ¸…擎晴氰情顷请庆ç¼ç©·ç§‹ä¸˜é‚±çƒæ±‚å›šé…‹æ³…è¶‹åŒºè›†æ›²èº¯å±ˆé©±æ¸ \"],[\"c840\",\"è®è¯è³\",4,\"èºè»è¼è¾è¿è€è‚è…è‡èˆè‰èŠèè’\",5,\"è™èšè›èž\",5,\"è©\",7,\"è²\",5,\"è¹èºè»è¾\",7,\"葇葈葉\"],[\"c880\",\"葊\",6,\"è‘’\",4,\"葘è‘è‘žè‘Ÿè‘ è‘¢è‘¤\",4,\"葪葮葯葰葲葴葷葹葻葼å–娶龋趣去圈颧æƒé†›æ³‰å…¨ç—Šæ‹³çŠ¬åˆ¸åŠç¼ºç‚”瘸å´é¹Šæ¦·ç¡®é›€è£™ç¾¤ç„¶ç‡ƒå†‰æŸ“瓤壤攘嚷让饶扰绕惹çƒå£¬ä»äººå¿éŸ§ä»»è®¤åˆƒå¦Šçº«æ‰”仿—¥æˆŽèŒ¸è“‰è£èžç†”æº¶å®¹ç»’å†—æ‰æŸ”è‚‰èŒ¹è •å„’åºå¦‚辱乳æ±å…¥è¤¥è½¯é˜®è•Šç‘žé”闰润若弱撒洒è¨è…®é³ƒå¡žèµ›ä¸‰å\"],[\"c940\",\"葽\",4,\"蒃蒄蒅蒆蒊è’è’\",7,\"蒘蒚蒛è’è’žè’Ÿè’ è’¢\",12,\"蒰蒱蒳蒵蒶蒷蒻蒼蒾蓀蓂蓃蓅蓆蓇蓈蓋蓌蓎è“蓒蓔蓕蓗\"],[\"c980\",\"蓘\",4,\"蓞蓡蓢蓤蓧\",4,\"è“蓮蓯蓱\",10,\"蓽蓾蔀è”蔂伞散桑嗓丧æ”éªšæ‰«å«‚ç‘Ÿè‰²æ¶©æ£®åƒ§èŽŽç ‚æ€åˆ¹æ²™çº±å‚»å•¥ç…žç›æ™’çŠè‹«æ‰å±±åˆ ç…½è¡«é—ªé™•æ“…èµ¡è†³å–„æ±•æ‰‡ç¼®å¢’ä¼¤å•†èµæ™Œä¸Šå°šè£³æ¢¢æŽç¨çƒ§èŠå‹ºéŸ¶å°‘哨邵ç»å¥¢èµŠè›‡èˆŒèˆèµ¦æ‘„å°„æ…‘æ¶‰ç¤¾è®¾ç ·ç”³å‘»ä¼¸èº«æ·±å¨ ç»…ç¥žæ²ˆå®¡å©¶ç”šè‚¾æ…Žæ¸—å£°ç”Ÿç”¥ç‰²å‡ç»³\"],[\"ca40\",\"蔃\",8,\"è”蔎è”è”蔒蔔蔕蔖蔘蔙蔛蔜è”è”žè” è”¢\",8,\"è”\",9,\"蔾\",4,\"蕄蕅蕆蕇蕋\",10],[\"ca80\",\"蕗蕘蕚蕛蕜è•蕟\",4,\"蕥蕦蕧蕩\",8,\"蕳蕵蕶蕷蕸蕼蕽蕿薀è–çœç››å‰©èƒœåœ£å¸ˆå¤±ç‹®æ–½æ¹¿è¯—尸虱å石拾时什食蚀实识å²çŸ¢ä½¿å±Žé©¶å§‹å¼ç¤ºå£«ä¸–柿事æ‹èª“é€åŠ¿æ˜¯å—œå™¬é€‚ä»•ä¾é‡Šé¥°æ°å¸‚æƒå®¤è§†è¯•收手首守寿授售å—瘦兽蔬枢梳殊抒输å”舒淑ç–书赎å°ç†Ÿè–¯æš‘曙署蜀é»é¼ å±žæœ¯è¿°æ ‘æŸæˆç«–墅庶数漱\"],[\"cb40\",\"薂薃薆薈\",6,\"è–\",10,\"è–\",6,\"薥薦薧薩薫薬è–è–±\",5,\"薸薺\",6,\"è—‚\",6,\"è—Š\",4,\"è—‘è—’\"],[\"cb80\",\"藔藖\",5,\"è—\",6,\"藥藦藧藨藪\",14,\"æ•åˆ·è€æ‘”è¡°ç”©å¸…æ “æ‹´éœœåŒçˆ½è°æ°´ç¡ç¨Žå®çž¬é¡ºèˆœè¯´ç¡•æœ”çƒæ–¯æ’•嘶æ€ç§å¸ä¸æ»è‚†å¯ºå—£å››ä¼ºä¼¼é¥²å·³æ¾è€¸æ€‚颂é€å®‹è®¼è¯µæœè‰˜æ“žå—½è‹é…¥ä¿—ç´ é€Ÿç²Ÿåƒ³å¡‘æº¯å®¿è¯‰è‚ƒé…¸è’œç®—è™½éš‹éšç»¥é«“碎å²ç©—é‚éš§ç¥Ÿå™æŸç¬‹è“‘æ¢å”†ç¼©çç´¢é”æ‰€å¡Œä»–它她塔\"],[\"cc40\",\"藹藺藼藽藾蘀\",4,\"蘆\",10,\"蘒蘓蘔蘕蘗\",15,\"蘨蘪\",13,\"蘹蘺蘻蘽蘾蘿虀\"],[\"cc80\",\"è™\",11,\"虒虓處\",4,\"虛虜è™è™Ÿè™ 虡虣\",7,\"çæŒžè¹‹è¸èƒŽè‹”æŠ¬å°æ³°é…žå¤ªæ€æ±°åæ‘Šè´ªç˜«æ»©å›æª€ç—°æ½è°è°ˆå¦æ¯¯è¢’碳探å¹ç‚汤塘æªå ‚æ£ è†›å”ç³–å€˜èººæ·Œè¶Ÿçƒ«æŽæ¶›æ»”ç»¦è„æ¡ƒé€ƒæ·˜é™¶è®¨å¥—特藤腾疼誊梯剔踢锑æé¢˜è¹„å•¼ä½“æ›¿åšæƒ•涕剃屉天添填田甜æ¬èˆ”腆挑æ¡è¿¢çœºè·³è´´é“帖厅å¬çƒƒ\"],[\"cd40\",\"è™è™¯è™°è™²\",6,\"蚃\",6,\"蚎\",4,\"蚔蚖\",5,\"èšž\",4,\"蚥蚦蚫èšèš®èš²èš³èš·èš¸èš¹èš»\",4,\"è›è›‚蛃蛅蛈蛌è›è›’蛓蛕蛖蛗蛚蛜\"],[\"cd80\",\"è›è› 蛡蛢蛣蛥蛦蛧蛨蛪蛫蛬蛯蛵蛶蛷蛺蛻蛼蛽蛿èœèœ„蜅蜆蜋蜌蜎èœèœèœ‘蜔蜖汀廷åœäºåºæŒºè‰‡é€šæ¡é…®çž³åŒé“œå½¤ç«¥æ¡¶æ…ç’ç»Ÿç—›å·æŠ•å¤´é€å‡¸ç§ƒçªå›¾å¾’é€”æ¶‚å± åœŸåå…”æ¹å›¢æŽ¨é¢“腿蜕褪退åžå±¯è‡€æ‹–托脱鸵陀驮驼æ¤å¦¥æ‹“唾挖哇蛙洼娃瓦袜æªå¤–豌弯湾玩顽丸烷完碗挽晚皖惋宛婉万腕汪王亡枉网往旺望忘妄å¨\"],[\"ce40\",\"蜙蜛èœèœŸèœ 蜤蜦蜧蜨蜪蜫蜬èœèœ¯èœ°èœ²èœ³èœµèœ¶èœ¸èœ¹èœºèœ¼èœ½è€\",6,\"èŠè‹èèèè‘è’è”è•è–è˜èš\",5,\"è¡è¢è¦\",7,\"è¯è±è²è³èµ\"],[\"ce80\",\"è·è¸è¹èºè¿èž€èžèž„螆螇螉螊螌螎\",4,\"螔螕螖螘\",6,\"èž \",4,\"å·å¾®å±éŸ¦è¿æ¡…围唯惟为æ½ç»´è‹‡èŽå§”伟伪尾纬未蔚味ç•胃喂é使¸è°“尉慰å«ç˜Ÿæ¸©èšŠæ–‡é—»çº¹å»ç¨³ç´Šé—®å—¡ç¿ç“®æŒèœ—æ¶¡çªæˆ‘æ–¡å§æ¡æ²ƒå·«å‘œé’¨ä¹Œæ±¡è¯¬å±‹æ— 芜梧å¾å´æ¯‹æ¦äº”æ‚åˆèˆžä¼ä¾®åžæˆŠé›¾æ™¤ç‰©å‹¿åŠ¡æ‚Ÿè¯¯æ˜”ç†™æžè¥¿ç¡’矽晰嘻å¸é”¡ç‰º\"],[\"cf40\",\"螥螦螧螩螪螮螰螱螲螴螶螷螸螹螻螼螾螿èŸ\",4,\"蟇蟈蟉蟌\",4,\"蟔\",6,\"蟜èŸèŸžèŸŸèŸ¡èŸ¢èŸ£èŸ¤èŸ¦èŸ§èŸ¨èŸ©èŸ«èŸ¬èŸèŸ¯\",9],[\"cf80\",\"èŸºèŸ»èŸ¼èŸ½èŸ¿è €è è ‚è „\",5,\"è ‹\",7,\"è ”è —è ˜è ™è šè œ\",4,\"è £ç¨€æ¯å¸Œæ‚‰è†å¤•惜熄烯溪æ±çŠ€æª„è¢å¸ä¹ 媳喜铣洗系隙æˆç»†çžŽè™¾åŒ£éœžè¾–æš‡å³¡ä¾ ç‹ä¸‹åަå¤å“掀锨先仙鲜纤咸贤衔舷闲涎弦嫌显险现献县腺馅羡宪陷é™çº¿ç›¸åŽ¢é•¶é¦™ç®±è¥„æ¹˜ä¹¡ç¿”ç¥¥è¯¦æƒ³å“享项巷橡åƒå‘象è§ç¡éœ„削哮嚣销消宵淆晓\"],[\"d040\",\"è ¤\",13,\"è ³\",5,\"è ºè »è ½è ¾è ¿è¡è¡‚衃衆\",5,\"衎\",5,\"衕衖衘衚\",6,\"衦衧衪è¡è¡¯è¡±è¡³è¡´è¡µè¡¶è¡¸è¡¹è¡º\"],[\"d080\",\"衻衼袀袃袆袇袉袊袌袎è¢è¢è¢‘袓袔袕袗\",4,\"è¢\",4,\"袣袥\",5,\"å°åæ ¡è‚–å•¸ç¬‘æ•ˆæ¥”äº›æ‡èŽéž‹å挟æºé‚ªæ–œèƒè°å†™æ¢°å¸èŸ¹æ‡ˆæ³„æ³»è°¢å±‘è–ªèŠ¯é”Œæ¬£è¾›æ–°å¿»å¿ƒä¿¡è¡…æ˜Ÿè…¥çŒ©æƒºå…´åˆ‘åž‹å½¢é‚¢è¡Œé†’å¹¸ææ€§å§“兄凶胸匈汹雄熊休修羞朽嗅锈秀袖绣墟戌需虚嘘须å¾è®¸è“„酗噿—åºç•œæ¤çµ®å©¿ç»ªç»è½©å–§å®£æ‚¬æ—‹çŽ„\"],[\"d140\",\"袬袮袯袰袲\",4,\"袸袹袺袻袽袾袿裀裃裄裇裈裊裋裌è£è£è£è£‘裓裖裗裚\",4,\"è£ è£¡è£¦è£§è£©\",6,\"裲裵裶裷裺裻製裿褀è¤è¤ƒ\",5],[\"d180\",\"褉褋\",4,\"褑褔\",4,\"褜\",4,\"褢褣褤褦褧褨褩褬è¤è¤®è¤¯è¤±è¤²è¤³è¤µè¤·é€‰ç™£çœ©ç»šé´è–›å¦ç©´é›ªè¡€å‹‹ç†å¾ªæ—¬è¯¢å¯»é©¯å·¡æ®‰æ±›è®è®¯é€Šè¿…压押鸦é¸å‘€ä¸«èŠ½ç‰™èšœå´–è¡™æ¶¯é›…å“‘äºšè®¶ç„‰å’½é˜‰çƒŸæ·¹ç›ä¸¥ç ”èœ’å²©å»¶è¨€é¢œé˜Žç‚Žæ²¿å¥„æŽ©çœ¼è¡æ¼”è‰³å °ç‡•åŽŒç šé›å”å½¦ç„°å®´è°šéªŒæ®ƒå¤®é¸¯ç§§æ¨æ‰¬ä½¯ç–¡ç¾Šæ´‹é˜³æ°§ä»°ç—’å…»æ ·æ¼¾é‚€è…°å¦–ç‘¶\"],[\"d240\",\"褸\",8,\"襂襃襅\",24,\"è¥ \",5,\"襧\",19,\"襼\"],[\"d280\",\"襽襾覀覂覄覅覇\",26,\"摇尧é¥çª‘谣姚咬舀è¯è¦è€€æ¤°å™Žè€¶çˆ·é‡Žå†¶ä¹Ÿé¡µæŽ–ä¸šå¶æ›³è…‹å¤œæ¶²ä¸€å£¹åŒ»æ–铱ä¾ä¼Šè¡£é¢å¤·é—ç§»ä»ªèƒ°ç–‘æ²‚å®œå§¨å½æ¤…èšå€šå·²ä¹™çŸ£ä»¥è‰ºæŠ‘æ˜“é‚‘å±¹äº¿å½¹è‡†é€¸è‚„ç–«äº¦è£”æ„æ¯…忆义益溢诣议谊译异翼翌绎茵è«å› 殷音阴姻åŸé“¶æ·«å¯…饮尹引éš\"],[\"d340\",\"覢\",30,\"觃è§è§“觔觕觗觘觙觛è§è§Ÿè§ 觡觢觤觧觨觩觪觬è§è§®è§°è§±è§²è§´\",6],[\"d380\",\"è§»\",4,\"è¨\",5,\"計\",21,\"å°è‹±æ¨±å©´é¹°åº”缨莹è¤è¥è§è‡è¿Žèµ¢ç›ˆå½±é¢–ç¡¬æ˜ å“Ÿæ‹¥ä½£è‡ƒç—ˆåº¸é›è¸Šè›¹å’泳涌永æ¿å‹‡ç”¨å¹½ä¼˜æ‚ 忧尤由邮铀犹油游酉有å‹å³ä½‘釉诱åˆå¹¼è¿‚æ·¤äºŽç›‚æ¦†è™žæ„šèˆ†ä½™ä¿žé€¾é±¼æ„‰æ¸æ¸”隅予娱雨与屿禹宇è¯ç¾½çŽ‰åŸŸèŠ‹éƒåé‡å–»å³ªå¾¡æ„ˆæ¬²ç‹±è‚²èª‰\"],[\"d440\",\"訞\",31,\"訿\",8,\"詉\",21],[\"d480\",\"詟\",25,\"詺\",6,\"浴寓裕预豫é©é¸³æ¸Šå†¤å…ƒåž£è¢åŽŸæ´è¾•å›å‘˜åœ†çŒ¿æºç¼˜è¿œè‹‘愿怨院曰约越跃钥岳粤月悦阅耘云郧匀陨å…è¿è•´é…晕韵å•åŒç ¸æ‚æ ½å“‰ç¾å®°è½½å†åœ¨å’±æ”’暂赞赃è„葬é糟凿藻枣早澡蚤èºå™ªé€ çš‚ç¶ç‡¥è´£æ‹©åˆ™æ³½è´¼æ€Žå¢žæ†Žæ›¾èµ 扎喳渣æœè½§\"],[\"d540\",\"èª\",7,\"誋\",7,\"誔\",46],[\"d580\",\"諃\",32,\"é“¡é—¸çœ¨æ …æ¦¨å’‹ä¹ç‚¸è¯ˆæ‘˜æ–‹å®…çª„å€ºå¯¨çž»æ¯¡è©¹ç²˜æ²¾ç›æ–©è¾—å´å±•è˜¸æ ˆå æˆ˜ç«™æ¹›ç»½æ¨Ÿç« å½°æ¼³å¼ æŽŒæ¶¨æ–丈å¸è´¦ä»—èƒ€ç˜´éšœæ‹›æ˜æ‰¾æ²¼èµµç…§ç½©å…†è‚‡å¬é®æŠ˜å“²è›°è¾™è€…é”—è”—è¿™æµ™çæ–ŸçœŸç”„ç §è‡»è´žé’ˆä¾¦æž•ç–¹è¯Šéœ‡æŒ¯é•‡é˜µè’¸æŒ£çå¾ç‹°äº‰æ€”æ•´æ‹¯æ£æ”¿\"],[\"d640\",\"諤\",34,\"謈\",27],[\"d680\",\"謤謥謧\",30,\"帧症郑è¯èŠæžæ”¯å±èœ˜çŸ¥è‚¢è„‚æ±ä¹‹ç»‡èŒç›´æ¤æ®–æ‰§å€¼ä¾„å€æŒ‡æ¢è¶¾åªæ—¨çº¸å¿—挚掷至致置帜峙制智秩稚质炙痔滞治窒ä¸ç›…å¿ é’Ÿè¡·ç»ˆç§è‚¿é‡ä»²ä¼—èˆŸå‘¨å·žæ´²è¯Œç²¥è½´è‚˜å¸šå’’çš±å®™æ˜¼éª¤ç æ ªè››æœ±çŒªè¯¸è¯›é€ç«¹çƒ›ç…®æ‹„瞩嘱主著柱助蛀贮铸ç‘\"],[\"d740\",\"è†\",31,\"è§\",4,\"è\",25],[\"d780\",\"讇\",24,\"讬讱讻诇è¯è¯ªè°‰è°žä½æ³¨ç¥é©»æŠ“çˆªæ‹½ä¸“ç –è½¬æ’°èµšç¯†æ¡©åº„è£…å¦†æ’žå£®çŠ¶æ¤Žé”¥è¿½èµ˜å ç¼€è°†å‡†æ‰æ‹™å“桌ç¢èŒé…Œå•„ç€ç¼æµŠå…¹å’¨èµ„姿滋淄åœç´«ä»”籽滓å自æ¸å—é¬ƒæ£•è¸ªå®—ç»¼æ€»çºµé‚¹èµ°å¥æç§Ÿè¶³å’æ—ç¥–è¯…é˜»ç»„é’»çº‚å˜´é†‰æœ€ç½ªå°Šéµæ˜¨å·¦ä½æŸžåšä½œå座\"],[\"d840\",\"è°¸\",8,\"豂豃豄豅豈豊豋è±\",7,\"豖豗豘豙豛\",5,\"è±£\",6,\"豬\",6,\"豴豵豶豷豻\",6,\"貃貄貆貇\"],[\"d880\",\"貈貋è²\",6,\"貕貖貗貙\",20,\"äºä¸Œå…€ä¸å»¿å…丕亘丞鬲å¬å™©ä¸¨ç¦ºä¸¿åŒ•乇å¤çˆ»å®æ°å›Ÿèƒ¤é¦—毓ç¾é¼—丶亟é¼ä¹œä¹©äº“芈å›å•¬å˜ä»„åŽåŽåŽ£åŽ¥åŽ®é¥èµåŒšåµåŒ¦åŒ®åŒ¾èµœå¦å£åˆ‚刈刎åˆåˆ³åˆ¿å‰€å‰Œå‰žå‰¡å‰œè’¯å‰½åŠ‚åŠåŠåŠ“å†‚ç½”äº»ä»ƒä»‰ä»‚ä»¨ä»¡ä»«ä»žä¼›ä»³ä¼¢ä½¤ä»µä¼¥ä¼§ä¼‰ä¼«ä½žä½§æ”¸ä½šä½\"],[\"d940\",\"è²®\",62],[\"d980\",\"è³\",32,\"佟佗伲伽佶佴侑侉侃ä¾ä½¾ä½»ä¾ªä½¼ä¾¬ä¾”俦俨俪俅俚俣俜俑俟俸倩åŒä¿³å€¬å€å€®å€ä¿¾å€œå€Œå€¥å€¨å¾åƒå•åˆåŽå¬å»å‚¥å‚§å‚©å‚ºåƒ–儆åƒåƒ¬åƒ¦åƒ®å„‡å„‹ä»æ°½ä½˜ä½¥ä¿Žé¾ 汆籴兮巽黉馘å†å¤”勹åŒè¨‡åŒå‡«å¤™å…•äº å…–äº³è¡®è¢¤äºµè„”è£’ç¦€å¬´è ƒç¾¸å†«å†±å†½å†¼\"],[\"da40\",\"è´Ž\",14,\"è´ èµ‘èµ’èµ—èµŸèµ¥èµ¨èµ©èµªèµ¬èµ®èµ¯èµ±èµ²èµ¸\",8,\"趂趃趆趇趈趉趌\",4,\"è¶’è¶“è¶•\",9,\"è¶ è¶¡\"],[\"da80\",\"趢趤\",12,\"趲趶趷趹趻趽跀è·è·‚跅跇跈跉跊è·è·è·’è·“è·”å‡‡å†–å†¢å†¥è® è®¦è®§è®ªè®´è®µè®·è¯‚è¯ƒè¯‹è¯è¯Žè¯’è¯“è¯”è¯–è¯˜è¯™è¯œè¯Ÿè¯ è¯¤è¯¨è¯©è¯®è¯°è¯³è¯¶è¯¹è¯¼è¯¿è°€è°‚è°„è°‡è°Œè°è°‘谒谔谕谖谙谛谘è°è°Ÿè° 谡谥谧谪谫谮谯谲谳谵谶å©åºé˜é˜¢é˜¡é˜±é˜ªé˜½é˜¼é™‚陉陔陟陧陬陲陴隈éšéš—éš°é‚—é‚›é‚邙邬邡邴邳邶邺\"],[\"db40\",\"è·•è·˜è·™è·œè· è·¡è·¢è·¥è·¦è·§è·©è·è·®è·°è·±è·²è·´è·¶è·¼è·¾\",6,\"踆踇踈踋è¸è¸Žè¸è¸‘踒踓踕\",7,\"è¸ è¸¡è¸¤\",4,\"踫è¸è¸°è¸²è¸³è¸´è¸¶è¸·è¸¸è¸»è¸¼è¸¾\"],[\"db80\",\"踿蹃蹅蹆蹌\",4,\"蹓\",5,\"蹚\",11,\"蹧蹨蹪蹫蹮蹱邸邰éƒéƒ…邾éƒéƒ„郇郓郦郢郜郗郛郫郯郾鄄鄢鄞鄣鄱鄯鄹酃酆åˆå¥‚劢劬åŠåŠ¾å“¿å‹å‹–å‹°åŸç‡®çŸå»´å‡µå‡¼é¬¯å޶å¼ç•šå·¯åŒåž©åž¡å¡¾å¢¼å£…壑圩圬圪圳圹圮圯åœåœ»å‚å©åž…å«åž†å¼å»å¨åå¶å³åžåž¤åžŒåž²åŸåž§åž´åž“åž åŸ•åŸ˜åŸšåŸ™åŸ’åž¸åŸ´åŸ¯åŸ¸åŸ¤åŸ\"],[\"dc40\",\"蹳蹵蹷\",4,\"蹽蹾躀躂躃躄躆躈\",6,\"躑躒躓躕\",6,\"èºèºŸ\",11,\"èºèº®èº°èº±èº³\",6,\"躻\",7],[\"dc80\",\"軃\",10,\"è»\",21,\"å ‹å 埽åŸå €å žå ™å¡„å 塥塬å¢å¢‰å¢šå¢€é¦¨é¼™æ‡¿è‰¹è‰½è‰¿èŠèŠŠèŠ¨èŠ„èŠŽèŠ‘èŠ—èŠ™èŠ«èŠ¸èŠ¾èŠ°è‹ˆè‹Šè‹£èŠ˜èŠ·èŠ®è‹‹è‹Œè‹èŠ©èŠ´èŠ¡èŠªèŠŸè‹„è‹ŽèŠ¤è‹¡èŒ‰è‹·è‹¤èŒèŒ‡è‹œè‹´è‹’è‹˜èŒŒè‹»è‹“èŒ‘èŒšèŒ†èŒ”èŒ•è‹ è‹•èŒœè‘è›èœèŒˆèŽ’èŒ¼èŒ´èŒ±èŽ›èžèŒ¯èè‡èƒèŸè€èŒ—è èŒèŒºèŒ³è¦è¥\"],[\"dd40\",\"軥\",62],[\"dd80\",\"輤\",32,\"è¨èŒ›è©è¬èªèè®èްè¸èŽ³èŽ´èŽ èŽªèŽ“èŽœèŽ…è¼èŽ¶èŽ©è½èޏè»èŽ˜èŽžèŽ¨èŽºèŽ¼èèè¥è˜å ‡è˜è‹èè½è–èœè¸è‘è†è”èŸèèƒè¸è¹èªè…è€è¦è°è¡è‘œè‘‘葚葙葳蒇蒈葺蒉葸è¼è‘†è‘©è‘¶è’Œè’Žè±è‘è“è“è“è“¦è’½è““è“Šè’¿è’ºè“ è’¡è’¹è’´è’—è“¥è“£è”Œç”蔸蓰蔹蔟蔺\"],[\"de40\",\"è½…\",32,\"轪辀辌辒è¾è¾ 辡辢辤辥辦辧辪辬è¾è¾®è¾¯è¾²è¾³è¾´è¾µè¾·è¾¸è¾ºè¾»è¾¼è¾¿è¿€è¿ƒè¿†\"],[\"de80\",\"迉\",4,\"è¿è¿’è¿–è¿—è¿šè¿ è¿¡è¿£è¿§è¿¬è¿¯è¿±è¿²è¿´è¿µè¿¶è¿ºè¿»è¿¼è¿¾è¿¿é€‡é€ˆé€Œé€Žé€“é€•é€˜è•–è”»è“¿è“¼è•™è•ˆè•¨è•¤è•žè•ºçž¢è•ƒè•²è•»è–¤è–¨è–‡è–蕹薮薜薅薹薷薰藓è—藜藿蘧蘅蘩蘖蘼廾弈夼å¥è€·å¥•奚奘åŒå°¢å°¥å°¬å°´æ‰Œæ‰ªæŠŸæŠ»æ‹Šæ‹šæ‹—æ‹®æŒ¢æ‹¶æŒ¹æ‹æƒæŽæ¶æ±æºæŽŽæŽ´ææŽ¬æŽŠæ©æŽ®æŽ¼æ²æ¸æ æ¿æ„æžæŽæ‘’æ†æŽ¾æ‘…æ‘æ‹æ›æ æŒæ¦æ¡æ‘žæ’„æ‘æ’–\"],[\"df40\",\"這逜連逤逥逧\",5,\"逰\",4,\"逷逹逺逽逿é€éƒé…é†éˆ\",4,\"éŽé”é•é–é™éšéœ\",5,\"é¤é¦é§é©éªé«é¬é¯\",4,\"é¶\",6,\"é¾é‚\"],[\"df80\",\"還邅邆邇邉邊邌\",4,\"é‚’é‚”é‚–é‚˜é‚šé‚œé‚žé‚Ÿé‚ é‚¤é‚¥é‚§é‚¨é‚©é‚«é‚é‚²é‚·é‚¼é‚½é‚¿éƒ€æ‘ºæ’·æ’¸æ’™æ’ºæ“€æ“æ“—擤擢攉攥攮弋忒甙弑åŸå±å½å©å¨å»å’å–å†å‘‹å‘’呓呔呖呃å¡å‘—å‘™å£å²å’‚咔呷呱呤咚咛咄呶呦å’å“å’哂咴哒咧咦哓哔呲咣哕咻咿哌哙哚哜咩咪咤å“å“å“žå”›å“§å” å“½å””å“³å”¢å”£å”唑唧唪啧å–喵啉å•å•啕唿å•唼\"],[\"e040\",\"郂郃郆郈郉郋郌éƒéƒ’éƒ”éƒ•éƒ–éƒ˜éƒ™éƒšéƒžéƒŸéƒ éƒ£éƒ¤éƒ¥éƒ©éƒªéƒ¬éƒ®éƒ°éƒ±éƒ²éƒ³éƒµéƒ¶éƒ·éƒ¹éƒºéƒ»éƒ¼éƒ¿é„€é„鄃鄅\",19,\"鄚鄛鄜\"],[\"e080\",\"é„é„Ÿé„ é„¡é„¤\",10,\"鄰鄲\",6,\"鄺\",8,\"酄唷啖啵啶啷唳唰啜喋嗒喃喱喹喈å–喟啾嗖喑啻嗟喽喾喔喙嗪嗷嗉嘟嗑嗫嗬嗔嗦å—嗄嗯嗥嗲嗳嗌å—嗨嗵嗤辔嘞嘈嘌å˜å˜¤å˜£å—¾å˜€å˜§å˜å™˜å˜¹å™—嘬å™å™¢å™™å™œå™Œå™”嚆噤噱噫噻噼嚅嚓嚯囔囗å›å›¡å›µå›«å›¹å›¿åœ„圊圉圜å¸å¸™å¸”帑帱帻帼\"],[\"e140\",\"é……é…‡é…ˆé…‘é…“é…”é…•é…–é…˜é…™é…›é…œé…Ÿé… é…¦é…§é…¨é…«é…酳酺酻酼醀\",4,\"醆醈醊醎é†é†“\",6,\"醜\",5,\"醤\",5,\"醫醬醰醱醲醳醶醷醸醹醻\"],[\"e180\",\"醼\",10,\"釈釋é‡é‡’\",9,\"é‡\",8,\"帷幄幔幛幞幡岌屺å²å²å²–岈岘岙岑岚岜岵岢岽岬岫岱岣å³å²·å³„峒峤峋峥崂崃崧崦崮崤崞崆崛嵘崾崴崽嵬嵛嵯åµåµ«åµ‹åµŠåµ©åµ´å¶‚å¶™å¶è±³å¶·å·…彳彷徂徇徉後徕徙徜徨å¾å¾µå¾¼è¡¢å½¡çŠçŠ°çŠ´çŠ·çŠ¸ç‹ƒç‹ç‹Žç‹ç‹’狨狯狩狲狴狷çŒç‹³çŒƒç‹º\"],[\"e240\",\"釦\",62],[\"e280\",\"鈥\",32,\"狻猗猓猡猊猞çŒçŒ•猢猹猥猬猸猱ççç—ç ç¬ç¯ç¾èˆ›å¤¥é£§å¤¤å¤‚饣饧\",5,\"饴饷饽馀馄馇馊é¦é¦é¦‘é¦“é¦”é¦•åº€åº‘åº‹åº–åº¥åº åº¹åºµåº¾åº³èµ“å»’å»‘å»›å»¨å»ªè†ºå¿„å¿‰å¿–å¿æ€ƒå¿®æ€„忡忤忾怅怆忪å¿å¿¸æ€™æ€µæ€¦æ€›æ€æ€æ€©æ€«æ€Šæ€¿æ€¡æ¸æ¹æ»æºæ‚\"],[\"e340\",\"鉆\",45,\"鉵\",16],[\"e380\",\"銆\",7,\"éŠ\",24,\"æªæ½æ‚–æ‚šæ‚æ‚æ‚ƒæ‚’æ‚Œæ‚›æƒ¬æ‚»æ‚±æƒæƒ˜æƒ†æƒšæ‚´æ„ 愦愕愣惴愀愎愫慊慵憬憔憧憷懔懵å¿éš³é—©é—«é—±é—³é—µé—¶é—¼é—¾é˜ƒé˜„阆阈阊阋阌é˜é˜é˜’é˜•é˜–é˜—é˜™é˜šä¸¬çˆ¿æˆ•æ°µæ±”æ±œæ±Šæ²£æ²…æ²æ²”æ²Œæ±¨æ±©æ±´æ±¶æ²†æ²©æ³æ³”æ²æ³·æ³¸æ³±æ³—æ²²æ³ æ³–æ³ºæ³«æ³®æ²±æ³“æ³¯æ³¾\"],[\"e440\",\"銨\",5,\"銯\",24,\"鋉\",31],[\"e480\",\"é‹©\",32,\"æ´¹æ´§æ´Œæµƒæµˆæ´‡æ´„æ´™æ´Žæ´«æµæ´®æ´µæ´šæµæµ’æµ”æ´³æ¶‘æµ¯æ¶žæ¶ æµžæ¶“æ¶”æµœæµ æµ¼æµ£æ¸šæ·‡æ·…æ·žæ¸Žæ¶¿æ· æ¸‘æ·¦æ·æ·™æ¸–æ¶«æ¸Œæ¶®æ¸«æ¹®æ¹Žæ¹«æº²æ¹Ÿæº†æ¹“æ¹”æ¸²æ¸¥æ¹„æ»Ÿæº±æº˜æ» æ¼æ»¢æº¥æº§æº½æº»æº·æ»—æº´æ»æºæ»‚æºŸæ½¢æ½†æ½‡æ¼¤æ¼•æ»¹æ¼¯æ¼¶æ½‹æ½´æ¼ªæ¼‰æ¼©æ¾‰æ¾æ¾Œæ½¸æ½²æ½¼æ½ºæ¿‘\"],[\"e540\",\"錊\",51,\"錿\",10],[\"e580\",\"éŠ\",31,\"髿¿‰æ¾§æ¾¹æ¾¶æ¿‚æ¿¡æ¿®æ¿žæ¿ æ¿¯ç€šç€£ç€›ç€¹ç€µççžå®€å®„宕宓宥宸甯骞æ´å¯¤å¯®è¤°å¯°è¹‡è¬‡è¾¶è¿“迕迥迮迤迩迦迳迨逅逄逋逦逑é€é€–逡逵逶é€é€¯é„é‘é’éé¨é˜é¢é›æš¹é´é½é‚‚邈邃邋å½å½—彖彘尻咫å±å±™å±å±£å±¦ç¾¼å¼ªå¼©å¼è‰´å¼¼é¬»å±®å¦å¦ƒå¦å¦©å¦ªå¦£\"],[\"e640\",\"é¬\",34,\"éŽ\",27],[\"e680\",\"鎬\",29,\"é‹éŒé妗姊妫妞妤姒妲妯姗妾娅娆å§å¨ˆå§£å§˜å§¹å¨Œå¨‰å¨²å¨´å¨‘å¨£å¨“å©€å©§å©Šå©•å¨¼å©¢å©µèƒ¬åªªåª›å©·å©ºåª¾å««åª²å«’å«”åª¸å« å«£å«±å«–å«¦å«˜å«œå¬‰å¬—å¬–å¬²å¬·å€å°•å°œåšå¥å³å‘å“å¢é©µé©·é©¸é©ºé©¿é©½éª€éªéª…骈骊éªéª’骓骖骘骛骜éªéªŸéª 骢骣骥骧纟纡纣纥纨纩\"],[\"e740\",\"éŽ\",7,\"é—\",54],[\"e780\",\"éŽ\",32,\"çºçº°çº¾ç»€ç»ç»‚绉绋绌ç»ç»”ç»—ç»›ç» ç»¡ç»¨ç»«ç»®ç»¯ç»±ç»²ç¼ç»¶ç»ºç»»ç»¾ç¼ç¼‚缃缇缈缋缌ç¼ç¼‘缒缗缙缜缛缟缡\",6,\"缪缫缬ç¼ç¼¯\",4,\"缵幺畿巛甾邕玎玑玮玢玟çç‚ç‘玷玳ç€ç‰çˆç¥ç™é¡¼çŠç©ç§çžçŽºç²ççªç‘›ç¦ç¥ç¨ç°ç®ç¬\"],[\"e840\",\"é¯\",14,\"é¿\",43,\"鑬é‘鑮鑯\"],[\"e880\",\"é‘°\",20,\"钑钖钘铇é“é““é“”é“šé“¦é“»é”œé” ç›çšç‘瑜瑗瑕瑙瑷ç‘瑾璜璎璀ç’璇璋璞璨璩ç’ç’§ç“’ç’ºéŸªéŸ«éŸ¬æŒæ“æžæˆæ©æž¥æž‡æªæ³æž˜æž§æµæž¨æžžæžæž‹æ·æ¼æŸ°æ ‰æŸ˜æ ŠæŸ©æž°æ ŒæŸ™æžµæŸšæž³æŸæ €æŸƒæž¸æŸ¢æ ŽæŸæŸ½æ ²æ ³æ¡ æ¡¡æ¡Žæ¡¢æ¡„æ¡¤æ¢ƒæ æ¡•æ¡¦æ¡æ¡§æ¡€æ ¾æ¡Šæ¡‰æ ©æ¢µæ¢æ¡´æ¡·æ¢“æ¡«æ£‚æ¥®æ£¼æ¤Ÿæ¤ æ£¹\"],[\"e940\",\"é”§é”³é”½é•ƒé•ˆé•‹é••é•šé• é•®é•´é•µé•·\",7,\"é–€\",42],[\"e980\",\"é–«\",32,\"æ¤¤æ£°æ¤‹æ¤æ¥—æ££æ¤æ¥±æ¤¹æ¥ æ¥‚æ¥æ¦„æ¥«æ¦€æ¦˜æ¥¸æ¤´æ§Œæ¦‡æ¦ˆæ§Žæ¦‰æ¥¦æ¥£æ¥¹æ¦›æ¦§æ¦»æ¦«æ¦æ§”æ¦±æ§æ§Šæ§Ÿæ¦•æ§ æ¦æ§¿æ¨¯æ§æ¨—æ¨˜æ©¥æ§²æ©„æ¨¾æª æ©æ©›æ¨µæªŽæ©¹æ¨½æ¨¨æ©˜æ©¼æª‘æªæª©æª—æª«çŒ·ç’æ®æ®‚æ®‡æ®„æ®’æ®“æ®æ®šæ®›æ®¡æ®ªè½«è½è½±è½²è½³è½µè½¶è½¸è½·è½¹è½ºè½¼è½¾è¾è¾‚辄辇辋\"],[\"ea40\",\"é—Œ\",27,\"é—¬é—¿é˜‡é˜“é˜˜é˜›é˜žé˜ é˜£\",6,\"阫阬é˜é˜¯é˜°é˜·é˜¸é˜¹é˜ºé˜¾é™é™ƒé™Šé™Žé™é™‘陒陓陖陗\"],[\"ea80\",\"陘陙陚陜é™é™žé™ 陣陥陦陫é™\",4,\"陳陸\",12,\"隇隉隊è¾è¾Žè¾è¾˜è¾šè»Žæˆ‹æˆ—戛戟戢戡戥戤戬臧瓯瓴瓿ç”ç”‘ç”“æ”´æ—®æ—¯æ—°æ˜Šæ˜™æ²æ˜ƒæ˜•æ˜€ç‚…æ›·æ˜æ˜´æ˜±æ˜¶æ˜µè€†æ™Ÿæ™”æ™æ™æ™–æ™¡æ™—æ™·æš„æšŒæš§æšæš¾æ››æ›œæ›¦æ›©è´²è´³è´¶è´»è´½èµ€èµ…赆赈赉赇èµèµ•赙觇觊觋觌觎è§è§è§‘牮犟ç‰ç‰¦ç‰¯ç‰¾ç‰¿çŠ„çŠ‹çŠçŠçŠ’æŒˆæŒ²æŽ°\"],[\"eb40\",\"隌階隑隒隓隕隖隚際éš\",9,\"隨\",7,\"隱隲隴隵隷隸隺隻隿雂雃雈雊雋é›é›‘雓雔雖\",9,\"雡\",6,\"雫\"],[\"eb80\",\"雬é›é›®é›°é›±é›²é›´é›µé›¸é›ºé›»é›¼é›½é›¿éœ‚霃霅霊霋霌éœéœ‘霒霔霕霗\",4,\"éœéœŸéœ æ¿æ“˜è€„æ¯ªæ¯³æ¯½æ¯µæ¯¹æ°…æ°‡æ°†æ°æ°•氘氙氚氡氩氤氪氲攵敕敫ç‰ç‰’牖爰虢刖肟肜肓肼朊肽肱肫è‚肴肷胧胨胩胪胛胂胄胙èƒèƒ—æœèƒèƒ«èƒ±èƒ´èƒè„è„Žèƒ²èƒ¼æœ•è„’è±šè„¶è„žè„¬è„˜è„²è…ˆè…Œè…“è…´è…™è…šè…±è… è…©è…¼è…½è…è…§å¡åªµè†ˆè†‚膑滕膣膪臌朦臊膻\"],[\"ec40\",\"霡\",8,\"霫霬霮霯霱霳\",4,\"霺霻霼霽霿\",18,\"é”é•é—é˜éšéœééŸé£é¤é¦é§é¨éª\",7],[\"ec80\",\"é²éµé·\",4,\"é½\",7,\"鞆\",4,\"鞌鞎éžéžéž“鞕鞖鞗鞙\",4,\"è‡è†¦æ¬¤æ¬·æ¬¹æƒæ†æ™é£‘飒飓飕飙飚殳彀毂觳æ–齑斓於旆旄旃旌旎旒旖炀炜炖ç‚炻烀炷炫炱烨烊ç„ç„“ç„–ç„¯ç„±ç…³ç…œç…¨ç……ç…²ç…Šç…¸ç…ºç†˜ç†³ç†µç†¨ç† ç‡ ç‡”ç‡§ç‡¹çˆçˆ¨ç¬ç„˜ç…¦ç†¹æˆ¾æˆ½æ‰ƒæ‰ˆæ‰‰ç¤»ç¥€ç¥†ç¥‰ç¥›ç¥œç¥“ç¥šç¥¢ç¥—ç¥ ç¥¯ç¥§ç¥ºç¦…ç¦Šç¦šç¦§ç¦³å¿‘å¿\"],[\"ed40\",\"鞞鞟鞡鞢鞤\",6,\"鞬鞮鞰鞱鞳鞵\",46],[\"ed80\",\"韤韥韨韮\",4,\"韴韷\",23,\"æ€¼ææšæ§ææ™æ£æ‚«æ„†æ„æ…æ†©æ†æ‡‹æ‡‘æˆ†è‚€è¿æ²“æ³¶æ·¼çŸ¶çŸ¸ç €ç ‰ç —ç ˜ç ‘æ–«ç ç œç ç ¹ç ºç »ç Ÿç ¼ç ¥ç ¬ç £ç ©ç¡Žç¡ç¡–ç¡—ç ¦ç¡ç¡‡ç¡Œç¡ªç¢›ç¢“碚碇碜碡碣碲碹碥磔磙磉磬磲礅磴礓礤礞礴龛黹黻黼盱眄çœç›¹çœ‡çœˆçœšçœ¢çœ™çœçœ¦çœµçœ¸çç‘ç‡çƒçšç¨\"],[\"ee40\",\"é \",62],[\"ee80\",\"顎\",32,\"ç¢ç¥ç¿çžç½çž€çžŒçž‘çžŸçž çž°çžµçž½ç”ºç•€ç•Žç•‹ç•ˆç•›ç•²ç•¹ç–ƒç½˜ç½¡ç½Ÿè©ˆç½¨ç½´ç½±ç½¹ç¾ç½¾ç›ç›¥è ²é’…钆钇钋钊钌é’é’é’钔钗钕钚钛钜钣钤钫钪é’钬钯钰钲钴钶\",4,\"钼钽钿铄铈\",6,\"é“é“‘é“’é“•é“–é“—é“™é“˜é“›é“žé“Ÿé“ é“¢é“¤é“¥é“§é“¨é“ª\"],[\"ef40\",\"顯\",5,\"颋颎颒颕颙颣風\",37,\"é£é£é£”飖飗飛飜é£é£ \",4],[\"ef80\",\"飥飦飩\",30,\"铩铫铮铯铳铴铵铷铹铼铽铿锃锂锆锇锉锊é”锎é”é”’\",4,\"锘锛é”锞锟锢锪锫锩锬锱锲锴锶锷锸锼锾锿镂锵镄镅镆镉镌镎é•镒镓镔镖镗镘镙镛镞镟é•镡镢镤\",8,\"镯镱镲镳锺矧矬雉秕ç§ç§£ç§«ç¨†åµ‡ç¨ƒç¨‚稞稔\"],[\"f040\",\"餈\",4,\"餎é¤é¤‘\",28,\"餯\",26],[\"f080\",\"饊\",9,\"饖\",12,\"饤饦饳饸饹饻饾馂馃馉稹稷穑é»é¦¥ç©°çšˆçšŽçš“çš™çš¤ç“žç“ ç”¬é¸ é¸¢é¸¨\",4,\"鸲鸱鸶鸸鸷鸹鸺鸾é¹é¹‚鹄鹆鹇鹈鹉鹋鹌鹎鹑鹕鹗鹚鹛鹜鹞鹣鹦\",6,\"é¹±é¹é¹³ç–’ç–”ç––ç– ç–疬疣疳疴疸痄疱疰痃痂痖ç—痣痨痦痤痫痧瘃痱痼痿ç˜ç˜€ç˜…瘌瘗瘊瘥瘘瘕瘙\"],[\"f140\",\"馌馎馚\",10,\"馦馧馩\",47],[\"f180\",\"é§™\",32,\"ç˜›ç˜¼ç˜¢ç˜ ç™€ç˜ç˜°ç˜¿ç˜µç™ƒç˜¾ç˜³ç™ç™žç™”ç™œç™–ç™«ç™¯ç¿Šç«¦ç©¸ç©¹çª€çª†çªˆçª•çª¦çª çª¬çª¨çªçª³è¡¤è¡©è¡²è¡½è¡¿è¢‚袢裆袷袼裉裢裎裣裥裱褚裼裨裾裰褡褙褓褛褊褴褫褶è¥è¥¦è¥»ç–‹èƒ¥çš²çš´çŸœè€’è€”è€–è€œè€ è€¢è€¥è€¦è€§è€©è€¨è€±è€‹è€µèƒè†èè’è©è±è¦ƒé¡¸é¢€é¢ƒ\"],[\"f240\",\"駺\",62],[\"f280\",\"騹\",32,\"颉颌é¢é¢é¢”颚颛颞颟颡颢颥颦è™è™”虬虮虿虺虼虻蚨èšèš‹èš¬èšèš§èš£èšªèš“蚩蚶蛄蚵蛎蚰蚺蚱蚯蛉è›èš´è›©è›±è›²è›è›³è›èœ“蛞蛴蛟蛘蛑蜃蜇蛸蜈蜊èœèœ‰èœ£èœ»èœžèœ¥èœ®èœšèœ¾èˆèœ´èœ±èœ©èœ·èœ¿èž‚蜢è½è¾è»è è°èŒè®èž‹è“è£è¼è¤è™è¥èž“螯螨蟒\"],[\"f340\",\"驚\",17,\"驲骃骉éªéªŽéª”骕骙骦骩\",6,\"骲骳骴骵骹骻骽骾骿髃髄髆\",4,\"é«é«Žé«é«é«’體髕髖髗髙髚髛髜\"],[\"f380\",\"é«é«žé« 髢髣髤髥髧髨髩髪髬髮髰\",8,\"髺髼\",6,\"鬄鬅鬆蟆螈螅èžèž—èžƒèž«èŸ¥èž¬èžµèž³èŸ‹èŸ“èž½èŸ‘èŸ€èŸŠèŸ›èŸªèŸ èŸ®è –è “èŸ¾è Šè ›è ¡è ¹è ¼ç¼¶ç½‚ç½„ç½…èˆç«ºç«½ç¬ˆç¬ƒç¬„笕笊笫ç¬ç‡ç¬¸ç¬ªç¬™ç¬®ç¬±ç¬ 笥笤笳笾笞ç˜çšç…çµçŒçç ç®ç»ç¢ç²ç±ç®ç®¦ç®§ç®¸ç®¬ç®ç®¨ç®…箪箜箢箫箴篑ç¯ç¯Œç¯ç¯šç¯¥ç¯¦ç¯ªç°Œç¯¾ç¯¼ç°ç°–ç°‹\"],[\"f440\",\"鬇鬉\",5,\"é¬é¬‘鬒鬔\",10,\"é¬ é¬¡é¬¢é¬¤\",10,\"鬰鬱鬳\",7,\"鬽鬾鬿é€é†éŠé‹éŒéŽéé’é“é•\",5],[\"f480\",\"é›\",32,\"簟簪簦簸ç±ç±€è‡¾èˆèˆ‚舄臬衄舡舢舣èˆèˆ¯èˆ¨èˆ«èˆ¸èˆ»èˆ³èˆ´èˆ¾è‰„艉艋è‰è‰šè‰Ÿè‰¨è¡¾è¢…袈裘裟襞ç¾ç¾Ÿç¾§ç¾¯ç¾°ç¾²ç±¼æ•‰ç²‘ç²ç²œç²žç²¢ç²²ç²¼ç²½ç³ç³‡ç³Œç³ç³ˆç³…糗糨艮暨羿翎翕翥翡翦翩翮翳糸絷綦綮繇纛麸麴赳趄趔趑趱赧èµè±‡è±‰é…Šé…é…Žé…é…¤\"],[\"f540\",\"é¼\",62],[\"f580\",\"é®»\",32,\"酢酡酰酩酯酽酾酲酴酹醌醅é†é†é†‘醢醣醪é†é†®é†¯é†µé†´é†ºè±•鹾趸跫踅蹙蹩趵趿趼趺跄跖跗跚跞跎è·è·›è·†è·¬è··è·¸è·£è·¹è·»è·¤è¸‰è·½è¸”è¸è¸Ÿè¸¬è¸®è¸£è¸¯è¸ºè¹€è¸¹è¸µè¸½è¸±è¹‰è¹è¹‚蹑蹒蹊蹰蹶蹼蹯蹴躅èºèº”èºèºœèºžè±¸è²‚貊貅貘貔斛觖觞觚觜\"],[\"f640\",\"鯜\",62],[\"f680\",\"é°›\",32,\"觥觫觯訾謦é“雩雳雯霆éœéœˆéœéœŽéœªéœéœ°éœ¾é¾€é¾ƒé¾…\",5,\"龌黾鼋é¼éš¹éš¼éš½é›Žé›’çž¿é› éŠŽéŠ®é‹ˆéŒ¾éªéŠéŽé¾é‘«é±¿é²‚鲅鲆鲇鲈稣鲋鲎é²é²‘鲒鲔鲕鲚鲛鲞\",5,\"é²¥\",4,\"鲫é²é²®é²°\",7,\"鲺鲻鲼鲽鳄鳅鳆鳇鳊鳋\"],[\"f740\",\"é°¼\",62],[\"f780\",\"鱻鱽鱾鲀鲃鲄鲉鲊鲌é²é²“鲖鲗鲘鲙é²é²ªé²¬é²¯é²¹é²¾\",4,\"é³ˆé³‰é³‘é³’é³šé³›é³ é³¡é³Œ\",4,\"鳓鳔鳕鳗鳘鳙鳜é³é³Ÿé³¢é¼éž…鞑鞒鞔鞯鞫鞣鞲鞴骱骰骷鹘骶骺骼é«é«€é«…髂髋髌髑é…éƒé‡é‰éˆéé‘飨é¤é¤®é¥•饔髟髡髦髯髫髻é«é«¹é¬ˆé¬é¬“鬟鬣麽麾縻麂麇麈麋麒é–éºéºŸé»›é»œé»é» 黟黢黩黧黥黪黯鼢鼬鼯鼹鼷鼽鼾齄\"],[\"f840\",\"é³£\",62],[\"f880\",\"é´¢\",32],[\"f940\",\"鵃\",62],[\"f980\",\"é¶‚\",32],[\"fa40\",\"é¶£\",62],[\"fa80\",\"é·¢\",32],[\"fb40\",\"鸃\",27,\"鸤鸧鸮鸰鸴鸻鸼鹀é¹é¹é¹’鹓鹔鹖鹙é¹é¹Ÿé¹ 鹡鹢鹥鹮鹯鹲鹴\",9,\"麀\"],[\"fb80\",\"éºéºƒéº„麅麆麉麊麌\",5,\"麔\",8,\"éºžéº \",5,\"麧麨麩麪\"],[\"fc40\",\"麫\",8,\"麵麶麷麹麺麼麿\",4,\"黅黆黇黈黊黋黌é»é»’黓黕黖黗黙黚點黡黣黤黦黨黫黬é»é»®é»°\",8,\"黺黽黿\",6],[\"fc80\",\"鼆\",4,\"鼌é¼é¼‘鼒鼔鼕鼖鼘鼚\",5,\"鼡鼣\",8,\"é¼é¼®é¼°é¼±\"],[\"fd40\",\"é¼²\",4,\"鼸鼺鼼鼿\",4,\"é½…\",10,\"é½’\",38],[\"fd80\",\"é½¹\",5,\"é¾é¾‚é¾\",11,\"龜é¾é¾žé¾¡\",4,\"郎凉秊裏隣\"],[\"fe40\",\"兀ï¨ï¨Žï¨ï¨‘ï¨“ï¨”ï¨˜ï¨Ÿï¨ ï¨¡ï¨£ï¨¤ï¨§ï¨¨ï¨©\"]]"); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); +/***/ }), +/* 821 */ +/***/ (function(module) { -var _get = _interopRequireDefault(__webpack_require__(370)); +module.exports = JSON.parse("[[\"a140\",\"\",62],[\"a180\",\"î”…\",32],[\"a240\",\"\",62],[\"a280\",\"î•¥\",32],[\"a2ab\",\"î¦\",5],[\"a2e3\",\"€î\"],[\"a2ef\",\"î®î¯\"],[\"a2fd\",\"î°î±\"],[\"a340\",\"î–†\",62],[\"a380\",\"î—…\",31,\" \"],[\"a440\",\"î—¦\",62],[\"a480\",\"\",32],[\"a4f4\",\"î²\",10],[\"a540\",\"\",62],[\"a580\",\"îš…\",32],[\"a5f7\",\"î½\",7],[\"a640\",\"\",62],[\"a680\",\"\",32],[\"a6b9\",\"îž…\",7],[\"a6d9\",\"îž\",6],[\"a6ec\",\"\"],[\"a6f3\",\"îž–\"],[\"a6f6\",\"îž—\",8],[\"a740\",\"\",62],[\"a780\",\"î…\",32],[\"a7c2\",\"îž \",14],[\"a7f2\",\"\",12],[\"a896\",\"îž¼\",10],[\"a8bc\",\"ḿ\"],[\"a8bf\",\"ǹ\"],[\"a8c1\",\"\"],[\"a8ea\",\"îŸ\",20],[\"a958\",\"\"],[\"a95b\",\"\"],[\"a95d\",\"\"],[\"a989\",\"〾⿰\",11],[\"a997\",\"\",12],[\"a9f0\",\"î \",14],[\"aaa1\",\"\",93],[\"aba1\",\"îž\",93],[\"aca1\",\"\",93],[\"ada1\",\"\",93],[\"aea1\",\"î…¸\",93],[\"afa1\",\"\",93],[\"d7fa\",\"î \",4],[\"f8a1\",\"\",93],[\"f9a1\",\"\",93],[\"faa1\",\"î‹°\",93],[\"fba1\",\"îŽ\",93],[\"fca1\",\"\",93],[\"fda1\",\"îŠ\",93],[\"fe50\",\"âºî –î —î ˜âº„ã‘³ã‘‡âºˆâº‹î žã–žã˜šã˜ŽâºŒâº—ã¥®ã¤˜î ¦ã§ã§Ÿã©³ã§î «î ¬ãŽã±®ã³ âº§î ±î ²âºªä–ä…Ÿâº®äŒ·âº³âº¶âº·î »äŽ±äŽ¬âº»ä䓖䙡䙌\"],[\"fe80\",\"䜣䜩ä¼äžâ»Šä¥‡ä¥ºä¥½ä¦‚ä¦ƒä¦…ä¦†ä¦Ÿä¦›ä¦·ä¦¶î¡”î¡•ä²£ä²Ÿä² ä²¡ä±·ä²¢ä´“\",6,\"䶮\",93],[\"8135f437\",\"\"]]"); -var _isString = _interopRequireDefault(__webpack_require__(74)); +/***/ }), +/* 822 */ +/***/ (function(module) { -var _has = _interopRequireDefault(__webpack_require__(669)); +module.exports = JSON.parse("{\"uChars\":[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],\"gbChars\":[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189000]}"); -var _document = __webpack_require__(822); +/***/ }), +/* 823 */ +/***/ (function(module) { -var _dsl = __webpack_require__(625); +module.exports = JSON.parse("[[\"0\",\"\\u0000\",127],[\"8141\",\"갂갃갅갆갋\",4,\"갘갞갟갡갢갣갥\",6,\"갮갲갳갴\"],[\"8161\",\"갵갶갷갺갻갽갾갿ê±\",9,\"걌걎\",5,\"걕\"],[\"8181\",\"걖걗걙걚걛ê±\",18,\"걲걳걵걶걹걻\",4,\"겂겇겈ê²ê²Žê²ê²‘겒겓겕\",6,\"겞겢\",5,\"겫ê²ê²®ê²±\",6,\"겺겾겿곀곂곃곅곆곇곉곊곋ê³\",7,\"곖곘\",7,\"곢곣곥곦곩곫ê³ê³®ê³²ê³´ê³·\",4,\"곾곿ê´ê´‚괃괅괇\",4,\"ê´Žê´ê´’ê´“\"],[\"8241\",\"괔괕괖괗괙괚괛ê´ê´žê´Ÿê´¡\",7,\"괪괫괮\",5],[\"8261\",\"괶괷괹괺괻괽\",6,\"굆굈굊\",5,\"굑굒굓굕굖굗\"],[\"8281\",\"êµ™\",7,\"굢굤\",7,\"굮굯굱굲굷굸굹굺굾궀궃\",4,\"ê¶Šê¶‹ê¶ê¶Žê¶ê¶‘\",10,\"ê¶ž\",5,\"ê¶¥\",17,\"궸\",7,\"귂귃귅귆귇귉\",6,\"ê·’ê·”\",7,\"ê·ê·žê·Ÿê·¡ê·¢ê·£ê·¥\",18],[\"8341\",\"귺귻귽귾긂\",5,\"긊긌긎\",5,\"긕\",7],[\"8361\",\"ê¸\",18,\"긲긳긵긶긹긻긼\"],[\"8381\",\"긽긾긿깂깄깇깈깉깋ê¹ê¹‘깒깓깕깗\",4,\"깞깢깣깤깦깧깪깫ê¹ê¹®ê¹¯ê¹±\",6,\"깺깾\",5,\"꺆\",5,\"êº\",46,\"꺿ê»ê»‚껃껅\",6,\"껎껒\",5,\"껚껛ê»\",8],[\"8441\",\"껦껧껩껪껬껮\",5,\"껵껶껷껹껺껻껽\",8],[\"8461\",\"꼆꼉꼊꼋꼌꼎ê¼ê¼‘\",18],[\"8481\",\"꼤\",7,\"꼮꼯꼱꼳꼵\",6,\"꼾꽀꽄꽅꽆꽇꽊\",5,\"꽑\",10,\"꽞\",5,\"꽦\",18,\"꽺\",5,\"ê¾ê¾‚꾃꾅꾆꾇꾉\",6,\"꾒꾓꾔꾖\",5,\"ê¾\",26,\"꾺꾻꾽꾾\"],[\"8541\",\"꾿ê¿\",5,\"꿊꿌ê¿\",4,\"ê¿•\",6,\"ê¿\",4],[\"8561\",\"ê¿¢\",5,\"꿪\",5,\"꿲꿳꿵꿶꿷꿹\",6,\"뀂뀃\"],[\"8581\",\"뀅\",6,\"ë€ë€Žë€ë€‘뀒뀓뀕\",6,\"뀞\",9,\"뀩\",26,\"ë†ë‡ë‰ë‹ëëëë‘ë’ë–ë˜ëšë›ëœëž\",29,\"ë¾ë¿ë‚낂낃낅\",6,\"낎ë‚ë‚’\",5,\"ë‚›ë‚낞낣낤\"],[\"8641\",\"낥낦낧낪낰낲낶낷낹낺낻낽\",6,\"냆냊\",5,\"냒\"],[\"8661\",\"냓냕냖냗냙\",6,\"냡냢냣냤냦\",10],[\"8681\",\"냱\",22,\"넊ë„넎ë„넑넔넕넖넗넚넞\",4,\"넦넧넩넪넫ë„\",6,\"넶넺\",5,\"녂녃녅녆녇녉\",6,\"녒녓녖녗녙녚녛ë…ë…žë…Ÿë…¡\",22,\"녺녻녽녾녿ë†ë†ƒ\",4,\"놊놌놎ë†ë†ë†‘놕놖놗놙놚놛ë†\"],[\"8741\",\"놞\",9,\"놩\",15],[\"8761\",\"놹\",18,\"ë‡ë‡Žë‡ë‡‘뇒뇓뇕\"],[\"8781\",\"뇖\",5,\"ë‡žë‡ \",7,\"뇪뇫ë‡ë‡®ë‡¯ë‡±\",7,\"뇺뇼뇾\",5,\"눆눇눉눊ëˆ\",6,\"눖눘눚\",5,\"눡\",18,\"눵\",6,\"눽\",26,\"뉙뉚뉛ë‰ë‰žë‰Ÿë‰¡\",6,\"뉪\",4],[\"8841\",\"뉯\",4,\"뉶\",5,\"뉽\",6,\"늆늇늈늊\",4],[\"8861\",\"ëŠëŠ’ëŠ“ëŠ•ëŠ–ëŠ—ëŠ›\",4,\"늢늤늧늨늩늫ëŠëŠ®ëŠ¯ëŠ±ëŠ²ëŠ³ëŠµëŠ¶ëŠ·\"],[\"8881\",\"늸\",15,\"닊닋ë‹ë‹Žë‹ë‹‘ë‹“\",4,\"ë‹šë‹œë‹žë‹Ÿë‹ ë‹¡ë‹£ë‹§ë‹©ë‹ªë‹°ë‹±ë‹²ë‹¶ë‹¼ë‹½ë‹¾ëŒ‚ëŒƒëŒ…ëŒ†ëŒ‡ëŒ‰\",6,\"댒댖\",5,\"ëŒ\",54,\"ë—ë™ëšëë ë¡ë¢ë£\"],[\"8941\",\"ë¦ë¨ëªë¬ëë¯ë²ë³ëµë¶ë·ë¹\",6,\"뎂뎆\",5,\"ëŽ\"],[\"8961\",\"뎎ëŽëŽ‘ëŽ’ëŽ“ëŽ•\",10,\"뎢\",5,\"뎩뎪뎫ëŽ\"],[\"8981\",\"뎮\",21,\"ë†ë‡ë‰ëŠëëë‘ë’ë“ë–ë˜ëšëœëžëŸë¡ë¢ë£ë¥ë¦ë§ë©\",18,\"ë½\",18,\"ë‘\",6,\"ë™ëšë›ëëžëŸë¡\",6,\"ëªë¬\",7,\"ëµ\",15],[\"8a41\",\"ë‘…\",10,\"ë‘’ë‘“ë‘•ë‘–ë‘—ë‘™\",6,\"둢둤둦\"],[\"8a61\",\"ë‘§\",4,\"ë‘\",18,\"ë’ë’‚\"],[\"8a81\",\"ë’ƒ\",4,\"ë’‰\",19,\"ë’ž\",5,\"뒥뒦뒧뒩뒪뒫ë’\",7,\"뒶뒸뒺\",5,\"ë“듂듃듅듆듇듉\",6,\"듑듒듓듔듖\",5,\"듞듟듡듢듥듧\",4,\"듮듰듲\",5,\"듹\",26,\"딖딗딙딚ë”\"],[\"8b41\",\"딞\",5,\"딦딫\",4,\"딲딳딵딶딷딹\",6,\"땂땆\"],[\"8b61\",\"땇땈땉땊땎ë•ë•‘ë•’ë•“ë••\",6,\"땞땢\",8],[\"8b81\",\"ë•«\",52,\"떢떣떥떦떧떩떬ë–떮떯떲떶\",4,\"떾떿ë—뗂뗃뗅\",6,\"ë—Žë—’\",5,\"ë—™\",18,\"ë—\",18],[\"8c41\",\"똀\",15,\"똒똓똕똖똗똙\",4],[\"8c61\",\"똞\",6,\"똦\",5,\"ë˜\",6,\"똵\",5],[\"8c81\",\"똻\",12,\"뙉\",26,\"뙥뙦뙧뙩\",50,\"뚞뚟뚡뚢뚣뚥\",5,\"ëšëš®ëš¯ëš°ëš²\",16],[\"8d41\",\"뛃\",16,\"뛕\",8],[\"8d61\",\"뛞\",17,\"뛱뛲뛳뛵뛶뛷뛹뛺\"],[\"8d81\",\"ë›»\",4,\"뜂뜃뜄뜆\",33,\"뜪뜫ëœëœ®ëœ±\",6,\"뜺뜼\",7,\"ë…ë†ë‡ë‰ëŠë‹ë\",6,\"ë–\",9,\"ë¡ë¢ë£ë¥ë¦ë§ë©\",6,\"ë²ë´ë¶\",5,\"ë¾ë¿ëžëž‚랃랅\",6,\"랎랓랔랕랚랛ëžëžž\"],[\"8e41\",\"랟랡\",6,\"랪랮\",5,\"ëž¶ëž·ëž¹\",8],[\"8e61\",\"럂\",4,\"럈럊\",19],[\"8e81\",\"럞\",13,\"럮럯럱럲럳럵\",6,\"ëŸ¾ë ‚\",4,\"ë Šë ‹ë ë Žë ë ‘\",6,\"ë šë œë ž\",5,\"ë ¦ë §ë ©ë ªë «ë \",6,\"ë ¶ë º\",5,\"ë¡ë¡‚롃롅\",11,\"ë¡’ë¡”\",7,\"롞롟롡롢롣롥\",6,\"롮롰롲\",5,\"롹롺롻롽\",7],[\"8f41\",\"뢅\",7,\"뢎\",17],[\"8f61\",\"ë¢ \",7,\"뢩\",6,\"뢱뢲뢳뢵뢶뢷뢹\",4],[\"8f81\",\"뢾뢿룂룄룆\",5,\"ë£ë£Žë£ë£‘룒룓룕\",7,\"ë£žë£ ë£¢\",5,\"룪룫ë£ë£®ë£¯ë£±\",6,\"룺룼룾\",5,\"뤅\",18,\"뤙\",6,\"뤡\",26,\"뤾뤿ë¥ë¥‚륃륅\",6,\"ë¥ë¥Žë¥ë¥’\",5],[\"9041\",\"륚륛ë¥ë¥žë¥Ÿë¥¡\",6,\"륪륬륮\",5,\"륶륷륹륺륻륽\"],[\"9061\",\"륾\",5,\"릆릈릋릌ë¦\",15],[\"9081\",\"릟\",12,\"릮릯릱릲릳릵\",6,\"릾맀맂\",5,\"ë§Šë§‹ë§ë§“\",4,\"ë§šë§œë§Ÿë§ ë§¢ë§¦ë§§ë§©ë§ªë§«ë§\",6,\"ë§¶ë§»\",4,\"먂\",5,\"먉\",11,\"먖\",33,\"먺먻먽먾먿ë©ë©ƒë©„멅멆\"],[\"9141\",\"멇멊멌ë©ë©ë©‘멒멖멗멙멚멛ë©\",6,\"멦멪\",5],[\"9161\",\"멲멳멵멶멷멹\",9,\"몆몈몉몊몋ëª\",5],[\"9181\",\"몓\",20,\"몪ëªëª®ëª¯ëª±ëª³\",4,\"몺몼몾\",5,\"뫅뫆뫇뫉\",14,\"뫚\",33,\"뫽뫾뫿ë¬ë¬‚묃묅\",7,\"묎ë¬ë¬’\",5,\"묙묚묛ë¬ë¬žë¬Ÿë¬¡\",6],[\"9241\",\"묨묪묬\",7,\"묷묹묺묿\",4,\"ë†ëˆëŠë‹ëŒëŽë‘ë’\"],[\"9261\",\"ë“ë•ë–ë—ë™\",7,\"ë¢ë¤\",7,\"ë\",4],[\"9281\",\"ë²\",21,\"뮉뮊뮋ë®ë®Žë®ë®‘\",18,\"뮥뮦뮧뮩뮪뮫ë®\",6,\"뮵뮶뮸\",7,\"ë¯ë¯‚믃믅믆믇믉\",6,\"믑믒믔\",35,\"믺믻믽믾ë°\"],[\"9341\",\"ë°ƒ\",4,\"ë°Šë°Žë°ë°’ë°“ë°™ë°šë° ë°¡ë°¢ë°£ë°¦ë°¨ë°ªë°«ë°¬ë°®ë°¯ë°²ë°³ë°µ\"],[\"9361\",\"ë°¶ë°·ë°¹\",6,\"뱂뱆뱇뱈뱊뱋뱎ë±ë±‘\",8],[\"9381\",\"뱚뱛뱜뱞\",37,\"벆벇벉벊ë²ë²\",4,\"벖벘벛\",4,\"벢벣벥벦벩\",6,\"벲벶\",5,\"벾벿ë³ë³‚볃볅\",7,\"볎볒볓볔볖볗볙볚볛ë³\",22,\"볷볹볺볻볽\"],[\"9441\",\"ë³¾\",5,\"봆봈봊\",5,\"ë´‘ë´’ë´“ë´•\",8],[\"9461\",\"ë´ž\",5,\"ë´¥\",6,\"ë´\",12],[\"9481\",\"ë´º\",5,\"ëµ\",6,\"뵊뵋ëµëµŽëµëµ‘\",6,\"뵚\",9,\"뵥뵦뵧뵩\",22,\"붂붃붅붆붋\",4,\"붒붔붖붗붘붛ë¶\",6,\"ë¶¥\",10,\"ë¶±\",6,\"ë¶¹\",24],[\"9541\",\"뷒뷓뷖뷗뷙뷚뷛ë·\",11,\"ë·ª\",5,\"ë·±\"],[\"9561\",\"뷲뷳뷵뷶뷷뷹\",6,\"ë¸ë¸‚븄븆\",5,\"븎ë¸ë¸‘븒븓\"],[\"9581\",\"븕\",6,\"ë¸žë¸ \",35,\"빆빇빉빊빋ë¹ë¹\",4,\"빖빘빜ë¹ë¹žë¹Ÿë¹¢ë¹£ë¹¥ë¹¦ë¹§ë¹©ë¹«\",4,\"빲빶\",4,\"빾빿ëºëº‚뺃뺅\",6,\"뺎뺒\",5,\"뺚\",13,\"뺩\",14],[\"9641\",\"뺸\",23,\"뻒뻓\"],[\"9661\",\"뻕뻖뻙\",6,\"뻡뻢뻦\",5,\"ë»\",8],[\"9681\",\"ë»¶\",10,\"뼂\",5,\"뼊\",13,\"뼚뼞\",33,\"뽂뽃뽅뽆뽇뽉\",6,\"뽒뽓뽔뽖\",44],[\"9741\",\"뾃\",16,\"뾕\",8],[\"9761\",\"뾞\",17,\"ë¾±\",7],[\"9781\",\"ë¾¹\",11,\"뿆\",5,\"뿎ë¿ë¿‘ë¿’ë¿“ë¿•\",6,\"ë¿ë¿žë¿ ë¿¢\",89,\"쀽쀾쀿\"],[\"9841\",\"ì€\",16,\"ì’\",5,\"ì™ìšì›\"],[\"9861\",\"ììžìŸì¡\",6,\"ìª\",15],[\"9881\",\"ìº\",21,\"ì‚’ì‚“ì‚•ì‚–ì‚—ì‚™\",6,\"삢삤삦\",5,\"삮삱삲삷\",4,\"삾샂샃샄샆샇샊샋ìƒìƒŽìƒìƒ‘\",6,\"샚샞\",5,\"샦샧샩샪샫ìƒ\",6,\"샶샸샺\",5,\"ì„섂섃섅섆섇섉\",6,\"섑섒섓섔섖\",5,\"섡섢섥섨섩섪섫섮\"],[\"9941\",\"섲섳섴섵섷섺섻섽섾섿ì…\",6,\"ì…Šì…Ž\",5,\"ì…–ì…—\"],[\"9961\",\"셙셚셛ì…\",6,\"셦셪\",5,\"셱셲셳셵셶셷셹셺셻\"],[\"9981\",\"ì…¼\",8,\"솆\",5,\"ì†ì†‘솒솓솕솗\",4,\"ì†žì† ì†¢ì†£ì†¤ì†¦ì†§ì†ªì†«ì†ì†®ì†¯ì†±\",11,\"솾\",5,\"쇅쇆쇇쇉쇊쇋ì‡\",6,\"쇕쇖쇙\",6,\"쇡쇢쇣쇥쇦쇧쇩\",6,\"쇲쇴\",7,\"쇾쇿ìˆìˆ‚숃숅\",6,\"숎ìˆìˆ’\",5,\"숚숛ìˆìˆžìˆ¡ìˆ¢ìˆ£\"],[\"9a41\",\"숤숥숦숧숪숬숮숰숳숵\",16],[\"9a61\",\"쉆쉇쉉\",6,\"쉒쉓쉕쉖쉗쉙\",6,\"쉡쉢쉣쉤쉦\"],[\"9a81\",\"쉧\",4,\"쉮쉯쉱쉲쉳쉵\",6,\"쉾슀슂\",5,\"슊\",5,\"슑\",6,\"슙슚슜슞\",5,\"슦슧슩슪슫슮\",5,\"슶슸슺\",33,\"싞싟싡싢싥\",5,\"싮싰싲싳싴싵싷싺싽싾싿ìŒ\",6,\"쌊쌋쌎ìŒ\"],[\"9b41\",\"ìŒìŒ‘쌒쌖쌗쌙쌚쌛ìŒ\",6,\"쌦쌧쌪\",8],[\"9b61\",\"쌳\",17,\"ì†\",7],[\"9b81\",\"ìŽ\",25,\"ìªì«ìì®ì¯ì±ì³\",4,\"ìºì»ì¾\",5,\"쎅쎆쎇쎉쎊쎋ìŽ\",50,\"ì\",22,\"ìš\"],[\"9c41\",\"ì›ììžì¡ì£\",4,\"ìªì«ì¬ì®\",5,\"ì¶ì·ì¹\",5],[\"9c61\",\"ì¿\",8,\"ì‰\",6,\"ì‘\",9],[\"9c81\",\"ì›\",8,\"ì¥\",6,\"ìì®ì¯ì±ì²ì³ìµ\",6,\"ì¾\",9,\"쑉\",26,\"쑦쑧쑩쑪쑫ì‘\",6,\"쑶쑷쑸쑺\",5,\"ì’\",18,\"ì’•\",6,\"ì’\",12],[\"9d41\",\"ì’ª\",13,\"쒹쒺쒻쒽\",8],[\"9d61\",\"쓆\",25],[\"9d81\",\"ì“ \",8,\"쓪\",5,\"쓲쓳쓵쓶쓷쓹쓻쓼쓽쓾씂\",9,\"ì”씎ì”씑씒씓씕\",6,\"ì”\",10,\"씪씫ì”씮씯씱\",6,\"씺씼씾\",5,\"앆앇앋ì•ì•앑앒앖앚앛앜앟앢앣앥앦앧앩\",6,\"앲앶\",5,\"앾앿ì–얂얃얅얆얈얉얊얋얎ì–ì–’ì–“ì–”\"],[\"9e41\",\"얖얙얚얛ì–ì–žì–Ÿì–¡\",7,\"ì–ª\",9,\"ì–¶\"],[\"9e61\",\"얷얺얿\",4,\"ì—‹ì—ì—ì—’ì—“ì—•ì—–ì——ì—™\",6,\"엢엤엦엧\"],[\"9e81\",\"엨엩엪엫엯엱엲엳엵엸엹엺엻옂옃옄옉옊옋ì˜ì˜Žì˜ì˜‘\",6,\"옚ì˜\",6,\"옦옧옩옪옫옯옱옲옶옸옺옼옽옾옿왂왃왅왆왇왉\",6,\"ì™’ì™–\",5,\"왞왟왡\",10,\"ì™ì™®ì™°ì™²\",5,\"왺왻왽왾왿ìš\",6,\"욊욌욎\",5,\"욖욗욙욚욛ìš\",6,\"욦\"],[\"9f41\",\"욨욪\",5,\"욲욳욵욶욷욻\",4,\"웂웄웆\",5,\"웎\"],[\"9f61\",\"ì›ì›‘웒웓웕\",6,\"웞웟웢\",5,\"웪웫ì›ì›®ì›¯ì›±ì›²\"],[\"9f81\",\"웳\",4,\"웺웻웼웾\",5,\"윆윇윉윊윋ìœ\",6,\"윖윘윚\",5,\"윢윣윥윦윧윩\",6,\"윲윴윶윸윹윺윻윾윿ìì‚ìƒì…\",4,\"ì‹ìŽìì™ìšì›ììžìŸì¡\",6,\"ì©ìªì¬\",7,\"ì¶ì·ì¹ìºì»ì¿ìž€ìžìž‚잆잋잌ìžìžìž’잓잕잙잛\",4,\"잢잧\",4,\"잮잯잱잲잳잵잶잷\"],[\"a041\",\"잸잹잺잻잾쟂\",5,\"쟊쟋ìŸìŸìŸ‘\",6,\"쟙쟚쟛쟜\"],[\"a061\",\"쟞\",5,\"쟥쟦쟧쟩쟪쟫ìŸ\",13],[\"a081\",\"쟻\",4,\"ì ‚ì ƒì …ì †ì ‡ì ‰ì ‹\",4,\"ì ’ì ”ì —\",4,\"ì žì Ÿì ¡ì ¢ì £ì ¥\",6,\"ì ®ì °ì ²\",5,\"ì ¹ì ºì »ì ½ì ¾ì ¿ì¡\",6,\"졊졋졎\",5,\"ì¡•\",26,\"졲졳졵졶졷졹졻\",4,\"좂좄좈좉좊좎\",5,\"좕\",7,\"ì¢žì¢ ì¢¢ì¢£ì¢¤\"],[\"a141\",\"좥좦좧좩\",18,\"좾좿죀ì£\"],[\"a161\",\"죂죃죅죆죇죉죊죋ì£\",6,\"죖죘죚\",5,\"죢죣죥\"],[\"a181\",\"죦\",14,\"죶\",5,\"죾죿ì¤ì¤‚줃줇\",4,\"줎 ã€ã€‚·‥…¨〃Â―∥\∼‘’“â€ã€”〕〈\",9,\"Â±Ã—Ã·â‰ â‰¤â‰¥âˆžâˆ´Â°â€²â€³â„ƒâ„«ï¿ ï¿¡ï¿¥â™‚â™€âˆ âŠ¥âŒ’âˆ‚âˆ‡â‰¡â‰’Â§â€»â˜†â˜…â—‹â—◎◇◆□■△▲▽▼→â†â†‘↓↔〓≪≫√∽âˆâˆµâˆ«âˆ¬âˆˆâˆ‹âŠ†âŠ‡âŠ‚âŠƒâˆªâˆ©âˆ§âˆ¨ï¿¢\"],[\"a241\",\"ì¤ì¤’\",5,\"줙\",18],[\"a261\",\"ì¤\",6,\"줵\",18],[\"a281\",\"쥈\",7,\"쥒쥓쥕쥖쥗쥙\",6,\"쥢쥤\",7,\"ì¥ì¥®ì¥¯â‡’⇔∀∃´~ˇ˘Ë˚˙¸˛¡¿Ë∮∑âˆÂ¤â„‰â€°â—◀▷▶♤♠♡♥♧♣⊙◈▣â—◑▒▤▥▨▧▦▩♨â˜â˜Žâ˜œâ˜žÂ¶â€ ‡↕↗↙↖↘â™â™©â™ªâ™¬ã‰¿ãˆœâ„–ã‡â„¢ã‚ã˜â„¡â‚¬Â®\"],[\"a341\",\"쥱쥲쥳쥵\",6,\"쥽\",10,\"즊즋ì¦ì¦Žì¦\"],[\"a361\",\"즑\",6,\"즚즜즞\",16],[\"a381\",\"즯\",16,\"짂짃짅짆짉짋\",4,\"짒짔짗짘짛ï¼\",58,\"₩]\",32,\"ï¿£\"],[\"a441\",\"짞짟짡짣짥짦짨짩짪짫짮짲\",5,\"짺짻짽짾짿ì¨ì¨‚쨃쨄\"],[\"a461\",\"쨅쨆쨇쨊쨎\",5,\"쨕쨖쨗쨙\",12],[\"a481\",\"쨦쨧쨨쨪\",28,\"ㄱ\",93],[\"a541\",\"쩇\",4,\"쩎ì©ì©‘ì©’ì©“ì©•\",6,\"쩞쩢\",5,\"쩩쩪\"],[\"a561\",\"ì©«\",17,\"쩾\",5,\"쪅쪆\"],[\"a581\",\"쪇\",16,\"쪙\",14,\"â…°\",9],[\"a5b0\",\"â… \",9],[\"a5c1\",\"Α\",16,\"Σ\",6],[\"a5e1\",\"α\",16,\"σ\",6],[\"a641\",\"쪨\",19,\"쪾쪿ì«ì«‚쫃쫅\"],[\"a661\",\"쫆\",5,\"쫎ì«ì«’쫔쫕쫖쫗쫚\",5,\"ì«¡\",6],[\"a681\",\"쫨쫩쫪쫫ì«\",6,\"쫵\",18,\"쬉쬊─│┌â”┘└├┬┤┴┼â”┃â”┓┛┗┣┳┫┻╋┠┯┨┷┿â”┰┥┸╂┒┑┚┙┖┕┎â”┞┟┡┢┦┧┩┪â”┮┱┲┵┶┹┺┽┾╀â•╃\",7],[\"a741\",\"쬋\",4,\"쬑쬒쬓쬕쬖쬗쬙\",6,\"쬢\",7],[\"a761\",\"쬪\",22,\"ì‚ìƒì„\"],[\"a781\",\"ì…ì†ì‡ìŠì‹ììŽìì‘\",6,\"ìšì›ìœìž\",5,\"ì¥\",7,\"㎕㎖㎗ℓ㎘ã„㎣㎤㎥㎦㎙\",9,\"ãŠãŽãŽŽãŽã㎈㎉ãˆãŽ§ãŽ¨ãŽ°\",9,\"㎀\",4,\"㎺\",5,\"ãŽ\",4,\"Ωã€ã㎊㎋㎌ã–ã…ãŽãŽ®ãŽ¯ã›ãŽ©ãŽªãŽ«ãŽ¬ããã“ãƒã‰ãœã†\"],[\"a841\",\"ì\",10,\"ìº\",14],[\"a861\",\"쮉\",18,\"ì®\",6],[\"a881\",\"쮤\",19,\"쮹\",11,\"ÆÃªĦ\"],[\"a8a6\",\"IJ\"],[\"a8a8\",\"Ä¿ÅØŒºÞŦŊ\"],[\"a8b1\",\"㉠\",27,\"â“\",25,\"â‘ \",14,\"½⅓⅔¼¾⅛⅜â…â…ž\"],[\"a941\",\"쯅\",14,\"쯕\",10],[\"a961\",\"ì¯ ì¯¡ì¯¢ì¯£ì¯¥ì¯¦ì¯¨ì¯ª\",18],[\"a981\",\"쯽\",14,\"ì°Žì°ì°‘ì°’ì°“ì°•\",6,\"ì°žì°Ÿì° ì°£ì°¤Ã¦Ä‘Ã°Ä§Ä±Ä³Ä¸Å€Å‚Ã¸Å“ÃŸÃ¾Å§Å‹Å‰ãˆ€\",27,\"â’œ\",25,\"â‘´\",14,\"¹²³â´â¿â‚₂₃₄\"],[\"aa41\",\"찥찦찪찫ì°ì°¯ì°±\",6,\"찺찿\",4,\"챆챇챉챊챋ì±ì±Ž\"],[\"aa61\",\"ì±\",4,\"챖챚\",5,\"챡챢챣챥챧챩\",6,\"챱챲\"],[\"aa81\",\"챳챴챶\",29,\"ã\",82],[\"ab41\",\"첔첕첖첗첚첛ì²ì²žì²Ÿì²¡\",6,\"첪첮\",5,\"ì²¶ì²·ì²¹\"],[\"ab61\",\"첺첻첽\",6,\"쳆쳈쳊\",5,\"쳑쳒쳓쳕\",5],[\"ab81\",\"ì³›\",8,\"ì³¥\",6,\"ì³ì³®ì³¯ì³±\",12,\"ã‚¡\",85],[\"ac41\",\"쳾쳿촀촂\",5,\"ì´Šì´‹ì´ì´Žì´ì´‘\",6,\"ì´šì´œì´žì´Ÿì´ \"],[\"ac61\",\"촡촢촣촥촦촧촩촪촫ì´\",11,\"ì´º\",4],[\"ac81\",\"ì´¿\",28,\"ìµìµžìµŸÐ\",5,\"ÐЖ\",25],[\"acd1\",\"а\",5,\"ёж\",25],[\"ad41\",\"쵡쵢쵣쵥\",6,\"쵮쵰쵲\",5,\"ìµ¹\",7],[\"ad61\",\"ì¶\",6,\"춉\",10,\"춖춗춙춚춛ì¶ì¶žì¶Ÿ\"],[\"ad81\",\"ì¶ ì¶¡ì¶¢ì¶£ì¶¦ì¶¨ì¶ª\",5,\"ì¶±\",18,\"ì·…\"],[\"ae41\",\"ì·†\",5,\"ì·ì·Žì·ì·‘\",16],[\"ae61\",\"ì·¢\",5,\"췩췪췫ì·ì·®ì·¯ì·±\",6,\"췺췼췾\",4],[\"ae81\",\"츃츅츆츇츉츊츋ì¸\",6,\"츕츖츗츘츚\",5,\"츢츣츥츦츧츩츪츫\"],[\"af41\",\"츬ì¸ì¸®ì¸¯ì¸²ì¸´ì¸¶\",19],[\"af61\",\"칊\",13,\"칚칛ì¹ì¹žì¹¢\",5,\"칪칬\"],[\"af81\",\"ì¹®\",5,\"칶칷칹칺칻칽\",6,\"캆캈캊\",5,\"캒캓캕캖캗캙\"],[\"b041\",\"캚\",5,\"캢캦\",5,\"캮\",12],[\"b061\",\"캻\",5,\"컂\",19],[\"b081\",\"ì»–\",13,\"컦컧컩컪ì»\",6,\"컶컺\",5,\"ê°€ê°ê°„갇갈갉갊ê°\",7,\"ê°™\",4,\"ê° ê°¤ê°¬ê°ê°¯ê°°ê°±ê°¸ê°¹ê°¼ê±€ê±‹ê±ê±”걘걜거걱건걷걸걺검ê²ê²ƒê²„겅겆겉겊겋게ê²ê²”겜ê²ê²Ÿê² 겡겨격겪견겯결겸겹겻겼경ê³ê³„ê³ˆê³Œê³•ê³—ê³ ê³¡ê³¤ê³§ê³¨ê³ªê³¬ê³¯ê³°ê³±ê³³ê³µê³¶ê³¼ê³½ê´€ê´„ê´†\"],[\"b141\",\"켂켃켅켆켇켉\",6,\"켒켔켖\",5,\"ì¼ì¼žì¼Ÿì¼¡ì¼¢ì¼£\"],[\"b161\",\"ì¼¥\",6,\"켮켲\",5,\"ì¼¹\",11],[\"b181\",\"ì½…\",14,\"콖콗콙콚콛ì½\",6,\"콦콨콪콫콬괌ê´ê´ê´‘ê´˜ê´œê´ ê´©ê´¬ê´ê´´ê´µê´¸ê´¼êµ„굅굇굉êµêµ”굘굡굣구êµêµ°êµ³êµ´êµµêµ¶êµ»êµ¼êµ½êµ¿ê¶ê¶‚궈궉권ê¶ê¶œê¶ê¶¤ê¶·ê·€ê·ê·„ê·ˆê·ê·‘ê·“ê·œê· ê·¤ê·¸ê·¹ê·¼ê·¿ê¸€ê¸ê¸ˆê¸‰ê¸‹ê¸ê¸”기긱긴긷길긺김ê¹ê¹ƒê¹…깆깊까ê¹ê¹Žê¹ê¹”깖깜ê¹ê¹Ÿê¹ 깡깥깨깩깬깰깸\"],[\"b241\",\"ì½ì½®ì½¯ì½²ì½³ì½µì½¶ì½·ì½¹\",6,\"ì¾ì¾‚쾃쾄쾆\",5,\"ì¾\"],[\"b261\",\"쾎\",18,\"ì¾¢\",5,\"쾩\"],[\"b281\",\"쾪\",5,\"ì¾±\",18,\"ì¿…\",6,\"깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌ê»ê»ê»ê»‘께껙껜껨껫ê»ê»´ê»¸ê»¼ê¼‡ê¼ˆê¼ê¼ê¼¬ê¼ê¼°ê¼²ê¼´ê¼¼ê¼½ê¼¿ê½ê½‚꽃꽈꽉ê½ê½œê½ê½¤ê½¥ê½¹ê¾€ê¾„꾈ê¾ê¾‘꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋ê¿ê¿Žê¿”꿜꿨꿩꿰꿱꿴꿸뀀ë€ë€„뀌ë€ë€”뀜ë€ë€¨ë„ë…ëˆëŠëŒëŽë“ë”ë•ë—ë™\"],[\"b341\",\"쿌\",19,\"쿢쿣쿥쿦쿧쿩\"],[\"b361\",\"쿪\",5,\"쿲쿴쿶\",5,\"쿽쿾쿿í€í€‚퀃퀅\",5],[\"b381\",\"퀋\",5,\"퀒\",5,\"퀙\",19,\"ëë¼ë½ë‚€ë‚„낌ë‚ë‚ë‚‘ë‚˜ë‚™ë‚šë‚œë‚Ÿë‚ ë‚¡ë‚¢ë‚¨ë‚©ë‚«\",4,\"낱낳내낵낸낼냄냅냇냈냉ëƒëƒ‘ëƒ”ëƒ˜ëƒ ëƒ¥ë„ˆë„‰ë„‹ë„Œë„넒넓넘넙넛넜ë„넣네넥넨넬넴넵넷넸넹녀ë…ë…„ë…ˆë…ë…‘ë…”ë…•ë…˜ë…œë… ë…¸ë…¹ë…¼ë†€ë†‚ë†ˆë†‰ë†‹ë†ë†’놓놔놘놜놨뇌ë‡ë‡”뇜ë‡\"],[\"b441\",\"퀮\",5,\"퀶퀷퀹퀺퀻퀽\",6,\"í†íˆíŠ\",5],[\"b461\",\"í‘í’í“í•í–í—í™\",6,\"í¡\",10,\"í®í¯\"],[\"b481\",\"í±í²í³íµ\",6,\"í¾í¿í‚€í‚‚\",18,\"ë‡Ÿë‡¨ë‡©ë‡¬ë‡°ë‡¹ë‡»ë‡½ëˆ„ëˆ…ëˆˆëˆ‹ëˆŒëˆ”ëˆ•ëˆ—ëˆ™ëˆ ëˆ´ëˆ¼ë‰˜ë‰œë‰ ë‰¨ë‰©ë‰´ë‰µë‰¼ëŠ„ëŠ…ëŠ‰ëŠëŠ‘ëŠ”ëŠ˜ëŠ™ëŠšëŠ ëŠ¡ëŠ£ëŠ¥ëŠ¦ëŠªëŠ¬ëŠ°ëŠ´ë‹ˆë‹‰ë‹Œë‹ë‹’님닙닛ë‹ë‹¢ë‹¤ë‹¥ë‹¦ë‹¨ë‹«\",4,\"닳담답닷\",4,\"닿대ëŒëŒ„댈ëŒëŒ‘댓댔댕댜ë”ë•ë–ë˜ë›ëœëžëŸë¤ë¥\"],[\"b541\",\"í‚•\",14,\"킦킧킩킪킫í‚\",5],[\"b561\",\"킳킶킸킺\",5,\"탂탃탅탆탇탊\",5,\"탒탖\",4],[\"b581\",\"탛탞탟탡탢탣탥\",6,\"탮탲\",5,\"탹\",11,\"ë§ë©ë«ë®ë°ë±ë´ë¸ëŽ€ëŽëŽƒëŽ„ëŽ…ëŽŒëŽëŽ”ëŽ ëŽ¡ëŽ¨ëŽ¬ë„ë…ëˆë‹ëŒëŽëë”ë•ë—ë™ë›ëë ë¤ë¨ë¼ëë˜ëœë ë¨ë©ë«ë´ë‘ë‘‘ë‘”ë‘˜ë‘ ë‘¡ë‘£ë‘¥ë‘¬ë’€ë’ˆë’뒤뒨뒬뒵뒷뒹듀듄듈ë“듕드ë“ë“ ë“£ë“¤ë“¦ë“¬ë“듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸\"],[\"b641\",\"í„…\",7,\"턎\",17],[\"b661\",\"í„ \",15,\"턲턳턵턶턷턹턻턼턽턾\"],[\"b681\",\"í„¿í…‚í…†\",5,\"í…Ží…í…‘í…’í…“í…•\",6,\"í…ží… í…¢\",5,\"텩텪텫í…ë•€ë•땃땄땅땋때ë•ë•땔땜ë•ë•Ÿë• ë•¡ë– ë–¡ë–¤ë–¨ë–ªë–«ë–°ë–±ë–³ë–´ë–µë–»ë–¼ë–½ë—€ë—„ë—Œë—ë—ë—뗑뗘뗬ë˜ë˜‘똔똘똥똬똴뙈뙤뙨뚜ëšëš 뚤뚫뚬뚱뛔뛰뛴뛸뜀ëœëœ…뜨뜩뜬뜯뜰뜸뜹뜻ë„ëˆëŒë”ë•ë ë¤ë¨ë°ë±ë³ëµë¼ë½ëž€ëž„람ëžëžëžëž‘ëž’ëž–ëž—\"],[\"b741\",\"í…®\",13,\"í…½\",6,\"톅톆톇톉톊\"],[\"b761\",\"톋\",20,\"톢톣톥톦톧\"],[\"b781\",\"톩\",6,\"톲톴톶톷톸톹톻톽톾톿í‡\",14,\"ëž˜ëž™ëžœëž ëž¨ëž©ëž«ëž¬ëžëž´ëžµëž¸ëŸ‡ëŸ‰ëŸ¬ëŸëŸ°ëŸ´ëŸ¼ëŸ½ëŸ¿ë €ë ë ‡ë ˆë ‰ë Œë ë ˜ë ™ë ›ë ë ¤ë ¥ë ¨ë ¬ë ´ë µë ·ë ¸ë ¹ë¡€ë¡„ë¡‘ë¡“ë¡œë¡ë¡ 롤롬ë¡ë¡¯ë¡±ë¡¸ë¡¼ë¢ë¢¨ë¢°ë¢´ë¢¸ë£€ë£ë£ƒë£…료ë£ë£”ë£ë£Ÿë£¡ë£¨ë£©ë£¬ë£°ë£¸ë£¹ë£»ë£½ë¤„ë¤˜ë¤ ë¤¼ë¤½ë¥€ë¥„ë¥Œë¥ë¥‘ë¥˜ë¥™ë¥œë¥ ë¥¨ë¥©\"],[\"b841\",\"í‡\",7,\"퇙\",17],[\"b861\",\"퇫\",8,\"퇵퇶퇷퇹\",13],[\"b881\",\"툈툊\",5,\"툑\",24,\"륫ë¥ë¥´ë¥µë¥¸ë¥¼ë¦„릅릇릉릊ë¦ë¦Žë¦¬ë¦ë¦°ë¦´ë¦¼ë¦½ë¦¿ë§ë§ˆë§‰ë§Œë§Ž\",4,\"맘맙맛ë§ë§žë§¡ë§£ë§¤ë§¥ë§¨ë§¬ë§´ë§µë§·ë§¸ë§¹ë§ºë¨€ë¨ë¨ˆë¨•머먹먼멀멂멈멉멋ë©ë©Žë©“메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼\"],[\"b941\",\"툪툫툮툯툱툲툳툵\",6,\"툾퉀퉂\",5,\"퉉퉊퉋퉌\"],[\"b961\",\"í‰\",14,\"í‰\",6,\"퉥퉦퉧퉨\"],[\"b981\",\"퉩\",22,\"튂튃튅튆튇튉튊튋튌묀묄ë¬ë¬ë¬‘ë¬˜ë¬œë¬ ë¬©ë¬«ë¬´ë¬µë¬¶ë¬¸ë¬»ë¬¼ë¬½ë¬¾ë„ë…ë‡ë‰ëëëë”ë˜ë¡ë£ë¬ë®ˆë®Œë®ë®¤ë®¨ë®¬ë®´ë®·ë¯€ë¯„믈ë¯ë¯“미믹민믿밀밂밈밉밋밌ë°ë°ë°‘ë°”\",4,\"ë°›\",4,\"밤밥밧방ë°ë°°ë°±ë°´ë°¸ë±€ë±ë±ƒë±„뱅뱉뱌ë±ë±ë±ë²„벅번벋벌벎범법벗\"],[\"ba41\",\"íŠíŠŽíŠíŠ’íŠ“íŠ”íŠ–\",5,\"íŠíŠžíŠŸíŠ¡íŠ¢íŠ£íŠ¥\",6,\"íŠ\"],[\"ba61\",\"튮튯튰튲\",5,\"튺튻튽튾í‹í‹ƒ\",4,\"틊틌\",5],[\"ba81\",\"틒틓틕틖틗틙틚틛í‹\",6,\"틦\",9,\"í‹²í‹³í‹µí‹¶í‹·í‹¹í‹ºë²™ë²šë² ë²¡ë²¤ë²§ë²¨ë²°ë²±ë²³ë²´ë²µë²¼ë²½ë³€ë³„ë³ë³ë³ë³‘볕볘볜보복볶본볼봄봅봇봉ë´ë´”봤봬뵀뵈뵉뵌ëµëµ˜ëµ™ëµ¤ëµ¨ë¶€ë¶ë¶„붇불붉붊ë¶ë¶‘붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브ë¸ë¸ë¸”븜ë¸ë¸Ÿë¹„ë¹…ë¹ˆë¹Œë¹Žë¹”ë¹•ë¹—ë¹™ë¹šë¹›ë¹ ë¹¡ë¹¤\"],[\"bb41\",\"í‹»\",4,\"팂팄팆\",5,\"íŒíŒ‘팒팓팕팗\",4,\"팞팢팣\"],[\"bb61\",\"팤팦팧팪팫íŒíŒ®íŒ¯íŒ±\",6,\"팺팾\",5,\"í†í‡íˆí‰\"],[\"bb81\",\"íŠ\",31,\"빨빪빰빱빳빴빵빻빼빽뺀뺄뺌ëºëºëºëº‘뺘뺙뺨ë»ë»‘ë»”ë»—ë»˜ë» ë»£ë»¤ë»¥ë»¬ë¼ë¼ˆë¼‰ë¼˜ë¼™ë¼›ë¼œë¼ë½€ë½ë½„뽈ë½ë½‘뽕뾔뾰뿅뿌ë¿ë¿ë¿”뿜뿟뿡쀼ì‘ì˜ìœì ì¨ì©ì‚ì‚‘ì‚”ì‚˜ì‚ ì‚¡ì‚£ì‚¥ì‚¬ì‚삯산삳살삵삶삼삽삿샀ìƒìƒ…새색샌ìƒìƒ˜ìƒ™ìƒ›ìƒœìƒìƒ¤\"],[\"bc41\",\"íª\",17,\"í¾í¿íŽíŽ‚íŽƒíŽ…íŽ†íŽ‡\"],[\"bc61\",\"펈펉펊펋펎펒\",5,\"펚펛íŽíŽžíŽŸíŽ¡\",6,\"펪펬펮\"],[\"bc81\",\"펯\",4,\"펵펶펷펹펺펻펽\",6,\"í†í‡íŠ\",5,\"í‘\",5,\"샥샨샬샴샵샷샹섀섄섈ì„섕서\",4,\"섣설섦섧섬ì„섯섰성섶세섹센셀셈셉셋셌ì…셔셕션셜셤셥셧셨셩셰셴셸솅소ì†ì†Žì†ì†”솖솜ì†ì†Ÿì†¡ì†¥ì†¨ì†©ì†¬ì†°ì†½ì‡„ì‡ˆì‡Œì‡”ì‡—ì‡˜ì‡ ì‡¤ì‡¨ì‡°ì‡±ì‡³ì‡¼ì‡½ìˆ€ìˆ„ìˆŒìˆìˆìˆ‘ìˆ˜ìˆ™ìˆœìˆŸìˆ ìˆ¨ìˆ©ìˆ«ìˆ\"],[\"bd41\",\"í—í™\",7,\"í¢í¤\",7,\"í®í¯í±í²í³íµí¶í·\"],[\"bd61\",\"í¸í¹íºí»í¾í€í‚\",5,\"í‰\",13],[\"bd81\",\"í—\",5,\"íž\",25,\"숯숱숲숴쉈ì‰ì‰‘ì‰”ì‰˜ì‰ ì‰¥ì‰¬ì‰ì‰°ì‰´ì‰¼ì‰½ì‰¿ìŠìŠˆìŠ‰ìŠìŠ˜ìŠ›ìŠìŠ¤ìŠ¥ìŠ¨ìŠ¬ìŠìŠ´ìŠµìŠ·ìŠ¹ì‹œì‹ì‹ 싣실싫심ì‹ì‹¯ì‹±ì‹¶ì‹¸ì‹¹ì‹»ì‹¼ìŒ€ìŒˆìŒ‰ìŒŒìŒìŒ“쌔쌕쌘쌜쌤쌥쌨쌩ì…ì¨ì©ì¬ì°ì²ì¸ì¹ì¼ì½ìŽ„ìŽˆìŽŒì€ì˜ì™ìœìŸì ì¢ì¨ì©ìì´ìµì¸ìˆìì¤ì¬ì°\"],[\"be41\",\"í¸\",7,\"í‘푂푃푅\",14],[\"be61\",\"í‘”\",7,\"í‘푞푟푡푢푣푥\",7,\"푮푰푱푲\"],[\"be81\",\"푳\",4,\"푺푻푽푾í’í’ƒ\",4,\"풊풌풎\",5,\"í’•\",8,\"ì´ì¼ì½ì‘ˆì‘¤ì‘¥ì‘¨ì‘¬ì‘´ì‘µì‘¹ì’€ì’”쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀ì”씌ì”씔씜씨씩씬씰씸씹씻씽아악안앉않알ì•앎앓암압앗았앙ì•ì•žì• ì•¡ì•¤ì•¨ì•°ì•±ì•³ì•´ì•µì•¼ì•½ì–€ì–„ì–‡ì–Œì–ì–ì–‘ì–•ì–—ì–˜ì–œì– ì–©ì–´ì–µì–¸ì–¹ì–»ì–¼ì–½ì–¾ì—„\",6,\"엌엎\"],[\"bf41\",\"í’ž\",10,\"í’ª\",14],[\"bf61\",\"í’¹\",18,\"í“퓎í“í“‘í“’í““í“•\"],[\"bf81\",\"í“–\",5,\"í“í“ží“ \",7,\"퓩퓪퓫í“퓮퓯퓱\",6,\"퓹퓺퓼ì—ì—‘ì—”ì—˜ì— ì—¡ì—£ì—¥ì—¬ì—엮연열엶엷염\",5,\"옅옆옇예옌ì˜ì˜˜ì˜™ì˜›ì˜œì˜¤ì˜¥ì˜¨ì˜¬ì˜ì˜®ì˜°ì˜³ì˜´ì˜µì˜·ì˜¹ì˜»ì™€ì™ì™„왈ì™ì™‘왓왔왕왜ì™ì™ 왬왯왱외왹왼욀욈욉욋ìšìš”욕욘욜욤욥욧용우욱운울욹욺움ì›ì›ƒì›…워ì›ì›ì›”웜ì›ì› 웡웨\"],[\"c041\",\"퓾\",5,\"픅픆픇픉픊픋í”\",6,\"픖픘\",5],[\"c061\",\"픞\",25],[\"c081\",\"픸픹픺픻픾픿í•핂핃핅\",6,\"핎í•í•’\",5,\"핚핛í•í•ží•Ÿí•¡í•¢í•£ì›©ì›¬ì›°ì›¸ì›¹ì›½ìœ„ìœ…ìœˆìœŒìœ”ìœ•ìœ—ìœ™ìœ ìœ¡ìœ¤ìœ¨ìœ°ìœ±ìœ³ìœµìœ·ìœ¼ìœ½ì€ì„ìŠìŒììì‘\",7,\"ìœì ì¨ì«ì´ìµì¸ì¼ì½ì¾ìžƒìž„입잇있잉잊잎ìžìž‘ìž”ìž–ìž—ìž˜ìžšìž ìž¡ìž£ìž¤ìž¥ìž¦ìž¬ìžìž°ìž´ìž¼ìž½ìž¿ìŸ€ìŸìŸˆìŸ‰ìŸŒìŸŽìŸìŸ˜ìŸìŸ¤ìŸ¨ìŸ¬ì €ì ì „ì ˆì Š\"],[\"c141\",\"핤핦핧핪핬핮\",5,\"핶핷핹핺핻핽\",6,\"햆햊햋\"],[\"c161\",\"í–Œí–í–Ží–í–‘\",19,\"햦햧\"],[\"c181\",\"í–¨\",31,\"ì ì ‘ì “ì •ì –ì œì ì ì ¤ì ¬ì ì ¯ì ±ì ¸ì ¼ì¡€ì¡ˆì¡‰ì¡Œì¡ì¡”조족존졸졺좀ì¢ì¢ƒì¢…좆좇좋좌ì¢ì¢”ì¢ì¢Ÿì¢¡ì¢¨ì¢¼ì¢½ì£„ì£ˆì£Œì£”ì£•ì£—ì£™ì£ ì£¡ì£¤ì£µì£¼ì£½ì¤€ì¤„ì¤…ì¤†ì¤Œì¤ì¤ì¤‘줘줬줴ì¥ì¥‘ì¥”ì¥˜ì¥ ì¥¡ì¥£ì¥¬ì¥°ì¥´ì¥¼ì¦ˆì¦‰ì¦Œì¦ì¦˜ì¦™ì¦›ì¦ì§€ì§ì§„짇질짊ì§ì§‘ì§“\"],[\"c241\",\"í—Ší—‹í—í—Ží—í—‘í—“\",4,\"헚헜헞\",5,\"헦헧헩헪헫í—í—®\"],[\"c261\",\"í—¯\",4,\"헶헸헺\",5,\"혂혃혅혆혇혉\",6,\"혒\"],[\"c281\",\"혖\",5,\"í˜í˜ží˜Ÿí˜¡í˜¢í˜£í˜¥\",7,\"혮\",9,\"혺혻징짖짙짚짜ì§ì§ 짢짤짧짬ì§ì§¯ì§°ì§±ì§¸ì§¹ì§¼ì¨€ì¨ˆì¨‰ì¨‹ì¨Œì¨ì¨”쨘쨩쩌ì©ì©ì©”쩜ì©ì©Ÿì© 쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌ì«ì«ì«‘ì«“ì«˜ì«™ì« ì«¬ì«´ì¬ˆì¬ì¬”ì¬˜ì¬ ì¬¡ììˆì‰ìŒìì˜ì™ìì¤ì¸ì¹ì®œì®¸ì¯”쯤쯧쯩찌ì°ì°ì°”ì°œì°ì°¡ì°¢ì°§ì°¨ì°©ì°¬ì°®ì°°ì°¸ì°¹ì°»\"],[\"c341\",\"혽혾혿í™í™‚홃홄홆홇홊홌홎í™í™í™’홓홖홗홙홚홛í™\",4],[\"c361\",\"홢\",4,\"홨홪\",5,\"홲홳홵\",11],[\"c381\",\"íšíš‚횄횆\",5,\"횎íšíš‘횒횓횕\",7,\"íšžíš íš¢\",5,\"íš©íšªì°¼ì°½ì°¾ì±„ì±…ì±ˆì±Œì±”ì±•ì±—ì±˜ì±™ì± ì±¤ì±¦ì±¨ì±°ì±µì²˜ì²™ì²œì² ì²¨ì²©ì²«ì²¬ì²ì²´ì²µì²¸ì²¼ì³„쳅쳇쳉ì³ì³”쳤쳬쳰ì´ì´ˆì´‰ì´Œì´ì´˜ì´™ì´›ì´ì´¤ì´¨ì´¬ì´¹ìµœìµ 쵤쵬ìµìµ¯ìµ±ìµ¸ì¶ˆì¶”축춘출춤춥춧충춰췄췌ì·ì·¨ì·¬ì·°ì·¸ì·¹ì·»ì·½ì¸„ì¸ˆì¸Œì¸”ì¸™ì¸ ì¸¡ì¸¤ì¸¨ì¸°ì¸±ì¸³ì¸µ\"],[\"c441\",\"íš«íšíš®íš¯íš±\",7,\"횺횼\",7,\"훆훇훉훊훋\"],[\"c461\",\"í›í›Ží›í›í›’훓훕훖훘훚\",5,\"훡훢훣훥훦훧훩\",4],[\"c481\",\"훮훯훱훲훳훴훶\",5,\"훾훿íœíœ‚휃휅\",11,\"íœ’íœ“íœ”ì¹˜ì¹™ì¹œì¹Ÿì¹ ì¹¡ì¹¨ì¹©ì¹«ì¹ì¹´ì¹µì¹¸ì¹¼ìº„캅캇캉ìºìº‘ìº”ìº˜ìº ìº¡ìº£ìº¤ìº¥ìº¬ìºì»ì»¤ì»¥ì»¨ì»«ì»¬ì»´ì»µì»·ì»¸ì»¹ì¼€ì¼ì¼„켈ì¼ì¼‘ì¼“ì¼•ì¼œì¼ ì¼¤ì¼¬ì¼ì¼¯ì¼°ì¼±ì¼¸ì½”ì½•ì½˜ì½œì½¤ì½¥ì½§ì½©ì½°ì½±ì½´ì½¸ì¾€ì¾…ì¾Œì¾¡ì¾¨ì¾°ì¿„ì¿ ì¿¡ì¿¤ì¿¨ì¿°ì¿±ì¿³ì¿µì¿¼í€€í€„í€‘í€˜í€í€´í€µí€¸í€¼\"],[\"c541\",\"휕휖휗휚휛íœíœžíœŸíœ¡\",6,\"휪휬휮\",5,\"휶휷휹\"],[\"c561\",\"휺휻휽\",6,\"í…í†íˆíŠ\",5,\"í’í“í•íš\",4],[\"c581\",\"íŸí¢í¤í¦í§í¨íªí«íí®í¯í±í²í³íµ\",6,\"í¾í¿íž€íž‚\",5,\"힊힋í„í…í‡í‰íí”í˜í í¬íí°í´í¼í½í‚키킥킨킬킴킵킷킹타íƒíƒ„탈탉íƒíƒ‘탓탔탕태íƒíƒ 탤탬íƒíƒ¯íƒ°íƒ±íƒ¸í„터턱턴털턺텀í…텃텄텅테í…í…텔템í…í…Ÿí…¡í…¨í…¬í…¼í†„í†ˆí† í†¡í†¤í†¨í†°í†±í†³í†µí†ºí†¼í‡€í‡˜í‡´í‡¸íˆ‡íˆ‰íˆíˆ¬íˆíˆ°íˆ´íˆ¼íˆ½íˆ¿í‰í‰ˆí‰œ\"],[\"c641\",\"ížížŽížíž‘\",6,\"힚힜힞\",5],[\"c6a1\",\"퉤튀íŠíŠ„íŠˆíŠíŠ‘íŠ•íŠœíŠ íŠ¤íŠ¬íŠ±íŠ¸íŠ¹íŠ¼íŠ¿í‹€í‹‚í‹ˆí‹‰í‹‹í‹”í‹˜í‹œí‹¤í‹¥í‹°í‹±í‹´í‹¸íŒ€íŒíŒƒíŒ…파íŒíŒŽíŒíŒ”팖팜íŒíŒŸíŒ 팡팥패팩팬팰팸팹팻팼팽í„í…í¼í½íŽ€íŽ„íŽŒíŽíŽíŽíŽ‘íŽ˜íŽ™íŽœíŽ íŽ¨íŽ©íŽ«íŽíŽ´íŽ¸íŽ¼í„í…íˆí‰íí˜í¡í£í¬íí°í´í¼í½í¿í\"],[\"c7a1\",\"íˆíí‘€í‘„í‘œí‘ í‘¤í‘푯푸푹푼푿풀풂품풉풋í’풔풩퓌í“퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌í•í•í•‘í•˜í•™í•œí• í•¥í•¨í•©í•«í•해핵핸핼햄햅햇했행í–향허헉헌í—헒험헙헛í—헤헥헨헬헴헵헷헹혀í˜í˜„혈í˜í˜‘í˜“í˜”í˜•í˜œí˜ \"],[\"c8a1\",\"혤í˜í˜¸í˜¹í˜¼í™€í™…홈홉홋í™í™‘화확환활홧황홰홱홴횃횅회íšíšíš”íšíšŸíš¡íš¨íš¬íš°íš¹íš»í›„í›…í›ˆí›Œí›‘í›”í›—í›™í› í›¤í›¨í›°í›µí›¼í›½íœ€íœ„íœ‘íœ˜íœ™íœœíœ íœ¨íœ©íœ«íœíœ´íœµíœ¸íœ¼í„í‡í‰íí‘í”í–í—í˜í™í í¡í£í¥í©í¬í°í´í¼í½ížížˆíž‰ížŒížíž˜íž™íž›íž\"],[\"caa1\",\"伽佳å‡åƒ¹åŠ å¯å‘µå“¥å˜‰å«å®¶æš‡æž¶æž·æŸ¯æŒç‚痂稼苛茄街袈訶賈è·è»»è¿¦é§•刻å´å„æªæ…¤æ®¼çè„šè¦ºè§’é–£ä¾ƒåˆŠå¢¾å¥¸å§¦å¹²å¹¹æ‡‡æ€æ†æŸ¬æ¡¿æ¾—癎看磵稈竿簡è‚è‰®è‰±è««é–“ä¹«å–æ›·æ¸´ç¢£ç«è‘›è¤èŽéž¨å‹˜åŽå ªåµŒæ„Ÿæ†¾æˆ¡æ•¢æŸ‘橄減甘疳監瞰紺邯鑑鑒龕\"],[\"cba1\",\"åŒ£å²¬ç”²èƒ›é‰€é–˜å‰›å ˆå§œå²¡å´—åº·å¼ºå½Šæ…·æ±Ÿç•ºç–†ç³ çµ³ç¶±ç¾Œè…”èˆ¡è–‘è¥è¬›é‹¼é™é±‡ä»‹ä»·å€‹å‡±å¡æ„·æ„¾æ…¨æ”¹æ§ªæ¼‘疥皆盖箇芥蓋豈鎧開喀客å‘ï¤ç²³ç¾¹é†µå€¨åŽ»å±…å·¨æ‹’æ®æ“šæ“§æ¸ ç‚¬ç¥›è·è¸žï¤‚é½é‰…鋸乾件å¥å·¾å»ºæ„†æ¥—腱虔蹇éµé¨«ä¹žå‚‘æ°æ¡€å„‰åŠåŠ’æª¢\"],[\"cca1\",\"çž¼éˆé»”åŠ«æ€¯è¿²åˆæ†©ææ“Šæ ¼æª„æ¿€è†ˆè¦¡éš”å …ç‰½çŠ¬ç”„çµ¹ç¹è‚©è¦‹è´é£éµ‘抉決潔çµç¼ºè¨£å…¼æ…Šç®è¬™é‰—鎌京俓倞傾儆å‹å‹å¿å°å¢ƒåºšå¾‘慶憬擎敬景暻更梗涇炅烱璟璥瓊痙硬磬竟競絅經耕耿脛莖è¦è¼•逕é¡é ƒé ¸é©šé¯¨ä¿‚å•“å ºå¥‘å£å±†æ‚¸æˆ’桂械\"],[\"cda1\",\"棨溪界癸磎稽系繫繼計誡谿階鷄å¤å©å‘Šå‘±å›ºå§‘å¤å°»åº«æ‹·æ”·æ•…æ•²æš æž¯æ§æ²½ç—¼çšç¾ç¨¿ç¾”考股è†è‹¦è‹½è°è—è ±è¢´èª¥ï¤ƒè¾œéŒ®é›‡é¡§é«˜é¼“å“æ–›æ›²æ¢ç©€è°·éµ å›°å¤å´‘æ˜†æ¢±æ£æ»¾ç¨è¢žé¯¤æ±¨ï¤„骨供公共功å”å·¥æææ‹±æŽ§æ”»ç™ç©ºèš£è²¢éžä¸²å¯¡æˆˆæžœç“œ\"],[\"cea1\",\"ç§‘è“誇課跨éŽé‹é¡†å»“槨藿éƒï¤…å† å®˜å¯¬æ…£æ£ºæ¬¾çŒç¯ç“˜ç®¡ç½è…è§€è²«é—œé¤¨åˆ®ææ‹¬é€‚ä¾Šå…‰åŒ¡å£™å»£æ› æ´¸ç‚šç‹‚ç–çèƒ±é‘›å¦æŽ›ç½«ä¹–å‚€å¡Šå£žæ€ªæ„§æ‹æ§éå®ç´˜è‚±è½Ÿäº¤åƒ‘å’¬å–¬å¬Œå¶ å·§æ”ªæ•Žæ ¡æ©‹ç‹¡çšŽçŸ¯çµžç¿¹è† è•Žè›Ÿè¼ƒè½ŽéƒŠé¤ƒé©•é®«ä¸˜ä¹…ä¹ä»‡ä¿±å…·å‹¾\"],[\"cfa1\",\"å€å£å¥å’Žå˜”åµåž¢å¯‡å¶‡å»æ‡¼æ‹˜æ•‘æž¸æŸ©æ§‹ææ¯†æ¯¬æ±‚æºç¸ç‹—玖çƒçž¿çŸ©ç©¶çµ¿è€‰è‡¼èˆ…舊苟衢謳購軀逑邱鉤銶駒驅鳩鷗龜國局èŠéž 鞫麴å›çª˜ç¾¤è£™è»éƒ¡å €å±ˆæŽ˜çªŸå®®å¼“穹窮芎躬倦券勸å·åœˆæ‹³æ²æ¬Šæ·ƒçœ·åŽ¥ç—蕨蹶闕机櫃潰è©è»Œé¥‹ï¤†æ™·æ¸è²´\"],[\"d0a1\",\"鬼龜å«åœå¥Žæ†æ§»çªç¡…窺竅糾葵è¦èµ³é€µé–¨å‹»å‡ç•‡ç èŒéˆžï¤ˆæ©˜å…‹å‰‹åŠ‡æˆŸæ£˜æ¥µéš™åƒ…åŠ¤å‹¤æ‡ƒæ–¤æ ¹æ§¿ç‘¾ç‹èйè«è¦²è¬¹è¿‘饉契今妗擒昑檎ç´ç¦ç¦½èŠ©è¡¾è¡¿è¥Ÿï¤ŠéŒ¦ä¼‹åŠæ€¥æ‰±æ±²ç´šçµ¦äº˜å…¢çŸœè‚¯ä¼ä¼Žå…¶å†€å—œå™¨åœ»åŸºåŸ¼å¤”奇妓寄å²å´Žå·±å¹¾å¿ŒæŠ€æ——æ—£\"],[\"d1a1\",\"æœžæœŸæžæ£‹æ£„機欺氣汽沂淇玘ç¦çªç’‚璣畸畿ç¢ç£¯ç¥ç¥‡ç¥ˆç¥ºç®•紀綺羈耆è€è‚Œè¨˜è豈起錡錤飢饑騎é¨é©¥éº’ç·Šä½¶å‰æ‹®æ¡”é‡‘å–«å„ºï¤‹ï¤Œå¨œæ‡¦ï¤æ‹æ‹¿ï¤Ž\",5,\"那樂\",4,\"諾酪駱亂卵暖ï¤ç…–ï¤žï¤Ÿé›£ï¤ ææºå—ï¤¡æžæ¥ 湳濫男藍襤拉\"],[\"d2a1\",\"ç´ï¤¦ï¤§è¡²å›Šå¨˜ï¤¨\",4,\"乃ï¤å…§å¥ˆæŸ°è€ï¤®å¥³å¹´æ’šç§Šå¿µæ¬æ‹ˆæ»å¯§å¯—努勞奴弩怒擄櫓爐瑙盧\",5,\"駑魯\",10,\"濃籠聾膿農惱牢磊腦賂雷尿壘\",7,\"嫩訥æ»ç´ï¥’\",5,\"能菱陵尼泥匿溺多茶\"],[\"d3a1\",\"丹亶但單團壇彖斷旦檀段æ¹çŸç«¯ç°žç·žè›‹è¢’鄲雿’»æ¾¾çºç–¸é”啖忆ºæ“”æ›‡æ·¡æ¹›æ½æ¾¹ç—°èƒè†½è•覃談èšéŒŸæ²“ç•“ç”è¸éå”å ‚å¡˜å¹¢æˆ‡æ’žæ£ ç•¶ç³–èž³é»¨ä»£åžˆå®å¤§å°å²±å¸¶å¾…æˆ´æ“¡çŽ³è‡ºè¢‹è²¸éšŠé»›å®…å¾·æ‚³å€’åˆ€åˆ°åœ–å µå¡—å°Žå± å³¶å¶‹åº¦å¾’æ‚¼æŒ‘æŽ‰æ—æ¡ƒ\"],[\"d4a1\",\"棹櫂淘渡滔濤燾盜ç¹ç¦±ç¨»è„覩è³è·³è¹ˆé€ƒé€”é“都é陶韜毒瀆牘犢ç¨ç£ç¦¿ç¯¤çº›è®€å¢©æƒ‡æ•¦æ—½æš¾æ²Œç„žç‡‰è±šé “ä¹çªä»å†¬å‡å‹•åŒæ†§æ±æ¡æ£Ÿæ´žæ½¼ç–¼çž³ç«¥èƒ´è‘£éŠ…å…œæ–—æœæž“痘竇è³ï¥šè±†é€—é 屯臀芚éé¯éˆå¾—å¶æ©™ç‡ˆç™»ç‰è—¤è¬„鄧騰喇懶拏癩羅\"],[\"d5a1\",\"蘿螺裸é‚樂洛烙çžçµ¡è½ï¥é…ªé§±ï¥žäº‚嵿¬„欒瀾爛è˜é¸žå‰Œè¾£åµæ“¥æ”¬æ¬–濫籃纜è—è¥¤è¦½æ‹‰è‡˜è Ÿå»Šæœ—æµªç‹¼ç…瑯螂郞來å´å¾ èŠå†·æŽ ç•¥äº®å€†å…©å‡‰æ¢æ¨‘粮粱糧良諒輛é‡ä¾¶å„·å‹µå‘‚å»¬æ…®æˆ¾æ—…æ«šæ¿¾ç¤ªè—œè £é–驢驪麗黎力曆æ·ç€ç¤«è½¢é‚æ†æˆ€æ”£æ¼£\"],[\"d6a1\",\"煉璉練è¯è“®è¼¦é€£éŠå†½åˆ—劣洌烈裂廉斂殮濂簾çµä»¤ä¼¶å›¹ï¥Ÿå²ºå¶ºæ€œç޲ç¬ç¾šç¿Žè†é€žéˆ´é›¶éˆé ˜é½¡ä¾‹æ¾§ç¦®é†´éš·å‹žï¥ 撈擄櫓潞瀘çˆç›§è€è˜†è™œè·¯è¼…露é¯é·ºé¹µç¢Œç¥¿ç¶ è‰éŒ„鹿麓論壟弄朧瀧ç“ç± è¾å„¡ç€¨ç‰¢ç£Šè³‚賚賴雷了僚寮廖料燎療çžèŠè“¼\"],[\"d7a1\",\"é¼é¬§é¾å£˜å©å±¢æ¨“æ·šæ¼ç˜»ç´¯ç¸·è”žè¤¸é¤é™‹åŠ‰æ—’æŸ³æ¦´æµæºœç€ç‰ç‘ ç•™ç˜¤ç¡«è¬¬é¡žå…æˆ®é™¸ä¾–å€«å´™æ·ªç¶¸è¼ªå¾‹æ…„æ —ï¥¡éš†å‹’è‚‹å‡œå‡Œæ¥žç¨œç¶¾è±é™µä¿šåˆ©åŽ˜åå”Žå±¥æ‚§æŽæ¢¨æµ¬çŠç‹¸ç†ç’ƒï¥¢ç—¢ç±¬ç½¹ç¾¸èމè£è£¡é‡Œé‡é›¢é¯‰åæ½¾ç‡ç’˜è—ºèºªéš£é±—麟林淋ç³è‡¨éœ–ç ¬\"],[\"d8a1\",\"ç«‹ç¬ ç²’æ‘©ç‘ªç—²ç¢¼ç£¨é¦¬é”éº»å¯žå¹•æ¼ è†œèŽ«é‚ˆä¸‡å娩巒彎慢挽晩曼滿漫ç£çžžè¬è”“è »è¼“é¥…é°»å”œæŠ¹æœ«æ²«èŒ‰è¥ªéºäº¡å¦„å¿˜å¿™æœ›ç¶²ç½”èŠ’èŒ«èŽ½è¼žé‚™åŸ‹å¦¹åª’å¯æ˜§æžšæ¢…æ¯ç…¤ç½µè²·è³£é‚é…è„ˆè²Šé™Œé©€éº¥åŸæ°“猛盲盟èŒå†ªè¦“å…å†•å‹‰æ£‰æ²”çœ„çœ ç¶¿ç·¬é¢éºµæ»…\"],[\"d9a1\",\"蔑冥åå‘½æ˜Žæšæ¤§æºŸçš¿çž‘èŒ—è“‚èžŸé…©éŠ˜é³´è¢‚ä¾®å†’å‹Ÿå§†å¸½æ…•æ‘¸æ‘¹æš®æŸæ¨¡æ¯æ¯›ç‰Ÿç‰¡ç‘眸矛耗芼茅謀謨貌木æ²ç‰§ç›®ç¦ç©†é¶©æ¿æ²’夢朦蒙å¯å¢“å¦™å»Ÿææ˜´æ³æ¸ºçŒ«ç«—è‹—éŒ¨å‹™å·«æ†®æ‡‹æˆŠæ‹‡æ’«æ— æ¥™æ¦æ¯‹ç„¡ç·ç•繆舞茂蕪誣貿霧鵡墨默們刎å»å•æ–‡\"],[\"daa1\",\"æ±¶ç´Šç´‹èžèšŠé–€é›¯å‹¿æ²•物味媚尾嵋彌微未梶楣渼湄眉米美薇謎迷é¡é»´å²·æ‚¶æ„æ†«æ•æ—»æ—¼æ°‘泯玟ç‰ç·¡é–”密蜜è¬å‰åšæ‹ææ’²æœ´æ¨¸æ³Šç€ç’žç®”粕縛膊舶薄迫雹é§ä¼´åŠå囿‹Œæ¬æ”€æ–‘槃泮潘ç畔瘢盤盼ç£ç£»ç¤¬çµ†èˆ¬èŸ è¿”é ’é£¯å‹ƒæ‹”æ’¥æ¸¤æ½‘\"],[\"dba1\",\"發跋醱鉢髮éƒå€£å‚åŠå¦¨å°¨å¹‡å½·æˆ¿æ”¾æ–¹æ—昉枋榜滂磅紡肪膀舫芳蒡蚌訪謗邦防é¾å€ä¿³ï¥£åŸ¹å¾˜æ‹œæŽ’æ¯æ¹ƒç„™ç›ƒèƒŒèƒšè£´è£µè¤™è³ 輩é…é™ªä¼¯ä½°å¸›æŸæ ¢ç™½ç™¾é„幡樊煩燔番磻ç¹è•ƒè—©é£œä¼ç罰閥凡帆梵氾汎泛犯範范法çºåƒ»åŠˆå£æ“˜æª—ç’§ç™–\"],[\"dca1\",\"碧蘗闢霹便åžå¼è®Šè¾¨è¾¯é‚Šåˆ¥çž¥é±‰é¼ˆä¸™å€‚兵屛幷昞昺柄棅炳ç”病秉ç«è¼§é¤ 騈ä¿å ¡å ±å¯¶æ™®æ¥æ´‘湺潽ç¤ç”«è©è£œè¤“èœè¼”ä¼åƒ•åŒåœå®“復æœç¦è…¹èŒ¯è””複覆輹輻馥鰒本乶俸奉å°å³¯å³°æ§æ£’烽熢ç«ç¸«è“¬èœ‚逢鋒鳳ä¸ä»˜ä¿¯å‚…剖副å¦å’åŸ å¤«å©¦\"],[\"dda1\",\"åšåµå¯Œåºœï¥¦æ‰¶æ•·æ–§æµ®æº¥çˆ¶ç¬¦ç°¿ç¼¶è…è…‘è†šè‰€èŠ™èŽ©è¨ƒè² è³¦è³»èµ´è¶ºéƒ¨é‡œé˜œé™„é§™é³§åŒ—åˆ†å©å™´å¢³å¥”å¥®å¿¿æ†¤æ‰®æ˜æ±¾ç„šç›†ç²‰ç³žç´›èЬè³é›°ï¥§ä½›å¼—彿拂崩朋棚硼繃鵬丕備匕匪å‘å¦ƒå©¢åº‡æ‚²æ†Šæ‰‰æ‰¹æ–æž‡æ¦§æ¯”毖毗毘沸泌çµç—ºç ’碑秕秘粃緋翡肥\"],[\"dea1\",\"脾臂è²èœšè£¨èª¹è¬è²»é„™éžé£›é¼»åš¬å¬ªå½¬æ–Œæª³æ®¯æµœæ¿±ç€•ç‰çŽè²§è³“é »æ†‘æ°·è˜é¨ä¹äº‹äº›ä»•伺似使俟僿å²å¸å”†å—£å››å£«å¥¢å¨‘å¯«å¯ºå°„å·³å¸«å¾™æ€æ¨æ–œæ–¯æŸ¶æŸ»æ¢æ»æ²™æ³—渣瀉ç…ç ‚ç¤¾ç¥€ç¥ ç§ç¯©ç´—絲肆èˆèŽŽè“‘è›‡è£Ÿè©è©žè¬è³œèµ¦è¾é‚ªé£¼é§Ÿéºå‰Šï¥©æœ”索\"],[\"dfa1\",\"傘刪山散汕çŠç”£ç–ç®—è’œé…¸éœ°ä¹·æ’’æ®ºç…žè–©ä¸‰ï¥«æ‰æ£®æ¸—èŠŸè”˜è¡«æ·æ¾éˆ’颯上傷åƒå„Ÿå•†å–ªå˜—å€å°™å³ å¸¸åºŠåº å»‚æƒ³æ¡‘æ©¡æ¹˜çˆ½ç‰€ç‹€ç›¸ç¥¥ç®±ç¿”è£³è§´è©³è±¡è³žéœœå¡žç’½è³½å—‡ï¥¬ç©¡ç´¢è‰²ç‰²ç”Ÿç”¥ï¥ç¬™å¢…壻嶼åºåº¶å¾æ•æŠ’æ¿æ•æš‘æ›™æ›¸æ –æ£²çŠ€ç‘žç®çµ®ç·–ç½²\"],[\"e0a1\",\"胥舒薯西誓é€é‹¤é»é¼ 夕å¥å¸æƒœæ˜”æ™³æžæ±æ·…潟石碩蓆釋錫仙僊先善嬋宣扇敾旋渲煽ç瑄璇璿癬禪線繕羨腺膳船蘚蟬詵跣é¸éŠ‘é¥é¥é®®å¨å±‘楔泄洩渫舌薛褻è¨èªªé›ªé½§å‰¡æš¹æ®²çº–蟾è´é–ƒé™æ”æ¶‰ç‡®ï¥®åŸŽå§“å®¬æ€§æƒºæˆæ˜Ÿæ™ŸçŒ©ç¹ç››çœç¬\"],[\"e1a1\",\"è–è²è…¥èª é†’ä¸–å‹¢æ²æ´—稅笹細說貰å¬å˜¯å¡‘宵å°å°‘å·¢æ‰€æŽƒæ”æ˜æ¢³æ²¼æ¶ˆæº¯ç€Ÿç‚¤ç‡’甦ç–ç–Žç˜™ç¬‘ç¯ ç°«ç´ ç´¹è”¬è•蘇訴é€é¡é‚µéŠ·éŸ¶é¨·ä¿—å±¬æŸæ¶‘粟續謖贖速å«å·½æè“€éœé£¡çŽ‡å®‹æ‚šæ¾æ·žè¨Ÿèª¦é€é Œåˆ·ï¥°ç‘碎鎖衰釗修å—嗽囚垂壽嫂守岫峀帥æ„\"],[\"e2a1\",\"æˆæ‰‹æŽˆæœæ”¶æ•¸æ¨¹æ®Šæ°´æ´™æ¼±ç‡§ç‹©ç¸ç‡ç’²ç˜¦ç¡ç§€ç©—竪粹ç¶ç¶¬ç¹¡ç¾žè„©èŒ±è’蓚藪袖誰è®è¼¸é‚é‚ƒé…¬éŠ–éŠ¹éš‹éš§éš¨é›–éœ€é ˆé¦–é«“é¬šå”塾夙å°å®¿æ·‘潚熟ç¡ç’¹è‚…è½å·¡å¾‡å¾ªæ‚æ—¬æ ’æ¥¯æ©“æ®‰æ´µæ·³ç£ç›¾çž¬ç純脣舜è€è“´è•£è©¢è«„é†‡éŒžé †é¦´æˆŒè¡“è¿°é‰¥å´‡å´§\"],[\"e3a1\",\"嵩瑟è†è¨æ¿•拾習褶襲丞乘僧å‹å‡æ‰¿æ˜‡ç¹©è …陞ä¾åŒ™å˜¶å§‹åª¤å°¸å±Žå±å¸‚å¼‘æƒæ–½æ˜¯æ™‚枾柴猜矢示翅蒔è“è¦–è©¦è©©è«¡è±•è±ºåŸ´å¯”å¼æ¯æ‹æ¤æ®–湜熄篒è•è˜è»¾é£Ÿé£¾ä¼¸ä¾ä¿¡å‘»å¨ 宸愼新晨燼申神紳腎臣莘薪藎蜃訊身辛辰迅失室實悉審尋心æ²\"],[\"e4a1\",\"沈深瀋甚芯諶什å拾雙æ°äºžä¿„兒啞娥峨我牙芽莪蛾衙è¨é˜¿é›…餓鴉éµå Šå²³å¶½å¹„æƒ¡æ„•æ¡æ¨‚渥鄂é”顎é°é½·å®‰å²¸æŒ‰æ™æ¡ˆçœ¼é›éžé¡”鮟斡è¬è»‹é–¼å”µå²©å·–庵暗癌è´é—‡å£“æŠ¼ç‹Žé´¨ä»°å¤®æ€æ˜»æ®ƒç§§é´¦åŽ“å“€åŸƒå´–æ„›æ›–æ¶¯ç¢è‰¾éš˜é„厄扼掖液縊腋é¡\"],[\"e5a1\",\"æ«»ç½Œé¶¯é¸šä¹Ÿå€»å†¶å¤œæƒ¹æ¶æ¤°çˆºè€¶ï¥´é‡Žå¼±ï¥µï¥¶ç´„若葯蒻藥èºï¥·ä½¯ï¥¸ï¥¹å£¤åƒæ™æšæ”˜æ•暘梁楊樣洋ç€ç…¬ç—’ç˜ç¦³ç©°ï¥»ç¾Šï¥¼è¥„諒讓釀陽量養圄御於æ¼ç˜€ç¦¦èªžé¦éšé½¬å„„憶抑æªè‡†åƒå °å½¦ç„‰è¨€è«ºå¼è˜–俺儼嚴奄掩淹嶪æ¥å††äºˆä½™ï¥¿ï¦€ï¦å¦‚廬\"],[\"e6a1\",\"ï¦ƒæŸæ±ï¦„璵礖礪與艅茹輿è½ï¦†é¤˜ï¦‡ï¦ˆï¦‰äº¦ï¦ŠåŸŸå½¹æ˜“曆歷疫繹è¯ï¦é€†é©›åš¥å §å§¸å¨Ÿå®´ï¦Žå»¶ï¦ï¦ææŒ»ï¦‘椽沇沿涎涓淵演漣烟然煙煉燃燕璉ç¡ç¡¯ï¦•çµç·£ï¦–縯聯è¡è»Ÿï¦˜ï¦™ï¦šé‰›ï¦›é³¶ï¦œï¦ï¦žæ‚…æ¶…ï¦Ÿç†±ï¦ ï¦¡é–±åŽï¦¢ï¦£ï¦¤æŸ“殮炎焰ç°è‰¶è‹’\"],[\"e7a1\",\"簾閻髥鹽曄獵ç‡è‘‰ï¦¨ï¦©å¡‹ï¦ªï¦«å¶¸å½±ï¦¬æ˜ æšŽæ¥¹æ¦®æ°¸æ³³æ¸¶æ½æ¿šç€›ç€¯ç…營ç°ï¦ç‘›ï¦®ç“”ç›ˆç©Žçº“ï¦¯ï¦°è‹±è© è¿Žï¦±éˆï¦²éœ™ï¦³ï¦´ä¹‚å€ªï¦µåˆˆå¡æ›³æ±æ¿ŠçŒŠç¿ç©¢èŠ®è—蘂禮裔詣è½è±«ï¦·éŠ³ï¦¸éœ“é 五ä¼ä¿‰å‚²åˆå¾å³å—šå¡¢å¢ºå¥§å¨›å¯¤æ‚Ÿï¦¹æ‡Šæ•–旿晤梧汚澳\"],[\"e8a1\",\"çƒç†¬ç’ç½èœˆèª¤é°²é¼‡å±‹æ²ƒç„玉鈺溫瑥瘟穩縕蘊兀壅æ“瓮甕癰ç¿é‚•é›é¥”渦瓦窩窪臥蛙è¸è¨›å©‰å®Œå®›æ¢¡æ¤€æµ£çŽ©ç“ç¬ç¢—ç·©ç¿«è„˜è…•èŽžè±Œé˜®é ‘æ›°å¾€æ—ºæž‰æ±ªçŽ‹å€å¨ƒæªçŸ®å¤–嵬å·çŒ¥ç•ï¦ºï¦»åƒ¥å‡¹å ¯å¤å¦–å§šå¯¥ï¦¼ï¦½å¶¢æ‹—æ–æ’“擾料曜樂橈燎燿瑤ï§\"],[\"e9a1\",\"窈窯繇繞耀腰蓼蟯è¦è¬ é™ï§ƒé‚€é¥’慾欲浴縟褥辱俑å‚冗勇埇墉容庸慂榕涌湧溶熔瑢用甬è³èŒ¸è“‰è¸ŠéŽ”éžï§„于佑å¶å„ªåˆå‹å³å®‡å¯“尤愚憂旴牛玗瑀盂ç¥ç¦‘禹紆羽芋藕虞迂é‡éƒµé‡ªéš…é›¨é›©å‹–å½§æ—æ˜±æ ¯ç…œç¨¶éƒé Šäº‘暈橒殞æ¾ç†‰è€˜èŠ¸è•“\"],[\"eaa1\",\"é‹éš•雲韻蔚鬱äºç†Šé›„å…ƒåŽŸå“¡åœ“åœ’åž£åª›å«„å¯ƒæ€¨æ„¿æ´æ²…洹湲æºçˆ°çŒ¿ç‘—è‹‘è¢è½…é 阮院願鴛月越鉞ä½å‰åƒžå±åœå§”å¨å°‰æ…°æšæ¸çˆ²ç‘‹ç·¯èƒƒèŽè‘¦è”¿èŸè¡›è¤˜è¬‚é•韋é乳侑儒兪劉唯喩åºå®¥å¹¼å¹½åº¾æ‚ æƒŸæ„ˆæ„‰æ„æ”¸æœ‰ï§ˆæŸ”柚柳楡楢油洧流游溜\"],[\"eba1\",\"濡猶猷琉瑜由ï§ç™’ï§Žï§ç¶è‡¾è¸è£•誘諛è«è¸°è¹‚éŠé€¾éºé…‰é‡‰é®ï§ï§‘å ‰ï§’æ¯“è‚‰è‚²ï§“ï§”å…奫尹崙淪潤玧胤贇輪鈗é–ï§˜ï§™ï§šï§›è¿æˆŽç€œçµ¨èžï§œåž æ©æ…‡æ®·èª¾éŠ€éš±ä¹™åŸæ·«è”é™°éŸ³é£®æ–æ³£é‚‘凿‡‰è†ºé·¹ä¾å€šå„€å®œæ„懿擬椅毅疑矣義艤è–蟻衣誼\"],[\"eca1\",\"è°é†«äºŒä»¥ä¼Šï§ï§žå¤·å§¨ï§Ÿå·²å¼›å½›æ€¡ï§ 李梨泥爾ç¥ï§¤ç•°ç—痢移罹而耳肄苡è‘裏裡貽貳邇里離飴餌匿溺瀷益翊翌翼謚人ä»åˆƒå°ï§å’½å› å§»å¯…å¼•å¿æ¹®ï§®ï§¯çµªèŒµï§°èš“èªï§±éé·ï§²ï§³ä¸€ä½šä½¾å£¹æ—¥æº¢é€¸éŽ°é¦¹ä»»å£¬å¦Šå§™æï§´ï§µç¨”ï§¶è賃入å„\"],[\"eda1\",\"立笠粒ä»å‰©å•芿仔刺咨姉姿åå—åœæ£æ…ˆæ»‹ç‚™ç…®çŽ†ç“·ç–µç£ç´«è€…自茨蔗藉諮資雌作勺嚼斫昨ç¼ç‚¸çˆµç¶½èŠé…Œé›€éµ²å±æ£§æ®˜æ½ºç›žå²‘æš«æ½›ç®´ç°ªè ¶é›œä¸ˆä»—åŒ å ´å¢»å£¯å¥¬å°‡å¸³åº„å¼µæŽŒæš²æ–æ¨Ÿæª£æ¬Œæ¼¿ç‰†ï§ºçç’‹ç« ç²§è…¸è‡Ÿè‡§èŽŠè‘¬è”£è–”è—è£è´“醬長\"],[\"eea1\",\"éšœå†å“‰åœ¨å®°æ‰ææ ½æ¢“渽滓ç½ç¸¡è£è²¡è¼‰é½‹é½Žçˆç®è«éŒšä½‡ä½Žå„²å’€å§åº•æŠµæµæ¥®æ¨—沮渚狙猪疽箸紵苧è¹è‘—藷詛貯躇這邸雎齟勣åŠå«¡å¯‚摘敵滴狄炙的ç©ç¬›ç±ç¸¾ç¿Ÿè»è¬«è³Šèµ¤è·¡è¹Ÿè¿ªè¿¹é©é‘佃佺傳全典å‰å‰ªå¡¡å¡¼å¥ å°ˆå±•å»›æ‚›æˆ°æ “æ®¿æ°ˆæ¾±\"],[\"efa1\",\"ç…Žç 田甸畑癲çŒç®‹ç®ç¯†çºè©®è¼¾è½‰éˆ¿éŠ“éŒ¢é«é›»é¡šé¡«é¤žåˆ‡æˆªæŠ˜æµ™ç™¤ç«Šç¯€çµ¶å 岾店漸点粘霑鮎點接摺è¶ä¸äº•äºåœåµå‘ˆå§ƒå®šå¹€åºå»·å¾æƒ…æŒºæ”¿æ•´æ—Œæ™¶æ™¸æŸ¾æ¥¨æª‰æ£æ±€æ·€æ·¨æ¸Ÿæ¹žç€žç‚¡çŽŽç½ç”ºç›ç¢‡ç¦Žç¨‹ç©½ç²¾ç¶Žè‰‡è¨‚諪貞é„é…Šé‡˜é‰¦é‹ŒéŒ éœ†é–\"],[\"f0a1\",\"éœé ‚é¼Žåˆ¶åŠ‘å•¼å ¤å¸å¼Ÿæ‚Œææ¢¯æ¿Ÿç¥ç¬¬è‡è–ºè£½è«¸è¹„é†é™¤éš›éœ½é¡Œé½Šä¿Žå…†å‡‹åŠ©å˜²å¼”å½«æŽªæ“æ—©æ™æ›ºæ›¹æœæ¢æ£—æ§½æ¼•æ½®ç…§ç‡¥çˆªç’ªçœºç¥–ç¥šç§Ÿç¨ çª•ç²—ç³Ÿçµ„ç¹°è‚‡è—»èš¤è©”èª¿è¶™èºé€ é釣阻雕鳥æ—簇足éƒå˜å°Šå’æ‹™çŒå€§å®—從悰慫棕淙ç®ç¨®çµ‚綜縱腫\"],[\"f1a1\",\"踪踵é¾é˜ä½å左座挫罪主ä½ä¾åšå§èƒ„呪周嗾å¥å®™å·žå»šæ™æœ±æŸ±æ ªæ³¨æ´²æ¹Šæ¾ç‚·ç 疇籌紂紬綢舟蛛註誅走躊輳週酎酒鑄é§ç«¹ç²¥ä¿Šå„å‡†åŸˆå¯¯å³»æ™™æ¨½æµšæº–æ¿¬ç„Œç•¯ç«£è ¢é€¡éµé›‹é§¿èŒä¸ä»²è¡†é‡å½æ«›æ¥«æ±è‘ºå¢žæ†Žæ›¾æ‹¯çƒç”‘症繒蒸è‰è´ˆä¹‹åª\"],[\"f2a1\",\"咫地å€å¿—æŒæŒ‡æ‘¯æ”¯æ—¨æ™ºæžæž³æ¢æ± æ²šæ¼¬çŸ¥ç ¥ç¥‰ç¥—ç´™è‚¢è„‚è‡³èŠèŠ·èœ˜èªŒï§¼è´„è¶¾é²ç›´ç¨™ç¨·ç¹”è·å”‡å—”å¡µæŒ¯æ¢æ™‰æ™‹æ¡æ¦›æ®„津溱ç瑨璡畛疹盡眞瞋秦縉ç¸è‡»è”¯è¢—診賑軫辰進éŽé™£é™³éœ‡ä¾„å±å§ªå«‰å¸™æ¡Žç“†ç–¾ç§©çª’膣è›è³ªè·Œè¿æ–Ÿæœ•什執潗ç·è¼¯\"],[\"f3a1\",\"é¶é›†å¾µæ‡²æ¾„且侘借å‰å—Ÿåµ¯å·®æ¬¡æ¤ç£‹ç®šï§¾è¹‰è»Šé®æ‰æ¾ç€çª„錯鑿齪撰澯燦璨瓚竄簒纂粲纘讚贊鑽é¤é¥Œåˆ¹å¯Ÿæ“¦æœç´®åƒåƒå¡¹æ…˜æ…™æ‡ºæ–¬ç«™è®’è®–å€‰å€¡å‰µå”±å¨¼å» å½°æ„´æ•žæ˜Œæ˜¶æš¢æ§æ»„漲猖瘡窓脹艙è–è’¼å‚µåŸ°å¯€å¯¨å½©æŽ¡ç ¦ç¶µèœè”¡é‡‡é‡µå†ŠæŸµç–\"],[\"f4a1\",\"è²¬å‡„å¦»æ‚½è™•å€œï§¿å‰”å°ºæ…½æˆšæ‹“æ“²æ–¥æ»Œç˜ è„Šè¹ é™Ÿéš»ä»Ÿåƒå–˜å¤©å·æ“…泉淺玔穿舛薦賤è¸é·é‡§é—¡é˜¡éŸ†å‡¸å“²å–†å¾¹æ’¤æ¾ˆç¶´è¼Ÿè½éµåƒ‰å°–æ²¾æ·»ç”›çž»ç°½ç±¤è©¹è«‚å žå¦¾å¸–æ·ç‰’ç–Šç«è«œè²¼è¼’廳晴淸è½èè«‹é‘é¯–ï¨€å‰ƒæ›¿æ¶•æ»¯ç· è«¦é€®éžé«”åˆå‰¿å“¨æ†”抄招梢\"],[\"f5a1\",\"椒楚樵炒焦ç¡ç¤ç¤Žç§’ç¨è‚–艸苕è‰è•‰è²‚超酢醋醮促囑ç‡çŸ—蜀觸寸忖æ‘邨å¢å¡šå¯µæ‚¤æ†æ‘ 總è°è”¥éŠƒæ’®å‚¬å´”æœ€å¢œæŠ½æŽ¨æ¤Žæ¥¸æ¨žæ¹«çšºç§‹èŠ»è©è«è¶¨è¿½é„’酋醜éŒéŒ˜éŽšé››é¨¶é°ä¸‘畜ç¥ç«ºç‘ç¯‰ç¸®è“„è¹™è¹´è»¸é€æ˜¥æ¤¿ç‘ƒå‡ºæœ®é»œå……å¿ æ²–èŸ²è¡è¡·æ‚´è†µèƒ\"],[\"f6a1\",\"è´…å–å¹å˜´å¨¶å°±ç‚Šç¿ èšè„†è‡è¶£é†‰é©Ÿé·²å´ä»„åŽ æƒ»æ¸¬å±¤ä¾ˆå€¤å—¤å³™å¹Ÿæ¥æ¢”治淄熾痔痴癡稚穉緇緻置致蚩輜雉馳齒則勅é£è¦ªä¸ƒæŸ’漆侵寢枕沈浸ç›ç §é‡é¼èŸ„秤稱快他咤唾墮妥惰打拖朶楕舵陀馱é§å€¬å“å•„å¼ï¨æ‰˜ï¨‚æ“¢æ™«æŸæ¿æ¿¯ç¢ç¸è¨—\"],[\"f7a1\",\"é¸å‘‘嘆å¦å½ˆæ†šæŽç˜ç‚ç¶»èª•å¥ªè„«æŽ¢çœˆè€½è²ªå¡”ææ¦»å®•帑湯糖蕩兌å°å¤ªæ€ 態殆汰泰笞胎苔跆邰颱宅擇澤撑攄兎å土討慟桶洞痛ç’çµ±é€šå †æ§Œè…¿è¤ªé€€é ¹å¸å¥—妬投é€é¬ªæ…特闖å¡å©†å·´æŠŠæ’æ“ºæ·æ³¢æ´¾çˆ¬ç¶ç ´ç½·èŠè·›é —åˆ¤å‚æ¿ç‰ˆç“£è²©è¾¦éˆ‘\"],[\"f8a1\",\"é˜ªå…«åæŒä½©å”„æ‚–æ•—æ²›æµ¿ç‰Œç‹½ç¨—è¦‡è²å½æ¾Žçƒ¹è†¨æ„Žä¾¿åæ‰ç‰‡ç¯‡ç·¨ç¿©ééžé¨™è²¶åªå¹³æž°èè©•å 嬖幣廢弊斃肺蔽閉陛佈包åŒåŒå’†å“ºåœƒå¸ƒæ€–抛抱æ•ï¨†æ³¡æµ¦ç–±ç ²èƒžè„¯è‹žè‘¡è’²è¢è¤’逋鋪飽鮑幅暴æ›ç€‘çˆ†ï¨‡ä¿µå‰½å½ªæ…“æ“æ¨™æ¼‚瓢票表豹飇飄驃\"],[\"f9a1\",\"å“稟楓諷豊風馮彼披疲皮被é¿é™‚匹弼必泌çŒç•¢ç–‹ç†è‹¾é¦ä¹é€¼ä¸‹ä½•厦å¤å»ˆæ˜°æ²³ç‘•è·è¦è³€é霞鰕壑å¸è™è¬”é¶´å¯’æ¨æ‚旱汗漢澣瀚罕翰閑閒é™éŸ“割轄函å«å’¸å•£å–Šæª»æ¶µç·˜è‰¦éŠœé™·é¹¹åˆå“ˆç›’è›¤é–¤é—”é™œäº¢ä¼‰å§®å«¦å··æ’æŠ—ææ¡æ²†æ¸¯ç¼¸è‚›èˆª\"],[\"faa1\",\"ï¨ˆï¨‰é …äº¥å•咳垓奚å©å®³æ‡ˆæ¥·æµ·ç€£èŸ¹è§£è©²è«§é‚‚é§éª¸åŠ¾æ ¸å€–å¹¸æè‡è¡Œäº«å‘åš®ç¦é„•響餉饗香噓墟虛許憲櫶ç»è»’æ‡éšªé©—奕爀赫é©ä¿”峴弦懸晛泫炫玄玹ç¾çœ©ç絃絢縣舷衒見賢鉉顯å‘ç©´è¡€é å«Œä¿ å”夾峽挾浹狹脅脇莢é‹é °äº¨å…„刑型\"],[\"fba1\",\"形泂滎瀅ç炯熒ç©ç‘©èŠèž¢è¡¡é€ˆé‚¢éŽ£é¦¨å…®å½—æƒ æ…§æš³è•™è¹Šé†¯éž‹ä¹Žäº’å‘¼å£•å£ºå¥½å²µå¼§æˆ¶æ‰ˆæ˜Šæ™§æ¯«æµ©æ·æ¹–æ»¸æ¾”æ¿ æ¿©çç‹ç¥ç‘šç“ 皓祜糊縞胡芦葫蒿虎號è´è·è±ªéŽ¬é €é¡¥æƒ‘æˆ–é…·å©šæ˜æ··æ¸¾ç¿é‚忽惚ç¬å“„弘汞泓洪烘紅虹訌鴻化和嬅樺ç«ç•µ\"],[\"fca1\",\"ç¦ç¦¾èбè¯è©±è貨é´ï¨‹æ“´æ”«ç¢ºç¢»ç©«ä¸¸å–šå¥å®¦å¹»æ‚£æ›æ¡æ™¥æ¡“渙煥環紈還驩鰥活滑猾è±é—Šå‡°å¹Œå¾¨ææƒ¶æ„°æ…Œæ™ƒæ™„æ¦¥æ³æ¹Ÿæ»‰æ½¢ç…Œç’œçš‡ç¯ç°§è’è—é‘éšé»ƒåŒ¯å›žå»»å¾Šæ¢æ‚”懷晦會檜淮澮ç°çªç¹ªè†¾èŒ´è›”誨賄劃ç²å®–æ©«é„å“®åš†åæ•ˆæ–…æ›‰æ¢Ÿæ¶æ·†\"],[\"fda1\",\"爻肴酵é©ä¾¯å€™åŽšåŽå¼å–‰å—…帿後朽煦ç逅勛勳塤壎焄ç†ç‡»è–°è¨“暈薨喧暄煊è±å‰å–™æ¯å½™å¾½æ®æš‰ç…‡è«±è¼éº¾ä¼‘æºçƒ‹ç•¦è™§æ¤èŽé·¸å…‡å‡¶åŒˆæ´¶èƒ¸é»‘昕欣炘痕åƒå±¹ç´‡è¨–æ¬ æ¬½æ†å¸æ°æ´½ç¿•興僖凞喜噫å›å§¬å¬‰å¸Œæ†™æ†˜æˆ±æ™žæ›¦ç†™ç†¹ç†ºçŠ§ç¦§ç¨€ç¾²è©°\"]]"); -var _types = __webpack_require__(628); +/***/ }), +/* 824 */ +/***/ (function(module) { -var _CozyClient = _interopRequireDefault(__webpack_require__(531)); +module.exports = JSON.parse("[[\"0\",\"\\u0000\",127],[\"a140\",\" ,ã€ã€‚.‧;:?ï¼ï¸°â€¦â€¥ï¹ï¹‘﹒·﹔﹕﹖﹗|–︱—︳╴︴ï¹ï¼ˆï¼‰ï¸µï¸¶ï½›ï½ï¸·ï¸¸ã€”〕︹︺ã€ã€‘︻︼《》︽︾〈〉︿﹀「ã€ï¹ï¹‚『ã€ï¹ƒï¹„﹙﹚\"],[\"a1a1\",\"﹛﹜ï¹ï¹žâ€˜â€™â€œâ€ã€ã€žâ€µâ€²ï¼ƒï¼†ï¼Šâ€»Â§ã€ƒâ—‹â—△▲◎☆★◇◆□■▽▼㊣℅¯ ̄_Ë﹉﹊ï¹ï¹Žï¹‹ï¹Œï¹Ÿï¹ ﹡+ï¼Ã—÷±√<>ï¼â‰¦â‰§â‰ ∞≒≡﹢\",4,\"~∩∪⊥∠∟⊿ã’ã‘∫∮∵∴♀♂⊕⊙↑↓â†â†’↖↗↙↘∥∣ï¼\"],[\"a240\",\"ï¼¼âˆ•ï¹¨ï¼„ï¿¥ã€’ï¿ ï¿¡ï¼…ï¼ â„ƒâ„‰ï¹©ï¹ªï¹«ã•㎜ãŽãŽžãŽãŽ¡ãŽŽãŽã„°兙兛兞å…兡兣嗧瓩糎â–\",7,\"â–â–Žâ–▌▋▊▉┼┴┬┤├▔─│▕┌â”└┘â•\"],[\"a2a1\",\"╮╰╯â•╞╪╡◢◣◥◤╱╲╳ï¼\",9,\"â… \",9,\"〡\",8,\"åå„å…A\",25,\"ï½\",21],[\"a340\",\"wxyzΑ\",16,\"Σ\",6,\"α\",16,\"σ\",6,\"ã„…\",10],[\"a3a1\",\"ã„\",25,\"˙ˉˊˇˋ\"],[\"a3e1\",\"€\"],[\"a440\",\"一乙ä¸ä¸ƒä¹ƒä¹äº†äºŒäººå„¿å…¥å…«å‡ 刀åˆåŠ›åŒ•ååœåˆä¸‰ä¸‹ä¸ˆä¸Šä¸«ä¸¸å‡¡ä¹…么也乞于亡兀刃勺åƒå‰å£åœŸå£«å¤•大女åå‘å“寸å°å°¢å°¸å±±å·å·¥å·±å·²å·³å·¾å¹²å»¾å¼‹å¼“æ‰\"],[\"a4a1\",\"丑ä¸ä¸ä¸ä¸°ä¸¹ä¹‹å°¹äºˆäº‘井互五亢ä»ä»€ä»ƒä»†ä»‡ä»ä»Šä»‹ä»„å…ƒå…å…§å…兮公冗凶分切刈勻勾勿化匹åˆå‡å…åžåŽ„å‹åŠå壬天夫太å¤å”å°‘å°¤å°ºå±¯å·´å¹»å»¿å¼”å¼•å¿ƒæˆˆæˆ¶æ‰‹æ‰Žæ”¯æ–‡æ–—æ–¤æ–¹æ—¥æ›°æœˆæœ¨æ¬ æ¢æ¹æ¯‹æ¯”æ¯›æ°æ°´ç«çˆªçˆ¶çˆ»ç‰‡ç‰™ç‰›çŠ¬çŽ‹ä¸™\"],[\"a540\",\"世丕且丘主ä¹ä¹ä¹Žä»¥ä»˜ä»”ä»•ä»–ä»—ä»£ä»¤ä»™ä»žå……å…„å†‰å†Šå†¬å‡¹å‡ºå‡¸åˆŠåŠ åŠŸåŒ…åŒ†åŒ—åŒä»ŸåŠå‰å¡å å¯å®åŽ»å¯å¤å³å¬å®å©å¨å¼å¸åµå«å¦åªå²å±å°å¥åå»å››å›šå¤–\"],[\"a5a1\",\"央失奴奶å•它尼巨巧左市布平幼å¼å¼˜å¼—å¿…æˆŠæ‰“æ‰”æ‰’æ‰‘æ–¥æ—¦æœ®æœ¬æœªæœ«æœæ£æ¯æ°‘æ°æ°¸æ±æ±€æ°¾çŠ¯çŽ„çŽ‰ç“œç“¦ç”˜ç”Ÿç”¨ç”©ç”°ç”±ç”²ç”³ç–‹ç™½çš®çš¿ç›®çŸ›çŸ¢çŸ³ç¤ºç¦¾ç©´ç«‹ä¸žä¸Ÿä¹’ä¹“ä¹©äº™äº¤äº¦äº¥ä»¿ä¼‰ä¼™ä¼Šä¼•ä¼ä¼ä¼‘ä¼ä»²ä»¶ä»»ä»°ä»³ä»½ä¼ä¼‹å…‰å…‡å…†å…ˆå…¨\"],[\"a640\",\"å…±å†å†°åˆ—åˆ‘åˆ’åˆŽåˆ–åŠ£åŒˆåŒ¡åŒ å°å±å‰ååŒåŠååå‹å„å‘ååˆåƒåŽå†å’å› å›žå›åœ³åœ°åœ¨åœåœ¬åœ¯åœ©å¤™å¤šå¤·å¤¸å¦„奸妃好她如å¦å—å˜å®‡å®ˆå®…安寺尖屹州帆并年\"],[\"a6a1\",\"å¼å¼›å¿™å¿–æˆŽæˆŒæˆæˆæ‰£æ‰›æ‰˜æ”¶æ—©æ—¨æ—¬æ—æ›²æ›³æœ‰æœ½æœ´æœ±æœµæ¬¡æ¤æ»æ°–æ±æ±—æ±™æ±Ÿæ± æ±æ±•æ±¡æ±›æ±æ±Žç°ç‰Ÿç‰ç™¾ç«¹ç±³ç³¸ç¼¶ç¾Šç¾½è€è€ƒè€Œè€’耳è¿è‚‰è‚‹è‚Œè‡£è‡ªè‡³è‡¼èˆŒèˆ›èˆŸè‰®è‰²è‰¾è™«è¡€è¡Œè¡£è¥¿é˜¡ä¸²äº¨ä½ä½ä½‡ä½—佞伴佛何估ä½ä½‘伽伺伸佃佔似但佣\"],[\"a740\",\"ä½œä½ ä¼¯ä½Žä¼¶ä½™ä½ä½ˆä½šå…Œå…‹å…兵冶冷別判利刪刨劫助努劬匣å³åµåååžå¾å¦å‘Žå§å‘†å‘ƒå³å‘ˆå‘‚å›å©å‘Šå¹å»å¸å®åµå¶å å¼å‘€å±å«åŸå¬å›ªå›°å›¤å›«åŠå‘å€å\"],[\"a7a1\",\"å‡åŽåœ¾åå圻壯夾å¦å¦’妨妞妣妙妖å¦å¦¤å¦“妊妥ååœåšå›å®Œå®‹å®å°¬å±€å±å°¿å°¾å²å²‘岔岌巫希åºåº‡åºŠå»·å¼„弟彤形彷役忘忌志å¿å¿±å¿«å¿¸å¿ªæˆ’æˆ‘æŠ„æŠ—æŠ–æŠ€æ‰¶æŠ‰æ‰æŠŠæ‰¼æ‰¾æ‰¹æ‰³æŠ’æ‰¯æŠ˜æ‰®æŠ•æŠ“æŠ‘æŠ†æ”¹æ”»æ”¸æ—±æ›´æŸæŽæææ‘æœæ–æžæ‰æ†æ \"],[\"a840\",\"æ“æ—æ¥æ¯æ±‚æ±žæ²™æ²æ²ˆæ²‰æ²…æ²›æ±ªæ±ºæ²æ±°æ²Œæ±¨æ²–æ²’æ±½æ²ƒæ±²æ±¾æ±´æ²†æ±¶æ²æ²”沘沂ç¶ç¼ç½ç¸ç‰¢ç‰¡ç‰ 狄狂玖甬甫男甸皂盯矣ç§ç§€ç¦¿ç©¶ç³»ç½•è‚–è‚“è‚肘肛肚育良芒\"],[\"a8a1\",\"芋èŠè¦‹è§’言谷豆豕è²èµ¤èµ°è¶³èº«è»Šè¾›è¾°è¿‚迆迅迄巡邑邢邪邦那酉釆里防阮阱阪阬並乖乳事些亞享京佯ä¾ä¾ä½³ä½¿ä½¬ä¾›ä¾‹ä¾†ä¾ƒä½°ä½µä¾ˆä½©ä½»ä¾–ä½¾ä¾ä¾‘佺兔兒兕兩具其典冽函刻券刷刺到刮制å‰åŠ¾åŠ»å’å”å“å‘å¦å·å¸å¹å–å”å—味呵\"],[\"a940\",\"咖呸咕咀呻呷咄咒咆呼å’呱呶和咚呢周咋命咎固垃å·åªå©å¡å¦å¤å¼å¤œå¥‰å¥‡å¥ˆå¥„奔妾妻委妹妮姑姆å§å§å§‹å§“姊妯妳姒姅åŸå¤å£å®—定官宜宙宛尚屈居\"],[\"a9a1\",\"屆岷岡岸岩岫岱岳帘帚帖帕帛帑幸庚店府底庖延弦弧弩往å¾å½¿å½¼å¿å¿ å¿½å¿µå¿¿æ€æ€”æ€¯æ€µæ€–æ€ªæ€•æ€¡æ€§æ€©æ€«æ€›æˆ–æˆ•æˆ¿æˆ¾æ‰€æ‰¿æ‹‰æ‹Œæ‹„æŠ¿æ‹‚æŠ¹æ‹’æ‹›æŠ«æ‹“æ‹”æ‹‹æ‹ˆæŠ¨æŠ½æŠ¼æ‹æ‹™æ‹‡æ‹æŠµæ‹šæŠ±æ‹˜æ‹–æ‹—æ‹†æŠ¬æ‹Žæ”¾æ–§æ–¼æ—ºæ˜”æ˜“æ˜Œæ˜†æ˜‚æ˜Žæ˜€æ˜æ˜•昊\"],[\"aa40\",\"æ˜‡æœæœ‹ææž‹æž•æ±æžœæ³æ·æž‡æžæž—æ¯æ°æ¿æž‰æ¾æžæµæžšæž“æ¼æªæ²æ¬£æ¦æ§æ¿æ°“æ°›æ³£æ³¨æ³³æ²±æ³Œæ³¥æ²³æ²½æ²¾æ²¼æ³¢æ²«æ³•æ³“æ²¸æ³„æ²¹æ³æ²®æ³—æ³…æ³±æ²¿æ²»æ³¡æ³›æ³Šæ²¬æ³¯æ³œæ³–æ³ \"],[\"aaa1\",\"炕炎炒炊炙爬çˆçˆ¸ç‰ˆç‰§ç‰©ç‹€ç‹Žç‹™ç‹—ç‹çŽ©çŽ¨çŽŸçŽ«çŽ¥ç”½ç–疙疚的盂盲直知矽社祀ç¥ç§‰ç§ˆç©ºç©¹ç«ºç³¾ç½”羌羋者肺肥肢肱股肫肩肴肪肯臥臾èˆèгèŠèŠ™èŠèŠ½èŠŸèŠ¹èŠ±èŠ¬èŠ¥èŠ¯èŠ¸èŠ£èŠ°èŠ¾èŠ·è™Žè™±åˆè¡¨è»‹è¿Žè¿”近邵邸邱邶采金長門阜陀阿阻附\"],[\"ab40\",\"陂隹雨é’éžäºŸäºäº®ä¿¡ä¾µä¾¯ä¾¿ä¿ ä¿‘ä¿ä¿ä¿ƒä¾¶ä¿˜ä¿Ÿä¿Šä¿—ä¾®ä¿ä¿„ä¿‚ä¿šä¿Žä¿žä¾·å…—å†’å†‘å† å‰Žå‰ƒå‰Šå‰å‰Œå‰‹å‰‡å‹‡å‹‰å‹ƒå‹åŒå—å»åŽšå›å’¬å“€å’¨å“Žå“‰å’¸å’¦å’³å“‡å“‚咽咪å“\"],[\"aba1\",\"å“„å“ˆå’¯å’«å’±å’»å’©å’§å’¿å›¿åž‚åž‹åž åž£åž¢åŸŽåž®åž“å¥•å¥‘å¥å¥Žå¥å§œå§˜å§¿å§£å§¨å¨ƒå§¥å§ªå§šå§¦å¨å§»å©å®£å®¦å®¤å®¢å®¥å°å±Žå±å±å±‹å³™å³’å··å¸å¸¥å¸Ÿå¹½åº 度建弈å¼å½¥å¾ˆå¾…å¾Šå¾‹å¾‡å¾Œå¾‰æ€’æ€æ€ æ€¥æ€Žæ€¨ææ°æ¨æ¢æ†æƒæ¬æ«æªæ¤æ‰æ‹œæŒ–æŒ‰æ‹¼æ‹æŒæ‹®æ‹½æŒ‡æ‹±æ‹·\"],[\"ac40\",\"æ‹¯æ‹¬æ‹¾æ‹´æŒ‘æŒ‚æ”¿æ•…æ–«æ–½æ—¢æ˜¥æ˜æ˜ æ˜§æ˜¯æ˜Ÿæ˜¨æ˜±æ˜¤æ›·æŸ¿æŸ“æŸ±æŸ”æŸæŸ¬æž¶æž¯æŸµæŸ©æŸ¯æŸ„æŸ‘æž´æŸšæŸ¥æž¸æŸæŸžæŸ³æž°æŸ™æŸ¢æŸæŸ’æªæ®ƒæ®†æ®µæ¯’æ¯—æ°Ÿæ³‰æ´‹æ´²æ´ªæµæ´¥æ´Œæ´±æ´žæ´—\"],[\"aca1\",\"活洽派洶洛泵洹洧洸洩洮洵洎洫炫為炳炬炯ç‚ç‚¸ç‚®ç‚¤çˆ°ç‰²ç‰¯ç‰´ç‹©ç‹ ç‹¡çŽ·çŠçŽ»çŽ²çç€çŽ³ç”šç”ç•界畎畋疫疤疥疢疣癸皆皇皈盈盆盃盅çœç›¹ç›¸çœ‰çœ‹ç›¾ç›¼çœ‡çŸœç ‚ç ”ç Œç 祆祉祈祇禹禺科秒秋穿çªç«¿ç«½ç±½ç´‚紅紀紉紇約紆缸美羿耄\"],[\"ad40\",\"è€è€è€‘耶胖胥胚胃胄背胡胛胎胞胤èƒè‡´èˆ¢è‹§èŒƒèŒ…苣苛苦茄若茂茉苒苗英èŒè‹œè‹”苑苞苓苟苯茆è™è™¹è™»è™ºè¡è¡«è¦è§”è¨ˆè¨‚è¨ƒè²žè² èµ´èµ³è¶´è»è»Œè¿°è¿¦è¿¢è¿ªè¿¥\"],[\"ada1\",\"è¿è¿«è¿¤è¿¨éƒŠéƒŽéƒéƒƒé…‹é…Šé‡é–‚é™é™‹é™Œé™é¢é©éŸ‹éŸéŸ³é 風飛食首香乘亳倌å€å€£ä¿¯å€¦å€¥ä¿¸å€©å€–倆值借倚倒們俺倀倔倨俱倡個候倘俳修å€å€ªä¿¾å€«å€‰å…¼å†¤å†¥å†¢å‡å‡Œå‡†å‡‹å‰–剜剔剛å‰åŒªå¿åŽŸåŽåŸå“¨å”å”唷哼哥哲唆哺唔哩å“員唉哮哪\"],[\"ae40\",\"哦唧唇哽å”åœƒåœ„åŸ‚åŸ”åŸ‹åŸƒå ‰å¤å¥—å¥˜å¥šå¨‘å¨˜å¨œå¨Ÿå¨›å¨“å§¬å¨ å¨£å¨©å¨¥å¨Œå¨‰å«å±˜å®°å®³å®¶å®´å®®å®µå®¹å®¸å°„屑展å±å³å³½å³»å³ªå³¨å³°å³¶å´å³´å·®å¸å¸«åº«åºåº§å¼±å¾’徑徿™\"],[\"aea1\",\"æ£æ¥ææ•ææ©æ¯æ‚„æ‚Ÿæ‚šæ‚æ‚”æ‚Œæ‚…æ‚–æ‰‡æ‹³æŒˆæ‹¿æŽæŒ¾æŒ¯æ•æ‚æ†ææ‰æŒºææŒ½æŒªæŒ«æŒ¨ææŒæ•ˆæ•‰æ–™æ—æ—…æ™‚æ™‰æ™æ™ƒæ™’æ™Œæ™…æ™æ›¸æœ”æœ•æœ—æ ¡æ ¸æ¡ˆæ¡†æ¡“æ ¹æ¡‚æ¡”æ ©æ¢³æ —æ¡Œæ¡‘æ ½æŸ´æ¡æ¡€æ ¼æ¡ƒæ ªæ¡…æ “æ ˜æ¡æ®Šæ®‰æ®·æ°£æ°§æ°¨æ°¦æ°¤æ³°æµªæ¶•消涇浦浸海浙涓\"],[\"af40\",\"浬涉浮浚浴浩涌涊浹涅浥涔烊烘烤烙烈çƒçˆ¹ç‰¹ç‹¼ç‹¹ç‹½ç‹¸ç‹·çކçç‰ç®ç çªçžç•”ç•畜畚留疾病症疲疳疽疼疹痂疸皋皰益ç›ç›Žçœ©çœŸçœ çœ¨çŸ©ç °ç §ç ¸ç ç ´ç ·\"],[\"afa1\",\"ç ¥ç ç ç Ÿç ²ç¥•ç¥ç¥ 祟祖神ç¥ç¥—ç¥šç§¤ç§£ç§§ç§Ÿç§¦ç§©ç§˜çª„çªˆç«™ç¬†ç¬‘ç²‰ç´¡ç´—ç´‹ç´Šç´ ç´¢ç´”ç´ç´•ç´šç´œç´ç´™ç´›ç¼ºç½Ÿç¾”ç¿…ç¿è€†è€˜è€•耙耗耽耿胱脂胰脅èƒèƒ´è„†èƒ¸èƒ³è„ˆèƒ½è„Šèƒ¼èƒ¯è‡è‡¬èˆ€èˆèˆªèˆ«èˆ¨èˆ¬èŠ»èŒ«è’è”èŠèŒ¸èè‰èŒµèŒ´è茲茹茶茗è€èŒ±èŒ¨èƒ\"],[\"b040\",\"虔蚊蚪蚓蚤蚩蚌蚣蚜衰衷è¢è¢‚衽衹記è¨è¨Žè¨Œè¨•訊託訓訖è¨è¨‘豈豺豹財貢起躬軒軔è»è¾±é€é€†è¿·é€€è¿ºè¿´é€ƒè¿½é€…迸邕郡éƒéƒ¢é…’é…酌釘é‡é‡—釜釙閃院陣陡\"],[\"b0a1\",\"é™›é™é™¤é™˜é™žéš»é£¢é¦¬éª¨é«˜é¬¥é¬²é¬¼ä¹¾åºå½åœå‡åƒåŒåšå‰å¥å¶åŽå•åµå´å·åå€å¯å兜冕凰剪副勒務勘動åŒåŒåŒ™åŒ¿å€åŒ¾åƒæ›¼å•†å•ªå•¦å•„啞啡啃啊唱啖å•啕唯啤唸售啜唬啣唳å•å•—åœˆåœ‹åœ‰åŸŸå …å Šå †åŸ åŸ¤åŸºå ‚å µåŸ·åŸ¹å¤ å¥¢å¨¶å©å©‰å©¦å©ªå©€\"],[\"b140\",\"娼婢婚婆婊å°å¯‡å¯…å¯„å¯‚å®¿å¯†å°‰å°ˆå°‡å± å±œå±å´‡å´†å´Žå´›å´–å´¢å´‘å´©å´”å´™å´¤å´§å´—å·¢å¸¸å¸¶å¸³å¸·åº·åº¸åº¶åºµåº¾å¼µå¼·å½—å½¬å½©å½«å¾—å¾™å¾žå¾˜å¾¡å¾ å¾œæ¿æ‚£æ‚‰æ‚ 您惋悴惦悽\"],[\"b1a1\",\"æƒ…æ‚»æ‚µæƒœæ‚¼æƒ˜æƒ•æƒ†æƒŸæ‚¸æƒšæƒ‡æˆšæˆ›æ‰ˆæŽ æŽ§æ²æŽ–æŽ¢æŽ¥æ·æ§æŽ˜æŽªæ±æŽ©æŽ‰æŽƒæŽ›æ«æŽ¨æŽ„æŽˆæŽ™æŽ¡æŽ¬æŽ’æŽæŽ€æ»æ©æ¨æºæ•æ•–æ•‘æ•™æ•—å•Ÿæ•æ•˜æ••æ•”æ–œæ–›æ–¬æ—æ—‹æ—Œæ—Žæ™æ™šæ™¤æ™¨æ™¦æ™žæ›¹å‹—æœ›æ¢æ¢¯æ¢¢æ¢“æ¢µæ¡¿æ¡¶æ¢±æ¢§æ¢—æ¢°æ¢ƒæ£„æ¢æ¢†æ¢…æ¢”æ¢æ¢¨æ¢Ÿæ¢¡æ¢‚欲殺\"],[\"b240\",\"毫毬氫涎涼淳淙液淡淌淤添淺清淇淋涯淑涮淞淹涸混淵淅淒渚涵淚淫淘淪深淮淨淆淄涪淬涿淦烹焉焊烽烯爽牽çŠçŒœçŒ›çŒ–猓猙率ç…çŠçƒç†ç¾çç“ ç“¶\"],[\"b2a1\",\"瓷甜產略畦畢異ç–痔痕疵痊ç—皎盔盒盛眷眾眼眶眸眺硫硃硎祥票ç¥ç§»çª’çª•ç¬ ç¬¨ç¬›ç¬¬ç¬¦ç¬™ç¬žç¬®ç²’ç²—ç²•çµ†çµƒçµ±ç´®ç´¹ç´¼çµ€ç´°ç´³çµ„ç´¯çµ‚ç´²ç´±ç¼½ç¾žç¾šç¿Œç¿Žç¿’è€œèŠè†è„¯è„–脣脫脩脰脤舂舵舷舶船莎莞莘è¸èŽ¢èŽ–èŽ½èŽ«èŽ’èŽŠèŽ“èŽ‰èŽ è·è»è¼\"],[\"b340\",\"莆莧處彪蛇蛀蚶蛄蚵蛆蛋蚱蚯蛉術袞袈被袒袖è¢è¢‹è¦“è¦è¨ªè¨è¨£è¨¥è¨±è¨è¨Ÿè¨›è¨¢è±‰è±šè²©è²¬è²«è²¨è²ªè²§èµ§èµ¦è¶¾è¶ºè»›è»Ÿé€™é€é€šé€—連速é€é€é€•é€žé€ é€é€¢é€–逛途\"],[\"b3a1\",\"部éƒéƒ½é…—野釵釦釣釧é‡é‡©é–‰é™ªé™µé™³é™¸é™°é™´é™¶é™·é™¬é›€é›ªé›©ç« ç«Ÿé ‚é ƒéšé³¥é¹µé¹¿éº¥éº»å‚¢å‚傅備傑傀傖傘傚最凱割剴創剩勞å‹å‹›åšåŽ¥å•»å–€å–§å•¼å–Šå–喘喂喜喪喔喇喋喃喳單喟唾喲喚喻喬喱啾喉喫喙åœå ¯å ªå ´å ¤å °å ±å ¡å å å£¹å£ºå¥ \"],[\"b440\",\"婷媚婿媒媛媧å³å±å¯’富寓å¯å°Šå°‹å°±åµŒåµå´´åµ‡å·½å¹…帽幀幃幾廊å»å»‚廄弼å½å¾©å¾ªå¾¨æƒ‘æƒ¡æ‚²æ‚¶æƒ æ„œæ„£æƒºæ„•æƒ°æƒ»æƒ´æ…¨æƒ±æ„Žæƒ¶æ„‰æ„€æ„’æˆŸæ‰‰æŽ£æŽŒææ€æ©æ‰æ†æ\"],[\"b4a1\",\"æ’æ£ææ¡æ–ææ®æ¶æ´æªæ›æ‘’æšæ¹æ•žæ•¦æ•¢æ•£æ–‘æ–æ–¯æ™®æ™°æ™´æ™¶æ™¯æš‘æ™ºæ™¾æ™·æ›¾æ›¿æœŸæœæ£ºæ£•æ£ æ£˜æ£—æ¤…æ£Ÿæ£µæ£®æ£§æ£¹æ£’æ£²æ££æ£‹æ£æ¤æ¤’æ¤Žæ£‰æ£šæ¥®æ£»æ¬¾æ¬ºæ¬½æ®˜æ®–æ®¼æ¯¯æ°®æ°¯æ°¬æ¸¯æ¸¸æ¹”æ¸¡æ¸²æ¹§æ¹Šæ¸ æ¸¥æ¸£æ¸›æ¹›æ¹˜æ¸¤æ¹–æ¹®æ¸æ¸¦æ¹¯æ¸´æ¹æ¸ºæ¸¬æ¹ƒæ¸æ¸¾æ»‹\"],[\"b540\",\"溉渙湎湣湄湲湩湟焙焚焦焰無然煮焜牌犄犀猶猥猴猩çºçªç³ç¢ç¥çµç¶ç´ç¯ç›ç¦ç¨ç”¥ç”¦ç•«ç•ªç—¢ç—›ç—£ç—™ç—˜ç—žç— 登發皖皓皴盜ççŸç¡ç¡¬ç¡¯ç¨ç¨ˆç¨‹ç¨…稀窘\"],[\"b5a1\",\"窗窖童竣ç‰ç–ç†çç’ç”çç‹çç‘粟粥絞çµçµ¨çµ•紫絮絲絡給絢絰絳善翔翕耋è’肅腕腔腋腑腎脹腆脾腌腓腴舒舜è©èƒè¸èè è…è‹èè¯è±è´è‘—èŠè°èŒèŒè½è²èŠè¸èŽè„èœè‡è”èŸè™›è›Ÿè›™è›è›”蛛蛤è›è›žè¡—è£è£‚è¢±è¦ƒè¦–è¨»è© è©•è©žè¨¼è©\"],[\"b640\",\"詔詛è©è©†è¨´è¨ºè¨¶è©–象貂貯貼貳貽è³è²»è³€è²´è²·è²¶è²¿è²¸è¶Šè¶…è¶è·Žè·è·‹è·šè·‘跌跛跆軻軸軼辜逮逵週逸進逶鄂郵鄉郾酣酥é‡éˆ”鈕鈣鈉鈞éˆéˆéˆ‡éˆ‘é–”é–é–‹é–‘\"],[\"b6a1\",\"間閒閎隊階隋陽隅隆éšé™²éš„é›é›…é›„é›†é›‡é›¯é›²éŸŒé …é †é ˆé£§é£ªé£¯é£©é£²é£é¦®é¦é»ƒé»é»‘亂å‚債傲傳僅傾催傷傻傯僇剿剷剽募勦勤勢勣匯嗟嗨嗓嗦嗎嗜嗇嗑嗣嗤嗯嗚嗡嗅嗆嗥嗉園圓塞塑塘塗塚塔填塌å¡å¡Šå¡¢å¡’塋奧å«å«‰å«Œåª¾åª½åª¼\"],[\"b740\",\"åª³å«‚åª²åµ©åµ¯å¹Œå¹¹å»‰å»ˆå¼’å½™å¾¬å¾®æ„šæ„æ…ˆæ„Ÿæƒ³æ„›æƒ¹æ„æ„ˆæ…Žæ…Œæ…„æ…æ„¾æ„´æ„§æ„æ„†æ„·æˆ¡æˆ¢æ“æ¾æžæªææ½æ¬ææœæ”ææ¶æ–æ—æ†æ•¬æ–Ÿæ–°æš—æš‰æš‡æšˆæš–æš„æš˜æšæœƒæ¦”æ¥\"],[\"b7a1\",\"æ¥šæ¥·æ¥ æ¥”æ¥µæ¤°æ¦‚æ¥Šæ¥¨æ¥«æ¥žæ¥“æ¥¹æ¦†æ¥æ¥£æ¥›æ‡æ²æ¯€æ®¿æ¯“æ¯½æº¢æº¯æ»“æº¶æ»‚æºæºæ»‡æ»…溥溘溼溺溫滑準溜滄滔溪溧溴煎煙煩煤煉照煜煬煦煌煥煞煆煨煖爺牒猷ç…猿猾瑯瑚瑕瑟瑞ç‘ç¿ç‘™ç‘›ç‘œç•¶ç•¸ç˜€ç—°ç˜ç—²ç—±ç—ºç—¿ç—´ç—³ç›žç›Ÿç›ç«ç¦çžç£\"],[\"b840\",\"ç¹çªç¬çœç¥ç¨ç¢çŸ®ç¢Žç¢°ç¢—碘碌碉硼碑碓硿祺祿ç¦è¬ç¦½ç¨œç¨šç¨ ç¨”ç¨Ÿç¨žçªŸçª ç·ç¯€ç ç®ç§ç²±ç²³ç²µç¶“絹綑ç¶ç¶çµ›ç½®ç½©ç½ªç½²ç¾©ç¾¨ç¾¤è–è˜è‚†è‚„腱腰腸腥腮腳腫\"],[\"b8a1\",\"腹腺腦舅艇蒂葷è½è±è‘µè‘¦è‘«è‘‰è‘¬è‘›è¼èµè‘¡è‘£è‘©è‘葆虞虜號蛹蜓蜈蜇蜀蛾蛻蜂蜃蜆蜊衙裟裔裙補裘è£è£¡è£Šè£•è£’è¦œè§£è©«è©²è©³è©¦è©©è©°èª‡è©¼è©£èª è©±èª…è©è©¢è©®è©¬è©¹è©»è¨¾è©¨è±¢è²Šè²‰è³Šè³‡è³ˆè³„貲賃賂賅跡跟跨路跳跺跪跤跦躲較載軾輊\"],[\"b940\",\"辟農é‹éŠé“é‚é”逼é•éé‡ééŽéé‘逾é鄒鄗酬酪酩釉鈷鉗鈸鈽鉀鈾鉛鉋鉤鉑鈴鉉é‰é‰…鈹鈿鉚閘隘隔隕é›é›‹é›‰é›Šé›·é›»é›¹é›¶é–é´é¶é é ‘é “é Šé ’é Œé£¼é£´\"],[\"b9a1\",\"é£½é£¾é¦³é¦±é¦´é«¡é³©éº‚é¼Žé¼“é¼ åƒ§åƒ®åƒ¥åƒ–åƒåƒšåƒ•åƒåƒ‘僱僎僩兢凳劃劂匱åŽå—¾å˜€å˜›å˜—嗽嘔嘆嘉å˜å˜Žå—·å˜–嘟嘈å˜å—¶åœ˜åœ–塵塾境墓墊塹墅塽壽夥夢夤奪奩嫡嫦嫩嫗嫖嫘嫣åµå¯žå¯§å¯¡å¯¥å¯¦å¯¨å¯¢å¯¤å¯Ÿå°å±¢å¶„嶇幛幣幕幗幔廓廖弊彆彰徹慇\"],[\"ba40\",\"æ„¿æ…‹æ…·æ…¢æ…£æ…Ÿæ…šæ…˜æ…µæˆªæ’‡æ‘˜æ‘”æ’¤æ‘¸æ‘Ÿæ‘ºæ‘‘æ‘§æ´æ‘æ‘»æ•²æ–¡æ——æ—–æš¢æš¨æšæ¦œæ¦¨æ¦•æ§æ¦®æ§“æ§‹æ¦›æ¦·æ¦»æ¦«æ¦´æ§æ§æ¦æ§Œæ¦¦æ§ƒæ¦£æ‰æŒæ°³æ¼³æ¼”æ»¾æ¼“æ»´æ¼©æ¼¾æ¼ æ¼¬æ¼æ¼‚æ¼¢\"],[\"baa1\",\"æ»¿æ»¯æ¼†æ¼±æ¼¸æ¼²æ¼£æ¼•æ¼«æ¼¯æ¾ˆæ¼ªæ»¬æ¼æ»²æ»Œæ»·ç†”熙煽熊熄熒爾犒犖ç„ç瑤瑣瑪瑰ç‘甄疑瘧ç˜ç˜‹ç˜‰ç˜“盡監瞄ç½ç¿ç¡ç£ç¢Ÿç¢§ç¢³ç¢©ç¢£ç¦Žç¦ç¦ç¨®ç¨±çªªçª©ç«ç«¯ç®¡ç®•箋çµç®—ç®ç®”ç®ç®¸ç®‡ç®„ç²¹ç²½ç²¾ç¶»ç¶°ç¶œç¶½ç¶¾ç¶ ç·Šç¶´ç¶²ç¶±ç¶ºç¶¢ç¶¿ç¶µç¶¸ç¶ç·’緇綬\"],[\"bb40\",\"ç½°ç¿ ç¿¡ç¿Ÿèžèšè‚‡è…膀è†è†ˆè†Šè…¿è†‚臧臺與舔舞艋蓉蒿蓆蓄蒙蒞蒲蒜蓋蒸蓀蓓è’蒼蓑蓊蜿蜜蜻蜢蜥蜴蜘è•蜷蜩裳褂裴裹裸製裨褚裯誦誌語誣èªèª¡èª“誤\"],[\"bba1\",\"說誥誨誘誑誚誧豪è²è²Œè³“賑賒赫趙趕跼輔輒輕輓辣é é˜éœé£é™éžé¢éé›é„™é„˜é„žé…µé…¸é…·é…´é‰¸éŠ€éŠ…éŠ˜éŠ–é‰»éŠ“éŠœéŠ¨é‰¼éŠ‘é–¡é–¨é–©é–£é–¥é–¤éš™éšœéš›é›Œé›’éœ€é¼éž…éŸ¶é —é ˜é¢¯é¢±é¤ƒé¤…é¤Œé¤‰é§éª¯éª°é«¦éé‚鳴鳶鳳麼鼻齊億儀僻僵價儂儈儉儅凜\"],[\"bc40\",\"劇劈劉åŠåŠŠå‹°åŽ²å˜®å˜»å˜¹å˜²å˜¿å˜´å˜©å™“å™Žå™—å™´å˜¶å˜¯å˜°å¢€å¢Ÿå¢žå¢³å¢œå¢®å¢©å¢¦å¥å¬‰å«»å¬‹å«µå¬Œå¬ˆå¯®å¯¬å¯©å¯«å±¤å±¥å¶å¶”幢幟幡廢廚廟å»å»£å» å½ˆå½±å¾·å¾µæ…¶æ…§æ…®æ…æ…•憂\"],[\"bca1\",\"æ…¼æ…°æ…«æ…¾æ†§æ†æ†«æ†Žæ†¬æ†šæ†¤æ†”æ†®æˆ®æ‘©æ‘¯æ‘¹æ’žæ’²æ’ˆæ’æ’°æ’¥æ’“æ’•æ’©æ’’æ’®æ’æ’«æ’šæ’¬æ’™æ’¢æ’³æ•µæ•·æ•¸æš®æš«æš´æš±æ¨£æ¨Ÿæ§¨æ¨æ¨žæ¨™æ§½æ¨¡æ¨“æ¨Šæ§³æ¨‚æ¨…æ§æ¨‘ææŽæ®¤æ¯…æ¯†æ¼¿æ½¼æ¾„æ½‘æ½¦æ½”æ¾†æ½æ½›æ½¸æ½®æ¾Žæ½ºæ½°æ½¤æ¾—æ½˜æ»•æ½¯æ½ æ½Ÿç†Ÿç†¬ç†±ç†¨ç‰–çŠ›çŽç—ç‘©ç’‹ç’ƒ\"],[\"bd40\",\"ç‘¾ç’€ç•¿ç˜ ç˜©ç˜Ÿç˜¤ç˜¦ç˜¡ç˜¢çššçšºç›¤çžŽçž‡çžŒçž‘çž‹ç£‹ç£…ç¢ºç£Šç¢¾ç£•ç¢¼ç£ç¨¿ç¨¼ç©€ç¨½ç¨·ç¨»çª¯çª®ç®ç®±ç¯„箴篆篇ç¯ç® ç¯Œç³Šç· ç·´ç·¯ç·»ç·˜ç·¬ç·ç·¨ç·£ç·šç·žç·©ç¶žç·™ç·²ç·¹ç½µç½·ç¾¯\"],[\"bda1\",\"翩耦膛膜è†è† 膚膘蔗蔽蔚蓮蔬è”蔓蔑蔣蔡蔔蓬蔥蓿蔆螂è´è¶è è¦è¸è¨è™è—èŒè“è¡›è¡è¤è¤‡è¤’褓褕褊誼諒談諄誕請諸課諉諂調誰論è«èª¶èª¹è«›è±Œè±Žè±¬è³ 賞賦賤賬è³è³¢è³£è³œè³ªè³¡èµè¶Ÿè¶£è¸«è¸è¸è¸¢è¸è¸©è¸Ÿè¸¡è¸žèººè¼è¼›è¼Ÿè¼©è¼¦è¼ªè¼œè¼ž\"],[\"be40\",\"è¼¥é©é®é¨éé·é„°é„鄧鄱醇醉醋醃鋅銻銷鋪銬鋤é‹éŠ³éŠ¼é‹’é‹‡é‹°éŠ²é–閱霄霆震霉é éžéž‹éžé ¡é «é œé¢³é¤Šé¤“餒餘é§é§é§Ÿé§›é§‘駕駒駙骷髮髯鬧é…é„é·é¯é´†é´‰\"],[\"bea1\",\"鴃麩麾黎墨齒儒儘儔å„儕冀冪å‡åŠ‘åŠ“å‹³å™™å™«å™¹å™©å™¤å™¸å™ªå™¨å™¥å™±å™¯å™¬å™¢å™¶å£å¢¾å£‡å£…奮å¬å¬´å¸å¯°å°Žå½Šæ†²æ†‘æ†©æ†Šæ‡æ†¶æ†¾æ‡Šæ‡ˆæˆ°æ“…æ“æ“‹æ’»æ’¼æ“šæ“„æ“‡æ“‚æ“æ’¿æ“’æ“”æ’¾æ•´æ›†æ›‰æš¹æ›„æ›‡æš¸æ¨½æ¨¸æ¨ºæ©™æ©«æ©˜æ¨¹æ©„æ©¢æ©¡æ©‹æ©‡æ¨µæ©Ÿæ©ˆæ™æ·æ°…濂澱澡\"],[\"bf40\",\"æ¿ƒæ¾¤æ¿æ¾§æ¾³æ¿€æ¾¹æ¾¶æ¾¦æ¾ 澴熾燉ç‡ç‡’燈燕熹燎燙燜燃燄ç¨ç’œç’£ç’˜ç’Ÿç’žç“¢ç”Œç”ç˜´ç˜¸ç˜ºç›§ç›¥çž çžžçžŸçž¥ç£¨ç£šç£¬ç£§ç¦¦ç©ç©Žç©†ç©Œç©‹çªºç¯™ç°‘築篤篛篡篩篦糕糖縊\"],[\"bfa1\",\"縑縈縛縣縞ç¸ç¸‰ç¸ç½¹ç¾²ç¿°ç¿±ç¿®è€¨è†³è†©è†¨è‡»èˆˆè‰˜è‰™è•Šè•™è•ˆè•¨è•©è•ƒè•‰è•蕪蕞螃螟螞螢èžè¡¡è¤ªè¤²è¤¥è¤«è¤¡è¦ªè¦¦è«¦è«ºè««è«±è¬€è«œè«§è«®è«¾è¬è¬‚è«·è«è«³è«¶è«¼è±«è±è²“賴蹄踱踴蹂踹踵輻輯輸輳辨辦éµé´é¸é²é¼éºé„´é†’éŒ éŒ¶é‹¸éŒ³éŒ¯éŒ¢é‹¼éŒ«éŒ„éŒš\"],[\"c040\",\"éŒéŒ¦éŒ¡éŒ•錮錙閻隧隨險雕霎霑霖éœéœ“éœé›éœé¦éž˜é °é ¸é »é ·é é ¹é ¤é¤é¤¨é¤žé¤›é¤¡é¤šé§é§¢é§±éª¸éª¼é«»é«é¬¨é®‘鴕鴣鴦鴨鴒鴛默黔é¾é¾œå„ªå„Ÿå„¡å„²å‹µåšŽåš€åšåš…嚇\"],[\"c0a1\",\"åšå£•壓壑壎嬰嬪嬤åºå°·å±¨å¶¼å¶ºå¶½å¶¸å¹«å½Œå¾½æ‡‰æ‡‚æ‡‡æ‡¦æ‡‹æˆ²æˆ´æ“Žæ“Šæ“˜æ“ æ“°æ“¦æ“¬æ“±æ“¢æ“æ–‚æ–ƒæ›™æ›–æª€æª”æª„æª¢æªœæ«›æª£æ©¾æª—æªæª æœæ®®æ¯šæ°ˆæ¿˜æ¿±æ¿Ÿæ¿ 濛濤濫濯澀濬濡濩濕濮濰燧營燮燦燥ç‡ç‡¬ç‡´ç‡ 爵牆ç°ç²ç’©ç’°ç’¦ç’¨ç™†ç™‚癌盪瞳瞪瞰瞬\"],[\"c140\",\"çž§çžçŸ¯ç£·ç£ºç£´ç£¯ç¤ç¦§ç¦ªç©—窿簇ç°ç¯¾ç¯·ç°Œç¯ ç³ ç³œç³žç³¢ç³Ÿç³™ç³ç¸®ç¸¾ç¹†ç¸·ç¸²ç¹ƒç¸«ç¸½ç¸±ç¹…ç¹ç¸´ç¸¹ç¹ˆç¸µç¸¿ç¸¯ç½„翳翼è±è²è°è¯è³è‡†è‡ƒè†ºè‡‚臀膿膽臉膾臨舉艱薪\"],[\"c1a1\",\"è–„è•¾è–œè–‘è–”è–¯è–›è–‡è–¨è–Šè™§èŸ€èŸ‘èž³èŸ’èŸ†èž«èž»èžºèŸˆèŸ‹è¤»è¤¶è¥„è¤¸è¤½è¦¬è¬Žè¬—è¬™è¬›è¬Šè¬ è¬è¬„è¬è±è°¿è±³è³ºè³½è³¼è³¸è³»è¶¨è¹‰è¹‹è¹ˆè¹Šè½„輾轂轅輿é¿é½é‚„é‚邂邀鄹醣醞醜é鎂錨éµéŠé¥é‹éŒ˜é¾é¬é›é°éšé”é—Šé—‹é—Œé—ˆé—†éš±éš¸é›–éœœéœžéž éŸ“é¡†é¢¶é¤µé¨\"],[\"c240\",\"駿鮮鮫鮪é®é´»é´¿éº‹é»é»žé»œé»é»›é¼¾é½‹å¢åš•åš®å£™å£˜å¬¸å½æ‡£æˆ³æ“´æ“²æ“¾æ”†æ“ºæ“»æ“·æ–·æ›œæœ¦æª³æª¬æ«ƒæª»æª¸æ«‚æª®æª¯æŸæ¸æ®¯ç€‰ç€‹æ¿¾ç€†æ¿ºç€‘ç€ç‡»ç‡¼ç‡¾ç‡¸ç·çµç’§ç’¿ç”•癖癘\"],[\"c2a1\",\"ç™’çž½çž¿çž»çž¼ç¤Žç¦®ç©¡ç©¢ç© ç«„ç«…ç°«ç°§ç°ªç°žç°£ç°¡ç³§ç¹”ç¹•ç¹žç¹šç¹¡ç¹’ç¹™ç½ˆç¿¹ç¿»è·è¶è‡è‡èˆŠè—è–©è—è—è—‰è–°è–ºè–¹è–¦èŸ¯èŸ¬èŸ²èŸ è¦†è¦²è§´è¬¨è¬¹è¬¬è¬«è±è´…蹙蹣蹦蹤蹟蹕軀轉è½é‚‡é‚ƒé‚ˆé†«é†¬é‡éŽ”éŽŠéŽ–éŽ¢éŽ³éŽ®éŽ¬éŽ°éŽ˜éŽšéŽ—é—”é—–é—闕離雜雙雛雞霤鞣鞦\"],[\"c340\",\"éžéŸ¹é¡é¡é¡Œé¡Žé¡“颺餾餿餽餮馥騎é«é¬ƒé¬†ééŽé鯊鯉鯽鯈鯀鵑éµéµ é» é¼•é¼¬å„³åš¥å£žå£Ÿå£¢å¯µé¾å»¬æ‡²æ‡·æ‡¶æ‡µæ”€æ”æ› æ›æ«¥æ«æ«šæ«“瀛瀟瀨瀚ç€ç€•瀘爆çˆç‰˜çŠ¢ç¸\"],[\"c3a1\",\"çºç’½ç“Šç“£ç–‡ç–†ç™Ÿç™¡çŸ‡ç¤™ç¦±ç©«ç©©ç°¾ç°¿ç°¸ç°½ç°·ç±€ç¹«ç¹ç¹¹ç¹©ç¹ªç¾…繳羶羹羸臘藩è—è—ªè—•è—¤è—¥è—·èŸ»è …è èŸ¹èŸ¾è¥ è¥Ÿè¥–è¥žèèœè˜è‰èšèŽèè†è™è´ˆè´Šè¹¼è¹²èº‡è¹¶è¹¬è¹ºè¹´è½”轎è¾é‚Šé‚‹é†±é†®é¡é‘éŸéƒéˆéœéé–é¢éé˜é¤é—é¨é—œéš´é›£éœªéœ§é¡éŸœéŸ»é¡ž\"],[\"c440\",\"願顛颼饅饉騖騙é¬é¯¨é¯§é¯–鯛鶉鵡鵲鵪鵬麒麗麓麴勸嚨嚷嚶嚴嚼壤å€åƒå½å¯¶å·‰æ‡¸æ‡ºæ”˜æ””攙曦朧櫬瀾瀰瀲çˆç»ç“癢癥礦礪礬礫竇競籌籃ç±ç³¯ç³°è¾®ç¹½ç¹¼\"],[\"c4a1\",\"çº‚ç½Œè€€è‡šè‰¦è—»è—¹è˜‘è—ºè˜†è˜‹è˜‡è˜Šè ”è •è¥¤è¦ºè§¸è°è¬è¦è¯èŸè«è´è´èº‰èºèº…躂醴釋é˜éƒé½é—¡éœ°é£„饒饑馨騫騰騷騵鰓é°é¹¹éºµé»¨é¼¯é½Ÿé½£é½¡å„·å„¸å›å›€å›‚夔屬巿‡¼æ‡¾æ”攜斕曩櫻欄櫺殲çŒçˆ›çŠ§ç“–ç“”ç™©çŸ“ç±çºçºŒç¾¼è˜—è˜è˜šè £è ¢è ¡è Ÿè¥ªè¥¬è¦½è´\"],[\"c540\",\"è·è½è´“躊èºèº‹è½Ÿè¾¯é†ºé®é³éµéºé¸é²é«é—¢éœ¸éœ¹éœ²éŸ¿é¡§é¡¥é¥—驅驃驀騾é«é”é‘é°é°¥é¶¯é¶´é·‚鶸éºé»¯é¼™é½œé½¦é½§å„¼å„»å›ˆå›Šå›‰å¿å·”巒彎懿攤權æ¡ç‘ç˜çŽ€ç“¤ç–Šç™®ç™¬\"],[\"c5a1\",\"ç¦³ç± ç±Ÿè¾è½è‡Ÿè¥²è¥¯è§¼è®€è´–贗躑躓轡酈鑄鑑鑒霽霾韃éŸé¡«é¥•é©•é©é«’鬚鱉鰱鰾鰻鷓鷗鼴齬齪龔囌巖戀攣攫攪曬æ¬ç“šç«Šç±¤ç±£ç±¥çº“çº–çº”è‡¢è˜¸è˜¿è ±è®Šé‚é‚é‘£é‘ é‘¤é¨é¡¯é¥œé©šé©›é©—髓體髑鱔鱗鱖鷥麟黴囑壩攬çžç™±ç™²çŸ—ç½ç¾ˆè ¶è ¹è¡¢è®“è®’\"],[\"c640\",\"讖艷贛釀鑪é‚éˆé„韆顰驟鬢é˜é±Ÿé·¹é·ºé¹¼é¹½é¼‡é½·é½²å»³æ¬–ç£ç±¬ç±®è »è§€èº¡é‡é‘²é‘°é¡±é¥žé«–鬣黌ç¤çŸšè®šé‘·éŸ‰é©¢é©¥çºœè®œèºªé‡…鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲\"],[\"c940\",\"乂乜凵匚厂万丌乇äºå›—兀屮彳ä¸å†‡ä¸Žä¸®äº“仂仉仈冘勼å¬åŽ¹åœ å¤ƒå¤¬å°å·¿æ—¡æ®³æ¯Œæ°”爿丱丼仨仜仩仡ä»ä»šåˆŒåŒœåŒåœ¢åœ£å¤—夯å®å®„å°’å°»å±´å±³å¸„åº€åº‚å¿‰æˆ‰æ‰æ°•\"],[\"c9a1\",\"氶汃氿氻犮犰玊禸肊阞伎优伬仵伔仱伀价伈ä¼ä¼‚伅伢伓伄仴伒冱刓刉åˆåŠ¦åŒ¢åŒŸå厊å‡å›¡å›Ÿåœ®åœªåœ´å¤¼å¦€å¥¼å¦…奻奾奷奿å–å°•å°¥å±¼å±ºå±»å±¾å·Ÿå¹µåº„å¼‚å¼šå½´å¿•å¿”å¿æ‰œæ‰žæ‰¤æ‰¡æ‰¦æ‰¢æ‰™æ‰ æ‰šæ‰¥æ—¯æ—®æœ¾æœ¹æœ¸æœ»æœºæœ¿æœ¼æœ³æ°˜æ±†æ±’æ±œæ±æ±Šæ±”汋\"],[\"ca40\",\"汌ç±ç‰žçŠ´çŠµçŽŽç”ªç™¿ç©µç½‘è‰¸è‰¼èŠ€è‰½è‰¿è™è¥¾é‚™é‚—é‚˜é‚›é‚”é˜¢é˜¤é˜ é˜£ä½–ä¼»ä½¢ä½‰ä½“ä½¤ä¼¾ä½§ä½’ä½Ÿä½ä½˜ä¼ä¼³ä¼¿ä½¡å†å†¹åˆœåˆžåˆ¡åŠåŠ®åŒ‰å£å²åŽŽåŽå°å·åªå‘”å‘…å™åœå¥å˜\"],[\"caa1\",\"å½å‘å‘å¨å¤å‘‡å›®å›§å›¥åå…åŒå‰å‹å’å¤†å¥€å¦¦å¦˜å¦ å¦—å¦Žå¦¢å¦å¦å¦§å¦¡å®Žå®’尨尪å²å²å²ˆå²‹å²‰å²’å²Šå²†å²“å²•å· å¸Šå¸Žåº‹åº‰åºŒåºˆåºå¼…å¼å½¸å½¶å¿’å¿‘å¿å¿å¿¨å¿®å¿³å¿¡å¿¤å¿£å¿ºå¿¯å¿·å¿»æ€€å¿´æˆºæŠƒæŠŒæŠŽæŠæŠ”æŠ‡æ‰±æ‰»æ‰ºæ‰°æŠæŠˆæ‰·æ‰½æ‰²æ‰´æ”·æ—°æ—´æ—³æ—²æ—µæ…æ‡\"],[\"cb40\",\"æ™æ•æŒæˆæææšæ‹æ¯æ°™æ°šæ±¸æ±§æ±«æ²„æ²‹æ²æ±±æ±¯æ±©æ²šæ±æ²‡æ²•沜汦汳汥汻沎ç´çºç‰£çŠ¿çŠ½ç‹ƒç‹†ç‹çŠºç‹…çŽ•çŽ—çŽ“çŽ”çŽ’ç”ºç”¹ç–”ç–•çšç¤½è€´è‚•è‚™è‚肒肜èŠèŠèŠ…èŠŽèŠ‘èŠ“\"],[\"cba1\",\"èŠŠèŠƒèŠ„è±¸è¿‰è¾¿é‚Ÿé‚¡é‚¥é‚žé‚§é‚ é˜°é˜¨é˜¯é˜ä¸³ä¾˜ä½¼ä¾…佽侀侇佶佴侉侄佷佌侗佪侚佹ä¾ä½¸ä¾ä¾œä¾”侞侒侂侕佫佮冞冼冾刵刲刳剆刱劼匊匋匼厒厔咇呿å’咑咂咈呫呺呾呥呬呴呦å’å‘¯å‘¡å‘ å’˜å‘£å‘§å‘¤å›·å›¹å¯å²åå«å±å°å¶åž€åµå»å³å´å¢\"],[\"cc40\",\"å¨å½å¤Œå¥…妵妺å§å§Žå¦²å§Œå§å¦¶å¦¼å§ƒå§–妱妽姀姈妴姇å¢å¥å®“å®•å±„å±‡å²®å²¤å² å²µå²¯å²¨å²¬å²Ÿå²£å²å²¢å²ªå²§å²å²¥å²¶å²°å²¦å¸—å¸”å¸™å¼¨å¼¢å¼£å¼¤å½”å¾‚å½¾å½½å¿žå¿¥æ€æ€¦æ€™æ€²æ€‹\"],[\"cca1\",\"æ€´æ€Šæ€—æ€³æ€šæ€žæ€¬æ€¢æ€æ€æ€®æ€“æ€‘æ€Œæ€‰æ€œæˆ”æˆ½æŠæŠ´æ‹‘æŠ¾æŠªæŠ¶æ‹ŠæŠ®æŠ³æŠ¯æŠ»æŠ©æŠ°æŠ¸æ”½æ–¨æ–»æ˜‰æ—¼æ˜„æ˜’æ˜ˆæ—»æ˜ƒæ˜‹æ˜æ˜…æ—½æ˜‘æ˜æ›¶æœŠæž…æ¬æžŽæž’æ¶æ»æž˜æž†æž„æ´æžæžŒæºæžŸæž‘æž™æžƒæ½æžæ¸æ¹æž”æ¬¥æ®€æ¾æ¯žæ°æ²“æ³¬æ³«æ³®æ³™æ²¶æ³”æ²æ³§æ²·æ³æ³‚æ²ºæ³ƒæ³†æ³æ³²\"],[\"cd40\",\"æ³’æ³æ²´æ²Šæ²æ²€æ³žæ³€æ´°æ³æ³‡æ²°æ³¹æ³æ³©æ³‘炔炘炅炓炆炄炑炖炂炚炃牪狖狋狘狉狜狒狔狚狌狑玤玡çŽçŽ¦çŽ¢çŽ çŽ¬çŽç“瓨甿畀甾疌疘皯盳盱盰盵矸矼矹矻矺\"],[\"cda1\",\"矷祂礿秅穸穻竻籵糽耵è‚肮肣肸肵è‚èˆ èŠ è‹€èŠ«èŠšèŠ˜èŠ›èŠµèŠ§èŠ®èŠ¼èŠžèŠºèŠ´èŠ¨èŠ¡èŠ©è‹‚èŠ¤è‹ƒèŠ¶èŠ¢è™°è™¯è™è™®è±–è¿’è¿‹è¿“è¿è¿–迕迗邲邴邯邳邰阹阽阼阺陃ä¿ä¿…俓侲俉俋ä¿ä¿”俜俙侻侳俛俇俖侺俀侹俬剄剉勀勂匽å¼åŽ—åŽ–åŽ™åŽ˜å’ºå’¡å’å’¥å“\"],[\"ce40\",\"哃èŒå’·å’®å“–å’¶å“…å“†å’ å‘°å’¼å’¢å’¾å‘²å“žå’°åžµåžžåžŸåž¤åžŒåž—åžåž›åž”垘åžåž™åž¥åžšåž•壴å¤å¥“姡姞姮娀姱å§å§ºå§½å§¼å§¶å§¤å§²å§·å§›å§©å§³å§µå§ 姾姴å§å®¨å±Œå³å³˜å³Œå³—峋峛\"],[\"cea1\",\"峞峚峉峇峊峖峓峔å³å³ˆå³†å³Žå³Ÿå³¸å·¹å¸¡å¸¢å¸£å¸ å¸¤åº°åº¤åº¢åº›åº£åº¥å¼‡å¼®å½–å¾†æ€·æ€¹æ”æ²æžæ…æ“æ‡æ‰æ›æŒæ€æ‚æŸæ€¤æ„æ˜æ¦æ®æ‰‚æ‰ƒæ‹æŒæŒ‹æ‹µæŒŽæŒƒæ‹«æ‹¹æŒæŒŒæ‹¸æ‹¶æŒ€æŒ“æŒ”æ‹ºæŒ•æ‹»æ‹°æ•æ•ƒæ–ªæ–¿æ˜¶æ˜¡æ˜²æ˜µæ˜œæ˜¦æ˜¢æ˜³æ˜«æ˜ºæ˜æ˜´æ˜¹æ˜®æœæœæŸæŸ²æŸˆæžº\"],[\"cf40\",\"æŸœæž»æŸ¸æŸ˜æŸ€æž·æŸ…æŸ«æŸ¤æŸŸæžµæŸæž³æŸ·æŸ¶æŸ®æŸ£æŸ‚æž¹æŸŽæŸ§æŸ°æž²æŸ¼æŸ†æŸæŸŒæž®æŸ¦æŸ›æŸºæŸ‰æŸŠæŸƒæŸªæŸ‹æ¬¨æ®‚æ®„æ®¶æ¯–æ¯˜æ¯ æ° æ°¡æ´¨æ´´æ´æ´Ÿæ´¼æ´¿æ´’æ´Šæ³šæ´³æ´„æ´™æ´ºæ´šæ´‘æ´€æ´æµ‚\"],[\"cfa1\",\"æ´æ´˜æ´·æ´ƒæ´æµ€æ´‡æ´ 洬洈洢洉æ´ç‚·ç‚Ÿç‚¾ç‚±ç‚°ç‚¡ç‚´ç‚µç‚©ç‰ç‰‰ç‰Šç‰¬ç‰°ç‰³ç‰®ç‹Šç‹¤ç‹¨ç‹«ç‹Ÿç‹ªç‹¦ç‹£çŽ…çŒç‚çˆç…玹玶玵玴ç«çŽ¿ç‡ç޾çƒç†çޏç‹ç“¬ç“®ç”®ç•‡ç•ˆç–§ç–ªç™¹ç›„çœˆçœƒçœ„çœ…çœŠç›·ç›»ç›ºçŸ§çŸ¨ç †ç ‘ç ’ç …ç ç ç Žç ‰ç ƒç “ç¥Šç¥Œç¥‹ç¥…ç¥„ç§•ç§ç§ç§–秎窀\"],[\"d040\",\"穾竑笀ç¬ç±ºç±¸ç±¹ç±¿ç²€ç²ç´ƒç´ˆç´ç½˜ç¾‘ç¾ç¾¾è€‡è€Žè€è€”è€·èƒ˜èƒ‡èƒ èƒ‘èƒˆèƒ‚èƒèƒ…胣胙胜胊胕胉èƒèƒ—胦èƒè‡¿èˆ¡èŠ”è‹™è‹¾è‹¹èŒ‡è‹¨èŒ€è‹•èŒºè‹«è‹–è‹´è‹¬è‹¡è‹²è‹µèŒŒè‹»è‹¶è‹°è‹ª\"],[\"d0a1\",\"è‹¤è‹ è‹ºè‹³è‹è™·è™´è™¼è™³è¡è¡Žè¡§è¡ªè¡©è§“è¨„è¨‡èµ²è¿£è¿¡è¿®è¿ éƒ±é‚½é‚¿éƒ•éƒ…é‚¾éƒ‡éƒ‹éƒˆé‡”é‡“é™”é™é™‘é™“é™Šé™Žå€žå€…å€‡å€“å€¢å€°å€›ä¿µä¿´å€³å€·å€¬ä¿¶ä¿·å€—å€œå€ å€§å€µå€¯å€±å€Žå…šå†”å†“å‡Šå‡„å‡…å‡ˆå‡Žå‰¡å‰šå‰’å‰žå‰Ÿå‰•å‰¢å‹åŒŽåŽžå”¦å“¢å”—å”’å“§å“³å“¤å”šå“¿å”„å”ˆå“«å”‘å”…å“±\"],[\"d140\",\"å”Šå“»å“·å“¸å“ å”Žå”ƒå”‹åœåœ‚åŸŒå ²åŸ•åŸ’åžºåŸ†åž½åž¼åž¸åž¶åž¿åŸ‡åŸåž¹åŸå¤Žå¥Šå¨™å¨–å¨å¨®å¨•å¨å¨—娊娞娳å¬å®§å®å®¬å°ƒå±–å±”å³¬å³¿å³®å³±å³·å´€å³¹å¸©å¸¨åº¨åº®åºªåº¬å¼³å¼°å½§ææšæ§\"],[\"d1a1\",\"ææ‚¢æ‚ˆæ‚€æ‚’æ‚æ‚æ‚ƒæ‚•æ‚›æ‚—æ‚‡æ‚œæ‚Žæˆ™æ‰†æ‹²æŒæ–æŒ¬æ„æ…æŒ¶æƒæ¤æŒ¹æ‹æŠæŒ¼æŒ©ææŒ´æ˜æ”æ™æŒæ‡æŒ³æšæ‘æŒ¸æ—æ€æˆæ•Šæ•†æ—†æ—ƒæ—„æ—‚æ™Šæ™Ÿæ™‡æ™‘æœ’æœ“æ Ÿæ šæ¡‰æ ²æ ³æ »æ¡‹æ¡æ –æ ±æ œæ µæ «æ æ ¯æ¡Žæ¡„æ ´æ æ ’æ ”æ ¦æ ¨æ ®æ¡æ ºæ ¥æ æ¬¬æ¬¯æ¬æ¬±æ¬´æè‚‚殈毦毤\"],[\"d240\",\"æ¯¨æ¯£æ¯¢æ¯§æ°¥æµºæµ£æµ¤æµ¶æ´æµ¡æ¶’æµ˜æµ¢æµæµ¯æ¶‘æ¶æ·¯æµ¿æ¶†æµžæµ§æµ 涗浰浼浟涂涘洯浨涋浾涀涄洖涃浻浽浵æ¶çƒœçƒ“烑çƒçƒ‹ç¼¹çƒ¢çƒ—çƒ’çƒžçƒ çƒ”çƒçƒ…烆烇烚烎烡牂牸\"],[\"d2a1\",\"牷牶猀狺狴狾狶狳狻çŒç“ç™ç¥ç–玼ç§ç£ç©çœç’ç›ç”ççšç—ç˜ç¨ç“žç“Ÿç“´ç“µç”¡ç•›ç•Ÿç–°ç—疻痄痀疿疶疺皊盉çœçœ›çœçœ“çœ’çœ£çœ‘çœ•çœ™çœšçœ¢çœ§ç £ç ¬ç ¢ç µç ¯ç ¨ç ®ç «ç ¡ç ©ç ³ç ªç ±ç¥”ç¥›ç¥ç¥œç¥“ç¥’ç¥‘ç§«ç§¬ç§ ç§®ç§ç§ªç§œç§žç§çª†çª‰çª…窋窌窊窇竘ç¬\"],[\"d340\",\"笄笓笅ç¬ç¬ˆç¬Šç¬Žç¬‰ç¬’粄粑粊粌粈ç²ç²…ç´žç´ç´‘紎紘紖紓紟紒ç´ç´Œç½œç½¡ç½žç½ ç½ç½›ç¾–羒翃翂翀耖耾耹胺胲胹胵è„胻脀èˆèˆ¯èˆ¥èŒ³èŒè„茙è‘茥è–茿è茦茜茢\"],[\"d3a1\",\"è‚èŽèŒ›èŒªèŒˆèŒ¼èèŒ–èŒ¤èŒ èŒ·èŒ¯èŒ©è‡è…èŒè“茞茬è‹èŒ§èˆè™“虒蚢蚨蚖èšèš‘蚞蚇蚗蚆蚋蚚蚅蚥蚙蚡蚧蚕蚘蚎èšèšèš”衃衄è¡è¡µè¡¶è¡²è¢€è¡±è¡¿è¡¯è¢ƒè¡¾è¡´è¡¼è¨’è±‡è±—è±»è²¤è²£èµ¶èµ¸è¶µè¶·è¶¶è»‘è»“è¿¾è¿µé€‚è¿¿è¿»é€„è¿¼è¿¶éƒ–éƒ éƒ™éƒšéƒ£éƒŸéƒ¥éƒ˜éƒ›éƒ—éƒœéƒ¤é…\"],[\"d440\",\"é…Žé…釕釢釚陜陟隼飣髟鬯乿å°åªå¡åžå å“å‹åå²åˆååå›åŠå¢å€•å…åŸå©å«å£å¤å†å€å®å³å—å‘å‡å‰«å‰å‰¬å‰®å‹–å‹“åŒåŽœå•µå•¶å”¼å•å•唴唪啑啢唶唵唰啒啅\"],[\"d4a1\",\"唌唲啥啎唹啈å”å”»å•€å•‹åœŠåœ‡åŸ»å ”åŸ¢åŸ¶åŸœåŸ´å €åŸåŸ½å ˆåŸ¸å ‹åŸ³åŸå ‡åŸ®åŸ£åŸ²åŸ¥åŸ¬åŸ¡å ŽåŸ¼å 埧å å ŒåŸ±åŸ©åŸ°å å „å¥œå© å©˜å©•å©§å©žå¨¸å¨µå©å©å©Ÿå©¥å©¬å©“婤婗婃å©å©’婄婛婈媎娾å©å¨¹å©Œå©°å©©å©‡å©‘婖婂婜å²å®å¯å¯€å±™å´žå´‹å´å´šå´ 崌崨å´å´¦å´¥å´\"],[\"d540\",\"å´°å´’å´£å´Ÿå´®å¸¾å¸´åº±åº´åº¹åº²åº³å¼¶å¼¸å¾›å¾–å¾Ÿæ‚Šæ‚æ‚†æ‚¾æ‚°æ‚ºæƒ“æƒ”æƒæƒ¤æƒ™æƒæƒˆæ‚±æƒ›æ‚·æƒŠæ‚¿æƒƒæƒæƒ€æŒ²æ¥æŽŠæŽ‚æ½æŽ½æŽžæŽæŽæŽ—æŽ«æŽŽæ¯æŽ‡æŽæ®æŽ¯æµæŽœææŽ®æ¼æŽ¤æŒ»æŽŸ\"],[\"d5a1\",\"æ¸æŽ…æŽæŽ‘æŽæ°æ•“æ—æ™¥æ™¡æ™›æ™™æ™œæ™¢æœ˜æ¡¹æ¢‡æ¢æ¢œæ¡æ¡®æ¢®æ¢«æ¥–æ¡¯æ¢£æ¢¬æ¢©æ¡µæ¡´æ¢²æ¢æ¡·æ¢’æ¡¼æ¡«æ¡²æ¢ªæ¢€æ¡±æ¡¾æ¢›æ¢–æ¢‹æ¢ æ¢‰æ¢¤æ¡¸æ¡»æ¢‘æ¢Œæ¢Šæ¡½æ¬¶æ¬³æ¬·æ¬¸æ®‘æ®æ®æ®Žæ®Œæ°ªæ·€æ¶«æ¶´æ¶³æ¹´æ¶¬æ·©æ·¢æ¶·æ·¶æ·”æ¸€æ·ˆæ· æ·Ÿæ·–æ¶¾æ·¥æ·œæ·æ·›æ·´æ·Šæ¶½æ·æ·°æ¶ºæ·•æ·‚æ·æ·‰\"],[\"d640\",\"æ·æ·²æ·“æ·½æ·—æ·æ·£æ¶»çƒºç„烷焗烴焌烰焄烳ç„烼烿焆焓焀烸烶焋焂焎牾牻牼牿çŒçŒ—猇猑猘猊猈狿çŒçŒžçŽˆç¶ç¸çµç„çç½ç‡ç€çºç¼ç¿çŒç‹ç´çˆç•¤ç•£ç—Žç—’ç—\"],[\"d6a1\",\"痋痌痑ç—çšçš‰ç›“眹眯çœçœ±çœ²çœ´çœ³çœ½çœ¥çœ»çœµç¡ˆç¡’硉ç¡ç¡Šç¡Œç ¦ç¡…ç¡ç¥¤ç¥§ç¥©ç¥ªç¥£ç¥«ç¥¡ç¦»ç§ºç§¸ç§¶ç§·çªçª”çªç¬µç‡ç¬´ç¬¥ç¬°ç¬¢ç¬¤ç¬³ç¬˜ç¬ªç¬ç¬±ç¬«ç¬ç¬¯ç¬²ç¬¸ç¬šç¬£ç²”粘粖粣紵紽紸紶紺絅紬紩çµçµ‡ç´¾ç´¿çµŠç´»ç´¨ç½£ç¾•羜ç¾ç¾›ç¿Šç¿‹ç¿ç¿ç¿‘翇ç¿ç¿‰è€Ÿ\"],[\"d740\",\"耞耛è‡èƒèˆè„˜è„¥è„™è„›è„脟脬脞脡脕脧è„脢舑舸舳舺舴舲艴èŽèŽ£èŽ¨èŽèºè³èޤè´èŽèŽèŽ•èŽ™èµèŽ”èŽ©è½èŽƒèŽŒèŽèŽ›èŽªèŽ‹è¾èŽ¥èŽ¯èŽˆèŽ—èŽ°è¿èŽ¦èŽ‡èŽ®è¶èŽšè™™è™–èš¿èš·\"],[\"d7a1\",\"蛂è›è›…蚺蚰蛈蚹蚳蚸蛌蚴蚻蚼蛃蚽蚾衒袉袕袨袢袪袚袑袡袟袘袧袙袛袗袤袬袌袓袎覂觖觙觕訰訧訬訞谹谻豜è±è±½è²¥èµ½èµ»èµ¹è¶¼è·‚趹趿è·è»˜è»žè»è»œè»—è» è»¡é€¤é€‹é€‘é€œé€Œé€¡éƒ¯éƒªéƒ°éƒ´éƒ²éƒ³éƒ”éƒ«éƒ¬éƒ©é…–é…˜é…šé…“é…•é‡¬é‡´é‡±é‡³é‡¸é‡¤é‡¹é‡ª\"],[\"d840\",\"釫釷釨釮镺閆閈陼é™é™«é™±é™¯éš¿éªé „飥馗傛傕傔傞傋傣傃傌傎å‚å¨å‚œå‚’傂傇兟凔匒匑厤厧喑喨喥å–啷噅喢喓喈å–å–µå–å–£å–’å–¤å•½å–Œå–¦å•¿å–•å–¡å–ŽåœŒå ©å ·\"],[\"d8a1\",\"å ™å žå §å £å ¨åŸµå¡ˆå ¥å œå ›å ³å ¿å ¶å ®å ¹å ¸å å ¬å »å¥¡åª¯åª”åªŸå©ºåª¢åªžå©¸åª¦å©¼åª¥åª¬åª•åª®å¨·åª„åªŠåª—åªƒåª‹åª©å©»å©½åªŒåªœåªåª“åªå¯ªå¯å¯‹å¯”寑寊寎尌尰崷嵃嵫åµåµ‹å´¿å´µåµ‘嵎嵕崳崺嵒崽崱嵙嵂崹嵉崸崼崲崶嵀嵅幄å¹å½˜å¾¦å¾¥å¾«æƒ‰æ‚¹æƒŒæƒ¢æƒŽæƒ„æ„”\"],[\"d940\",\"æƒ²æ„Šæ„–æ„…æƒµæ„“æƒ¸æƒ¼æƒ¾æƒæ„ƒæ„˜æ„æ„æƒ¿æ„„æ„‹æ‰ŠæŽ”æŽ±æŽ°æŽæ¥æ¨æ¯æƒæ’æ³æŠæ æ¶æ•æ²æµæ‘¡æŸæŽ¾ææœæ„æ˜æ“æ‚æ‡æŒæ‹æˆæ°æ—æ™æ”²æ•§æ•ªæ•¤æ•œæ•¨æ•¥æ–Œæ–æ–žæ–®æ—æ—’\"],[\"d9a1\",\"æ™¼æ™¬æ™»æš€æ™±æ™¹æ™ªæ™²æœæ¤Œæ£“æ¤„æ£œæ¤ªæ£¬æ£ªæ£±æ¤æ£–æ£·æ£«æ£¤æ£¶æ¤“æ¤æ£³æ£¡æ¤‡æ£Œæ¤ˆæ¥°æ¢´æ¤‘æ£¯æ£†æ¤”æ£¸æ£æ£½æ£¼æ£¨æ¤‹æ¤Šæ¤—æ£Žæ£ˆæ£æ£žæ£¦æ£´æ£‘æ¤†æ£”æ£©æ¤•æ¤¥æ£‡æ¬¹æ¬»æ¬¿æ¬¼æ®”æ®—æ®™æ®•æ®½æ¯°æ¯²æ¯³æ°°æ·¼æ¹†æ¹‡æ¸Ÿæ¹‰æºˆæ¸¼æ¸½æ¹…æ¹¢æ¸«æ¸¿æ¹æ¹æ¹³æ¸œæ¸³æ¹‹æ¹€æ¹‘渻渃渮湞\"],[\"da40\",\"æ¹¨æ¹œæ¹¡æ¸±æ¸¨æ¹ æ¹±æ¹«æ¸¹æ¸¢æ¸°æ¹“æ¹¥æ¸§æ¹¸æ¹¤æ¹·æ¹•æ¹¹æ¹’æ¹¦æ¸µæ¸¶æ¹šç„ ç„žç„¯çƒ»ç„®ç„±ç„£ç„¥ç„¢ç„²ç„Ÿç„¨ç„ºç„›ç‰‹ç‰šçŠˆçŠ‰çŠ†çŠ…çŠ‹çŒ’çŒ‹çŒ°çŒ¢çŒ±çŒ³çŒ§çŒ²çŒçŒ¦çŒ£çŒµçŒŒç®ç¬ç°ç«ç–\"],[\"daa1\",\"çšç¡çç±ç¤ç£çç©ç ç²ç“»ç”¯ç•¯ç•¬ç—§ç—šç—¡ç—¦ç—痟痤痗皕皒盚ç†ç‡ç„çç…çŠçŽç‹çŒçŸžçŸ¬ç¡ 硤硥硜ç¡ç¡±ç¡ªç¡®ç¡°ç¡©ç¡¨ç¡žç¡¢ç¥´ç¥³ç¥²ç¥°ç¨‚稊稃稌稄窙竦竤çŠç¬»ç„çˆçŒçŽç€ç˜ç…粢粞粨粡絘絯絣絓絖絧絪çµçµçµœçµ«çµ’絔絩絑絟絎缾缿罥\"],[\"db40\",\"ç½¦ç¾¢ç¾ ç¾¡ç¿—è‘èè胾胔腃腊腒è…腇脽è…脺臦臮臷臸臹舄舼舽舿艵茻èè¹è£è€è¨è’è§è¤è¼è¶èè†èˆè«è£èŽ¿èèè¥è˜è¿è¡è‹èŽè–èµè‰è‰èèžè‘è†è‚è³\"],[\"dba1\",\"è•èºè‡è‘èªè“èƒè¬è®è„è»è—è¢è›è›è¾è›˜è›¢è›¦è›“蛣蛚蛪è›è›«è›œè›¬è›©è›—蛨蛑衈衖衕袺裗袹袸裀袾袶袼袷袽袲è¤è£‰è¦•覘覗è§è§šè§›è©Žè©è¨¹è©™è©€è©—詘詄詅詒詈詑詊詌è©è±Ÿè²è²€è²ºè²¾è²°è²¹è²µè¶„趀趉跘跓è·è·‡è·–è·œè·è·•跙跈跗跅軯軷軺\"],[\"dc40\",\"軹軦軮軥軵軧軨軶軫軱軬軴軩é€é€´é€¯é„†é„¬é„„郿郼鄈郹郻é„é„€é„‡é„…é„ƒé…¡é…¤é…Ÿé…¢é… éˆéˆŠéˆ¥éˆƒéˆšéˆ¦éˆéˆŒéˆ€éˆ’釿釽鈆鈄鈧鈂鈜鈤鈙鈗鈅鈖镻é–é–Œé–隇陾隈\"],[\"dca1\",\"隉隃隀雂雈雃雱雰é¬é°é®é ‡é¢©é£«é³¦é»¹äºƒäº„亶傽傿僆傮僄僊傴僈僂傰åƒå‚ºå‚±åƒ‹åƒ‰å‚¶å‚¸å‡—剺剸剻剼嗃嗛嗌å—å—‹å—Šå—嗀嗔嗄嗩喿嗒å–å—嗕嗢嗖嗈嗲å—嗙嗂圔塓塨塤å¡å¡å¡‰å¡¯å¡•塎å¡å¡™å¡¥å¡›å ½å¡£å¡±å£¼å«‡å«„嫋媺媸媱媵媰媿嫈媻嫆\"],[\"dd40\",\"媷嫀嫊媴媶å«åª¹åªå¯–寘寙尟尳嵱嵣嵊嵥嵲嵬嵞嵨嵧嵢巰å¹å¹Žå¹Šå¹å¹‹å»…å»Œå»†å»‹å»‡å½€å¾¯å¾æƒ·æ…‰æ…Šæ„«æ……æ„¶æ„²æ„®æ…†æ„¯æ…æ„©æ…€æˆ é…¨æˆ£æˆ¥æˆ¤æ…æ±æ«ææ’æ‰æ æ¤\"],[\"dda1\",\"æ³æ‘ƒæŸæ•æ˜æ¹æ·æ¢æ£æŒæ¦æ°æ¨æ‘æµæ¯æŠæšæ‘€æ¥æ§æ‹æ§æ›æ®æ¡æŽæ•¯æ–’æ—“æš†æšŒæš•æšæš‹æšŠæš™æš”æ™¸æœ æ¥¦æ¥Ÿæ¤¸æ¥Žæ¥¢æ¥±æ¤¿æ¥…æ¥ªæ¤¹æ¥‚æ¥—æ¥™æ¥ºæ¥ˆæ¥‰æ¤µæ¥¬æ¤³æ¤½æ¥¥æ£°æ¥¸æ¤´æ¥©æ¥€æ¥¯æ¥„æ¥¶æ¥˜æ¥æ¥´æ¥Œæ¤»æ¥‹æ¤·æ¥œæ¥æ¥‘æ¤²æ¥’æ¤¯æ¥»æ¤¼æ†æ…æƒæ‚æˆææ®›ï¨æ¯»æ¯¼\"],[\"de40\",\"æ¯¹æ¯·æ¯¸æº›æ»–æ»ˆæºæ»€æºŸæº“æº”æº æº±æº¹æ»†æ»’æº½æ»æºžæ»‰æº·æº°æ»æº¦æ»æº²æº¾æ»ƒæ»œæ»˜æº™æº’æºŽæºæº¤æº¡æº¿æº³æ»æ»Šæº—æº®æº£ç…‡ç…”ç…’ç…£ç… ç…ç…煢煲煸煪煡煂煘煃煋煰煟ç…ç…“\"],[\"dea1\",\"ç…„ç…ç…šç‰çŠçŠŒçŠ‘çŠçŠŽçŒ¼ç‚猻猺ç€çŠç‰ç‘„瑊瑋瑒瑑瑗瑀ç‘ç‘瑎瑂瑆ç‘瑔瓡瓿瓾瓽ç”畹畷榃痯ç˜ç˜ƒç—·ç—¾ç—¼ç—¹ç—¸ç˜ç—»ç—¶ç—痵痽皙皵ç›ç•çŸç ç’ç–çšç©ç§ç”ç™ççŸ ç¢‡ç¢šç¢”ç¢ç¢„碕碅碆碡碃硹碙碀碖硻祼禂祽祹稑稘稙稒稗稕稢稓\"],[\"df40\",\"稛ç¨çª£çª¢çªžç««ç¦ç¤çç´ç©ç²ç¥ç³ç±ç°ç¡ç¸ç¶ç£ç²²ç²´ç²¯ç¶ˆç¶†ç¶€ç¶çµ¿ç¶…絺綎絻綃絼綌綔綄絽綒ç½ç½«ç½§ç½¨ç½¬ç¾¦ç¾¥ç¾§ç¿›ç¿œè€¡è…¤è… 腷腜腩腛腢腲朡腞腶腧腯\"],[\"dfa1\",\"è…„è…¡èˆè‰‰è‰„艀艂艅蓱è¿è‘–葶葹è’è’葥葑葀蒆葧è°è‘葽葚葙葴葳è‘蔇葞è·èºè´è‘ºè‘ƒè‘¸è²è‘…è©è™è‘‹è¯è‘‚è葟葰è¹è‘Žè‘Œè‘’葯蓅蒎è»è‘‡è¶è³è‘¨è‘¾è‘„è«è‘ 葔葮è‘蜋蜄蛷蜌蛺蛖蛵è蛸蜎蜉èœè›¶èœèœ…裖裋è£è£Žè£žè£›è£šè£Œè£è¦…覛觟觥觤\"],[\"e040\",\"è§¡è§ è§¢è§œè§¦è©¶èª†è©¿è©¡è¨¿è©·èª‚èª„è©µèªƒèªè©´è©ºè°¼è±‹è±Šè±¥è±¤è±¦è²†è²„貅賌赨赩趑趌趎è¶è¶è¶“è¶”è¶è¶’è·°è· è·¬è·±è·®è·è·©è·£è·¢è·§è·²è·«è·´è¼†è»¿è¼è¼€è¼…輇輈輂輋é’逿\"],[\"e0a1\",\"é„é‰é€½é„é„é„鄑鄖鄔鄋鄎酮酯鉈鉒鈰鈺鉦鈳鉥鉞銃鈮鉊鉆é‰é‰¬é‰é‰ 鉧鉯鈶鉡鉰鈱鉔鉣é‰é‰²é‰Žé‰“鉌鉖鈲閟閜閞閛隒隓隑隗雎雺雽雸雵é³é·é¸é²é é é Žé¢¬é£¶é£¹é¦¯é¦²é¦°é¦µéªéª«é›é³ªé³é³§éº€é»½åƒ¦åƒ”僗僨僳僛僪åƒåƒ¤åƒ“åƒ¬åƒ°åƒ¯åƒ£åƒ \"],[\"e140\",\"凘劀åŠå‹©å‹«åŒ°åŽ¬å˜§å˜•å˜Œå˜’å—¼å˜å˜œå˜å˜“嘂嗺å˜å˜„嗿嗹墉塼å¢å¢˜å¢†å¢å¡¿å¡´å¢‹å¡ºå¢‡å¢‘墎塶墂墈塻墔å¢å£¾å¥«å«œå«®å«¥å«•嫪嫚å«å««å«³å«¢å« 嫛嫬嫞å«å«™å«¨å«Ÿå·å¯ \"],[\"e1a1\",\"寣屣嶂嶀嵽嶆嵺å¶åµ·å¶Šå¶‰å¶ˆåµ¾åµ¼å¶åµ¹åµ¿å¹˜å¹™å¹“å»˜å»‘å»—å»Žå»œå»•å»™å»’å»”å½„å½ƒå½¯å¾¶æ„¬æ„¨æ…æ…žæ…±æ…³æ…’æ…“æ…²æ…¬æ†€æ…´æ…”æ…ºæ…›æ…¥æ„»æ…ªæ…¡æ…–æˆ©æˆ§æˆ«æ«æ‘æ‘›æ‘æ‘´æ‘¶æ‘²æ‘³æ‘½æ‘µæ‘¦æ’¦æ‘Žæ’‚æ‘žæ‘œæ‘‹æ‘“æ‘ æ‘æ‘¿æ¿æ‘¬æ‘«æ‘™æ‘¥æ‘·æ•³æ– æš¡æš æšŸæœ…æœ„æœ¢æ¦±æ¦¶æ§‰\"],[\"e240\",\"æ¦ æ§Žæ¦–æ¦°æ¦¬æ¦¼æ¦‘æ¦™æ¦Žæ¦§æ¦æ¦©æ¦¾æ¦¯æ¦¿æ§„æ¦½æ¦¤æ§”æ¦¹æ§Šæ¦šæ§æ¦³æ¦“æ¦ªæ¦¡æ¦žæ§™æ¦—æ¦æ§‚æ¦µæ¦¥æ§†æŠææ‹æ®žæ®Ÿæ® æ¯ƒæ¯„æ¯¾æ»Žæ»µæ»±æ¼ƒæ¼¥æ»¸æ¼·æ»»æ¼®æ¼‰æ½Žæ¼™æ¼šæ¼§æ¼˜æ¼»æ¼’æ»æ¼Š\"],[\"e2a1\",\"æ¼¶æ½³æ»¹æ»®æ¼æ½€æ¼°æ¼¼æ¼µæ»«æ¼‡æ¼Žæ½ƒæ¼…æ»½æ»¶æ¼¹æ¼œæ»¼æ¼ºæ¼Ÿæ¼æ¼žæ¼ˆæ¼¡ç†‡ç†ç†‰ç†€ç†…熂ç†ç…»ç††ç†ç†—牄牓犗犕犓çƒçç‘çŒç‘¢ç‘³ç‘±ç‘µç‘²ç‘§ç‘®ç”€ç”‚甃畽ç–瘖瘈瘌瘕瘑瘊瘔皸çžç¼çž…çž‚ç®çž€ç¯ç¾çžƒç¢²ç¢ªç¢´ç¢ç¢¨ç¡¾ç¢«ç¢žç¢¥ç¢ 碬碢碤禘禊禋禖禕禔禓\"],[\"e340\",\"禗禈禒ç¦ç¨«ç©Šç¨°ç¨¯ç¨¨ç¨¦çª¨çª«çª¬ç«®ç®ˆç®œç®Šç®‘ç®ç®–ç®ç®Œç®›ç®Žç®…箘劄箙箤箂粻粿粼粺綧綷緂綣綪ç·ç·€ç·…ç¶ç·Žç·„緆緋緌綯綹綖綼綟綦綮綩綡緉罳翢翣翥翞\"],[\"e3a1\",\"耤èèœè†‰è††è†ƒè†‡è†è†Œè†‹èˆ•蒗蒤蒡蒟蒺蓎蓂蒬蒮蒫蒹蒴è“è“蒪蒚蒱è“è’蒧蒻蒢蒔蓇蓌蒛蒩蒯蒨蓖蒘蒶è“è’ è“—è“”è“’è“›è’°è’‘è™¡èœ³èœ£èœ¨è«è€èœ®èœžèœ¡èœ™èœ›èƒèœ¬è蜾è†èœ 蜲蜪èœèœ¼èœ’蜺蜱蜵è‚蜦蜧蜸蜤蜚蜰蜑裷裧裱裲裺裾裮裼裶裻\"],[\"e440\",\"裰裬裫è¦è¦¡è¦Ÿè¦žè§©è§«è§¨èª«èª™èª‹èª’èªèª–谽豨豩賕è³è³—趖踉踂跿è¸è·½è¸Šè¸ƒè¸‡è¸†è¸…跾踀踄è¼è¼‘輎è¼é„£é„œé„ 鄢鄟é„é„šé„¤é„¡é„›é…ºé…²é…¹é…³éŠ¥éŠ¤é‰¶éŠ›é‰ºéŠ éŠ”éŠªéŠ\"],[\"e4a1\",\"銦銚銫鉹銗鉿銣鋮銎銂銕銢鉽銈銡銊銆銌銙銧鉾銇銩éŠéŠ‹éˆéšžéš¡é›¿é˜é½éºé¾éžƒéž€éž‚é»éž„éžé¿éŸŽéŸé –é¢é¢®é¤‚餀餇é¦é¦œé§ƒé¦¹é¦»é¦ºé§‚馽駇骱髣髧鬾鬿é é¡éŸé³±é³²é³µéº§åƒ¿å„ƒå„°åƒ¸å„†å„‡åƒ¶åƒ¾å„‹å„Œåƒ½å„ŠåŠ‹åŠŒå‹±å‹¯å™ˆå™‚å™Œå˜µå™å™Šå™‰å™†å™˜\"],[\"e540\",\"噚噀嘳嘽嘬嘾嘸嘪嘺圚墫å¢å¢±å¢ 墣墯墬墥墡壿嫿嫴嫽嫷嫶嬃嫸嬂嫹å¬å¬‡å¬…å¬å±§å¶™å¶—å¶Ÿå¶’å¶¢å¶“å¶•å¶ å¶œå¶¡å¶šå¶žå¹©å¹å¹ 幜緳廛廞廡彉徲憋憃慹憱憰憢憉\"],[\"e5a1\",\"æ†›æ†“æ†¯æ†æ†Ÿæ†’æ†ªæ†¡æ†æ…¦æ†³æˆæ‘®æ‘°æ’–æ’ æ’…æ’—æ’œæ’æ’‹æ’Šæ’Œæ’£æ’Ÿæ‘¨æ’±æ’˜æ•¶æ•ºæ•¹æ•»æ–²æ–³æšµæš°æš©æš²æš·æšªæš¯æ¨€æ¨†æ¨—æ§¥æ§¸æ¨•æ§±æ§¤æ¨ æ§¿æ§¬æ§¢æ¨›æ¨æ§¾æ¨§æ§²æ§®æ¨”æ§·æ§§æ©€æ¨ˆæ§¦æ§»æ¨æ§¼æ§«æ¨‰æ¨„æ¨˜æ¨¥æ¨æ§¶æ¨¦æ¨‡æ§´æ¨–æ‘æ®¥æ®£æ®¢æ®¦æ°æ°€æ¯¿æ°‚æ½æ¼¦æ½¾æ¾‡æ¿†æ¾’\"],[\"e640\",\"æ¾æ¾‰æ¾Œæ½¢æ½æ¾…æ½šæ¾–æ½¶æ½¬æ¾‚æ½•æ½²æ½’æ½æ½—æ¾”æ¾“æ½æ¼€æ½¡æ½«æ½½æ½§æ¾æ½“æ¾‹æ½©æ½¿æ¾•æ½£æ½·æ½ªæ½»ç†²ç†¯ç†›ç†°ç† ç†šç†©ç†µç†ç†¥ç†žç†¤ç†¡ç†ªç†œç†§ç†³çŠ˜çŠšç˜ç’çžçŸç çç›ç¡çšç™\"],[\"e6a1\",\"ç¢ç’‡ç’‰ç’Šç’†ç’瑽璅璈瑼瑹甈甇畾瘥瘞瘙ç˜ç˜œç˜£ç˜šç˜¨ç˜›çšœçšçšžçš›çžçžçž‰çžˆç£ç¢»ç£ç£Œç£‘ç£Žç£”ç£ˆç£ƒç£„ç£‰ç¦šç¦¡ç¦ ç¦œç¦¢ç¦›æ¶ç¨¹çª²çª´çª³ç®·ç¯‹ç®¾ç®¬ç¯Žç®¯ç®¹ç¯Šç®µç³…糈糌糋緷緛緪緧緗緡縃緺緦緶緱緰緮緟罶羬羰ç¾ç¿ç¿«ç¿ªç¿¬ç¿¦ç¿¨è¤è§è†£è†Ÿ\"],[\"e740\",\"膞膕膢膙膗舖è‰è‰“艒è‰è‰Žè‰‘蔤蔻è”蔀蔩蔎蔉è”蔟蔊蔧蔜蓻蔫蓺蔈蔌蓴蔪蓲蔕蓷蓫蓳蓼蔒蓪蓩蔖蓾蔨è”è”®è”‚è“½è”žè“¶è”±è”¦è“§è“¨è“°è“¯è“¹è”˜è” è”°è”‹è”™è”¯è™¢\"],[\"e7a1\",\"è–è£è¤è·èŸ¡è³è˜è”è›è’è¡èšè‘èžèèªèèŽèŸèè¯è¬èºè®èœè¥èè»èµè¢è§è©è¡šè¤…褌褔褋褗褘褙褆褖褑褎褉覢覤覣è§è§°è§¬è«è«†èª¸è«“諑諔諕誻諗誾諀諅諘諃誺誽諙谾è±è²è³¥è³Ÿè³™è³¨è³šè³è³§è¶ è¶œè¶¡è¶›è¸ è¸£è¸¥è¸¤è¸®è¸•è¸›è¸–è¸‘è¸™è¸¦è¸§\"],[\"e840\",\"è¸”è¸’è¸˜è¸“è¸œè¸—è¸šè¼¬è¼¤è¼˜è¼šè¼ è¼£è¼–è¼—é³é°é¯é§é«é„¯é„«é„©é„ªé„²é„¦é„®é†…醆醊é†é†‚醄醀é‹é‹ƒé‹„鋀鋙銶é‹é‹±é‹Ÿé‹˜é‹©é‹—é‹é‹Œé‹¯é‹‚鋨鋊鋈鋎鋦é‹é‹•é‹‰é‹ é‹žé‹§é‹‘é‹“\"],[\"e8a1\",\"銵鋡鋆銴镼閬閫閮閰隤隢雓霅霈霂éšéžŠéžŽéžˆéŸéŸé žé é ¦é ©é ¨é é ›é §é¢²é¤ˆé£ºé¤‘é¤”é¤–é¤—é¤•é§œé§é§é§“駔駎駉駖駘駋駗駌骳髬髫髳髲髱é†éƒé§é´é±é¦é¶éµé°é¨é¤é¬é³¼é³ºé³½é³¿é³·é´‡é´€é³¹é³»é´ˆé´…鴄麃黓é¼é¼å„œå„“儗儚儑凞匴å¡å™°å™ å™®\"],[\"e940\",\"噳噦噣å™å™²å™žå™·åœœåœ›å£ˆå¢½å£‰å¢¿å¢ºå£‚墼壆嬗嬙嬛嬡嬔嬓å¬å¬–å¬¨å¬šå¬ å¬žå¯¯å¶¬å¶±å¶©å¶§å¶µå¶°å¶®å¶ªå¶¨å¶²å¶å¶¯å¶´å¹§å¹¨å¹¦å¹¯å»©å»§å»¦å»¨å»¥å½‹å¾¼æ†æ†¨æ†–æ‡…æ†´æ‡†æ‡æ‡Œæ†º\"],[\"e9a1\",\"æ†¿æ†¸æ†Œæ“—æ“–æ“æ“æ“‰æ’½æ’‰æ“ƒæ“›æ“³æ“™æ”³æ•¿æ•¼æ–¢æ›ˆæš¾æ›€æ›Šæ›‹æ›æš½æš»æšºæ›Œæœ£æ¨´æ©¦æ©‰æ©§æ¨²æ©¨æ¨¾æ©æ©æ©¶æ©›æ©‘æ¨¨æ©šæ¨»æ¨¿æ©æ©ªæ©¤æ©æ©æ©”æ©¯æ©©æ© æ¨¼æ©žæ©–æ©•æ©æ©Žæ©†æ•æ”æ–æ®§æ®ªæ®«æ¯ˆæ¯‡æ°„æ°ƒæ°†æ¾æ¿‹æ¾£æ¿‡æ¾¼æ¿Žæ¿ˆæ½žæ¿„æ¾½æ¾žæ¿Šæ¾¨ç€„æ¾¥æ¾®æ¾ºæ¾¬æ¾ªæ¿æ¾¿æ¾¸\"],[\"ea40\",\"æ¾¢æ¿‰æ¾«æ¿æ¾¯æ¾²æ¾°ç‡…燂熿熸燖燀ç‡ç‡‹ç‡”燊燇ç‡ç†½ç‡˜ç†¼ç‡†ç‡šç‡›çŠçŠžç©ç¦ç§ç¬ç¥ç«çªç‘¿ç’šç’ 璔璒璕璡甋疀瘯ç˜ç˜±ç˜½ç˜³ç˜¼ç˜µç˜²ç˜°çš»ç›¦çžšçžçž¡çžœçž›çž¢çž£çž•çž™\"],[\"eaa1\",\"çž—ç£ç£©ç£¥ç£ªç£žç££ç£›ç£¡ç£¢ç£ç£Ÿç£ 禤穄穈穇窶窸窵窱窷篞篣篧ç¯ç¯•篥篚篨篹篔篪篢篜篫篘篟糒糔糗ç³ç³‘ç¸’ç¸¡ç¸—ç¸Œç¸Ÿç¸ ç¸“ç¸Žç¸œç¸•ç¸šç¸¢ç¸‹ç¸ç¸–ç¸ç¸”縥縤罃罻罼罺羱翯耪耩è¬è†±è†¦è†®è†¹è†µè†«è†°è†¬è†´è†²è†·è†§è‡²è‰•艖艗蕖蕅蕫è•蕓蕡蕘\"],[\"eb40\",\"蕀蕆蕤è•è•¢è•„è•‘è•‡è•£è”¾è•›è•±è•Žè•®è•µè••è•§è• è–Œè•¦è•蕔蕥蕬虣虥虤螛èžèž—螓螒螈èžèž–螘è¹èž‡èž£èž…èžèž‘èžèž„螔螜螚螉褞褦褰è¤è¤®è¤§è¤±è¤¢è¤©è¤£è¤¯è¤¬è¤Ÿè§±è« \"],[\"eba1\",\"諢諲諴諵è«è¬”諤諟諰諈諞諡諨諿諯諻貑貒è²è³µè³®è³±è³°è³³èµ¬èµ®è¶¥è¶§è¸³è¸¾è¸¸è¹€è¹…踶踼踽è¹è¸°è¸¿èº½è¼¶è¼®è¼µè¼²è¼¹è¼·è¼´é¶é¹é»é‚†éƒºé„³é„µé„¶é†“é†é†‘é†é†éŒ§éŒžéŒˆéŒŸéŒ†éŒéºéŒ¸éŒ¼éŒ›éŒ£éŒ’éŒé†éŒéŒŽéŒé‹‹éŒé‹ºéŒ¥éŒ“鋹鋷錴錂錤鋿錩錹錵錪錔錌\"],[\"ec40\",\"錋鋾錉錀鋻錖閼é—閾閹閺閶閿閵閽隩雔霋霒éœéž™éž—éž”éŸ°éŸ¸é µé ¯é ²é¤¤é¤Ÿé¤§é¤©é¦žé§®é§¬é§¥é§¤é§°é§£é§ªé§©é§§éª¹éª¿éª´éª»é«¶é«ºé«¹é«·é¬³é®€é®…é®‡é¼é¾é»é®‚鮓鮒é®éºé®•\"],[\"eca1\",\"é½é®ˆé´¥é´—é´ é´žé´”é´©é´é´˜é´¢é´é´™é´Ÿéºˆéº†éº‡éº®éºé»•é»–é»ºé¼’é¼½å„¦å„¥å„¢å„¤å„ å„©å‹´åš“åšŒåšåš†åš„嚃噾嚂噿åšå£–壔å£å£’å¬å¬¥å¬²å¬£å¬¬å¬§å¬¦å¬¯å¬®å»å¯±å¯²å¶·å¹¬å¹ªå¾¾å¾»æ‡ƒæ†µæ†¼æ‡§æ‡ æ‡¥æ‡¤æ‡¨æ‡žæ“¯æ“©æ“£æ“«æ“¤æ“¨æ–æ–€æ–¶æ—šæ›’æªæª–æªæª¥æª‰æªŸæª›æª¡æªžæª‡æª“檎\"],[\"ed40\",\"æª•æªƒæª¨æª¤æª‘æ©¿æª¦æªšæª…æªŒæª’æ›æ®æ°‰æ¿Œæ¾©æ¿´æ¿”æ¿£æ¿œæ¿æ¿§æ¿¦æ¿žæ¿²æ¿æ¿¢æ¿¨ç‡¡ç‡±ç‡¨ç‡²ç‡¤ç‡°ç‡¢ç³ç®ç¯ç’—璲璫ç’ç’ªç’璱璥璯ç”甑甒ç”疄癃癈癉癇皤盩瞵瞫瞲瞷瞶\"],[\"eda1\",\"瞴瞱瞨矰磳磽礂磻磼磲礅磹磾礄禫禨穜穛穖穘穔穚窾竀ç«ç°…ç°ç¯²ç°€ç¯¿ç¯»ç°Žç¯´ç°‹ç¯³ç°‚簉簃ç°ç¯¸ç¯½ç°†ç¯°ç¯±ç°ç°Šç³¨ç¸ç¸¼ç¹‚縳顈縸縪繉繀繇縩繌縰縻縶繄縺罅罿罾罽翴翲耬膻臄臌臊臅臇膼臩艛艚艜薃薀è–è–§è–•è– è–‹è–£è•»è–¤è–šè–ž\"],[\"ee40\",\"蕷蕼薉薡蕺蕸蕗薎薖薆è–è–™è–è–薢薂薈薅蕹蕶薘è–薟虨螾螪èžèŸ…螰螬螹螵螼螮蟉蟃蟂蟌螷螯蟄蟊螴螶螿螸螽蟞螲褵褳褼褾è¥è¥’褷襂è¦è¦¯è¦®è§²è§³è¬ž\"],[\"eea1\",\"謘謖謑謅謋謢è¬è¬’謕謇è¬è¬ˆè¬†è¬œè¬“謚è±è±°è±²è±±è±¯è²•貔賹赯蹎è¹è¹“è¹è¹Œè¹‡è½ƒè½€é‚…é¾é„¸é†šé†¢é†›é†™é†Ÿé†¡é†é† 鎡鎃鎯é¤é–é‡é¼é˜éœé¶é‰éé‘é ééŽéŒéªé¹é—é•é’éé±é·é»é¡éžé£é§éŽ€éŽé™é—‡é—€é—‰é—ƒé—…é–·éš®éš°éš¬éœ éœŸéœ˜éœéœ™éžšéž¡éžœ\"],[\"ef40\",\"éžžéžéŸ•韔韱é¡é¡„顊顉顅顃餥餫餬餪餳餲餯é¤é¤±é¤°é¦˜é¦£é¦¡é¨‚駺駴駷駹駸駶駻駽駾駼騃骾髾髽é¬é«¼éˆé®šé®¨é®žé®›é®¦é®¡é®¥é®¤é®†é®¢é® 鮯鴳éµéµ§é´¶é´®é´¯é´±é´¸é´°\"],[\"efa1\",\"鵅鵂鵃鴾鴷鵀鴽翵é´éºŠéº‰éºéº°é»ˆé»šé»»é»¿é¼¤é¼£é¼¢é½”é¾ å„±å„儮嚘嚜嚗嚚åšåš™å¥°å¬¼å±©å±ªå·€å¹å¹®æ‡˜æ‡Ÿæ‡æ‡®æ‡±æ‡ªæ‡°æ‡«æ‡–æ‡©æ“¿æ”„æ“½æ“¸æ”æ”ƒæ“¼æ–”æ—›æ›šæ››æ›˜æ«…æª¹æª½æ«¡æ«†æªºæª¶æª·æ«‡æª´æªæžæ¯‰æ°‹ç€‡ç€Œç€ç€ç€…瀔瀎濿瀀濻瀦濼濷瀊çˆç‡¿ç‡¹çˆƒç‡½ç¶\"],[\"f040\",\"璸瓀璵ç“璾璶璻瓂甔甓癜癤癙ç™ç™“癗癚皦皽盬矂瞺磿礌礓礔礉ç¤ç¤’礑ç¦ç¦¬ç©Ÿç°œç°©ç°™ç° ç°Ÿç°ç°ç°¦ç°¨ç°¢ç°¥ç°°ç¹œç¹ç¹–ç¹£ç¹˜ç¹¢ç¹Ÿç¹‘ç¹ ç¹—ç¹“ç¾µç¾³ç¿·ç¿¸èµè‡‘臒\"],[\"f0a1\",\"è‡è‰Ÿè‰žè–´è—†è—€è—ƒè—‚薳薵薽藇藄薿藋藎藈藅薱薶藒蘤薸薷薾虩蟧蟦蟢蟛蟫蟪蟥蟟蟳蟤蟔蟜蟓èŸèŸ˜èŸ£èž¤èŸ—蟙è 蟴蟨èŸè¥“襋è¥è¥Œè¥†è¥è¥‘襉謪謧謣謳謰謵è‡è¬¯è¬¼è¬¾è¬±è¬¥è¬·è¬¦è¬¶è¬®è¬¤è¬»è¬½è¬ºè±‚è±µè²™è²˜è²—è³¾è´„è´‚è´€è¹œè¹¢è¹ è¹—è¹–è¹žè¹¥è¹§\"],[\"f140\",\"蹛蹚蹡è¹è¹©è¹”轆轇轈轋鄨鄺鄻鄾醨醥醧醯醪鎵鎌鎒鎷鎛éŽéŽ‰éŽ§éŽŽéŽªéŽžéŽ¦éŽ•éŽˆéŽ™éŽŸéŽéŽ±éŽ‘éŽ²éŽ¤éŽ¨éŽ´éŽ£éŽ¥é—’é—“é—‘éš³é›—é›šå·‚é›Ÿé›˜é›éœ£éœ¢éœ¥éž¬éž®éž¨éž«éž¤éžª\"],[\"f1a1\",\"鞢鞥韗韙韖韘韺é¡é¡‘顒颸é¥é¤¼é¤ºé¨é¨‹é¨‰é¨é¨„騑騊騅騇騆髀髜鬈鬄鬅鬩鬵éŠéŒé‹é¯‡é¯†é¯ƒé®¿é¯é®µé®¸é¯“鮶鯄鮹鮽鵜鵓éµéµŠéµ›éµ‹éµ™éµ–鵌鵗鵒鵔鵟鵘鵚麎麌黟é¼é¼€é¼–鼥鼫鼪鼩鼨齌齕儴儵劖勷厴嚫åšåš¦åš§åšªåš¬å£šå£å£›å¤’嬽嬾嬿巃幰\"],[\"f240\",\"å¾¿æ‡»æ”‡æ”æ”æ”‰æ”Œæ”Žæ–„æ—žæ—æ›žæ«§æ« æ«Œæ«‘æ«™æ«‹æ«Ÿæ«œæ«æ««æ«æ«æ«žæ æ®°æ°Œç€™ç€§ç€ ç€–ç€«ç€¡ç€¢ç€£ç€©ç€—ç€¤ç€œç€ªçˆŒçˆŠçˆ‡çˆ‚çˆ…çŠ¥çŠ¦çŠ¤çŠ£çŠ¡ç“‹ç“…ç’·ç“ƒç”–ç™ çŸ‰çŸŠçŸ„çŸ±ç¤ç¤›\"],[\"f2a1\",\"礡礜礗礞禰穧穨簳簼簹簬簻糬糪繶繵繸繰繷繯繺繲繴繨罋罊羃羆羷翽翾è¸è‡—臕艤艡艣藫藱è—è—™è—¡è—¨è—šè——è—¬è—²è—¸è—˜è—Ÿè—£è—œè—‘è—°è—¦è—¯è—žè—¢è €èŸºè ƒèŸ¶èŸ·è ‰è Œè ‹è †èŸ¼è ˆèŸ¿è Šè ‚è¥¢è¥šè¥›è¥—è¥¡è¥œè¥˜è¥è¥™è¦ˆè¦·è¦¶è§¶èèˆèŠè€è“è–è”è‹è•\"],[\"f340\",\"è‘è‚è’è—豃豷豶貚贆贇贉趬趪è¶è¶«è¹è¹¸è¹³è¹ªè¹¯è¹»è»‚轒轑è½è½è½“辴酀鄿醰é†éžé‡éé‚éšéé¹é¬éŒé™éŽ©é¦éŠé”é®é£é•é„éŽé€é’é§é•½é—šé—›é›¡éœ©éœ«éœ¬éœ¨éœ¦\"],[\"f3a1\",\"鞳鞷鞶éŸéŸžéŸŸé¡œé¡™é¡é¡—颿颽颻颾饈饇饃馦馧騚騕騥é¨é¨¤é¨›é¨¢é¨ é¨§é¨£é¨žé¨œé¨”é«‚é¬‹é¬Šé¬Žé¬Œé¬·é¯ªé¯«é¯ é¯žé¯¤é¯¦é¯¢é¯°é¯”é¯—é¯¬é¯œé¯™é¯¥é¯•é¯¡é¯šéµ·é¶é¶Šé¶„鶈鵱鶀鵸鶆鶋鶌鵽鵫鵴鵵鵰鵩鶅鵳鵻鶂鵯鵹鵿鶇鵨麔麑黀黼é¼é½€é½é½é½–齗齘匷嚲\"],[\"f440\",\"嚵嚳壣å…å·†å·‡å»®å»¯å¿€å¿æ‡¹æ”—攖攕攓旟曨曣曤櫳櫰櫪櫨櫹櫱櫮櫯瀼瀵瀯瀷瀴瀱ç‚瀸瀿瀺瀹ç€ç€»ç€³ç爓爔犨ç½ç¼ç’ºçš«çšªçš¾ç›çŸŒçŸŽçŸçŸçŸ²ç¤¥ç¤£ç¤§ç¤¨ç¤¤ç¤©\"],[\"f4a1\",\"禲穮穬ç©ç«·ç±‰ç±ˆç±Šç±‡ç±…糮繻繾çºçº€ç¾ºç¿¿è¹è‡›è‡™èˆ‹è‰¨è‰©è˜¢è—¿è˜è—¾è˜›è˜€è—¶è˜„è˜‰è˜…è˜Œè—½è ™è è ‘è —è “è –è¥£è¥¦è¦¹è§·è èªèè¨è£è¥è§è趮躆躈躄轙轖轗轕轘轚é‚é…ƒé…醷醵醲醳é‹é“é»é éé”é¾é•éé¨é™ééµé€é·é‡éŽé–é’éºé‰é¸éŠé¿\"],[\"f540\",\"é¼éŒé¶é‘é†é—žé— é—Ÿéœ®éœ¯éž¹éž»éŸ½éŸ¾é¡ é¡¢é¡£é¡Ÿé£é£‚é¥é¥Žé¥™é¥Œé¥‹é¥“騲騴騱騬騪騶騩騮騸é¨é«‡é«Šé«†é¬é¬’鬑鰋鰈鯷鰅鰒鯸鱀鰇鰎鰆鰗鰔鰉鶟鶙鶤é¶é¶’鶘é¶é¶›\"],[\"f5a1\",\"é¶ é¶”é¶œé¶ªé¶—é¶¡é¶šé¶¢é¶¨é¶žé¶£é¶¿é¶©é¶–é¶¦é¶§éº™éº›éºšé»¥é»¤é»§é»¦é¼°é¼®é½›é½ é½žé½é½™é¾‘儺儹劘劗囃嚽嚾åˆå‡å·‹å·å»±æ‡½æ”›æ¬‚櫼欃櫸欀çƒç„çŠçˆç‰ç…ç†çˆçˆšçˆ™ç¾ç”—癪çŸç¤ç¤±ç¤¯ç±”籓糲纊纇纈纋纆çºç½ç¾»è€°è‡è˜˜è˜ªè˜¦è˜Ÿè˜£è˜œè˜™è˜§è˜®è˜¡è˜ 蘩蘞蘥\"],[\"f640\",\"è ©è è ›è è ¤è œè «è¡Šè¥è¥©è¥®è¥«è§ºè¹è¸è…èºè»è´è´”趯躎躌轞轛è½é…†é…„酅醹é¿é»é¶é©é½é¼é°é¹éªé·é¬é‘€é±é—¥é—¤é—£éœµéœºéž¿éŸ¡é¡¤é£‰é£†é£€é¥˜é¥–騹騽驆驄驂é©é¨º\"],[\"f6a1\",\"騿é«é¬•鬗鬘鬖鬺é’é°«é°é°œé°¬é°£é°¨é°©é°¤é°¡é¶·é¶¶é¶¼é·é·‡é·Šé·é¶¾é·…鷃鶻鶵鷎鶹鶺鶬鷈鶱é¶é·Œé¶³é·é¶²é¹ºéºœé»«é»®é»é¼›é¼˜é¼šé¼±é½Žé½¥é½¤é¾’亹囆囅囋奱å‹åŒå·•å·‘å»²æ”¡æ” æ”¦æ”¢æ¬‹æ¬ˆæ¬‰æ°ç•ç–ç—ç’爞爟犩ç¿ç“˜ç“•瓙瓗ç™çšç¤µç¦´ç©°ç©±ç±—籜籙籛籚\"],[\"f740\",\"糴糱纑ç½ç¾‡è‡žè‰«è˜´è˜µè˜³è˜¬è˜²è˜¶è ¬è ¨è ¦è ªè ¥è¥±è¦¿è¦¾è§»è¾è®„讂讆讅è¿è´•躕躔躚躒èºèº–èº—è½ è½¢é…‡é‘Œé‘鑊鑋é‘鑇鑅鑈鑉鑆霿韣顪顩飋饔饛驎驓驔驌é©é©ˆé©Š\"],[\"f7a1\",\"驉驒é©é«é¬™é¬«é¬»é–é•鱆鱈鰿鱄鰹鰳é±é°¼é°·é°´é°²é°½é°¶é·›é·’é·žé·šé·‹é·é·œé·‘鷟鷩鷙鷘鷖鷵鷕é·éº¶é»°é¼µé¼³é¼²é½‚齫龕龢儽劙壨壧奲åå·˜è ¯å½æˆæˆƒæˆ„æ”©æ”¥æ––æ›«æ¬‘æ¬’æ¬æ¯Šç›çšçˆ¢çŽ‚çŽçŽƒç™°çŸ”ç±§ç±¦çº•è‰¬è˜ºè™€è˜¹è˜¼è˜±è˜»è˜¾è °è ²è ®è ³è¥¶è¥´è¥³è§¾\"],[\"f840\",\"讌讎讋讈豅贙躘轤轣醼鑢鑕é‘é‘—é‘žéŸ„éŸ…é €é©–é©™é¬žé¬Ÿé¬ é±’é±˜é±é±Šé±é±‹é±•鱙鱌鱎鷻鷷鷯鷣鷫鷸鷤鷶鷡鷮鷦鷲鷰鷢鷬鷴鷳鷨é·é»‚é»é»²é»³é¼†é¼œé¼¸é¼·é¼¶é½ƒé½\"],[\"f8a1\",\"齱齰齮齯囓å›åŽå±æ”æ›æ›®æ¬“çŸç¡çç 爣瓛瓥矕礸禷禶籪纗羉è‰è™ƒè ¸è ·è µè¡‹è®”è®•èºžèºŸèº èºé†¾é†½é‡‚鑫鑨鑩雥é†éƒé‡éŸ‡éŸ¥é©žé«•é™é±£é±§é±¦é±¢é±žé± 鸂鷾鸇鸃鸆鸅鸀é¸é¸‰é·¿é·½é¸„éº é¼žé½†é½´é½µé½¶å›”æ”®æ–¸æ¬˜æ¬™æ¬—æ¬šç¢çˆ¦çŠªçŸ˜çŸ™ç¤¹ç±©ç±«ç³¶çºš\"],[\"f940\",\"çº˜çº›çº™è‡ è‡¡è™†è™‡è™ˆè¥¹è¥ºè¥¼è¥»è§¿è®˜è®™èº¥èº¤èº£é‘®é‘鑯鑱鑳é‰é¡²é¥Ÿé±¨é±®é±é¸‹é¸é¸é¸é¸’鸑麡黵鼉齇齸齻齺齹圞ç¦ç±¯è ¼è¶²èº¦é‡ƒé‘´é‘¸é‘¶é‘µé© 鱴鱳鱱鱵鸔鸓黶鼊\"],[\"f9a1\",\"龤ç¨ç¥ç³·è™ªè ¾è ½è ¿è®žè²œèº©è»‰é‹é¡³é¡´é£Œé¥¡é¦«é©¤é©¦é©§é¬¤é¸•鸗齈戇欞爧虌躨钂钀é’驩驨鬮鸙爩虋讟钃鱹麷癵驫鱺é¸ç©çªéº¤é½¾é½‰é¾˜ç¢éйè£å¢»æ’粧嫺╔╦╗╠╬╣╚╩â•╒╤╕╞╪╡╘╧╛╓╥╖╟╫╢╙╨╜║â•â•╮╰╯▓\"]]"); -function _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } +/***/ }), +/* 825 */ +/***/ (function(module) { -function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } +module.exports = JSON.parse("[[\"8740\",\"ä°ä°²ä˜ƒä–¦ä•¸ð§‰§äµ·ä–³ð§²±ä³¢ð§³…㮕䜶ä„䱇䱀𤊿𣘗ð§’𦺋𧃒䱗ðª‘ä䗚䲅𧱬䴇䪤䚡𦬣爥𥩔𡩣𣸆𣽡æ™å›»\"],[\"8767\",\"ç¶•å¤ð¨®¹ã·´éœ´ð§¯¯å¯›ð¡µžåª¤ã˜¥ð©º°å«‘å®·å³¼æ®è–“ð©¥…ç‘¡ç’㡵𡵓𣚞𦀡㻬\"],[\"87a1\",\"𥣞㫵竼龗𤅡ð¨¤ð£‡ªð ªŠð£‰žäŒŠè’„é¾–é¯ä¤°è˜“墖éŠéˆ˜ç§ç¨²æ™ 権è¢ç‘Œç¯…枂稬å‰é†ã“¦ç„ð¥¶¹ç“†é¿‡åž³ä¤¯å‘Œä„±ð£šŽå ˜ç©²ð§¥è®äš®ð¦ºˆä†ð¥¶™ç®®ð¢’¼é¿ˆð¢“𢓉𢓌鿉蔄𣖻䂴鿊䓡𪷿æ‹ç®é¿‹\"],[\"8840\",\"㇀\",4,\"𠄌㇅𠃑ð ƒã‡†ã‡‡ð ƒ‹ð¡¿¨ã‡ˆð ƒŠã‡‰ã‡Šã‡‹ã‡Œð „Žã‡ã‡ŽÄ€ÃÇÀĒÉĚÈŌÓǑÒ࿿Ê̄Ế࿿Ê̌ỀÊÄáǎà ɑēéěèīÃÇìÅóǒòūúǔùǖǘǚ\"],[\"88a1\",\"ǜü࿿ê̄ế࿿ê̌á»ÃªÉ¡âšâ›\"],[\"8940\",\"𪎩𡅅\"],[\"8943\",\"攊\"],[\"8946\",\"丽æ»éµŽé‡Ÿ\"],[\"894c\",\"𧜵撑会伨侨兖兴农凤务动医åŽå‘å˜å›¢å£°å¤„备夲头å¦å®žå®Ÿå²šåº†æ€»æ–‰æŸ¾æ „桥济炼电纤纬纺织ç»ç»Ÿç¼†ç¼·è‰ºè‹è¯è§†è®¾è¯¢è½¦è½§è½®\"],[\"89a1\",\"ç‘ç³¼ç·æ¥†ç«‰åˆ§\"],[\"89ab\",\"醌碸酞肼\"],[\"89b0\",\"贋胶𠧧\"],[\"89b5\",\"肟黇ä³é·‰é¸Œä°¾ð©·¶ð§€Žé¸Šðª„³ã—\"],[\"89c1\",\"溚舾甙\"],[\"89c5\",\"䤑马éªé¾™ç¦‡ð¨‘¬ð¡·Šð —𢫦两äºäº€äº‡äº¿ä»«ä¼·ã‘Œä¾½ã¹ˆå€ƒå‚ˆã‘½ã’“㒥円夅凛凼刅争剹åŠåŒ§ã—‡åŽ©ã•‘åŽ°ã•“å‚å£ã•㕲ãšå’“咣咴咹å“哯唘唣唨㖘唿㖥㖿嗗㗅\"],[\"8a40\",\"𧶄唥\"],[\"8a43\",\"𠱂𠴕𥄫å–𢳆㧬ð 蹆𤶸𩓥ä“𨂾çºð¢°¸ã¨´äŸ•ð¨…𦧲𤷪æ“𠵼𠾴𠳕𡃴æ’蹾𠺖𠰋𠽤𢲩𨉖𤓓\"],[\"8a64\",\"𠵆ð©©ð¨ƒ©äŸ´ð¤º§ð¢³‚骲㩧𩗴ã¿ã”†ð¥‹‡ð©Ÿ”ð§£ˆð¢µ„éµ®é •\"],[\"8a76\",\"ä™ð¦‚¥æ’´å“£ð¢µŒð¢¯Šð¡·ã§»ð¡¯\"],[\"8aa1\",\"𦛚𦜖𧦠擪ð¥’𠱃蹨𢆡ð¨Œð œ±\"],[\"8aac\",\"ä ‹ð †©ã¿ºå¡³ð¢¶\"],[\"8ab2\",\"𤗈𠓼𦂗𠽌𠶖啹䂻䎺\"],[\"8abb\",\"䪴𢩦ð¡‚膪飵𠶜æ¹ã§¾ð¢µè·€å𡿑¼ã¹ƒ\"],[\"8ac9\",\"ðª˜ð ¸‰ð¢«ð¢³‰\"],[\"8ace\",\"𡃈𣧂㦒㨆𨊛㕸𥹉𢃇噒𠼱𢲲𩜠㒼氽𤸻\"],[\"8adf\",\"𧕴𢺋𢈈𪙛ð¨³ð ¹ºð °´ð¦ œç¾“ð¡ƒð¢ ƒð¢¤¹ã—»ð¥‡£ð ºŒð ¾ð ºªã¾“𠼰𠵇ð¡…𠹌\"],[\"8af6\",\"𠺫𠮩𠵈𡃀𡄽㿹𢚖æ²ð ¾\"],[\"8b40\",\"ð£´ð§˜¹ð¢¯Žð µ¾ð µ¿ð¢±‘𢱕㨘𠺘𡃇𠼮𪘲ð¦ð¨³’𨶙𨳊閪哌苄喹\"],[\"8b55\",\"𩻃鰦骶ð§žð¢·®ç…€è…胬尜𦕲脴㞗åŸð¨‚½é†¶ð »ºð ¸ð ¹·ð »»ã—𤷫㘉𠳖嚯𢞵𡃉ð ¸ð ¹¸ð¡¸ð¡…ˆð¨ˆ‡ð¡‘•ð ¹¹ð¤¹ð¢¶¤å©”ð¡€ð¡€žð¡ƒµð¡ƒ¶åžœð ¸‘\"],[\"8ba1\",\"ð§š”ð¨‹ð ¾µð ¹»ð¥…¾ãœƒð ¾¶ð¡†€ð¥‹˜ðªŠ½ð¤§šð¡ ºð¤…·ð¨‰¼å¢™å‰¨ã˜šð¥œ½ç®²å¨ä €ä¬¬é¼§ä§§é°Ÿé®ð¥´ð£„½å—»ã—²åš‰ä¸¨å¤‚ð¡¯ð¯¡¸é‘ð ‚†ä¹›äº»ã”¾å°£å½‘å¿„ã£ºæ‰Œæ”µæºæ°µæ°ºç¬çˆ«ä¸¬çŠð¤£©ç½’礻糹罓𦉪ã“\"],[\"8bde\",\"ð¦‹è€‚肀𦘒𦥑å衤è§ð§¢²è® è´é’…镸长门ð¨¸éŸ¦é¡µé£Žé£žé¥£ð© 鱼鸟黄æ¯ï¤‡ä¸·ð ‚‡é˜æˆ·é’¢\"],[\"8c40\",\"倻淾𩱳龦㷉è¢ð¤…Žç·å³µä¬ ð¥‡ã•™ð¥´°æ„¢ð¨¨²è¾§é‡¶ç†‘朙玺ð£Šðª„‡ã²‹ð¡¦€ä¬ç£¤ç‚冮ð¨œä€‰æ©£ðªŠºäˆ£è˜ð ©¯ç¨ªð©¥‡ð¨«ªé•ç匤ð¢¾é´ç›™ð¨§£é¾§çŸäº£ä¿°å‚¼ä¸¯ä¼—龨å´ç¶‹å¢’å£ð¡¶¶åº’庙忂𢜒斋\"],[\"8ca1\",\"ð£¹æ¤™æ©ƒð£±£æ³¿\"],[\"8ca7\",\"爀𤔅玌㻛𤨓嬕璹讃𥲤𥚕窓篬糃繬苸薗龩è¢é¾ªèº¹é¾«è¿è•Ÿé§ 鈡龬𨶹ð¡¿ä±äŠ¢å¨š\"],[\"8cc9\",\"顨æ«ä‰¶åœ½\"],[\"8cce\",\"藖𤥻芿ð§„ä²ð¦µ´åµ»ð¦¬•𦾾é¾é¾®å®–龯曧繛湗秊㶈䓃𣉖𢞖䎚䔶\"],[\"8ce6\",\"峕𣬚諹屸㴒𣕑嵸龲煗䕘𤃬𡸣䱷㥸㑊𠆤ð¦±è«Œä¾´ð ˆ¹å¦¿è…¬é¡–𩣺弻\"],[\"8d40\",\"𠮟\"],[\"8d42\",\"ð¢‡ð¨¥ä„‚äš»ð©¹ã¼‡é¾³ðª†µäƒ¸ãŸ–䛷𦱆䅼𨚲ð§¿ä•㣔𥒚䕡䔛䶉䱻䵶䗪㿈ð¤¬ã™¡ä“žä’½ä‡å´¾åµˆåµ–ã·¼ã 嶤嶹ã ã ¸å¹‚åº½å¼¥å¾ƒã¤ˆã¤”ã¤¿ã¥æƒ—愽峥㦉憷憹æ‡ã¦¸æˆ¬æŠæ‹¥æŒ˜ã§¸åš±\"],[\"8da1\",\"ã¨ƒæ¢æ»æ‡æ‘šã©‹æ“€å´•å˜¡é¾Ÿãª—æ–†ãª½æ—¿æ™“ã«²æš’ã¬¢æœ–ã‚æž¤æ €ã˜æ¡Šæ¢„ã²ã±ã»æ¤‰æ¥ƒç‰œæ¥¤æ¦Ÿæ¦…ã®¼æ§–ã¯æ©¥æ©´æ©±æª‚ã¯¬æª™ã¯²æª«æªµæ«”æ«¶æ®æ¯æ¯ªæ±µæ²ªã³‹æ´‚洆洦æ¶ã³¯æ¶¤æ¶±æ¸•æ¸˜æ¸©æº†ð¨§€æº»æ»¢æ»šé½¿æ»¨æ»©æ¼¤æ¼´ãµ†ð£½æ¾æ¾¾ãµªãµµç†·å²™ã¶Šç€¬ã¶‘çç”ç¯ç¿ç‚‰ð Œ¥ä㗱𠻘\"],[\"8e40\",\"𣻗垾𦻓焾𥟠㙎榢𨯩å´ç©‰ð¥£¡ð©“™ç©¥ç©½ð¥¦¬çª»çª°ç«‚竃燑ð¦’䇊竚ç«ç«ªä‡¯å’²ð¥°ç¬‹ç•笩𥌎𥳾箢ç¯èŽœð¥®´ð¦±¿ç¯è¡ç®’箸𥴠ã¶ð¥±¥è’’篺簆簵ð¥³ç±„粃𤢂粦晽𤕸糉糇糦籴糳糵糎\"],[\"8ea1\",\"ç¹§ä”𦹄çµð¦»–ç’綉綫焵綳緒ð¤—𦀩緤㴓緵𡟹緥ð¨ç¸ð¦„¡ð¦…šç¹®çº’䌫鑬縧罀ç½ç½‡ç¤¶ð¦‹é§¡ç¾—ð¦‘羣𡙡ð ¨ä•œð£¦ä”ƒð¨Œºç¿ºð¦’‰è€…耈è€è€¨è€¯ðª‚‡ð¦³ƒè€»è€¼è¡ð¢œ”䦉𦘦𣷣𦛨朥肧𨩈脇脚墰𢛶汿𦒘𤾸擧𡒊舘𡡞橓𤩥𤪕䑺舩ð ¬ð¦©’𣵾俹𡓽蓢è¢ð¦¬Šð¤¦§ð£”°ð¡³ð£·¸èŠªæ¤›ð¯¦”ä‡›\"],[\"8f40\",\"è•‹è‹èŒšð ¸–𡞴ã›ð£…½ð£•šè‰»è‹¢èŒ˜ð£º‹ð¦¶£ð¦¬…𦮗𣗎㶿èŒå—¬èŽ…ä”‹ð¦¶¥èŽ¬èè“㑾𦻔橗蕚㒖𦹂𢻯葘𥯤葱㷓䓤檧葊𣲵祘蒨𦮖𦹷𦹃蓞èèŽ‘ä’ è’“è“¤ð¥²‘ä‰€ð¥³€ä•ƒè”´å«²ð¦º™ä”§è•³ä”–æž¿è˜–\"],[\"8fa1\",\"𨘥𨘻è—𧂈蘂𡖂ð§ƒð¯¦²ä•ªè˜¨ã™ˆð¡¢¢å·ð§Žšè™¾è±ðªƒ¸èŸ®ð¢°§èž±èŸšè 噡虬桖ä˜è¡…衆𧗠𣶹𧗤衞袜䙛袴袵æè£…ç·ð§œè¦‡è¦Šè¦¦è¦©è¦§è¦¼ð¨¨¥è§§ð§¤¤ð§ª½èªœçž“釾èªð§©™ç«©ð§¬ºð£¾äœ“𧬸煼謌謟ð¥°ð¥•¥è¬¿èŒè誩𤩺è®è®›èª¯ð¡›Ÿä˜•è¡è²›ð§µ”ð§¶ð¯§”㜥𧵓賖𧶘𧶽贒贃ð¡¤è³›çœè´‘𤳉ã»èµ·\"],[\"9040\",\"趩𨀂𡀔𤦊ã¼ð¨†¼ð§„Œç«§èºèº¶è»ƒé‹”è¼™è¼ð¨¥ð¨’辥錃𪊟ð ©è¾³ä¤ªð¨§žð¨”½ð£¶»å»¸ð£‰¢è¿¹ðª€”𨚼ð¨”𢌥㦀𦻗逷𨔼𧪾é¡ð¨•¬ð¨˜‹é‚¨ð¨œ“郄𨛦邮都酧㫰醩釄粬𨤳𡺉鈎沟é‰é‰¢ð¥–¹éŠ¹ð¨«†ð£²›ð¨¬Œð¥—›\"],[\"90a1\",\"𠴱錬é«ð¨«¡ð¨¯«ç‚嫃𨫢𨫥䥥鉄𨯬𨰹𨯿é³é‘›èº¼é–…é–¦é¦é– 濶䊹𢙺𨛘𡉼𣸮䧟氜陻隖䅬隣𦻕懚隶磵𨫠隽åŒä¦¡ð¦²¸ð ‰´ð¦ð©‚¯ð©ƒ¥ð¤«‘𡤕𣌊霱虂霶ä¨ä”½ä–…𤫩çµå霛éœð©‡•é—åŠð©‡«éŸé¥åƒð£‚·ð£‚¼éž‰éžŸéž±éž¾éŸ€éŸ’éŸ ð¥‘¬éŸ®çœð©³éŸ¿éŸµð©ð§¥ºä«‘é ´é ³é¡‹é¡¦ã¬Žð§…µãµ‘ð ˜°ð¤…œ\"],[\"9140\",\"𥜆飊颷飈飇䫿𦴧𡛓喰飡飦飬é¸é¤¹ð¤¨©ä²ð©¡—𩤅駵騌騻é¨é©˜ð¥œ¥ã›„ð©‚±ð©¯•é« é«¢ð©¬…é«´ä°Žé¬”é¬ð¨˜€å€´é¬´ð¦¦¨ã£ƒð£½éé€ð©´¾å©…𡡣鮎𤉋鰂鯿鰌𩹨鷔𩾷𪆒𪆫𪃡𪄣𪇟鵾鶃𪄴鸎梈\"],[\"91a1\",\"鷄𢅛𪆓𪈠𡤻𪈳鴹𪂹𪊴éºéº•麞麢䴴麪麯ð¤¤é»ã ã§¥ã´ä¼²ãž¾ð¨°«é¼‚鼈䮖é¤ð¦¶¢é¼—鼖鼹嚟嚊齅馸𩂋韲葿齢齩竜龎爖䮾𤥵𤦻煷𤧸ð¤ˆð¤©‘玞𨯚𡣺禟𨥾𨸶é©é³ð¨©„鋬éŽé‹ð¨¥¬ð¤’¹çˆ—㻫ç²ç©ƒçƒð¤‘³ð¤¸ç…¾ð¡Ÿ¯ç‚£ð¡¢¾ð£–™ã»‡ð¡¢…ð¥¯ð¡Ÿ¸ãœ¢ð¡›»ð¡ ¹ã›¡ð¡´ð¡£‘𥽋㜣𡛀å›ð¤¨¥ð¡¾ð¡Š¨\"],[\"9240\",\"ð¡†ð¡’¶è”ƒð£š¦è”ƒè‘•𤦔𧅥𣸱𥕜𣻻ð§’䓴𣛮ð©¦ð¦¼¦æŸ¹ãœ³ã°•㷧塬𡤢æ ä—𣜿𤃡𤂋ð¤„𦰡哋嚞𦚱嚒𠿟𠮨ð ¸é†ð¨¬“鎜仸儫㠙ð¤¶äº¼ð ‘¥ð ¿ä½‹ä¾Šð¥™‘婨𠆫ð ‹ã¦™ð ŒŠð ”ãµä¼©ð ‹€ð¨º³ð ‰µè«šð ˆŒäº˜\"],[\"92a1\",\"åƒå„侢伃𤨎𣺊佂倮å¬å‚俌俥å˜åƒ¼å…™å…›å…å…žæ¹¶ð£–•ð£¸¹ð£º¿æµ²ð¡¢„ð£º‰å†¨å‡ƒð — ä“𠒣𠒒𠒑赺𨪜𠜎剙劤𠡳勡é®ä™ºç†Œð¤ŽŒð ° 𤦬𡃤槑ð ¸ç‘¹ã»žç’™ç”瑖玘䮎𤪼ð¤‚åã–„çˆð¤ƒ‰å–´ð …å“𠯆åœé‰é›´é¦åŸåžå¿ã˜¾å£‹åª™ð¨©†ð¡›ºð¡¯ð¡œå¨¬å¦¸éŠå©¾å«å¨’𥥆𡧳𡡡𤊕㛵洅瑃娡𥺃\"],[\"9340\",\"åªð¨¯—ð “é 璌𡌃焅䥲éˆð¨§»éŽ½ãž å°žå²žå¹žå¹ˆð¡¦–ð¡¥¼ð£«®å»å𡤃𡤄ãœð¡¢ ã›ð¡›¾ã›“脪𨩇𡶺𣑲𨦨弌弎𡤧𡞫婫𡜻å„è˜”ð§—½è¡ æ¾ð¢¡ 𢘫忛㺸𢖯𢖾𩂈𦽳懀𠀾ð †ð¢˜›æ†™æ†˜æµð¢²›ð¢´‡ð¤›”ð©…\"],[\"93a1\",\"摱𤙥ð¢ªã¨©ð¢¬¢ð£‘𩣪𢹸挷𪑛撶挱æ‘ð¤§£ð¢µ§æŠ¤ð¢²¡æ»æ•«æ¥²ã¯´ð£‚Žð£Šð¤¦‰ð£Š«å”ð£‹ ð¡£™ð©¿æ›Žð£Š‰ð£†³ã« ä†ð¥–„𨬢ð¥–𡛼𥕛ð¥¥ç£®ð£„ƒð¡ ªð£ˆ´ã‘¤ð£ˆð£†‚𤋉暎𦴤晫䮓昰𧡰𡷫晣𣋒𣋡昞𥡲㣑𣠺𣞼㮙𣞢ð£¾ç“ã®–æžð¤˜ªæ¢¶æ žã¯„檾㡣𣟕𤒇樳橒櫉欅𡤒攑梘橌㯗橺æ—ð£¿€ð£²šéŽ é‹²ð¨¯ªð¨«‹\"],[\"9440\",\"éŠ‰ð¨€žð¨§œé‘§æ¶¥æ¼‹ð¤§¬æµ§ð£½¿ã¶æ¸„𤀼娽渊塇洤硂焻𤌚𤉶烱ç‰çŠ‡çŠ”ð¤žð¤œ¥å…¹ð¤ª¤ð —«ç‘ºð£»¸ð£™Ÿð¤©Šð¤¤—𥿡㼆㺱𤫟𨰣𣼵悧㻳瓌ç¼éއç·ä’Ÿð¦·ªä•‘疃㽣𤳙𤴆㽘畕癳𪗆㬙瑨𨫌𤦫𤦎㫻\"],[\"94a1\",\"ã·ð¤©Žã»¿ð¤§…𤣳釺圲é‚𨫣𡡤僟𥈡𥇧ç¸ð£ˆ²çœŽçœç»ð¤š—ð£žã©žð¤£°ç¸ç’›ãº¿ð¤ªºð¤«‡äƒˆð¤ª–𦆮錇ð¥–ç žç¢ç¢ˆç£’ç祙ð§ð¥›£ä„Žç¦›è’–禥æ¨ð£»ºç¨ºç§´ä…®ð¡›¦ä„²éˆµç§±ð µŒð¤¦Œð Š™ð£¶ºð¡®ã–—啫㕰㚪𠇔ð °ç«¢å©™ð¢›µð¥ª¯ð¥ªœå¨ð ‰›ç£°å¨ªð¥¯†ç«¾ä‡¹ç±ç±äˆ‘𥮳𥺼𥺦ç³ð¤§¹ð¡ž°ç²Žç±¼ç²®æª²ç·œç¸‡ç·“罎𦉡\"],[\"9540\",\"𦅜ð§ˆç¶—𥺂䉪ð¦µð ¤–柖ð Žð£—埄ð¦’ð¦¸ð¤¥¢ç¿ç¬§ð ¬ð¥«©ð¥µƒç¬Œð¥¸Žé§¦è™…驣樜ð£¿ã§¢ð¤§·ð¦–騟𦖠蒀𧄧𦳑䓪脷ä‚胆脉腂𦞴飃𦩂艢艥𦩑葓𦶧è˜ð§ˆ›åª†ä…¿ð¡¡€å¬«ð¡¢¡å«¤ð¡£˜èš 蜨ð£¶è ð§¢å¨‚\"],[\"95a1\",\"衮佅袇袿裦襥è¥ð¥šƒè¥”𧞅𧞄𨯵𨯙𨮜𨧹ãºè’£ä›µä›ãŸ²è¨½è¨œð©‘ˆå½éˆ«ð¤Š„旔焩烄𡡅éµè²Ÿè³©ð§·œå¦šçŸƒå§°ä®ã›”踪躧𤰉輰轊䋴汘澻𢌡䢛潹溋𡟚鯩㚵𤤯邻邗啱䤆醻é„𨩋ä¢ð¨«¼é§ð¨°ð¨°»è“¥è¨«é–™é–§é–—閖𨴴瑅㻂𤣿𤩂ð¤ªã»§ð£ˆ¥éšð¨»§ð¨¹¦ð¨¹¥ã»Œð¤§ð¤©¸ð£¿®ç’瑫㻼éð©‚°\"],[\"9640\",\"桇ä¨ð©‚“𥟟éé¨ð¨¦‰ð¨°¦ð¨¬¯ð¦Ž¾éŠºå¬‘è©ä¤¼ç¹ð¤ˆ›éž›é±é¤¸ð ¼¦å·ð¨¯…ð¤ª²é Ÿð©“šé‹¶ð©——é‡¥ä“€ð¨ð¤©§ð¨¤é£œð¨©…㼀鈪䤥è”餻é¥ð§¬†ã·½é¦›ä¯é¦ªé©œð¨¥ð¥£ˆæªé¨¡å«¾é¨¯ð©£±ä®ð©¥ˆé¦¼ä®½ä®—é½å¡²ð¡Œ‚å ¢ð¤¦¸\"],[\"96a1\",\"𡓨硄𢜟𣶸棅㵽鑘㤧æ…ð¢žð¢¥«æ„‡é±é±“鱻鰵é°é¿é¯ð©¸é®Ÿðª‡µðªƒ¾é´¡ä²®ð¤„„鸘䲰鴌𪆴ðªƒðªƒ³ð©¤¯é¶¥è’½ð¦¸’𦿟𦮂藼䔳𦶤𦺄𦷰è 藮𦸀𣟗ð¦¤ç§¢ð£–œð£™€ä¤ð¤§žãµ¢é›éоéˆð Š¿ç¢¹é‰·é‘俤㑀é¤ð¥•ç ½ç¡”ç¢¶ç¡‹ð¡—𣇉ð¤¥ãššä½²æ¿šæ¿™ç€žç€žå”𤆵垻壳垊鴖埗焴㒯𤆬燫𦱀𤾗嬨𡞵𨩉\"],[\"9740\",\"愌嫎娋䊼𤒈㜬ä»ð¨§¼éŽ»éŽ¸ð¡£–ð ¼è‘²ð¦³€ð¡“𤋺𢰦ð¤å¦”𣶷ð¦ç¶¨ð¦…›ð¦‚¤ð¤¦¹ð¤¦‹ð¨§ºé‹¥ç¢ã»©ç’´ð¨£ð¡¢Ÿã»¡ð¤ª³æ«˜ç³ç»ã»–𤨾𤪔𡟙𤩦𠎧ð¡¤ð¤§¥ç‘ˆð¤¤–炥𤥶銄ç¦éŸð “¾éŒ±ð¨«Žð¨¨–鎆𨯧𥗕䤵𨪂煫\"],[\"97a1\",\"𤥃𠳿嚤𠘚𠯫𠲸唂秄𡟺緾𡛂ð¤©ð¡¡’ä”®é㜊𨫀ð¤¦å¦°ð¡¢¿ð¡¢ƒð§’„媡㛢𣵛㚰鉟婹ð¨ªð¡¡¢é´ã³ð ª´äª–㦊僴㵩㵌𡎜煵䋻𨈘æ¸ð©ƒ¤ä“«æµ—ð§¹ç§æ²¯ã³–ð£¿ð£¸æ¸‚漌㵯ð µç•‘㚼㓈䚀㻚䡱姄鉮䤾è½ð¨°œð¦¯€å ’埈㛖𡑒烾ð¤¢ð¤©±ð¢¿£ð¡Š°ð¢Ž½æ¢¹æ¥§ð¡Ž˜ð£“¥ð§¯´ð£›Ÿð¨ªƒð£Ÿ–ð£ºð¤²Ÿæ¨šð£šð¦²·è¾ä“Ÿä“Ž\"],[\"9840\",\"𦴦𦵑𦲂𦿞漗𧄉茽𡜺è𦲀ð§“𡟛妉媂𡞳婡婱𡤅𤇼ãœå§¯ð¡œ¼ã›‡ç†ŽéŽæššð¤Š¥å©®å¨«ð¤Š“樫𣻹𧜶𤑛𤋊ç„𤉙𨧡侰𦴨峂𤓎ð§¹ð¤Ž½æ¨Œð¤‰–𡌄炦焳ð¤©ã¶¥æ³Ÿð¯ ¥ð¤©ç¹¥å§«å´¯ã·³å½œð¤©ð¡ŸŸç¶¤è¦\"],[\"98a1\",\"咅𣫺𣌀𠈔å¾ð £•𠘙㿥𡾞𪊶瀃𩅛嵰çŽç³“𨩙ð© 俈翧ç‹çŒð§«´çŒ¸çŒ¹ð¥›¶ççˆãº©ð§¬˜é¬ç‡µð¤£²ç¡è‡¶ã»ŠçœŒã»‘沢国ç™çžçŸã»¢ã»°ã»´ã»ºç““㼎㽓畂ç•畲ç–㽼痈痜㿀ç™ã¿—癴㿜発𤽜熈嘣覀塩ä€çƒä€¹æ¡ä…㗛瞘äªä¯å±žçž¾çŸ‹å£²ç ˜ç‚¹ç œä‚¨ç ¹ç¡‡ç¡‘ç¡¦è‘ˆð¥”µç¤³æ ƒç¤²ä„ƒ\"],[\"9940\",\"䄉禑禙辻稆込䅧窑䆲窼艹䇄ç«ç«›ä‡ä¸¡ç¢ç¬ç»ç°’ç°›ä‰ ä‰ºç±»ç²œäŠŒç²¸äŠ”ç³è¾“烀ð ³ç·ç·”ç·ç·½ç¾®ç¾´çŠŸäŽ—è€ è€¥ç¬¹è€®è€±è”ã·Œåž´ç‚ è‚·èƒ©äè„ŒçŒªè„Žè„’ç• è„”ä㬹腖腙腚\"],[\"99a1\",\"ä“å ºè…¼è†„ä¥è†“ä膥埯è‡è‡¤è‰”ä’芦艶苊苘苿䒰è—险榊è…烵葤惣蒈䔄蒾蓡蓸è”è”¸è•’ä”»è•¯è•°è— ä•·è™²èš’èš²è›¯é™…èž‹ä˜†ä˜—è¢®è£¿è¤¤è¥‡è¦‘ð§¥§è¨©è¨¸èª”èª´è±‘è³”è³²è´œäž˜å¡Ÿè·ƒäŸä»®è¸ºå—˜å”è¹±å—µèº°ä ·è»Žè»¢è»¤è»è»²è¾·è¿è¿Šè¿Œé€³é§„ä¢é£ 鈓䤞鈨鉘鉫銱銮銿\"],[\"9a40\",\"鋣鋫鋳鋴鋽éƒéŽ„éŽä¥…䥑麿é—åŒééé¾ä¥ªé‘”鑹é”é–¢ä¦§é—´é˜³ä§¥æž ä¨¤é€ä¨µéž²éŸ‚噔䫤惨颹䬙飱塄餎餙冴餜餷饂é¥é¥¢ä°é§…ä®é¨¼é¬çªƒé©é®é¯é¯±é¯´ä±é° ã¯ð¡¯‚鵉鰺\"],[\"9aa1\",\"黾å™é¶“é¶½é·€é·¼é“¶è¾¶é¹»éº¬éº±éº½é»†é“œé»¢é»±é»¸ç«ˆé½„ð ‚”ð Š·ð Ž æ¤šé“ƒå¦¬ð “—å¡€é“㞹𠗕𠘕𠙶𡚺å—煳𠫂ð «ð ®¿å‘ªð¯ »ð ¯‹å’žð ¯»ð °»ð ±“𠱥𠱼惧ð ²å™ºð ²µð ³ð ³ð µ¯ð ¶²ð ·ˆæ¥•鰯螥𠸄𠸎𠻗ð ¾ð ¼ð ¹³å° 𠾼帋ð¡œð¡ð¡¶æœžð¡»ð¡‚ˆð¡‚–㙇𡂿𡃓𡄯𡄻å¤è’ð¡‹£ð¡µð¡Œ¶è®ð¡•·ð¡˜™ð¡Ÿƒð¡Ÿ‡ä¹¸ç‚»ð¡ 𡥪\"],[\"9b40\",\"ð¡¨ð¡©…ð¡°ªð¡±°ð¡²¬ð¡»ˆæ‹ƒð¡»•ð¡¼•ç†˜æ¡•ð¢…æ§©ã›ˆð¢‰¼ð¢—ð¢ºð¢œªð¢¡±ð¢¥è‹½ð¢¥§ð¢¦“ð¢«•è¦¥ð¢«¨è¾ ð¢¬Žéž¸ð¢¬¿é¡‡éª½ð¢±Œ\"],[\"9b62\",\"𢲈𢲷𥯨𢴈𢴒𢶷𢶕𢹂𢽴𢿌𣀳ð£¦ð£ŒŸð£žå¾±æ™ˆæš¿ð§©¹ð£•§ð£—³çˆð¤¦ºçŸ—𣘚𣜖纇ð †å¢µæœŽ\"],[\"9ba1\",\"椘𣪧𧙗𥿢𣸑𣺹𧗾𢂚ä£äª¸ð¤„™ð¨ªšð¤‹®ð¤Œð¤€»ð¤Œ´ð¤Ž–𤩅𠗊凒𠘑妟𡺨㮾𣳿ð¤„𤓖垈𤙴㦛𤜯𨗨𩧉ã¢ð¢‡ƒèžð¨Žé§–𤠒𤣻𤨕爉𤫀𠱸奥𤺥𤾆ð ¹è»šð¥€¬åŠåœ¿ç…±ð¥Š™ð¥™ð£½Šð¤ª§å–¼ð¥‘†ð¥‘®ð¦’釔㑳𥔿𧘲𥕞䜘𥕢𥕦𥟇𤤿ð¥¡å¦ã“»ð£Œæƒžð¥¤ƒä¼ð¨¥ˆð¥ª®ð¥®‰ð¥°†ð¡¶åž¡ç…‘澶𦄂𧰒é–𦆲𤾚è¢ð¦‚𦑊\"],[\"9c40\",\"嵛𦯷輶𦒄𡤜諪𤧶𦒈𣿯𦔒䯀𦖿𦚵𢜛鑥𥟡憕娧ð¯£ä¾»åš¹ð¤”¡ð¦›¼ä¹ªð¤¤´é™–æ¶ð¦²½ã˜˜è¥·ð¦ž™ð¦¡®ð¦‘𦡞營𦣇ç‚𩃀𠨑𦤦鄄𦤹穅鷰𦧺騦ð¦¨ã™Ÿð¦‘©ð €¡ç¦ƒð¦¨´ð¦›å´¬ð£”™èð¦®ä›ð¦²¤ç”»è¡¥ð¦¶®å¢¶\"],[\"9ca1\",\"㜜ð¢–ð§‹ð§‡ã±”𧊀𧊅éŠð¢…ºð§Š‹éŒ°ð§‹¦ð¤§æ°¹é’Ÿð§‘ð »¸è §è£µð¢¤¦ð¨‘³ð¡ž±æº¸ð¤¨ªð¡ 㦤㚹å°ç§£ä”¿æš¶ð©²ð©¢¤è¥ƒð§ŸŒð§¡˜å›–䃟𡘊㦡𣜯𨃨ð¡…ç†è¦ð§§ð©†¨å©§ä²·ð§‚¯ð¨¦«ð§§½ð§¨Šð§¬‹ð§µ¦ð¤…ºçƒç¥¾ð¨€‰æ¾µðª‹Ÿæ¨ƒð¨Œ˜åŽ¢ð¦¸‡éŽ¿æ ¶é𨅯𨀣𦦵ð¡ð£ˆ¯ð¨ˆå¶…ð¨°°ð¨‚ƒåœ•é £ð¨¥‰å¶«ð¤¦ˆæ–¾æ§•å’𤪥ð£¾ã°‘朶ð¨‚𨃴𨄮𡾡ð¨…\"],[\"9d40\",\"𨆉𨆯𨈚𨌆𨌯𨎊㗊𨑨𨚪䣺æ¦ð¨¥–ç ˆé‰•ð¨¦¸ä²ð¨§§äŸð¨§¨ð¨†ð¨¯”姸𨰉輋𨿅𩃬ç‘ð©„𩄼㷷𩅞𤫊è¿çŠåš‹ð©“§ð©—©ð©–°ð©–¸ð©œ²ð©£‘𩥉𩥪𩧃𩨨𩬎𩵚𩶛纟𩻸𩼣䲤镇𪊓熢𪋿䶑递𪗋䶜𠲜达å—\"],[\"9da1\",\"辺𢒰边𤪓䔉繿潖檱仪㓤𨬬ð§¢ãœºèº€ð¡Ÿµð¨€¤ð¨¬ð¨®™ð§¨¾ð¦š¯ã·«ð§™•𣲷𥘵𥥖亚ð¥ºð¦‰˜åš¿ð ¹è¸Žåð£ºˆð¤²žæžæ‹ð¡Ÿ¶ð¡¡»æ”°å˜ð¥±Šåšð¥Œ‘㷆𩶘䱽嘢嘞罉𥻘奵𣵀è°ä¸œð ¿ªð µ‰ð£šºè„—鵞贘瘻鱅癎瞹é…å²è…ˆè‹·å˜¥è„²è˜è‚½å—ªç¥¢å™ƒå–ð ºã—Žå˜…嗱曱𨋢ã˜ç”´å—°å–ºå’—啲ð ±ð ²–å»ð¥…ˆð ¹¶ð¢±¢\"],[\"9e40\",\"ð º¢éº«çµšå—žð¡µæŠéå’”è³ç‡¶é…¶æ¼æŽ¹æ¾å•©ð¢ƒé±²ð¢º³å†šã“Ÿð ¶§å†§å‘唞唓癦è¸ð¦¢Šç–±è‚¶è „螆裇膶èœð¡ƒä“¬çŒ„𤜆å®èŒ‹ð¦¢“噻𢛴𧴯𤆣𧵳ð¦»ð§Š¶é…°ð¡‡™éˆˆð£³¼ðªš©ð º¬ð »¹ç‰¦ð¡²¢äŽð¤¿‚𧿹𠿫䃺\"],[\"9ea1\",\"鱿”Ÿð¢¶ 䣳𤟠𩵼𠿬𠸊æ¢ð§–£ð ¿\"],[\"9ead\",\"ð¦ˆð¡†‡ç†£çºŽéµä¸šä¸„ã•·å¬æ²²å§ãš¬ã§œå½ãš¥ð¤˜˜å¢šð¤®èˆå‘‹åžªð¥ª•ð ¥¹\"],[\"9ec5\",\"㩒𢑥ç´ð©º¬ä´‰é¯ð£³¾ð©¼°ä±›ð¤¾©ð©–žð©¿žè‘œð£¶¶ð§Š²ð¦ž³ð£œ 挮紥𣻷𣸬㨪逈勌㹴㙺䗩𠒎癀嫰𠺶硺𧼮墧䂿噼鮋嵴癔ðª´éº…䳡痹㟻愙𣃚ð¤²\"],[\"9ef5\",\"å™ð¡Š©åž§ð¤¥£ð©¸†åˆ´ð§‚®ã–汊鵼\"],[\"9f40\",\"籖鬹埞ð¡¬å±“æ““ð©“𦌵𧅤èšð ´¨ð¦´¢ð¤«¢ð µ±\"],[\"9f4f\",\"凾ð¡¼å¶Žéœƒð¡·‘éºéŒç¬Ÿé¬‚峑箣扨挵髿ç¯é¬ªç±¾é¬®ç±‚ç²†é°•ç¯¼é¬‰é¼—é°›ð¤¤¾é½šå•³å¯ƒä¿½éº˜ä¿²å‰ ã¸†å‹‘å§å–妷帒韈鶫轜呩鞴饀鞺匬愰\"],[\"9fa1\",\"椬åšé°Šé´‚䰻陿¦€å‚¦ç•†ð¡é§šå‰³\"],[\"9fae\",\"é…™éšé…œ\"],[\"9fb2\",\"酑𨺗æ¿ð¦´£æ«Šå˜‘醎畺抅ð ¼ç籰𥰡𣳽\"],[\"9fc1\",\"𤤙盖é®ä¸ªð ³”莾衂\"],[\"9fc9\",\"届槀åƒåºåˆŸå·µä»Žæ°±ð ‡²ä¼¹å’œå“šåŠšè¶‚ã—¾å¼Œã—³\"],[\"9fdb\",\"æ’é…¼é¾¥é®—é ®é¢´éªºéº¨éº„ç…ºç¬”\"],[\"9fe7\",\"æ¯ºè ˜ç½¸\"],[\"9feb\",\"å˜ ðª™Šè¹·é½“\"],[\"9ff0\",\"è·”è¹é¸œè¸æŠ‚ð¨½è¸¨è¹µç«“𤩷稾磘泪詧瘇\"],[\"a040\",\"𨩚鼦泎蟖痃𪊲硓咢贌狢ç±è¬çŒ‚ç“±è³«ð¤ª»è˜¯å¾ºè¢ ä’·\"],[\"a055\",\"𡠻𦸅\"],[\"a058\",\"詾𢔛\"],[\"a05b\",\"惽癧髗鵄é®é®èŸµ\"],[\"a063\",\"è 賷猬霡鮰㗖犲䰇籑饊𦅙慙䰄麖慽\"],[\"a073\",\"åŸæ…¯æŠ¦æˆ¹æ‹Žã©œæ‡¢åŽªð£µæ¤æ ‚ã—’\"],[\"a0a1\",\"嵗𨯂迚𨸹\"],[\"a0a6\",\"僙𡵆礆匲阸𠼻ä¥\"],[\"a0ae\",\"矾\"],[\"a0b0\",\"糂𥼚糚ç¨è¦è£çµç”…瓲覔舚朌è¢ð§’†è›ç“°è„ƒçœ¤è¦‰ð¦ŸŒç•“𦻑螩蟎臈螌詉è²èƒçœ«ç“¸è“šã˜µæ¦²è¶¦\"],[\"a0d4\",\"覩瑨涹èŸð¤€‘瓧㷛煶悤憜㳑煢æ·\"],[\"a0e2\",\"ç½±ð¨¬ç‰æƒ©ä¾åˆ 㰘𣳇𥻗𧙖𥔱𡥄𡋾𩤃𦷜ð§‚å³ð¦†ð¨¨ð£™·ð ƒ®ð¦¡†ð¤¼Žä•¢å¬Ÿð¦Œé½éº¦ð¦‰«\"],[\"a3c0\",\"â€\",31,\"â¡\"],[\"c6a1\",\"â‘ \",9,\"â‘´\",9,\"â…°\",9,\"ä¸¶ä¸¿äº…äº å†‚å†–å†«å‹¹åŒ¸å©åŽ¶å¤Šå®€å·›â¼³å¹¿å»´å½å½¡æ”´æ— 疒癶辵隶¨ˆヽヾã‚ゞ〃ä»ã€…〆〇ー[]✽ã\",23],[\"c740\",\"ã™\",58,\"ァアィイ\"],[\"c7a1\",\"ã‚¥\",81,\"Ð\",5,\"ÐЖ\",4],[\"c840\",\"Л\",26,\"ёж\",25,\"⇧↸↹ã‡ð ƒŒä¹šð ‚Šåˆ‚ä’‘\"],[\"c8a1\",\"龰冈龱𧘇\"],[\"c8cd\",\"¬¦'"㈱№℡゛゜⺀⺄⺆⺇⺈⺊⺌âºâº•⺜âºâº¥âº§âºªâº¬âº®âº¶âº¼âº¾â»†â»Šâ»Œâ»â»â»–⻗⻞⻣\"],[\"c8f5\",\"ʃÉɛɔɵœøŋʊɪ\"],[\"f9fe\",\"ï¿\"],[\"fa40\",\"𠕇鋛𠗟𣿅蕌䊵ç¯å†µã™‰ð¤¥‚𨧤é„ð¡§›è‹®ð£³ˆç ¼æ„æ‹Ÿð¤¤³ð¨¦ªð Š ð¦®³ð¡Œ…ä¾«ð¢“倈𦴩𧪄𣘀𤪱𢔓倩ð ¾å¾¤ð Ž€ð ‡æ»›ð Ÿå½å„㑺儎顬ãƒè–ð¤¦¤ð ’‡å… ð£Ž´å…ªð ¯¿ð¢ƒ¼ð ‹¥ð¢”°ð –Žð£ˆ³ð¡¦ƒå®‚è½ð –³ð£²™å†²å†¸\"],[\"faa1\",\"鴴凉å‡å‡‘㳜凓𤪦决凢å‚å‡è椾ð£œå½»åˆ‹åˆ¦åˆ¼åŠµå‰—åŠ”åŠ¹å‹…ç°•è•‚å‹ è˜ð¦¬“包𨫞啉滙𣾀𠥔𣿬匳å„ð ¯¢æ³‹ð¡œ¦æ ›ç•æŠãºªã£Œð¡›¨ç‡ä’¢åå´ð¨š«å¾å¿ð¡––ð¡˜“çŸ¦åŽ“ð¨ª›åŽ åŽ«åŽ®çŽ§ð¥²ã½™çŽœåå…æ±‰ä¹‰åŸ¾å™ãª«ð ®å 𣿫𢶣å¶ð ±·å“ç¹å”«æ™—æµ›å‘ð¦“ð µ´å•å’咤䞦ð¡œð »ã¶´ð µ\"],[\"fb40\",\"𨦼𢚘啇ä³å¯ç—å–†å–©å˜…ð¡£—ð¤€ºä•’ð¤µæš³ð¡‚´å˜·æ›ð£ŠŠæš¤æšå™å™ç£±å›±éž‡å¾åœ€å›¯å›ð¨¦ã˜£ð¡‰å†ð¤†¥æ±®ç‚‹å‚㚱𦱾埦ð¡–å ƒð¡‘”ð¤£å ¦ð¤¯µå¡œå¢ªã•¡å£ 壜𡈼壻寿åƒðª…𤉸é“㖡够梦㛃湙\"],[\"fba1\",\"𡘾娤啓𡚒蔅姉𠵎ð¦²ð¦´ªð¡Ÿœå§™ð¡Ÿ»ð¡ž²ð¦¶¦æµ±ð¡ ¨ð¡›•姹𦹅媫婣㛦𤦩婷㜈媖瑥嫓𦾡𢕔㶅𡤑㜲𡚸広å‹å¶æ–ˆå¼ð§¨Žä€„ä¡ð ˆ„å¯•æ… ð¡¨´ð¥§Œð –¥å¯³å®ä´å°…ð¡„å°“çŽå°”𡲥𦬨屉ä£å²…峩峯嶋𡷹𡸷å´å´˜åµ†ð¡º¤å²ºå·—苼ã ð¤¤ð¢‰ð¢…³èŠ‡ã ¶ã¯‚å¸®æªŠå¹µå¹ºð¤’¼ð ³“åŽ¦äº·å»åލð¡±å¸‰å»´ð¨’‚\"],[\"fc40\",\"å»¹å»»ã¢ å»¼æ ¾é›å¼ð ‡ð¯¢”㫞䢮𡌺强𦢈ð¢å½˜ð¢‘±å½£éž½ð¦¹®å½²é€ð¨¨¶å¾§å¶¶ãµŸð¥‰ð¡½ªð§ƒ¸ð¢™¨é‡–𠊞𨨩怱暅𡡷㥣㷇㘹åžð¢ž´ç¥±ã¹€æ‚žæ‚¤æ‚³ð¤¦‚ð¤¦ð§©“ç’¤åƒ¡åª æ…¤è¤æ…‚慈𦻒æ†å‡´ð ™–憇宪𣾷\"],[\"fca1\",\"𢡟懓ð¨®ð©¥æ‡ã¤²ð¢¦€ð¢£æ€£æ…œæ”žæŽ‹ð „˜æ‹…ð¡°æ‹•ð¢¸æ¬ð¤§Ÿã¨—æ¸æ¸ð¡ŽŽð¡Ÿ¼æ’æ¾Šð¢¸¶é ”ð¤‚Œð¥œæ“¡æ“¥é‘»ã©¦æºã©—æ•æ¼–ð¤¨¨ð¤¨£æ–…æ•æ•Ÿð£¾æ–µð¤¥€ä¬·æ—‘äƒ˜ð¡ ©æ— æ—£å¿Ÿð£€æ˜˜ð£‡·ð£‡¸æ™„ð£†¤ð£†¥æ™‹ð ¹µæ™§ð¥‡¦æ™³æ™´ð¡¸½ð£ˆ±ð¨—´ð£‡ˆð¥Œ“çŸ…ð¢£·é¦¤æœ‚ð¤Žœð¤¨¡ã¬«æ§ºð£Ÿ‚æžæ§æ¢ð¤‡ð©ƒæŸ—ä“©æ ¢æ¹éˆ¼æ ð£¦ð¦¶ æ¡\"],[\"fd40\",\"ð£‘¯æ§¡æ¨‹ð¨«Ÿæ¥³æ£ƒð£—æ¤æ¤€ã´²ã¨ð£˜¼ã®€æž¬æ¥¡ð¨©Šä‹¼æ¤¶æ¦˜ã®¡ð ‰è£å‚槹𣙙𢄪橅𣜃æªã¯³æž±æ«ˆð©†œã°æ¬ð ¤£æƒžæ¬µæ´ð¢Ÿæºµð£«›ð Žµð¡¥˜ã€å¡ð£šæ¯¡ð£»¼æ¯œæ°·ð¢’‹ð¤£±ð¦‘汚舦汹𣶼䓅𣶽𤆤𤤌𤤀\"],[\"fda1\",\"ð£³‰ã›¥ã³«ð ´²é®ƒð£‡¹ð¢’‘ç¾æ ·ð¦´¥ð¦¶¡ð¦·«æ¶–浜湼漄𤥿𤂅𦹲蔳𦽴凇沜æ¸è®ð¨¬¡æ¸¯ð£¸¯ç‘“𣾂秌æ¹åª‘ð£‹æ¿¸ãœæ¾ð£¸°æ»ºð¡’—ð¤€½ä••é°æ½„潜㵎潴𩅰㴻澟𤅄濓𤂑𤅕𤀹𣿰𣾴𤄿凟𤅖𤅗𤅀ð¦‡ç‹ç¾ç‚§ç‚烌烕烖烟䄄㷨熴熖𤉷焫煅媈煊煮岜ð¤¥ç…é¢ð¤‹ç„¬ð¤‘šð¤¨§ð¤¨¢ç†ºð¨¯¨ç‚½çˆŽ\"],[\"fe40\",\"鑂爕夑鑃爤éð¥˜…çˆ®ç‰€ð¤¥´æ¢½ç‰•ç‰—ã¹•ð£„æ 漽犂猪猫𤠣𨠫ä£ð¨ „猨献ç玪𠰺𦨮ç‰ç‘‰ð¤‡¢ð¡›§ð¤¨¤æ˜£ã›…𤦷ð¤¦ð¤§»ç·ç•椃𤨦ç¹ð —ƒã»—瑜ð¢¢ç‘ 𨺲瑇ç¤ç‘¶èŽ¹ç‘¬ãœ°ç‘´é±æ¨¬ç’‚䥓𤪌\"],[\"fea1\",\"𤅟𤩹ð¨®å†ð¨°ƒð¡¢žç“ˆð¡¦ˆç”Žç“©ç”žð¨»™ð¡©‹å¯—𨺬鎅ç•畊畧畮𤾂㼄𤴓疎ç‘疞疴瘂瘬癑ç™ç™¯ç™¶ð¦µçšè‡¯ãŸ¸ð¦¤‘𦤎皡皥皷盌𦾟葢ð¥‚ð¥…½ð¡¸œçœžçœ¦ç€æ’¯ð¥ˆ ç˜ð£Š¬çž¯ð¨¥¤ð¨¥¨ð¡›çŸ´ç ‰ð¡¶ð¤¨’棊碯磇磓隥礮𥗠磗礴碱𧘌辸袄𨬫𦂃𢘜禆褀椂禀𥡗ç¦ð§¬¹ç¤¼ç¦©æ¸ªð§„¦ãº¨ç§†ð©„ç§”\"]]"); -function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } +/***/ }), +/* 826 */ +/***/ (function(module, exports, __webpack_require__) { -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } +"use strict"; -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } -var FILE_TYPE = 'file'; -var DIR_TYPE = 'directory'; -var ALBUMS_DOCTYPE = 'io.cozy.photos.albums'; -exports.ALBUMS_DOCTYPE = ALBUMS_DOCTYPE; -var FILENAME_WITH_EXTENSION_REGEX = /(.+)(\..*)$/; -/** - * Returns base filename and extension - * - * @param {IOCozyFile} file An io.cozy.files - * @returns {object} {filename, extension} - */ +var Buffer = __webpack_require__(114).Buffer; -var splitFilename = function splitFilename(file) { - if (!(0, _isString.default)(file.name)) throw new Error('file should have a name property '); +// NOTE: Due to 'stream' module being pretty large (~100Kb, significant in browser environments), +// we opt to dependency-inject it instead of creating a hard dependency. +module.exports = function(stream_module) { + var Transform = stream_module.Transform; - if (file.type === 'file') { - var match = file.name.match(FILENAME_WITH_EXTENSION_REGEX); + // == Encoder stream ======================================================= - if (match) { - return { - filename: match[1], - extension: match[2] - }; + function IconvLiteEncoderStream(conv, options) { + this.conv = conv; + options = options || {}; + options.decodeStrings = false; // We accept only strings, so we don't need to decode them. + Transform.call(this, options); } - } - - return { - filename: file.name, - extension: '' - }; -}; -/** - * - * @param {IOCozyFile} file io.cozy.files - */ + IconvLiteEncoderStream.prototype = Object.create(Transform.prototype, { + constructor: { value: IconvLiteEncoderStream } + }); -exports.splitFilename = splitFilename; + IconvLiteEncoderStream.prototype._transform = function(chunk, encoding, done) { + if (typeof chunk != 'string') + return done(new Error("Iconv encoding stream needs strings as its input.")); + try { + var res = this.conv.write(chunk); + if (res && res.length) this.push(res); + done(); + } + catch (e) { + done(e); + } + } -var isFile = function isFile(file) { - return file && file.type === FILE_TYPE; -}; -/** - * - * @param {IOCozyFile} file io.cozy.files - */ + IconvLiteEncoderStream.prototype._flush = function(done) { + try { + var res = this.conv.end(); + if (res && res.length) this.push(res); + done(); + } + catch (e) { + done(e); + } + } + IconvLiteEncoderStream.prototype.collect = function(cb) { + var chunks = []; + this.on('error', cb); + this.on('data', function(chunk) { chunks.push(chunk); }); + this.on('end', function() { + cb(null, Buffer.concat(chunks)); + }); + return this; + } -exports.isFile = isFile; -var isDirectory = function isDirectory(file) { - return file && file.type === DIR_TYPE; -}; -/** - * - * @param {IOCozyFile} file io.cozy.files - */ + // == Decoder stream ======================================================= + function IconvLiteDecoderStream(conv, options) { + this.conv = conv; + options = options || {}; + options.encoding = this.encoding = 'utf8'; // We output strings. + Transform.call(this, options); + } -exports.isDirectory = isDirectory; + IconvLiteDecoderStream.prototype = Object.create(Transform.prototype, { + constructor: { value: IconvLiteDecoderStream } + }); -var isNote = function isNote(file) { - if (file && file.name && file.name.endsWith('.cozy-note') && file.type === FILE_TYPE && file.metadata && file.metadata.content !== undefined && file.metadata.schema !== undefined && file.metadata.title !== undefined && file.metadata.version !== undefined) return true; - return false; -}; -/** - * Whether the file is supported by Only Office - * - * @param {IOCozyFile} file - io.cozy.file document - * @returns {boolean} - */ + IconvLiteDecoderStream.prototype._transform = function(chunk, encoding, done) { + if (!Buffer.isBuffer(chunk) && !(chunk instanceof Uint8Array)) + return done(new Error("Iconv decoding stream needs buffers as its input.")); + try { + var res = this.conv.write(chunk); + if (res && res.length) this.push(res, this.encoding); + done(); + } + catch (e) { + done(e); + } + } + IconvLiteDecoderStream.prototype._flush = function(done) { + try { + var res = this.conv.end(); + if (res && res.length) this.push(res, this.encoding); + done(); + } + catch (e) { + done(e); + } + } -exports.isNote = isNote; + IconvLiteDecoderStream.prototype.collect = function(cb) { + var res = ''; + this.on('error', cb); + this.on('data', function(chunk) { res += chunk; }); + this.on('end', function() { + cb(null, res); + }); + return this; + } -var isOnlyOfficeFile = function isOnlyOfficeFile(file) { - return isFile(file) && !isNote(file) && (file.class === 'text' || file.class === 'spreadsheet' || file.class === 'slide'); + return { + IconvLiteEncoderStream: IconvLiteEncoderStream, + IconvLiteDecoderStream: IconvLiteDecoderStream, + }; }; -/** - * Whether the file should be opened by only office - * We want to be consistent with the stack so we check the class attributes - * But we want to exclude .txt and .md because the CozyUI Viewer can already show them - * - * @param {IOCozyFile} file - io.cozy.file document - * @returns {boolean} - */ - -exports.isOnlyOfficeFile = isOnlyOfficeFile; -var shouldBeOpenedByOnlyOffice = function shouldBeOpenedByOnlyOffice(file) { - return isOnlyOfficeFile(file) && !file.name.endsWith('.txt') && !file.name.endsWith('.md'); -}; -/** - * - * @param {IOCozyFile} file io.cozy.files - * @returns {boolean} true if the file is a shortcut - */ +/***/ }), +/* 827 */ +/***/ (function(module, exports, __webpack_require__) { +"use strict"; -exports.shouldBeOpenedByOnlyOffice = shouldBeOpenedByOnlyOffice; -var isShortcut = function isShortcut(file) { - return file && file.class === 'shortcut'; +var isStream = module.exports = function (stream) { + return stream !== null && typeof stream === 'object' && typeof stream.pipe === 'function'; }; -/** - * Normalizes an object representing a io.cozy.files object - * - * Ensures existence of `_id` and `_type` - * - * @public - * @param {object} file - object representing the file - * @returns {object} full normalized object - */ - - -exports.isShortcut = isShortcut; - -function normalize(file) { - var id = file._id || file.id; - var doctype = file._type || 'io.cozy.files'; - return _objectSpread({ - _id: id, - id: id, - _type: doctype - }, file); -} -/** - * Ensure the file has a `path` attribute, or build it - * - * @public - * @param {object} file - object representing the file - * @param {object} parent - parent directory for the file - * @returns {object} file object with path attribute - */ - - -function ensureFilePath(file, parent) { - if (file.path) return file; - if (!parent || !parent.path) throw new Error("Could not define a file path for ".concat(file._id || file.id)); - var path = parent.path + '/' + file.name; - return _objectSpread({ - path: path - }, file); -} -/** - * Get the id of the parent folder (`null` for the root folder) - * - * @param {object} file - io.cozy.files document - * @returns {string|null} id of the parent folder, if any - */ - - -function getParentFolderId(file) { - var parentId = (0, _get.default)(file, 'attributes.dir_id'); - return parentId === '' ? null : parentId; -} -/** - * Returns the status of a sharing shortcut. - * - * @param {IOCozyFile} file - io.cozy.files document - * - * @returns {string} A description of the status - */ - -var getSharingShortcutStatus = function getSharingShortcutStatus(file) { - return (0, _get.default)(file, 'metadata.sharing.status'); +isStream.writable = function (stream) { + return isStream(stream) && stream.writable !== false && typeof stream._write === 'function' && typeof stream._writableState === 'object'; }; -/** - * Returns the mime type of the target of the sharing shortcut, if it is a file. - * - * @param {IOCozyFile} file - io.cozy.files document - * - * @returns {string} The mime-type of the target file, or an empty string is the target is not a file. - */ - -exports.getSharingShortcutStatus = getSharingShortcutStatus; - -var getSharingShortcutTargetMime = function getSharingShortcutTargetMime(file) { - return (0, _get.default)(file, 'metadata.target.mime'); +isStream.readable = function (stream) { + return isStream(stream) && stream.readable !== false && typeof stream._read === 'function' && typeof stream._readableState === 'object'; }; -/** - * Returns the doctype of the target of the sharing shortcut. - * - * @param {IOCozyFile} file - io.cozy.files document - * - * @returns {string} A doctype - */ - - -exports.getSharingShortcutTargetMime = getSharingShortcutTargetMime; -var getSharingShortcutTargetDoctype = function getSharingShortcutTargetDoctype(file) { - return (0, _get.default)(file, 'metadata.target._type'); +isStream.duplex = function (stream) { + return isStream.writable(stream) && isStream.readable(stream); }; -/** - * Returns whether the file is a shortcut to a sharing - * - * @param {IOCozyFile} file - io.cozy.files document - * - * @returns {boolean} - */ - -exports.getSharingShortcutTargetDoctype = getSharingShortcutTargetDoctype; - -var isSharingShortcut = function isSharingShortcut(file) { - return Boolean(getSharingShortcutStatus(file)); +isStream.transform = function (stream) { + return isStream.duplex(stream) && typeof stream._transform === 'function' && typeof stream._transformState === 'object'; }; -/** - * Returns whether the file is a shortcut to a sharing - * - * @deprecated Prefer to use isSharingShortcut. - * @param {IOCozyFile} file - io.cozy.files document - * - * @returns {boolean} - */ -exports.isSharingShortcut = isSharingShortcut; +/***/ }), +/* 828 */ +/***/ (function(module, exports, __webpack_require__) { + -var isSharingShorcut = function isSharingShorcut(file) { - console.warn('Deprecation: `isSharingShorcut` is deprecated, please use `isSharingShortcut` instead'); - return isSharingShortcut(file); -}; /** - * Returns whether the sharing shortcut is new - * - * @param {IOCozyFile} file - io.cozy.files document + * fetch-error.js * - * @returns {boolean} + * FetchError interface for operational errors */ +module.exports = FetchError; -exports.isSharingShorcut = isSharingShorcut; - -var isSharingShortcutNew = function isSharingShortcutNew(file) { - return getSharingShortcutStatus(file) === 'new'; -}; /** - * Returns whether the sharing shortcut is new - * - * @deprecated Prefer to use isSharingShortcutNew. - * @param {object} file - io.cozy.files document + * Create FetchError instance * - * @returns {boolean} + * @param String message Error message for human + * @param String type Error type for machine + * @param String systemError For Node.js system error + * @return FetchError */ +function FetchError(message, type, systemError) { + this.name = this.constructor.name; + this.message = message; + this.type = type; -exports.isSharingShortcutNew = isSharingShortcutNew; + // when err.type is `system`, err.code contains system error code + if (systemError) { + this.code = this.errno = systemError.code; + } -var isSharingShorcutNew = function isSharingShorcutNew(file) { - console.warn('Deprecation: `isSharingShorcutNew` is deprecated, please use `isSharingShortcutNew` instead'); - return isSharingShortcutNew(file); -}; -/** - * Save the file with the given qualification - * - * @param {CozyClient} client - The CozyClient instance - * @param {IOCozyFile} file - The file to qualify - * @param {object} qualification - The file qualification - * @returns {Promise<IOCozyFile>} - The saved file - */ + // hide custom error implementation details from end-users + Error.captureStackTrace(this, this.constructor); +} +__webpack_require__(9).inherits(FetchError, Error); -exports.isSharingShorcutNew = isSharingShorcutNew; -var saveFileQualification = /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(client, file, qualification) { - var qualifiedFile; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - qualifiedFile = (0, _document.setQualification)(file, qualification); - return _context.abrupt("return", client.collection('io.cozy.files').updateMetadataAttribute(file._id, qualifiedFile.metadata)); +/***/ }), +/* 829 */ +/***/ (function(module, exports, __webpack_require__) { - case 2: - case "end": - return _context.stop(); - } - } - }, _callee); - })); - return function saveFileQualification(_x, _x2, _x3) { - return _ref.apply(this, arguments); - }; -}(); /** - * Helper to query files based on qualification rules + * response.js * - * @param {object} client - The CozyClient instance - * @param {object} docRules - the rules containing the searched qualification and the count - * @returns {Promise<QueryResult>} - The files found by the rules + * Response class provides content decoding */ +var http = __webpack_require__(98); +var Headers = __webpack_require__(830); +var Body = __webpack_require__(803); -exports.saveFileQualification = saveFileQualification; - -var fetchFilesByQualificationRules = /*#__PURE__*/function () { - var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(client, docRules) { - var rules, count, query, result; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - rules = docRules.rules, count = docRules.count; - query = (0, _dsl.Q)('io.cozy.files').where(_objectSpread({}, rules)).partialIndex({ - trashed: false - }).indexFields(['cozyMetadata.updatedAt', 'metadata.qualification']).sortBy([{ - 'cozyMetadata.updatedAt': 'desc' - }]).limitBy(count ? count : 1); - _context2.next = 4; - return client.query(query); - - case 4: - result = _context2.sent; - return _context2.abrupt("return", result); - - case 6: - case "end": - return _context2.stop(); - } - } - }, _callee2); - })); +module.exports = Response; - return function fetchFilesByQualificationRules(_x4, _x5) { - return _ref2.apply(this, arguments); - }; -}(); /** - * Whether the file is referenced by an album + * Response class * - * @param {IOCozyFile} file - An io.cozy.files document - * @returns {boolean} + * @param Stream body Readable stream + * @param Object opts Response options + * @return Void */ +function Response(body, opts) { + opts = opts || {}; -exports.fetchFilesByQualificationRules = fetchFilesByQualificationRules; - -var isReferencedByAlbum = function isReferencedByAlbum(file) { - if (file.relationships && file.relationships.referenced_by && file.relationships.referenced_by.data && file.relationships.referenced_by.data.length > 0) { - var references = file.relationships.referenced_by.data; + this.url = opts.url; + this.status = opts.status || 200; + this.statusText = opts.statusText || http.STATUS_CODES[this.status]; + this.headers = new Headers(opts.headers); + this.ok = this.status >= 200 && this.status < 300; - var _iterator = _createForOfIteratorHelper(references), - _step; + Body.call(this, body, opts); - try { - for (_iterator.s(); !(_step = _iterator.n()).done;) { - var reference = _step.value; +} - if (reference.type === ALBUMS_DOCTYPE) { - return true; - } - } - } catch (err) { - _iterator.e(err); - } finally { - _iterator.f(); - } - } +Response.prototype = Object.create(Body.prototype); - return false; -}; /** - * Whether the file's metadata attribute exists + * Clone this response * - * @param {object} params - Param - * @param {IOCozyFile} params.file - An io.cozy.files document - * @param {string} params.attribute - Metadata attribute to check - * @returns {boolean} + * @return Response */ - - -exports.isReferencedByAlbum = isReferencedByAlbum; - -var hasMetadataAttribute = function hasMetadataAttribute(_ref3) { - var file = _ref3.file, - attribute = _ref3.attribute; - return (0, _has.default)(file, "metadata.".concat(attribute)); +Response.prototype.clone = function() { + return new Response(this._clone(this), { + url: this.url + , status: this.status + , statusText: this.statusText + , headers: this.headers + , ok: this.ok + }); }; -exports.hasMetadataAttribute = hasMetadataAttribute; /***/ }), -/* 822 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireWildcard = __webpack_require__(528); - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.getQualification = exports.setQualification = exports.Qualification = void 0; - -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); - -var _classCallCheck2 = _interopRequireDefault(__webpack_require__(548)); - -var _createClass2 = _interopRequireDefault(__webpack_require__(549)); - -var _lodash = __webpack_require__(823); - -var qualificationModel = _interopRequireWildcard(__webpack_require__(824)); - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } +/* 830 */ +/***/ (function(module, exports) { -/** - * @typedef {object} QualificationAttributes - * @property {string} [label] - The qualification label. - * @property {string} [purpose] - The document purpose. - * @property {string} [sourceCategory] - The activity field of the document source. - * @property {string} [sourceSubCategory] - The sub-activity field of the document source. - * @property {Array<string>} [subjects] - On what is about the document. - */ /** - * This class is used to create document Qualification, i.e. metadata - * attributes used to describe the document. - * The qualifications model is stored in the assets, associating - * labels to attributes, namely: purpose, sourceCategory, sourceSubCategory - * and subjects. - * A qualification can be customized accordingly to rules detailed in - * the checkValueAttributes method. - */ -var Qualification = /*#__PURE__*/function () { - /** - * @param {string} label - The qualification label - * @param {QualificationAttributes} attributes - Qualification's attributes - */ - function Qualification(label) { - var attributes = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - (0, _classCallCheck2.default)(this, Qualification); - var qualification = qualificationModel.qualifications.find(function (qualif) { - return qualif.label === label; - }); - - if (qualification) { - /** - * @type {string?} - */ - this.label = qualification.label; - /** - * @type {string?} - */ - - this.purpose = attributes.purpose || qualification.purpose; - this.sourceCategory = attributes.sourceCategory || qualification.sourceCategory; - this.sourceSubCategory = attributes.sourceSubCategory || qualification.sourceSubCategory; - this.subjects = attributes.subjects || qualification.subjects; - } else { - throw new Error("No qualification found for the label ".concat(label)); - } - } - /** - * Check the given qualification attributes respects the following rules: - * - For the given label, if a purpose, sourceCategory or sourceSubCategory - * attribute is defined in the model, it must match the given qualification. - * - If not defined in the model for the label, a custom purpose, sourceCategory or - * sourceSubCategory value can be defined, if it exist in their respective - * known values list. - * - For the given label, if subjects are defined in the model, they must be included - * in the given qualification. - * - If extra subjects are set, they should exist in the known values. - * - * @param {object} attributes - The qualification attributes to check - */ - + * headers.js + * + * Headers class offers convenient helpers + */ - (0, _createClass2.default)(Qualification, [{ - key: "checkAttributes", - value: function checkAttributes(attributes) { - if (this.purpose !== attributes.purpose) { - if (!this.purpose) { - var isKnownValue = qualificationModel.purposeKnownValues.includes(attributes.purpose); +module.exports = Headers; - if (!isKnownValue) { - console.info("This purpose is not listed among the known values: ".concat(attributes.purpose, ". ") + "Please open an issue on https://github.com/cozy/cozy-client/issues"); - } - } else { - throw new Error("The purpose for the label ".concat(this.label, " should be ").concat(this.purpose, ". ") + "Please use this or open an issue on https://github.com/cozy/cozy-client/issues"); - } - } +/** + * Headers class + * + * @param Object headers Response headers + * @return Void + */ +function Headers(headers) { - if (this.sourceCategory !== attributes.sourceCategory) { - if (!this.sourceCategory) { - var _isKnownValue = qualificationModel.sourceCategoryKnownValues.includes(attributes.sourceCategory); + var self = this; + this._headers = {}; - if (!_isKnownValue) { - console.info("This sourceCategory is not listed among the known values: ".concat(attributes.sourceCategory, ". ") + "Please open an issue on https://github.com/cozy/cozy-client/issues"); - } - } else { - throw new Error("The sourceCategory for the label ".concat(this.label, " should be ").concat(this.sourceCategory, ". ") + "Please use this or open an issue on https://github.com/cozy/cozy-client/issues"); - } - } + // Headers + if (headers instanceof Headers) { + headers = headers.raw(); + } - if (this.sourceSubCategory !== attributes.sourceSubCategory) { - if (!this.sourceSubCategory) { - var _isKnownValue2 = qualificationModel.sourceSubCategoryKnownValues.includes(attributes.sourceSubCategory); + // plain object + for (var prop in headers) { + if (!headers.hasOwnProperty(prop)) { + continue; + } - if (!_isKnownValue2) { - console.info("This sourceSubCategory is not listed among the known values: ".concat(attributes.sourceSubCategory, ". ") + "Please open an issue on https://github.com/cozy/cozy-client/issues"); - } - } else { - throw new Error("The sourceSubCategory for the label ".concat(this.label, " should be ").concat(this.sourceSubCategory, ". ") + "Please use this or open an issue on https://github.com/cozy/cozy-client/issues"); - } - } + if (typeof headers[prop] === 'string') { + this.set(prop, headers[prop]); - var missingSubjects = (0, _lodash.difference)(this.subjects, attributes.subjects); + } else if (typeof headers[prop] === 'number' && !isNaN(headers[prop])) { + this.set(prop, headers[prop].toString()); - if (missingSubjects.length > 0) { - throw new Error("The subjects for the label ".concat(this.label, " should include ").concat(this.subjects, ". ") + "Please use this or open an issue on https://github.com/cozy/cozy-client/issues"); - } + } else if (Array.isArray(headers[prop])) { + headers[prop].forEach(function(item) { + self.append(prop, item.toString()); + }); + } + } - var extraSubjects = (0, _lodash.difference)(attributes.subjects, this.subjects); +} - if (extraSubjects.length > 0) { - var unknownSubjects = (0, _lodash.difference)(extraSubjects, qualificationModel.subjectsKnownValues); - if (unknownSubjects.length > 0) console.info("These subjects are not listed among the known values: ".concat(unknownSubjects, ". ") + "Please open an issue on https://github.com/cozy/cozy-client/issues"); - } - } - /** - * Set purpose to the qualification. - * - * @param {Array} purpose - The purpose to set. - * @returns {Qualification} The Qualification object. - */ +/** + * Return first header value given name + * + * @param String name Header name + * @return Mixed + */ +Headers.prototype.get = function(name) { + var list = this._headers[name.toLowerCase()]; + return list ? list[0] : null; +}; - }, { - key: "setPurpose", - value: function setPurpose(purpose) { - return new Qualification(this.label, _objectSpread(_objectSpread({}, this.toQualification()), {}, { - purpose: purpose - })); - } - /** - * Set sourceCategory to the qualification. - * - * @param {Array} sourceCategory - The sourceCategory to set. - * @returns {Qualification} The Qualification object. - */ +/** + * Return all header values given name + * + * @param String name Header name + * @return Array + */ +Headers.prototype.getAll = function(name) { + if (!this.has(name)) { + return []; + } - }, { - key: "setSourceCategory", - value: function setSourceCategory(sourceCategory) { - return new Qualification(this.label, _objectSpread(_objectSpread({}, this.toQualification()), {}, { - sourceCategory: sourceCategory - })); - } - /** - * Set sourceSubCategory to the qualification. - * - * @param {Array} sourceSubCategory - The sourceSubCategory to set. - * @returns {Qualification} The Qualification object. - */ + return this._headers[name.toLowerCase()]; +}; - }, { - key: "setSourceSubCategory", - value: function setSourceSubCategory(sourceSubCategory) { - return new Qualification(this.label, _objectSpread(_objectSpread({}, this.toQualification()), {}, { - sourceSubCategory: sourceSubCategory - })); - } - /** - * Set subjects to the qualification. - * - * @param {Array} subjects - The subjects to set. - * @returns {Qualification} The Qualification object. - */ +/** + * Iterate over all headers + * + * @param Function callback Executed for each item with parameters (value, name, thisArg) + * @param Boolean thisArg `this` context for callback function + * @return Void + */ +Headers.prototype.forEach = function(callback, thisArg) { + Object.getOwnPropertyNames(this._headers).forEach(function(name) { + this._headers[name].forEach(function(value) { + callback.call(thisArg, value, name, this) + }, this) + }, this) +} - }, { - key: "setSubjects", - value: function setSubjects(subjects) { - return new Qualification(this.label, _objectSpread(_objectSpread({}, this.toQualification()), {}, { - subjects: subjects - })); - } - /** - * Returns the qualification attributes - * - * @returns {object} The qualification attributes - */ +/** + * Overwrite header values given name + * + * @param String name Header name + * @param String value Header value + * @return Void + */ +Headers.prototype.set = function(name, value) { + this._headers[name.toLowerCase()] = [value]; +}; - }, { - key: "toQualification", - value: function toQualification() { - return { - label: this.label, - purpose: this.purpose, - sourceCategory: this.sourceCategory, - sourceSubCategory: this.sourceSubCategory, - subjects: this.subjects - }; - } - }]); - return Qualification; -}(); /** - * Returns the qualification associated to a label. + * Append a value onto existing header * - * @param {string} label - The label to qualify - * @returns {Qualification} - The qualification + * @param String name Header name + * @param String value Header value + * @return Void */ +Headers.prototype.append = function(name, value) { + if (!this.has(name)) { + this.set(name, value); + return; + } + this._headers[name.toLowerCase()].push(value); +}; -exports.Qualification = Qualification; +/** + * Check for header name existence + * + * @param String name Header name + * @return Boolean + */ +Headers.prototype.has = function(name) { + return this._headers.hasOwnProperty(name.toLowerCase()); +}; -Qualification.getByLabel = function (label) { - return new Qualification(label); +/** + * Delete all header values given name + * + * @param String name Header name + * @return Void + */ +Headers.prototype['delete'] = function(name) { + delete this._headers[name.toLowerCase()]; }; + /** - * Set the qualification to the document metadata + * Return raw headers (non-spec api) * - * @param {object} document - The document to set the qualification - * @param {Qualification} qualification - The qualification to set - * @returns {object} - The qualified document + * @return Object */ +Headers.prototype.raw = function() { + return this._headers; +}; -var setQualification = function setQualification(document, qualification) { - if (qualification.label) { - new Qualification(qualification.label).checkAttributes(qualification); - } else { - throw new Error('You must set a label to qualify'); - } +/***/ }), +/* 831 */ +/***/ (function(module, exports, __webpack_require__) { + - return (0, _lodash.set)(document, 'metadata.qualification', qualification); -}; /** - * Helper to get the qualification from a document + * request.js * - * @param {object} document - The document - * @returns {Qualification} - The document qualification + * Request class contains server only options + */ + +var parse_url = __webpack_require__(83).parse; +var Headers = __webpack_require__(830); +var Body = __webpack_require__(803); + +module.exports = Request; + +/** + * Request class * + * @param Mixed input Url or Request instance + * @param Object init Custom options + * @return Void */ +function Request(input, init) { + var url, url_parsed; + + // normalize input + if (!(input instanceof Request)) { + url = input; + url_parsed = parse_url(url); + input = {}; + } else { + url = input.url; + url_parsed = parse_url(url); + } + + // normalize init + init = init || {}; + + // fetch spec options + this.method = init.method || input.method || 'GET'; + this.redirect = init.redirect || input.redirect || 'follow'; + this.headers = new Headers(init.headers || input.headers || {}); + this.url = url; + + // server only options + this.follow = init.follow !== undefined ? + init.follow : input.follow !== undefined ? + input.follow : 20; + this.compress = init.compress !== undefined ? + init.compress : input.compress !== undefined ? + input.compress : true; + this.counter = init.counter || input.counter || 0; + this.agent = init.agent || input.agent; + + Body.call(this, init.body || this._clone(input), { + timeout: init.timeout || input.timeout || 0, + size: init.size || input.size || 0 + }); + // server request options + this.protocol = url_parsed.protocol; + this.hostname = url_parsed.hostname; + this.port = url_parsed.port; + this.path = url_parsed.path; + this.auth = url_parsed.auth; +} -exports.setQualification = setQualification; +Request.prototype = Object.create(Body.prototype); -var getQualification = function getQualification(document) { - var docQualification = (0, _lodash.get)(document, 'metadata.qualification'); - var qualification = new Qualification(docQualification.label, docQualification.qualification); - return qualification.toQualification(); +/** + * Clone this request + * + * @return Request + */ +Request.prototype.clone = function() { + return new Request(this); }; -exports.getQualification = getQualification; /***/ }), -/* 823 */ +/* 832 */ /***/ (function(module, exports, __webpack_require__) { -/* WEBPACK VAR INJECTION */(function(module) {var __WEBPACK_AMD_DEFINE_RESULT__;/** - * @license - * Lodash <https://lodash.com/> - * Copyright OpenJS Foundation and other contributors <https://openjsf.org/> - * Released under MIT license <https://lodash.com/license> - * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE> - * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */ -;(function() { +"use strict"; - /** Used as a safe reference for `undefined` in pre-ES5 environments. */ - var undefined; - /** Used as the semantic version number. */ - var VERSION = '4.17.21'; +var _interopRequireWildcard = __webpack_require__(530); - /** Used as the size to enable large array optimizations. */ - var LARGE_ARRAY_SIZE = 200; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.contact = exports.utils = exports.permission = exports.note = exports.account = exports.folder = exports.file = exports.applications = exports.instance = exports.trigger = exports.accounts = exports.triggers = void 0; - /** Error message constants. */ - var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.', - FUNC_ERROR_TEXT = 'Expected a function', - INVALID_TEMPL_VAR_ERROR_TEXT = 'Invalid `variable` option passed into `_.template`'; +var trigger = _interopRequireWildcard(__webpack_require__(833)); - /** Used to stand-in for `undefined` hash values. */ - var HASH_UNDEFINED = '__lodash_hash_undefined__'; +exports.trigger = trigger; - /** Used as the maximum memoize cache size. */ - var MAX_MEMOIZE_SIZE = 500; +var instance = _interopRequireWildcard(__webpack_require__(835)); - /** Used as the internal argument placeholder. */ - var PLACEHOLDER = '__lodash_placeholder__'; +exports.instance = instance; - /** Used to compose bitmasks for cloning. */ - var CLONE_DEEP_FLAG = 1, - CLONE_FLAT_FLAG = 2, - CLONE_SYMBOLS_FLAG = 4; +var applications = _interopRequireWildcard(__webpack_require__(836)); - /** Used to compose bitmasks for value comparisons. */ - var COMPARE_PARTIAL_FLAG = 1, - COMPARE_UNORDERED_FLAG = 2; +exports.applications = applications; - /** Used to compose bitmasks for function metadata. */ - var WRAP_BIND_FLAG = 1, - WRAP_BIND_KEY_FLAG = 2, - WRAP_CURRY_BOUND_FLAG = 4, - WRAP_CURRY_FLAG = 8, - WRAP_CURRY_RIGHT_FLAG = 16, - WRAP_PARTIAL_FLAG = 32, - WRAP_PARTIAL_RIGHT_FLAG = 64, - WRAP_ARY_FLAG = 128, - WRAP_REARG_FLAG = 256, - WRAP_FLIP_FLAG = 512; +var file = _interopRequireWildcard(__webpack_require__(837)); - /** Used as default options for `_.truncate`. */ - var DEFAULT_TRUNC_LENGTH = 30, - DEFAULT_TRUNC_OMISSION = '...'; +exports.file = file; - /** Used to detect hot functions by number of calls within a span of milliseconds. */ - var HOT_COUNT = 800, - HOT_SPAN = 16; +var folder = _interopRequireWildcard(__webpack_require__(838)); - /** Used to indicate the type of lazy iteratees. */ - var LAZY_FILTER_FLAG = 1, - LAZY_MAP_FLAG = 2, - LAZY_WHILE_FLAG = 3; +exports.folder = folder; - /** Used as references for various `Number` constants. */ - var INFINITY = 1 / 0, - MAX_SAFE_INTEGER = 9007199254740991, - MAX_INTEGER = 1.7976931348623157e+308, - NAN = 0 / 0; +var account = _interopRequireWildcard(__webpack_require__(834)); - /** Used as references for the maximum length and index of an array. */ - var MAX_ARRAY_LENGTH = 4294967295, - MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, - HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1; +exports.account = account; - /** Used to associate wrap methods with their bit flags. */ - var wrapFlags = [ - ['ary', WRAP_ARY_FLAG], - ['bind', WRAP_BIND_FLAG], - ['bindKey', WRAP_BIND_KEY_FLAG], - ['curry', WRAP_CURRY_FLAG], - ['curryRight', WRAP_CURRY_RIGHT_FLAG], - ['flip', WRAP_FLIP_FLAG], - ['partial', WRAP_PARTIAL_FLAG], - ['partialRight', WRAP_PARTIAL_RIGHT_FLAG], - ['rearg', WRAP_REARG_FLAG] - ]; +var note = _interopRequireWildcard(__webpack_require__(840)); - /** `Object#toString` result references. */ - var argsTag = '[object Arguments]', - arrayTag = '[object Array]', - asyncTag = '[object AsyncFunction]', - boolTag = '[object Boolean]', - dateTag = '[object Date]', - domExcTag = '[object DOMException]', - errorTag = '[object Error]', - funcTag = '[object Function]', - genTag = '[object GeneratorFunction]', - mapTag = '[object Map]', - numberTag = '[object Number]', - nullTag = '[object Null]', - objectTag = '[object Object]', - promiseTag = '[object Promise]', - proxyTag = '[object Proxy]', - regexpTag = '[object RegExp]', - setTag = '[object Set]', - stringTag = '[object String]', - symbolTag = '[object Symbol]', - undefinedTag = '[object Undefined]', - weakMapTag = '[object WeakMap]', - weakSetTag = '[object WeakSet]'; +exports.note = note; - var arrayBufferTag = '[object ArrayBuffer]', - dataViewTag = '[object DataView]', - float32Tag = '[object Float32Array]', - float64Tag = '[object Float64Array]', - int8Tag = '[object Int8Array]', - int16Tag = '[object Int16Array]', - int32Tag = '[object Int32Array]', - uint8Tag = '[object Uint8Array]', - uint8ClampedTag = '[object Uint8ClampedArray]', - uint16Tag = '[object Uint16Array]', - uint32Tag = '[object Uint32Array]'; +var permission = _interopRequireWildcard(__webpack_require__(841)); - /** Used to match empty string literals in compiled template source. */ - var reEmptyStringLeading = /\b__p \+= '';/g, - reEmptyStringMiddle = /\b(__p \+=) '' \+/g, - reEmptyStringTrailing = /(__e\(.*?\)|\b__t\)) \+\n'';/g; +exports.permission = permission; - /** Used to match HTML entities and HTML characters. */ - var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g, - reUnescapedHtml = /[&<>"']/g, - reHasEscapedHtml = RegExp(reEscapedHtml.source), - reHasUnescapedHtml = RegExp(reUnescapedHtml.source); +var utils = _interopRequireWildcard(__webpack_require__(842)); - /** Used to match template delimiters. */ - var reEscape = /<%-([\s\S]+?)%>/g, - reEvaluate = /<%([\s\S]+?)%>/g, - reInterpolate = /<%=([\s\S]+?)%>/g; +exports.utils = utils; - /** Used to match property names within property paths. */ - var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, - reIsPlainProp = /^\w*$/, - rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; +var contact = _interopRequireWildcard(__webpack_require__(843)); - /** - * Used to match `RegExp` - * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). - */ - var reRegExpChar = /[\\^$.*+?()[\]{}|]/g, - reHasRegExpChar = RegExp(reRegExpChar.source); +exports.contact = contact; +// For backward compatibility before 9.0.0 +var triggers = trigger; +exports.triggers = triggers; +var accounts = account; +exports.accounts = accounts; - /** Used to match leading whitespace. */ - var reTrimStart = /^\s+/; +/***/ }), +/* 833 */ +/***/ (function(module, exports, __webpack_require__) { - /** Used to match a single whitespace character. */ - var reWhitespace = /\s/; +"use strict"; - /** Used to match wrap detail comments. */ - var reWrapComment = /\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/, - reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/, - reSplitDetails = /,? & /; - /** Used to match words composed of alphanumeric characters. */ - var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g; +var _interopRequireDefault = __webpack_require__(532); + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.triggers = exports.triggerStates = void 0; + +var _get = _interopRequireDefault(__webpack_require__(372)); + +var _account = __webpack_require__(834); + +var actionableErrors = ['CHALLENGE_ASKED', 'DISK_QUOTA_EXCEEDED', 'TERMS_VERSION_MISMATCH', 'USER_ACTION_NEEDED', 'USER_ACTION_NEEDED.CHANGE_PASSWORD', 'USER_ACTION_NEEDED.ACCOUNT_REMOVED', 'USER_ACTION_NEEDED.WEBAUTH_REQUIRED', 'USER_ACTION_NEEDED.SCA_REQUIRED', 'LOGIN_FAILED']; +/** Trigger states come from /jobs/triggers */ + +var triggerStates = { + /** Returns when the trigger was last executed. Need a trigger */ + getLastExecution: function getLastExecution(triggerState) { + return (0, _get.default)(triggerState, 'current_state.last_execution'); + }, + + /** Returns when the trigger was last successfully executed. */ + getLastsuccess: function getLastsuccess(triggerState) { + return (0, _get.default)(triggerState, 'current_state.last_success'); + }, + + /** Returns whether last job failed */ + isErrored: function isErrored(triggerState) { + return (0, _get.default)(triggerState, 'current_state.status') === 'errored'; + }, + + /** Returns the type of the last error to occur */ + getLastErrorType: function getLastErrorType(triggerState) { + return (0, _get.default)(triggerState, 'current_state.last_error'); + } +}; +exports.triggerStates = triggerStates; +var triggers = { + isKonnectorWorker: function isKonnectorWorker(trigger) { + return trigger.worker === 'konnector'; + }, /** - * Used to validate the `validate` option in `_.template` variable. + * Returns the konnector slug that executed a trigger * - * Forbids characters which could potentially change the meaning of the function argument definition: - * - "()," (modification of function parameters) - * - "=" (default value) - * - "[]{}" (destructuring of function parameters) - * - "/" (beginning of a comment) - * - whitespace + * @param {object} trigger io.cozy.triggers + * + * @returns {string} A konnector slug */ - var reForbiddenIdentifierChars = /[()=,{}\[\]\/\s]/; + getKonnector: function getKonnector(trigger) { + if (!triggers.isKonnectorWorker(trigger)) { + return; + } - /** Used to match backslashes in property paths. */ - var reEscapeChar = /\\(\\)?/g; + if (trigger.message && trigger.message.konnector) { + return trigger.message.konnector; + } else if (trigger.message && trigger.message.Data) { + // Legacy triggers + var message = JSON.parse(atob(trigger.message.Data)); + return message.konnector; + } + }, /** - * Used to match - * [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexical-components). + * getAccountId - Returns the account id for a trigger + * + * @param {object} trigger io.cozy.triggers + * + * @returns {string} Id for an io.cozy.accounts */ - var reEsTemplate = /\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g; - - /** Used to match `RegExp` flags from their coerced string values. */ - var reFlags = /\w*$/; + getAccountId: function getAccountId(trigger) { + var legacyData = (0, _get.default)(trigger, 'message.Data'); - /** Used to detect bad signed hexadecimal string values. */ - var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; + if (legacyData) { + var message = JSON.parse(atob(legacyData)); + return message.account; + } else { + return (0, _get.default)(trigger, 'message.account'); + } + }, - /** Used to detect binary string values. */ - var reIsBinary = /^0b[01]+$/i; + /** + * Checks if the triggers current error has been muted in the corresponding io.cozy.accounts + * + * @param {object} trigger io.cozy.triggers + * @param {object} account io.cozy.accounts used by the trigger + * + * @returns {boolean} Whether the error is muted or not + */ + isLatestErrorMuted: function isLatestErrorMuted(trigger, account) { + var lastErrorType = triggerStates.getLastErrorType(trigger); + var lastSuccess = triggerStates.getLastsuccess(trigger); + var lastSuccessDate = lastSuccess ? new Date(lastSuccess) : new Date(); + var mutedErrors = (0, _account.getMutedErrors)(account); + var isErrorMuted = mutedErrors.some(function (mutedError) { + return mutedError.type === lastErrorType && (!lastSuccess || new Date(mutedError.mutedAt) > lastSuccessDate); + }); + return isErrorMuted; + }, - /** Used to detect host constructors (Safari). */ - var reIsHostCtor = /^\[object .+?Constructor\]$/; + /** + * Returns whether the error in trigger can be solved by the user + * + * @param {object} trigger io.cozy.triggers + * + * @returns {boolean} Whether the error is muted or not + */ + hasActionableError: function hasActionableError(trigger) { + return actionableErrors.includes(trigger.current_state.last_error); + } +}; +exports.triggers = triggers; - /** Used to detect octal string values. */ - var reIsOctal = /^0o[0-7]+$/i; +/***/ }), +/* 834 */ +/***/ (function(module, exports, __webpack_require__) { - /** Used to detect unsigned integer values. */ - var reIsUint = /^(?:0|[1-9]\d*)$/; +"use strict"; - /** Used to match Latin Unicode letters (excluding mathematical operators). */ - var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g; - /** Used to ensure capturing order of template delimiters. */ - var reNoMatch = /($^)/; +var _interopRequireDefault = __webpack_require__(532); - /** Used to match unescaped characters in compiled string literals. */ - var reUnescapedString = /['\n\r\u2028\u2029\\]/g; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.muteError = exports.getMutedErrors = void 0; - /** Used to compose unicode character classes. */ - var rsAstralRange = '\\ud800-\\udfff', - rsComboMarksRange = '\\u0300-\\u036f', - reComboHalfMarksRange = '\\ufe20-\\ufe2f', - rsComboSymbolsRange = '\\u20d0-\\u20ff', - rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, - rsDingbatRange = '\\u2700-\\u27bf', - rsLowerRange = 'a-z\\xdf-\\xf6\\xf8-\\xff', - rsMathOpRange = '\\xac\\xb1\\xd7\\xf7', - rsNonCharRange = '\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf', - rsPunctuationRange = '\\u2000-\\u206f', - rsSpaceRange = ' \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000', - rsUpperRange = 'A-Z\\xc0-\\xd6\\xd8-\\xde', - rsVarRange = '\\ufe0e\\ufe0f', - rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange; +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); - /** Used to compose unicode capture groups. */ - var rsApos = "['\u2019]", - rsAstral = '[' + rsAstralRange + ']', - rsBreak = '[' + rsBreakRange + ']', - rsCombo = '[' + rsComboRange + ']', - rsDigits = '\\d+', - rsDingbat = '[' + rsDingbatRange + ']', - rsLower = '[' + rsLowerRange + ']', - rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']', - rsFitz = '\\ud83c[\\udffb-\\udfff]', - rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', - rsNonAstral = '[^' + rsAstralRange + ']', - rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', - rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', - rsUpper = '[' + rsUpperRange + ']', - rsZWJ = '\\u200d'; +var _get = _interopRequireDefault(__webpack_require__(372)); - /** Used to compose unicode regexes. */ - var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')', - rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')', - rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?', - rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?', - reOptMod = rsModifier + '?', - rsOptVar = '[' + rsVarRange + ']?', - rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', - rsOrdLower = '\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])', - rsOrdUpper = '\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])', - rsSeq = rsOptVar + reOptMod + rsOptJoin, - rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq, - rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; +/** + * getMutedErrors - Returns the list of errors that have been muted for the given account + * + * @param {object} account io.cozy.accounts + * + * @returns {Array} An array of errors with a `type` and `mutedAt` field + */ +var getMutedErrors = function getMutedErrors(account) { + return (0, _get.default)(account, 'mutedErrors', []); +}; +/** + * muteError - Adds an error to the list of muted errors for the given account + * + * @param {object} account io.cozy.accounts + * @param {string} errorType The type of the error to mute + * + * @returns {object} An updated io.cozy.accounts + */ - /** Used to match apostrophes. */ - var reApos = RegExp(rsApos, 'g'); - /** - * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and - * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols). - */ - var reComboMark = RegExp(rsCombo, 'g'); +exports.getMutedErrors = getMutedErrors; - /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ - var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); +var muteError = function muteError(account, errorType) { + var mutedErrors = getMutedErrors(account); + mutedErrors.push({ + type: errorType, + mutedAt: new Date().toISOString() + }); + return (0, _objectSpread2.default)({}, account, { + mutedErrors: mutedErrors + }); +}; - /** Used to match complex or compound words. */ - var reUnicodeWord = RegExp([ - rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')', - rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')', - rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower, - rsUpper + '+' + rsOptContrUpper, - rsOrdUpper, - rsOrdLower, - rsDigits, - rsEmoji - ].join('|'), 'g'); +exports.muteError = muteError; - /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ - var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); +/***/ }), +/* 835 */ +/***/ (function(module, exports, __webpack_require__) { - /** Used to detect strings that need a more robust regexp to match words. */ - var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/; +"use strict"; - /** Used to assign default `context` object properties. */ - var contextProps = [ - 'Array', 'Buffer', 'DataView', 'Date', 'Error', 'Float32Array', 'Float64Array', - 'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Map', 'Math', 'Object', - 'Promise', 'RegExp', 'Set', 'String', 'Symbol', 'TypeError', 'Uint8Array', - 'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap', - '_', 'clearTimeout', 'isFinite', 'parseInt', 'setTimeout' - ]; - /** Used to make template sourceURLs easier to identify. */ - var templateCounter = -1; +var _interopRequireDefault = __webpack_require__(532); - /** Used to identify `toStringTag` values of typed arrays. */ - var typedArrayTags = {}; - typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = - typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = - typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = - typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = - typedArrayTags[uint32Tag] = true; - typedArrayTags[argsTag] = typedArrayTags[arrayTag] = - typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = - typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = - typedArrayTags[errorTag] = typedArrayTags[funcTag] = - typedArrayTags[mapTag] = typedArrayTags[numberTag] = - typedArrayTags[objectTag] = typedArrayTags[regexpTag] = - typedArrayTags[setTag] = typedArrayTags[stringTag] = - typedArrayTags[weakMapTag] = false; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.buildPremiumLink = exports.hasAnOffer = exports.shouldDisplayOffers = exports.getUuid = exports.isFreemiumUser = exports.arePremiumLinksEnabled = exports.isSelfHosted = void 0; - /** Used to identify `toStringTag` values supported by `_.clone`. */ - var cloneableTags = {}; - cloneableTags[argsTag] = cloneableTags[arrayTag] = - cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = - cloneableTags[boolTag] = cloneableTags[dateTag] = - cloneableTags[float32Tag] = cloneableTags[float64Tag] = - cloneableTags[int8Tag] = cloneableTags[int16Tag] = - cloneableTags[int32Tag] = cloneableTags[mapTag] = - cloneableTags[numberTag] = cloneableTags[objectTag] = - cloneableTags[regexpTag] = cloneableTags[setTag] = - cloneableTags[stringTag] = cloneableTags[symbolTag] = - cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = - cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; - cloneableTags[errorTag] = cloneableTags[funcTag] = - cloneableTags[weakMapTag] = false; +var _get = _interopRequireDefault(__webpack_require__(372)); - /** Used to map Latin Unicode letters to basic Latin letters. */ - var deburredLetters = { - // Latin-1 Supplement block. - '\xc0': 'A', '\xc1': 'A', '\xc2': 'A', '\xc3': 'A', '\xc4': 'A', '\xc5': 'A', - '\xe0': 'a', '\xe1': 'a', '\xe2': 'a', '\xe3': 'a', '\xe4': 'a', '\xe5': 'a', - '\xc7': 'C', '\xe7': 'c', - '\xd0': 'D', '\xf0': 'd', - '\xc8': 'E', '\xc9': 'E', '\xca': 'E', '\xcb': 'E', - '\xe8': 'e', '\xe9': 'e', '\xea': 'e', '\xeb': 'e', - '\xcc': 'I', '\xcd': 'I', '\xce': 'I', '\xcf': 'I', - '\xec': 'i', '\xed': 'i', '\xee': 'i', '\xef': 'i', - '\xd1': 'N', '\xf1': 'n', - '\xd2': 'O', '\xd3': 'O', '\xd4': 'O', '\xd5': 'O', '\xd6': 'O', '\xd8': 'O', - '\xf2': 'o', '\xf3': 'o', '\xf4': 'o', '\xf5': 'o', '\xf6': 'o', '\xf8': 'o', - '\xd9': 'U', '\xda': 'U', '\xdb': 'U', '\xdc': 'U', - '\xf9': 'u', '\xfa': 'u', '\xfb': 'u', '\xfc': 'u', - '\xdd': 'Y', '\xfd': 'y', '\xff': 'y', - '\xc6': 'Ae', '\xe6': 'ae', - '\xde': 'Th', '\xfe': 'th', - '\xdf': 'ss', - // Latin Extended-A block. - '\u0100': 'A', '\u0102': 'A', '\u0104': 'A', - '\u0101': 'a', '\u0103': 'a', '\u0105': 'a', - '\u0106': 'C', '\u0108': 'C', '\u010a': 'C', '\u010c': 'C', - '\u0107': 'c', '\u0109': 'c', '\u010b': 'c', '\u010d': 'c', - '\u010e': 'D', '\u0110': 'D', '\u010f': 'd', '\u0111': 'd', - '\u0112': 'E', '\u0114': 'E', '\u0116': 'E', '\u0118': 'E', '\u011a': 'E', - '\u0113': 'e', '\u0115': 'e', '\u0117': 'e', '\u0119': 'e', '\u011b': 'e', - '\u011c': 'G', '\u011e': 'G', '\u0120': 'G', '\u0122': 'G', - '\u011d': 'g', '\u011f': 'g', '\u0121': 'g', '\u0123': 'g', - '\u0124': 'H', '\u0126': 'H', '\u0125': 'h', '\u0127': 'h', - '\u0128': 'I', '\u012a': 'I', '\u012c': 'I', '\u012e': 'I', '\u0130': 'I', - '\u0129': 'i', '\u012b': 'i', '\u012d': 'i', '\u012f': 'i', '\u0131': 'i', - '\u0134': 'J', '\u0135': 'j', - '\u0136': 'K', '\u0137': 'k', '\u0138': 'k', - '\u0139': 'L', '\u013b': 'L', '\u013d': 'L', '\u013f': 'L', '\u0141': 'L', - '\u013a': 'l', '\u013c': 'l', '\u013e': 'l', '\u0140': 'l', '\u0142': 'l', - '\u0143': 'N', '\u0145': 'N', '\u0147': 'N', '\u014a': 'N', - '\u0144': 'n', '\u0146': 'n', '\u0148': 'n', '\u014b': 'n', - '\u014c': 'O', '\u014e': 'O', '\u0150': 'O', - '\u014d': 'o', '\u014f': 'o', '\u0151': 'o', - '\u0154': 'R', '\u0156': 'R', '\u0158': 'R', - '\u0155': 'r', '\u0157': 'r', '\u0159': 'r', - '\u015a': 'S', '\u015c': 'S', '\u015e': 'S', '\u0160': 'S', - '\u015b': 's', '\u015d': 's', '\u015f': 's', '\u0161': 's', - '\u0162': 'T', '\u0164': 'T', '\u0166': 'T', - '\u0163': 't', '\u0165': 't', '\u0167': 't', - '\u0168': 'U', '\u016a': 'U', '\u016c': 'U', '\u016e': 'U', '\u0170': 'U', '\u0172': 'U', - '\u0169': 'u', '\u016b': 'u', '\u016d': 'u', '\u016f': 'u', '\u0171': 'u', '\u0173': 'u', - '\u0174': 'W', '\u0175': 'w', - '\u0176': 'Y', '\u0177': 'y', '\u0178': 'Y', - '\u0179': 'Z', '\u017b': 'Z', '\u017d': 'Z', - '\u017a': 'z', '\u017c': 'z', '\u017e': 'z', - '\u0132': 'IJ', '\u0133': 'ij', - '\u0152': 'Oe', '\u0153': 'oe', - '\u0149': "'n", '\u017f': 's' - }; +var GB = 1000 * 1000 * 1000; +var PREMIUM_QUOTA = 50 * GB; // If manager URL is present, then the instance is not self-hosted - /** Used to map characters to HTML entities. */ - var htmlEscapes = { - '&': '&', - '<': '<', - '>': '>', - '"': '"', - "'": ''' - }; +var isSelfHosted = function isSelfHosted(instanceInfo) { + return (0, _get.default)(instanceInfo, 'context.data.attributes.manager_url') ? false : true; +}; - /** Used to map HTML entities to characters. */ - var htmlUnescapes = { - '&': '&', - '<': '<', - '>': '>', - '"': '"', - ''': "'" - }; +exports.isSelfHosted = isSelfHosted; - /** Used to escape characters for inclusion in compiled string literals. */ - var stringEscapes = { - '\\': '\\', - "'": "'", - '\n': 'n', - '\r': 'r', - '\u2028': 'u2028', - '\u2029': 'u2029' - }; +var arePremiumLinksEnabled = function arePremiumLinksEnabled(instanceInfo) { + return (0, _get.default)(instanceInfo, 'context.data.attributes.enable_premium_links') ? true : false; +}; - /** Built-in method references without a dependency on `root`. */ - var freeParseFloat = parseFloat, - freeParseInt = parseInt; +exports.arePremiumLinksEnabled = arePremiumLinksEnabled; - /** Detect free variable `global` from Node.js. */ - var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; +var isFreemiumUser = function isFreemiumUser(instanceInfo) { + var quota = (0, _get.default)(instanceInfo, 'diskUsage.data.attributes.quota', false); + return parseInt(quota) <= PREMIUM_QUOTA; +}; - /** Detect free variable `self`. */ - var freeSelf = typeof self == 'object' && self && self.Object === Object && self; +exports.isFreemiumUser = isFreemiumUser; - /** Used as a reference to the global object. */ - var root = freeGlobal || freeSelf || Function('return this')(); +var getUuid = function getUuid(instanceInfo) { + return (0, _get.default)(instanceInfo, 'instance.data.attributes.uuid'); +}; +/** + * Returns whether an instance is concerned by our offers + * + * @param {object} data Object containing all the results from /settings/* + * @param {object} data.context Object returned by /settings/context + * @param {object} data.instance Object returned by /settings/instance + * @param {object} data.diskUsage Object returned by /settings/disk-usage + */ - /** Detect free variable `exports`. */ - var freeExports = true && exports && !exports.nodeType && exports; - /** Detect free variable `module`. */ - var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; +exports.getUuid = getUuid; - /** Detect the popular CommonJS extension `module.exports`. */ - var moduleExports = freeModule && freeModule.exports === freeExports; +var shouldDisplayOffers = function shouldDisplayOffers(data) { + return !isSelfHosted(data) && arePremiumLinksEnabled(data) && getUuid(data) && isFreemiumUser(data); +}; +/** + * Returns if an instance has subscribed to one of our offers + * + * @param {object} data Object containing all the results from /settings/* + * @param {object} data.context Object returned by /settings/context + * @param {object} data.instance Object returned by /settings/instance + * @param {object} data.diskUsage Object returned by /settings/disk-usage + * + */ - /** Detect free variable `process` from Node.js. */ - var freeProcess = moduleExports && freeGlobal.process; - /** Used to access faster Node.js helpers. */ - var nodeUtil = (function() { - try { - // Use `util.types` for Node.js 10+. - var types = freeModule && freeModule.require && freeModule.require('util').types; +exports.shouldDisplayOffers = shouldDisplayOffers; - if (types) { - return types; - } +var hasAnOffer = function hasAnOffer(data) { + return !isSelfHosted(data) && arePremiumLinksEnabled(data) && getUuid(data) && !isFreemiumUser(data); +}; +/** + * Returns the link to the Premium page on the Cozy's Manager + * + * @param {object} instanceInfo + */ - // Legacy `process.binding('util')` for Node.js < 10. - return freeProcess && freeProcess.binding && freeProcess.binding('util'); - } catch (e) {} - }()); - /* Node.js helper references. */ - var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer, - nodeIsDate = nodeUtil && nodeUtil.isDate, - nodeIsMap = nodeUtil && nodeUtil.isMap, - nodeIsRegExp = nodeUtil && nodeUtil.isRegExp, - nodeIsSet = nodeUtil && nodeUtil.isSet, - nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray; +exports.hasAnOffer = hasAnOffer; - /*--------------------------------------------------------------------------*/ +var buildPremiumLink = function buildPremiumLink(instanceInfo) { + var managerUrl = (0, _get.default)(instanceInfo, 'context.data.attributes.manager_url', false); + var uuid = getUuid(instanceInfo); - /** - * A faster alternative to `Function#apply`, this function invokes `func` - * with the `this` binding of `thisArg` and the arguments of `args`. - * - * @private - * @param {Function} func The function to invoke. - * @param {*} thisArg The `this` binding of `func`. - * @param {Array} args The arguments to invoke `func` with. - * @returns {*} Returns the result of `func`. - */ - function apply(func, thisArg, args) { - switch (args.length) { - case 0: return func.call(thisArg); - case 1: return func.call(thisArg, args[0]); - case 2: return func.call(thisArg, args[0], args[1]); - case 3: return func.call(thisArg, args[0], args[1], args[2]); - } - return func.apply(thisArg, args); + if (managerUrl && uuid) { + return "".concat(managerUrl, "/cozy/instances/").concat(uuid, "/premium"); } +}; - /** - * A specialized version of `baseAggregator` for arrays. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} setter The function to set `accumulator` values. - * @param {Function} iteratee The iteratee to transform keys. - * @param {Object} accumulator The initial aggregated object. - * @returns {Function} Returns `accumulator`. - */ - function arrayAggregator(array, setter, iteratee, accumulator) { - var index = -1, - length = array == null ? 0 : array.length; +exports.buildPremiumLink = buildPremiumLink; - while (++index < length) { - var value = array[index]; - setter(accumulator, value, iteratee(value), array); - } - return accumulator; - } +/***/ }), +/* 836 */ +/***/ (function(module, exports, __webpack_require__) { - /** - * A specialized version of `_.forEach` for arrays without support for - * iteratee shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array} Returns `array`. - */ - function arrayEach(array, iteratee) { - var index = -1, - length = array == null ? 0 : array.length; +"use strict"; - while (++index < length) { - if (iteratee(array[index], index, array) === false) { - break; - } - } - return array; - } - /** - * A specialized version of `_.forEachRight` for arrays without support for - * iteratee shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array} Returns `array`. - */ - function arrayEachRight(array, iteratee) { - var length = array == null ? 0 : array.length; +var _interopRequireDefault = __webpack_require__(532); - while (length--) { - if (iteratee(array[length], length, array) === false) { - break; - } - } - return array; - } +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.getAppDisplayName = exports.getUrl = exports.isInstalled = exports.getStoreInstallationURL = exports.getStoreURL = void 0; - /** - * A specialized version of `_.every` for arrays without support for - * iteratee shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} predicate The function invoked per iteration. - * @returns {boolean} Returns `true` if all elements pass the predicate check, - * else `false`. - */ - function arrayEvery(array, predicate) { - var index = -1, - length = array == null ? 0 : array.length; +var _get = _interopRequireDefault(__webpack_require__(372)); - while (++index < length) { - if (!predicate(array[index], index, array)) { - return false; - } - } - return true; - } +var STORE_SLUG = 'store'; +/** + * Returns the store URL of an app/konnector + * + * @param {Array} [appData=[]] Apps data, as returned by endpoint /apps/ or /konnectors + * @param {object} [app={}] AppObject + * @returns {string} URL as string + */ - /** - * A specialized version of `_.filter` for arrays without support for - * iteratee shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} predicate The function invoked per iteration. - * @returns {Array} Returns the new filtered array. - */ - function arrayFilter(array, predicate) { - var index = -1, - length = array == null ? 0 : array.length, - resIndex = 0, - result = []; +var getStoreURL = function getStoreURL() { + var appData = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; + var app = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - while (++index < length) { - var value = array[index]; - if (predicate(value, index, array)) { - result[resIndex++] = value; - } - } - return result; + if (!app.slug) { + throw new Error('Expected app / konnector with the defined slug'); } - /** - * A specialized version of `_.includes` for arrays without support for - * specifying an index to search from. - * - * @private - * @param {Array} [array] The array to inspect. - * @param {*} target The value to search for. - * @returns {boolean} Returns `true` if `target` is found, else `false`. - */ - function arrayIncludes(array, value) { - var length = array == null ? 0 : array.length; - return !!length && baseIndexOf(array, value, 0) > -1; - } + var storeApp = isInstalled(appData, { + slug: STORE_SLUG + }); + if (!storeApp) return null; + var storeUrl = storeApp.links && storeApp.links.related; + if (!storeUrl) return null; + return "".concat(storeUrl, "#/discover/").concat(app.slug); +}; +/** + * Returns the store URL to install/update an app/konnector + * + * @param {Array} [appData=[]] Apps data, as returned by endpoint /apps/ or + * /konnectors/ + * @param {object} [app={}] AppObject + * @returns {string} URL as string + */ - /** - * This function is like `arrayIncludes` except that it accepts a comparator. - * - * @private - * @param {Array} [array] The array to inspect. - * @param {*} target The value to search for. - * @param {Function} comparator The comparator invoked per element. - * @returns {boolean} Returns `true` if `target` is found, else `false`. - */ - function arrayIncludesWith(array, value, comparator) { - var index = -1, - length = array == null ? 0 : array.length; - while (++index < length) { - if (comparator(value, array[index])) { - return true; - } - } - return false; - } +exports.getStoreURL = getStoreURL; - /** - * A specialized version of `_.map` for arrays without support for iteratee - * shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array} Returns the new mapped array. - */ - function arrayMap(array, iteratee) { - var index = -1, - length = array == null ? 0 : array.length, - result = Array(length); +var getStoreInstallationURL = function getStoreInstallationURL() { + var appData = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; + var app = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var storeUrl = getStoreURL(appData, app); - while (++index < length) { - result[index] = iteratee(array[index], index, array); - } - return result; + if (!storeUrl) { + return null; } - /** - * Appends the elements of `values` to `array`. - * - * @private - * @param {Array} array The array to modify. - * @param {Array} values The values to append. - * @returns {Array} Returns `array`. - */ - function arrayPush(array, values) { - var index = -1, - length = values.length, - offset = array.length; + return "".concat(storeUrl, "/install"); +}; +/** + * + * @param {Array} apps Array of apps returned by /apps /konnectors + * @param {object} wantedApp io.cozy.app with at least a slug + * @returns {object} The io.cozy.app is installed or undefined if not + */ - while (++index < length) { - array[offset + index] = values[index]; - } - return array; - } - /** - * A specialized version of `_.reduce` for arrays without support for - * iteratee shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @param {*} [accumulator] The initial value. - * @param {boolean} [initAccum] Specify using the first element of `array` as - * the initial value. - * @returns {*} Returns the accumulated value. - */ - function arrayReduce(array, iteratee, accumulator, initAccum) { - var index = -1, - length = array == null ? 0 : array.length; +exports.getStoreInstallationURL = getStoreInstallationURL; - if (initAccum && length) { - accumulator = array[++index]; - } - while (++index < length) { - accumulator = iteratee(accumulator, array[index], index, array); - } - return accumulator; - } +var isInstalled = function isInstalled() { + var apps = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; + var wantedApp = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + return apps.find(function (app) { + return app.attributes && app.attributes.slug === wantedApp.slug; + }); +}; +/** + * + * @param {object} app io.cozy.apps document + * @returns {string} url to the app + */ - /** - * A specialized version of `_.reduceRight` for arrays without support for - * iteratee shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @param {*} [accumulator] The initial value. - * @param {boolean} [initAccum] Specify using the last element of `array` as - * the initial value. - * @returns {*} Returns the accumulated value. - */ - function arrayReduceRight(array, iteratee, accumulator, initAccum) { - var length = array == null ? 0 : array.length; - if (initAccum && length) { - accumulator = array[--length]; - } - while (length--) { - accumulator = iteratee(accumulator, array[length], length, array); - } - return accumulator; - } - /** - * A specialized version of `_.some` for arrays without support for iteratee - * shorthands. - * - * @private - * @param {Array} [array] The array to iterate over. - * @param {Function} predicate The function invoked per iteration. - * @returns {boolean} Returns `true` if any element passes the predicate check, - * else `false`. - */ - function arraySome(array, predicate) { - var index = -1, - length = array == null ? 0 : array.length; +exports.isInstalled = isInstalled; - while (++index < length) { - if (predicate(array[index], index, array)) { - return true; - } - } - return false; - } +var getUrl = function getUrl(app) { + return app.links && app.links.related; +}; +/** + * getAppDisplayName - Combines the translated prefix and name of the app into a single string. + * + * @param {object} app io.cozy.apps or io.cozy.konnectors document + * @param {string} lang Locale to use + * + * @returns {string} Name of the app suitable for display + */ - /** - * Gets the size of an ASCII `string`. - * - * @private - * @param {string} string The string inspect. - * @returns {number} Returns the string size. - */ - var asciiSize = baseProperty('length'); - /** - * Converts an ASCII `string` to an array. - * - * @private - * @param {string} string The string to convert. - * @returns {Array} Returns the converted array. - */ - function asciiToArray(string) { - return string.split(''); - } +exports.getUrl = getUrl; - /** - * Splits an ASCII `string` into an array of its words. - * - * @private - * @param {string} The string to inspect. - * @returns {Array} Returns the words of `string`. - */ - function asciiWords(string) { - return string.match(reAsciiWord) || []; - } +var getAppDisplayName = function getAppDisplayName(app, lang) { + var basePrefix = (0, _get.default)(app, 'name_prefix'); + var baseName = (0, _get.default)(app, 'name'); + var translatedName = (0, _get.default)(app, ['locales', lang, 'name'], baseName); + var translatedPrefix = (0, _get.default)(app, ['locales', lang, 'name_prefix'], basePrefix); + return translatedPrefix && translatedPrefix.toLowerCase() !== 'cozy' ? "".concat(translatedPrefix, " ").concat(translatedName) : translatedName; +}; - /** - * The base implementation of methods like `_.findKey` and `_.findLastKey`, - * without support for iteratee shorthands, which iterates over `collection` - * using `eachFunc`. - * - * @private - * @param {Array|Object} collection The collection to inspect. - * @param {Function} predicate The function invoked per iteration. - * @param {Function} eachFunc The function to iterate over `collection`. - * @returns {*} Returns the found element or its key, else `undefined`. - */ - function baseFindKey(collection, predicate, eachFunc) { - var result; - eachFunc(collection, function(value, key, collection) { - if (predicate(value, key, collection)) { - result = key; - return false; - } - }); - return result; - } +exports.getAppDisplayName = getAppDisplayName; - /** - * The base implementation of `_.findIndex` and `_.findLastIndex` without - * support for iteratee shorthands. - * - * @private - * @param {Array} array The array to inspect. - * @param {Function} predicate The function invoked per iteration. - * @param {number} fromIndex The index to search from. - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {number} Returns the index of the matched value, else `-1`. - */ - function baseFindIndex(array, predicate, fromIndex, fromRight) { - var length = array.length, - index = fromIndex + (fromRight ? 1 : -1); +/***/ }), +/* 837 */ +/***/ (function(module, exports, __webpack_require__) { - while ((fromRight ? index-- : ++index < length)) { - if (predicate(array[index], index, array)) { - return index; - } - } - return -1; - } +"use strict"; - /** - * The base implementation of `_.indexOf` without `fromIndex` bounds checks. - * - * @private - * @param {Array} array The array to inspect. - * @param {*} value The value to search for. - * @param {number} fromIndex The index to search from. - * @returns {number} Returns the index of the matched value, else `-1`. - */ - function baseIndexOf(array, value, fromIndex) { - return value === value - ? strictIndexOf(array, value, fromIndex) - : baseFindIndex(array, baseIsNaN, fromIndex); - } - /** - * This function is like `baseIndexOf` except that it accepts a comparator. - * - * @private - * @param {Array} array The array to inspect. - * @param {*} value The value to search for. - * @param {number} fromIndex The index to search from. - * @param {Function} comparator The comparator invoked per element. - * @returns {number} Returns the index of the matched value, else `-1`. - */ - function baseIndexOfWith(array, value, fromIndex, comparator) { - var index = fromIndex - 1, - length = array.length; +var _interopRequireDefault = __webpack_require__(532); - while (++index < length) { - if (comparator(array[index], value)) { - return index; - } - } - return -1; - } +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.normalize = normalize; +exports.ensureFilePath = ensureFilePath; +exports.getParentFolderId = getParentFolderId; +exports.isShortcut = exports.isNote = exports.isDirectory = exports.isFile = exports.splitFilename = void 0; - /** - * The base implementation of `_.isNaN` without support for number objects. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. - */ - function baseIsNaN(value) { - return value !== value; - } +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); - /** - * The base implementation of `_.mean` and `_.meanBy` without support for - * iteratee shorthands. - * - * @private - * @param {Array} array The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {number} Returns the mean. - */ - function baseMean(array, iteratee) { - var length = array == null ? 0 : array.length; - return length ? (baseSum(array, iteratee) / length) : NAN; - } +var _get = _interopRequireDefault(__webpack_require__(372)); - /** - * The base implementation of `_.property` without support for deep paths. - * - * @private - * @param {string} key The key of the property to get. - * @returns {Function} Returns the new accessor function. - */ - function baseProperty(key) { - return function(object) { - return object == null ? undefined : object[key]; - }; - } +var _isString = _interopRequireDefault(__webpack_require__(74)); - /** - * The base implementation of `_.propertyOf` without support for deep paths. - * - * @private - * @param {Object} object The object to query. - * @returns {Function} Returns the new accessor function. - */ - function basePropertyOf(object) { - return function(key) { - return object == null ? undefined : object[key]; - }; - } +var FILE_TYPE = 'file'; +var DIR_TYPE = 'directory'; +var FILENAME_WITH_EXTENSION_REGEX = /(.+)(\..*)$/; +/** + * Returns base filename and extension + * + * @param {object} file An io.cozy.files + * @returns {object} {filename, extension} + */ - /** - * The base implementation of `_.reduce` and `_.reduceRight`, without support - * for iteratee shorthands, which iterates over `collection` using `eachFunc`. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @param {*} accumulator The initial value. - * @param {boolean} initAccum Specify using the first or last element of - * `collection` as the initial value. - * @param {Function} eachFunc The function to iterate over `collection`. - * @returns {*} Returns the accumulated value. - */ - function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { - eachFunc(collection, function(value, index, collection) { - accumulator = initAccum - ? (initAccum = false, value) - : iteratee(accumulator, value, index, collection); - }); - return accumulator; - } +var splitFilename = function splitFilename(file) { + if (!(0, _isString.default)(file.name)) throw new Error('file should have a name property '); - /** - * The base implementation of `_.sortBy` which uses `comparer` to define the - * sort order of `array` and replaces criteria objects with their corresponding - * values. - * - * @private - * @param {Array} array The array to sort. - * @param {Function} comparer The function to define sort order. - * @returns {Array} Returns `array`. - */ - function baseSortBy(array, comparer) { - var length = array.length; + if (file.type === 'file') { + var match = file.name.match(FILENAME_WITH_EXTENSION_REGEX); - array.sort(comparer); - while (length--) { - array[length] = array[length].value; + if (match) { + return { + filename: match[1], + extension: match[2] + }; } - return array; } - /** - * The base implementation of `_.sum` and `_.sumBy` without support for - * iteratee shorthands. - * - * @private - * @param {Array} array The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {number} Returns the sum. - */ - function baseSum(array, iteratee) { - var result, - index = -1, - length = array.length; + return { + filename: file.name, + extension: '' + }; +}; +/** + * + * @param {File} file io.cozy.files + */ - while (++index < length) { - var current = iteratee(array[index]); - if (current !== undefined) { - result = result === undefined ? current : (result + current); - } - } - return result; - } - /** - * The base implementation of `_.times` without support for iteratee shorthands - * or max array length checks. - * - * @private - * @param {number} n The number of times to invoke `iteratee`. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array} Returns the array of results. - */ - function baseTimes(n, iteratee) { - var index = -1, - result = Array(n); +exports.splitFilename = splitFilename; - while (++index < n) { - result[index] = iteratee(index); - } - return result; - } +var isFile = function isFile(file) { + return file && file.type === FILE_TYPE; +}; +/** + * + * @param {File} file io.cozy.files + */ - /** - * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array - * of key-value pairs for `object` corresponding to the property names of `props`. - * - * @private - * @param {Object} object The object to query. - * @param {Array} props The property names to get values for. - * @returns {Object} Returns the key-value pairs. - */ - function baseToPairs(object, props) { - return arrayMap(props, function(key) { - return [key, object[key]]; - }); - } - /** - * The base implementation of `_.trim`. - * - * @private - * @param {string} string The string to trim. - * @returns {string} Returns the trimmed string. - */ - function baseTrim(string) { - return string - ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '') - : string; - } +exports.isFile = isFile; - /** - * The base implementation of `_.unary` without support for storing metadata. - * - * @private - * @param {Function} func The function to cap arguments for. - * @returns {Function} Returns the new capped function. - */ - function baseUnary(func) { - return function(value) { - return func(value); - }; - } +var isDirectory = function isDirectory(file) { + return file && file.type === DIR_TYPE; +}; +/** + * + * @param {File} file io.cozy.files + */ - /** - * The base implementation of `_.values` and `_.valuesIn` which creates an - * array of `object` property values corresponding to the property names - * of `props`. - * - * @private - * @param {Object} object The object to query. - * @param {Array} props The property names to get values for. - * @returns {Object} Returns the array of property values. - */ - function baseValues(object, props) { - return arrayMap(props, function(key) { - return object[key]; - }); - } - /** - * Checks if a `cache` value for `key` exists. - * - * @private - * @param {Object} cache The cache to query. - * @param {string} key The key of the entry to check. - * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. - */ - function cacheHas(cache, key) { - return cache.has(key); - } +exports.isDirectory = isDirectory; - /** - * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol - * that is not found in the character symbols. - * - * @private - * @param {Array} strSymbols The string symbols to inspect. - * @param {Array} chrSymbols The character symbols to find. - * @returns {number} Returns the index of the first unmatched string symbol. - */ - function charsStartIndex(strSymbols, chrSymbols) { - var index = -1, - length = strSymbols.length; +var isNote = function isNote(file) { + if (file && file.name && file.name.endsWith('.cozy-note') && file.type === FILE_TYPE && file.metadata && file.metadata.content !== undefined && file.metadata.schema !== undefined && file.metadata.title !== undefined && file.metadata.version !== undefined) return true; + return false; +}; +/** + * + * @param {File} file io.cozy.files + * @returns {boolean} true if the file is a shortcut + */ - while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} - return index; - } - /** - * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol - * that is not found in the character symbols. - * - * @private - * @param {Array} strSymbols The string symbols to inspect. - * @param {Array} chrSymbols The character symbols to find. - * @returns {number} Returns the index of the last unmatched string symbol. - */ - function charsEndIndex(strSymbols, chrSymbols) { - var index = strSymbols.length; +exports.isNote = isNote; - while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} - return index; - } +var isShortcut = function isShortcut(file) { + return file && file.class === 'shortcut'; +}; +/** + * Normalizes an object representing a io.cozy.files object + * + * Ensures existence of `_id` and `_type` + * + * @public + * @param {object} file - object representing the file + * @returns {object} full normalized object + */ - /** - * Gets the number of `placeholder` occurrences in `array`. - * - * @private - * @param {Array} array The array to inspect. - * @param {*} placeholder The placeholder to search for. - * @returns {number} Returns the placeholder count. - */ - function countHolders(array, placeholder) { - var length = array.length, - result = 0; - while (length--) { - if (array[length] === placeholder) { - ++result; - } - } - return result; - } +exports.isShortcut = isShortcut; - /** - * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A - * letters to basic Latin letters. - * - * @private - * @param {string} letter The matched letter to deburr. - * @returns {string} Returns the deburred letter. - */ - var deburrLetter = basePropertyOf(deburredLetters); +function normalize(file) { + var id = file._id || file.id; + var doctype = file._type || 'io.cozy.files'; + return (0, _objectSpread2.default)({ + _id: id, + id: id, + _type: doctype + }, file); +} +/** + * Ensure the file has a `path` attribute, or build it + * + * @public + * @param {object} file - object representing the file + * @param {object} parent - parent directory for the file + * @returns {object} file object with path attribute + */ - /** - * Used by `_.escape` to convert characters to HTML entities. - * - * @private - * @param {string} chr The matched character to escape. - * @returns {string} Returns the escaped character. - */ - var escapeHtmlChar = basePropertyOf(htmlEscapes); - /** - * Used by `_.template` to escape characters for inclusion in compiled string literals. - * - * @private - * @param {string} chr The matched character to escape. - * @returns {string} Returns the escaped character. - */ - function escapeStringChar(chr) { - return '\\' + stringEscapes[chr]; - } +function ensureFilePath(file, parent) { + if (file.path) return file; + if (!parent || !parent.path) throw new Error("Could not define a file path for ".concat(file._id || file.id)); + var path = parent.path + '/' + file.name; + return (0, _objectSpread2.default)({ + path: path + }, file); +} +/** + * Get the id of the parent folder (`null` for the root folder) + * + * @param {object} file - io.cozy.files document + * @returns {string|null} id of the parent folder, if any + */ - /** - * Gets the value at `key` of `object`. - * - * @private - * @param {Object} [object] The object to query. - * @param {string} key The key of the property to get. - * @returns {*} Returns the property value. - */ - function getValue(object, key) { - return object == null ? undefined : object[key]; - } - /** - * Checks if `string` contains Unicode symbols. - * - * @private - * @param {string} string The string to inspect. - * @returns {boolean} Returns `true` if a symbol is found, else `false`. - */ - function hasUnicode(string) { - return reHasUnicode.test(string); - } +function getParentFolderId(file) { + var parentId = (0, _get.default)(file, 'attributes.dir_id'); + return parentId === '' ? null : parentId; +} - /** - * Checks if `string` contains a word composed of Unicode symbols. - * - * @private - * @param {string} string The string to inspect. - * @returns {boolean} Returns `true` if a word is found, else `false`. - */ - function hasUnicodeWord(string) { - return reHasUnicodeWord.test(string); - } +/***/ }), +/* 838 */ +/***/ (function(module, exports, __webpack_require__) { - /** - * Converts `iterator` to an array. - * - * @private - * @param {Object} iterator The iterator to convert. - * @returns {Array} Returns the converted array. - */ - function iteratorToArray(iterator) { - var data, - result = []; +"use strict"; - while (!(data = iterator.next()).done) { - result.push(data.value); - } - return result; - } - /** - * Converts `map` to its key-value pairs. - * - * @private - * @param {Object} map The map to convert. - * @returns {Array} Returns the key-value pairs. - */ - function mapToArray(map) { - var index = -1, - result = Array(map.size); +var _interopRequireDefault = __webpack_require__(532); - map.forEach(function(value, key) { - result[++index] = [key, value]; - }); - return result; - } +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.getReferencedFolder = exports.createFolderWithReference = exports.ensureMagicFolder = exports.MAGIC_FOLDERS = void 0; - /** - * Creates a unary function that invokes `func` with its argument transformed. - * - * @private - * @param {Function} func The function to wrap. - * @param {Function} transform The argument transform. - * @returns {Function} Returns the new function. - */ - function overArg(func, transform) { - return function(arg) { - return func(transform(arg)); - }; - } +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - /** - * Replaces all `placeholder` elements in `array` with an internal placeholder - * and returns an array of their indexes. - * - * @private - * @param {Array} array The array to modify. - * @param {*} placeholder The placeholder to replace. - * @returns {Array} Returns the new array of placeholder indexes. - */ - function replaceHolders(array, placeholder) { - var index = -1, - length = array.length, - resIndex = 0, - result = []; +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); - while (++index < length) { - var value = array[index]; - if (value === placeholder || value === PLACEHOLDER) { - array[index] = PLACEHOLDER; - result[resIndex++] = index; - } - } - return result; - } +var _sortBy = _interopRequireDefault(__webpack_require__(839)); - /** - * Converts `set` to an array of its values. - * - * @private - * @param {Object} set The set to convert. - * @returns {Array} Returns the values. - */ - function setToArray(set) { - var index = -1, - result = Array(set.size); +var APP_DOCTYPE = 'io.cozy.apps'; +var MAGIC_FOLDERS = { + ADMINISTRATIVE: "".concat(APP_DOCTYPE, "/administrative"), + PHOTOS: "".concat(APP_DOCTYPE, "/photos"), + PHOTOS_BACKUP: "".concat(APP_DOCTYPE, "/photos/mobile"), + PHOTOS_UPLOAD: "".concat(APP_DOCTYPE, "/photos/upload"), + NOTES: "".concat(APP_DOCTYPE, "/notes"), + HOME: "".concat(APP_DOCTYPE, "/home") +}; +/** + * Returns a "Magic Folder", given its id. See https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.apps/#special-iocozyapps-doctypes + * + * @param {object} client cozy-client instance + * @param {string} id Magic Folder id. `CozyFolder.magicFolders` contains the + * ids of folders that can be magic folders. + * @param {string} path Default path to use if magic folder does not exist + * @returns {object} Folder document + */ - set.forEach(function(value) { - result[++index] = value; - }); - return result; - } +exports.MAGIC_FOLDERS = MAGIC_FOLDERS; - /** - * Converts `set` to its value-value pairs. - * - * @private - * @param {Object} set The set to convert. - * @returns {Array} Returns the value-value pairs. - */ - function setToPairs(set) { - var index = -1, - result = Array(set.size); +var ensureMagicFolder = +/*#__PURE__*/ +function () { + var _ref = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(client, id, path) { + var magicFolderDocument, existingMagicFolder, magicFoldersValues; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + magicFolderDocument = { + _type: APP_DOCTYPE, + _id: id + }; + _context.next = 3; + return getReferencedFolder(client, magicFolderDocument); - set.forEach(function(value) { - result[++index] = [value, value]; - }); - return result; - } + case 3: + existingMagicFolder = _context.sent; - /** - * A specialized version of `_.indexOf` which performs strict equality - * comparisons of values, i.e. `===`. - * - * @private - * @param {Array} array The array to inspect. - * @param {*} value The value to search for. - * @param {number} fromIndex The index to search from. - * @returns {number} Returns the index of the matched value, else `-1`. - */ - function strictIndexOf(array, value, fromIndex) { - var index = fromIndex - 1, - length = array.length; + if (!existingMagicFolder) { + _context.next = 6; + break; + } - while (++index < length) { - if (array[index] === value) { - return index; - } - } - return -1; - } + return _context.abrupt("return", existingMagicFolder); - /** - * A specialized version of `_.lastIndexOf` which performs strict equality - * comparisons of values, i.e. `===`. - * - * @private - * @param {Array} array The array to inspect. - * @param {*} value The value to search for. - * @param {number} fromIndex The index to search from. - * @returns {number} Returns the index of the matched value, else `-1`. - */ - function strictLastIndexOf(array, value, fromIndex) { - var index = fromIndex + 1; - while (index--) { - if (array[index] === value) { - return index; - } - } - return index; - } + case 6: + magicFoldersValues = Object.values(MAGIC_FOLDERS); - /** - * Gets the number of symbols in `string`. - * - * @private - * @param {string} string The string to inspect. - * @returns {number} Returns the string size. - */ - function stringSize(string) { - return hasUnicode(string) - ? unicodeSize(string) - : asciiSize(string); - } + if (magicFoldersValues.includes(id)) { + _context.next = 9; + break; + } - /** - * Converts `string` to an array. - * - * @private - * @param {string} string The string to convert. - * @returns {Array} Returns the converted array. - */ - function stringToArray(string) { - return hasUnicode(string) - ? unicodeToArray(string) - : asciiToArray(string); - } + throw new Error("Cannot create Magic folder with id ".concat(id, ". Allowed values are ").concat(magicFoldersValues.join(', '), ".")); - /** - * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace - * character of `string`. - * - * @private - * @param {string} string The string to inspect. - * @returns {number} Returns the index of the last non-whitespace character. - */ - function trimmedEndIndex(string) { - var index = string.length; + case 9: + if (path) { + _context.next = 11; + break; + } - while (index-- && reWhitespace.test(string.charAt(index))) {} - return index; - } + throw new Error('Magic folder default path must be defined'); - /** - * Used by `_.unescape` to convert HTML entities to characters. - * - * @private - * @param {string} chr The matched character to unescape. - * @returns {string} Returns the unescaped character. - */ - var unescapeHtmlChar = basePropertyOf(htmlUnescapes); + case 11: + return _context.abrupt("return", createFolderWithReference(client, path, magicFolderDocument)); - /** - * Gets the size of a Unicode `string`. - * - * @private - * @param {string} string The string inspect. - * @returns {number} Returns the string size. - */ - function unicodeSize(string) { - var result = reUnicode.lastIndex = 0; - while (reUnicode.test(string)) { - ++result; - } - return result; - } + case 12: + case "end": + return _context.stop(); + } + } + }, _callee); + })); - /** - * Converts a Unicode `string` to an array. - * - * @private - * @param {string} string The string to convert. - * @returns {Array} Returns the converted array. - */ - function unicodeToArray(string) { - return string.match(reUnicode) || []; - } + return function ensureMagicFolder(_x, _x2, _x3) { + return _ref.apply(this, arguments); + }; +}(); +/** + * The next functions are considered private and only exported for unit tests + */ - /** - * Splits a Unicode `string` into an array of its words. - * - * @private - * @param {string} The string to inspect. - * @returns {Array} Returns the words of `string`. - */ - function unicodeWords(string) { - return string.match(reUnicodeWord) || []; - } +/** + * Create a folder with a reference to the given document + * + * @param {object} client cozy-client instance + * @param {string} path Folder path + * @param {object} document Document to make reference to. Any doctype. + * @returns {object} Folder document + */ - /*--------------------------------------------------------------------------*/ - /** - * Create a new pristine `lodash` function using the `context` object. - * - * @static - * @memberOf _ - * @since 1.1.0 - * @category Util - * @param {Object} [context=root] The context object. - * @returns {Function} Returns a new `lodash` function. - * @example - * - * _.mixin({ 'foo': _.constant('foo') }); - * - * var lodash = _.runInContext(); - * lodash.mixin({ 'bar': lodash.constant('bar') }); - * - * _.isFunction(_.foo); - * // => true - * _.isFunction(_.bar); - * // => false - * - * lodash.isFunction(lodash.foo); - * // => false - * lodash.isFunction(lodash.bar); - * // => true - * - * // Create a suped-up `defer` in Node.js. - * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer; - */ - var runInContext = (function runInContext(context) { - context = context == null ? root : _.defaults(root.Object(), context, _.pick(root, contextProps)); +exports.ensureMagicFolder = ensureMagicFolder; - /** Built-in constructor references. */ - var Array = context.Array, - Date = context.Date, - Error = context.Error, - Function = context.Function, - Math = context.Math, - Object = context.Object, - RegExp = context.RegExp, - String = context.String, - TypeError = context.TypeError; +var createFolderWithReference = +/*#__PURE__*/ +function () { + var _ref2 = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(client, path, document) { + var collection, dirId, _ref3, dirInfos; - /** Used for built-in method references. */ - var arrayProto = Array.prototype, - funcProto = Function.prototype, - objectProto = Object.prototype; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + collection = client.collection('io.cozy.files'); + _context2.next = 3; + return collection.ensureDirectoryExists(path); - /** Used to detect overreaching core-js shims. */ - var coreJsData = context['__core-js_shared__']; + case 3: + dirId = _context2.sent; + _context2.next = 6; + return collection.addReferencesTo(document, [{ + _id: dirId + }]); - /** Used to resolve the decompiled source of functions. */ - var funcToString = funcProto.toString; + case 6: + _context2.next = 8; + return collection.get(dirId); - /** Used to check objects for own properties. */ - var hasOwnProperty = objectProto.hasOwnProperty; + case 8: + _ref3 = _context2.sent; + dirInfos = _ref3.data; + return _context2.abrupt("return", dirInfos); - /** Used to generate unique IDs. */ - var idCounter = 0; + case 11: + case "end": + return _context2.stop(); + } + } + }, _callee2); + })); - /** Used to detect methods masquerading as native. */ - var maskSrcKey = (function() { - var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ''); - return uid ? ('Symbol(src)_1.' + uid) : ''; - }()); + return function createFolderWithReference(_x4, _x5, _x6) { + return _ref2.apply(this, arguments); + }; +}(); +/** + * Returns an array of folder referenced by the given document + * + * @param {object} client cozy-client instance + * @param {object} document Document to get references from + * @returns {Array} Array of folders referenced with the given + * document + */ - /** - * Used to resolve the - * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) - * of values. - */ - var nativeObjectToString = objectProto.toString; - /** Used to infer the `Object` constructor. */ - var objectCtorString = funcToString.call(Object); +exports.createFolderWithReference = createFolderWithReference; - /** Used to restore the original `_` reference in `_.noConflict`. */ - var oldDash = root._; +var getReferencedFolder = +/*#__PURE__*/ +function () { + var _ref4 = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(client, document) { + var _ref5, included, foldersOutsideTrash; - /** Used to detect if a method is native. */ - var reIsNative = RegExp('^' + - funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&') - .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' - ); + return _regenerator.default.wrap(function _callee3$(_context3) { + while (1) { + switch (_context3.prev = _context3.next) { + case 0: + _context3.next = 2; + return client.collection('io.cozy.files').findReferencedBy(document); - /** Built-in value references. */ - var Buffer = moduleExports ? context.Buffer : undefined, - Symbol = context.Symbol, - Uint8Array = context.Uint8Array, - allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined, - getPrototype = overArg(Object.getPrototypeOf, Object), - objectCreate = Object.create, - propertyIsEnumerable = objectProto.propertyIsEnumerable, - splice = arrayProto.splice, - spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined, - symIterator = Symbol ? Symbol.iterator : undefined, - symToStringTag = Symbol ? Symbol.toStringTag : undefined; + case 2: + _ref5 = _context3.sent; + included = _ref5.included; + foldersOutsideTrash = included.filter(function (folder) { + return !/^\/\.cozy_trash/.test(folder.attributes.path); + }); // there can be multiple folders with the same reference in some edge cases, when this happens we return the most recent one - var defineProperty = (function() { - try { - var func = getNative(Object, 'defineProperty'); - func({}, '', {}); - return func; - } catch (e) {} - }()); + return _context3.abrupt("return", foldersOutsideTrash.length > 0 ? (0, _sortBy.default)(foldersOutsideTrash, 'created_at').pop() : null); - /** Mocked built-ins. */ - var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout, - ctxNow = Date && Date.now !== root.Date.now && Date.now, - ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout; + case 6: + case "end": + return _context3.stop(); + } + } + }, _callee3); + })); + + return function getReferencedFolder(_x7, _x8) { + return _ref4.apply(this, arguments); + }; +}(); + +exports.getReferencedFolder = getReferencedFolder; + +/***/ }), +/* 839 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseFlatten = __webpack_require__(607), + baseOrderBy = __webpack_require__(655), + baseRest = __webpack_require__(647), + isIterateeCall = __webpack_require__(763); + +/** + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection thru each iteratee. This method + * performs a stable sort, that is, it preserves the original sort order of + * equal elements. The iteratees are invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {...(Function|Function[])} [iteratees=[_.identity]] + * The iteratees to sort by. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 30 }, + * { 'user': 'barney', 'age': 34 } + * ]; + * + * _.sortBy(users, [function(o) { return o.user; }]); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]] + * + * _.sortBy(users, ['user', 'age']); + * // => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]] + */ +var sortBy = baseRest(function(collection, iteratees) { + if (collection == null) { + return []; + } + var length = iteratees.length; + if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) { + iteratees = []; + } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) { + iteratees = [iteratees[0]]; + } + return baseOrderBy(collection, baseFlatten(iteratees, 1), []); +}); - /* Built-in method references for those with the same name as other `lodash` methods. */ - var nativeCeil = Math.ceil, - nativeFloor = Math.floor, - nativeGetSymbols = Object.getOwnPropertySymbols, - nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined, - nativeIsFinite = context.isFinite, - nativeJoin = arrayProto.join, - nativeKeys = overArg(Object.keys, Object), - nativeMax = Math.max, - nativeMin = Math.min, - nativeNow = Date.now, - nativeParseInt = context.parseInt, - nativeRandom = Math.random, - nativeReverse = arrayProto.reverse; +module.exports = sortBy; - /* Built-in method references that are verified to be native. */ - var DataView = getNative(context, 'DataView'), - Map = getNative(context, 'Map'), - Promise = getNative(context, 'Promise'), - Set = getNative(context, 'Set'), - WeakMap = getNative(context, 'WeakMap'), - nativeCreate = getNative(Object, 'create'); - /** Used to store function metadata. */ - var metaMap = WeakMap && new WeakMap; +/***/ }), +/* 840 */ +/***/ (function(module, exports, __webpack_require__) { - /** Used to lookup unminified function names. */ - var realNames = {}; +"use strict"; - /** Used to detect maps, sets, and weakmaps. */ - var dataViewCtorString = toSource(DataView), - mapCtorString = toSource(Map), - promiseCtorString = toSource(Promise), - setCtorString = toSource(Set), - weakMapCtorString = toSource(WeakMap); - /** Used to convert symbols to primitives and strings. */ - var symbolProto = Symbol ? Symbol.prototype : undefined, - symbolValueOf = symbolProto ? symbolProto.valueOf : undefined, - symbolToString = symbolProto ? symbolProto.toString : undefined; +var _interopRequireDefault = __webpack_require__(532); - /*------------------------------------------------------------------------*/ +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.fetchURL = exports.generateUrlForNote = exports.generatePrivateUrl = void 0; - /** - * Creates a `lodash` object which wraps `value` to enable implicit method - * chain sequences. Methods that operate on and return arrays, collections, - * and functions can be chained together. Methods that retrieve a single value - * or may return a primitive value will automatically end the chain sequence - * and return the unwrapped value. Otherwise, the value must be unwrapped - * with `_#value`. - * - * Explicit chain sequences, which must be unwrapped with `_#value`, may be - * enabled using `_.chain`. - * - * The execution of chained methods is lazy, that is, it's deferred until - * `_#value` is implicitly or explicitly called. - * - * Lazy evaluation allows several methods to support shortcut fusion. - * Shortcut fusion is an optimization to merge iteratee calls; this avoids - * the creation of intermediate arrays and can greatly reduce the number of - * iteratee executions. Sections of a chain sequence qualify for shortcut - * fusion if the section is applied to an array and iteratees accept only - * one argument. The heuristic for whether a section qualifies for shortcut - * fusion is subject to change. - * - * Chaining is supported in custom builds as long as the `_#value` method is - * directly or indirectly included in the build. - * - * In addition to lodash methods, wrappers have `Array` and `String` methods. - * - * The wrapper `Array` methods are: - * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` - * - * The wrapper `String` methods are: - * `replace` and `split` - * - * The wrapper methods that support shortcut fusion are: - * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, - * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, - * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` - * - * The chainable wrapper methods are: - * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, - * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, - * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, - * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, - * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, - * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, - * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, - * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, - * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, - * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, - * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, - * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, - * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, - * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, - * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, - * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, - * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, - * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, - * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, - * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, - * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, - * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, - * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, - * `zipObject`, `zipObjectDeep`, and `zipWith` - * - * The wrapper methods that are **not** chainable by default are: - * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, - * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, - * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, - * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, - * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, - * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, - * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, - * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, - * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, - * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, - * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, - * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, - * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, - * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, - * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, - * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, - * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, - * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, - * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, - * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, - * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, - * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, - * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, - * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, - * `upperFirst`, `value`, and `words` - * - * @name _ - * @constructor - * @category Seq - * @param {*} value The value to wrap in a `lodash` instance. - * @returns {Object} Returns the new `lodash` wrapper instance. - * @example - * - * function square(n) { - * return n * n; - * } - * - * var wrapped = _([1, 2, 3]); - * - * // Returns an unwrapped value. - * wrapped.reduce(_.add); - * // => 6 - * - * // Returns a wrapped value. - * var squares = wrapped.map(square); - * - * _.isArray(squares); - * // => false - * - * _.isArray(squares.value()); - * // => true - */ - function lodash(value) { - if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { - if (value instanceof LodashWrapper) { - return value; - } - if (hasOwnProperty.call(value, '__wrapped__')) { - return wrapperClone(value); - } - } - return new LodashWrapper(value); - } +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - /** - * The base implementation of `_.create` without support for assigning - * properties to the created object. - * - * @private - * @param {Object} proto The object to inherit from. - * @returns {Object} Returns the new object. - */ - var baseCreate = (function() { - function object() {} - return function(proto) { - if (!isObject(proto)) { - return {}; - } - if (objectCreate) { - return objectCreate(proto); - } - object.prototype = proto; - var result = new object; - object.prototype = undefined; - return result; - }; - }()); +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); - /** - * The function whose prototype chain sequence wrappers inherit from. - * - * @private - */ - function baseLodash() { - // No operation performed. - } +var _helpers = __webpack_require__(681); - /** - * The base constructor for creating `lodash` wrapper objects. - * - * @private - * @param {*} value The value to wrap. - * @param {boolean} [chainAll] Enable explicit method chain sequences. - */ - function LodashWrapper(value, chainAll) { - this.__wrapped__ = value; - this.__actions__ = []; - this.__chain__ = !!chainAll; - this.__index__ = 0; - this.__values__ = undefined; - } +var generatePrivateUrl = function generatePrivateUrl(notesAppUrl, file) { + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + var returnUrl = options.returnUrl; + var url = new URL(notesAppUrl); - /** - * By default, the template delimiters used by lodash are like those in - * embedded Ruby (ERB) as well as ES2015 template strings. Change the - * following template settings to use alternative delimiters. - * - * @static - * @memberOf _ - * @type {Object} - */ - lodash.templateSettings = { + if (returnUrl) { + url.searchParams.set('returnUrl', returnUrl); + } - /** - * Used to detect `data` property values to be HTML-escaped. - * - * @memberOf _.templateSettings - * @type {RegExp} - */ - 'escape': reEscape, + url.hash = "#/n/".concat(file.id); + return url.toString(); +}; - /** - * Used to detect code to be evaluated. - * - * @memberOf _.templateSettings - * @type {RegExp} - */ - 'evaluate': reEvaluate, +exports.generatePrivateUrl = generatePrivateUrl; - /** - * Used to detect `data` property values to inject. - * - * @memberOf _.templateSettings - * @type {RegExp} - */ - 'interpolate': reInterpolate, +var generateUrlForNote = function generateUrlForNote(notesAppUrl, file) { + console.warn('generateUrlForNote is deprecated. Please use models.note.generatePrivateUrl instead'); + return generatePrivateUrl(notesAppUrl, file); +}; +/** + * Fetch and build an URL to open a note. + * + * @param {object} client CozyClient instance + * @param {object} file io.cozy.file object + * @returns {string} url + */ - /** - * Used to reference the data object in the template text. - * - * @memberOf _.templateSettings - * @type {string} - */ - 'variable': '', - /** - * Used to import variables into the compiled template. - * - * @memberOf _.templateSettings - * @type {Object} - */ - 'imports': { +exports.generateUrlForNote = generateUrlForNote; - /** - * A reference to the `lodash` function. - * - * @memberOf _.templateSettings.imports - * @type {Function} - */ - '_': lodash - } - }; +var fetchURL = +/*#__PURE__*/ +function () { + var _ref = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(client, file) { + var _ref2, _ref2$data, note_id, subdomain, protocol, instance, sharecode, public_name, searchParams; - // Ensure wrappers are instances of `baseLodash`. - lodash.prototype = baseLodash.prototype; - lodash.prototype.constructor = lodash; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + _context.next = 2; + return client.getStackClient().collection('io.cozy.notes').fetchURL({ + _id: file.id + }); - LodashWrapper.prototype = baseCreate(baseLodash.prototype); - LodashWrapper.prototype.constructor = LodashWrapper; + case 2: + _ref2 = _context.sent; + _ref2$data = _ref2.data; + note_id = _ref2$data.note_id; + subdomain = _ref2$data.subdomain; + protocol = _ref2$data.protocol; + instance = _ref2$data.instance; + sharecode = _ref2$data.sharecode; + public_name = _ref2$data.public_name; - /*------------------------------------------------------------------------*/ + if (!sharecode) { + _context.next = 17; + break; + } - /** - * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. - * - * @private - * @constructor - * @param {*} value The value to wrap. - */ - function LazyWrapper(value) { - this.__wrapped__ = value; - this.__actions__ = []; - this.__dir__ = 1; - this.__filtered__ = false; - this.__iteratees__ = []; - this.__takeCount__ = MAX_ARRAY_LENGTH; - this.__views__ = []; - } + searchParams = [['id', note_id]]; + searchParams.push(['sharecode', sharecode]); + if (public_name) searchParams.push(['username', public_name]); + return _context.abrupt("return", (0, _helpers.generateWebLink)({ + cozyUrl: "".concat(protocol, "://").concat(instance), + searchParams: searchParams, + pathname: '/public/', + slug: 'notes', + subDomainType: subdomain + })); - /** - * Creates a clone of the lazy wrapper object. - * - * @private - * @name clone - * @memberOf LazyWrapper - * @returns {Object} Returns the cloned `LazyWrapper` object. - */ - function lazyClone() { - var result = new LazyWrapper(this.__wrapped__); - result.__actions__ = copyArray(this.__actions__); - result.__dir__ = this.__dir__; - result.__filtered__ = this.__filtered__; - result.__iteratees__ = copyArray(this.__iteratees__); - result.__takeCount__ = this.__takeCount__; - result.__views__ = copyArray(this.__views__); - return result; - } + case 17: + return _context.abrupt("return", (0, _helpers.generateWebLink)({ + cozyUrl: "".concat(protocol, "://").concat(instance), + pathname: '', + slug: 'notes', + subDomainType: subdomain, + hash: "/n/".concat(note_id) + })); - /** - * Reverses the direction of lazy iteration. - * - * @private - * @name reverse - * @memberOf LazyWrapper - * @returns {Object} Returns the new reversed `LazyWrapper` object. - */ - function lazyReverse() { - if (this.__filtered__) { - var result = new LazyWrapper(this); - result.__dir__ = -1; - result.__filtered__ = true; - } else { - result = this.clone(); - result.__dir__ *= -1; + case 18: + case "end": + return _context.stop(); + } } - return result; - } + }, _callee); + })); - /** - * Extracts the unwrapped value from its lazy wrapper. - * - * @private - * @name value - * @memberOf LazyWrapper - * @returns {*} Returns the unwrapped value. - */ - function lazyValue() { - var array = this.__wrapped__.value(), - dir = this.__dir__, - isArr = isArray(array), - isRight = dir < 0, - arrLength = isArr ? array.length : 0, - view = getView(0, arrLength, this.__views__), - start = view.start, - end = view.end, - length = end - start, - index = isRight ? end : (start - 1), - iteratees = this.__iteratees__, - iterLength = iteratees.length, - resIndex = 0, - takeCount = nativeMin(length, this.__takeCount__); + return function fetchURL(_x, _x2) { + return _ref.apply(this, arguments); + }; +}(); - if (!isArr || (!isRight && arrLength == length && takeCount == length)) { - return baseWrapperValue(array, this.__actions__); - } - var result = []; +exports.fetchURL = fetchURL; - outer: - while (length-- && resIndex < takeCount) { - index += dir; +/***/ }), +/* 841 */ +/***/ (function(module, exports, __webpack_require__) { - var iterIndex = -1, - value = array[index]; +"use strict"; - while (++iterIndex < iterLength) { - var data = iteratees[iterIndex], - iteratee = data.iteratee, - type = data.type, - computed = iteratee(value); - if (type == LAZY_MAP_FLAG) { - value = computed; - } else if (!computed) { - if (type == LAZY_FILTER_FLAG) { - continue outer; - } else { - break outer; - } - } - } - result[resIndex++] = value; - } - return result; - } +var _interopRequireDefault = __webpack_require__(532); - // Ensure `LazyWrapper` is an instance of `baseLodash`. - LazyWrapper.prototype = baseCreate(baseLodash.prototype); - LazyWrapper.prototype.constructor = LazyWrapper; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.isReadOnly = isReadOnly; +exports.fetchOwn = fetchOwn; +exports.isForType = isForType; +exports.isDocumentReadOnly = isDocumentReadOnly; - /*------------------------------------------------------------------------*/ +var _objectSpread2 = _interopRequireDefault(__webpack_require__(545)); - /** - * Creates a hash object. - * - * @private - * @constructor - * @param {Array} [entries] The key-value pairs to cache. - */ - function Hash(entries) { - var index = -1, - length = entries == null ? 0 : entries.length; +var _regenerator = _interopRequireDefault(__webpack_require__(547)); - this.clear(); - while (++index < length) { - var entry = entries[index]; - this.set(entry[0], entry[1]); - } - } +var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(549)); - /** - * Removes all key-value entries from the hash. - * - * @private - * @name clear - * @memberOf Hash - */ - function hashClear() { - this.__data__ = nativeCreate ? nativeCreate(null) : {}; - this.size = 0; - } +var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(542)); - /** - * Removes `key` and its value from the hash. - * - * @private - * @name delete - * @memberOf Hash - * @param {Object} hash The hash to modify. - * @param {string} key The key of the value to remove. - * @returns {boolean} Returns `true` if the entry was removed, else `false`. - */ - function hashDelete(key) { - var result = this.has(key) && delete this.__data__[key]; - this.size -= result ? 1 : 0; - return result; - } +var _intersection = _interopRequireDefault(__webpack_require__(649)); - /** - * Gets the hash value for `key`. - * - * @private - * @name get - * @memberOf Hash - * @param {string} key The key of the value to get. - * @returns {*} Returns the entry value. - */ - function hashGet(key) { - var data = this.__data__; - if (nativeCreate) { - var result = data[key]; - return result === HASH_UNDEFINED ? undefined : result; - } - return hasOwnProperty.call(data, key) ? data[key] : undefined; - } +var _get = _interopRequireDefault(__webpack_require__(372)); - /** - * Checks if a hash value for `key` exists. - * - * @private - * @name has - * @memberOf Hash - * @param {string} key The key of the entry to check. - * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. - */ - function hashHas(key) { - var data = this.__data__; - return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key); - } +var _cozyClient = _interopRequireDefault(__webpack_require__(529)); - /** - * Sets the hash `key` to `value`. - * - * @private - * @name set - * @memberOf Hash - * @param {string} key The key of the value to set. - * @param {*} value The value to set. - * @returns {Object} Returns the hash instance. - */ - function hashSet(key, value) { - var data = this.__data__; - this.size += this.has(key) ? 0 : 1; - data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value; - return this; - } +var _file = __webpack_require__(837); - // Add methods to `Hash`. - Hash.prototype.clear = hashClear; - Hash.prototype['delete'] = hashDelete; - Hash.prototype.get = hashGet; - Hash.prototype.has = hashHas; - Hash.prototype.set = hashSet; +function isReadOnly(perm) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + var _options$writability = options.writability, + writability = _options$writability === void 0 ? ['PATCH', 'POST', 'PUT', 'DELETE'] : _options$writability; + return perm.verbs && // no verbs is equivalent to ['ALL'] + perm.verbs.length > 0 && // empty array is equivalent to ['ALL'] + (0, _intersection.default)(perm.verbs, ['ALL'].concat((0, _toConsumableArray2.default)(writability))).length === 0; +} +/** + * Fetches the list of permissions blocks + * + * @param {CozyClient} client - + * @returns {PermissionItem[]} list of permissions + */ - /*------------------------------------------------------------------------*/ - /** - * Creates an list cache object. - * - * @private - * @constructor - * @param {Array} [entries] The key-value pairs to cache. - */ - function ListCache(entries) { - var index = -1, - length = entries == null ? 0 : entries.length; +function fetchOwn(_x) { + return _fetchOwn.apply(this, arguments); +} +/** + * Checks if the permission item is about a specific doctype + * + * @param {PermissionItem} permission - + * @param {string} type - doctype + */ - this.clear(); - while (++index < length) { - var entry = entries[index]; - this.set(entry[0], entry[1]); - } - } - /** - * Removes all key-value entries from the list cache. - * - * @private - * @name clear - * @memberOf ListCache - */ - function listCacheClear() { - this.__data__ = []; - this.size = 0; - } +function _fetchOwn() { + _fetchOwn = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee(client) { + var collection, data, permissions; + return _regenerator.default.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + collection = client.collection('io.cozy.permissions'); + _context.next = 3; + return collection.getOwnPermissions(); - /** - * Removes `key` and its value from the list cache. - * - * @private - * @name delete - * @memberOf ListCache - * @param {string} key The key of the value to remove. - * @returns {boolean} Returns `true` if the entry was removed, else `false`. - */ - function listCacheDelete(key) { - var data = this.__data__, - index = assocIndexOf(data, key); + case 3: + data = _context.sent; + permissions = (0, _get.default)(data, 'data.attributes.permissions'); - if (index < 0) { - return false; - } - var lastIndex = data.length - 1; - if (index == lastIndex) { - data.pop(); - } else { - splice.call(data, index, 1); - } - --this.size; - return true; - } + if (permissions) { + _context.next = 7; + break; + } - /** - * Gets the list cache value for `key`. - * - * @private - * @name get - * @memberOf ListCache - * @param {string} key The key of the value to get. - * @returns {*} Returns the entry value. - */ - function listCacheGet(key) { - var data = this.__data__, - index = assocIndexOf(data, key); + throw "Can't get self permissions"; - return index < 0 ? undefined : data[index][1]; - } + case 7: + return _context.abrupt("return", Object.values(permissions)); - /** - * Checks if a list cache value for `key` exists. - * - * @private - * @name has - * @memberOf ListCache - * @param {string} key The key of the entry to check. - * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. - */ - function listCacheHas(key) { - return assocIndexOf(this.__data__, key) > -1; - } + case 8: + case "end": + return _context.stop(); + } + } + }, _callee); + })); + return _fetchOwn.apply(this, arguments); +} - /** - * Sets the list cache `key` to `value`. - * - * @private - * @name set - * @memberOf ListCache - * @param {string} key The key of the value to set. - * @param {*} value The value to set. - * @returns {Object} Returns the list cache instance. - */ - function listCacheSet(key, value) { - var data = this.__data__, - index = assocIndexOf(data, key); +function isForType(permission, type) { + return permission.type === type || permission.type + '.*' === type; +} +/** + * Finds the permission block for the the file + * in the permissions owned by the current cozy-client. + * + * Iterates through parent folders if needed + * until we can find the permissions attached to the share + * + * @private + * @param {object} object - + * @param {Document} object.document - a couchdb document + * @param {CozyClient} object.document.client - + * @param {PermissionItem[]} object.permissions - + * @returns {PermissionItem|undefined} the corresponding permission block + */ - if (index < 0) { - ++this.size; - data.push([key, value]); - } else { - data[index][1] = value; - } - return this; - } - // Add methods to `ListCache`. - ListCache.prototype.clear = listCacheClear; - ListCache.prototype['delete'] = listCacheDelete; - ListCache.prototype.get = listCacheGet; - ListCache.prototype.has = listCacheHas; - ListCache.prototype.set = listCacheSet; +function findPermissionFor(_x2) { + return _findPermissionFor2.apply(this, arguments); +} - /*------------------------------------------------------------------------*/ +function _findPermissionFor2() { + _findPermissionFor2 = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee4(_ref) { + var document, client, permissions, id, type, doc, definedPermissions, perms, getFile, _getFile, _findPermissionFor, _findPermissionFor3; - /** - * Creates a map cache object to store key-value pairs. - * - * @private - * @constructor - * @param {Array} [entries] The key-value pairs to cache. - */ - function MapCache(entries) { - var index = -1, - length = entries == null ? 0 : entries.length; + return _regenerator.default.wrap(function _callee4$(_context4) { + while (1) { + switch (_context4.prev = _context4.next) { + case 0: + _findPermissionFor3 = function _ref6() { + _findPermissionFor3 = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee3(_ref2) { + var doc, client, perms, perm, parentId, parentFolder; + return _regenerator.default.wrap(function _callee3$(_context3) { + while (1) { + switch (_context3.prev = _context3.next) { + case 0: + doc = _ref2.doc, client = _ref2.client, perms = _ref2.perms; + perm = perms.find(function (perm) { + if (perm.values) { + var selector = perm.selector || 'id'; + var value = doc[selector]; + return perm.values.includes(value); + } else { + return true; + } + }); - this.clear(); - while (++index < length) { - var entry = entries[index]; - this.set(entry[0], entry[1]); - } - } + if (!perm) { + _context3.next = 6; + break; + } - /** - * Removes all key-value entries from the map. - * - * @private - * @name clear - * @memberOf MapCache - */ - function mapCacheClear() { - this.size = 0; - this.__data__ = { - 'hash': new Hash, - 'map': new (Map || ListCache), - 'string': new Hash - }; - } + return _context3.abrupt("return", perm); - /** - * Removes `key` and its value from the map. - * - * @private - * @name delete - * @memberOf MapCache - * @param {string} key The key of the value to remove. - * @returns {boolean} Returns `true` if the entry was removed, else `false`. - */ - function mapCacheDelete(key) { - var result = getMapData(this, key)['delete'](key); - this.size -= result ? 1 : 0; - return result; - } + case 6: + if (!(type === 'io.cozy.files')) { + _context3.next = 16; + break; + } - /** - * Gets the map value for `key`. - * - * @private - * @name get - * @memberOf MapCache - * @param {string} key The key of the value to get. - * @returns {*} Returns the entry value. - */ - function mapCacheGet(key) { - return getMapData(this, key).get(key); - } + // for files, we recursively try to check for parent folders + parentId = (0, _file.getParentFolderId)(doc); + _context3.t0 = parentId; - /** - * Checks if a map value for `key` exists. - * - * @private - * @name has - * @memberOf MapCache - * @param {string} key The key of the entry to check. - * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. - */ - function mapCacheHas(key) { - return getMapData(this, key).has(key); - } + if (!_context3.t0) { + _context3.next = 13; + break; + } - /** - * Sets the map `key` to `value`. - * - * @private - * @name set - * @memberOf MapCache - * @param {string} key The key of the value to set. - * @param {*} value The value to set. - * @returns {Object} Returns the map cache instance. - */ - function mapCacheSet(key, value) { - var data = getMapData(this, key), - size = data.size; + _context3.next = 12; + return getFile(parentId); - data.set(key, value); - this.size += data.size == size ? 0 : 1; - return this; - } + case 12: + _context3.t0 = _context3.sent; - // Add methods to `MapCache`. - MapCache.prototype.clear = mapCacheClear; - MapCache.prototype['delete'] = mapCacheDelete; - MapCache.prototype.get = mapCacheGet; - MapCache.prototype.has = mapCacheHas; - MapCache.prototype.set = mapCacheSet; + case 13: + parentFolder = _context3.t0; - /*------------------------------------------------------------------------*/ + if (!parentFolder) { + _context3.next = 16; + break; + } - /** - * - * Creates an array cache object to store unique values. - * - * @private - * @constructor - * @param {Array} [values] The values to cache. - */ - function SetCache(values) { - var index = -1, - length = values == null ? 0 : values.length; + return _context3.abrupt("return", _findPermissionFor({ + doc: parentFolder, + perms: perms, + client: client + })); - this.__data__ = new MapCache; - while (++index < length) { - this.add(values[index]); - } - } + case 16: + return _context3.abrupt("return", undefined); - /** - * Adds `value` to the array cache. - * - * @private - * @name add - * @memberOf SetCache - * @alias push - * @param {*} value The value to cache. - * @returns {Object} Returns the cache instance. - */ - function setCacheAdd(value) { - this.__data__.set(value, HASH_UNDEFINED); - return this; - } + case 17: + case "end": + return _context3.stop(); + } + } + }, _callee3); + })); + return _findPermissionFor3.apply(this, arguments); + }; - /** - * Checks if `value` is in the array cache. - * - * @private - * @name has - * @memberOf SetCache - * @param {*} value The value to search for. - * @returns {number} Returns `true` if `value` is found, else `false`. - */ - function setCacheHas(value) { - return this.__data__.has(value); - } + _findPermissionFor = function _ref5(_x5) { + return _findPermissionFor3.apply(this, arguments); + }; - // Add methods to `SetCache`. - SetCache.prototype.add = SetCache.prototype.push = setCacheAdd; - SetCache.prototype.has = setCacheHas; + _getFile = function _ref4() { + _getFile = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee2(id) { + var query, data; + return _regenerator.default.wrap(function _callee2$(_context2) { + while (1) { + switch (_context2.prev = _context2.next) { + case 0: + query = client.find('io.cozy.files').getById(id); + _context2.next = 3; + return client.query(query); - /*------------------------------------------------------------------------*/ + case 3: + data = _context2.sent; + return _context2.abrupt("return", data && data.data); - /** - * Creates a stack cache object to store key-value pairs. - * - * @private - * @constructor - * @param {Array} [entries] The key-value pairs to cache. - */ - function Stack(entries) { - var data = this.__data__ = new ListCache(entries); - this.size = data.size; - } + case 5: + case "end": + return _context2.stop(); + } + } + }, _callee2); + })); + return _getFile.apply(this, arguments); + }; - /** - * Removes all key-value entries from the stack. - * - * @private - * @name clear - * @memberOf Stack - */ - function stackClear() { - this.__data__ = new ListCache; - this.size = 0; - } + getFile = function _ref3(_x4) { + return _getFile.apply(this, arguments); + }; - /** - * Removes `key` and its value from the stack. - * - * @private - * @name delete - * @memberOf Stack - * @param {string} key The key of the value to remove. - * @returns {boolean} Returns `true` if the entry was removed, else `false`. - */ - function stackDelete(key) { - var data = this.__data__, - result = data['delete'](key); + document = _ref.document, client = _ref.client, permissions = _ref.permissions; + id = document._id || document.id; + type = document._type || document.type; + doc = (0, _objectSpread2.default)({}, document, { + id: id, + type: type + }); - this.size = data.size; - return result; - } + if (!permissions) { + _context4.next = 12; + break; + } - /** - * Gets the stack value for `key`. - * - * @private - * @name get - * @memberOf Stack - * @param {string} key The key of the value to get. - * @returns {*} Returns the entry value. - */ - function stackGet(key) { - return this.__data__.get(key); - } + _context4.t0 = permissions; + _context4.next = 15; + break; + + case 12: + _context4.next = 14; + return fetchOwn(client); - /** - * Checks if a stack value for `key` exists. - * - * @private - * @name has - * @memberOf Stack - * @param {string} key The key of the entry to check. - * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. - */ - function stackHas(key) { - return this.__data__.has(key); - } + case 14: + _context4.t0 = _context4.sent; - /** - * Sets the stack `key` to `value`. - * - * @private - * @name set - * @memberOf Stack - * @param {string} key The key of the value to set. - * @param {*} value The value to set. - * @returns {Object} Returns the stack cache instance. - */ - function stackSet(key, value) { - var data = this.__data__; - if (data instanceof ListCache) { - var pairs = data.__data__; - if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) { - pairs.push([key, value]); - this.size = ++data.size; - return this; + case 15: + definedPermissions = _context4.t0; + perms = definedPermissions.filter(function (p) { + return isForType(p, type); + }); + return _context4.abrupt("return", _findPermissionFor({ + doc: doc, + client: client, + perms: perms + })); + + case 18: + case "end": + return _context4.stop(); } - data = this.__data__ = new MapCache(pairs); } - data.set(key, value); - this.size = data.size; - return this; - } + }, _callee4); + })); + return _findPermissionFor2.apply(this, arguments); +} - // Add methods to `Stack`. - Stack.prototype.clear = stackClear; - Stack.prototype['delete'] = stackDelete; - Stack.prototype.get = stackGet; - Stack.prototype.has = stackHas; - Stack.prototype.set = stackSet; +function isDocumentReadOnly(_x3) { + return _isDocumentReadOnly.apply(this, arguments); +} - /*------------------------------------------------------------------------*/ +function _isDocumentReadOnly() { + _isDocumentReadOnly = (0, _asyncToGenerator2.default)( + /*#__PURE__*/ + _regenerator.default.mark(function _callee5(args) { + var document, client, writability, _args$permissions, permissions, perm; - /** - * Creates an array of the enumerable property names of the array-like `value`. - * - * @private - * @param {*} value The value to query. - * @param {boolean} inherited Specify returning inherited property names. - * @returns {Array} Returns the array of property names. - */ - function arrayLikeKeys(value, inherited) { - var isArr = isArray(value), - isArg = !isArr && isArguments(value), - isBuff = !isArr && !isArg && isBuffer(value), - isType = !isArr && !isArg && !isBuff && isTypedArray(value), - skipIndexes = isArr || isArg || isBuff || isType, - result = skipIndexes ? baseTimes(value.length, String) : [], - length = result.length; + return _regenerator.default.wrap(function _callee5$(_context5) { + while (1) { + switch (_context5.prev = _context5.next) { + case 0: + document = args.document; + client = args.client; + writability = args.writability; + _args$permissions = args.permissions; - for (var key in value) { - if ((inherited || hasOwnProperty.call(value, key)) && - !(skipIndexes && ( - // Safari 9 has enumerable `arguments.length` in strict mode. - key == 'length' || - // Node.js 0.10 has enumerable non-index properties on buffers. - (isBuff && (key == 'offset' || key == 'parent')) || - // PhantomJS 2 has enumerable non-index properties on typed arrays. - (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) || - // Skip index properties. - isIndex(key, length) - ))) { - result.push(key); - } - } - return result; - } + if (!(_args$permissions === void 0)) { + _context5.next = 10; + break; + } - /** - * A specialized version of `_.sample` for arrays. - * - * @private - * @param {Array} array The array to sample. - * @returns {*} Returns the random element. - */ - function arraySample(array) { - var length = array.length; - return length ? array[baseRandom(0, length - 1)] : undefined; - } + _context5.next = 7; + return fetchOwn(client); - /** - * A specialized version of `_.sampleSize` for arrays. - * - * @private - * @param {Array} array The array to sample. - * @param {number} n The number of elements to sample. - * @returns {Array} Returns the random elements. - */ - function arraySampleSize(array, n) { - return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length)); - } + case 7: + _context5.t0 = _context5.sent; + _context5.next = 11; + break; - /** - * A specialized version of `_.shuffle` for arrays. - * - * @private - * @param {Array} array The array to shuffle. - * @returns {Array} Returns the new shuffled array. - */ - function arrayShuffle(array) { - return shuffleSelf(copyArray(array)); - } + case 10: + _context5.t0 = _args$permissions; - /** - * This function is like `assignValue` except that it doesn't assign - * `undefined` values. - * - * @private - * @param {Object} object The object to modify. - * @param {string} key The key of the property to assign. - * @param {*} value The value to assign. - */ - function assignMergeValue(object, key, value) { - if ((value !== undefined && !eq(object[key], value)) || - (value === undefined && !(key in object))) { - baseAssignValue(object, key, value); - } - } + case 11: + permissions = _context5.t0; - /** - * Assigns `value` to `key` of `object` if the existing value is not equivalent - * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. - * - * @private - * @param {Object} object The object to modify. - * @param {string} key The key of the property to assign. - * @param {*} value The value to assign. - */ - function assignValue(object, key, value) { - var objValue = object[key]; - if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || - (value === undefined && !(key in object))) { - baseAssignValue(object, key, value); - } - } + if (!(permissions.length <= 1)) { + _context5.next = 16; + break; + } - /** - * Gets the index at which the `key` is found in `array` of key-value pairs. - * - * @private - * @param {Array} array The array to inspect. - * @param {*} key The key to search for. - * @returns {number} Returns the index of the matched value, else `-1`. - */ - function assocIndexOf(array, key) { - var length = array.length; - while (length--) { - if (eq(array[length][0], key)) { - return length; - } - } - return -1; - } + _context5.t1 = permissions[0] // shortcut because most of time, there will be only one permission block + ; + _context5.next = 19; + break; - /** - * Aggregates elements of `collection` on `accumulator` with keys transformed - * by `iteratee` and values set by `setter`. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} setter The function to set `accumulator` values. - * @param {Function} iteratee The iteratee to transform keys. - * @param {Object} accumulator The initial aggregated object. - * @returns {Function} Returns `accumulator`. - */ - function baseAggregator(collection, setter, iteratee, accumulator) { - baseEach(collection, function(value, key, collection) { - setter(accumulator, value, iteratee(value), collection); - }); - return accumulator; - } + case 16: + _context5.next = 18; + return findPermissionFor({ + document: document, + client: client, + permissions: permissions + }); - /** - * The base implementation of `_.assign` without support for multiple sources - * or `customizer` functions. - * - * @private - * @param {Object} object The destination object. - * @param {Object} source The source object. - * @returns {Object} Returns `object`. - */ - function baseAssign(object, source) { - return object && copyObject(source, keys(source), object); - } + case 18: + _context5.t1 = _context5.sent; - /** - * The base implementation of `_.assignIn` without support for multiple sources - * or `customizer` functions. - * - * @private - * @param {Object} object The destination object. - * @param {Object} source The source object. - * @returns {Object} Returns `object`. - */ - function baseAssignIn(object, source) { - return object && copyObject(source, keysIn(source), object); - } + case 19: + perm = _context5.t1; - /** - * The base implementation of `assignValue` and `assignMergeValue` without - * value checks. - * - * @private - * @param {Object} object The object to modify. - * @param {string} key The key of the property to assign. - * @param {*} value The value to assign. - */ - function baseAssignValue(object, key, value) { - if (key == '__proto__' && defineProperty) { - defineProperty(object, key, { - 'configurable': true, - 'enumerable': true, - 'value': value, - 'writable': true - }); - } else { - object[key] = value; - } - } + if (!perm) { + _context5.next = 24; + break; + } - /** - * The base implementation of `_.at` without support for individual paths. - * - * @private - * @param {Object} object The object to iterate over. - * @param {string[]} paths The property paths to pick. - * @returns {Array} Returns the picked elements. - */ - function baseAt(object, paths) { - var index = -1, - length = paths.length, - result = Array(length), - skip = object == null; + return _context5.abrupt("return", isReadOnly(perm, { + writability: writability + })); - while (++index < length) { - result[index] = skip ? undefined : get(object, paths[index]); - } - return result; - } + case 24: + console.warn("can't find the document in current attached permissions"); + return _context5.abrupt("return", undefined); - /** - * The base implementation of `_.clamp` which doesn't coerce arguments. - * - * @private - * @param {number} number The number to clamp. - * @param {number} [lower] The lower bound. - * @param {number} upper The upper bound. - * @returns {number} Returns the clamped number. - */ - function baseClamp(number, lower, upper) { - if (number === number) { - if (upper !== undefined) { - number = number <= upper ? number : upper; - } - if (lower !== undefined) { - number = number >= lower ? number : lower; + case 26: + case "end": + return _context5.stop(); } } - return number; - } + }, _callee5); + })); + return _isDocumentReadOnly.apply(this, arguments); +} - /** - * The base implementation of `_.clone` and `_.cloneDeep` which tracks - * traversed objects. - * - * @private - * @param {*} value The value to clone. - * @param {boolean} bitmask The bitmask flags. - * 1 - Deep clone - * 2 - Flatten inherited properties - * 4 - Clone symbols - * @param {Function} [customizer] The function to customize cloning. - * @param {string} [key] The key of `value`. - * @param {Object} [object] The parent object of `value`. - * @param {Object} [stack] Tracks traversed objects and their clone counterparts. - * @returns {*} Returns the cloned value. - */ - function baseClone(value, bitmask, customizer, key, object, stack) { - var result, - isDeep = bitmask & CLONE_DEEP_FLAG, - isFlat = bitmask & CLONE_FLAT_FLAG, - isFull = bitmask & CLONE_SYMBOLS_FLAG; +/***/ }), +/* 842 */ +/***/ (function(module, exports, __webpack_require__) { - if (customizer) { - result = object ? customizer(value, key, object, stack) : customizer(value); - } - if (result !== undefined) { - return result; - } - if (!isObject(value)) { - return value; - } - var isArr = isArray(value); - if (isArr) { - result = initCloneArray(value); - if (!isDeep) { - return copyArray(value, result); - } - } else { - var tag = getTag(value), - isFunc = tag == funcTag || tag == genTag; +"use strict"; - if (isBuffer(value)) { - return cloneBuffer(value, isDeep); - } - if (tag == objectTag || tag == argsTag || (isFunc && !object)) { - result = (isFlat || isFunc) ? {} : initCloneObject(value); - if (!isDeep) { - return isFlat - ? copySymbolsIn(value, baseAssignIn(result, value)) - : copySymbols(value, baseAssign(result, value)); - } - } else { - if (!cloneableTags[tag]) { - return object ? value : {}; - } - result = initCloneByTag(value, tag, isDeep); - } - } - // Check for circular references and return its corresponding clone. - stack || (stack = new Stack); - var stacked = stack.get(value); - if (stacked) { - return stacked; - } - stack.set(value, result); - if (isSet(value)) { - value.forEach(function(subValue) { - result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack)); - }); - } else if (isMap(value)) { - value.forEach(function(subValue, key) { - result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack)); - }); - } +var _interopRequireDefault = __webpack_require__(532); - var keysFunc = isFull - ? (isFlat ? getAllKeysIn : getAllKeys) - : (isFlat ? keysIn : keys); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.getCreatedByApp = exports.hasBeenUpdatedByApp = void 0; - var props = isArr ? undefined : keysFunc(value); - arrayEach(props || value, function(subValue, key) { - if (props) { - key = subValue; - subValue = value[key]; - } - // Recursively populate clone (susceptible to call stack limits). - assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack)); - }); - return result; - } +var _get = _interopRequireDefault(__webpack_require__(372)); - /** - * The base implementation of `_.conforms` which doesn't clone `source`. - * - * @private - * @param {Object} source The object of property predicates to conform to. - * @returns {Function} Returns the new spec function. - */ - function baseConforms(source) { - var props = keys(source); - return function(object) { - return baseConformsTo(object, source, props); - }; - } +var hasBeenUpdatedByApp = function hasBeenUpdatedByApp(doc, appSlug) { + var updatedByApps = (0, _get.default)(doc, 'cozyMetadata.updatedByApps'); + return Boolean(updatedByApps && updatedByApps.find(function (x) { + return x.slug === appSlug; + })); +}; - /** - * The base implementation of `_.conformsTo` which accepts `props` to check. - * - * @private - * @param {Object} object The object to inspect. - * @param {Object} source The object of property predicates to conform to. - * @returns {boolean} Returns `true` if `object` conforms, else `false`. - */ - function baseConformsTo(object, source, props) { - var length = props.length; - if (object == null) { - return !length; - } - object = Object(object); - while (length--) { - var key = props[length], - predicate = source[key], - value = object[key]; +exports.hasBeenUpdatedByApp = hasBeenUpdatedByApp; - if ((value === undefined && !(key in object)) || !predicate(value)) { - return false; - } - } - return true; - } +var getCreatedByApp = function getCreatedByApp(doc) { + return (0, _get.default)(doc, 'cozyMetadata.createdByApp'); +}; - /** - * The base implementation of `_.delay` and `_.defer` which accepts `args` - * to provide to `func`. - * - * @private - * @param {Function} func The function to delay. - * @param {number} wait The number of milliseconds to delay invocation. - * @param {Array} args The arguments to provide to `func`. - * @returns {number|Object} Returns the timer id or timeout object. - */ - function baseDelay(func, wait, args) { - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - return setTimeout(function() { func.apply(undefined, args); }, wait); - } +exports.getCreatedByApp = getCreatedByApp; - /** - * The base implementation of methods like `_.difference` without support - * for excluding multiple arrays or iteratee shorthands. - * - * @private - * @param {Array} array The array to inspect. - * @param {Array} values The values to exclude. - * @param {Function} [iteratee] The iteratee invoked per element. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of filtered values. - */ - function baseDifference(array, values, iteratee, comparator) { - var index = -1, - includes = arrayIncludes, - isCommon = true, - length = array.length, - result = [], - valuesLength = values.length; +/***/ }), +/* 843 */ +/***/ (function(module, exports, __webpack_require__) { - if (!length) { - return result; - } - if (iteratee) { - values = arrayMap(values, baseUnary(iteratee)); - } - if (comparator) { - includes = arrayIncludesWith; - isCommon = false; - } - else if (values.length >= LARGE_ARRAY_SIZE) { - includes = cacheHas; - isCommon = false; - values = new SetCache(values); - } - outer: - while (++index < length) { - var value = array[index], - computed = iteratee == null ? value : iteratee(value); +"use strict"; - value = (comparator || value !== 0) ? value : 0; - if (isCommon && computed === computed) { - var valuesIndex = valuesLength; - while (valuesIndex--) { - if (values[valuesIndex] === computed) { - continue outer; - } - } - result.push(value); - } - else if (!includes(values, computed, comparator)) { - result.push(value); - } - } - return result; - } - /** - * The base implementation of `_.forEach` without support for iteratee shorthands. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array|Object} Returns `collection`. - */ - var baseEach = createBaseEach(baseForOwn); +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.getIndexByFamilyNameGivenNameEmailCozyUrl = exports.getDisplayName = exports.getFullname = exports.getPrimaryAddress = exports.getPrimaryPhone = exports.getPrimaryCozyDomain = exports.getPrimaryCozy = exports.getPrimaryEmail = exports.getInitials = exports.getPrimaryOrFirst = void 0; - /** - * The base implementation of `_.forEachRight` without support for iteratee shorthands. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array|Object} Returns `collection`. - */ - var baseEachRight = createBaseEach(baseForOwnRight, true); +var _lodash = __webpack_require__(844); - /** - * The base implementation of `_.every` without support for iteratee shorthands. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} predicate The function invoked per iteration. - * @returns {boolean} Returns `true` if all elements pass the predicate check, - * else `false` - */ - function baseEvery(collection, predicate) { - var result = true; - baseEach(collection, function(value, index, collection) { - result = !!predicate(value, index, collection); - return result; - }); - return result; - } +var getPrimaryOrFirst = function getPrimaryOrFirst(property) { + return function (obj) { + return !obj[property] || obj[property].length === 0 ? '' : obj[property].find(function (property) { + return property.primary; + }) || obj[property][0]; + }; +}; +/** + * Returns the initials of the contact. + * + * @param {object} contact - A contact + * @returns {string} - the contact's initials + */ - /** - * The base implementation of methods like `_.max` and `_.min` which accepts a - * `comparator` to determine the extremum value. - * - * @private - * @param {Array} array The array to iterate over. - * @param {Function} iteratee The iteratee invoked per iteration. - * @param {Function} comparator The comparator used to compare values. - * @returns {*} Returns the extremum value. - */ - function baseExtremum(array, iteratee, comparator) { - var index = -1, - length = array.length; - while (++index < length) { - var value = array[index], - current = iteratee(value); +exports.getPrimaryOrFirst = getPrimaryOrFirst; - if (current != null && (computed === undefined - ? (current === current && !isSymbol(current)) - : comparator(current, computed) - )) { - var computed = current, - result = value; - } - } - return result; - } +var getInitials = function getInitials(contact) { + if (contact.name && !(0, _lodash.isEmpty)(contact.name)) { + return ['givenName', 'familyName'].map(function (part) { + return (0, _lodash.get)(contact, ['name', part, 0], ''); + }).join('').toUpperCase(); + } - /** - * The base implementation of `_.fill` without an iteratee call guard. - * - * @private - * @param {Array} array The array to fill. - * @param {*} value The value to fill `array` with. - * @param {number} [start=0] The start position. - * @param {number} [end=array.length] The end position. - * @returns {Array} Returns `array`. - */ - function baseFill(array, value, start, end) { - var length = array.length; + var email = getPrimaryEmail(contact); - start = toInteger(start); - if (start < 0) { - start = -start > length ? 0 : (length + start); - } - end = (end === undefined || end > length) ? length : toInteger(end); - if (end < 0) { - end += length; - } - end = start > end ? 0 : toLength(end); - while (start < end) { - array[start++] = value; - } - return array; - } + if (email) { + return email[0].toUpperCase(); + } - /** - * The base implementation of `_.filter` without support for iteratee shorthands. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} predicate The function invoked per iteration. - * @returns {Array} Returns the new filtered array. - */ - function baseFilter(collection, predicate) { - var result = []; - baseEach(collection, function(value, index, collection) { - if (predicate(value, index, collection)) { - result.push(value); - } - }); - return result; - } + var cozy = getPrimaryCozyDomain(contact); - /** - * The base implementation of `_.flatten` with support for restricting flattening. - * - * @private - * @param {Array} array The array to flatten. - * @param {number} depth The maximum recursion depth. - * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. - * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. - * @param {Array} [result=[]] The initial result value. - * @returns {Array} Returns the new flattened array. - */ - function baseFlatten(array, depth, predicate, isStrict, result) { - var index = -1, - length = array.length; + if (cozy) { + return cozy[0].toUpperCase(); + } - predicate || (predicate = isFlattenable); - result || (result = []); + return ''; +}; +/** + * Returns the contact's main email + * + * @param {object} contact - A contact + * @returns {string} - The contact's main email + */ - while (++index < length) { - var value = array[index]; - if (depth > 0 && predicate(value)) { - if (depth > 1) { - // Recursively flatten arrays (susceptible to call stack limits). - baseFlatten(value, depth - 1, predicate, isStrict, result); - } else { - arrayPush(result, value); - } - } else if (!isStrict) { - result[result.length] = value; - } - } - return result; - } - /** - * The base implementation of `baseForOwn` which iterates over `object` - * properties returned by `keysFunc` and invokes `iteratee` for each property. - * Iteratee functions may exit iteration early by explicitly returning `false`. - * - * @private - * @param {Object} object The object to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @param {Function} keysFunc The function to get the keys of `object`. - * @returns {Object} Returns `object`. - */ - var baseFor = createBaseFor(); +exports.getInitials = getInitials; - /** - * This function is like `baseFor` except that it iterates over properties - * in the opposite order. - * - * @private - * @param {Object} object The object to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @param {Function} keysFunc The function to get the keys of `object`. - * @returns {Object} Returns `object`. - */ - var baseForRight = createBaseFor(true); +var getPrimaryEmail = function getPrimaryEmail(contact) { + return Array.isArray(contact.email) ? getPrimaryOrFirst('email')(contact).address || '' : contact.email; +}; +/** + * Returns the contact's main cozy + * + * @param {object} contact - A contact + * @returns {string} - The contact's main cozy + */ - /** - * The base implementation of `_.forOwn` without support for iteratee shorthands. - * - * @private - * @param {Object} object The object to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Object} Returns `object`. - */ - function baseForOwn(object, iteratee) { - return object && baseFor(object, iteratee, keys); - } - /** - * The base implementation of `_.forOwnRight` without support for iteratee shorthands. - * - * @private - * @param {Object} object The object to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Object} Returns `object`. - */ - function baseForOwnRight(object, iteratee) { - return object && baseForRight(object, iteratee, keys); - } +exports.getPrimaryEmail = getPrimaryEmail; - /** - * The base implementation of `_.functions` which creates an array of - * `object` function property names filtered from `props`. - * - * @private - * @param {Object} object The object to inspect. - * @param {Array} props The property names to filter. - * @returns {Array} Returns the function names. - */ - function baseFunctions(object, props) { - return arrayFilter(props, function(key) { - return isFunction(object[key]); - }); - } +var getPrimaryCozy = function getPrimaryCozy(contact) { + return Array.isArray(contact.cozy) ? getPrimaryOrFirst('cozy')(contact).url || '' : contact.url; +}; +/** + * Returns the contact's main cozy url without protocol + * + * @param {object} contact - A contact + * @returns {string} - The contact's main cozy url + */ - /** - * The base implementation of `_.get` without support for default values. - * - * @private - * @param {Object} object The object to query. - * @param {Array|string} path The path of the property to get. - * @returns {*} Returns the resolved value. - */ - function baseGet(object, path) { - path = castPath(path, object); - var index = 0, - length = path.length; +exports.getPrimaryCozy = getPrimaryCozy; - while (object != null && index < length) { - object = object[toKey(path[index++])]; - } - return (index && index == length) ? object : undefined; - } +var getPrimaryCozyDomain = function getPrimaryCozyDomain(contact) { + try { + var url = new URL(getPrimaryCozy(contact)); + return url.hostname.replace(/^(www.)/g, ''); + } catch (_unused) { + return getPrimaryCozy(contact); + } +}; +/** + * Returns the contact's main phone number + * + * @param {object} contact - A contact + * @returns {string} - The contact's main phone number + */ - /** - * The base implementation of `getAllKeys` and `getAllKeysIn` which uses - * `keysFunc` and `symbolsFunc` to get the enumerable property names and - * symbols of `object`. - * - * @private - * @param {Object} object The object to query. - * @param {Function} keysFunc The function to get the keys of `object`. - * @param {Function} symbolsFunc The function to get the symbols of `object`. - * @returns {Array} Returns the array of property names and symbols. - */ - function baseGetAllKeys(object, keysFunc, symbolsFunc) { - var result = keysFunc(object); - return isArray(object) ? result : arrayPush(result, symbolsFunc(object)); - } - /** - * The base implementation of `getTag` without fallbacks for buggy environments. - * - * @private - * @param {*} value The value to query. - * @returns {string} Returns the `toStringTag`. - */ - function baseGetTag(value) { - if (value == null) { - return value === undefined ? undefinedTag : nullTag; - } - return (symToStringTag && symToStringTag in Object(value)) - ? getRawTag(value) - : objectToString(value); - } +exports.getPrimaryCozyDomain = getPrimaryCozyDomain; - /** - * The base implementation of `_.gt` which doesn't coerce arguments. - * - * @private - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if `value` is greater than `other`, - * else `false`. - */ - function baseGt(value, other) { - return value > other; - } +var getPrimaryPhone = function getPrimaryPhone(contact) { + return getPrimaryOrFirst('phone')(contact).number || ''; +}; +/** + * Returns the contact's main address + * + * @param {object} contact - A contact + * @returns {string} - The contact's main address + */ - /** - * The base implementation of `_.has` without support for deep paths. - * - * @private - * @param {Object} [object] The object to query. - * @param {Array|string} key The key to check. - * @returns {boolean} Returns `true` if `key` exists, else `false`. - */ - function baseHas(object, key) { - return object != null && hasOwnProperty.call(object, key); - } - /** - * The base implementation of `_.hasIn` without support for deep paths. - * - * @private - * @param {Object} [object] The object to query. - * @param {Array|string} key The key to check. - * @returns {boolean} Returns `true` if `key` exists, else `false`. - */ - function baseHasIn(object, key) { - return object != null && key in Object(object); - } +exports.getPrimaryPhone = getPrimaryPhone; - /** - * The base implementation of `_.inRange` which doesn't coerce arguments. - * - * @private - * @param {number} number The number to check. - * @param {number} start The start of the range. - * @param {number} end The end of the range. - * @returns {boolean} Returns `true` if `number` is in the range, else `false`. - */ - function baseInRange(number, start, end) { - return number >= nativeMin(start, end) && number < nativeMax(start, end); - } +var getPrimaryAddress = function getPrimaryAddress(contact) { + return getPrimaryOrFirst('address')(contact).formattedAddress || ''; +}; +/** + * Returns the contact's fullname + * + * @param {object} contact - A contact + * @returns {string} - The contact's fullname + */ - /** - * The base implementation of methods like `_.intersection`, without support - * for iteratee shorthands, that accepts an array of arrays to inspect. - * - * @private - * @param {Array} arrays The arrays to inspect. - * @param {Function} [iteratee] The iteratee invoked per element. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of shared values. - */ - function baseIntersection(arrays, iteratee, comparator) { - var includes = comparator ? arrayIncludesWith : arrayIncludes, - length = arrays[0].length, - othLength = arrays.length, - othIndex = othLength, - caches = Array(othLength), - maxLength = Infinity, - result = []; - while (othIndex--) { - var array = arrays[othIndex]; - if (othIndex && iteratee) { - array = arrayMap(array, baseUnary(iteratee)); - } - maxLength = nativeMin(array.length, maxLength); - caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120)) - ? new SetCache(othIndex && array) - : undefined; - } - array = arrays[0]; +exports.getPrimaryAddress = getPrimaryAddress; - var index = -1, - seen = caches[0]; +var getFullname = function getFullname(contact) { + if ((0, _lodash.get)(contact, 'fullname')) { + return contact.fullname; + } else if (contact.name) { + return ['namePrefix', 'givenName', 'additionalName', 'familyName', 'nameSuffix'].map(function (part) { + return contact.name[part]; + }).filter(function (part) { + return part !== undefined; + }).join(' ').trim(); + } - outer: - while (++index < length && result.length < maxLength) { - var value = array[index], - computed = iteratee ? iteratee(value) : value; + return ''; +}; +/** + * Returns a display name for the contact + * + * @param {object} contact - A contact + * @returns {string} - the contact's display name + **/ - value = (comparator || value !== 0) ? value : 0; - if (!(seen - ? cacheHas(seen, computed) - : includes(result, computed, comparator) - )) { - othIndex = othLength; - while (--othIndex) { - var cache = caches[othIndex]; - if (!(cache - ? cacheHas(cache, computed) - : includes(arrays[othIndex], computed, comparator)) - ) { - continue outer; - } - } - if (seen) { - seen.push(computed); - } - result.push(value); - } - } - return result; - } - /** - * The base implementation of `_.invert` and `_.invertBy` which inverts - * `object` with values transformed by `iteratee` and set by `setter`. - * - * @private - * @param {Object} object The object to iterate over. - * @param {Function} setter The function to set `accumulator` values. - * @param {Function} iteratee The iteratee to transform values. - * @param {Object} accumulator The initial inverted object. - * @returns {Function} Returns `accumulator`. - */ - function baseInverter(object, setter, iteratee, accumulator) { - baseForOwn(object, function(value, key, object) { - setter(accumulator, iteratee(value), key, object); - }); - return accumulator; - } +exports.getFullname = getFullname; + +var getDisplayName = function getDisplayName(contact) { + return (0, _lodash.get)(contact, 'displayName', getFullname(contact) || getPrimaryEmail(contact) || getPrimaryCozyDomain(contact)); +}; +/** + * Returns 'byFamilyNameGivenNameEmailCozyUrl' index of a contact + * + * @param {object} contact - A contact + * @returns {string} - the contact's 'byFamilyNameGivenNameEmailCozyUrl' index + */ + + +exports.getDisplayName = getDisplayName; + +var getIndexByFamilyNameGivenNameEmailCozyUrl = function getIndexByFamilyNameGivenNameEmailCozyUrl(contact) { + var indexByFamilyNameGivenNameEmailCozyUrl = (0, _lodash.capitalize)([(0, _lodash.get)(contact, 'name.familyName', ''), (0, _lodash.get)(contact, 'name.givenName', ''), getPrimaryEmail(contact), getPrimaryCozyDomain(contact)].join('').trim()); + return (0, _lodash.get)(contact, 'indexes.byFamilyNameGivenNameEmailCozyUrl', indexByFamilyNameGivenNameEmailCozyUrl.length === 0 ? {} : indexByFamilyNameGivenNameEmailCozyUrl); +}; + +exports.getIndexByFamilyNameGivenNameEmailCozyUrl = getIndexByFamilyNameGivenNameEmailCozyUrl; + +/***/ }), +/* 844 */ +/***/ (function(module, exports, __webpack_require__) { - /** - * The base implementation of `_.invoke` without support for individual - * method arguments. - * - * @private - * @param {Object} object The object to query. - * @param {Array|string} path The path of the method to invoke. - * @param {Array} args The arguments to invoke the method with. - * @returns {*} Returns the result of the invoked method. - */ - function baseInvoke(object, path, args) { - path = castPath(path, object); - object = parent(object, path); - var func = object == null ? object : object[toKey(last(path))]; - return func == null ? undefined : apply(func, object, args); - } +/* WEBPACK VAR INJECTION */(function(module) {var __WEBPACK_AMD_DEFINE_RESULT__;/** + * @license + * Lodash <https://lodash.com/> + * Copyright OpenJS Foundation and other contributors <https://openjsf.org/> + * Released under MIT license <https://lodash.com/license> + * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE> + * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors + */ +;(function() { - /** - * The base implementation of `_.isArguments`. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an `arguments` object, - */ - function baseIsArguments(value) { - return isObjectLike(value) && baseGetTag(value) == argsTag; - } + /** Used as a safe reference for `undefined` in pre-ES5 environments. */ + var undefined; - /** - * The base implementation of `_.isArrayBuffer` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. - */ - function baseIsArrayBuffer(value) { - return isObjectLike(value) && baseGetTag(value) == arrayBufferTag; - } + /** Used as the semantic version number. */ + var VERSION = '4.17.21'; - /** - * The base implementation of `_.isDate` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a date object, else `false`. - */ - function baseIsDate(value) { - return isObjectLike(value) && baseGetTag(value) == dateTag; - } + /** Used as the size to enable large array optimizations. */ + var LARGE_ARRAY_SIZE = 200; - /** - * The base implementation of `_.isEqual` which supports partial comparisons - * and tracks traversed objects. - * - * @private - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @param {boolean} bitmask The bitmask flags. - * 1 - Unordered comparison - * 2 - Partial comparison - * @param {Function} [customizer] The function to customize comparisons. - * @param {Object} [stack] Tracks traversed `value` and `other` objects. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. - */ - function baseIsEqual(value, other, bitmask, customizer, stack) { - if (value === other) { - return true; - } - if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { - return value !== value && other !== other; - } - return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); - } + /** Error message constants. */ + var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.', + FUNC_ERROR_TEXT = 'Expected a function', + INVALID_TEMPL_VAR_ERROR_TEXT = 'Invalid `variable` option passed into `_.template`'; - /** - * A specialized version of `baseIsEqual` for arrays and objects which performs - * deep comparisons and tracks traversed objects enabling objects with circular - * references to be compared. - * - * @private - * @param {Object} object The object to compare. - * @param {Object} other The other object to compare. - * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. - * @param {Function} customizer The function to customize comparisons. - * @param {Function} equalFunc The function to determine equivalents of values. - * @param {Object} [stack] Tracks traversed `object` and `other` objects. - * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. - */ - function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { - var objIsArr = isArray(object), - othIsArr = isArray(other), - objTag = objIsArr ? arrayTag : getTag(object), - othTag = othIsArr ? arrayTag : getTag(other); + /** Used to stand-in for `undefined` hash values. */ + var HASH_UNDEFINED = '__lodash_hash_undefined__'; - objTag = objTag == argsTag ? objectTag : objTag; - othTag = othTag == argsTag ? objectTag : othTag; + /** Used as the maximum memoize cache size. */ + var MAX_MEMOIZE_SIZE = 500; - var objIsObj = objTag == objectTag, - othIsObj = othTag == objectTag, - isSameTag = objTag == othTag; + /** Used as the internal argument placeholder. */ + var PLACEHOLDER = '__lodash_placeholder__'; - if (isSameTag && isBuffer(object)) { - if (!isBuffer(other)) { - return false; - } - objIsArr = true; - objIsObj = false; - } - if (isSameTag && !objIsObj) { - stack || (stack = new Stack); - return (objIsArr || isTypedArray(object)) - ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) - : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); - } - if (!(bitmask & COMPARE_PARTIAL_FLAG)) { - var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), - othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); + /** Used to compose bitmasks for cloning. */ + var CLONE_DEEP_FLAG = 1, + CLONE_FLAT_FLAG = 2, + CLONE_SYMBOLS_FLAG = 4; - if (objIsWrapped || othIsWrapped) { - var objUnwrapped = objIsWrapped ? object.value() : object, - othUnwrapped = othIsWrapped ? other.value() : other; + /** Used to compose bitmasks for value comparisons. */ + var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; - stack || (stack = new Stack); - return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); - } - } - if (!isSameTag) { - return false; - } - stack || (stack = new Stack); - return equalObjects(object, other, bitmask, customizer, equalFunc, stack); - } + /** Used to compose bitmasks for function metadata. */ + var WRAP_BIND_FLAG = 1, + WRAP_BIND_KEY_FLAG = 2, + WRAP_CURRY_BOUND_FLAG = 4, + WRAP_CURRY_FLAG = 8, + WRAP_CURRY_RIGHT_FLAG = 16, + WRAP_PARTIAL_FLAG = 32, + WRAP_PARTIAL_RIGHT_FLAG = 64, + WRAP_ARY_FLAG = 128, + WRAP_REARG_FLAG = 256, + WRAP_FLIP_FLAG = 512; - /** - * The base implementation of `_.isMap` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a map, else `false`. - */ - function baseIsMap(value) { - return isObjectLike(value) && getTag(value) == mapTag; - } + /** Used as default options for `_.truncate`. */ + var DEFAULT_TRUNC_LENGTH = 30, + DEFAULT_TRUNC_OMISSION = '...'; - /** - * The base implementation of `_.isMatch` without support for iteratee shorthands. - * - * @private - * @param {Object} object The object to inspect. - * @param {Object} source The object of property values to match. - * @param {Array} matchData The property names, values, and compare flags to match. - * @param {Function} [customizer] The function to customize comparisons. - * @returns {boolean} Returns `true` if `object` is a match, else `false`. - */ - function baseIsMatch(object, source, matchData, customizer) { - var index = matchData.length, - length = index, - noCustomizer = !customizer; + /** Used to detect hot functions by number of calls within a span of milliseconds. */ + var HOT_COUNT = 800, + HOT_SPAN = 16; - if (object == null) { - return !length; - } - object = Object(object); - while (index--) { - var data = matchData[index]; - if ((noCustomizer && data[2]) - ? data[1] !== object[data[0]] - : !(data[0] in object) - ) { - return false; - } - } - while (++index < length) { - data = matchData[index]; - var key = data[0], - objValue = object[key], - srcValue = data[1]; + /** Used to indicate the type of lazy iteratees. */ + var LAZY_FILTER_FLAG = 1, + LAZY_MAP_FLAG = 2, + LAZY_WHILE_FLAG = 3; - if (noCustomizer && data[2]) { - if (objValue === undefined && !(key in object)) { - return false; - } - } else { - var stack = new Stack; - if (customizer) { - var result = customizer(objValue, srcValue, key, object, source, stack); - } - if (!(result === undefined - ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) - : result - )) { - return false; - } - } - } - return true; - } + /** Used as references for various `Number` constants. */ + var INFINITY = 1 / 0, + MAX_SAFE_INTEGER = 9007199254740991, + MAX_INTEGER = 1.7976931348623157e+308, + NAN = 0 / 0; - /** - * The base implementation of `_.isNative` without bad shim checks. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a native function, - * else `false`. - */ - function baseIsNative(value) { - if (!isObject(value) || isMasked(value)) { - return false; - } - var pattern = isFunction(value) ? reIsNative : reIsHostCtor; - return pattern.test(toSource(value)); - } + /** Used as references for the maximum length and index of an array. */ + var MAX_ARRAY_LENGTH = 4294967295, + MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1, + HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1; - /** - * The base implementation of `_.isRegExp` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. - */ - function baseIsRegExp(value) { - return isObjectLike(value) && baseGetTag(value) == regexpTag; - } + /** Used to associate wrap methods with their bit flags. */ + var wrapFlags = [ + ['ary', WRAP_ARY_FLAG], + ['bind', WRAP_BIND_FLAG], + ['bindKey', WRAP_BIND_KEY_FLAG], + ['curry', WRAP_CURRY_FLAG], + ['curryRight', WRAP_CURRY_RIGHT_FLAG], + ['flip', WRAP_FLIP_FLAG], + ['partial', WRAP_PARTIAL_FLAG], + ['partialRight', WRAP_PARTIAL_RIGHT_FLAG], + ['rearg', WRAP_REARG_FLAG] + ]; - /** - * The base implementation of `_.isSet` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a set, else `false`. - */ - function baseIsSet(value) { - return isObjectLike(value) && getTag(value) == setTag; - } + /** `Object#toString` result references. */ + var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + asyncTag = '[object AsyncFunction]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + domExcTag = '[object DOMException]', + errorTag = '[object Error]', + funcTag = '[object Function]', + genTag = '[object GeneratorFunction]', + mapTag = '[object Map]', + numberTag = '[object Number]', + nullTag = '[object Null]', + objectTag = '[object Object]', + promiseTag = '[object Promise]', + proxyTag = '[object Proxy]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]', + undefinedTag = '[object Undefined]', + weakMapTag = '[object WeakMap]', + weakSetTag = '[object WeakSet]'; - /** - * The base implementation of `_.isTypedArray` without Node.js optimizations. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. - */ - function baseIsTypedArray(value) { - return isObjectLike(value) && - isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; - } + var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; - /** - * The base implementation of `_.iteratee`. - * - * @private - * @param {*} [value=_.identity] The value to convert to an iteratee. - * @returns {Function} Returns the iteratee. - */ - function baseIteratee(value) { - // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. - // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. - if (typeof value == 'function') { - return value; - } - if (value == null) { - return identity; - } - if (typeof value == 'object') { - return isArray(value) - ? baseMatchesProperty(value[0], value[1]) - : baseMatches(value); - } - return property(value); - } + /** Used to match empty string literals in compiled template source. */ + var reEmptyStringLeading = /\b__p \+= '';/g, + reEmptyStringMiddle = /\b(__p \+=) '' \+/g, + reEmptyStringTrailing = /(__e\(.*?\)|\b__t\)) \+\n'';/g; - /** - * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. - * - * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. - */ - function baseKeys(object) { - if (!isPrototype(object)) { - return nativeKeys(object); - } - var result = []; - for (var key in Object(object)) { - if (hasOwnProperty.call(object, key) && key != 'constructor') { - result.push(key); - } - } - return result; - } + /** Used to match HTML entities and HTML characters. */ + var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g, + reUnescapedHtml = /[&<>"']/g, + reHasEscapedHtml = RegExp(reEscapedHtml.source), + reHasUnescapedHtml = RegExp(reUnescapedHtml.source); - /** - * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. - * - * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. - */ - function baseKeysIn(object) { - if (!isObject(object)) { - return nativeKeysIn(object); - } - var isProto = isPrototype(object), - result = []; + /** Used to match template delimiters. */ + var reEscape = /<%-([\s\S]+?)%>/g, + reEvaluate = /<%([\s\S]+?)%>/g, + reInterpolate = /<%=([\s\S]+?)%>/g; - for (var key in object) { - if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { - result.push(key); - } - } - return result; - } + /** Used to match property names within property paths. */ + var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, + reIsPlainProp = /^\w*$/, + rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; - /** - * The base implementation of `_.lt` which doesn't coerce arguments. - * - * @private - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if `value` is less than `other`, - * else `false`. - */ - function baseLt(value, other) { - return value < other; - } + /** + * Used to match `RegExp` + * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). + */ + var reRegExpChar = /[\\^$.*+?()[\]{}|]/g, + reHasRegExpChar = RegExp(reRegExpChar.source); - /** - * The base implementation of `_.map` without support for iteratee shorthands. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {Array} Returns the new mapped array. - */ - function baseMap(collection, iteratee) { - var index = -1, - result = isArrayLike(collection) ? Array(collection.length) : []; + /** Used to match leading whitespace. */ + var reTrimStart = /^\s+/; - baseEach(collection, function(value, key, collection) { - result[++index] = iteratee(value, key, collection); - }); - return result; - } + /** Used to match a single whitespace character. */ + var reWhitespace = /\s/; - /** - * The base implementation of `_.matches` which doesn't clone `source`. - * - * @private - * @param {Object} source The object of property values to match. - * @returns {Function} Returns the new spec function. - */ - function baseMatches(source) { - var matchData = getMatchData(source); - if (matchData.length == 1 && matchData[0][2]) { - return matchesStrictComparable(matchData[0][0], matchData[0][1]); - } - return function(object) { - return object === source || baseIsMatch(object, source, matchData); - }; - } + /** Used to match wrap detail comments. */ + var reWrapComment = /\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/, + reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/, + reSplitDetails = /,? & /; - /** - * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. - * - * @private - * @param {string} path The path of the property to get. - * @param {*} srcValue The value to match. - * @returns {Function} Returns the new spec function. - */ - function baseMatchesProperty(path, srcValue) { - if (isKey(path) && isStrictComparable(srcValue)) { - return matchesStrictComparable(toKey(path), srcValue); - } - return function(object) { - var objValue = get(object, path); - return (objValue === undefined && objValue === srcValue) - ? hasIn(object, path) - : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG); - }; - } + /** Used to match words composed of alphanumeric characters. */ + var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g; - /** - * The base implementation of `_.merge` without support for multiple sources. - * - * @private - * @param {Object} object The destination object. - * @param {Object} source The source object. - * @param {number} srcIndex The index of `source`. - * @param {Function} [customizer] The function to customize merged values. - * @param {Object} [stack] Tracks traversed source values and their merged - * counterparts. - */ - function baseMerge(object, source, srcIndex, customizer, stack) { - if (object === source) { - return; - } - baseFor(source, function(srcValue, key) { - stack || (stack = new Stack); - if (isObject(srcValue)) { - baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack); - } - else { - var newValue = customizer - ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack) - : undefined; + /** + * Used to validate the `validate` option in `_.template` variable. + * + * Forbids characters which could potentially change the meaning of the function argument definition: + * - "()," (modification of function parameters) + * - "=" (default value) + * - "[]{}" (destructuring of function parameters) + * - "/" (beginning of a comment) + * - whitespace + */ + var reForbiddenIdentifierChars = /[()=,{}\[\]\/\s]/; - if (newValue === undefined) { - newValue = srcValue; - } - assignMergeValue(object, key, newValue); - } - }, keysIn); - } + /** Used to match backslashes in property paths. */ + var reEscapeChar = /\\(\\)?/g; - /** - * A specialized version of `baseMerge` for arrays and objects which performs - * deep merges and tracks traversed objects enabling objects with circular - * references to be merged. - * - * @private - * @param {Object} object The destination object. - * @param {Object} source The source object. - * @param {string} key The key of the value to merge. - * @param {number} srcIndex The index of `source`. - * @param {Function} mergeFunc The function to merge values. - * @param {Function} [customizer] The function to customize assigned values. - * @param {Object} [stack] Tracks traversed source values and their merged - * counterparts. - */ - function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) { - var objValue = safeGet(object, key), - srcValue = safeGet(source, key), - stacked = stack.get(srcValue); + /** + * Used to match + * [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexical-components). + */ + var reEsTemplate = /\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g; - if (stacked) { - assignMergeValue(object, key, stacked); - return; - } - var newValue = customizer - ? customizer(objValue, srcValue, (key + ''), object, source, stack) - : undefined; + /** Used to match `RegExp` flags from their coerced string values. */ + var reFlags = /\w*$/; - var isCommon = newValue === undefined; + /** Used to detect bad signed hexadecimal string values. */ + var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; - if (isCommon) { - var isArr = isArray(srcValue), - isBuff = !isArr && isBuffer(srcValue), - isTyped = !isArr && !isBuff && isTypedArray(srcValue); + /** Used to detect binary string values. */ + var reIsBinary = /^0b[01]+$/i; - newValue = srcValue; - if (isArr || isBuff || isTyped) { - if (isArray(objValue)) { - newValue = objValue; - } - else if (isArrayLikeObject(objValue)) { - newValue = copyArray(objValue); - } - else if (isBuff) { - isCommon = false; - newValue = cloneBuffer(srcValue, true); - } - else if (isTyped) { - isCommon = false; - newValue = cloneTypedArray(srcValue, true); - } - else { - newValue = []; - } - } - else if (isPlainObject(srcValue) || isArguments(srcValue)) { - newValue = objValue; - if (isArguments(objValue)) { - newValue = toPlainObject(objValue); - } - else if (!isObject(objValue) || isFunction(objValue)) { - newValue = initCloneObject(srcValue); - } - } - else { - isCommon = false; - } - } - if (isCommon) { - // Recursively merge objects and arrays (susceptible to call stack limits). - stack.set(srcValue, newValue); - mergeFunc(newValue, srcValue, srcIndex, customizer, stack); - stack['delete'](srcValue); - } - assignMergeValue(object, key, newValue); - } + /** Used to detect host constructors (Safari). */ + var reIsHostCtor = /^\[object .+?Constructor\]$/; - /** - * The base implementation of `_.nth` which doesn't coerce arguments. - * - * @private - * @param {Array} array The array to query. - * @param {number} n The index of the element to return. - * @returns {*} Returns the nth element of `array`. - */ - function baseNth(array, n) { - var length = array.length; - if (!length) { - return; - } - n += n < 0 ? length : 0; - return isIndex(n, length) ? array[n] : undefined; - } + /** Used to detect octal string values. */ + var reIsOctal = /^0o[0-7]+$/i; - /** - * The base implementation of `_.orderBy` without param guards. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. - * @param {string[]} orders The sort orders of `iteratees`. - * @returns {Array} Returns the new sorted array. - */ - function baseOrderBy(collection, iteratees, orders) { - if (iteratees.length) { - iteratees = arrayMap(iteratees, function(iteratee) { - if (isArray(iteratee)) { - return function(value) { - return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee); - } - } - return iteratee; - }); - } else { - iteratees = [identity]; - } + /** Used to detect unsigned integer values. */ + var reIsUint = /^(?:0|[1-9]\d*)$/; - var index = -1; - iteratees = arrayMap(iteratees, baseUnary(getIteratee())); + /** Used to match Latin Unicode letters (excluding mathematical operators). */ + var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g; - var result = baseMap(collection, function(value, key, collection) { - var criteria = arrayMap(iteratees, function(iteratee) { - return iteratee(value); - }); - return { 'criteria': criteria, 'index': ++index, 'value': value }; - }); + /** Used to ensure capturing order of template delimiters. */ + var reNoMatch = /($^)/; - return baseSortBy(result, function(object, other) { - return compareMultiple(object, other, orders); - }); - } + /** Used to match unescaped characters in compiled string literals. */ + var reUnescapedString = /['\n\r\u2028\u2029\\]/g; - /** - * The base implementation of `_.pick` without support for individual - * property identifiers. - * - * @private - * @param {Object} object The source object. - * @param {string[]} paths The property paths to pick. - * @returns {Object} Returns the new object. - */ - function basePick(object, paths) { - return basePickBy(object, paths, function(value, path) { - return hasIn(object, path); - }); - } + /** Used to compose unicode character classes. */ + var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsDingbatRange = '\\u2700-\\u27bf', + rsLowerRange = 'a-z\\xdf-\\xf6\\xf8-\\xff', + rsMathOpRange = '\\xac\\xb1\\xd7\\xf7', + rsNonCharRange = '\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf', + rsPunctuationRange = '\\u2000-\\u206f', + rsSpaceRange = ' \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000', + rsUpperRange = 'A-Z\\xc0-\\xd6\\xd8-\\xde', + rsVarRange = '\\ufe0e\\ufe0f', + rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange; - /** - * The base implementation of `_.pickBy` without support for iteratee shorthands. - * - * @private - * @param {Object} object The source object. - * @param {string[]} paths The property paths to pick. - * @param {Function} predicate The function invoked per property. - * @returns {Object} Returns the new object. - */ - function basePickBy(object, paths, predicate) { - var index = -1, - length = paths.length, - result = {}; + /** Used to compose unicode capture groups. */ + var rsApos = "['\u2019]", + rsAstral = '[' + rsAstralRange + ']', + rsBreak = '[' + rsBreakRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsDigits = '\\d+', + rsDingbat = '[' + rsDingbatRange + ']', + rsLower = '[' + rsLowerRange + ']', + rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsUpper = '[' + rsUpperRange + ']', + rsZWJ = '\\u200d'; - while (++index < length) { - var path = paths[index], - value = baseGet(object, path); + /** Used to compose unicode regexes. */ + var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')', + rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')', + rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?', + rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?', + reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsOrdLower = '\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])', + rsOrdUpper = '\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; - if (predicate(value, path)) { - baseSet(result, castPath(path, object), value); - } - } - return result; - } + /** Used to match apostrophes. */ + var reApos = RegExp(rsApos, 'g'); - /** - * A specialized version of `baseProperty` which supports deep paths. - * - * @private - * @param {Array|string} path The path of the property to get. - * @returns {Function} Returns the new accessor function. - */ - function basePropertyDeep(path) { - return function(object) { - return baseGet(object, path); - }; - } + /** + * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and + * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols). + */ + var reComboMark = RegExp(rsCombo, 'g'); - /** - * The base implementation of `_.pullAllBy` without support for iteratee - * shorthands. - * - * @private - * @param {Array} array The array to modify. - * @param {Array} values The values to remove. - * @param {Function} [iteratee] The iteratee invoked per element. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns `array`. - */ - function basePullAll(array, values, iteratee, comparator) { - var indexOf = comparator ? baseIndexOfWith : baseIndexOf, - index = -1, - length = values.length, - seen = array; + /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ + var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); - if (array === values) { - values = copyArray(values); - } - if (iteratee) { - seen = arrayMap(array, baseUnary(iteratee)); - } - while (++index < length) { - var fromIndex = 0, - value = values[index], - computed = iteratee ? iteratee(value) : value; + /** Used to match complex or compound words. */ + var reUnicodeWord = RegExp([ + rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')', + rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')', + rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower, + rsUpper + '+' + rsOptContrUpper, + rsOrdUpper, + rsOrdLower, + rsDigits, + rsEmoji + ].join('|'), 'g'); - while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) { - if (seen !== array) { - splice.call(seen, fromIndex, 1); - } - splice.call(array, fromIndex, 1); - } - } - return array; - } + /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ + var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); - /** - * The base implementation of `_.pullAt` without support for individual - * indexes or capturing the removed elements. - * - * @private - * @param {Array} array The array to modify. - * @param {number[]} indexes The indexes of elements to remove. - * @returns {Array} Returns `array`. - */ - function basePullAt(array, indexes) { - var length = array ? indexes.length : 0, - lastIndex = length - 1; + /** Used to detect strings that need a more robust regexp to match words. */ + var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/; - while (length--) { - var index = indexes[length]; - if (length == lastIndex || index !== previous) { - var previous = index; - if (isIndex(index)) { - splice.call(array, index, 1); - } else { - baseUnset(array, index); - } - } - } - return array; - } + /** Used to assign default `context` object properties. */ + var contextProps = [ + 'Array', 'Buffer', 'DataView', 'Date', 'Error', 'Float32Array', 'Float64Array', + 'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Map', 'Math', 'Object', + 'Promise', 'RegExp', 'Set', 'String', 'Symbol', 'TypeError', 'Uint8Array', + 'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap', + '_', 'clearTimeout', 'isFinite', 'parseInt', 'setTimeout' + ]; - /** - * The base implementation of `_.random` without support for returning - * floating-point numbers. - * - * @private - * @param {number} lower The lower bound. - * @param {number} upper The upper bound. - * @returns {number} Returns the random number. - */ - function baseRandom(lower, upper) { - return lower + nativeFloor(nativeRandom() * (upper - lower + 1)); - } + /** Used to make template sourceURLs easier to identify. */ + var templateCounter = -1; - /** - * The base implementation of `_.range` and `_.rangeRight` which doesn't - * coerce arguments. - * - * @private - * @param {number} start The start of the range. - * @param {number} end The end of the range. - * @param {number} step The value to increment or decrement by. - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Array} Returns the range of numbers. - */ - function baseRange(start, end, step, fromRight) { - var index = -1, - length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), - result = Array(length); + /** Used to identify `toStringTag` values of typed arrays. */ + var typedArrayTags = {}; + typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = + typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = + typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = + typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = + typedArrayTags[uint32Tag] = true; + typedArrayTags[argsTag] = typedArrayTags[arrayTag] = + typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = + typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = + typedArrayTags[errorTag] = typedArrayTags[funcTag] = + typedArrayTags[mapTag] = typedArrayTags[numberTag] = + typedArrayTags[objectTag] = typedArrayTags[regexpTag] = + typedArrayTags[setTag] = typedArrayTags[stringTag] = + typedArrayTags[weakMapTag] = false; + + /** Used to identify `toStringTag` values supported by `_.clone`. */ + var cloneableTags = {}; + cloneableTags[argsTag] = cloneableTags[arrayTag] = + cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = + cloneableTags[boolTag] = cloneableTags[dateTag] = + cloneableTags[float32Tag] = cloneableTags[float64Tag] = + cloneableTags[int8Tag] = cloneableTags[int16Tag] = + cloneableTags[int32Tag] = cloneableTags[mapTag] = + cloneableTags[numberTag] = cloneableTags[objectTag] = + cloneableTags[regexpTag] = cloneableTags[setTag] = + cloneableTags[stringTag] = cloneableTags[symbolTag] = + cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = + cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; + cloneableTags[errorTag] = cloneableTags[funcTag] = + cloneableTags[weakMapTag] = false; + + /** Used to map Latin Unicode letters to basic Latin letters. */ + var deburredLetters = { + // Latin-1 Supplement block. + '\xc0': 'A', '\xc1': 'A', '\xc2': 'A', '\xc3': 'A', '\xc4': 'A', '\xc5': 'A', + '\xe0': 'a', '\xe1': 'a', '\xe2': 'a', '\xe3': 'a', '\xe4': 'a', '\xe5': 'a', + '\xc7': 'C', '\xe7': 'c', + '\xd0': 'D', '\xf0': 'd', + '\xc8': 'E', '\xc9': 'E', '\xca': 'E', '\xcb': 'E', + '\xe8': 'e', '\xe9': 'e', '\xea': 'e', '\xeb': 'e', + '\xcc': 'I', '\xcd': 'I', '\xce': 'I', '\xcf': 'I', + '\xec': 'i', '\xed': 'i', '\xee': 'i', '\xef': 'i', + '\xd1': 'N', '\xf1': 'n', + '\xd2': 'O', '\xd3': 'O', '\xd4': 'O', '\xd5': 'O', '\xd6': 'O', '\xd8': 'O', + '\xf2': 'o', '\xf3': 'o', '\xf4': 'o', '\xf5': 'o', '\xf6': 'o', '\xf8': 'o', + '\xd9': 'U', '\xda': 'U', '\xdb': 'U', '\xdc': 'U', + '\xf9': 'u', '\xfa': 'u', '\xfb': 'u', '\xfc': 'u', + '\xdd': 'Y', '\xfd': 'y', '\xff': 'y', + '\xc6': 'Ae', '\xe6': 'ae', + '\xde': 'Th', '\xfe': 'th', + '\xdf': 'ss', + // Latin Extended-A block. + '\u0100': 'A', '\u0102': 'A', '\u0104': 'A', + '\u0101': 'a', '\u0103': 'a', '\u0105': 'a', + '\u0106': 'C', '\u0108': 'C', '\u010a': 'C', '\u010c': 'C', + '\u0107': 'c', '\u0109': 'c', '\u010b': 'c', '\u010d': 'c', + '\u010e': 'D', '\u0110': 'D', '\u010f': 'd', '\u0111': 'd', + '\u0112': 'E', '\u0114': 'E', '\u0116': 'E', '\u0118': 'E', '\u011a': 'E', + '\u0113': 'e', '\u0115': 'e', '\u0117': 'e', '\u0119': 'e', '\u011b': 'e', + '\u011c': 'G', '\u011e': 'G', '\u0120': 'G', '\u0122': 'G', + '\u011d': 'g', '\u011f': 'g', '\u0121': 'g', '\u0123': 'g', + '\u0124': 'H', '\u0126': 'H', '\u0125': 'h', '\u0127': 'h', + '\u0128': 'I', '\u012a': 'I', '\u012c': 'I', '\u012e': 'I', '\u0130': 'I', + '\u0129': 'i', '\u012b': 'i', '\u012d': 'i', '\u012f': 'i', '\u0131': 'i', + '\u0134': 'J', '\u0135': 'j', + '\u0136': 'K', '\u0137': 'k', '\u0138': 'k', + '\u0139': 'L', '\u013b': 'L', '\u013d': 'L', '\u013f': 'L', '\u0141': 'L', + '\u013a': 'l', '\u013c': 'l', '\u013e': 'l', '\u0140': 'l', '\u0142': 'l', + '\u0143': 'N', '\u0145': 'N', '\u0147': 'N', '\u014a': 'N', + '\u0144': 'n', '\u0146': 'n', '\u0148': 'n', '\u014b': 'n', + '\u014c': 'O', '\u014e': 'O', '\u0150': 'O', + '\u014d': 'o', '\u014f': 'o', '\u0151': 'o', + '\u0154': 'R', '\u0156': 'R', '\u0158': 'R', + '\u0155': 'r', '\u0157': 'r', '\u0159': 'r', + '\u015a': 'S', '\u015c': 'S', '\u015e': 'S', '\u0160': 'S', + '\u015b': 's', '\u015d': 's', '\u015f': 's', '\u0161': 's', + '\u0162': 'T', '\u0164': 'T', '\u0166': 'T', + '\u0163': 't', '\u0165': 't', '\u0167': 't', + '\u0168': 'U', '\u016a': 'U', '\u016c': 'U', '\u016e': 'U', '\u0170': 'U', '\u0172': 'U', + '\u0169': 'u', '\u016b': 'u', '\u016d': 'u', '\u016f': 'u', '\u0171': 'u', '\u0173': 'u', + '\u0174': 'W', '\u0175': 'w', + '\u0176': 'Y', '\u0177': 'y', '\u0178': 'Y', + '\u0179': 'Z', '\u017b': 'Z', '\u017d': 'Z', + '\u017a': 'z', '\u017c': 'z', '\u017e': 'z', + '\u0132': 'IJ', '\u0133': 'ij', + '\u0152': 'Oe', '\u0153': 'oe', + '\u0149': "'n", '\u017f': 's' + }; + + /** Used to map characters to HTML entities. */ + var htmlEscapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''' + }; + + /** Used to map HTML entities to characters. */ + var htmlUnescapes = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + ''': "'" + }; - while (length--) { - result[fromRight ? length : ++index] = start; - start += step; - } - return result; - } + /** Used to escape characters for inclusion in compiled string literals. */ + var stringEscapes = { + '\\': '\\', + "'": "'", + '\n': 'n', + '\r': 'r', + '\u2028': 'u2028', + '\u2029': 'u2029' + }; - /** - * The base implementation of `_.repeat` which doesn't coerce arguments. - * - * @private - * @param {string} string The string to repeat. - * @param {number} n The number of times to repeat the string. - * @returns {string} Returns the repeated string. - */ - function baseRepeat(string, n) { - var result = ''; - if (!string || n < 1 || n > MAX_SAFE_INTEGER) { - return result; - } - // Leverage the exponentiation by squaring algorithm for a faster repeat. - // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details. - do { - if (n % 2) { - result += string; - } - n = nativeFloor(n / 2); - if (n) { - string += string; - } - } while (n); + /** Built-in method references without a dependency on `root`. */ + var freeParseFloat = parseFloat, + freeParseInt = parseInt; - return result; - } + /** Detect free variable `global` from Node.js. */ + var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; - /** - * The base implementation of `_.rest` which doesn't validate or coerce arguments. - * - * @private - * @param {Function} func The function to apply a rest parameter to. - * @param {number} [start=func.length-1] The start position of the rest parameter. - * @returns {Function} Returns the new function. - */ - function baseRest(func, start) { - return setToString(overRest(func, start, identity), func + ''); - } + /** Detect free variable `self`. */ + var freeSelf = typeof self == 'object' && self && self.Object === Object && self; - /** - * The base implementation of `_.sample`. - * - * @private - * @param {Array|Object} collection The collection to sample. - * @returns {*} Returns the random element. - */ - function baseSample(collection) { - return arraySample(values(collection)); - } + /** Used as a reference to the global object. */ + var root = freeGlobal || freeSelf || Function('return this')(); - /** - * The base implementation of `_.sampleSize` without param guards. - * - * @private - * @param {Array|Object} collection The collection to sample. - * @param {number} n The number of elements to sample. - * @returns {Array} Returns the random elements. - */ - function baseSampleSize(collection, n) { - var array = values(collection); - return shuffleSelf(array, baseClamp(n, 0, array.length)); - } + /** Detect free variable `exports`. */ + var freeExports = true && exports && !exports.nodeType && exports; - /** - * The base implementation of `_.set`. - * - * @private - * @param {Object} object The object to modify. - * @param {Array|string} path The path of the property to set. - * @param {*} value The value to set. - * @param {Function} [customizer] The function to customize path creation. - * @returns {Object} Returns `object`. - */ - function baseSet(object, path, value, customizer) { - if (!isObject(object)) { - return object; - } - path = castPath(path, object); + /** Detect free variable `module`. */ + var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; - var index = -1, - length = path.length, - lastIndex = length - 1, - nested = object; + /** Detect the popular CommonJS extension `module.exports`. */ + var moduleExports = freeModule && freeModule.exports === freeExports; - while (nested != null && ++index < length) { - var key = toKey(path[index]), - newValue = value; + /** Detect free variable `process` from Node.js. */ + var freeProcess = moduleExports && freeGlobal.process; - if (key === '__proto__' || key === 'constructor' || key === 'prototype') { - return object; - } + /** Used to access faster Node.js helpers. */ + var nodeUtil = (function() { + try { + // Use `util.types` for Node.js 10+. + var types = freeModule && freeModule.require && freeModule.require('util').types; - if (index != lastIndex) { - var objValue = nested[key]; - newValue = customizer ? customizer(objValue, key, nested) : undefined; - if (newValue === undefined) { - newValue = isObject(objValue) - ? objValue - : (isIndex(path[index + 1]) ? [] : {}); - } - } - assignValue(nested, key, newValue); - nested = nested[key]; + if (types) { + return types; } - return object; - } - - /** - * The base implementation of `setData` without support for hot loop shorting. - * - * @private - * @param {Function} func The function to associate metadata with. - * @param {*} data The metadata. - * @returns {Function} Returns `func`. - */ - var baseSetData = !metaMap ? identity : function(func, data) { - metaMap.set(func, data); - return func; - }; - - /** - * The base implementation of `setToString` without support for hot loop shorting. - * - * @private - * @param {Function} func The function to modify. - * @param {Function} string The `toString` result. - * @returns {Function} Returns `func`. - */ - var baseSetToString = !defineProperty ? identity : function(func, string) { - return defineProperty(func, 'toString', { - 'configurable': true, - 'enumerable': false, - 'value': constant(string), - 'writable': true - }); - }; - /** - * The base implementation of `_.shuffle`. - * - * @private - * @param {Array|Object} collection The collection to shuffle. - * @returns {Array} Returns the new shuffled array. - */ - function baseShuffle(collection) { - return shuffleSelf(values(collection)); - } + // Legacy `process.binding('util')` for Node.js < 10. + return freeProcess && freeProcess.binding && freeProcess.binding('util'); + } catch (e) {} + }()); - /** - * The base implementation of `_.slice` without an iteratee call guard. - * - * @private - * @param {Array} array The array to slice. - * @param {number} [start=0] The start position. - * @param {number} [end=array.length] The end position. - * @returns {Array} Returns the slice of `array`. - */ - function baseSlice(array, start, end) { - var index = -1, - length = array.length; + /* Node.js helper references. */ + var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer, + nodeIsDate = nodeUtil && nodeUtil.isDate, + nodeIsMap = nodeUtil && nodeUtil.isMap, + nodeIsRegExp = nodeUtil && nodeUtil.isRegExp, + nodeIsSet = nodeUtil && nodeUtil.isSet, + nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray; - if (start < 0) { - start = -start > length ? 0 : (length + start); - } - end = end > length ? length : end; - if (end < 0) { - end += length; - } - length = start > end ? 0 : ((end - start) >>> 0); - start >>>= 0; + /*--------------------------------------------------------------------------*/ - var result = Array(length); - while (++index < length) { - result[index] = array[index + start]; - } - return result; + /** + * A faster alternative to `Function#apply`, this function invokes `func` + * with the `this` binding of `thisArg` and the arguments of `args`. + * + * @private + * @param {Function} func The function to invoke. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} args The arguments to invoke `func` with. + * @returns {*} Returns the result of `func`. + */ + function apply(func, thisArg, args) { + switch (args.length) { + case 0: return func.call(thisArg); + case 1: return func.call(thisArg, args[0]); + case 2: return func.call(thisArg, args[0], args[1]); + case 3: return func.call(thisArg, args[0], args[1], args[2]); } + return func.apply(thisArg, args); + } - /** - * The base implementation of `_.some` without support for iteratee shorthands. - * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} predicate The function invoked per iteration. - * @returns {boolean} Returns `true` if any element passes the predicate check, - * else `false`. - */ - function baseSome(collection, predicate) { - var result; + /** + * A specialized version of `baseAggregator` for arrays. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ + function arrayAggregator(array, setter, iteratee, accumulator) { + var index = -1, + length = array == null ? 0 : array.length; - baseEach(collection, function(value, index, collection) { - result = predicate(value, index, collection); - return !result; - }); - return !!result; + while (++index < length) { + var value = array[index]; + setter(accumulator, value, iteratee(value), array); } + return accumulator; + } - /** - * The base implementation of `_.sortedIndex` and `_.sortedLastIndex` which - * performs a binary search of `array` to determine the index at which `value` - * should be inserted into `array` in order to maintain its sort order. - * - * @private - * @param {Array} array The sorted array to inspect. - * @param {*} value The value to evaluate. - * @param {boolean} [retHighest] Specify returning the highest qualified index. - * @returns {number} Returns the index at which `value` should be inserted - * into `array`. - */ - function baseSortedIndex(array, value, retHighest) { - var low = 0, - high = array == null ? low : array.length; - - if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) { - while (low < high) { - var mid = (low + high) >>> 1, - computed = array[mid]; + /** + * A specialized version of `_.forEach` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEach(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length; - if (computed !== null && !isSymbol(computed) && - (retHighest ? (computed <= value) : (computed < value))) { - low = mid + 1; - } else { - high = mid; - } - } - return high; + while (++index < length) { + if (iteratee(array[index], index, array) === false) { + break; } - return baseSortedIndexBy(array, value, identity, retHighest); } + return array; + } - /** - * The base implementation of `_.sortedIndexBy` and `_.sortedLastIndexBy` - * which invokes `iteratee` for `value` and each element of `array` to compute - * their sort ranking. The iteratee is invoked with one argument; (value). - * - * @private - * @param {Array} array The sorted array to inspect. - * @param {*} value The value to evaluate. - * @param {Function} iteratee The iteratee invoked per element. - * @param {boolean} [retHighest] Specify returning the highest qualified index. - * @returns {number} Returns the index at which `value` should be inserted - * into `array`. - */ - function baseSortedIndexBy(array, value, iteratee, retHighest) { - var low = 0, - high = array == null ? 0 : array.length; - if (high === 0) { - return 0; - } - - value = iteratee(value); - var valIsNaN = value !== value, - valIsNull = value === null, - valIsSymbol = isSymbol(value), - valIsUndefined = value === undefined; - - while (low < high) { - var mid = nativeFloor((low + high) / 2), - computed = iteratee(array[mid]), - othIsDefined = computed !== undefined, - othIsNull = computed === null, - othIsReflexive = computed === computed, - othIsSymbol = isSymbol(computed); + /** + * A specialized version of `_.forEachRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ + function arrayEachRight(array, iteratee) { + var length = array == null ? 0 : array.length; - if (valIsNaN) { - var setLow = retHighest || othIsReflexive; - } else if (valIsUndefined) { - setLow = othIsReflexive && (retHighest || othIsDefined); - } else if (valIsNull) { - setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull); - } else if (valIsSymbol) { - setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol); - } else if (othIsNull || othIsSymbol) { - setLow = false; - } else { - setLow = retHighest ? (computed <= value) : (computed < value); - } - if (setLow) { - low = mid + 1; - } else { - high = mid; - } + while (length--) { + if (iteratee(array[length], length, array) === false) { + break; } - return nativeMin(high, MAX_ARRAY_INDEX); } + return array; + } - /** - * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without - * support for iteratee shorthands. - * - * @private - * @param {Array} array The array to inspect. - * @param {Function} [iteratee] The iteratee invoked per element. - * @returns {Array} Returns the new duplicate free array. - */ - function baseSortedUniq(array, iteratee) { - var index = -1, - length = array.length, - resIndex = 0, - result = []; - - while (++index < length) { - var value = array[index], - computed = iteratee ? iteratee(value) : value; + /** + * A specialized version of `_.every` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. + */ + function arrayEvery(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; - if (!index || !eq(computed, seen)) { - var seen = computed; - result[resIndex++] = value === 0 ? 0 : value; - } + while (++index < length) { + if (!predicate(array[index], index, array)) { + return false; } - return result; } + return true; + } - /** - * The base implementation of `_.toNumber` which doesn't ensure correct - * conversions of binary, hexadecimal, or octal string values. - * - * @private - * @param {*} value The value to process. - * @returns {number} Returns the number. - */ - function baseToNumber(value) { - if (typeof value == 'number') { - return value; - } - if (isSymbol(value)) { - return NAN; - } - return +value; - } + /** + * A specialized version of `_.filter` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ + function arrayFilter(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; - /** - * The base implementation of `_.toString` which doesn't convert nullish - * values to empty strings. - * - * @private - * @param {*} value The value to process. - * @returns {string} Returns the string. - */ - function baseToString(value) { - // Exit early for strings to avoid a performance hit in some environments. - if (typeof value == 'string') { - return value; - } - if (isArray(value)) { - // Recursively convert values (susceptible to call stack limits). - return arrayMap(value, baseToString) + ''; - } - if (isSymbol(value)) { - return symbolToString ? symbolToString.call(value) : ''; + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result[resIndex++] = value; } - var result = (value + ''); - return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; } + return result; + } - /** - * The base implementation of `_.uniqBy` without support for iteratee shorthands. - * - * @private - * @param {Array} array The array to inspect. - * @param {Function} [iteratee] The iteratee invoked per element. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new duplicate free array. - */ - function baseUniq(array, iteratee, comparator) { - var index = -1, - includes = arrayIncludes, - length = array.length, - isCommon = true, - result = [], - seen = result; + /** + * A specialized version of `_.includes` for arrays without support for + * specifying an index to search from. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ + function arrayIncludes(array, value) { + var length = array == null ? 0 : array.length; + return !!length && baseIndexOf(array, value, 0) > -1; + } - if (comparator) { - isCommon = false; - includes = arrayIncludesWith; - } - else if (length >= LARGE_ARRAY_SIZE) { - var set = iteratee ? null : createSet(array); - if (set) { - return setToArray(set); - } - isCommon = false; - includes = cacheHas; - seen = new SetCache; - } - else { - seen = iteratee ? [] : result; - } - outer: - while (++index < length) { - var value = array[index], - computed = iteratee ? iteratee(value) : value; + /** + * This function is like `arrayIncludes` except that it accepts a comparator. + * + * @private + * @param {Array} [array] The array to inspect. + * @param {*} target The value to search for. + * @param {Function} comparator The comparator invoked per element. + * @returns {boolean} Returns `true` if `target` is found, else `false`. + */ + function arrayIncludesWith(array, value, comparator) { + var index = -1, + length = array == null ? 0 : array.length; - value = (comparator || value !== 0) ? value : 0; - if (isCommon && computed === computed) { - var seenIndex = seen.length; - while (seenIndex--) { - if (seen[seenIndex] === computed) { - continue outer; - } - } - if (iteratee) { - seen.push(computed); - } - result.push(value); - } - else if (!includes(seen, computed, comparator)) { - if (seen !== result) { - seen.push(computed); - } - result.push(value); - } + while (++index < length) { + if (comparator(value, array[index])) { + return true; } - return result; } + return false; + } - /** - * The base implementation of `_.unset`. - * - * @private - * @param {Object} object The object to modify. - * @param {Array|string} path The property path to unset. - * @returns {boolean} Returns `true` if the property is deleted, else `false`. - */ - function baseUnset(object, path) { - path = castPath(path, object); - object = parent(object, path); - return object == null || delete object[toKey(last(path))]; + /** + * A specialized version of `_.map` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function arrayMap(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length, + result = Array(length); + + while (++index < length) { + result[index] = iteratee(array[index], index, array); } + return result; + } - /** - * The base implementation of `_.update`. - * - * @private - * @param {Object} object The object to modify. - * @param {Array|string} path The path of the property to update. - * @param {Function} updater The function to produce the updated value. - * @param {Function} [customizer] The function to customize path creation. - * @returns {Object} Returns `object`. - */ - function baseUpdate(object, path, updater, customizer) { - return baseSet(object, path, updater(baseGet(object, path)), customizer); + /** + * Appends the elements of `values` to `array`. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to append. + * @returns {Array} Returns `array`. + */ + function arrayPush(array, values) { + var index = -1, + length = values.length, + offset = array.length; + + while (++index < length) { + array[offset + index] = values[index]; } + return array; + } - /** - * The base implementation of methods like `_.dropWhile` and `_.takeWhile` - * without support for iteratee shorthands. - * - * @private - * @param {Array} array The array to query. - * @param {Function} predicate The function invoked per iteration. - * @param {boolean} [isDrop] Specify dropping elements instead of taking them. - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Array} Returns the slice of `array`. - */ - function baseWhile(array, predicate, isDrop, fromRight) { - var length = array.length, - index = fromRight ? length : -1; + /** + * A specialized version of `_.reduce` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the first element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduce(array, iteratee, accumulator, initAccum) { + var index = -1, + length = array == null ? 0 : array.length; - while ((fromRight ? index-- : ++index < length) && - predicate(array[index], index, array)) {} + if (initAccum && length) { + accumulator = array[++index]; + } + while (++index < length) { + accumulator = iteratee(accumulator, array[index], index, array); + } + return accumulator; + } - return isDrop - ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length)) - : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index)); + /** + * A specialized version of `_.reduceRight` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @param {boolean} [initAccum] Specify using the last element of `array` as + * the initial value. + * @returns {*} Returns the accumulated value. + */ + function arrayReduceRight(array, iteratee, accumulator, initAccum) { + var length = array == null ? 0 : array.length; + if (initAccum && length) { + accumulator = array[--length]; + } + while (length--) { + accumulator = iteratee(accumulator, array[length], length, array); } + return accumulator; + } - /** - * The base implementation of `wrapperValue` which returns the result of - * performing a sequence of actions on the unwrapped `value`, where each - * successive action is supplied the return value of the previous. - * - * @private - * @param {*} value The unwrapped value. - * @param {Array} actions Actions to perform to resolve the unwrapped value. - * @returns {*} Returns the resolved value. - */ - function baseWrapperValue(value, actions) { - var result = value; - if (result instanceof LazyWrapper) { - result = result.value(); + /** + * A specialized version of `_.some` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function arraySome(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; + + while (++index < length) { + if (predicate(array[index], index, array)) { + return true; } - return arrayReduce(actions, function(result, action) { - return action.func.apply(action.thisArg, arrayPush([result], action.args)); - }, result); } + return false; + } - /** - * The base implementation of methods like `_.xor`, without support for - * iteratee shorthands, that accepts an array of arrays to inspect. - * - * @private - * @param {Array} arrays The arrays to inspect. - * @param {Function} [iteratee] The iteratee invoked per element. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of values. - */ - function baseXor(arrays, iteratee, comparator) { - var length = arrays.length; - if (length < 2) { - return length ? baseUniq(arrays[0]) : []; + /** + * Gets the size of an ASCII `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ + var asciiSize = baseProperty('length'); + + /** + * Converts an ASCII `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function asciiToArray(string) { + return string.split(''); + } + + /** + * Splits an ASCII `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ + function asciiWords(string) { + return string.match(reAsciiWord) || []; + } + + /** + * The base implementation of methods like `_.findKey` and `_.findLastKey`, + * without support for iteratee shorthands, which iterates over `collection` + * using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the found element or its key, else `undefined`. + */ + function baseFindKey(collection, predicate, eachFunc) { + var result; + eachFunc(collection, function(value, key, collection) { + if (predicate(value, key, collection)) { + result = key; + return false; } - var index = -1, - result = Array(length); + }); + return result; + } - while (++index < length) { - var array = arrays[index], - othIndex = -1; + /** + * The base implementation of `_.findIndex` and `_.findLastIndex` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {number} fromIndex The index to search from. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseFindIndex(array, predicate, fromIndex, fromRight) { + var length = array.length, + index = fromIndex + (fromRight ? 1 : -1); - while (++othIndex < length) { - if (othIndex != index) { - result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator); - } - } + while ((fromRight ? index-- : ++index < length)) { + if (predicate(array[index], index, array)) { + return index; } - return baseUniq(baseFlatten(result, 1), iteratee, comparator); } + return -1; + } - /** - * This base implementation of `_.zipObject` which assigns values using `assignFunc`. - * - * @private - * @param {Array} props The property identifiers. - * @param {Array} values The property values. - * @param {Function} assignFunc The function to assign values. - * @returns {Object} Returns the new object. - */ - function baseZipObject(props, values, assignFunc) { - var index = -1, - length = props.length, - valsLength = values.length, - result = {}; + /** + * The base implementation of `_.indexOf` without `fromIndex` bounds checks. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOf(array, value, fromIndex) { + return value === value + ? strictIndexOf(array, value, fromIndex) + : baseFindIndex(array, baseIsNaN, fromIndex); + } - while (++index < length) { - var value = index < valsLength ? values[index] : undefined; - assignFunc(result, props[index], value); + /** + * This function is like `baseIndexOf` except that it accepts a comparator. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @param {Function} comparator The comparator invoked per element. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function baseIndexOfWith(array, value, fromIndex, comparator) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (comparator(array[index], value)) { + return index; } - return result; } + return -1; + } - /** - * Casts `value` to an empty array if it's not an array like object. - * - * @private - * @param {*} value The value to inspect. - * @returns {Array|Object} Returns the cast array-like object. - */ - function castArrayLikeObject(value) { - return isArrayLikeObject(value) ? value : []; - } + /** + * The base implementation of `_.isNaN` without support for number objects. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + */ + function baseIsNaN(value) { + return value !== value; + } - /** - * Casts `value` to `identity` if it's not a function. - * - * @private - * @param {*} value The value to inspect. - * @returns {Function} Returns cast function. - */ - function castFunction(value) { - return typeof value == 'function' ? value : identity; + /** + * The base implementation of `_.mean` and `_.meanBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the mean. + */ + function baseMean(array, iteratee) { + var length = array == null ? 0 : array.length; + return length ? (baseSum(array, iteratee) / length) : NAN; + } + + /** + * The base implementation of `_.property` without support for deep paths. + * + * @private + * @param {string} key The key of the property to get. + * @returns {Function} Returns the new accessor function. + */ + function baseProperty(key) { + return function(object) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.propertyOf` without support for deep paths. + * + * @private + * @param {Object} object The object to query. + * @returns {Function} Returns the new accessor function. + */ + function basePropertyOf(object) { + return function(key) { + return object == null ? undefined : object[key]; + }; + } + + /** + * The base implementation of `_.reduce` and `_.reduceRight`, without support + * for iteratee shorthands, which iterates over `collection` using `eachFunc`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {*} accumulator The initial value. + * @param {boolean} initAccum Specify using the first or last element of + * `collection` as the initial value. + * @param {Function} eachFunc The function to iterate over `collection`. + * @returns {*} Returns the accumulated value. + */ + function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { + eachFunc(collection, function(value, index, collection) { + accumulator = initAccum + ? (initAccum = false, value) + : iteratee(accumulator, value, index, collection); + }); + return accumulator; + } + + /** + * The base implementation of `_.sortBy` which uses `comparer` to define the + * sort order of `array` and replaces criteria objects with their corresponding + * values. + * + * @private + * @param {Array} array The array to sort. + * @param {Function} comparer The function to define sort order. + * @returns {Array} Returns `array`. + */ + function baseSortBy(array, comparer) { + var length = array.length; + + array.sort(comparer); + while (length--) { + array[length] = array[length].value; } + return array; + } - /** - * Casts `value` to a path array if it's not one. - * - * @private - * @param {*} value The value to inspect. - * @param {Object} [object] The object to query keys on. - * @returns {Array} Returns the cast property path array. - */ - function castPath(value, object) { - if (isArray(value)) { - return value; + /** + * The base implementation of `_.sum` and `_.sumBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the sum. + */ + function baseSum(array, iteratee) { + var result, + index = -1, + length = array.length; + + while (++index < length) { + var current = iteratee(array[index]); + if (current !== undefined) { + result = result === undefined ? current : (result + current); } - return isKey(value, object) ? [value] : stringToPath(toString(value)); } + return result; + } - /** - * A `baseRest` alias which can be replaced with `identity` by module - * replacement plugins. - * - * @private - * @type {Function} - * @param {Function} func The function to apply a rest parameter to. - * @returns {Function} Returns the new function. - */ - var castRest = baseRest; + /** + * The base implementation of `_.times` without support for iteratee shorthands + * or max array length checks. + * + * @private + * @param {number} n The number of times to invoke `iteratee`. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the array of results. + */ + function baseTimes(n, iteratee) { + var index = -1, + result = Array(n); - /** - * Casts `array` to a slice if it's needed. - * - * @private - * @param {Array} array The array to inspect. - * @param {number} start The start position. - * @param {number} [end=array.length] The end position. - * @returns {Array} Returns the cast slice. - */ - function castSlice(array, start, end) { - var length = array.length; - end = end === undefined ? length : end; - return (!start && end >= length) ? array : baseSlice(array, start, end); + while (++index < n) { + result[index] = iteratee(index); } + return result; + } - /** - * A simple wrapper around the global [`clearTimeout`](https://mdn.io/clearTimeout). - * - * @private - * @param {number|Object} id The timer id or timeout object of the timer to clear. - */ - var clearTimeout = ctxClearTimeout || function(id) { - return root.clearTimeout(id); - }; + /** + * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array + * of key-value pairs for `object` corresponding to the property names of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the key-value pairs. + */ + function baseToPairs(object, props) { + return arrayMap(props, function(key) { + return [key, object[key]]; + }); + } - /** - * Creates a clone of `buffer`. - * - * @private - * @param {Buffer} buffer The buffer to clone. - * @param {boolean} [isDeep] Specify a deep clone. - * @returns {Buffer} Returns the cloned buffer. - */ - function cloneBuffer(buffer, isDeep) { - if (isDeep) { - return buffer.slice(); - } - var length = buffer.length, - result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length); + /** + * The base implementation of `_.trim`. + * + * @private + * @param {string} string The string to trim. + * @returns {string} Returns the trimmed string. + */ + function baseTrim(string) { + return string + ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '') + : string; + } - buffer.copy(result); - return result; - } + /** + * The base implementation of `_.unary` without support for storing metadata. + * + * @private + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + */ + function baseUnary(func) { + return function(value) { + return func(value); + }; + } - /** - * Creates a clone of `arrayBuffer`. - * - * @private - * @param {ArrayBuffer} arrayBuffer The array buffer to clone. - * @returns {ArrayBuffer} Returns the cloned array buffer. - */ - function cloneArrayBuffer(arrayBuffer) { - var result = new arrayBuffer.constructor(arrayBuffer.byteLength); - new Uint8Array(result).set(new Uint8Array(arrayBuffer)); - return result; - } + /** + * The base implementation of `_.values` and `_.valuesIn` which creates an + * array of `object` property values corresponding to the property names + * of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the array of property values. + */ + function baseValues(object, props) { + return arrayMap(props, function(key) { + return object[key]; + }); + } - /** - * Creates a clone of `dataView`. - * - * @private - * @param {Object} dataView The data view to clone. - * @param {boolean} [isDeep] Specify a deep clone. - * @returns {Object} Returns the cloned data view. - */ - function cloneDataView(dataView, isDeep) { - var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; - return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); - } + /** + * Checks if a `cache` value for `key` exists. + * + * @private + * @param {Object} cache The cache to query. + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function cacheHas(cache, key) { + return cache.has(key); + } - /** - * Creates a clone of `regexp`. - * - * @private - * @param {Object} regexp The regexp to clone. - * @returns {Object} Returns the cloned regexp. - */ - function cloneRegExp(regexp) { - var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); - result.lastIndex = regexp.lastIndex; - return result; - } + /** + * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the first unmatched string symbol. + */ + function charsStartIndex(strSymbols, chrSymbols) { + var index = -1, + length = strSymbols.length; - /** - * Creates a clone of the `symbol` object. - * - * @private - * @param {Object} symbol The symbol object to clone. - * @returns {Object} Returns the cloned symbol object. - */ - function cloneSymbol(symbol) { - return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; - } + while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; + } - /** - * Creates a clone of `typedArray`. - * - * @private - * @param {Object} typedArray The typed array to clone. - * @param {boolean} [isDeep] Specify a deep clone. - * @returns {Object} Returns the cloned typed array. - */ - function cloneTypedArray(typedArray, isDeep) { - var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; - return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); - } + /** + * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the last unmatched string symbol. + */ + function charsEndIndex(strSymbols, chrSymbols) { + var index = strSymbols.length; - /** - * Compares values to sort them in ascending order. - * - * @private - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {number} Returns the sort order indicator for `value`. - */ - function compareAscending(value, other) { - if (value !== other) { - var valIsDefined = value !== undefined, - valIsNull = value === null, - valIsReflexive = value === value, - valIsSymbol = isSymbol(value); + while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; + } - var othIsDefined = other !== undefined, - othIsNull = other === null, - othIsReflexive = other === other, - othIsSymbol = isSymbol(other); + /** + * Gets the number of `placeholder` occurrences in `array`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} placeholder The placeholder to search for. + * @returns {number} Returns the placeholder count. + */ + function countHolders(array, placeholder) { + var length = array.length, + result = 0; - if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || - (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || - (valIsNull && othIsDefined && othIsReflexive) || - (!valIsDefined && othIsReflexive) || - !valIsReflexive) { - return 1; - } - if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || - (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || - (othIsNull && valIsDefined && valIsReflexive) || - (!othIsDefined && valIsReflexive) || - !othIsReflexive) { - return -1; - } + while (length--) { + if (array[length] === placeholder) { + ++result; } - return 0; } + return result; + } - /** - * Used by `_.orderBy` to compare multiple properties of a value to another - * and stable sort them. - * - * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, - * specify an order of "desc" for descending or "asc" for ascending sort order - * of corresponding values. - * - * @private - * @param {Object} object The object to compare. - * @param {Object} other The other object to compare. - * @param {boolean[]|string[]} orders The order to sort by for each property. - * @returns {number} Returns the sort order indicator for `object`. - */ - function compareMultiple(object, other, orders) { - var index = -1, - objCriteria = object.criteria, - othCriteria = other.criteria, - length = objCriteria.length, - ordersLength = orders.length; + /** + * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A + * letters to basic Latin letters. + * + * @private + * @param {string} letter The matched letter to deburr. + * @returns {string} Returns the deburred letter. + */ + var deburrLetter = basePropertyOf(deburredLetters); - while (++index < length) { - var result = compareAscending(objCriteria[index], othCriteria[index]); - if (result) { - if (index >= ordersLength) { - return result; - } - var order = orders[index]; - return result * (order == 'desc' ? -1 : 1); - } - } - // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications - // that causes it, under certain circumstances, to provide the same value for - // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 - // for more details. - // - // This also ensures a stable sort in V8 and other engines. - // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. - return object.index - other.index; - } + /** + * Used by `_.escape` to convert characters to HTML entities. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + var escapeHtmlChar = basePropertyOf(htmlEscapes); - /** - * Creates an array that is the composition of partially applied arguments, - * placeholders, and provided arguments into a single array of arguments. - * - * @private - * @param {Array} args The provided arguments. - * @param {Array} partials The arguments to prepend to those provided. - * @param {Array} holders The `partials` placeholder indexes. - * @params {boolean} [isCurried] Specify composing for a curried function. - * @returns {Array} Returns the new array of composed arguments. - */ - function composeArgs(args, partials, holders, isCurried) { - var argsIndex = -1, - argsLength = args.length, - holdersLength = holders.length, - leftIndex = -1, - leftLength = partials.length, - rangeLength = nativeMax(argsLength - holdersLength, 0), - result = Array(leftLength + rangeLength), - isUncurried = !isCurried; + /** + * Used by `_.template` to escape characters for inclusion in compiled string literals. + * + * @private + * @param {string} chr The matched character to escape. + * @returns {string} Returns the escaped character. + */ + function escapeStringChar(chr) { + return '\\' + stringEscapes[chr]; + } - while (++leftIndex < leftLength) { - result[leftIndex] = partials[leftIndex]; - } - while (++argsIndex < holdersLength) { - if (isUncurried || argsIndex < argsLength) { - result[holders[argsIndex]] = args[argsIndex]; - } - } - while (rangeLength--) { - result[leftIndex++] = args[argsIndex++]; - } - return result; - } + /** + * Gets the value at `key` of `object`. + * + * @private + * @param {Object} [object] The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ + function getValue(object, key) { + return object == null ? undefined : object[key]; + } - /** - * This function is like `composeArgs` except that the arguments composition - * is tailored for `_.partialRight`. - * - * @private - * @param {Array} args The provided arguments. - * @param {Array} partials The arguments to append to those provided. - * @param {Array} holders The `partials` placeholder indexes. - * @params {boolean} [isCurried] Specify composing for a curried function. - * @returns {Array} Returns the new array of composed arguments. - */ - function composeArgsRight(args, partials, holders, isCurried) { - var argsIndex = -1, - argsLength = args.length, - holdersIndex = -1, - holdersLength = holders.length, - rightIndex = -1, - rightLength = partials.length, - rangeLength = nativeMax(argsLength - holdersLength, 0), - result = Array(rangeLength + rightLength), - isUncurried = !isCurried; + /** + * Checks if `string` contains Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a symbol is found, else `false`. + */ + function hasUnicode(string) { + return reHasUnicode.test(string); + } - while (++argsIndex < rangeLength) { - result[argsIndex] = args[argsIndex]; - } - var offset = argsIndex; - while (++rightIndex < rightLength) { - result[offset + rightIndex] = partials[rightIndex]; - } - while (++holdersIndex < holdersLength) { - if (isUncurried || argsIndex < argsLength) { - result[offset + holders[holdersIndex]] = args[argsIndex++]; - } - } - return result; - } + /** + * Checks if `string` contains a word composed of Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a word is found, else `false`. + */ + function hasUnicodeWord(string) { + return reHasUnicodeWord.test(string); + } - /** - * Copies the values of `source` to `array`. - * - * @private - * @param {Array} source The array to copy values from. - * @param {Array} [array=[]] The array to copy values to. - * @returns {Array} Returns `array`. - */ - function copyArray(source, array) { - var index = -1, - length = source.length; + /** + * Converts `iterator` to an array. + * + * @private + * @param {Object} iterator The iterator to convert. + * @returns {Array} Returns the converted array. + */ + function iteratorToArray(iterator) { + var data, + result = []; - array || (array = Array(length)); - while (++index < length) { - array[index] = source[index]; - } - return array; + while (!(data = iterator.next()).done) { + result.push(data.value); } + return result; + } - /** - * Copies properties of `source` to `object`. - * - * @private - * @param {Object} source The object to copy properties from. - * @param {Array} props The property identifiers to copy. - * @param {Object} [object={}] The object to copy properties to. - * @param {Function} [customizer] The function to customize copied values. - * @returns {Object} Returns `object`. - */ - function copyObject(source, props, object, customizer) { - var isNew = !object; - object || (object = {}); + /** + * Converts `map` to its key-value pairs. + * + * @private + * @param {Object} map The map to convert. + * @returns {Array} Returns the key-value pairs. + */ + function mapToArray(map) { + var index = -1, + result = Array(map.size); - var index = -1, - length = props.length; + map.forEach(function(value, key) { + result[++index] = [key, value]; + }); + return result; + } - while (++index < length) { - var key = props[index]; + /** + * Creates a unary function that invokes `func` with its argument transformed. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} transform The argument transform. + * @returns {Function} Returns the new function. + */ + function overArg(func, transform) { + return function(arg) { + return func(transform(arg)); + }; + } - var newValue = customizer - ? customizer(object[key], source[key], key, object, source) - : undefined; + /** + * Replaces all `placeholder` elements in `array` with an internal placeholder + * and returns an array of their indexes. + * + * @private + * @param {Array} array The array to modify. + * @param {*} placeholder The placeholder to replace. + * @returns {Array} Returns the new array of placeholder indexes. + */ + function replaceHolders(array, placeholder) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; - if (newValue === undefined) { - newValue = source[key]; - } - if (isNew) { - baseAssignValue(object, key, newValue); - } else { - assignValue(object, key, newValue); - } + while (++index < length) { + var value = array[index]; + if (value === placeholder || value === PLACEHOLDER) { + array[index] = PLACEHOLDER; + result[resIndex++] = index; } - return object; } + return result; + } - /** - * Copies own symbols of `source` to `object`. - * - * @private - * @param {Object} source The object to copy symbols from. - * @param {Object} [object={}] The object to copy symbols to. - * @returns {Object} Returns `object`. - */ - function copySymbols(source, object) { - return copyObject(source, getSymbols(source), object); - } + /** + * Converts `set` to an array of its values. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the values. + */ + function setToArray(set) { + var index = -1, + result = Array(set.size); - /** - * Copies own and inherited symbols of `source` to `object`. - * - * @private - * @param {Object} source The object to copy symbols from. - * @param {Object} [object={}] The object to copy symbols to. - * @returns {Object} Returns `object`. - */ - function copySymbolsIn(source, object) { - return copyObject(source, getSymbolsIn(source), object); - } + set.forEach(function(value) { + result[++index] = value; + }); + return result; + } - /** - * Creates a function like `_.groupBy`. - * - * @private - * @param {Function} setter The function to set accumulator values. - * @param {Function} [initializer] The accumulator object initializer. - * @returns {Function} Returns the new aggregator function. - */ - function createAggregator(setter, initializer) { - return function(collection, iteratee) { - var func = isArray(collection) ? arrayAggregator : baseAggregator, - accumulator = initializer ? initializer() : {}; + /** + * Converts `set` to its value-value pairs. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the value-value pairs. + */ + function setToPairs(set) { + var index = -1, + result = Array(set.size); - return func(collection, setter, getIteratee(iteratee, 2), accumulator); - }; - } + set.forEach(function(value) { + result[++index] = [value, value]; + }); + return result; + } - /** - * Creates a function like `_.assign`. - * - * @private - * @param {Function} assigner The function to assign values. - * @returns {Function} Returns the new assigner function. - */ - function createAssigner(assigner) { - return baseRest(function(object, sources) { - var index = -1, - length = sources.length, - customizer = length > 1 ? sources[length - 1] : undefined, - guard = length > 2 ? sources[2] : undefined; + /** + * A specialized version of `_.indexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function strictIndexOf(array, value, fromIndex) { + var index = fromIndex - 1, + length = array.length; - customizer = (assigner.length > 3 && typeof customizer == 'function') - ? (length--, customizer) - : undefined; + while (++index < length) { + if (array[index] === value) { + return index; + } + } + return -1; + } - if (guard && isIterateeCall(sources[0], sources[1], guard)) { - customizer = length < 3 ? undefined : customizer; - length = 1; - } - object = Object(object); - while (++index < length) { - var source = sources[index]; - if (source) { - assigner(object, source, index, customizer); - } - } - return object; - }); + /** + * A specialized version of `_.lastIndexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ + function strictLastIndexOf(array, value, fromIndex) { + var index = fromIndex + 1; + while (index--) { + if (array[index] === value) { + return index; + } } + return index; + } - /** - * Creates a `baseEach` or `baseEachRight` function. - * - * @private - * @param {Function} eachFunc The function to iterate over a collection. - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new base function. - */ - function createBaseEach(eachFunc, fromRight) { - return function(collection, iteratee) { - if (collection == null) { - return collection; - } - if (!isArrayLike(collection)) { - return eachFunc(collection, iteratee); - } - var length = collection.length, - index = fromRight ? length : -1, - iterable = Object(collection); + /** + * Gets the number of symbols in `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the string size. + */ + function stringSize(string) { + return hasUnicode(string) + ? unicodeSize(string) + : asciiSize(string); + } - while ((fromRight ? index-- : ++index < length)) { - if (iteratee(iterable[index], index, iterable) === false) { - break; - } - } - return collection; - }; - } + /** + * Converts `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function stringToArray(string) { + return hasUnicode(string) + ? unicodeToArray(string) + : asciiToArray(string); + } - /** - * Creates a base function for methods like `_.forIn` and `_.forOwn`. - * - * @private - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new base function. - */ - function createBaseFor(fromRight) { - return function(object, iteratee, keysFunc) { - var index = -1, - iterable = Object(object), - props = keysFunc(object), - length = props.length; + /** + * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace + * character of `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the index of the last non-whitespace character. + */ + function trimmedEndIndex(string) { + var index = string.length; - while (length--) { - var key = props[fromRight ? length : ++index]; - if (iteratee(iterable[key], key, iterable) === false) { - break; - } - } - return object; - }; - } + while (index-- && reWhitespace.test(string.charAt(index))) {} + return index; + } - /** - * Creates a function that wraps `func` to invoke it with the optional `this` - * binding of `thisArg`. - * - * @private - * @param {Function} func The function to wrap. - * @param {number} bitmask The bitmask flags. See `createWrap` for more details. - * @param {*} [thisArg] The `this` binding of `func`. - * @returns {Function} Returns the new wrapped function. - */ - function createBind(func, bitmask, thisArg) { - var isBind = bitmask & WRAP_BIND_FLAG, - Ctor = createCtor(func); + /** + * Used by `_.unescape` to convert HTML entities to characters. + * + * @private + * @param {string} chr The matched character to unescape. + * @returns {string} Returns the unescaped character. + */ + var unescapeHtmlChar = basePropertyOf(htmlUnescapes); - function wrapper() { - var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; - return fn.apply(isBind ? thisArg : this, arguments); - } - return wrapper; + /** + * Gets the size of a Unicode `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ + function unicodeSize(string) { + var result = reUnicode.lastIndex = 0; + while (reUnicode.test(string)) { + ++result; } + return result; + } - /** - * Creates a function like `_.lowerFirst`. - * - * @private - * @param {string} methodName The name of the `String` case method to use. - * @returns {Function} Returns the new case function. - */ - function createCaseFirst(methodName) { - return function(string) { - string = toString(string); - - var strSymbols = hasUnicode(string) - ? stringToArray(string) - : undefined; + /** + * Converts a Unicode `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ + function unicodeToArray(string) { + return string.match(reUnicode) || []; + } - var chr = strSymbols - ? strSymbols[0] - : string.charAt(0); + /** + * Splits a Unicode `string` into an array of its words. + * + * @private + * @param {string} The string to inspect. + * @returns {Array} Returns the words of `string`. + */ + function unicodeWords(string) { + return string.match(reUnicodeWord) || []; + } - var trailing = strSymbols - ? castSlice(strSymbols, 1).join('') - : string.slice(1); + /*--------------------------------------------------------------------------*/ - return chr[methodName]() + trailing; - }; - } + /** + * Create a new pristine `lodash` function using the `context` object. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Util + * @param {Object} [context=root] The context object. + * @returns {Function} Returns a new `lodash` function. + * @example + * + * _.mixin({ 'foo': _.constant('foo') }); + * + * var lodash = _.runInContext(); + * lodash.mixin({ 'bar': lodash.constant('bar') }); + * + * _.isFunction(_.foo); + * // => true + * _.isFunction(_.bar); + * // => false + * + * lodash.isFunction(lodash.foo); + * // => false + * lodash.isFunction(lodash.bar); + * // => true + * + * // Create a suped-up `defer` in Node.js. + * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer; + */ + var runInContext = (function runInContext(context) { + context = context == null ? root : _.defaults(root.Object(), context, _.pick(root, contextProps)); - /** - * Creates a function like `_.camelCase`. - * - * @private - * @param {Function} callback The function to combine each word. - * @returns {Function} Returns the new compounder function. - */ - function createCompounder(callback) { - return function(string) { - return arrayReduce(words(deburr(string).replace(reApos, '')), callback, ''); - }; - } + /** Built-in constructor references. */ + var Array = context.Array, + Date = context.Date, + Error = context.Error, + Function = context.Function, + Math = context.Math, + Object = context.Object, + RegExp = context.RegExp, + String = context.String, + TypeError = context.TypeError; - /** - * Creates a function that produces an instance of `Ctor` regardless of - * whether it was invoked as part of a `new` expression or by `call` or `apply`. - * - * @private - * @param {Function} Ctor The constructor to wrap. - * @returns {Function} Returns the new wrapped function. - */ - function createCtor(Ctor) { - return function() { - // Use a `switch` statement to work with class constructors. See - // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist - // for more details. - var args = arguments; - switch (args.length) { - case 0: return new Ctor; - case 1: return new Ctor(args[0]); - case 2: return new Ctor(args[0], args[1]); - case 3: return new Ctor(args[0], args[1], args[2]); - case 4: return new Ctor(args[0], args[1], args[2], args[3]); - case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); - case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); - case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); - } - var thisBinding = baseCreate(Ctor.prototype), - result = Ctor.apply(thisBinding, args); + /** Used for built-in method references. */ + var arrayProto = Array.prototype, + funcProto = Function.prototype, + objectProto = Object.prototype; - // Mimic the constructor's `return` behavior. - // See https://es5.github.io/#x13.2.2 for more details. - return isObject(result) ? result : thisBinding; - }; - } + /** Used to detect overreaching core-js shims. */ + var coreJsData = context['__core-js_shared__']; - /** - * Creates a function that wraps `func` to enable currying. - * - * @private - * @param {Function} func The function to wrap. - * @param {number} bitmask The bitmask flags. See `createWrap` for more details. - * @param {number} arity The arity of `func`. - * @returns {Function} Returns the new wrapped function. - */ - function createCurry(func, bitmask, arity) { - var Ctor = createCtor(func); + /** Used to resolve the decompiled source of functions. */ + var funcToString = funcProto.toString; - function wrapper() { - var length = arguments.length, - args = Array(length), - index = length, - placeholder = getHolder(wrapper); + /** Used to check objects for own properties. */ + var hasOwnProperty = objectProto.hasOwnProperty; - while (index--) { - args[index] = arguments[index]; - } - var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder) - ? [] - : replaceHolders(args, placeholder); + /** Used to generate unique IDs. */ + var idCounter = 0; - length -= holders.length; - if (length < arity) { - return createRecurry( - func, bitmask, createHybrid, wrapper.placeholder, undefined, - args, holders, undefined, undefined, arity - length); - } - var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; - return apply(fn, this, args); - } - return wrapper; - } + /** Used to detect methods masquerading as native. */ + var maskSrcKey = (function() { + var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ''); + return uid ? ('Symbol(src)_1.' + uid) : ''; + }()); /** - * Creates a `_.find` or `_.findLast` function. - * - * @private - * @param {Function} findIndexFunc The function to find the collection index. - * @returns {Function} Returns the new find function. + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. */ - function createFind(findIndexFunc) { - return function(collection, predicate, fromIndex) { - var iterable = Object(collection); - if (!isArrayLike(collection)) { - var iteratee = getIteratee(predicate, 3); - collection = keys(collection); - predicate = function(key) { return iteratee(iterable[key], key, iterable); }; - } - var index = findIndexFunc(collection, predicate, fromIndex); - return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined; - }; - } + var nativeObjectToString = objectProto.toString; - /** - * Creates a `_.flow` or `_.flowRight` function. - * - * @private - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new flow function. - */ - function createFlow(fromRight) { - return flatRest(function(funcs) { - var length = funcs.length, - index = length, - prereq = LodashWrapper.prototype.thru; + /** Used to infer the `Object` constructor. */ + var objectCtorString = funcToString.call(Object); - if (fromRight) { - funcs.reverse(); - } - while (index--) { - var func = funcs[index]; - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - if (prereq && !wrapper && getFuncName(func) == 'wrapper') { - var wrapper = new LodashWrapper([], true); - } - } - index = wrapper ? index : length; - while (++index < length) { - func = funcs[index]; + /** Used to restore the original `_` reference in `_.noConflict`. */ + var oldDash = root._; + + /** Used to detect if a method is native. */ + var reIsNative = RegExp('^' + + funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&') + .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' + ); + + /** Built-in value references. */ + var Buffer = moduleExports ? context.Buffer : undefined, + Symbol = context.Symbol, + Uint8Array = context.Uint8Array, + allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined, + getPrototype = overArg(Object.getPrototypeOf, Object), + objectCreate = Object.create, + propertyIsEnumerable = objectProto.propertyIsEnumerable, + splice = arrayProto.splice, + spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined, + symIterator = Symbol ? Symbol.iterator : undefined, + symToStringTag = Symbol ? Symbol.toStringTag : undefined; - var funcName = getFuncName(func), - data = funcName == 'wrapper' ? getData(func) : undefined; + var defineProperty = (function() { + try { + var func = getNative(Object, 'defineProperty'); + func({}, '', {}); + return func; + } catch (e) {} + }()); - if (data && isLaziable(data[0]) && - data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && - !data[4].length && data[9] == 1 - ) { - wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]); - } else { - wrapper = (func.length == 1 && isLaziable(func)) - ? wrapper[funcName]() - : wrapper.thru(func); - } - } - return function() { - var args = arguments, - value = args[0]; + /** Mocked built-ins. */ + var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout, + ctxNow = Date && Date.now !== root.Date.now && Date.now, + ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout; - if (wrapper && args.length == 1 && isArray(value)) { - return wrapper.plant(value).value(); - } - var index = 0, - result = length ? funcs[index].apply(this, args) : value; + /* Built-in method references for those with the same name as other `lodash` methods. */ + var nativeCeil = Math.ceil, + nativeFloor = Math.floor, + nativeGetSymbols = Object.getOwnPropertySymbols, + nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined, + nativeIsFinite = context.isFinite, + nativeJoin = arrayProto.join, + nativeKeys = overArg(Object.keys, Object), + nativeMax = Math.max, + nativeMin = Math.min, + nativeNow = Date.now, + nativeParseInt = context.parseInt, + nativeRandom = Math.random, + nativeReverse = arrayProto.reverse; - while (++index < length) { - result = funcs[index].call(this, result); - } - return result; - }; - }); - } + /* Built-in method references that are verified to be native. */ + var DataView = getNative(context, 'DataView'), + Map = getNative(context, 'Map'), + Promise = getNative(context, 'Promise'), + Set = getNative(context, 'Set'), + WeakMap = getNative(context, 'WeakMap'), + nativeCreate = getNative(Object, 'create'); - /** - * Creates a function that wraps `func` to invoke it with optional `this` - * binding of `thisArg`, partial application, and currying. - * - * @private - * @param {Function|string} func The function or method name to wrap. - * @param {number} bitmask The bitmask flags. See `createWrap` for more details. - * @param {*} [thisArg] The `this` binding of `func`. - * @param {Array} [partials] The arguments to prepend to those provided to - * the new function. - * @param {Array} [holders] The `partials` placeholder indexes. - * @param {Array} [partialsRight] The arguments to append to those provided - * to the new function. - * @param {Array} [holdersRight] The `partialsRight` placeholder indexes. - * @param {Array} [argPos] The argument positions of the new function. - * @param {number} [ary] The arity cap of `func`. - * @param {number} [arity] The arity of `func`. - * @returns {Function} Returns the new wrapped function. - */ - function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { - var isAry = bitmask & WRAP_ARY_FLAG, - isBind = bitmask & WRAP_BIND_FLAG, - isBindKey = bitmask & WRAP_BIND_KEY_FLAG, - isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG), - isFlip = bitmask & WRAP_FLIP_FLAG, - Ctor = isBindKey ? undefined : createCtor(func); + /** Used to store function metadata. */ + var metaMap = WeakMap && new WeakMap; - function wrapper() { - var length = arguments.length, - args = Array(length), - index = length; + /** Used to lookup unminified function names. */ + var realNames = {}; - while (index--) { - args[index] = arguments[index]; - } - if (isCurried) { - var placeholder = getHolder(wrapper), - holdersCount = countHolders(args, placeholder); - } - if (partials) { - args = composeArgs(args, partials, holders, isCurried); - } - if (partialsRight) { - args = composeArgsRight(args, partialsRight, holdersRight, isCurried); - } - length -= holdersCount; - if (isCurried && length < arity) { - var newHolders = replaceHolders(args, placeholder); - return createRecurry( - func, bitmask, createHybrid, wrapper.placeholder, thisArg, - args, newHolders, argPos, ary, arity - length - ); - } - var thisBinding = isBind ? thisArg : this, - fn = isBindKey ? thisBinding[func] : func; + /** Used to detect maps, sets, and weakmaps. */ + var dataViewCtorString = toSource(DataView), + mapCtorString = toSource(Map), + promiseCtorString = toSource(Promise), + setCtorString = toSource(Set), + weakMapCtorString = toSource(WeakMap); - length = args.length; - if (argPos) { - args = reorder(args, argPos); - } else if (isFlip && length > 1) { - args.reverse(); - } - if (isAry && ary < length) { - args.length = ary; - } - if (this && this !== root && this instanceof wrapper) { - fn = Ctor || createCtor(fn); - } - return fn.apply(thisBinding, args); - } - return wrapper; - } + /** Used to convert symbols to primitives and strings. */ + var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolValueOf = symbolProto ? symbolProto.valueOf : undefined, + symbolToString = symbolProto ? symbolProto.toString : undefined; - /** - * Creates a function like `_.invertBy`. - * - * @private - * @param {Function} setter The function to set accumulator values. - * @param {Function} toIteratee The function to resolve iteratees. - * @returns {Function} Returns the new inverter function. - */ - function createInverter(setter, toIteratee) { - return function(object, iteratee) { - return baseInverter(object, setter, toIteratee(iteratee), {}); - }; - } + /*------------------------------------------------------------------------*/ /** - * Creates a function that performs a mathematical operation on two values. + * Creates a `lodash` object which wraps `value` to enable implicit method + * chain sequences. Methods that operate on and return arrays, collections, + * and functions can be chained together. Methods that retrieve a single value + * or may return a primitive value will automatically end the chain sequence + * and return the unwrapped value. Otherwise, the value must be unwrapped + * with `_#value`. * - * @private - * @param {Function} operator The function to perform the operation. - * @param {number} [defaultValue] The value used for `undefined` arguments. - * @returns {Function} Returns the new mathematical operation function. - */ - function createMathOperation(operator, defaultValue) { - return function(value, other) { - var result; - if (value === undefined && other === undefined) { - return defaultValue; - } - if (value !== undefined) { - result = value; - } - if (other !== undefined) { - if (result === undefined) { - return other; - } - if (typeof value == 'string' || typeof other == 'string') { - value = baseToString(value); - other = baseToString(other); - } else { - value = baseToNumber(value); - other = baseToNumber(other); - } - result = operator(value, other); - } - return result; - }; - } - - /** - * Creates a function like `_.over`. + * Explicit chain sequences, which must be unwrapped with `_#value`, may be + * enabled using `_.chain`. * - * @private - * @param {Function} arrayFunc The function to iterate over iteratees. - * @returns {Function} Returns the new over function. - */ - function createOver(arrayFunc) { - return flatRest(function(iteratees) { - iteratees = arrayMap(iteratees, baseUnary(getIteratee())); - return baseRest(function(args) { - var thisArg = this; - return arrayFunc(iteratees, function(iteratee) { - return apply(iteratee, thisArg, args); - }); - }); - }); - } - - /** - * Creates the padding for `string` based on `length`. The `chars` string - * is truncated if the number of characters exceeds `length`. + * The execution of chained methods is lazy, that is, it's deferred until + * `_#value` is implicitly or explicitly called. * - * @private - * @param {number} length The padding length. - * @param {string} [chars=' '] The string used as padding. - * @returns {string} Returns the padding for `string`. - */ - function createPadding(length, chars) { - chars = chars === undefined ? ' ' : baseToString(chars); - - var charsLength = chars.length; - if (charsLength < 2) { - return charsLength ? baseRepeat(chars, length) : chars; - } - var result = baseRepeat(chars, nativeCeil(length / stringSize(chars))); - return hasUnicode(chars) - ? castSlice(stringToArray(result), 0, length).join('') - : result.slice(0, length); - } - - /** - * Creates a function that wraps `func` to invoke it with the `this` binding - * of `thisArg` and `partials` prepended to the arguments it receives. + * Lazy evaluation allows several methods to support shortcut fusion. + * Shortcut fusion is an optimization to merge iteratee calls; this avoids + * the creation of intermediate arrays and can greatly reduce the number of + * iteratee executions. Sections of a chain sequence qualify for shortcut + * fusion if the section is applied to an array and iteratees accept only + * one argument. The heuristic for whether a section qualifies for shortcut + * fusion is subject to change. * - * @private - * @param {Function} func The function to wrap. - * @param {number} bitmask The bitmask flags. See `createWrap` for more details. - * @param {*} thisArg The `this` binding of `func`. - * @param {Array} partials The arguments to prepend to those provided to - * the new function. - * @returns {Function} Returns the new wrapped function. + * Chaining is supported in custom builds as long as the `_#value` method is + * directly or indirectly included in the build. + * + * In addition to lodash methods, wrappers have `Array` and `String` methods. + * + * The wrapper `Array` methods are: + * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift` + * + * The wrapper `String` methods are: + * `replace` and `split` + * + * The wrapper methods that support shortcut fusion are: + * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`, + * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`, + * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray` + * + * The chainable wrapper methods are: + * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`, + * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`, + * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`, + * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`, + * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`, + * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`, + * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`, + * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`, + * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`, + * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`, + * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`, + * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`, + * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`, + * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`, + * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`, + * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`, + * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`, + * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`, + * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`, + * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`, + * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`, + * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`, + * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`, + * `zipObject`, `zipObjectDeep`, and `zipWith` + * + * The wrapper methods that are **not** chainable by default are: + * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`, + * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`, + * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`, + * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`, + * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`, + * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`, + * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`, + * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`, + * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`, + * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`, + * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`, + * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`, + * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`, + * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`, + * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`, + * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`, + * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`, + * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`, + * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`, + * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`, + * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`, + * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`, + * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`, + * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`, + * `upperFirst`, `value`, and `words` + * + * @name _ + * @constructor + * @category Seq + * @param {*} value The value to wrap in a `lodash` instance. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example + * + * function square(n) { + * return n * n; + * } + * + * var wrapped = _([1, 2, 3]); + * + * // Returns an unwrapped value. + * wrapped.reduce(_.add); + * // => 6 + * + * // Returns a wrapped value. + * var squares = wrapped.map(square); + * + * _.isArray(squares); + * // => false + * + * _.isArray(squares.value()); + * // => true */ - function createPartial(func, bitmask, thisArg, partials) { - var isBind = bitmask & WRAP_BIND_FLAG, - Ctor = createCtor(func); - - function wrapper() { - var argsIndex = -1, - argsLength = arguments.length, - leftIndex = -1, - leftLength = partials.length, - args = Array(leftLength + argsLength), - fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; - - while (++leftIndex < leftLength) { - args[leftIndex] = partials[leftIndex]; + function lodash(value) { + if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) { + if (value instanceof LodashWrapper) { + return value; } - while (argsLength--) { - args[leftIndex++] = arguments[++argsIndex]; + if (hasOwnProperty.call(value, '__wrapped__')) { + return wrapperClone(value); } - return apply(fn, isBind ? thisArg : this, args); } - return wrapper; + return new LodashWrapper(value); } /** - * Creates a `_.range` or `_.rangeRight` function. + * The base implementation of `_.create` without support for assigning + * properties to the created object. * * @private - * @param {boolean} [fromRight] Specify iterating from right to left. - * @returns {Function} Returns the new range function. + * @param {Object} proto The object to inherit from. + * @returns {Object} Returns the new object. */ - function createRange(fromRight) { - return function(start, end, step) { - if (step && typeof step != 'number' && isIterateeCall(start, end, step)) { - end = step = undefined; + var baseCreate = (function() { + function object() {} + return function(proto) { + if (!isObject(proto)) { + return {}; } - // Ensure the sign of `-0` is preserved. - start = toFinite(start); - if (end === undefined) { - end = start; - start = 0; - } else { - end = toFinite(end); + if (objectCreate) { + return objectCreate(proto); } - step = step === undefined ? (start < end ? 1 : -1) : toFinite(step); - return baseRange(start, end, step, fromRight); + object.prototype = proto; + var result = new object; + object.prototype = undefined; + return result; }; - } + }()); /** - * Creates a function that performs a relational operation on two values. + * The function whose prototype chain sequence wrappers inherit from. * * @private - * @param {Function} operator The function to perform the operation. - * @returns {Function} Returns the new relational operation function. */ - function createRelationalOperation(operator) { - return function(value, other) { - if (!(typeof value == 'string' && typeof other == 'string')) { - value = toNumber(value); - other = toNumber(other); - } - return operator(value, other); - }; + function baseLodash() { + // No operation performed. } /** - * Creates a function that wraps `func` to continue currying. + * The base constructor for creating `lodash` wrapper objects. * * @private - * @param {Function} func The function to wrap. - * @param {number} bitmask The bitmask flags. See `createWrap` for more details. - * @param {Function} wrapFunc The function to create the `func` wrapper. - * @param {*} placeholder The placeholder value. - * @param {*} [thisArg] The `this` binding of `func`. - * @param {Array} [partials] The arguments to prepend to those provided to - * the new function. - * @param {Array} [holders] The `partials` placeholder indexes. - * @param {Array} [argPos] The argument positions of the new function. - * @param {number} [ary] The arity cap of `func`. - * @param {number} [arity] The arity of `func`. - * @returns {Function} Returns the new wrapped function. + * @param {*} value The value to wrap. + * @param {boolean} [chainAll] Enable explicit method chain sequences. */ - function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { - var isCurry = bitmask & WRAP_CURRY_FLAG, - newHolders = isCurry ? holders : undefined, - newHoldersRight = isCurry ? undefined : holders, - newPartials = isCurry ? partials : undefined, - newPartialsRight = isCurry ? undefined : partials; - - bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG); - bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG); - - if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) { - bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG); - } - var newData = [ - func, bitmask, thisArg, newPartials, newHolders, newPartialsRight, - newHoldersRight, argPos, ary, arity - ]; - - var result = wrapFunc.apply(undefined, newData); - if (isLaziable(func)) { - setData(result, newData); - } - result.placeholder = placeholder; - return setWrapToString(result, func, bitmask); + function LodashWrapper(value, chainAll) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__chain__ = !!chainAll; + this.__index__ = 0; + this.__values__ = undefined; } /** - * Creates a function like `_.round`. + * By default, the template delimiters used by lodash are like those in + * embedded Ruby (ERB) as well as ES2015 template strings. Change the + * following template settings to use alternative delimiters. * - * @private - * @param {string} methodName The name of the `Math` method to use when rounding. - * @returns {Function} Returns the new round function. + * @static + * @memberOf _ + * @type {Object} */ - function createRound(methodName) { - var func = Math[methodName]; - return function(number, precision) { - number = toNumber(number); - precision = precision == null ? 0 : nativeMin(toInteger(precision), 292); - if (precision && nativeIsFinite(number)) { - // Shift with exponential notation to avoid floating-point issues. - // See [MDN](https://mdn.io/round#Examples) for more details. - var pair = (toString(number) + 'e').split('e'), - value = func(pair[0] + 'e' + (+pair[1] + precision)); + lodash.templateSettings = { - pair = (toString(value) + 'e').split('e'); - return +(pair[0] + 'e' + (+pair[1] - precision)); - } - return func(number); - }; - } + /** + * Used to detect `data` property values to be HTML-escaped. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'escape': reEscape, - /** - * Creates a set object of `values`. - * - * @private - * @param {Array} values The values to add to the set. - * @returns {Object} Returns the new set. - */ - var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) { - return new Set(values); - }; + /** + * Used to detect code to be evaluated. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'evaluate': reEvaluate, - /** - * Creates a `_.toPairs` or `_.toPairsIn` function. - * - * @private - * @param {Function} keysFunc The function to get the keys of a given object. - * @returns {Function} Returns the new pairs function. - */ - function createToPairs(keysFunc) { - return function(object) { - var tag = getTag(object); - if (tag == mapTag) { - return mapToArray(object); - } - if (tag == setTag) { - return setToPairs(object); - } - return baseToPairs(object, keysFunc(object)); - }; - } + /** + * Used to detect `data` property values to inject. + * + * @memberOf _.templateSettings + * @type {RegExp} + */ + 'interpolate': reInterpolate, - /** - * Creates a function that either curries or invokes `func` with optional - * `this` binding and partially applied arguments. - * - * @private - * @param {Function|string} func The function or method name to wrap. - * @param {number} bitmask The bitmask flags. - * 1 - `_.bind` - * 2 - `_.bindKey` - * 4 - `_.curry` or `_.curryRight` of a bound function - * 8 - `_.curry` - * 16 - `_.curryRight` - * 32 - `_.partial` - * 64 - `_.partialRight` - * 128 - `_.rearg` - * 256 - `_.ary` - * 512 - `_.flip` - * @param {*} [thisArg] The `this` binding of `func`. - * @param {Array} [partials] The arguments to be partially applied. - * @param {Array} [holders] The `partials` placeholder indexes. - * @param {Array} [argPos] The argument positions of the new function. - * @param {number} [ary] The arity cap of `func`. - * @param {number} [arity] The arity of `func`. - * @returns {Function} Returns the new wrapped function. - */ - function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { - var isBindKey = bitmask & WRAP_BIND_KEY_FLAG; - if (!isBindKey && typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - var length = partials ? partials.length : 0; - if (!length) { - bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG); - partials = holders = undefined; - } - ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0); - arity = arity === undefined ? arity : toInteger(arity); - length -= holders ? holders.length : 0; + /** + * Used to reference the data object in the template text. + * + * @memberOf _.templateSettings + * @type {string} + */ + 'variable': '', - if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) { - var partialsRight = partials, - holdersRight = holders; + /** + * Used to import variables into the compiled template. + * + * @memberOf _.templateSettings + * @type {Object} + */ + 'imports': { - partials = holders = undefined; + /** + * A reference to the `lodash` function. + * + * @memberOf _.templateSettings.imports + * @type {Function} + */ + '_': lodash } - var data = isBindKey ? undefined : getData(func); + }; - var newData = [ - func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, - argPos, ary, arity - ]; + // Ensure wrappers are instances of `baseLodash`. + lodash.prototype = baseLodash.prototype; + lodash.prototype.constructor = lodash; - if (data) { - mergeData(newData, data); - } - func = newData[0]; - bitmask = newData[1]; - thisArg = newData[2]; - partials = newData[3]; - holders = newData[4]; - arity = newData[9] = newData[9] === undefined - ? (isBindKey ? 0 : func.length) - : nativeMax(newData[9] - length, 0); + LodashWrapper.prototype = baseCreate(baseLodash.prototype); + LodashWrapper.prototype.constructor = LodashWrapper; - if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) { - bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG); - } - if (!bitmask || bitmask == WRAP_BIND_FLAG) { - var result = createBind(func, bitmask, thisArg); - } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) { - result = createCurry(func, bitmask, arity); - } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) { - result = createPartial(func, bitmask, thisArg, partials); - } else { - result = createHybrid.apply(undefined, newData); - } - var setter = data ? baseSetData : setData; - return setWrapToString(setter(result, newData), func, bitmask); - } + /*------------------------------------------------------------------------*/ /** - * Used by `_.defaults` to customize its `_.assignIn` use to assign properties - * of source objects to the destination object for all destination properties - * that resolve to `undefined`. + * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation. * * @private - * @param {*} objValue The destination value. - * @param {*} srcValue The source value. - * @param {string} key The key of the property to assign. - * @param {Object} object The parent object of `objValue`. - * @returns {*} Returns the value to assign. + * @constructor + * @param {*} value The value to wrap. */ - function customDefaultsAssignIn(objValue, srcValue, key, object) { - if (objValue === undefined || - (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) { - return srcValue; - } - return objValue; + function LazyWrapper(value) { + this.__wrapped__ = value; + this.__actions__ = []; + this.__dir__ = 1; + this.__filtered__ = false; + this.__iteratees__ = []; + this.__takeCount__ = MAX_ARRAY_LENGTH; + this.__views__ = []; } /** - * Used by `_.defaultsDeep` to customize its `_.merge` use to merge source - * objects into destination objects that are passed thru. + * Creates a clone of the lazy wrapper object. * * @private - * @param {*} objValue The destination value. - * @param {*} srcValue The source value. - * @param {string} key The key of the property to merge. - * @param {Object} object The parent object of `objValue`. - * @param {Object} source The parent object of `srcValue`. - * @param {Object} [stack] Tracks traversed source values and their merged - * counterparts. - * @returns {*} Returns the value to assign. + * @name clone + * @memberOf LazyWrapper + * @returns {Object} Returns the cloned `LazyWrapper` object. */ - function customDefaultsMerge(objValue, srcValue, key, object, source, stack) { - if (isObject(objValue) && isObject(srcValue)) { - // Recursively merge objects and arrays (susceptible to call stack limits). - stack.set(srcValue, objValue); - baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack); - stack['delete'](srcValue); - } - return objValue; + function lazyClone() { + var result = new LazyWrapper(this.__wrapped__); + result.__actions__ = copyArray(this.__actions__); + result.__dir__ = this.__dir__; + result.__filtered__ = this.__filtered__; + result.__iteratees__ = copyArray(this.__iteratees__); + result.__takeCount__ = this.__takeCount__; + result.__views__ = copyArray(this.__views__); + return result; } /** - * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain - * objects. + * Reverses the direction of lazy iteration. * * @private - * @param {*} value The value to inspect. - * @param {string} key The key of the property to inspect. - * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. + * @name reverse + * @memberOf LazyWrapper + * @returns {Object} Returns the new reversed `LazyWrapper` object. */ - function customOmitClone(value) { - return isPlainObject(value) ? undefined : value; + function lazyReverse() { + if (this.__filtered__) { + var result = new LazyWrapper(this); + result.__dir__ = -1; + result.__filtered__ = true; + } else { + result = this.clone(); + result.__dir__ *= -1; + } + return result; } /** - * A specialized version of `baseIsEqualDeep` for arrays with support for - * partial deep comparisons. + * Extracts the unwrapped value from its lazy wrapper. * * @private - * @param {Array} array The array to compare. - * @param {Array} other The other array to compare. - * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. - * @param {Function} customizer The function to customize comparisons. - * @param {Function} equalFunc The function to determine equivalents of values. - * @param {Object} stack Tracks traversed `array` and `other` objects. - * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. + * @name value + * @memberOf LazyWrapper + * @returns {*} Returns the unwrapped value. */ - function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { - var isPartial = bitmask & COMPARE_PARTIAL_FLAG, - arrLength = array.length, - othLength = other.length; + function lazyValue() { + var array = this.__wrapped__.value(), + dir = this.__dir__, + isArr = isArray(array), + isRight = dir < 0, + arrLength = isArr ? array.length : 0, + view = getView(0, arrLength, this.__views__), + start = view.start, + end = view.end, + length = end - start, + index = isRight ? end : (start - 1), + iteratees = this.__iteratees__, + iterLength = iteratees.length, + resIndex = 0, + takeCount = nativeMin(length, this.__takeCount__); - if (arrLength != othLength && !(isPartial && othLength > arrLength)) { - return false; - } - // Check that cyclic values are equal. - var arrStacked = stack.get(array); - var othStacked = stack.get(other); - if (arrStacked && othStacked) { - return arrStacked == other && othStacked == array; + if (!isArr || (!isRight && arrLength == length && takeCount == length)) { + return baseWrapperValue(array, this.__actions__); } - var index = -1, - result = true, - seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined; + var result = []; - stack.set(array, other); - stack.set(other, array); + outer: + while (length-- && resIndex < takeCount) { + index += dir; - // Ignore non-index properties. - while (++index < arrLength) { - var arrValue = array[index], - othValue = other[index]; + var iterIndex = -1, + value = array[index]; - if (customizer) { - var compared = isPartial - ? customizer(othValue, arrValue, index, other, array, stack) - : customizer(arrValue, othValue, index, array, other, stack); - } - if (compared !== undefined) { - if (compared) { - continue; - } - result = false; - break; - } - // Recursively compare arrays (susceptible to call stack limits). - if (seen) { - if (!arraySome(other, function(othValue, othIndex) { - if (!cacheHas(seen, othIndex) && - (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { - return seen.push(othIndex); - } - })) { - result = false; - break; + while (++iterIndex < iterLength) { + var data = iteratees[iterIndex], + iteratee = data.iteratee, + type = data.type, + computed = iteratee(value); + + if (type == LAZY_MAP_FLAG) { + value = computed; + } else if (!computed) { + if (type == LAZY_FILTER_FLAG) { + continue outer; + } else { + break outer; + } } - } else if (!( - arrValue === othValue || - equalFunc(arrValue, othValue, bitmask, customizer, stack) - )) { - result = false; - break; } + result[resIndex++] = value; } - stack['delete'](array); - stack['delete'](other); return result; } + // Ensure `LazyWrapper` is an instance of `baseLodash`. + LazyWrapper.prototype = baseCreate(baseLodash.prototype); + LazyWrapper.prototype.constructor = LazyWrapper; + + /*------------------------------------------------------------------------*/ + /** - * A specialized version of `baseIsEqualDeep` for comparing objects of - * the same `toStringTag`. - * - * **Note:** This function only supports comparing values with tags of - * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * Creates a hash object. * * @private - * @param {Object} object The object to compare. - * @param {Object} other The other object to compare. - * @param {string} tag The `toStringTag` of the objects to compare. - * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. - * @param {Function} customizer The function to customize comparisons. - * @param {Function} equalFunc The function to determine equivalents of values. - * @param {Object} stack Tracks traversed `object` and `other` objects. - * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + * @constructor + * @param {Array} [entries] The key-value pairs to cache. */ - function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { - switch (tag) { - case dataViewTag: - if ((object.byteLength != other.byteLength) || - (object.byteOffset != other.byteOffset)) { - return false; - } - object = object.buffer; - other = other.buffer; - - case arrayBufferTag: - if ((object.byteLength != other.byteLength) || - !equalFunc(new Uint8Array(object), new Uint8Array(other))) { - return false; - } - return true; - - case boolTag: - case dateTag: - case numberTag: - // Coerce booleans to `1` or `0` and dates to milliseconds. - // Invalid dates are coerced to `NaN`. - return eq(+object, +other); - - case errorTag: - return object.name == other.name && object.message == other.message; - - case regexpTag: - case stringTag: - // Coerce regexes to strings and treat strings, primitives and objects, - // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring - // for more details. - return object == (other + ''); - - case mapTag: - var convert = mapToArray; - - case setTag: - var isPartial = bitmask & COMPARE_PARTIAL_FLAG; - convert || (convert = setToArray); - - if (object.size != other.size && !isPartial) { - return false; - } - // Assume cyclic values are equal. - var stacked = stack.get(object); - if (stacked) { - return stacked == other; - } - bitmask |= COMPARE_UNORDERED_FLAG; - - // Recursively compare objects (susceptible to call stack limits). - stack.set(object, other); - var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack); - stack['delete'](object); - return result; + function Hash(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; - case symbolTag: - if (symbolValueOf) { - return symbolValueOf.call(object) == symbolValueOf.call(other); - } + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); } - return false; } /** - * A specialized version of `baseIsEqualDeep` for objects with support for - * partial deep comparisons. + * Removes all key-value entries from the hash. * * @private - * @param {Object} object The object to compare. - * @param {Object} other The other object to compare. - * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. - * @param {Function} customizer The function to customize comparisons. - * @param {Function} equalFunc The function to determine equivalents of values. - * @param {Object} stack Tracks traversed `object` and `other` objects. - * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + * @name clear + * @memberOf Hash */ - function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { - var isPartial = bitmask & COMPARE_PARTIAL_FLAG, - objProps = getAllKeys(object), - objLength = objProps.length, - othProps = getAllKeys(other), - othLength = othProps.length; - - if (objLength != othLength && !isPartial) { - return false; - } - var index = objLength; - while (index--) { - var key = objProps[index]; - if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) { - return false; - } - } - // Check that cyclic values are equal. - var objStacked = stack.get(object); - var othStacked = stack.get(other); - if (objStacked && othStacked) { - return objStacked == other && othStacked == object; - } - var result = true; - stack.set(object, other); - stack.set(other, object); - - var skipCtor = isPartial; - while (++index < objLength) { - key = objProps[index]; - var objValue = object[key], - othValue = other[key]; + function hashClear() { + this.__data__ = nativeCreate ? nativeCreate(null) : {}; + this.size = 0; + } - if (customizer) { - var compared = isPartial - ? customizer(othValue, objValue, key, other, object, stack) - : customizer(objValue, othValue, key, object, other, stack); - } - // Recursively compare objects (susceptible to call stack limits). - if (!(compared === undefined - ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) - : compared - )) { - result = false; - break; - } - skipCtor || (skipCtor = key == 'constructor'); - } - if (result && !skipCtor) { - var objCtor = object.constructor, - othCtor = other.constructor; + /** + * Removes `key` and its value from the hash. + * + * @private + * @name delete + * @memberOf Hash + * @param {Object} hash The hash to modify. + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ + function hashDelete(key) { + var result = this.has(key) && delete this.__data__[key]; + this.size -= result ? 1 : 0; + return result; + } - // Non `Object` object instances with different constructors are not equal. - if (objCtor != othCtor && - ('constructor' in object && 'constructor' in other) && - !(typeof objCtor == 'function' && objCtor instanceof objCtor && - typeof othCtor == 'function' && othCtor instanceof othCtor)) { - result = false; - } + /** + * Gets the hash value for `key`. + * + * @private + * @name get + * @memberOf Hash + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function hashGet(key) { + var data = this.__data__; + if (nativeCreate) { + var result = data[key]; + return result === HASH_UNDEFINED ? undefined : result; } - stack['delete'](object); - stack['delete'](other); - return result; + return hasOwnProperty.call(data, key) ? data[key] : undefined; } /** - * A specialized version of `baseRest` which flattens the rest array. + * Checks if a hash value for `key` exists. * * @private - * @param {Function} func The function to apply a rest parameter to. - * @returns {Function} Returns the new function. + * @name has + * @memberOf Hash + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ - function flatRest(func) { - return setToString(overRest(func, undefined, flatten), func + ''); + function hashHas(key) { + var data = this.__data__; + return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key); } /** - * Creates an array of own enumerable property names and symbols of `object`. + * Sets the hash `key` to `value`. * * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names and symbols. + * @name set + * @memberOf Hash + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the hash instance. */ - function getAllKeys(object) { - return baseGetAllKeys(object, keys, getSymbols); + function hashSet(key, value) { + var data = this.__data__; + this.size += this.has(key) ? 0 : 1; + data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value; + return this; } + // Add methods to `Hash`. + Hash.prototype.clear = hashClear; + Hash.prototype['delete'] = hashDelete; + Hash.prototype.get = hashGet; + Hash.prototype.has = hashHas; + Hash.prototype.set = hashSet; + + /*------------------------------------------------------------------------*/ + /** - * Creates an array of own and inherited enumerable property names and - * symbols of `object`. + * Creates an list cache object. * * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names and symbols. + * @constructor + * @param {Array} [entries] The key-value pairs to cache. */ - function getAllKeysIn(object) { - return baseGetAllKeys(object, keysIn, getSymbolsIn); + function ListCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } } /** - * Gets metadata for `func`. + * Removes all key-value entries from the list cache. * * @private - * @param {Function} func The function to query. - * @returns {*} Returns the metadata for `func`. + * @name clear + * @memberOf ListCache */ - var getData = !metaMap ? noop : function(func) { - return metaMap.get(func); - }; + function listCacheClear() { + this.__data__ = []; + this.size = 0; + } /** - * Gets the name of `func`. + * Removes `key` and its value from the list cache. * * @private - * @param {Function} func The function to query. - * @returns {string} Returns the function name. + * @name delete + * @memberOf ListCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ - function getFuncName(func) { - var result = (func.name + ''), - array = realNames[result], - length = hasOwnProperty.call(realNames, result) ? array.length : 0; + function listCacheDelete(key) { + var data = this.__data__, + index = assocIndexOf(data, key); - while (length--) { - var data = array[length], - otherFunc = data.func; - if (otherFunc == null || otherFunc == func) { - return data.name; - } + if (index < 0) { + return false; } - return result; + var lastIndex = data.length - 1; + if (index == lastIndex) { + data.pop(); + } else { + splice.call(data, index, 1); + } + --this.size; + return true; } /** - * Gets the argument placeholder value for `func`. + * Gets the list cache value for `key`. * * @private - * @param {Function} func The function to inspect. - * @returns {*} Returns the placeholder value. + * @name get + * @memberOf ListCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. */ - function getHolder(func) { - var object = hasOwnProperty.call(lodash, 'placeholder') ? lodash : func; - return object.placeholder; + function listCacheGet(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + return index < 0 ? undefined : data[index][1]; } /** - * Gets the appropriate "iteratee" function. If `_.iteratee` is customized, - * this function returns the custom method, otherwise it returns `baseIteratee`. - * If arguments are provided, the chosen function is invoked with them and - * its result is returned. + * Checks if a list cache value for `key` exists. * * @private - * @param {*} [value] The value to convert to an iteratee. - * @param {number} [arity] The arity of the created iteratee. - * @returns {Function} Returns the chosen function or its result. + * @name has + * @memberOf ListCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ - function getIteratee() { - var result = lodash.iteratee || iteratee; - result = result === iteratee ? baseIteratee : result; - return arguments.length ? result(arguments[0], arguments[1]) : result; + function listCacheHas(key) { + return assocIndexOf(this.__data__, key) > -1; } /** - * Gets the data for `map`. + * Sets the list cache `key` to `value`. * * @private - * @param {Object} map The map to query. - * @param {string} key The reference key. - * @returns {*} Returns the map data. + * @name set + * @memberOf ListCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the list cache instance. */ - function getMapData(map, key) { - var data = map.__data__; - return isKeyable(key) - ? data[typeof key == 'string' ? 'string' : 'hash'] - : data.map; + function listCacheSet(key, value) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + ++this.size; + data.push([key, value]); + } else { + data[index][1] = value; + } + return this; } + // Add methods to `ListCache`. + ListCache.prototype.clear = listCacheClear; + ListCache.prototype['delete'] = listCacheDelete; + ListCache.prototype.get = listCacheGet; + ListCache.prototype.has = listCacheHas; + ListCache.prototype.set = listCacheSet; + + /*------------------------------------------------------------------------*/ + /** - * Gets the property names, values, and compare flags of `object`. + * Creates a map cache object to store key-value pairs. * * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the match data of `object`. + * @constructor + * @param {Array} [entries] The key-value pairs to cache. */ - function getMatchData(object) { - var result = keys(object), - length = result.length; - - while (length--) { - var key = result[length], - value = object[key]; + function MapCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; - result[length] = [key, value, isStrictComparable(value)]; + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); } - return result; } /** - * Gets the native function at `key` of `object`. + * Removes all key-value entries from the map. * * @private - * @param {Object} object The object to query. - * @param {string} key The key of the method to get. - * @returns {*} Returns the function if it's native, else `undefined`. + * @name clear + * @memberOf MapCache */ - function getNative(object, key) { - var value = getValue(object, key); - return baseIsNative(value) ? value : undefined; + function mapCacheClear() { + this.size = 0; + this.__data__ = { + 'hash': new Hash, + 'map': new (Map || ListCache), + 'string': new Hash + }; } /** - * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. + * Removes `key` and its value from the map. * * @private - * @param {*} value The value to query. - * @returns {string} Returns the raw `toStringTag`. + * @name delete + * @memberOf MapCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ - function getRawTag(value) { - var isOwn = hasOwnProperty.call(value, symToStringTag), - tag = value[symToStringTag]; - - try { - value[symToStringTag] = undefined; - var unmasked = true; - } catch (e) {} - - var result = nativeObjectToString.call(value); - if (unmasked) { - if (isOwn) { - value[symToStringTag] = tag; - } else { - delete value[symToStringTag]; - } - } + function mapCacheDelete(key) { + var result = getMapData(this, key)['delete'](key); + this.size -= result ? 1 : 0; return result; } /** - * Creates an array of the own enumerable symbols of `object`. + * Gets the map value for `key`. * * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of symbols. + * @name get + * @memberOf MapCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. */ - var getSymbols = !nativeGetSymbols ? stubArray : function(object) { - if (object == null) { - return []; - } - object = Object(object); - return arrayFilter(nativeGetSymbols(object), function(symbol) { - return propertyIsEnumerable.call(object, symbol); - }); - }; + function mapCacheGet(key) { + return getMapData(this, key).get(key); + } /** - * Creates an array of the own and inherited enumerable symbols of `object`. + * Checks if a map value for `key` exists. * * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of symbols. + * @name has + * @memberOf MapCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. */ - var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) { - var result = []; - while (object) { - arrayPush(result, getSymbols(object)); - object = getPrototype(object); - } - return result; - }; + function mapCacheHas(key) { + return getMapData(this, key).has(key); + } /** - * Gets the `toStringTag` of `value`. + * Sets the map `key` to `value`. * * @private - * @param {*} value The value to query. - * @returns {string} Returns the `toStringTag`. + * @name set + * @memberOf MapCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the map cache instance. */ - var getTag = baseGetTag; - - // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. - if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) || - (Map && getTag(new Map) != mapTag) || - (Promise && getTag(Promise.resolve()) != promiseTag) || - (Set && getTag(new Set) != setTag) || - (WeakMap && getTag(new WeakMap) != weakMapTag)) { - getTag = function(value) { - var result = baseGetTag(value), - Ctor = result == objectTag ? value.constructor : undefined, - ctorString = Ctor ? toSource(Ctor) : ''; + function mapCacheSet(key, value) { + var data = getMapData(this, key), + size = data.size; - if (ctorString) { - switch (ctorString) { - case dataViewCtorString: return dataViewTag; - case mapCtorString: return mapTag; - case promiseCtorString: return promiseTag; - case setCtorString: return setTag; - case weakMapCtorString: return weakMapTag; - } - } - return result; - }; + data.set(key, value); + this.size += data.size == size ? 0 : 1; + return this; } + // Add methods to `MapCache`. + MapCache.prototype.clear = mapCacheClear; + MapCache.prototype['delete'] = mapCacheDelete; + MapCache.prototype.get = mapCacheGet; + MapCache.prototype.has = mapCacheHas; + MapCache.prototype.set = mapCacheSet; + + /*------------------------------------------------------------------------*/ + /** - * Gets the view, applying any `transforms` to the `start` and `end` positions. + * + * Creates an array cache object to store unique values. * * @private - * @param {number} start The start of the view. - * @param {number} end The end of the view. - * @param {Array} transforms The transformations to apply to the view. - * @returns {Object} Returns an object containing the `start` and `end` - * positions of the view. + * @constructor + * @param {Array} [values] The values to cache. */ - function getView(start, end, transforms) { + function SetCache(values) { var index = -1, - length = transforms.length; + length = values == null ? 0 : values.length; + this.__data__ = new MapCache; while (++index < length) { - var data = transforms[index], - size = data.size; - - switch (data.type) { - case 'drop': start += size; break; - case 'dropRight': end -= size; break; - case 'take': end = nativeMin(end, start + size); break; - case 'takeRight': start = nativeMax(start, end - size); break; - } + this.add(values[index]); } - return { 'start': start, 'end': end }; } /** - * Extracts wrapper details from the `source` body comment. + * Adds `value` to the array cache. * * @private - * @param {string} source The source to inspect. - * @returns {Array} Returns the wrapper details. + * @name add + * @memberOf SetCache + * @alias push + * @param {*} value The value to cache. + * @returns {Object} Returns the cache instance. */ - function getWrapDetails(source) { - var match = source.match(reWrapDetails); - return match ? match[1].split(reSplitDetails) : []; + function setCacheAdd(value) { + this.__data__.set(value, HASH_UNDEFINED); + return this; } /** - * Checks if `path` exists on `object`. + * Checks if `value` is in the array cache. * * @private - * @param {Object} object The object to query. - * @param {Array|string} path The path to check. - * @param {Function} hasFunc The function to check properties. - * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @name has + * @memberOf SetCache + * @param {*} value The value to search for. + * @returns {number} Returns `true` if `value` is found, else `false`. */ - function hasPath(object, path, hasFunc) { - path = castPath(path, object); + function setCacheHas(value) { + return this.__data__.has(value); + } - var index = -1, - length = path.length, - result = false; + // Add methods to `SetCache`. + SetCache.prototype.add = SetCache.prototype.push = setCacheAdd; + SetCache.prototype.has = setCacheHas; - while (++index < length) { - var key = toKey(path[index]); - if (!(result = object != null && hasFunc(object, key))) { - break; - } - object = object[key]; - } - if (result || ++index != length) { - return result; - } - length = object == null ? 0 : object.length; - return !!length && isLength(length) && isIndex(key, length) && - (isArray(object) || isArguments(object)); - } + /*------------------------------------------------------------------------*/ /** - * Initializes an array clone. + * Creates a stack cache object to store key-value pairs. * * @private - * @param {Array} array The array to clone. - * @returns {Array} Returns the initialized clone. + * @constructor + * @param {Array} [entries] The key-value pairs to cache. */ - function initCloneArray(array) { - var length = array.length, - result = new array.constructor(length); - - // Add properties assigned by `RegExp#exec`. - if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { - result.index = array.index; - result.input = array.input; - } - return result; + function Stack(entries) { + var data = this.__data__ = new ListCache(entries); + this.size = data.size; } /** - * Initializes an object clone. + * Removes all key-value entries from the stack. * * @private - * @param {Object} object The object to clone. - * @returns {Object} Returns the initialized clone. + * @name clear + * @memberOf Stack */ - function initCloneObject(object) { - return (typeof object.constructor == 'function' && !isPrototype(object)) - ? baseCreate(getPrototype(object)) - : {}; + function stackClear() { + this.__data__ = new ListCache; + this.size = 0; } /** - * Initializes an object clone based on its `toStringTag`. - * - * **Note:** This function only supports cloning values with tags of - * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`. + * Removes `key` and its value from the stack. * * @private - * @param {Object} object The object to clone. - * @param {string} tag The `toStringTag` of the object to clone. - * @param {boolean} [isDeep] Specify a deep clone. - * @returns {Object} Returns the initialized clone. + * @name delete + * @memberOf Stack + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ - function initCloneByTag(object, tag, isDeep) { - var Ctor = object.constructor; - switch (tag) { - case arrayBufferTag: - return cloneArrayBuffer(object); + function stackDelete(key) { + var data = this.__data__, + result = data['delete'](key); - case boolTag: - case dateTag: - return new Ctor(+object); + this.size = data.size; + return result; + } - case dataViewTag: - return cloneDataView(object, isDeep); + /** + * Gets the stack value for `key`. + * + * @private + * @name get + * @memberOf Stack + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ + function stackGet(key) { + return this.__data__.get(key); + } - case float32Tag: case float64Tag: - case int8Tag: case int16Tag: case int32Tag: - case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: - return cloneTypedArray(object, isDeep); + /** + * Checks if a stack value for `key` exists. + * + * @private + * @name has + * @memberOf Stack + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ + function stackHas(key) { + return this.__data__.has(key); + } - case mapTag: - return new Ctor; + /** + * Sets the stack `key` to `value`. + * + * @private + * @name set + * @memberOf Stack + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the stack cache instance. + */ + function stackSet(key, value) { + var data = this.__data__; + if (data instanceof ListCache) { + var pairs = data.__data__; + if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) { + pairs.push([key, value]); + this.size = ++data.size; + return this; + } + data = this.__data__ = new MapCache(pairs); + } + data.set(key, value); + this.size = data.size; + return this; + } - case numberTag: - case stringTag: - return new Ctor(object); + // Add methods to `Stack`. + Stack.prototype.clear = stackClear; + Stack.prototype['delete'] = stackDelete; + Stack.prototype.get = stackGet; + Stack.prototype.has = stackHas; + Stack.prototype.set = stackSet; - case regexpTag: - return cloneRegExp(object); + /*------------------------------------------------------------------------*/ - case setTag: - return new Ctor; + /** + * Creates an array of the enumerable property names of the array-like `value`. + * + * @private + * @param {*} value The value to query. + * @param {boolean} inherited Specify returning inherited property names. + * @returns {Array} Returns the array of property names. + */ + function arrayLikeKeys(value, inherited) { + var isArr = isArray(value), + isArg = !isArr && isArguments(value), + isBuff = !isArr && !isArg && isBuffer(value), + isType = !isArr && !isArg && !isBuff && isTypedArray(value), + skipIndexes = isArr || isArg || isBuff || isType, + result = skipIndexes ? baseTimes(value.length, String) : [], + length = result.length; - case symbolTag: - return cloneSymbol(object); + for (var key in value) { + if ((inherited || hasOwnProperty.call(value, key)) && + !(skipIndexes && ( + // Safari 9 has enumerable `arguments.length` in strict mode. + key == 'length' || + // Node.js 0.10 has enumerable non-index properties on buffers. + (isBuff && (key == 'offset' || key == 'parent')) || + // PhantomJS 2 has enumerable non-index properties on typed arrays. + (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) || + // Skip index properties. + isIndex(key, length) + ))) { + result.push(key); + } } + return result; } /** - * Inserts wrapper `details` in a comment at the top of the `source` body. + * A specialized version of `_.sample` for arrays. * * @private - * @param {string} source The source to modify. - * @returns {Array} details The details to insert. - * @returns {string} Returns the modified source. + * @param {Array} array The array to sample. + * @returns {*} Returns the random element. */ - function insertWrapDetails(source, details) { - var length = details.length; - if (!length) { - return source; - } - var lastIndex = length - 1; - details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex]; - details = details.join(length > 2 ? ', ' : ' '); - return source.replace(reWrapComment, '{\n/* [wrapped with ' + details + '] */\n'); + function arraySample(array) { + var length = array.length; + return length ? array[baseRandom(0, length - 1)] : undefined; } /** - * Checks if `value` is a flattenable `arguments` object or array. + * A specialized version of `_.sampleSize` for arrays. * * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. + * @param {Array} array The array to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. */ - function isFlattenable(value) { - return isArray(value) || isArguments(value) || - !!(spreadableSymbol && value && value[spreadableSymbol]); + function arraySampleSize(array, n) { + return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length)); } /** - * Checks if `value` is a valid array-like index. + * A specialized version of `_.shuffle` for arrays. * * @private - * @param {*} value The value to check. - * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. - * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. + * @param {Array} array The array to shuffle. + * @returns {Array} Returns the new shuffled array. */ - function isIndex(value, length) { - var type = typeof value; - length = length == null ? MAX_SAFE_INTEGER : length; - - return !!length && - (type == 'number' || - (type != 'symbol' && reIsUint.test(value))) && - (value > -1 && value % 1 == 0 && value < length); + function arrayShuffle(array) { + return shuffleSelf(copyArray(array)); } /** - * Checks if the given arguments are from an iteratee call. + * This function is like `assignValue` except that it doesn't assign + * `undefined` values. * * @private - * @param {*} value The potential iteratee value argument. - * @param {*} index The potential iteratee index or key argument. - * @param {*} object The potential iteratee object argument. - * @returns {boolean} Returns `true` if the arguments are from an iteratee call, - * else `false`. + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. */ - function isIterateeCall(value, index, object) { - if (!isObject(object)) { - return false; - } - var type = typeof index; - if (type == 'number' - ? (isArrayLike(object) && isIndex(index, object.length)) - : (type == 'string' && index in object) - ) { - return eq(object[index], value); + function assignMergeValue(object, key, value) { + if ((value !== undefined && !eq(object[key], value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); } - return false; } /** - * Checks if `value` is a property name and not a property path. + * Assigns `value` to `key` of `object` if the existing value is not equivalent + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. * * @private - * @param {*} value The value to check. - * @param {Object} [object] The object to query keys on. - * @returns {boolean} Returns `true` if `value` is a property name, else `false`. + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. */ - function isKey(value, object) { - if (isArray(value)) { - return false; - } - var type = typeof value; - if (type == 'number' || type == 'symbol' || type == 'boolean' || - value == null || isSymbol(value)) { - return true; + function assignValue(object, key, value) { + var objValue = object[key]; + if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); } - return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || - (object != null && value in Object(object)); } /** - * Checks if `value` is suitable for use as unique object key. + * Gets the index at which the `key` is found in `array` of key-value pairs. * * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is suitable, else `false`. + * @param {Array} array The array to inspect. + * @param {*} key The key to search for. + * @returns {number} Returns the index of the matched value, else `-1`. */ - function isKeyable(value) { - var type = typeof value; - return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') - ? (value !== '__proto__') - : (value === null); + function assocIndexOf(array, key) { + var length = array.length; + while (length--) { + if (eq(array[length][0], key)) { + return length; + } + } + return -1; } /** - * Checks if `func` has a lazy counterpart. + * Aggregates elements of `collection` on `accumulator` with keys transformed + * by `iteratee` and values set by `setter`. * * @private - * @param {Function} func The function to check. - * @returns {boolean} Returns `true` if `func` has a lazy counterpart, - * else `false`. + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. */ - function isLaziable(func) { - var funcName = getFuncName(func), - other = lodash[funcName]; - - if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { - return false; - } - if (func === other) { - return true; - } - var data = getData(other); - return !!data && func === data[0]; + function baseAggregator(collection, setter, iteratee, accumulator) { + baseEach(collection, function(value, key, collection) { + setter(accumulator, value, iteratee(value), collection); + }); + return accumulator; } /** - * Checks if `func` has its source masked. + * The base implementation of `_.assign` without support for multiple sources + * or `customizer` functions. * * @private - * @param {Function} func The function to check. - * @returns {boolean} Returns `true` if `func` is masked, else `false`. + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. */ - function isMasked(func) { - return !!maskSrcKey && (maskSrcKey in func); + function baseAssign(object, source) { + return object && copyObject(source, keys(source), object); } /** - * Checks if `func` is capable of being masked. + * The base implementation of `_.assignIn` without support for multiple sources + * or `customizer` functions. * * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `func` is maskable, else `false`. + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. */ - var isMaskable = coreJsData ? isFunction : stubFalse; + function baseAssignIn(object, source) { + return object && copyObject(source, keysIn(source), object); + } /** - * Checks if `value` is likely a prototype object. + * The base implementation of `assignValue` and `assignMergeValue` without + * value checks. * * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. */ - function isPrototype(value) { - var Ctor = value && value.constructor, - proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; - - return value === proto; + function baseAssignValue(object, key, value) { + if (key == '__proto__' && defineProperty) { + defineProperty(object, key, { + 'configurable': true, + 'enumerable': true, + 'value': value, + 'writable': true + }); + } else { + object[key] = value; + } } /** - * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. + * The base implementation of `_.at` without support for individual paths. * * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` if suitable for strict - * equality comparisons, else `false`. + * @param {Object} object The object to iterate over. + * @param {string[]} paths The property paths to pick. + * @returns {Array} Returns the picked elements. */ - function isStrictComparable(value) { - return value === value && !isObject(value); + function baseAt(object, paths) { + var index = -1, + length = paths.length, + result = Array(length), + skip = object == null; + + while (++index < length) { + result[index] = skip ? undefined : get(object, paths[index]); + } + return result; } /** - * A specialized version of `matchesProperty` for source values suitable - * for strict equality comparisons, i.e. `===`. + * The base implementation of `_.clamp` which doesn't coerce arguments. * * @private - * @param {string} key The key of the property to get. - * @param {*} srcValue The value to match. - * @returns {Function} Returns the new spec function. + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. */ - function matchesStrictComparable(key, srcValue) { - return function(object) { - if (object == null) { - return false; + function baseClamp(number, lower, upper) { + if (number === number) { + if (upper !== undefined) { + number = number <= upper ? number : upper; } - return object[key] === srcValue && - (srcValue !== undefined || (key in Object(object))); - }; + if (lower !== undefined) { + number = number >= lower ? number : lower; + } + } + return number; } /** - * A specialized version of `_.memoize` which clears the memoized function's - * cache when it exceeds `MAX_MEMOIZE_SIZE`. + * The base implementation of `_.clone` and `_.cloneDeep` which tracks + * traversed objects. * * @private - * @param {Function} func The function to have its output memoized. - * @returns {Function} Returns the new memoized function. + * @param {*} value The value to clone. + * @param {boolean} bitmask The bitmask flags. + * 1 - Deep clone + * 2 - Flatten inherited properties + * 4 - Clone symbols + * @param {Function} [customizer] The function to customize cloning. + * @param {string} [key] The key of `value`. + * @param {Object} [object] The parent object of `value`. + * @param {Object} [stack] Tracks traversed objects and their clone counterparts. + * @returns {*} Returns the cloned value. */ - function memoizeCapped(func) { - var result = memoize(func, function(key) { - if (cache.size === MAX_MEMOIZE_SIZE) { - cache.clear(); + function baseClone(value, bitmask, customizer, key, object, stack) { + var result, + isDeep = bitmask & CLONE_DEEP_FLAG, + isFlat = bitmask & CLONE_FLAT_FLAG, + isFull = bitmask & CLONE_SYMBOLS_FLAG; + + if (customizer) { + result = object ? customizer(value, key, object, stack) : customizer(value); + } + if (result !== undefined) { + return result; + } + if (!isObject(value)) { + return value; + } + var isArr = isArray(value); + if (isArr) { + result = initCloneArray(value); + if (!isDeep) { + return copyArray(value, result); } - return key; - }); + } else { + var tag = getTag(value), + isFunc = tag == funcTag || tag == genTag; - var cache = result.cache; + if (isBuffer(value)) { + return cloneBuffer(value, isDeep); + } + if (tag == objectTag || tag == argsTag || (isFunc && !object)) { + result = (isFlat || isFunc) ? {} : initCloneObject(value); + if (!isDeep) { + return isFlat + ? copySymbolsIn(value, baseAssignIn(result, value)) + : copySymbols(value, baseAssign(result, value)); + } + } else { + if (!cloneableTags[tag]) { + return object ? value : {}; + } + result = initCloneByTag(value, tag, isDeep); + } + } + // Check for circular references and return its corresponding clone. + stack || (stack = new Stack); + var stacked = stack.get(value); + if (stacked) { + return stacked; + } + stack.set(value, result); + + if (isSet(value)) { + value.forEach(function(subValue) { + result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack)); + }); + } else if (isMap(value)) { + value.forEach(function(subValue, key) { + result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + } + + var keysFunc = isFull + ? (isFlat ? getAllKeysIn : getAllKeys) + : (isFlat ? keysIn : keys); + + var props = isArr ? undefined : keysFunc(value); + arrayEach(props || value, function(subValue, key) { + if (props) { + key = subValue; + subValue = value[key]; + } + // Recursively populate clone (susceptible to call stack limits). + assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); return result; } /** - * Merges the function metadata of `source` into `data`. - * - * Merging metadata reduces the number of wrappers used to invoke a function. - * This is possible because methods like `_.bind`, `_.curry`, and `_.partial` - * may be applied regardless of execution order. Methods like `_.ary` and - * `_.rearg` modify function arguments, making the order in which they are - * executed important, preventing the merging of metadata. However, we make - * an exception for a safe combined case where curried functions have `_.ary` - * and or `_.rearg` applied. + * The base implementation of `_.conforms` which doesn't clone `source`. * * @private - * @param {Array} data The destination metadata. - * @param {Array} source The source metadata. - * @returns {Array} Returns `data`. + * @param {Object} source The object of property predicates to conform to. + * @returns {Function} Returns the new spec function. */ - function mergeData(data, source) { - var bitmask = data[1], - srcBitmask = source[1], - newBitmask = bitmask | srcBitmask, - isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG); - - var isCombo = - ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) || - ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) || - ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG)); + function baseConforms(source) { + var props = keys(source); + return function(object) { + return baseConformsTo(object, source, props); + }; + } - // Exit early if metadata can't be merged. - if (!(isCommon || isCombo)) { - return data; - } - // Use source `thisArg` if available. - if (srcBitmask & WRAP_BIND_FLAG) { - data[2] = source[2]; - // Set when currying a bound function. - newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG; + /** + * The base implementation of `_.conformsTo` which accepts `props` to check. + * + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property predicates to conform to. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. + */ + function baseConformsTo(object, source, props) { + var length = props.length; + if (object == null) { + return !length; } - // Compose partial arguments. - var value = source[3]; - if (value) { - var partials = data[3]; - data[3] = partials ? composeArgs(partials, value, source[4]) : value; - data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4]; + object = Object(object); + while (length--) { + var key = props[length], + predicate = source[key], + value = object[key]; + + if ((value === undefined && !(key in object)) || !predicate(value)) { + return false; + } } - // Compose partial right arguments. - value = source[5]; - if (value) { - partials = data[5]; - data[5] = partials ? composeArgsRight(partials, value, source[6]) : value; - data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6]; + return true; + } + + /** + * The base implementation of `_.delay` and `_.defer` which accepts `args` + * to provide to `func`. + * + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {Array} args The arguments to provide to `func`. + * @returns {number|Object} Returns the timer id or timeout object. + */ + function baseDelay(func, wait, args) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); } - // Use source `argPos` if available. - value = source[7]; - if (value) { - data[7] = value; + return setTimeout(function() { func.apply(undefined, args); }, wait); + } + + /** + * The base implementation of methods like `_.difference` without support + * for excluding multiple arrays or iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Array} values The values to exclude. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. + */ + function baseDifference(array, values, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + isCommon = true, + length = array.length, + result = [], + valuesLength = values.length; + + if (!length) { + return result; } - // Use source `ary` if it's smaller. - if (srcBitmask & WRAP_ARY_FLAG) { - data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]); + if (iteratee) { + values = arrayMap(values, baseUnary(iteratee)); } - // Use source `arity` if one is not provided. - if (data[9] == null) { - data[9] = source[9]; + if (comparator) { + includes = arrayIncludesWith; + isCommon = false; } - // Use source `func` and merge bitmasks. - data[0] = source[0]; - data[1] = newBitmask; + else if (values.length >= LARGE_ARRAY_SIZE) { + includes = cacheHas; + isCommon = false; + values = new SetCache(values); + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee == null ? value : iteratee(value); - return data; + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var valuesIndex = valuesLength; + while (valuesIndex--) { + if (values[valuesIndex] === computed) { + continue outer; + } + } + result.push(value); + } + else if (!includes(values, computed, comparator)) { + result.push(value); + } + } + return result; } /** - * This function is like - * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) - * except that it includes inherited enumerable properties. + * The base implementation of `_.forEach` without support for iteratee shorthands. * * @private - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. */ - function nativeKeysIn(object) { - var result = []; - if (object != null) { - for (var key in Object(object)) { - result.push(key); - } - } - return result; - } + var baseEach = createBaseEach(baseForOwn); /** - * Converts `value` to a string using `Object.prototype.toString`. + * The base implementation of `_.forEachRight` without support for iteratee shorthands. * * @private - * @param {*} value The value to convert. - * @returns {string} Returns the converted string. + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. */ - function objectToString(value) { - return nativeObjectToString.call(value); - } + var baseEachRight = createBaseEach(baseForOwnRight, true); /** - * A specialized version of `baseRest` which transforms the rest array. + * The base implementation of `_.every` without support for iteratee shorthands. * * @private - * @param {Function} func The function to apply a rest parameter to. - * @param {number} [start=func.length-1] The start position of the rest parameter. - * @param {Function} transform The rest array transform. - * @returns {Function} Returns the new function. + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false` */ - function overRest(func, start, transform) { - start = nativeMax(start === undefined ? (func.length - 1) : start, 0); - return function() { - var args = arguments, - index = -1, - length = nativeMax(args.length - start, 0), - array = Array(length); - - while (++index < length) { - array[index] = args[start + index]; - } - index = -1; - var otherArgs = Array(start + 1); - while (++index < start) { - otherArgs[index] = args[index]; - } - otherArgs[start] = transform(array); - return apply(func, this, otherArgs); - }; + function baseEvery(collection, predicate) { + var result = true; + baseEach(collection, function(value, index, collection) { + result = !!predicate(value, index, collection); + return result; + }); + return result; } /** - * Gets the parent value at `path` of `object`. + * The base implementation of methods like `_.max` and `_.min` which accepts a + * `comparator` to determine the extremum value. * * @private - * @param {Object} object The object to query. - * @param {Array} path The path to get the parent value of. - * @returns {*} Returns the parent value. + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The iteratee invoked per iteration. + * @param {Function} comparator The comparator used to compare values. + * @returns {*} Returns the extremum value. */ - function parent(object, path) { - return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); + function baseExtremum(array, iteratee, comparator) { + var index = -1, + length = array.length; + + while (++index < length) { + var value = array[index], + current = iteratee(value); + + if (current != null && (computed === undefined + ? (current === current && !isSymbol(current)) + : comparator(current, computed) + )) { + var computed = current, + result = value; + } + } + return result; } /** - * Reorder `array` according to the specified indexes where the element at - * the first index is assigned as the first element, the element at - * the second index is assigned as the second element, and so on. + * The base implementation of `_.fill` without an iteratee call guard. * * @private - * @param {Array} array The array to reorder. - * @param {Array} indexes The arranged array indexes. + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. * @returns {Array} Returns `array`. */ - function reorder(array, indexes) { - var arrLength = array.length, - length = nativeMin(indexes.length, arrLength), - oldArray = copyArray(array); + function baseFill(array, value, start, end) { + var length = array.length; - while (length--) { - var index = indexes[length]; - array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined; + start = toInteger(start); + if (start < 0) { + start = -start > length ? 0 : (length + start); + } + end = (end === undefined || end > length) ? length : toInteger(end); + if (end < 0) { + end += length; + } + end = start > end ? 0 : toLength(end); + while (start < end) { + array[start++] = value; } return array; } /** - * Gets the value at `key`, unless `key` is "__proto__" or "constructor". + * The base implementation of `_.filter` without support for iteratee shorthands. * * @private - * @param {Object} object The object to query. - * @param {string} key The key of the property to get. - * @returns {*} Returns the property value. + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. */ - function safeGet(object, key) { - if (key === 'constructor' && typeof object[key] === 'function') { - return; - } + function baseFilter(collection, predicate) { + var result = []; + baseEach(collection, function(value, index, collection) { + if (predicate(value, index, collection)) { + result.push(value); + } + }); + return result; + } - if (key == '__proto__') { - return; - } + /** + * The base implementation of `_.flatten` with support for restricting flattening. + * + * @private + * @param {Array} array The array to flatten. + * @param {number} depth The maximum recursion depth. + * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. + * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. + * @param {Array} [result=[]] The initial result value. + * @returns {Array} Returns the new flattened array. + */ + function baseFlatten(array, depth, predicate, isStrict, result) { + var index = -1, + length = array.length; - return object[key]; + predicate || (predicate = isFlattenable); + result || (result = []); + + while (++index < length) { + var value = array[index]; + if (depth > 0 && predicate(value)) { + if (depth > 1) { + // Recursively flatten arrays (susceptible to call stack limits). + baseFlatten(value, depth - 1, predicate, isStrict, result); + } else { + arrayPush(result, value); + } + } else if (!isStrict) { + result[result.length] = value; + } + } + return result; } /** - * Sets metadata for `func`. - * - * **Note:** If this function becomes hot, i.e. is invoked a lot in a short - * period of time, it will trip its breaker and transition to an identity - * function to avoid garbage collection pauses in V8. See - * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070) - * for more details. + * The base implementation of `baseForOwn` which iterates over `object` + * properties returned by `keysFunc` and invokes `iteratee` for each property. + * Iteratee functions may exit iteration early by explicitly returning `false`. * * @private - * @param {Function} func The function to associate metadata with. - * @param {*} data The metadata. - * @returns {Function} Returns `func`. + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. */ - var setData = shortOut(baseSetData); + var baseFor = createBaseFor(); /** - * A simple wrapper around the global [`setTimeout`](https://mdn.io/setTimeout). + * This function is like `baseFor` except that it iterates over properties + * in the opposite order. * * @private - * @param {Function} func The function to delay. - * @param {number} wait The number of milliseconds to delay invocation. - * @returns {number|Object} Returns the timer id or timeout object. + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. */ - var setTimeout = ctxSetTimeout || function(func, wait) { - return root.setTimeout(func, wait); - }; + var baseForRight = createBaseFor(true); /** - * Sets the `toString` method of `func` to return `string`. + * The base implementation of `_.forOwn` without support for iteratee shorthands. * * @private - * @param {Function} func The function to modify. - * @param {Function} string The `toString` result. - * @returns {Function} Returns `func`. + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. */ - var setToString = shortOut(baseSetToString); + function baseForOwn(object, iteratee) { + return object && baseFor(object, iteratee, keys); + } /** - * Sets the `toString` method of `wrapper` to mimic the source of `reference` - * with wrapper details in a comment at the top of the source body. + * The base implementation of `_.forOwnRight` without support for iteratee shorthands. * * @private - * @param {Function} wrapper The function to modify. - * @param {Function} reference The reference function. - * @param {number} bitmask The bitmask flags. See `createWrap` for more details. - * @returns {Function} Returns `wrapper`. + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. */ - function setWrapToString(wrapper, reference, bitmask) { - var source = (reference + ''); - return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask))); + function baseForOwnRight(object, iteratee) { + return object && baseForRight(object, iteratee, keys); } /** - * Creates a function that'll short out and invoke `identity` instead - * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` - * milliseconds. + * The base implementation of `_.functions` which creates an array of + * `object` function property names filtered from `props`. * * @private - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new shortable function. + * @param {Object} object The object to inspect. + * @param {Array} props The property names to filter. + * @returns {Array} Returns the function names. */ - function shortOut(func) { - var count = 0, - lastCalled = 0; - - return function() { - var stamp = nativeNow(), - remaining = HOT_SPAN - (stamp - lastCalled); - - lastCalled = stamp; - if (remaining > 0) { - if (++count >= HOT_COUNT) { - return arguments[0]; - } - } else { - count = 0; - } - return func.apply(undefined, arguments); - }; + function baseFunctions(object, props) { + return arrayFilter(props, function(key) { + return isFunction(object[key]); + }); } /** - * A specialized version of `_.shuffle` which mutates and sets the size of `array`. + * The base implementation of `_.get` without support for default values. * * @private - * @param {Array} array The array to shuffle. - * @param {number} [size=array.length] The size of `array`. - * @returns {Array} Returns `array`. + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @returns {*} Returns the resolved value. */ - function shuffleSelf(array, size) { - var index = -1, - length = array.length, - lastIndex = length - 1; + function baseGet(object, path) { + path = castPath(path, object); - size = size === undefined ? length : size; - while (++index < size) { - var rand = baseRandom(index, lastIndex), - value = array[rand]; + var index = 0, + length = path.length; - array[rand] = array[index]; - array[index] = value; + while (object != null && index < length) { + object = object[toKey(path[index++])]; } - array.length = size; - return array; + return (index && index == length) ? object : undefined; } /** - * Converts `string` to a property path array. + * The base implementation of `getAllKeys` and `getAllKeysIn` which uses + * `keysFunc` and `symbolsFunc` to get the enumerable property names and + * symbols of `object`. * * @private - * @param {string} string The string to convert. - * @returns {Array} Returns the property path array. + * @param {Object} object The object to query. + * @param {Function} keysFunc The function to get the keys of `object`. + * @param {Function} symbolsFunc The function to get the symbols of `object`. + * @returns {Array} Returns the array of property names and symbols. */ - var stringToPath = memoizeCapped(function(string) { - var result = []; - if (string.charCodeAt(0) === 46 /* . */) { - result.push(''); - } - string.replace(rePropName, function(match, number, quote, subString) { - result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); - }); - return result; - }); + function baseGetAllKeys(object, keysFunc, symbolsFunc) { + var result = keysFunc(object); + return isArray(object) ? result : arrayPush(result, symbolsFunc(object)); + } /** - * Converts `value` to a string key if it's not a string or symbol. + * The base implementation of `getTag` without fallbacks for buggy environments. * * @private - * @param {*} value The value to inspect. - * @returns {string|symbol} Returns the key. + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. */ - function toKey(value) { - if (typeof value == 'string' || isSymbol(value)) { - return value; + function baseGetTag(value) { + if (value == null) { + return value === undefined ? undefinedTag : nullTag; } - var result = (value + ''); - return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; + return (symToStringTag && symToStringTag in Object(value)) + ? getRawTag(value) + : objectToString(value); } /** - * Converts `func` to its source code. + * The base implementation of `_.gt` which doesn't coerce arguments. * * @private - * @param {Function} func The function to convert. - * @returns {string} Returns the source code. + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. */ - function toSource(func) { - if (func != null) { - try { - return funcToString.call(func); - } catch (e) {} - try { - return (func + ''); - } catch (e) {} - } - return ''; + function baseGt(value, other) { + return value > other; } /** - * Updates wrapper `details` based on `bitmask` flags. + * The base implementation of `_.has` without support for deep paths. * * @private - * @returns {Array} details The details to modify. - * @param {number} bitmask The bitmask flags. See `createWrap` for more details. - * @returns {Array} Returns `details`. + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. */ - function updateWrapDetails(details, bitmask) { - arrayEach(wrapFlags, function(pair) { - var value = '_.' + pair[0]; - if ((bitmask & pair[1]) && !arrayIncludes(details, value)) { - details.push(value); - } - }); - return details.sort(); + function baseHas(object, key) { + return object != null && hasOwnProperty.call(object, key); } /** - * Creates a clone of `wrapper`. + * The base implementation of `_.hasIn` without support for deep paths. * * @private - * @param {Object} wrapper The wrapper to clone. - * @returns {Object} Returns the cloned wrapper. + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. */ - function wrapperClone(wrapper) { - if (wrapper instanceof LazyWrapper) { - return wrapper.clone(); - } - var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); - result.__actions__ = copyArray(wrapper.__actions__); - result.__index__ = wrapper.__index__; - result.__values__ = wrapper.__values__; - return result; + function baseHasIn(object, key) { + return object != null && key in Object(object); } - /*------------------------------------------------------------------------*/ - /** - * Creates an array of elements split into groups the length of `size`. - * If `array` can't be split evenly, the final chunk will be the remaining - * elements. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array - * @param {Array} array The array to process. - * @param {number} [size=1] The length of each chunk - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Array} Returns the new array of chunks. - * @example - * - * _.chunk(['a', 'b', 'c', 'd'], 2); - * // => [['a', 'b'], ['c', 'd']] + * The base implementation of `_.inRange` which doesn't coerce arguments. * - * _.chunk(['a', 'b', 'c', 'd'], 3); - * // => [['a', 'b', 'c'], ['d']] + * @private + * @param {number} number The number to check. + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. */ - function chunk(array, size, guard) { - if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) { - size = 1; - } else { - size = nativeMax(toInteger(size), 0); - } - var length = array == null ? 0 : array.length; - if (!length || size < 1) { - return []; - } - var index = 0, - resIndex = 0, - result = Array(nativeCeil(length / size)); - - while (index < length) { - result[resIndex++] = baseSlice(array, index, (index += size)); - } - return result; + function baseInRange(number, start, end) { + return number >= nativeMin(start, end) && number < nativeMax(start, end); } /** - * Creates an array with all falsey values removed. The values `false`, `null`, - * `0`, `""`, `undefined`, and `NaN` are falsey. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to compact. - * @returns {Array} Returns the new array of filtered values. - * @example + * The base implementation of methods like `_.intersection`, without support + * for iteratee shorthands, that accepts an array of arrays to inspect. * - * _.compact([0, 1, false, 2, '', 3]); - * // => [1, 2, 3] + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of shared values. */ - function compact(array) { - var index = -1, - length = array == null ? 0 : array.length, - resIndex = 0, + function baseIntersection(arrays, iteratee, comparator) { + var includes = comparator ? arrayIncludesWith : arrayIncludes, + length = arrays[0].length, + othLength = arrays.length, + othIndex = othLength, + caches = Array(othLength), + maxLength = Infinity, result = []; - while (++index < length) { - var value = array[index]; - if (value) { - result[resIndex++] = value; + while (othIndex--) { + var array = arrays[othIndex]; + if (othIndex && iteratee) { + array = arrayMap(array, baseUnary(iteratee)); } + maxLength = nativeMin(array.length, maxLength); + caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120)) + ? new SetCache(othIndex && array) + : undefined; } - return result; - } + array = arrays[0]; - /** - * Creates a new array concatenating `array` with any additional arrays - * and/or values. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to concatenate. - * @param {...*} [values] The values to concatenate. - * @returns {Array} Returns the new concatenated array. - * @example - * - * var array = [1]; - * var other = _.concat(array, 2, [3], [[4]]); - * - * console.log(other); - * // => [1, 2, 3, [4]] - * - * console.log(array); - * // => [1] - */ - function concat() { - var length = arguments.length; - if (!length) { - return []; - } - var args = Array(length - 1), - array = arguments[0], - index = length; + var index = -1, + seen = caches[0]; - while (index--) { - args[index - 1] = arguments[index]; + outer: + while (++index < length && result.length < maxLength) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (!(seen + ? cacheHas(seen, computed) + : includes(result, computed, comparator) + )) { + othIndex = othLength; + while (--othIndex) { + var cache = caches[othIndex]; + if (!(cache + ? cacheHas(cache, computed) + : includes(arrays[othIndex], computed, comparator)) + ) { + continue outer; + } + } + if (seen) { + seen.push(computed); + } + result.push(value); + } } - return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1)); + return result; } /** - * Creates an array of `array` values not included in the other given arrays - * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. The order and references of result values are - * determined by the first array. - * - * **Note:** Unlike `_.pullAll`, this method returns a new array. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {...Array} [values] The values to exclude. - * @returns {Array} Returns the new array of filtered values. - * @see _.without, _.xor - * @example + * The base implementation of `_.invert` and `_.invertBy` which inverts + * `object` with values transformed by `iteratee` and set by `setter`. * - * _.difference([2, 1], [2, 3]); - * // => [1] + * @private + * @param {Object} object The object to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform values. + * @param {Object} accumulator The initial inverted object. + * @returns {Function} Returns `accumulator`. */ - var difference = baseRest(function(array, values) { - return isArrayLikeObject(array) - ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true)) - : []; - }); + function baseInverter(object, setter, iteratee, accumulator) { + baseForOwn(object, function(value, key, object) { + setter(accumulator, iteratee(value), key, object); + }); + return accumulator; + } /** - * This method is like `_.difference` except that it accepts `iteratee` which - * is invoked for each element of `array` and `values` to generate the criterion - * by which they're compared. The order and references of result values are - * determined by the first array. The iteratee is invoked with one argument: - * (value). - * - * **Note:** Unlike `_.pullAllBy`, this method returns a new array. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {...Array} [values] The values to exclude. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns the new array of filtered values. - * @example - * - * _.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor); - * // => [1.2] + * The base implementation of `_.invoke` without support for individual + * method arguments. * - * // The `_.property` iteratee shorthand. - * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x'); - * // => [{ 'x': 2 }] + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {Array} args The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. */ - var differenceBy = baseRest(function(array, values) { - var iteratee = last(values); - if (isArrayLikeObject(iteratee)) { - iteratee = undefined; - } - return isArrayLikeObject(array) - ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)) - : []; - }); + function baseInvoke(object, path, args) { + path = castPath(path, object); + object = parent(object, path); + var func = object == null ? object : object[toKey(last(path))]; + return func == null ? undefined : apply(func, object, args); + } /** - * This method is like `_.difference` except that it accepts `comparator` - * which is invoked to compare elements of `array` to `values`. The order and - * references of result values are determined by the first array. The comparator - * is invoked with two arguments: (arrVal, othVal). - * - * **Note:** Unlike `_.pullAllWith`, this method returns a new array. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {...Array} [values] The values to exclude. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of filtered values. - * @example - * - * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * The base implementation of `_.isArguments`. * - * _.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual); - * // => [{ 'x': 2, 'y': 1 }] + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, */ - var differenceWith = baseRest(function(array, values) { - var comparator = last(values); - if (isArrayLikeObject(comparator)) { - comparator = undefined; - } - return isArrayLikeObject(array) - ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), undefined, comparator) - : []; - }); + function baseIsArguments(value) { + return isObjectLike(value) && baseGetTag(value) == argsTag; + } /** - * Creates a slice of `array` with `n` elements dropped from the beginning. - * - * @static - * @memberOf _ - * @since 0.5.0 - * @category Array - * @param {Array} array The array to query. - * @param {number} [n=1] The number of elements to drop. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Array} Returns the slice of `array`. - * @example - * - * _.drop([1, 2, 3]); - * // => [2, 3] - * - * _.drop([1, 2, 3], 2); - * // => [3] - * - * _.drop([1, 2, 3], 5); - * // => [] + * The base implementation of `_.isArrayBuffer` without Node.js optimizations. * - * _.drop([1, 2, 3], 0); - * // => [1, 2, 3] + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. */ - function drop(array, n, guard) { - var length = array == null ? 0 : array.length; - if (!length) { - return []; - } - n = (guard || n === undefined) ? 1 : toInteger(n); - return baseSlice(array, n < 0 ? 0 : n, length); + function baseIsArrayBuffer(value) { + return isObjectLike(value) && baseGetTag(value) == arrayBufferTag; } /** - * Creates a slice of `array` with `n` elements dropped from the end. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array - * @param {Array} array The array to query. - * @param {number} [n=1] The number of elements to drop. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Array} Returns the slice of `array`. - * @example - * - * _.dropRight([1, 2, 3]); - * // => [1, 2] - * - * _.dropRight([1, 2, 3], 2); - * // => [1] - * - * _.dropRight([1, 2, 3], 5); - * // => [] + * The base implementation of `_.isDate` without Node.js optimizations. * - * _.dropRight([1, 2, 3], 0); - * // => [1, 2, 3] + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. */ - function dropRight(array, n, guard) { - var length = array == null ? 0 : array.length; - if (!length) { - return []; - } - n = (guard || n === undefined) ? 1 : toInteger(n); - n = length - n; - return baseSlice(array, 0, n < 0 ? 0 : n); + function baseIsDate(value) { + return isObjectLike(value) && baseGetTag(value) == dateTag; } /** - * Creates a slice of `array` excluding elements dropped from the end. - * Elements are dropped until `predicate` returns falsey. The predicate is - * invoked with three arguments: (value, index, array). - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array - * @param {Array} array The array to query. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {Array} Returns the slice of `array`. - * @example - * - * var users = [ - * { 'user': 'barney', 'active': true }, - * { 'user': 'fred', 'active': false }, - * { 'user': 'pebbles', 'active': false } - * ]; - * - * _.dropRightWhile(users, function(o) { return !o.active; }); - * // => objects for ['barney'] - * - * // The `_.matches` iteratee shorthand. - * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false }); - * // => objects for ['barney', 'fred'] - * - * // The `_.matchesProperty` iteratee shorthand. - * _.dropRightWhile(users, ['active', false]); - * // => objects for ['barney'] + * The base implementation of `_.isEqual` which supports partial comparisons + * and tracks traversed objects. * - * // The `_.property` iteratee shorthand. - * _.dropRightWhile(users, 'active'); - * // => objects for ['barney', 'fred', 'pebbles'] + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {boolean} bitmask The bitmask flags. + * 1 - Unordered comparison + * 2 - Partial comparison + * @param {Function} [customizer] The function to customize comparisons. + * @param {Object} [stack] Tracks traversed `value` and `other` objects. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. */ - function dropRightWhile(array, predicate) { - return (array && array.length) - ? baseWhile(array, getIteratee(predicate, 3), true, true) - : []; + function baseIsEqual(value, other, bitmask, customizer, stack) { + if (value === other) { + return true; + } + if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { + return value !== value && other !== other; + } + return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); } /** - * Creates a slice of `array` excluding elements dropped from the beginning. - * Elements are dropped until `predicate` returns falsey. The predicate is - * invoked with three arguments: (value, index, array). - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array - * @param {Array} array The array to query. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {Array} Returns the slice of `array`. - * @example - * - * var users = [ - * { 'user': 'barney', 'active': false }, - * { 'user': 'fred', 'active': false }, - * { 'user': 'pebbles', 'active': true } - * ]; - * - * _.dropWhile(users, function(o) { return !o.active; }); - * // => objects for ['pebbles'] - * - * // The `_.matches` iteratee shorthand. - * _.dropWhile(users, { 'user': 'barney', 'active': false }); - * // => objects for ['fred', 'pebbles'] - * - * // The `_.matchesProperty` iteratee shorthand. - * _.dropWhile(users, ['active', false]); - * // => objects for ['pebbles'] + * A specialized version of `baseIsEqual` for arrays and objects which performs + * deep comparisons and tracks traversed objects enabling objects with circular + * references to be compared. * - * // The `_.property` iteratee shorthand. - * _.dropWhile(users, 'active'); - * // => objects for ['barney', 'fred', 'pebbles'] + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} [stack] Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. */ - function dropWhile(array, predicate) { - return (array && array.length) - ? baseWhile(array, getIteratee(predicate, 3), true) - : []; + function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { + var objIsArr = isArray(object), + othIsArr = isArray(other), + objTag = objIsArr ? arrayTag : getTag(object), + othTag = othIsArr ? arrayTag : getTag(other); + + objTag = objTag == argsTag ? objectTag : objTag; + othTag = othTag == argsTag ? objectTag : othTag; + + var objIsObj = objTag == objectTag, + othIsObj = othTag == objectTag, + isSameTag = objTag == othTag; + + if (isSameTag && isBuffer(object)) { + if (!isBuffer(other)) { + return false; + } + objIsArr = true; + objIsObj = false; + } + if (isSameTag && !objIsObj) { + stack || (stack = new Stack); + return (objIsArr || isTypedArray(object)) + ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) + : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); + } + if (!(bitmask & COMPARE_PARTIAL_FLAG)) { + var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), + othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); + + if (objIsWrapped || othIsWrapped) { + var objUnwrapped = objIsWrapped ? object.value() : object, + othUnwrapped = othIsWrapped ? other.value() : other; + + stack || (stack = new Stack); + return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); + } + } + if (!isSameTag) { + return false; + } + stack || (stack = new Stack); + return equalObjects(object, other, bitmask, customizer, equalFunc, stack); } /** - * Fills elements of `array` with `value` from `start` up to, but not - * including, `end`. - * - * **Note:** This method mutates `array`. - * - * @static - * @memberOf _ - * @since 3.2.0 - * @category Array - * @param {Array} array The array to fill. - * @param {*} value The value to fill `array` with. - * @param {number} [start=0] The start position. - * @param {number} [end=array.length] The end position. - * @returns {Array} Returns `array`. - * @example - * - * var array = [1, 2, 3]; - * - * _.fill(array, 'a'); - * console.log(array); - * // => ['a', 'a', 'a'] - * - * _.fill(Array(3), 2); - * // => [2, 2, 2] + * The base implementation of `_.isMap` without Node.js optimizations. * - * _.fill([4, 6, 8, 10], '*', 1, 3); - * // => [4, '*', '*', 10] + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. */ - function fill(array, value, start, end) { - var length = array == null ? 0 : array.length; - if (!length) { - return []; - } - if (start && typeof start != 'number' && isIterateeCall(array, value, start)) { - start = 0; - end = length; - } - return baseFill(array, value, start, end); + function baseIsMap(value) { + return isObjectLike(value) && getTag(value) == mapTag; } /** - * This method is like `_.find` except that it returns the index of the first - * element `predicate` returns truthy for instead of the element itself. - * - * @static - * @memberOf _ - * @since 1.1.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param {number} [fromIndex=0] The index to search from. - * @returns {number} Returns the index of the found element, else `-1`. - * @example - * - * var users = [ - * { 'user': 'barney', 'active': false }, - * { 'user': 'fred', 'active': false }, - * { 'user': 'pebbles', 'active': true } - * ]; - * - * _.findIndex(users, function(o) { return o.user == 'barney'; }); - * // => 0 - * - * // The `_.matches` iteratee shorthand. - * _.findIndex(users, { 'user': 'fred', 'active': false }); - * // => 1 - * - * // The `_.matchesProperty` iteratee shorthand. - * _.findIndex(users, ['active', false]); - * // => 0 + * The base implementation of `_.isMatch` without support for iteratee shorthands. * - * // The `_.property` iteratee shorthand. - * _.findIndex(users, 'active'); - * // => 2 + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Array} matchData The property names, values, and compare flags to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. */ - function findIndex(array, predicate, fromIndex) { - var length = array == null ? 0 : array.length; - if (!length) { - return -1; + function baseIsMatch(object, source, matchData, customizer) { + var index = matchData.length, + length = index, + noCustomizer = !customizer; + + if (object == null) { + return !length; } - var index = fromIndex == null ? 0 : toInteger(fromIndex); - if (index < 0) { - index = nativeMax(length + index, 0); + object = Object(object); + while (index--) { + var data = matchData[index]; + if ((noCustomizer && data[2]) + ? data[1] !== object[data[0]] + : !(data[0] in object) + ) { + return false; + } + } + while (++index < length) { + data = matchData[index]; + var key = data[0], + objValue = object[key], + srcValue = data[1]; + + if (noCustomizer && data[2]) { + if (objValue === undefined && !(key in object)) { + return false; + } + } else { + var stack = new Stack; + if (customizer) { + var result = customizer(objValue, srcValue, key, object, source, stack); + } + if (!(result === undefined + ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) + : result + )) { + return false; + } + } } - return baseFindIndex(array, getIteratee(predicate, 3), index); + return true; } /** - * This method is like `_.findIndex` except that it iterates over elements - * of `collection` from right to left. - * - * @static - * @memberOf _ - * @since 2.0.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param {number} [fromIndex=array.length-1] The index to search from. - * @returns {number} Returns the index of the found element, else `-1`. - * @example - * - * var users = [ - * { 'user': 'barney', 'active': true }, - * { 'user': 'fred', 'active': false }, - * { 'user': 'pebbles', 'active': false } - * ]; - * - * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; }); - * // => 2 - * - * // The `_.matches` iteratee shorthand. - * _.findLastIndex(users, { 'user': 'barney', 'active': true }); - * // => 0 - * - * // The `_.matchesProperty` iteratee shorthand. - * _.findLastIndex(users, ['active', false]); - * // => 2 + * The base implementation of `_.isNative` without bad shim checks. * - * // The `_.property` iteratee shorthand. - * _.findLastIndex(users, 'active'); - * // => 0 + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. */ - function findLastIndex(array, predicate, fromIndex) { - var length = array == null ? 0 : array.length; - if (!length) { - return -1; - } - var index = length - 1; - if (fromIndex !== undefined) { - index = toInteger(fromIndex); - index = fromIndex < 0 - ? nativeMax(length + index, 0) - : nativeMin(index, length - 1); + function baseIsNative(value) { + if (!isObject(value) || isMasked(value)) { + return false; } - return baseFindIndex(array, getIteratee(predicate, 3), index, true); + var pattern = isFunction(value) ? reIsNative : reIsHostCtor; + return pattern.test(toSource(value)); } /** - * Flattens `array` a single level deep. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to flatten. - * @returns {Array} Returns the new flattened array. - * @example + * The base implementation of `_.isRegExp` without Node.js optimizations. * - * _.flatten([1, [2, [3, [4]], 5]]); - * // => [1, 2, [3, [4]], 5] + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. */ - function flatten(array) { - var length = array == null ? 0 : array.length; - return length ? baseFlatten(array, 1) : []; + function baseIsRegExp(value) { + return isObjectLike(value) && baseGetTag(value) == regexpTag; } /** - * Recursively flattens `array`. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array - * @param {Array} array The array to flatten. - * @returns {Array} Returns the new flattened array. - * @example + * The base implementation of `_.isSet` without Node.js optimizations. * - * _.flattenDeep([1, [2, [3, [4]], 5]]); - * // => [1, 2, 3, 4, 5] + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. */ - function flattenDeep(array) { - var length = array == null ? 0 : array.length; - return length ? baseFlatten(array, INFINITY) : []; + function baseIsSet(value) { + return isObjectLike(value) && getTag(value) == setTag; } /** - * Recursively flatten `array` up to `depth` times. - * - * @static - * @memberOf _ - * @since 4.4.0 - * @category Array - * @param {Array} array The array to flatten. - * @param {number} [depth=1] The maximum recursion depth. - * @returns {Array} Returns the new flattened array. - * @example - * - * var array = [1, [2, [3, [4]], 5]]; + * The base implementation of `_.isTypedArray` without Node.js optimizations. * - * _.flattenDepth(array, 1); - * // => [1, 2, [3, [4]], 5] + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + */ + function baseIsTypedArray(value) { + return isObjectLike(value) && + isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; + } + + /** + * The base implementation of `_.iteratee`. * - * _.flattenDepth(array, 2); - * // => [1, 2, 3, [4], 5] + * @private + * @param {*} [value=_.identity] The value to convert to an iteratee. + * @returns {Function} Returns the iteratee. */ - function flattenDepth(array, depth) { - var length = array == null ? 0 : array.length; - if (!length) { - return []; + function baseIteratee(value) { + // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. + // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. + if (typeof value == 'function') { + return value; } - depth = depth === undefined ? 1 : toInteger(depth); - return baseFlatten(array, depth); + if (value == null) { + return identity; + } + if (typeof value == 'object') { + return isArray(value) + ? baseMatchesProperty(value[0], value[1]) + : baseMatches(value); + } + return property(value); } /** - * The inverse of `_.toPairs`; this method returns an object composed - * from key-value `pairs`. + * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} pairs The key-value pairs. - * @returns {Object} Returns the new object. - * @example + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ + function baseKeys(object) { + if (!isPrototype(object)) { + return nativeKeys(object); + } + var result = []; + for (var key in Object(object)) { + if (hasOwnProperty.call(object, key) && key != 'constructor') { + result.push(key); + } + } + return result; + } + + /** + * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. * - * _.fromPairs([['a', 1], ['b', 2]]); - * // => { 'a': 1, 'b': 2 } + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. */ - function fromPairs(pairs) { - var index = -1, - length = pairs == null ? 0 : pairs.length, - result = {}; + function baseKeysIn(object) { + if (!isObject(object)) { + return nativeKeysIn(object); + } + var isProto = isPrototype(object), + result = []; - while (++index < length) { - var pair = pairs[index]; - result[pair[0]] = pair[1]; + for (var key in object) { + if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { + result.push(key); + } } return result; } /** - * Gets the first element of `array`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @alias first - * @category Array - * @param {Array} array The array to query. - * @returns {*} Returns the first element of `array`. - * @example - * - * _.head([1, 2, 3]); - * // => 1 + * The base implementation of `_.lt` which doesn't coerce arguments. * - * _.head([]); - * // => undefined + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. */ - function head(array) { - return (array && array.length) ? array[0] : undefined; + function baseLt(value, other) { + return value < other; } /** - * Gets the index at which the first occurrence of `value` is found in `array` - * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. If `fromIndex` is negative, it's used as the - * offset from the end of `array`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {*} value The value to search for. - * @param {number} [fromIndex=0] The index to search from. - * @returns {number} Returns the index of the matched value, else `-1`. - * @example + * The base implementation of `_.map` without support for iteratee shorthands. * - * _.indexOf([1, 2, 1, 2], 2); - * // => 1 + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ + function baseMap(collection, iteratee) { + var index = -1, + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value, key, collection) { + result[++index] = iteratee(value, key, collection); + }); + return result; + } + + /** + * The base implementation of `_.matches` which doesn't clone `source`. * - * // Search from the `fromIndex`. - * _.indexOf([1, 2, 1, 2], 2, 2); - * // => 3 + * @private + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new spec function. */ - function indexOf(array, value, fromIndex) { - var length = array == null ? 0 : array.length; - if (!length) { - return -1; - } - var index = fromIndex == null ? 0 : toInteger(fromIndex); - if (index < 0) { - index = nativeMax(length + index, 0); + function baseMatches(source) { + var matchData = getMatchData(source); + if (matchData.length == 1 && matchData[0][2]) { + return matchesStrictComparable(matchData[0][0], matchData[0][1]); } - return baseIndexOf(array, value, index); + return function(object) { + return object === source || baseIsMatch(object, source, matchData); + }; } /** - * Gets all but the last element of `array`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to query. - * @returns {Array} Returns the slice of `array`. - * @example + * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. * - * _.initial([1, 2, 3]); - * // => [1, 2] + * @private + * @param {string} path The path of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. */ - function initial(array) { - var length = array == null ? 0 : array.length; - return length ? baseSlice(array, 0, -1) : []; + function baseMatchesProperty(path, srcValue) { + if (isKey(path) && isStrictComparable(srcValue)) { + return matchesStrictComparable(toKey(path), srcValue); + } + return function(object) { + var objValue = get(object, path); + return (objValue === undefined && objValue === srcValue) + ? hasIn(object, path) + : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG); + }; } /** - * Creates an array of unique values that are included in all given arrays - * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. The order and references of result values are - * determined by the first array. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @returns {Array} Returns the new array of intersecting values. - * @example + * The base implementation of `_.merge` without support for multiple sources. * - * _.intersection([2, 1], [2, 3]); - * // => [2] + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {number} srcIndex The index of `source`. + * @param {Function} [customizer] The function to customize merged values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. */ - var intersection = baseRest(function(arrays) { - var mapped = arrayMap(arrays, castArrayLikeObject); - return (mapped.length && mapped[0] === arrays[0]) - ? baseIntersection(mapped) - : []; - }); + function baseMerge(object, source, srcIndex, customizer, stack) { + if (object === source) { + return; + } + baseFor(source, function(srcValue, key) { + stack || (stack = new Stack); + if (isObject(srcValue)) { + baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack); + } + else { + var newValue = customizer + ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack) + : undefined; + + if (newValue === undefined) { + newValue = srcValue; + } + assignMergeValue(object, key, newValue); + } + }, keysIn); + } /** - * This method is like `_.intersection` except that it accepts `iteratee` - * which is invoked for each element of each `arrays` to generate the criterion - * by which they're compared. The order and references of result values are - * determined by the first array. The iteratee is invoked with one argument: - * (value). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns the new array of intersecting values. - * @example - * - * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor); - * // => [2.1] + * A specialized version of `baseMerge` for arrays and objects which performs + * deep merges and tracks traversed objects enabling objects with circular + * references to be merged. * - * // The `_.property` iteratee shorthand. - * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); - * // => [{ 'x': 1 }] + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {string} key The key of the value to merge. + * @param {number} srcIndex The index of `source`. + * @param {Function} mergeFunc The function to merge values. + * @param {Function} [customizer] The function to customize assigned values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. */ - var intersectionBy = baseRest(function(arrays) { - var iteratee = last(arrays), - mapped = arrayMap(arrays, castArrayLikeObject); + function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) { + var objValue = safeGet(object, key), + srcValue = safeGet(source, key), + stacked = stack.get(srcValue); - if (iteratee === last(mapped)) { - iteratee = undefined; - } else { - mapped.pop(); + if (stacked) { + assignMergeValue(object, key, stacked); + return; } - return (mapped.length && mapped[0] === arrays[0]) - ? baseIntersection(mapped, getIteratee(iteratee, 2)) - : []; - }); + var newValue = customizer + ? customizer(objValue, srcValue, (key + ''), object, source, stack) + : undefined; + + var isCommon = newValue === undefined; + + if (isCommon) { + var isArr = isArray(srcValue), + isBuff = !isArr && isBuffer(srcValue), + isTyped = !isArr && !isBuff && isTypedArray(srcValue); + + newValue = srcValue; + if (isArr || isBuff || isTyped) { + if (isArray(objValue)) { + newValue = objValue; + } + else if (isArrayLikeObject(objValue)) { + newValue = copyArray(objValue); + } + else if (isBuff) { + isCommon = false; + newValue = cloneBuffer(srcValue, true); + } + else if (isTyped) { + isCommon = false; + newValue = cloneTypedArray(srcValue, true); + } + else { + newValue = []; + } + } + else if (isPlainObject(srcValue) || isArguments(srcValue)) { + newValue = objValue; + if (isArguments(objValue)) { + newValue = toPlainObject(objValue); + } + else if (!isObject(objValue) || isFunction(objValue)) { + newValue = initCloneObject(srcValue); + } + } + else { + isCommon = false; + } + } + if (isCommon) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, newValue); + mergeFunc(newValue, srcValue, srcIndex, customizer, stack); + stack['delete'](srcValue); + } + assignMergeValue(object, key, newValue); + } /** - * This method is like `_.intersection` except that it accepts `comparator` - * which is invoked to compare elements of `arrays`. The order and references - * of result values are determined by the first array. The comparator is - * invoked with two arguments: (arrVal, othVal). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of intersecting values. - * @example - * - * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; - * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * The base implementation of `_.nth` which doesn't coerce arguments. * - * _.intersectionWith(objects, others, _.isEqual); - * // => [{ 'x': 1, 'y': 2 }] + * @private + * @param {Array} array The array to query. + * @param {number} n The index of the element to return. + * @returns {*} Returns the nth element of `array`. */ - var intersectionWith = baseRest(function(arrays) { - var comparator = last(arrays), - mapped = arrayMap(arrays, castArrayLikeObject); - - comparator = typeof comparator == 'function' ? comparator : undefined; - if (comparator) { - mapped.pop(); + function baseNth(array, n) { + var length = array.length; + if (!length) { + return; } - return (mapped.length && mapped[0] === arrays[0]) - ? baseIntersection(mapped, undefined, comparator) - : []; - }); + n += n < 0 ? length : 0; + return isIndex(n, length) ? array[n] : undefined; + } /** - * Converts all elements in `array` into a string separated by `separator`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to convert. - * @param {string} [separator=','] The element separator. - * @returns {string} Returns the joined string. - * @example + * The base implementation of `_.orderBy` without param guards. * - * _.join(['a', 'b', 'c'], '~'); - * // => 'a~b~c' + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {string[]} orders The sort orders of `iteratees`. + * @returns {Array} Returns the new sorted array. */ - function join(array, separator) { - return array == null ? '' : nativeJoin.call(array, separator); + function baseOrderBy(collection, iteratees, orders) { + if (iteratees.length) { + iteratees = arrayMap(iteratees, function(iteratee) { + if (isArray(iteratee)) { + return function(value) { + return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee); + } + } + return iteratee; + }); + } else { + iteratees = [identity]; + } + + var index = -1; + iteratees = arrayMap(iteratees, baseUnary(getIteratee())); + + var result = baseMap(collection, function(value, key, collection) { + var criteria = arrayMap(iteratees, function(iteratee) { + return iteratee(value); + }); + return { 'criteria': criteria, 'index': ++index, 'value': value }; + }); + + return baseSortBy(result, function(object, other) { + return compareMultiple(object, other, orders); + }); } /** - * Gets the last element of `array`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to query. - * @returns {*} Returns the last element of `array`. - * @example + * The base implementation of `_.pick` without support for individual + * property identifiers. * - * _.last([1, 2, 3]); - * // => 3 + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @returns {Object} Returns the new object. */ - function last(array) { - var length = array == null ? 0 : array.length; - return length ? array[length - 1] : undefined; + function basePick(object, paths) { + return basePickBy(object, paths, function(value, path) { + return hasIn(object, path); + }); } /** - * This method is like `_.indexOf` except that it iterates over elements of - * `array` from right to left. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {*} value The value to search for. - * @param {number} [fromIndex=array.length-1] The index to search from. - * @returns {number} Returns the index of the matched value, else `-1`. - * @example - * - * _.lastIndexOf([1, 2, 1, 2], 2); - * // => 3 + * The base implementation of `_.pickBy` without support for iteratee shorthands. * - * // Search from the `fromIndex`. - * _.lastIndexOf([1, 2, 1, 2], 2, 2); - * // => 1 + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @param {Function} predicate The function invoked per property. + * @returns {Object} Returns the new object. */ - function lastIndexOf(array, value, fromIndex) { - var length = array == null ? 0 : array.length; - if (!length) { - return -1; - } - var index = length; - if (fromIndex !== undefined) { - index = toInteger(fromIndex); - index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1); + function basePickBy(object, paths, predicate) { + var index = -1, + length = paths.length, + result = {}; + + while (++index < length) { + var path = paths[index], + value = baseGet(object, path); + + if (predicate(value, path)) { + baseSet(result, castPath(path, object), value); + } } - return value === value - ? strictLastIndexOf(array, value, index) - : baseFindIndex(array, baseIsNaN, index, true); + return result; } /** - * Gets the element at index `n` of `array`. If `n` is negative, the nth - * element from the end is returned. - * - * @static - * @memberOf _ - * @since 4.11.0 - * @category Array - * @param {Array} array The array to query. - * @param {number} [n=0] The index of the element to return. - * @returns {*} Returns the nth element of `array`. - * @example - * - * var array = ['a', 'b', 'c', 'd']; - * - * _.nth(array, 1); - * // => 'b' + * A specialized version of `baseProperty` which supports deep paths. * - * _.nth(array, -2); - * // => 'c'; + * @private + * @param {Array|string} path The path of the property to get. + * @returns {Function} Returns the new accessor function. */ - function nth(array, n) { - return (array && array.length) ? baseNth(array, toInteger(n)) : undefined; + function basePropertyDeep(path) { + return function(object) { + return baseGet(object, path); + }; } /** - * Removes all given values from `array` using - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. - * - * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove` - * to remove elements from an array by predicate. + * The base implementation of `_.pullAllBy` without support for iteratee + * shorthands. * - * @static - * @memberOf _ - * @since 2.0.0 - * @category Array + * @private * @param {Array} array The array to modify. - * @param {...*} [values] The values to remove. + * @param {Array} values The values to remove. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. * @returns {Array} Returns `array`. - * @example - * - * var array = ['a', 'b', 'c', 'a', 'b', 'c']; - * - * _.pull(array, 'a', 'c'); - * console.log(array); - * // => ['b', 'b'] */ - var pull = baseRest(pullAll); + function basePullAll(array, values, iteratee, comparator) { + var indexOf = comparator ? baseIndexOfWith : baseIndexOf, + index = -1, + length = values.length, + seen = array; + + if (array === values) { + values = copyArray(values); + } + if (iteratee) { + seen = arrayMap(array, baseUnary(iteratee)); + } + while (++index < length) { + var fromIndex = 0, + value = values[index], + computed = iteratee ? iteratee(value) : value; + + while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) { + if (seen !== array) { + splice.call(seen, fromIndex, 1); + } + splice.call(array, fromIndex, 1); + } + } + return array; + } /** - * This method is like `_.pull` except that it accepts an array of values to remove. - * - * **Note:** Unlike `_.difference`, this method mutates `array`. + * The base implementation of `_.pullAt` without support for individual + * indexes or capturing the removed elements. * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array + * @private * @param {Array} array The array to modify. - * @param {Array} values The values to remove. + * @param {number[]} indexes The indexes of elements to remove. * @returns {Array} Returns `array`. - * @example - * - * var array = ['a', 'b', 'c', 'a', 'b', 'c']; - * - * _.pullAll(array, ['a', 'c']); - * console.log(array); - * // => ['b', 'b'] */ - function pullAll(array, values) { - return (array && array.length && values && values.length) - ? basePullAll(array, values) - : array; + function basePullAt(array, indexes) { + var length = array ? indexes.length : 0, + lastIndex = length - 1; + + while (length--) { + var index = indexes[length]; + if (length == lastIndex || index !== previous) { + var previous = index; + if (isIndex(index)) { + splice.call(array, index, 1); + } else { + baseUnset(array, index); + } + } + } + return array; } /** - * This method is like `_.pullAll` except that it accepts `iteratee` which is - * invoked for each element of `array` and `values` to generate the criterion - * by which they're compared. The iteratee is invoked with one argument: (value). - * - * **Note:** Unlike `_.differenceBy`, this method mutates `array`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to modify. - * @param {Array} values The values to remove. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns `array`. - * @example - * - * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }]; + * The base implementation of `_.random` without support for returning + * floating-point numbers. * - * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x'); - * console.log(array); - * // => [{ 'x': 2 }] + * @private + * @param {number} lower The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the random number. */ - function pullAllBy(array, values, iteratee) { - return (array && array.length && values && values.length) - ? basePullAll(array, values, getIteratee(iteratee, 2)) - : array; + function baseRandom(lower, upper) { + return lower + nativeFloor(nativeRandom() * (upper - lower + 1)); } /** - * This method is like `_.pullAll` except that it accepts `comparator` which - * is invoked to compare elements of `array` to `values`. The comparator is - * invoked with two arguments: (arrVal, othVal). - * - * **Note:** Unlike `_.differenceWith`, this method mutates `array`. - * - * @static - * @memberOf _ - * @since 4.6.0 - * @category Array - * @param {Array} array The array to modify. - * @param {Array} values The values to remove. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns `array`. - * @example - * - * var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }]; + * The base implementation of `_.range` and `_.rangeRight` which doesn't + * coerce arguments. * - * _.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual); - * console.log(array); - * // => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }] + * @private + * @param {number} start The start of the range. + * @param {number} end The end of the range. + * @param {number} step The value to increment or decrement by. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Array} Returns the range of numbers. */ - function pullAllWith(array, values, comparator) { - return (array && array.length && values && values.length) - ? basePullAll(array, values, undefined, comparator) - : array; + function baseRange(start, end, step, fromRight) { + var index = -1, + length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), + result = Array(length); + + while (length--) { + result[fromRight ? length : ++index] = start; + start += step; + } + return result; } /** - * Removes elements from `array` corresponding to `indexes` and returns an - * array of removed elements. - * - * **Note:** Unlike `_.at`, this method mutates `array`. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array - * @param {Array} array The array to modify. - * @param {...(number|number[])} [indexes] The indexes of elements to remove. - * @returns {Array} Returns the new array of removed elements. - * @example - * - * var array = ['a', 'b', 'c', 'd']; - * var pulled = _.pullAt(array, [1, 3]); - * - * console.log(array); - * // => ['a', 'c'] + * The base implementation of `_.repeat` which doesn't coerce arguments. * - * console.log(pulled); - * // => ['b', 'd'] + * @private + * @param {string} string The string to repeat. + * @param {number} n The number of times to repeat the string. + * @returns {string} Returns the repeated string. */ - var pullAt = flatRest(function(array, indexes) { - var length = array == null ? 0 : array.length, - result = baseAt(array, indexes); - - basePullAt(array, arrayMap(indexes, function(index) { - return isIndex(index, length) ? +index : index; - }).sort(compareAscending)); + function baseRepeat(string, n) { + var result = ''; + if (!string || n < 1 || n > MAX_SAFE_INTEGER) { + return result; + } + // Leverage the exponentiation by squaring algorithm for a faster repeat. + // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details. + do { + if (n % 2) { + result += string; + } + n = nativeFloor(n / 2); + if (n) { + string += string; + } + } while (n); return result; - }); + } /** - * Removes all elements from `array` that `predicate` returns truthy for - * and returns an array of the removed elements. The predicate is invoked - * with three arguments: (value, index, array). - * - * **Note:** Unlike `_.filter`, this method mutates `array`. Use `_.pull` - * to pull elements from an array by value. + * The base implementation of `_.rest` which doesn't validate or coerce arguments. * - * @static - * @memberOf _ - * @since 2.0.0 - * @category Array - * @param {Array} array The array to modify. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {Array} Returns the new array of removed elements. - * @example + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + */ + function baseRest(func, start) { + return setToString(overRest(func, start, identity), func + ''); + } + + /** + * The base implementation of `_.sample`. * - * var array = [1, 2, 3, 4]; - * var evens = _.remove(array, function(n) { - * return n % 2 == 0; - * }); + * @private + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. + */ + function baseSample(collection) { + return arraySample(values(collection)); + } + + /** + * The base implementation of `_.sampleSize` without param guards. * - * console.log(array); - * // => [1, 3] + * @private + * @param {Array|Object} collection The collection to sample. + * @param {number} n The number of elements to sample. + * @returns {Array} Returns the random elements. + */ + function baseSampleSize(collection, n) { + var array = values(collection); + return shuffleSelf(array, baseClamp(n, 0, array.length)); + } + + /** + * The base implementation of `_.set`. * - * console.log(evens); - * // => [2, 4] + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. */ - function remove(array, predicate) { - var result = []; - if (!(array && array.length)) { - return result; + function baseSet(object, path, value, customizer) { + if (!isObject(object)) { + return object; } + path = castPath(path, object); + var index = -1, - indexes = [], - length = array.length; + length = path.length, + lastIndex = length - 1, + nested = object; - predicate = getIteratee(predicate, 3); - while (++index < length) { - var value = array[index]; - if (predicate(value, index, array)) { - result.push(value); - indexes.push(index); + while (nested != null && ++index < length) { + var key = toKey(path[index]), + newValue = value; + + if (key === '__proto__' || key === 'constructor' || key === 'prototype') { + return object; + } + + if (index != lastIndex) { + var objValue = nested[key]; + newValue = customizer ? customizer(objValue, key, nested) : undefined; + if (newValue === undefined) { + newValue = isObject(objValue) + ? objValue + : (isIndex(path[index + 1]) ? [] : {}); + } } + assignValue(nested, key, newValue); + nested = nested[key]; } - basePullAt(array, indexes); - return result; + return object; } /** - * Reverses `array` so that the first element becomes the last, the second - * element becomes the second to last, and so on. - * - * **Note:** This method mutates `array` and is based on - * [`Array#reverse`](https://mdn.io/Array/reverse). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to modify. - * @returns {Array} Returns `array`. - * @example + * The base implementation of `setData` without support for hot loop shorting. * - * var array = [1, 2, 3]; + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. + */ + var baseSetData = !metaMap ? identity : function(func, data) { + metaMap.set(func, data); + return func; + }; + + /** + * The base implementation of `setToString` without support for hot loop shorting. * - * _.reverse(array); - * // => [3, 2, 1] + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var baseSetToString = !defineProperty ? identity : function(func, string) { + return defineProperty(func, 'toString', { + 'configurable': true, + 'enumerable': false, + 'value': constant(string), + 'writable': true + }); + }; + + /** + * The base implementation of `_.shuffle`. * - * console.log(array); - * // => [3, 2, 1] + * @private + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. */ - function reverse(array) { - return array == null ? array : nativeReverse.call(array); + function baseShuffle(collection) { + return shuffleSelf(values(collection)); } /** - * Creates a slice of `array` from `start` up to, but not including, `end`. - * - * **Note:** This method is used instead of - * [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are - * returned. + * The base implementation of `_.slice` without an iteratee call guard. * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array + * @private * @param {Array} array The array to slice. * @param {number} [start=0] The start position. * @param {number} [end=array.length] The end position. * @returns {Array} Returns the slice of `array`. */ - function slice(array, start, end) { - var length = array == null ? 0 : array.length; - if (!length) { - return []; + function baseSlice(array, start, end) { + var index = -1, + length = array.length; + + if (start < 0) { + start = -start > length ? 0 : (length + start); } - if (end && typeof end != 'number' && isIterateeCall(array, start, end)) { - start = 0; - end = length; + end = end > length ? length : end; + if (end < 0) { + end += length; } - else { - start = start == null ? 0 : toInteger(start); - end = end === undefined ? length : toInteger(end); + length = start > end ? 0 : ((end - start) >>> 0); + start >>>= 0; + + var result = Array(length); + while (++index < length) { + result[index] = array[index + start]; } - return baseSlice(array, start, end); + return result; } /** - * Uses a binary search to determine the lowest index at which `value` + * The base implementation of `_.some` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ + function baseSome(collection, predicate) { + var result; + + baseEach(collection, function(value, index, collection) { + result = predicate(value, index, collection); + return !result; + }); + return !!result; + } + + /** + * The base implementation of `_.sortedIndex` and `_.sortedLastIndex` which + * performs a binary search of `array` to determine the index at which `value` * should be inserted into `array` in order to maintain its sort order. * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array + * @private * @param {Array} array The sorted array to inspect. * @param {*} value The value to evaluate. + * @param {boolean} [retHighest] Specify returning the highest qualified index. * @returns {number} Returns the index at which `value` should be inserted * into `array`. - * @example - * - * _.sortedIndex([30, 50], 40); - * // => 1 */ - function sortedIndex(array, value) { - return baseSortedIndex(array, value); + function baseSortedIndex(array, value, retHighest) { + var low = 0, + high = array == null ? low : array.length; + + if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) { + while (low < high) { + var mid = (low + high) >>> 1, + computed = array[mid]; + + if (computed !== null && !isSymbol(computed) && + (retHighest ? (computed <= value) : (computed < value))) { + low = mid + 1; + } else { + high = mid; + } + } + return high; + } + return baseSortedIndexBy(array, value, identity, retHighest); } /** - * This method is like `_.sortedIndex` except that it accepts `iteratee` - * which is invoked for `value` and each element of `array` to compute their - * sort ranking. The iteratee is invoked with one argument: (value). + * The base implementation of `_.sortedIndexBy` and `_.sortedLastIndexBy` + * which invokes `iteratee` for `value` and each element of `array` to compute + * their sort ranking. The iteratee is invoked with one argument; (value). * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array + * @private * @param {Array} array The sorted array to inspect. * @param {*} value The value to evaluate. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @param {Function} iteratee The iteratee invoked per element. + * @param {boolean} [retHighest] Specify returning the highest qualified index. * @returns {number} Returns the index at which `value` should be inserted * into `array`. - * @example - * - * var objects = [{ 'x': 4 }, { 'x': 5 }]; - * - * _.sortedIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); - * // => 0 - * - * // The `_.property` iteratee shorthand. - * _.sortedIndexBy(objects, { 'x': 4 }, 'x'); - * // => 0 */ - function sortedIndexBy(array, value, iteratee) { - return baseSortedIndexBy(array, value, getIteratee(iteratee, 2)); + function baseSortedIndexBy(array, value, iteratee, retHighest) { + var low = 0, + high = array == null ? 0 : array.length; + if (high === 0) { + return 0; + } + + value = iteratee(value); + var valIsNaN = value !== value, + valIsNull = value === null, + valIsSymbol = isSymbol(value), + valIsUndefined = value === undefined; + + while (low < high) { + var mid = nativeFloor((low + high) / 2), + computed = iteratee(array[mid]), + othIsDefined = computed !== undefined, + othIsNull = computed === null, + othIsReflexive = computed === computed, + othIsSymbol = isSymbol(computed); + + if (valIsNaN) { + var setLow = retHighest || othIsReflexive; + } else if (valIsUndefined) { + setLow = othIsReflexive && (retHighest || othIsDefined); + } else if (valIsNull) { + setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull); + } else if (valIsSymbol) { + setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol); + } else if (othIsNull || othIsSymbol) { + setLow = false; + } else { + setLow = retHighest ? (computed <= value) : (computed < value); + } + if (setLow) { + low = mid + 1; + } else { + high = mid; + } + } + return nativeMin(high, MAX_ARRAY_INDEX); } /** - * This method is like `_.indexOf` except that it performs a binary - * search on a sorted `array`. + * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without + * support for iteratee shorthands. * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array + * @private * @param {Array} array The array to inspect. - * @param {*} value The value to search for. - * @returns {number} Returns the index of the matched value, else `-1`. - * @example - * - * _.sortedIndexOf([4, 5, 5, 5, 6], 5); - * // => 1 + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. */ - function sortedIndexOf(array, value) { - var length = array == null ? 0 : array.length; - if (length) { - var index = baseSortedIndex(array, value); - if (index < length && eq(array[index], value)) { - return index; + function baseSortedUniq(array, iteratee) { + var index = -1, + length = array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + if (!index || !eq(computed, seen)) { + var seen = computed; + result[resIndex++] = value === 0 ? 0 : value; } } - return -1; + return result; } /** - * This method is like `_.sortedIndex` except that it returns the highest - * index at which `value` should be inserted into `array` in order to - * maintain its sort order. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array - * @param {Array} array The sorted array to inspect. - * @param {*} value The value to evaluate. - * @returns {number} Returns the index at which `value` should be inserted - * into `array`. - * @example + * The base implementation of `_.toNumber` which doesn't ensure correct + * conversions of binary, hexadecimal, or octal string values. * - * _.sortedLastIndex([4, 5, 5, 5, 6], 5); - * // => 4 + * @private + * @param {*} value The value to process. + * @returns {number} Returns the number. */ - function sortedLastIndex(array, value) { - return baseSortedIndex(array, value, true); + function baseToNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + return +value; } /** - * This method is like `_.sortedLastIndex` except that it accepts `iteratee` - * which is invoked for `value` and each element of `array` to compute their - * sort ranking. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The sorted array to inspect. - * @param {*} value The value to evaluate. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {number} Returns the index at which `value` should be inserted - * into `array`. - * @example - * - * var objects = [{ 'x': 4 }, { 'x': 5 }]; - * - * _.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); - * // => 1 + * The base implementation of `_.toString` which doesn't convert nullish + * values to empty strings. * - * // The `_.property` iteratee shorthand. - * _.sortedLastIndexBy(objects, { 'x': 4 }, 'x'); - * // => 1 + * @private + * @param {*} value The value to process. + * @returns {string} Returns the string. */ - function sortedLastIndexBy(array, value, iteratee) { - return baseSortedIndexBy(array, value, getIteratee(iteratee, 2), true); + function baseToString(value) { + // Exit early for strings to avoid a performance hit in some environments. + if (typeof value == 'string') { + return value; + } + if (isArray(value)) { + // Recursively convert values (susceptible to call stack limits). + return arrayMap(value, baseToString) + ''; + } + if (isSymbol(value)) { + return symbolToString ? symbolToString.call(value) : ''; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; } /** - * This method is like `_.lastIndexOf` except that it performs a binary - * search on a sorted `array`. + * The base implementation of `_.uniqBy` without support for iteratee shorthands. * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array + * @private * @param {Array} array The array to inspect. - * @param {*} value The value to search for. - * @returns {number} Returns the index of the matched value, else `-1`. - * @example - * - * _.sortedLastIndexOf([4, 5, 5, 5, 6], 5); - * // => 3 + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. */ - function sortedLastIndexOf(array, value) { - var length = array == null ? 0 : array.length; - if (length) { - var index = baseSortedIndex(array, value, true) - 1; - if (eq(array[index], value)) { - return index; + function baseUniq(array, iteratee, comparator) { + var index = -1, + includes = arrayIncludes, + length = array.length, + isCommon = true, + result = [], + seen = result; + + if (comparator) { + isCommon = false; + includes = arrayIncludesWith; + } + else if (length >= LARGE_ARRAY_SIZE) { + var set = iteratee ? null : createSet(array); + if (set) { + return setToArray(set); } + isCommon = false; + includes = cacheHas; + seen = new SetCache; } - return -1; + else { + seen = iteratee ? [] : result; + } + outer: + while (++index < length) { + var value = array[index], + computed = iteratee ? iteratee(value) : value; + + value = (comparator || value !== 0) ? value : 0; + if (isCommon && computed === computed) { + var seenIndex = seen.length; + while (seenIndex--) { + if (seen[seenIndex] === computed) { + continue outer; + } + } + if (iteratee) { + seen.push(computed); + } + result.push(value); + } + else if (!includes(seen, computed, comparator)) { + if (seen !== result) { + seen.push(computed); + } + result.push(value); + } + } + return result; } /** - * This method is like `_.uniq` except that it's designed and optimized - * for sorted arrays. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to inspect. - * @returns {Array} Returns the new duplicate free array. - * @example + * The base implementation of `_.unset`. * - * _.sortedUniq([1, 1, 2]); - * // => [1, 2] + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The property path to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. */ - function sortedUniq(array) { - return (array && array.length) - ? baseSortedUniq(array) - : []; + function baseUnset(object, path) { + path = castPath(path, object); + object = parent(object, path); + return object == null || delete object[toKey(last(path))]; } /** - * This method is like `_.uniqBy` except that it's designed and optimized - * for sorted arrays. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {Function} [iteratee] The iteratee invoked per element. - * @returns {Array} Returns the new duplicate free array. - * @example + * The base implementation of `_.update`. * - * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); - * // => [1.1, 2.3] + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to update. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. */ - function sortedUniqBy(array, iteratee) { - return (array && array.length) - ? baseSortedUniq(array, getIteratee(iteratee, 2)) - : []; + function baseUpdate(object, path, updater, customizer) { + return baseSet(object, path, updater(baseGet(object, path)), customizer); } /** - * Gets all but the first element of `array`. + * The base implementation of methods like `_.dropWhile` and `_.takeWhile` + * without support for iteratee shorthands. * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array + * @private * @param {Array} array The array to query. + * @param {Function} predicate The function invoked per iteration. + * @param {boolean} [isDrop] Specify dropping elements instead of taking them. + * @param {boolean} [fromRight] Specify iterating from right to left. * @returns {Array} Returns the slice of `array`. - * @example - * - * _.tail([1, 2, 3]); - * // => [2, 3] */ - function tail(array) { - var length = array == null ? 0 : array.length; - return length ? baseSlice(array, 1, length) : []; + function baseWhile(array, predicate, isDrop, fromRight) { + var length = array.length, + index = fromRight ? length : -1; + + while ((fromRight ? index-- : ++index < length) && + predicate(array[index], index, array)) {} + + return isDrop + ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length)) + : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index)); } /** - * Creates a slice of `array` with `n` elements taken from the beginning. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to query. - * @param {number} [n=1] The number of elements to take. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Array} Returns the slice of `array`. - * @example - * - * _.take([1, 2, 3]); - * // => [1] - * - * _.take([1, 2, 3], 2); - * // => [1, 2] - * - * _.take([1, 2, 3], 5); - * // => [1, 2, 3] + * The base implementation of `wrapperValue` which returns the result of + * performing a sequence of actions on the unwrapped `value`, where each + * successive action is supplied the return value of the previous. * - * _.take([1, 2, 3], 0); - * // => [] + * @private + * @param {*} value The unwrapped value. + * @param {Array} actions Actions to perform to resolve the unwrapped value. + * @returns {*} Returns the resolved value. */ - function take(array, n, guard) { - if (!(array && array.length)) { - return []; + function baseWrapperValue(value, actions) { + var result = value; + if (result instanceof LazyWrapper) { + result = result.value(); } - n = (guard || n === undefined) ? 1 : toInteger(n); - return baseSlice(array, 0, n < 0 ? 0 : n); + return arrayReduce(actions, function(result, action) { + return action.func.apply(action.thisArg, arrayPush([result], action.args)); + }, result); } /** - * Creates a slice of `array` with `n` elements taken from the end. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array - * @param {Array} array The array to query. - * @param {number} [n=1] The number of elements to take. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Array} Returns the slice of `array`. - * @example - * - * _.takeRight([1, 2, 3]); - * // => [3] - * - * _.takeRight([1, 2, 3], 2); - * // => [2, 3] - * - * _.takeRight([1, 2, 3], 5); - * // => [1, 2, 3] + * The base implementation of methods like `_.xor`, without support for + * iteratee shorthands, that accepts an array of arrays to inspect. * - * _.takeRight([1, 2, 3], 0); - * // => [] + * @private + * @param {Array} arrays The arrays to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of values. */ - function takeRight(array, n, guard) { - var length = array == null ? 0 : array.length; - if (!length) { - return []; + function baseXor(arrays, iteratee, comparator) { + var length = arrays.length; + if (length < 2) { + return length ? baseUniq(arrays[0]) : []; } - n = (guard || n === undefined) ? 1 : toInteger(n); - n = length - n; - return baseSlice(array, n < 0 ? 0 : n, length); + var index = -1, + result = Array(length); + + while (++index < length) { + var array = arrays[index], + othIndex = -1; + + while (++othIndex < length) { + if (othIndex != index) { + result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator); + } + } + } + return baseUniq(baseFlatten(result, 1), iteratee, comparator); } /** - * Creates a slice of `array` with elements taken from the end. Elements are - * taken until `predicate` returns falsey. The predicate is invoked with - * three arguments: (value, index, array). - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array - * @param {Array} array The array to query. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {Array} Returns the slice of `array`. - * @example - * - * var users = [ - * { 'user': 'barney', 'active': true }, - * { 'user': 'fred', 'active': false }, - * { 'user': 'pebbles', 'active': false } - * ]; - * - * _.takeRightWhile(users, function(o) { return !o.active; }); - * // => objects for ['fred', 'pebbles'] - * - * // The `_.matches` iteratee shorthand. - * _.takeRightWhile(users, { 'user': 'pebbles', 'active': false }); - * // => objects for ['pebbles'] - * - * // The `_.matchesProperty` iteratee shorthand. - * _.takeRightWhile(users, ['active', false]); - * // => objects for ['fred', 'pebbles'] + * This base implementation of `_.zipObject` which assigns values using `assignFunc`. * - * // The `_.property` iteratee shorthand. - * _.takeRightWhile(users, 'active'); - * // => [] + * @private + * @param {Array} props The property identifiers. + * @param {Array} values The property values. + * @param {Function} assignFunc The function to assign values. + * @returns {Object} Returns the new object. */ - function takeRightWhile(array, predicate) { - return (array && array.length) - ? baseWhile(array, getIteratee(predicate, 3), false, true) - : []; + function baseZipObject(props, values, assignFunc) { + var index = -1, + length = props.length, + valsLength = values.length, + result = {}; + + while (++index < length) { + var value = index < valsLength ? values[index] : undefined; + assignFunc(result, props[index], value); + } + return result; } /** - * Creates a slice of `array` with elements taken from the beginning. Elements - * are taken until `predicate` returns falsey. The predicate is invoked with - * three arguments: (value, index, array). - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Array - * @param {Array} array The array to query. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {Array} Returns the slice of `array`. - * @example - * - * var users = [ - * { 'user': 'barney', 'active': false }, - * { 'user': 'fred', 'active': false }, - * { 'user': 'pebbles', 'active': true } - * ]; - * - * _.takeWhile(users, function(o) { return !o.active; }); - * // => objects for ['barney', 'fred'] - * - * // The `_.matches` iteratee shorthand. - * _.takeWhile(users, { 'user': 'barney', 'active': false }); - * // => objects for ['barney'] - * - * // The `_.matchesProperty` iteratee shorthand. - * _.takeWhile(users, ['active', false]); - * // => objects for ['barney', 'fred'] + * Casts `value` to an empty array if it's not an array like object. * - * // The `_.property` iteratee shorthand. - * _.takeWhile(users, 'active'); - * // => [] + * @private + * @param {*} value The value to inspect. + * @returns {Array|Object} Returns the cast array-like object. */ - function takeWhile(array, predicate) { - return (array && array.length) - ? baseWhile(array, getIteratee(predicate, 3)) - : []; + function castArrayLikeObject(value) { + return isArrayLikeObject(value) ? value : []; } /** - * Creates an array of unique values, in order, from all given arrays using - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @returns {Array} Returns the new array of combined values. - * @example + * Casts `value` to `identity` if it's not a function. * - * _.union([2], [1, 2]); - * // => [2, 1] + * @private + * @param {*} value The value to inspect. + * @returns {Function} Returns cast function. */ - var union = baseRest(function(arrays) { - return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true)); - }); + function castFunction(value) { + return typeof value == 'function' ? value : identity; + } /** - * This method is like `_.union` except that it accepts `iteratee` which is - * invoked for each element of each `arrays` to generate the criterion by - * which uniqueness is computed. Result values are chosen from the first - * array in which the value occurs. The iteratee is invoked with one argument: - * (value). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns the new array of combined values. - * @example - * - * _.unionBy([2.1], [1.2, 2.3], Math.floor); - * // => [2.1, 1.2] + * Casts `value` to a path array if it's not one. * - * // The `_.property` iteratee shorthand. - * _.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); - * // => [{ 'x': 1 }, { 'x': 2 }] + * @private + * @param {*} value The value to inspect. + * @param {Object} [object] The object to query keys on. + * @returns {Array} Returns the cast property path array. */ - var unionBy = baseRest(function(arrays) { - var iteratee = last(arrays); - if (isArrayLikeObject(iteratee)) { - iteratee = undefined; + function castPath(value, object) { + if (isArray(value)) { + return value; } - return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)); - }); + return isKey(value, object) ? [value] : stringToPath(toString(value)); + } /** - * This method is like `_.union` except that it accepts `comparator` which - * is invoked to compare elements of `arrays`. Result values are chosen from - * the first array in which the value occurs. The comparator is invoked - * with two arguments: (arrVal, othVal). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of combined values. - * @example - * - * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; - * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * A `baseRest` alias which can be replaced with `identity` by module + * replacement plugins. * - * _.unionWith(objects, others, _.isEqual); - * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + * @private + * @type {Function} + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. */ - var unionWith = baseRest(function(arrays) { - var comparator = last(arrays); - comparator = typeof comparator == 'function' ? comparator : undefined; - return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined, comparator); - }); + var castRest = baseRest; /** - * Creates a duplicate-free version of an array, using - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons, in which only the first occurrence of each element - * is kept. The order of result values is determined by the order they occur - * in the array. + * Casts `array` to a slice if it's needed. * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array + * @private * @param {Array} array The array to inspect. - * @returns {Array} Returns the new duplicate free array. - * @example - * - * _.uniq([2, 1, 2]); - * // => [2, 1] + * @param {number} start The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the cast slice. */ - function uniq(array) { - return (array && array.length) ? baseUniq(array) : []; + function castSlice(array, start, end) { + var length = array.length; + end = end === undefined ? length : end; + return (!start && end >= length) ? array : baseSlice(array, start, end); } /** - * This method is like `_.uniq` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the criterion by which - * uniqueness is computed. The order of result values is determined by the - * order they occur in the array. The iteratee is invoked with one argument: - * (value). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns the new duplicate free array. - * @example + * A simple wrapper around the global [`clearTimeout`](https://mdn.io/clearTimeout). * - * _.uniqBy([2.1, 1.2, 2.3], Math.floor); - * // => [2.1, 1.2] + * @private + * @param {number|Object} id The timer id or timeout object of the timer to clear. + */ + var clearTimeout = ctxClearTimeout || function(id) { + return root.clearTimeout(id); + }; + + /** + * Creates a clone of `buffer`. * - * // The `_.property` iteratee shorthand. - * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); - * // => [{ 'x': 1 }, { 'x': 2 }] + * @private + * @param {Buffer} buffer The buffer to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Buffer} Returns the cloned buffer. */ - function uniqBy(array, iteratee) { - return (array && array.length) ? baseUniq(array, getIteratee(iteratee, 2)) : []; + function cloneBuffer(buffer, isDeep) { + if (isDeep) { + return buffer.slice(); + } + var length = buffer.length, + result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length); + + buffer.copy(result); + return result; } /** - * This method is like `_.uniq` except that it accepts `comparator` which - * is invoked to compare elements of `array`. The order of result values is - * determined by the order they occur in the array.The comparator is invoked - * with two arguments: (arrVal, othVal). + * Creates a clone of `arrayBuffer`. * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new duplicate free array. - * @example + * @private + * @param {ArrayBuffer} arrayBuffer The array buffer to clone. + * @returns {ArrayBuffer} Returns the cloned array buffer. + */ + function cloneArrayBuffer(arrayBuffer) { + var result = new arrayBuffer.constructor(arrayBuffer.byteLength); + new Uint8Array(result).set(new Uint8Array(arrayBuffer)); + return result; + } + + /** + * Creates a clone of `dataView`. * - * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * @private + * @param {Object} dataView The data view to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned data view. + */ + function cloneDataView(dataView, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; + return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); + } + + /** + * Creates a clone of `regexp`. * - * _.uniqWith(objects, _.isEqual); - * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] + * @private + * @param {Object} regexp The regexp to clone. + * @returns {Object} Returns the cloned regexp. */ - function uniqWith(array, comparator) { - comparator = typeof comparator == 'function' ? comparator : undefined; - return (array && array.length) ? baseUniq(array, undefined, comparator) : []; + function cloneRegExp(regexp) { + var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); + result.lastIndex = regexp.lastIndex; + return result; } /** - * This method is like `_.zip` except that it accepts an array of grouped - * elements and creates an array regrouping the elements to their pre-zip - * configuration. + * Creates a clone of the `symbol` object. * - * @static - * @memberOf _ - * @since 1.2.0 - * @category Array - * @param {Array} array The array of grouped elements to process. - * @returns {Array} Returns the new array of regrouped elements. - * @example + * @private + * @param {Object} symbol The symbol object to clone. + * @returns {Object} Returns the cloned symbol object. + */ + function cloneSymbol(symbol) { + return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; + } + + /** + * Creates a clone of `typedArray`. * - * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]); - * // => [['a', 1, true], ['b', 2, false]] + * @private + * @param {Object} typedArray The typed array to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned typed array. + */ + function cloneTypedArray(typedArray, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; + return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); + } + + /** + * Compares values to sort them in ascending order. * - * _.unzip(zipped); - * // => [['a', 'b'], [1, 2], [true, false]] + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {number} Returns the sort order indicator for `value`. */ - function unzip(array) { - if (!(array && array.length)) { - return []; - } - var length = 0; - array = arrayFilter(array, function(group) { - if (isArrayLikeObject(group)) { - length = nativeMax(group.length, length); - return true; + function compareAscending(value, other) { + if (value !== other) { + var valIsDefined = value !== undefined, + valIsNull = value === null, + valIsReflexive = value === value, + valIsSymbol = isSymbol(value); + + var othIsDefined = other !== undefined, + othIsNull = other === null, + othIsReflexive = other === other, + othIsSymbol = isSymbol(other); + + if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || + (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || + (valIsNull && othIsDefined && othIsReflexive) || + (!valIsDefined && othIsReflexive) || + !valIsReflexive) { + return 1; } - }); - return baseTimes(length, function(index) { - return arrayMap(array, baseProperty(index)); - }); + if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || + (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || + (othIsNull && valIsDefined && valIsReflexive) || + (!othIsDefined && valIsReflexive) || + !othIsReflexive) { + return -1; + } + } + return 0; } /** - * This method is like `_.unzip` except that it accepts `iteratee` to specify - * how regrouped values should be combined. The iteratee is invoked with the - * elements of each group: (...group). - * - * @static - * @memberOf _ - * @since 3.8.0 - * @category Array - * @param {Array} array The array of grouped elements to process. - * @param {Function} [iteratee=_.identity] The function to combine - * regrouped values. - * @returns {Array} Returns the new array of regrouped elements. - * @example + * Used by `_.orderBy` to compare multiple properties of a value to another + * and stable sort them. * - * var zipped = _.zip([1, 2], [10, 20], [100, 200]); - * // => [[1, 10, 100], [2, 20, 200]] + * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, + * specify an order of "desc" for descending or "asc" for ascending sort order + * of corresponding values. * - * _.unzipWith(zipped, _.add); - * // => [3, 30, 300] + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {boolean[]|string[]} orders The order to sort by for each property. + * @returns {number} Returns the sort order indicator for `object`. */ - function unzipWith(array, iteratee) { - if (!(array && array.length)) { - return []; - } - var result = unzip(array); - if (iteratee == null) { - return result; + function compareMultiple(object, other, orders) { + var index = -1, + objCriteria = object.criteria, + othCriteria = other.criteria, + length = objCriteria.length, + ordersLength = orders.length; + + while (++index < length) { + var result = compareAscending(objCriteria[index], othCriteria[index]); + if (result) { + if (index >= ordersLength) { + return result; + } + var order = orders[index]; + return result * (order == 'desc' ? -1 : 1); + } } - return arrayMap(result, function(group) { - return apply(iteratee, undefined, group); - }); + // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications + // that causes it, under certain circumstances, to provide the same value for + // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 + // for more details. + // + // This also ensures a stable sort in V8 and other engines. + // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. + return object.index - other.index; } /** - * Creates an array excluding all given values using - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * for equality comparisons. - * - * **Note:** Unlike `_.pull`, this method returns a new array. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {Array} array The array to inspect. - * @param {...*} [values] The values to exclude. - * @returns {Array} Returns the new array of filtered values. - * @see _.difference, _.xor - * @example + * Creates an array that is the composition of partially applied arguments, + * placeholders, and provided arguments into a single array of arguments. * - * _.without([2, 1, 2, 3], 1, 2); - * // => [3] + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to prepend to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. */ - var without = baseRest(function(array, values) { - return isArrayLikeObject(array) - ? baseDifference(array, values) - : []; - }); + function composeArgs(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersLength = holders.length, + leftIndex = -1, + leftLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(leftLength + rangeLength), + isUncurried = !isCurried; + + while (++leftIndex < leftLength) { + result[leftIndex] = partials[leftIndex]; + } + while (++argsIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[holders[argsIndex]] = args[argsIndex]; + } + } + while (rangeLength--) { + result[leftIndex++] = args[argsIndex++]; + } + return result; + } /** - * Creates an array of unique values that is the - * [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) - * of the given arrays. The order of result values is determined by the order - * they occur in the arrays. - * - * @static - * @memberOf _ - * @since 2.4.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @returns {Array} Returns the new array of filtered values. - * @see _.difference, _.without - * @example + * This function is like `composeArgs` except that the arguments composition + * is tailored for `_.partialRight`. * - * _.xor([2, 1], [2, 3]); - * // => [1, 3] + * @private + * @param {Array} args The provided arguments. + * @param {Array} partials The arguments to append to those provided. + * @param {Array} holders The `partials` placeholder indexes. + * @params {boolean} [isCurried] Specify composing for a curried function. + * @returns {Array} Returns the new array of composed arguments. */ - var xor = baseRest(function(arrays) { - return baseXor(arrayFilter(arrays, isArrayLikeObject)); - }); + function composeArgsRight(args, partials, holders, isCurried) { + var argsIndex = -1, + argsLength = args.length, + holdersIndex = -1, + holdersLength = holders.length, + rightIndex = -1, + rightLength = partials.length, + rangeLength = nativeMax(argsLength - holdersLength, 0), + result = Array(rangeLength + rightLength), + isUncurried = !isCurried; + + while (++argsIndex < rangeLength) { + result[argsIndex] = args[argsIndex]; + } + var offset = argsIndex; + while (++rightIndex < rightLength) { + result[offset + rightIndex] = partials[rightIndex]; + } + while (++holdersIndex < holdersLength) { + if (isUncurried || argsIndex < argsLength) { + result[offset + holders[holdersIndex]] = args[argsIndex++]; + } + } + return result; + } /** - * This method is like `_.xor` except that it accepts `iteratee` which is - * invoked for each element of each `arrays` to generate the criterion by - * which by which they're compared. The order of result values is determined - * by the order they occur in the arrays. The iteratee is invoked with one - * argument: (value). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns the new array of filtered values. - * @example - * - * _.xorBy([2.1, 1.2], [2.3, 3.4], Math.floor); - * // => [1.2, 3.4] + * Copies the values of `source` to `array`. * - * // The `_.property` iteratee shorthand. - * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); - * // => [{ 'x': 2 }] + * @private + * @param {Array} source The array to copy values from. + * @param {Array} [array=[]] The array to copy values to. + * @returns {Array} Returns `array`. */ - var xorBy = baseRest(function(arrays) { - var iteratee = last(arrays); - if (isArrayLikeObject(iteratee)) { - iteratee = undefined; + function copyArray(source, array) { + var index = -1, + length = source.length; + + array || (array = Array(length)); + while (++index < length) { + array[index] = source[index]; } - return baseXor(arrayFilter(arrays, isArrayLikeObject), getIteratee(iteratee, 2)); - }); + return array; + } /** - * This method is like `_.xor` except that it accepts `comparator` which is - * invoked to compare elements of `arrays`. The order of result values is - * determined by the order they occur in the arrays. The comparator is invoked - * with two arguments: (arrVal, othVal). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of filtered values. - * @example - * - * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; - * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * Copies properties of `source` to `object`. * - * _.xorWith(objects, others, _.isEqual); - * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + * @private + * @param {Object} source The object to copy properties from. + * @param {Array} props The property identifiers to copy. + * @param {Object} [object={}] The object to copy properties to. + * @param {Function} [customizer] The function to customize copied values. + * @returns {Object} Returns `object`. */ - var xorWith = baseRest(function(arrays) { - var comparator = last(arrays); - comparator = typeof comparator == 'function' ? comparator : undefined; - return baseXor(arrayFilter(arrays, isArrayLikeObject), undefined, comparator); - }); + function copyObject(source, props, object, customizer) { + var isNew = !object; + object || (object = {}); + + var index = -1, + length = props.length; + + while (++index < length) { + var key = props[index]; + + var newValue = customizer + ? customizer(object[key], source[key], key, object, source) + : undefined; + + if (newValue === undefined) { + newValue = source[key]; + } + if (isNew) { + baseAssignValue(object, key, newValue); + } else { + assignValue(object, key, newValue); + } + } + return object; + } /** - * Creates an array of grouped elements, the first of which contains the - * first elements of the given arrays, the second of which contains the - * second elements of the given arrays, and so on. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Array - * @param {...Array} [arrays] The arrays to process. - * @returns {Array} Returns the new array of grouped elements. - * @example + * Copies own symbols of `source` to `object`. * - * _.zip(['a', 'b'], [1, 2], [true, false]); - * // => [['a', 1, true], ['b', 2, false]] + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. */ - var zip = baseRest(unzip); + function copySymbols(source, object) { + return copyObject(source, getSymbols(source), object); + } /** - * This method is like `_.fromPairs` except that it accepts two arrays, - * one of property identifiers and one of corresponding values. - * - * @static - * @memberOf _ - * @since 0.4.0 - * @category Array - * @param {Array} [props=[]] The property identifiers. - * @param {Array} [values=[]] The property values. - * @returns {Object} Returns the new object. - * @example + * Copies own and inherited symbols of `source` to `object`. * - * _.zipObject(['a', 'b'], [1, 2]); - * // => { 'a': 1, 'b': 2 } + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. */ - function zipObject(props, values) { - return baseZipObject(props || [], values || [], assignValue); + function copySymbolsIn(source, object) { + return copyObject(source, getSymbolsIn(source), object); } /** - * This method is like `_.zipObject` except that it supports property paths. - * - * @static - * @memberOf _ - * @since 4.1.0 - * @category Array - * @param {Array} [props=[]] The property identifiers. - * @param {Array} [values=[]] The property values. - * @returns {Object} Returns the new object. - * @example + * Creates a function like `_.groupBy`. * - * _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]); - * // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } } + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} [initializer] The accumulator object initializer. + * @returns {Function} Returns the new aggregator function. */ - function zipObjectDeep(props, values) { - return baseZipObject(props || [], values || [], baseSet); + function createAggregator(setter, initializer) { + return function(collection, iteratee) { + var func = isArray(collection) ? arrayAggregator : baseAggregator, + accumulator = initializer ? initializer() : {}; + + return func(collection, setter, getIteratee(iteratee, 2), accumulator); + }; } /** - * This method is like `_.zip` except that it accepts `iteratee` to specify - * how grouped values should be combined. The iteratee is invoked with the - * elements of each group: (...group). - * - * @static - * @memberOf _ - * @since 3.8.0 - * @category Array - * @param {...Array} [arrays] The arrays to process. - * @param {Function} [iteratee=_.identity] The function to combine - * grouped values. - * @returns {Array} Returns the new array of grouped elements. - * @example + * Creates a function like `_.assign`. * - * _.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) { - * return a + b + c; - * }); - * // => [111, 222] + * @private + * @param {Function} assigner The function to assign values. + * @returns {Function} Returns the new assigner function. */ - var zipWith = baseRest(function(arrays) { - var length = arrays.length, - iteratee = length > 1 ? arrays[length - 1] : undefined; + function createAssigner(assigner) { + return baseRest(function(object, sources) { + var index = -1, + length = sources.length, + customizer = length > 1 ? sources[length - 1] : undefined, + guard = length > 2 ? sources[2] : undefined; - iteratee = typeof iteratee == 'function' ? (arrays.pop(), iteratee) : undefined; - return unzipWith(arrays, iteratee); - }); + customizer = (assigner.length > 3 && typeof customizer == 'function') + ? (length--, customizer) + : undefined; - /*------------------------------------------------------------------------*/ + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + customizer = length < 3 ? undefined : customizer; + length = 1; + } + object = Object(object); + while (++index < length) { + var source = sources[index]; + if (source) { + assigner(object, source, index, customizer); + } + } + return object; + }); + } /** - * Creates a `lodash` wrapper instance that wraps `value` with explicit method - * chain sequences enabled. The result of such sequences must be unwrapped - * with `_#value`. - * - * @static - * @memberOf _ - * @since 1.3.0 - * @category Seq - * @param {*} value The value to wrap. - * @returns {Object} Returns the new `lodash` wrapper instance. - * @example - * - * var users = [ - * { 'user': 'barney', 'age': 36 }, - * { 'user': 'fred', 'age': 40 }, - * { 'user': 'pebbles', 'age': 1 } - * ]; + * Creates a `baseEach` or `baseEachRight` function. * - * var youngest = _ - * .chain(users) - * .sortBy('age') - * .map(function(o) { - * return o.user + ' is ' + o.age; - * }) - * .head() - * .value(); - * // => 'pebbles is 1' + * @private + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. */ - function chain(value) { - var result = lodash(value); - result.__chain__ = true; - return result; + function createBaseEach(eachFunc, fromRight) { + return function(collection, iteratee) { + if (collection == null) { + return collection; + } + if (!isArrayLike(collection)) { + return eachFunc(collection, iteratee); + } + var length = collection.length, + index = fromRight ? length : -1, + iterable = Object(collection); + + while ((fromRight ? index-- : ++index < length)) { + if (iteratee(iterable[index], index, iterable) === false) { + break; + } + } + return collection; + }; } /** - * This method invokes `interceptor` and returns `value`. The interceptor - * is invoked with one argument; (value). The purpose of this method is to - * "tap into" a method chain sequence in order to modify intermediate results. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Seq - * @param {*} value The value to provide to `interceptor`. - * @param {Function} interceptor The function to invoke. - * @returns {*} Returns `value`. - * @example + * Creates a base function for methods like `_.forIn` and `_.forOwn`. * - * _([1, 2, 3]) - * .tap(function(array) { - * // Mutate input array. - * array.pop(); - * }) - * .reverse() - * .value(); - * // => [2, 1] + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. */ - function tap(value, interceptor) { - interceptor(value); - return value; + function createBaseFor(fromRight) { + return function(object, iteratee, keysFunc) { + var index = -1, + iterable = Object(object), + props = keysFunc(object), + length = props.length; + + while (length--) { + var key = props[fromRight ? length : ++index]; + if (iteratee(iterable[key], key, iterable) === false) { + break; + } + } + return object; + }; } /** - * This method is like `_.tap` except that it returns the result of `interceptor`. - * The purpose of this method is to "pass thru" values replacing intermediate - * results in a method chain sequence. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Seq - * @param {*} value The value to provide to `interceptor`. - * @param {Function} interceptor The function to invoke. - * @returns {*} Returns the result of `interceptor`. - * @example + * Creates a function that wraps `func` to invoke it with the optional `this` + * binding of `thisArg`. * - * _(' abc ') - * .chain() - * .trim() - * .thru(function(value) { - * return [value]; - * }) - * .value(); - * // => ['abc'] + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @returns {Function} Returns the new wrapped function. */ - function thru(value, interceptor) { - return interceptor(value); + function createBind(func, bitmask, thisArg) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return fn.apply(isBind ? thisArg : this, arguments); + } + return wrapper; } /** - * This method is the wrapper version of `_.at`. - * - * @name at - * @memberOf _ - * @since 1.0.0 - * @category Seq - * @param {...(string|string[])} [paths] The property paths to pick. - * @returns {Object} Returns the new `lodash` wrapper instance. - * @example - * - * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * Creates a function like `_.lowerFirst`. * - * _(object).at(['a[0].b.c', 'a[1]']).value(); - * // => [3, 4] + * @private + * @param {string} methodName The name of the `String` case method to use. + * @returns {Function} Returns the new case function. */ - var wrapperAt = flatRest(function(paths) { - var length = paths.length, - start = length ? paths[0] : 0, - value = this.__wrapped__, - interceptor = function(object) { return baseAt(object, paths); }; + function createCaseFirst(methodName) { + return function(string) { + string = toString(string); - if (length > 1 || this.__actions__.length || - !(value instanceof LazyWrapper) || !isIndex(start)) { - return this.thru(interceptor); - } - value = value.slice(start, +start + (length ? 1 : 0)); - value.__actions__.push({ - 'func': thru, - 'args': [interceptor], - 'thisArg': undefined - }); - return new LodashWrapper(value, this.__chain__).thru(function(array) { - if (length && !array.length) { - array.push(undefined); - } - return array; - }); - }); + var strSymbols = hasUnicode(string) + ? stringToArray(string) + : undefined; + + var chr = strSymbols + ? strSymbols[0] + : string.charAt(0); + + var trailing = strSymbols + ? castSlice(strSymbols, 1).join('') + : string.slice(1); + + return chr[methodName]() + trailing; + }; + } /** - * Creates a `lodash` wrapper instance with explicit method chain sequences enabled. - * - * @name chain - * @memberOf _ - * @since 0.1.0 - * @category Seq - * @returns {Object} Returns the new `lodash` wrapper instance. - * @example - * - * var users = [ - * { 'user': 'barney', 'age': 36 }, - * { 'user': 'fred', 'age': 40 } - * ]; - * - * // A sequence without explicit chaining. - * _(users).head(); - * // => { 'user': 'barney', 'age': 36 } + * Creates a function like `_.camelCase`. * - * // A sequence with explicit chaining. - * _(users) - * .chain() - * .head() - * .pick('user') - * .value(); - * // => { 'user': 'barney' } + * @private + * @param {Function} callback The function to combine each word. + * @returns {Function} Returns the new compounder function. */ - function wrapperChain() { - return chain(this); + function createCompounder(callback) { + return function(string) { + return arrayReduce(words(deburr(string).replace(reApos, '')), callback, ''); + }; } /** - * Executes the chain sequence and returns the wrapped result. - * - * @name commit - * @memberOf _ - * @since 3.2.0 - * @category Seq - * @returns {Object} Returns the new `lodash` wrapper instance. - * @example - * - * var array = [1, 2]; - * var wrapped = _(array).push(3); - * - * console.log(array); - * // => [1, 2] - * - * wrapped = wrapped.commit(); - * console.log(array); - * // => [1, 2, 3] - * - * wrapped.last(); - * // => 3 + * Creates a function that produces an instance of `Ctor` regardless of + * whether it was invoked as part of a `new` expression or by `call` or `apply`. * - * console.log(array); - * // => [1, 2, 3] + * @private + * @param {Function} Ctor The constructor to wrap. + * @returns {Function} Returns the new wrapped function. */ - function wrapperCommit() { - return new LodashWrapper(this.value(), this.__chain__); + function createCtor(Ctor) { + return function() { + // Use a `switch` statement to work with class constructors. See + // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist + // for more details. + var args = arguments; + switch (args.length) { + case 0: return new Ctor; + case 1: return new Ctor(args[0]); + case 2: return new Ctor(args[0], args[1]); + case 3: return new Ctor(args[0], args[1], args[2]); + case 4: return new Ctor(args[0], args[1], args[2], args[3]); + case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); + case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); + case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); + } + var thisBinding = baseCreate(Ctor.prototype), + result = Ctor.apply(thisBinding, args); + + // Mimic the constructor's `return` behavior. + // See https://es5.github.io/#x13.2.2 for more details. + return isObject(result) ? result : thisBinding; + }; } /** - * Gets the next value on a wrapped object following the - * [iterator protocol](https://mdn.io/iteration_protocols#iterator). - * - * @name next - * @memberOf _ - * @since 4.0.0 - * @category Seq - * @returns {Object} Returns the next iterator value. - * @example - * - * var wrapped = _([1, 2]); - * - * wrapped.next(); - * // => { 'done': false, 'value': 1 } - * - * wrapped.next(); - * // => { 'done': false, 'value': 2 } + * Creates a function that wraps `func` to enable currying. * - * wrapped.next(); - * // => { 'done': true, 'value': undefined } + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {number} arity The arity of `func`. + * @returns {Function} Returns the new wrapped function. */ - function wrapperNext() { - if (this.__values__ === undefined) { - this.__values__ = toArray(this.value()); - } - var done = this.__index__ >= this.__values__.length, - value = done ? undefined : this.__values__[this.__index__++]; + function createCurry(func, bitmask, arity) { + var Ctor = createCtor(func); - return { 'done': done, 'value': value }; + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length, + placeholder = getHolder(wrapper); + + while (index--) { + args[index] = arguments[index]; + } + var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder) + ? [] + : replaceHolders(args, placeholder); + + length -= holders.length; + if (length < arity) { + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, undefined, + args, holders, undefined, undefined, arity - length); + } + var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + return apply(fn, this, args); + } + return wrapper; } /** - * Enables the wrapper to be iterable. - * - * @name Symbol.iterator - * @memberOf _ - * @since 4.0.0 - * @category Seq - * @returns {Object} Returns the wrapper object. - * @example - * - * var wrapped = _([1, 2]); - * - * wrapped[Symbol.iterator]() === wrapped; - * // => true + * Creates a `_.find` or `_.findLast` function. * - * Array.from(wrapped); - * // => [1, 2] + * @private + * @param {Function} findIndexFunc The function to find the collection index. + * @returns {Function} Returns the new find function. */ - function wrapperToIterator() { - return this; + function createFind(findIndexFunc) { + return function(collection, predicate, fromIndex) { + var iterable = Object(collection); + if (!isArrayLike(collection)) { + var iteratee = getIteratee(predicate, 3); + collection = keys(collection); + predicate = function(key) { return iteratee(iterable[key], key, iterable); }; + } + var index = findIndexFunc(collection, predicate, fromIndex); + return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined; + }; } /** - * Creates a clone of the chain sequence planting `value` as the wrapped value. - * - * @name plant - * @memberOf _ - * @since 3.2.0 - * @category Seq - * @param {*} value The value to plant. - * @returns {Object} Returns the new `lodash` wrapper instance. - * @example - * - * function square(n) { - * return n * n; - * } - * - * var wrapped = _([1, 2]).map(square); - * var other = wrapped.plant([3, 4]); - * - * other.value(); - * // => [9, 16] + * Creates a `_.flow` or `_.flowRight` function. * - * wrapped.value(); - * // => [1, 4] + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new flow function. */ - function wrapperPlant(value) { - var result, - parent = this; + function createFlow(fromRight) { + return flatRest(function(funcs) { + var length = funcs.length, + index = length, + prereq = LodashWrapper.prototype.thru; - while (parent instanceof baseLodash) { - var clone = wrapperClone(parent); - clone.__index__ = 0; - clone.__values__ = undefined; - if (result) { - previous.__wrapped__ = clone; - } else { - result = clone; + if (fromRight) { + funcs.reverse(); } - var previous = clone; - parent = parent.__wrapped__; - } - previous.__wrapped__ = value; - return result; + while (index--) { + var func = funcs[index]; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + if (prereq && !wrapper && getFuncName(func) == 'wrapper') { + var wrapper = new LodashWrapper([], true); + } + } + index = wrapper ? index : length; + while (++index < length) { + func = funcs[index]; + + var funcName = getFuncName(func), + data = funcName == 'wrapper' ? getData(func) : undefined; + + if (data && isLaziable(data[0]) && + data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) && + !data[4].length && data[9] == 1 + ) { + wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]); + } else { + wrapper = (func.length == 1 && isLaziable(func)) + ? wrapper[funcName]() + : wrapper.thru(func); + } + } + return function() { + var args = arguments, + value = args[0]; + + if (wrapper && args.length == 1 && isArray(value)) { + return wrapper.plant(value).value(); + } + var index = 0, + result = length ? funcs[index].apply(this, args) : value; + + while (++index < length) { + result = funcs[index].call(this, result); + } + return result; + }; + }); } /** - * This method is the wrapper version of `_.reverse`. - * - * **Note:** This method mutates the wrapped array. - * - * @name reverse - * @memberOf _ - * @since 0.1.0 - * @category Seq - * @returns {Object} Returns the new `lodash` wrapper instance. - * @example - * - * var array = [1, 2, 3]; - * - * _(array).reverse().value() - * // => [3, 2, 1] + * Creates a function that wraps `func` to invoke it with optional `this` + * binding of `thisArg`, partial application, and currying. * - * console.log(array); - * // => [3, 2, 1] + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [partialsRight] The arguments to append to those provided + * to the new function. + * @param {Array} [holdersRight] The `partialsRight` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. */ - function wrapperReverse() { - var value = this.__wrapped__; - if (value instanceof LazyWrapper) { - var wrapped = value; - if (this.__actions__.length) { - wrapped = new LazyWrapper(this); + function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { + var isAry = bitmask & WRAP_ARY_FLAG, + isBind = bitmask & WRAP_BIND_FLAG, + isBindKey = bitmask & WRAP_BIND_KEY_FLAG, + isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG), + isFlip = bitmask & WRAP_FLIP_FLAG, + Ctor = isBindKey ? undefined : createCtor(func); + + function wrapper() { + var length = arguments.length, + args = Array(length), + index = length; + + while (index--) { + args[index] = arguments[index]; } - wrapped = wrapped.reverse(); - wrapped.__actions__.push({ - 'func': thru, - 'args': [reverse], - 'thisArg': undefined - }); - return new LodashWrapper(wrapped, this.__chain__); + if (isCurried) { + var placeholder = getHolder(wrapper), + holdersCount = countHolders(args, placeholder); + } + if (partials) { + args = composeArgs(args, partials, holders, isCurried); + } + if (partialsRight) { + args = composeArgsRight(args, partialsRight, holdersRight, isCurried); + } + length -= holdersCount; + if (isCurried && length < arity) { + var newHolders = replaceHolders(args, placeholder); + return createRecurry( + func, bitmask, createHybrid, wrapper.placeholder, thisArg, + args, newHolders, argPos, ary, arity - length + ); + } + var thisBinding = isBind ? thisArg : this, + fn = isBindKey ? thisBinding[func] : func; + + length = args.length; + if (argPos) { + args = reorder(args, argPos); + } else if (isFlip && length > 1) { + args.reverse(); + } + if (isAry && ary < length) { + args.length = ary; + } + if (this && this !== root && this instanceof wrapper) { + fn = Ctor || createCtor(fn); + } + return fn.apply(thisBinding, args); } - return this.thru(reverse); + return wrapper; } /** - * Executes the chain sequence to resolve the unwrapped value. - * - * @name value - * @memberOf _ - * @since 0.1.0 - * @alias toJSON, valueOf - * @category Seq - * @returns {*} Returns the resolved unwrapped value. - * @example + * Creates a function like `_.invertBy`. * - * _([1, 2, 3]).value(); - * // => [1, 2, 3] + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} toIteratee The function to resolve iteratees. + * @returns {Function} Returns the new inverter function. */ - function wrapperValue() { - return baseWrapperValue(this.__wrapped__, this.__actions__); + function createInverter(setter, toIteratee) { + return function(object, iteratee) { + return baseInverter(object, setter, toIteratee(iteratee), {}); + }; } - /*------------------------------------------------------------------------*/ - /** - * Creates an object composed of keys generated from the results of running - * each element of `collection` thru `iteratee`. The corresponding value of - * each key is the number of times the key was returned by `iteratee`. The - * iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 0.5.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee to transform keys. - * @returns {Object} Returns the composed aggregate object. - * @example - * - * _.countBy([6.1, 4.2, 6.3], Math.floor); - * // => { '4': 1, '6': 2 } + * Creates a function that performs a mathematical operation on two values. * - * // The `_.property` iteratee shorthand. - * _.countBy(['one', 'two', 'three'], 'length'); - * // => { '3': 2, '5': 1 } + * @private + * @param {Function} operator The function to perform the operation. + * @param {number} [defaultValue] The value used for `undefined` arguments. + * @returns {Function} Returns the new mathematical operation function. */ - var countBy = createAggregator(function(result, value, key) { - if (hasOwnProperty.call(result, key)) { - ++result[key]; - } else { - baseAssignValue(result, key, 1); - } - }); + function createMathOperation(operator, defaultValue) { + return function(value, other) { + var result; + if (value === undefined && other === undefined) { + return defaultValue; + } + if (value !== undefined) { + result = value; + } + if (other !== undefined) { + if (result === undefined) { + return other; + } + if (typeof value == 'string' || typeof other == 'string') { + value = baseToString(value); + other = baseToString(other); + } else { + value = baseToNumber(value); + other = baseToNumber(other); + } + result = operator(value, other); + } + return result; + }; + } /** - * Checks if `predicate` returns truthy for **all** elements of `collection`. - * Iteration is stopped once `predicate` returns falsey. The predicate is - * invoked with three arguments: (value, index|key, collection). - * - * **Note:** This method returns `true` for - * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because - * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of - * elements of empty collections. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {boolean} Returns `true` if all elements pass the predicate check, - * else `false`. - * @example - * - * _.every([true, 1, null, 'yes'], Boolean); - * // => false - * - * var users = [ - * { 'user': 'barney', 'age': 36, 'active': false }, - * { 'user': 'fred', 'age': 40, 'active': false } - * ]; - * - * // The `_.matches` iteratee shorthand. - * _.every(users, { 'user': 'barney', 'active': false }); - * // => false - * - * // The `_.matchesProperty` iteratee shorthand. - * _.every(users, ['active', false]); - * // => true + * Creates a function like `_.over`. * - * // The `_.property` iteratee shorthand. - * _.every(users, 'active'); - * // => false + * @private + * @param {Function} arrayFunc The function to iterate over iteratees. + * @returns {Function} Returns the new over function. */ - function every(collection, predicate, guard) { - var func = isArray(collection) ? arrayEvery : baseEvery; - if (guard && isIterateeCall(collection, predicate, guard)) { - predicate = undefined; - } - return func(collection, getIteratee(predicate, 3)); + function createOver(arrayFunc) { + return flatRest(function(iteratees) { + iteratees = arrayMap(iteratees, baseUnary(getIteratee())); + return baseRest(function(args) { + var thisArg = this; + return arrayFunc(iteratees, function(iteratee) { + return apply(iteratee, thisArg, args); + }); + }); + }); } /** - * Iterates over elements of `collection`, returning an array of all elements - * `predicate` returns truthy for. The predicate is invoked with three - * arguments: (value, index|key, collection). - * - * **Note:** Unlike `_.remove`, this method returns a new array. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {Array} Returns the new filtered array. - * @see _.reject - * @example - * - * var users = [ - * { 'user': 'barney', 'age': 36, 'active': true }, - * { 'user': 'fred', 'age': 40, 'active': false } - * ]; - * - * _.filter(users, function(o) { return !o.active; }); - * // => objects for ['fred'] - * - * // The `_.matches` iteratee shorthand. - * _.filter(users, { 'age': 36, 'active': true }); - * // => objects for ['barney'] - * - * // The `_.matchesProperty` iteratee shorthand. - * _.filter(users, ['active', false]); - * // => objects for ['fred'] - * - * // The `_.property` iteratee shorthand. - * _.filter(users, 'active'); - * // => objects for ['barney'] + * Creates the padding for `string` based on `length`. The `chars` string + * is truncated if the number of characters exceeds `length`. * - * // Combining several predicates using `_.overEvery` or `_.overSome`. - * _.filter(users, _.overSome([{ 'age': 36 }, ['age', 40]])); - * // => objects for ['fred', 'barney'] + * @private + * @param {number} length The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padding for `string`. */ - function filter(collection, predicate) { - var func = isArray(collection) ? arrayFilter : baseFilter; - return func(collection, getIteratee(predicate, 3)); + function createPadding(length, chars) { + chars = chars === undefined ? ' ' : baseToString(chars); + + var charsLength = chars.length; + if (charsLength < 2) { + return charsLength ? baseRepeat(chars, length) : chars; + } + var result = baseRepeat(chars, nativeCeil(length / stringSize(chars))); + return hasUnicode(chars) + ? castSlice(stringToArray(result), 0, length).join('') + : result.slice(0, length); } /** - * Iterates over elements of `collection`, returning the first element - * `predicate` returns truthy for. The predicate is invoked with three - * arguments: (value, index|key, collection). - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to inspect. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param {number} [fromIndex=0] The index to search from. - * @returns {*} Returns the matched element, else `undefined`. - * @example - * - * var users = [ - * { 'user': 'barney', 'age': 36, 'active': true }, - * { 'user': 'fred', 'age': 40, 'active': false }, - * { 'user': 'pebbles', 'age': 1, 'active': true } - * ]; - * - * _.find(users, function(o) { return o.age < 40; }); - * // => object for 'barney' - * - * // The `_.matches` iteratee shorthand. - * _.find(users, { 'age': 1, 'active': true }); - * // => object for 'pebbles' - * - * // The `_.matchesProperty` iteratee shorthand. - * _.find(users, ['active', false]); - * // => object for 'fred' + * Creates a function that wraps `func` to invoke it with the `this` binding + * of `thisArg` and `partials` prepended to the arguments it receives. * - * // The `_.property` iteratee shorthand. - * _.find(users, 'active'); - * // => object for 'barney' + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} partials The arguments to prepend to those provided to + * the new function. + * @returns {Function} Returns the new wrapped function. */ - var find = createFind(findIndex); + function createPartial(func, bitmask, thisArg, partials) { + var isBind = bitmask & WRAP_BIND_FLAG, + Ctor = createCtor(func); + + function wrapper() { + var argsIndex = -1, + argsLength = arguments.length, + leftIndex = -1, + leftLength = partials.length, + args = Array(leftLength + argsLength), + fn = (this && this !== root && this instanceof wrapper) ? Ctor : func; + + while (++leftIndex < leftLength) { + args[leftIndex] = partials[leftIndex]; + } + while (argsLength--) { + args[leftIndex++] = arguments[++argsIndex]; + } + return apply(fn, isBind ? thisArg : this, args); + } + return wrapper; + } /** - * This method is like `_.find` except that it iterates over elements of - * `collection` from right to left. - * - * @static - * @memberOf _ - * @since 2.0.0 - * @category Collection - * @param {Array|Object} collection The collection to inspect. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param {number} [fromIndex=collection.length-1] The index to search from. - * @returns {*} Returns the matched element, else `undefined`. - * @example + * Creates a `_.range` or `_.rangeRight` function. * - * _.findLast([1, 2, 3, 4], function(n) { - * return n % 2 == 1; - * }); - * // => 3 + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new range function. */ - var findLast = createFind(findLastIndex); + function createRange(fromRight) { + return function(start, end, step) { + if (step && typeof step != 'number' && isIterateeCall(start, end, step)) { + end = step = undefined; + } + // Ensure the sign of `-0` is preserved. + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + step = step === undefined ? (start < end ? 1 : -1) : toFinite(step); + return baseRange(start, end, step, fromRight); + }; + } /** - * Creates a flattened array of values by running each element in `collection` - * thru `iteratee` and flattening the mapped results. The iteratee is invoked - * with three arguments: (value, index|key, collection). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Array} Returns the new flattened array. - * @example - * - * function duplicate(n) { - * return [n, n]; - * } + * Creates a function that performs a relational operation on two values. * - * _.flatMap([1, 2], duplicate); - * // => [1, 1, 2, 2] + * @private + * @param {Function} operator The function to perform the operation. + * @returns {Function} Returns the new relational operation function. */ - function flatMap(collection, iteratee) { - return baseFlatten(map(collection, iteratee), 1); + function createRelationalOperation(operator) { + return function(value, other) { + if (!(typeof value == 'string' && typeof other == 'string')) { + value = toNumber(value); + other = toNumber(other); + } + return operator(value, other); + }; } /** - * This method is like `_.flatMap` except that it recursively flattens the - * mapped results. - * - * @static - * @memberOf _ - * @since 4.7.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Array} Returns the new flattened array. - * @example - * - * function duplicate(n) { - * return [[[n, n]]]; - * } + * Creates a function that wraps `func` to continue currying. * - * _.flatMapDeep([1, 2], duplicate); - * // => [1, 1, 2, 2] + * @private + * @param {Function} func The function to wrap. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @param {Function} wrapFunc The function to create the `func` wrapper. + * @param {*} placeholder The placeholder value. + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to prepend to those provided to + * the new function. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. */ - function flatMapDeep(collection, iteratee) { - return baseFlatten(map(collection, iteratee), INFINITY); + function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { + var isCurry = bitmask & WRAP_CURRY_FLAG, + newHolders = isCurry ? holders : undefined, + newHoldersRight = isCurry ? undefined : holders, + newPartials = isCurry ? partials : undefined, + newPartialsRight = isCurry ? undefined : partials; + + bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG); + bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG); + + if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) { + bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG); + } + var newData = [ + func, bitmask, thisArg, newPartials, newHolders, newPartialsRight, + newHoldersRight, argPos, ary, arity + ]; + + var result = wrapFunc.apply(undefined, newData); + if (isLaziable(func)) { + setData(result, newData); + } + result.placeholder = placeholder; + return setWrapToString(result, func, bitmask); } /** - * This method is like `_.flatMap` except that it recursively flattens the - * mapped results up to `depth` times. - * - * @static - * @memberOf _ - * @since 4.7.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @param {number} [depth=1] The maximum recursion depth. - * @returns {Array} Returns the new flattened array. - * @example - * - * function duplicate(n) { - * return [[[n, n]]]; - * } + * Creates a function like `_.round`. * - * _.flatMapDepth([1, 2], duplicate, 2); - * // => [[1, 1], [2, 2]] + * @private + * @param {string} methodName The name of the `Math` method to use when rounding. + * @returns {Function} Returns the new round function. */ - function flatMapDepth(collection, iteratee, depth) { - depth = depth === undefined ? 1 : toInteger(depth); - return baseFlatten(map(collection, iteratee), depth); + function createRound(methodName) { + var func = Math[methodName]; + return function(number, precision) { + number = toNumber(number); + precision = precision == null ? 0 : nativeMin(toInteger(precision), 292); + if (precision && nativeIsFinite(number)) { + // Shift with exponential notation to avoid floating-point issues. + // See [MDN](https://mdn.io/round#Examples) for more details. + var pair = (toString(number) + 'e').split('e'), + value = func(pair[0] + 'e' + (+pair[1] + precision)); + + pair = (toString(value) + 'e').split('e'); + return +(pair[0] + 'e' + (+pair[1] - precision)); + } + return func(number); + }; } /** - * Iterates over elements of `collection` and invokes `iteratee` for each element. - * The iteratee is invoked with three arguments: (value, index|key, collection). - * Iteratee functions may exit iteration early by explicitly returning `false`. - * - * **Note:** As with other "Collections" methods, objects with a "length" - * property are iterated like arrays. To avoid this behavior use `_.forIn` - * or `_.forOwn` for object iteration. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @alias each - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Array|Object} Returns `collection`. - * @see _.forEachRight - * @example - * - * _.forEach([1, 2], function(value) { - * console.log(value); - * }); - * // => Logs `1` then `2`. + * Creates a set object of `values`. * - * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { - * console.log(key); - * }); - * // => Logs 'a' then 'b' (iteration order is not guaranteed). + * @private + * @param {Array} values The values to add to the set. + * @returns {Object} Returns the new set. */ - function forEach(collection, iteratee) { - var func = isArray(collection) ? arrayEach : baseEach; - return func(collection, getIteratee(iteratee, 3)); - } + var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) { + return new Set(values); + }; /** - * This method is like `_.forEach` except that it iterates over elements of - * `collection` from right to left. - * - * @static - * @memberOf _ - * @since 2.0.0 - * @alias eachRight - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Array|Object} Returns `collection`. - * @see _.forEach - * @example + * Creates a `_.toPairs` or `_.toPairsIn` function. * - * _.forEachRight([1, 2], function(value) { - * console.log(value); - * }); - * // => Logs `2` then `1`. + * @private + * @param {Function} keysFunc The function to get the keys of a given object. + * @returns {Function} Returns the new pairs function. */ - function forEachRight(collection, iteratee) { - var func = isArray(collection) ? arrayEachRight : baseEachRight; - return func(collection, getIteratee(iteratee, 3)); + function createToPairs(keysFunc) { + return function(object) { + var tag = getTag(object); + if (tag == mapTag) { + return mapToArray(object); + } + if (tag == setTag) { + return setToPairs(object); + } + return baseToPairs(object, keysFunc(object)); + }; } /** - * Creates an object composed of keys generated from the results of running - * each element of `collection` thru `iteratee`. The order of grouped values - * is determined by the order they occur in `collection`. The corresponding - * value of each key is an array of elements responsible for generating the - * key. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee to transform keys. - * @returns {Object} Returns the composed aggregate object. - * @example - * - * _.groupBy([6.1, 4.2, 6.3], Math.floor); - * // => { '4': [4.2], '6': [6.1, 6.3] } + * Creates a function that either curries or invokes `func` with optional + * `this` binding and partially applied arguments. * - * // The `_.property` iteratee shorthand. - * _.groupBy(['one', 'two', 'three'], 'length'); - * // => { '3': ['one', 'two'], '5': ['three'] } + * @private + * @param {Function|string} func The function or method name to wrap. + * @param {number} bitmask The bitmask flags. + * 1 - `_.bind` + * 2 - `_.bindKey` + * 4 - `_.curry` or `_.curryRight` of a bound function + * 8 - `_.curry` + * 16 - `_.curryRight` + * 32 - `_.partial` + * 64 - `_.partialRight` + * 128 - `_.rearg` + * 256 - `_.ary` + * 512 - `_.flip` + * @param {*} [thisArg] The `this` binding of `func`. + * @param {Array} [partials] The arguments to be partially applied. + * @param {Array} [holders] The `partials` placeholder indexes. + * @param {Array} [argPos] The argument positions of the new function. + * @param {number} [ary] The arity cap of `func`. + * @param {number} [arity] The arity of `func`. + * @returns {Function} Returns the new wrapped function. */ - var groupBy = createAggregator(function(result, value, key) { - if (hasOwnProperty.call(result, key)) { - result[key].push(value); + function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { + var isBindKey = bitmask & WRAP_BIND_KEY_FLAG; + if (!isBindKey && typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + var length = partials ? partials.length : 0; + if (!length) { + bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG); + partials = holders = undefined; + } + ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0); + arity = arity === undefined ? arity : toInteger(arity); + length -= holders ? holders.length : 0; + + if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) { + var partialsRight = partials, + holdersRight = holders; + + partials = holders = undefined; + } + var data = isBindKey ? undefined : getData(func); + + var newData = [ + func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, + argPos, ary, arity + ]; + + if (data) { + mergeData(newData, data); + } + func = newData[0]; + bitmask = newData[1]; + thisArg = newData[2]; + partials = newData[3]; + holders = newData[4]; + arity = newData[9] = newData[9] === undefined + ? (isBindKey ? 0 : func.length) + : nativeMax(newData[9] - length, 0); + + if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) { + bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG); + } + if (!bitmask || bitmask == WRAP_BIND_FLAG) { + var result = createBind(func, bitmask, thisArg); + } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) { + result = createCurry(func, bitmask, arity); + } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) { + result = createPartial(func, bitmask, thisArg, partials); } else { - baseAssignValue(result, key, [value]); + result = createHybrid.apply(undefined, newData); } - }); + var setter = data ? baseSetData : setData; + return setWrapToString(setter(result, newData), func, bitmask); + } /** - * Checks if `value` is in `collection`. If `collection` is a string, it's - * checked for a substring of `value`, otherwise - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * is used for equality comparisons. If `fromIndex` is negative, it's used as - * the offset from the end of `collection`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object|string} collection The collection to inspect. - * @param {*} value The value to search for. - * @param {number} [fromIndex=0] The index to search from. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. - * @returns {boolean} Returns `true` if `value` is found, else `false`. - * @example - * - * _.includes([1, 2, 3], 1); - * // => true - * - * _.includes([1, 2, 3], 1, 2); - * // => false - * - * _.includes({ 'a': 1, 'b': 2 }, 1); - * // => true + * Used by `_.defaults` to customize its `_.assignIn` use to assign properties + * of source objects to the destination object for all destination properties + * that resolve to `undefined`. * - * _.includes('abcd', 'bc'); - * // => true + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to assign. + * @param {Object} object The parent object of `objValue`. + * @returns {*} Returns the value to assign. */ - function includes(collection, value, fromIndex, guard) { - collection = isArrayLike(collection) ? collection : values(collection); - fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0; - - var length = collection.length; - if (fromIndex < 0) { - fromIndex = nativeMax(length + fromIndex, 0); + function customDefaultsAssignIn(objValue, srcValue, key, object) { + if (objValue === undefined || + (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) { + return srcValue; } - return isString(collection) - ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) - : (!!length && baseIndexOf(collection, value, fromIndex) > -1); + return objValue; } /** - * Invokes the method at `path` of each element in `collection`, returning - * an array of the results of each invoked method. Any additional arguments - * are provided to each invoked method. If `path` is a function, it's invoked - * for, and `this` bound to, each element in `collection`. + * Used by `_.defaultsDeep` to customize its `_.merge` use to merge source + * objects into destination objects that are passed thru. * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Array|Function|string} path The path of the method to invoke or - * the function invoked per iteration. - * @param {...*} [args] The arguments to invoke each method with. - * @returns {Array} Returns the array of results. - * @example + * @private + * @param {*} objValue The destination value. + * @param {*} srcValue The source value. + * @param {string} key The key of the property to merge. + * @param {Object} object The parent object of `objValue`. + * @param {Object} source The parent object of `srcValue`. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + * @returns {*} Returns the value to assign. + */ + function customDefaultsMerge(objValue, srcValue, key, object, source, stack) { + if (isObject(objValue) && isObject(srcValue)) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, objValue); + baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack); + stack['delete'](srcValue); + } + return objValue; + } + + /** + * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain + * objects. * - * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort'); - * // => [[1, 5, 7], [1, 2, 3]] + * @private + * @param {*} value The value to inspect. + * @param {string} key The key of the property to inspect. + * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. + */ + function customOmitClone(value) { + return isPlainObject(value) ? undefined : value; + } + + /** + * A specialized version of `baseIsEqualDeep` for arrays with support for + * partial deep comparisons. * - * _.invokeMap([123, 456], String.prototype.split, ''); - * // => [['1', '2', '3'], ['4', '5', '6']] + * @private + * @param {Array} array The array to compare. + * @param {Array} other The other array to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `array` and `other` objects. + * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. */ - var invokeMap = baseRest(function(collection, path, args) { + function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + arrLength = array.length, + othLength = other.length; + + if (arrLength != othLength && !(isPartial && othLength > arrLength)) { + return false; + } + // Check that cyclic values are equal. + var arrStacked = stack.get(array); + var othStacked = stack.get(other); + if (arrStacked && othStacked) { + return arrStacked == other && othStacked == array; + } var index = -1, - isFunc = typeof path == 'function', - result = isArrayLike(collection) ? Array(collection.length) : []; + result = true, + seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined; - baseEach(collection, function(value) { - result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args); - }); + stack.set(array, other); + stack.set(other, array); + + // Ignore non-index properties. + while (++index < arrLength) { + var arrValue = array[index], + othValue = other[index]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, arrValue, index, other, array, stack) + : customizer(arrValue, othValue, index, array, other, stack); + } + if (compared !== undefined) { + if (compared) { + continue; + } + result = false; + break; + } + // Recursively compare arrays (susceptible to call stack limits). + if (seen) { + if (!arraySome(other, function(othValue, othIndex) { + if (!cacheHas(seen, othIndex) && + (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { + return seen.push(othIndex); + } + })) { + result = false; + break; + } + } else if (!( + arrValue === othValue || + equalFunc(arrValue, othValue, bitmask, customizer, stack) + )) { + result = false; + break; + } + } + stack['delete'](array); + stack['delete'](other); return result; - }); + } /** - * Creates an object composed of keys generated from the results of running - * each element of `collection` thru `iteratee`. The corresponding value of - * each key is the last element responsible for generating the key. The - * iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee to transform keys. - * @returns {Object} Returns the composed aggregate object. - * @example - * - * var array = [ - * { 'dir': 'left', 'code': 97 }, - * { 'dir': 'right', 'code': 100 } - * ]; + * A specialized version of `baseIsEqualDeep` for comparing objects of + * the same `toStringTag`. * - * _.keyBy(array, function(o) { - * return String.fromCharCode(o.code); - * }); - * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } + * **Note:** This function only supports comparing values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. * - * _.keyBy(array, 'dir'); - * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {string} tag The `toStringTag` of the objects to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. */ - var keyBy = createAggregator(function(result, value, key) { - baseAssignValue(result, key, value); - }); + function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { + switch (tag) { + case dataViewTag: + if ((object.byteLength != other.byteLength) || + (object.byteOffset != other.byteOffset)) { + return false; + } + object = object.buffer; + other = other.buffer; - /** - * Creates an array of values by running each element in `collection` thru - * `iteratee`. The iteratee is invoked with three arguments: - * (value, index|key, collection). - * - * Many lodash methods are guarded to work as iteratees for methods like - * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. - * - * The guarded methods are: - * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, - * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, - * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, - * `template`, `trim`, `trimEnd`, `trimStart`, and `words` - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Array} Returns the new mapped array. - * @example - * - * function square(n) { - * return n * n; - * } - * - * _.map([4, 8], square); - * // => [16, 64] - * - * _.map({ 'a': 4, 'b': 8 }, square); - * // => [16, 64] (iteration order is not guaranteed) - * - * var users = [ - * { 'user': 'barney' }, - * { 'user': 'fred' } - * ]; - * - * // The `_.property` iteratee shorthand. - * _.map(users, 'user'); - * // => ['barney', 'fred'] - */ - function map(collection, iteratee) { - var func = isArray(collection) ? arrayMap : baseMap; - return func(collection, getIteratee(iteratee, 3)); + case arrayBufferTag: + if ((object.byteLength != other.byteLength) || + !equalFunc(new Uint8Array(object), new Uint8Array(other))) { + return false; + } + return true; + + case boolTag: + case dateTag: + case numberTag: + // Coerce booleans to `1` or `0` and dates to milliseconds. + // Invalid dates are coerced to `NaN`. + return eq(+object, +other); + + case errorTag: + return object.name == other.name && object.message == other.message; + + case regexpTag: + case stringTag: + // Coerce regexes to strings and treat strings, primitives and objects, + // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring + // for more details. + return object == (other + ''); + + case mapTag: + var convert = mapToArray; + + case setTag: + var isPartial = bitmask & COMPARE_PARTIAL_FLAG; + convert || (convert = setToArray); + + if (object.size != other.size && !isPartial) { + return false; + } + // Assume cyclic values are equal. + var stacked = stack.get(object); + if (stacked) { + return stacked == other; + } + bitmask |= COMPARE_UNORDERED_FLAG; + + // Recursively compare objects (susceptible to call stack limits). + stack.set(object, other); + var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack); + stack['delete'](object); + return result; + + case symbolTag: + if (symbolValueOf) { + return symbolValueOf.call(object) == symbolValueOf.call(other); + } + } + return false; } /** - * This method is like `_.sortBy` except that it allows specifying the sort - * orders of the iteratees to sort by. If `orders` is unspecified, all values - * are sorted in ascending order. Otherwise, specify an order of "desc" for - * descending or "asc" for ascending sort order of corresponding values. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]] - * The iteratees to sort by. - * @param {string[]} [orders] The sort orders of `iteratees`. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. - * @returns {Array} Returns the new sorted array. - * @example - * - * var users = [ - * { 'user': 'fred', 'age': 48 }, - * { 'user': 'barney', 'age': 34 }, - * { 'user': 'fred', 'age': 40 }, - * { 'user': 'barney', 'age': 36 } - * ]; + * A specialized version of `baseIsEqualDeep` for objects with support for + * partial deep comparisons. * - * // Sort by `user` in ascending order and by `age` in descending order. - * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); - * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. */ - function orderBy(collection, iteratees, orders, guard) { - if (collection == null) { - return []; + function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + objProps = getAllKeys(object), + objLength = objProps.length, + othProps = getAllKeys(other), + othLength = othProps.length; + + if (objLength != othLength && !isPartial) { + return false; } - if (!isArray(iteratees)) { - iteratees = iteratees == null ? [] : [iteratees]; + var index = objLength; + while (index--) { + var key = objProps[index]; + if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) { + return false; + } } - orders = guard ? undefined : orders; - if (!isArray(orders)) { - orders = orders == null ? [] : [orders]; + // Check that cyclic values are equal. + var objStacked = stack.get(object); + var othStacked = stack.get(other); + if (objStacked && othStacked) { + return objStacked == other && othStacked == object; } - return baseOrderBy(collection, iteratees, orders); + var result = true; + stack.set(object, other); + stack.set(other, object); + + var skipCtor = isPartial; + while (++index < objLength) { + key = objProps[index]; + var objValue = object[key], + othValue = other[key]; + + if (customizer) { + var compared = isPartial + ? customizer(othValue, objValue, key, other, object, stack) + : customizer(objValue, othValue, key, object, other, stack); + } + // Recursively compare objects (susceptible to call stack limits). + if (!(compared === undefined + ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) + : compared + )) { + result = false; + break; + } + skipCtor || (skipCtor = key == 'constructor'); + } + if (result && !skipCtor) { + var objCtor = object.constructor, + othCtor = other.constructor; + + // Non `Object` object instances with different constructors are not equal. + if (objCtor != othCtor && + ('constructor' in object && 'constructor' in other) && + !(typeof objCtor == 'function' && objCtor instanceof objCtor && + typeof othCtor == 'function' && othCtor instanceof othCtor)) { + result = false; + } + } + stack['delete'](object); + stack['delete'](other); + return result; } /** - * Creates an array of elements split into two groups, the first of which - * contains elements `predicate` returns truthy for, the second of which - * contains elements `predicate` returns falsey for. The predicate is - * invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {Array} Returns the array of grouped elements. - * @example - * - * var users = [ - * { 'user': 'barney', 'age': 36, 'active': false }, - * { 'user': 'fred', 'age': 40, 'active': true }, - * { 'user': 'pebbles', 'age': 1, 'active': false } - * ]; - * - * _.partition(users, function(o) { return o.active; }); - * // => objects for [['fred'], ['barney', 'pebbles']] - * - * // The `_.matches` iteratee shorthand. - * _.partition(users, { 'age': 1, 'active': false }); - * // => objects for [['pebbles'], ['barney', 'fred']] - * - * // The `_.matchesProperty` iteratee shorthand. - * _.partition(users, ['active', false]); - * // => objects for [['barney', 'pebbles'], ['fred']] + * A specialized version of `baseRest` which flattens the rest array. * - * // The `_.property` iteratee shorthand. - * _.partition(users, 'active'); - * // => objects for [['fred'], ['barney', 'pebbles']] + * @private + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. */ - var partition = createAggregator(function(result, value, key) { - result[key ? 0 : 1].push(value); - }, function() { return [[], []]; }); + function flatRest(func) { + return setToString(overRest(func, undefined, flatten), func + ''); + } /** - * Reduces `collection` to a value which is the accumulated result of running - * each element in `collection` thru `iteratee`, where each successive - * invocation is supplied the return value of the previous. If `accumulator` - * is not given, the first element of `collection` is used as the initial - * value. The iteratee is invoked with four arguments: - * (accumulator, value, index|key, collection). - * - * Many lodash methods are guarded to work as iteratees for methods like - * `_.reduce`, `_.reduceRight`, and `_.transform`. - * - * The guarded methods are: - * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`, - * and `sortBy` - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @param {*} [accumulator] The initial value. - * @returns {*} Returns the accumulated value. - * @see _.reduceRight - * @example - * - * _.reduce([1, 2], function(sum, n) { - * return sum + n; - * }, 0); - * // => 3 + * Creates an array of own enumerable property names and symbols of `object`. * - * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { - * (result[value] || (result[value] = [])).push(key); - * return result; - * }, {}); - * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed) + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. */ - function reduce(collection, iteratee, accumulator) { - var func = isArray(collection) ? arrayReduce : baseReduce, - initAccum = arguments.length < 3; - - return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEach); + function getAllKeys(object) { + return baseGetAllKeys(object, keys, getSymbols); } /** - * This method is like `_.reduce` except that it iterates over elements of - * `collection` from right to left. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @param {*} [accumulator] The initial value. - * @returns {*} Returns the accumulated value. - * @see _.reduce - * @example - * - * var array = [[0, 1], [2, 3], [4, 5]]; + * Creates an array of own and inherited enumerable property names and + * symbols of `object`. * - * _.reduceRight(array, function(flattened, other) { - * return flattened.concat(other); - * }, []); - * // => [4, 5, 2, 3, 0, 1] + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. */ - function reduceRight(collection, iteratee, accumulator) { - var func = isArray(collection) ? arrayReduceRight : baseReduce, - initAccum = arguments.length < 3; - - return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEachRight); + function getAllKeysIn(object) { + return baseGetAllKeys(object, keysIn, getSymbolsIn); } /** - * The opposite of `_.filter`; this method returns the elements of `collection` - * that `predicate` does **not** return truthy for. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {Array} Returns the new filtered array. - * @see _.filter - * @example - * - * var users = [ - * { 'user': 'barney', 'age': 36, 'active': false }, - * { 'user': 'fred', 'age': 40, 'active': true } - * ]; - * - * _.reject(users, function(o) { return !o.active; }); - * // => objects for ['fred'] - * - * // The `_.matches` iteratee shorthand. - * _.reject(users, { 'age': 40, 'active': true }); - * // => objects for ['barney'] + * Gets metadata for `func`. * - * // The `_.matchesProperty` iteratee shorthand. - * _.reject(users, ['active', false]); - * // => objects for ['fred'] + * @private + * @param {Function} func The function to query. + * @returns {*} Returns the metadata for `func`. + */ + var getData = !metaMap ? noop : function(func) { + return metaMap.get(func); + }; + + /** + * Gets the name of `func`. * - * // The `_.property` iteratee shorthand. - * _.reject(users, 'active'); - * // => objects for ['barney'] + * @private + * @param {Function} func The function to query. + * @returns {string} Returns the function name. */ - function reject(collection, predicate) { - var func = isArray(collection) ? arrayFilter : baseFilter; - return func(collection, negate(getIteratee(predicate, 3))); + function getFuncName(func) { + var result = (func.name + ''), + array = realNames[result], + length = hasOwnProperty.call(realNames, result) ? array.length : 0; + + while (length--) { + var data = array[length], + otherFunc = data.func; + if (otherFunc == null || otherFunc == func) { + return data.name; + } + } + return result; } /** - * Gets a random element from `collection`. - * - * @static - * @memberOf _ - * @since 2.0.0 - * @category Collection - * @param {Array|Object} collection The collection to sample. - * @returns {*} Returns the random element. - * @example + * Gets the argument placeholder value for `func`. * - * _.sample([1, 2, 3, 4]); - * // => 2 + * @private + * @param {Function} func The function to inspect. + * @returns {*} Returns the placeholder value. */ - function sample(collection) { - var func = isArray(collection) ? arraySample : baseSample; - return func(collection); + function getHolder(func) { + var object = hasOwnProperty.call(lodash, 'placeholder') ? lodash : func; + return object.placeholder; } /** - * Gets `n` random elements at unique keys from `collection` up to the - * size of `collection`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Collection - * @param {Array|Object} collection The collection to sample. - * @param {number} [n=1] The number of elements to sample. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Array} Returns the random elements. - * @example - * - * _.sampleSize([1, 2, 3], 2); - * // => [3, 1] + * Gets the appropriate "iteratee" function. If `_.iteratee` is customized, + * this function returns the custom method, otherwise it returns `baseIteratee`. + * If arguments are provided, the chosen function is invoked with them and + * its result is returned. * - * _.sampleSize([1, 2, 3], 4); - * // => [2, 3, 1] + * @private + * @param {*} [value] The value to convert to an iteratee. + * @param {number} [arity] The arity of the created iteratee. + * @returns {Function} Returns the chosen function or its result. */ - function sampleSize(collection, n, guard) { - if ((guard ? isIterateeCall(collection, n, guard) : n === undefined)) { - n = 1; - } else { - n = toInteger(n); - } - var func = isArray(collection) ? arraySampleSize : baseSampleSize; - return func(collection, n); + function getIteratee() { + var result = lodash.iteratee || iteratee; + result = result === iteratee ? baseIteratee : result; + return arguments.length ? result(arguments[0], arguments[1]) : result; } /** - * Creates an array of shuffled values, using a version of the - * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle). - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to shuffle. - * @returns {Array} Returns the new shuffled array. - * @example + * Gets the data for `map`. * - * _.shuffle([1, 2, 3, 4]); - * // => [4, 1, 3, 2] + * @private + * @param {Object} map The map to query. + * @param {string} key The reference key. + * @returns {*} Returns the map data. */ - function shuffle(collection) { - var func = isArray(collection) ? arrayShuffle : baseShuffle; - return func(collection); + function getMapData(map, key) { + var data = map.__data__; + return isKeyable(key) + ? data[typeof key == 'string' ? 'string' : 'hash'] + : data.map; } /** - * Gets the size of `collection` by returning its length for array-like - * values or the number of own enumerable string keyed properties for objects. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object|string} collection The collection to inspect. - * @returns {number} Returns the collection size. - * @example - * - * _.size([1, 2, 3]); - * // => 3 - * - * _.size({ 'a': 1, 'b': 2 }); - * // => 2 + * Gets the property names, values, and compare flags of `object`. * - * _.size('pebbles'); - * // => 7 + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the match data of `object`. */ - function size(collection) { - if (collection == null) { - return 0; - } - if (isArrayLike(collection)) { - return isString(collection) ? stringSize(collection) : collection.length; - } - var tag = getTag(collection); - if (tag == mapTag || tag == setTag) { - return collection.size; + function getMatchData(object) { + var result = keys(object), + length = result.length; + + while (length--) { + var key = result[length], + value = object[key]; + + result[length] = [key, value, isStrictComparable(value)]; } - return baseKeys(collection).length; + return result; } /** - * Checks if `predicate` returns truthy for **any** element of `collection`. - * Iteration is stopped once `predicate` returns truthy. The predicate is - * invoked with three arguments: (value, index|key, collection). - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {boolean} Returns `true` if any element passes the predicate check, - * else `false`. - * @example - * - * _.some([null, 0, 'yes', false], Boolean); - * // => true - * - * var users = [ - * { 'user': 'barney', 'active': true }, - * { 'user': 'fred', 'active': false } - * ]; - * - * // The `_.matches` iteratee shorthand. - * _.some(users, { 'user': 'barney', 'active': false }); - * // => false + * Gets the native function at `key` of `object`. * - * // The `_.matchesProperty` iteratee shorthand. - * _.some(users, ['active', false]); - * // => true + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the method to get. + * @returns {*} Returns the function if it's native, else `undefined`. + */ + function getNative(object, key) { + var value = getValue(object, key); + return baseIsNative(value) ? value : undefined; + } + + /** + * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. * - * // The `_.property` iteratee shorthand. - * _.some(users, 'active'); - * // => true + * @private + * @param {*} value The value to query. + * @returns {string} Returns the raw `toStringTag`. */ - function some(collection, predicate, guard) { - var func = isArray(collection) ? arraySome : baseSome; - if (guard && isIterateeCall(collection, predicate, guard)) { - predicate = undefined; + function getRawTag(value) { + var isOwn = hasOwnProperty.call(value, symToStringTag), + tag = value[symToStringTag]; + + try { + value[symToStringTag] = undefined; + var unmasked = true; + } catch (e) {} + + var result = nativeObjectToString.call(value); + if (unmasked) { + if (isOwn) { + value[symToStringTag] = tag; + } else { + delete value[symToStringTag]; + } } - return func(collection, getIteratee(predicate, 3)); + return result; } /** - * Creates an array of elements, sorted in ascending order by the results of - * running each element in a collection thru each iteratee. This method - * performs a stable sort, that is, it preserves the original sort order of - * equal elements. The iteratees are invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {...(Function|Function[])} [iteratees=[_.identity]] - * The iteratees to sort by. - * @returns {Array} Returns the new sorted array. - * @example - * - * var users = [ - * { 'user': 'fred', 'age': 48 }, - * { 'user': 'barney', 'age': 36 }, - * { 'user': 'fred', 'age': 30 }, - * { 'user': 'barney', 'age': 34 } - * ]; - * - * _.sortBy(users, [function(o) { return o.user; }]); - * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]] + * Creates an array of the own enumerable symbols of `object`. * - * _.sortBy(users, ['user', 'age']); - * // => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]] + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. */ - var sortBy = baseRest(function(collection, iteratees) { - if (collection == null) { + var getSymbols = !nativeGetSymbols ? stubArray : function(object) { + if (object == null) { return []; } - var length = iteratees.length; - if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) { - iteratees = []; - } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) { - iteratees = [iteratees[0]]; - } - return baseOrderBy(collection, baseFlatten(iteratees, 1), []); - }); - - /*------------------------------------------------------------------------*/ + object = Object(object); + return arrayFilter(nativeGetSymbols(object), function(symbol) { + return propertyIsEnumerable.call(object, symbol); + }); + }; /** - * Gets the timestamp of the number of milliseconds that have elapsed since - * the Unix epoch (1 January 1970 00:00:00 UTC). - * - * @static - * @memberOf _ - * @since 2.4.0 - * @category Date - * @returns {number} Returns the timestamp. - * @example + * Creates an array of the own and inherited enumerable symbols of `object`. * - * _.defer(function(stamp) { - * console.log(_.now() - stamp); - * }, _.now()); - * // => Logs the number of milliseconds it took for the deferred invocation. + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. */ - var now = ctxNow || function() { - return root.Date.now(); + var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) { + var result = []; + while (object) { + arrayPush(result, getSymbols(object)); + object = getPrototype(object); + } + return result; }; - /*------------------------------------------------------------------------*/ - /** - * The opposite of `_.before`; this method creates a function that invokes - * `func` once it's called `n` or more times. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {number} n The number of calls before `func` is invoked. - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new restricted function. - * @example - * - * var saves = ['profile', 'settings']; - * - * var done = _.after(saves.length, function() { - * console.log('done saving!'); - * }); + * Gets the `toStringTag` of `value`. * - * _.forEach(saves, function(type) { - * asyncSave({ 'type': type, 'complete': done }); - * }); - * // => Logs 'done saving!' after the two async saves have completed. + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. */ - function after(n, func) { - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - n = toInteger(n); - return function() { - if (--n < 1) { - return func.apply(this, arguments); + var getTag = baseGetTag; + + // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. + if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) || + (Map && getTag(new Map) != mapTag) || + (Promise && getTag(Promise.resolve()) != promiseTag) || + (Set && getTag(new Set) != setTag) || + (WeakMap && getTag(new WeakMap) != weakMapTag)) { + getTag = function(value) { + var result = baseGetTag(value), + Ctor = result == objectTag ? value.constructor : undefined, + ctorString = Ctor ? toSource(Ctor) : ''; + + if (ctorString) { + switch (ctorString) { + case dataViewCtorString: return dataViewTag; + case mapCtorString: return mapTag; + case promiseCtorString: return promiseTag; + case setCtorString: return setTag; + case weakMapCtorString: return weakMapTag; + } } + return result; }; } /** - * Creates a function that invokes `func`, with up to `n` arguments, - * ignoring any additional arguments. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Function - * @param {Function} func The function to cap arguments for. - * @param {number} [n=func.length] The arity cap. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Function} Returns the new capped function. - * @example + * Gets the view, applying any `transforms` to the `start` and `end` positions. * - * _.map(['6', '8', '10'], _.ary(parseInt, 1)); - * // => [6, 8, 10] + * @private + * @param {number} start The start of the view. + * @param {number} end The end of the view. + * @param {Array} transforms The transformations to apply to the view. + * @returns {Object} Returns an object containing the `start` and `end` + * positions of the view. */ - function ary(func, n, guard) { - n = guard ? undefined : n; - n = (func && n == null) ? func.length : n; - return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n); - } + function getView(start, end, transforms) { + var index = -1, + length = transforms.length; - /** - * Creates a function that invokes `func`, with the `this` binding and arguments - * of the created function, while it's called less than `n` times. Subsequent - * calls to the created function return the result of the last `func` invocation. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Function - * @param {number} n The number of calls at which `func` is no longer invoked. - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new restricted function. - * @example - * - * jQuery(element).on('click', _.before(5, addContactToList)); - * // => Allows adding up to 4 contacts to the list. - */ - function before(n, func) { - var result; - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - n = toInteger(n); - return function() { - if (--n > 0) { - result = func.apply(this, arguments); - } - if (n <= 1) { - func = undefined; + while (++index < length) { + var data = transforms[index], + size = data.size; + + switch (data.type) { + case 'drop': start += size; break; + case 'dropRight': end -= size; break; + case 'take': end = nativeMin(end, start + size); break; + case 'takeRight': start = nativeMax(start, end - size); break; } - return result; - }; + } + return { 'start': start, 'end': end }; } /** - * Creates a function that invokes `func` with the `this` binding of `thisArg` - * and `partials` prepended to the arguments it receives. - * - * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, - * may be used as a placeholder for partially applied arguments. - * - * **Note:** Unlike native `Function#bind`, this method doesn't set the "length" - * property of bound functions. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to bind. - * @param {*} thisArg The `this` binding of `func`. - * @param {...*} [partials] The arguments to be partially applied. - * @returns {Function} Returns the new bound function. - * @example - * - * function greet(greeting, punctuation) { - * return greeting + ' ' + this.user + punctuation; - * } - * - * var object = { 'user': 'fred' }; - * - * var bound = _.bind(greet, object, 'hi'); - * bound('!'); - * // => 'hi fred!' + * Extracts wrapper details from the `source` body comment. * - * // Bound with placeholders. - * var bound = _.bind(greet, object, _, '!'); - * bound('hi'); - * // => 'hi fred!' + * @private + * @param {string} source The source to inspect. + * @returns {Array} Returns the wrapper details. */ - var bind = baseRest(function(func, thisArg, partials) { - var bitmask = WRAP_BIND_FLAG; - if (partials.length) { - var holders = replaceHolders(partials, getHolder(bind)); - bitmask |= WRAP_PARTIAL_FLAG; - } - return createWrap(func, bitmask, thisArg, partials, holders); - }); + function getWrapDetails(source) { + var match = source.match(reWrapDetails); + return match ? match[1].split(reSplitDetails) : []; + } /** - * Creates a function that invokes the method at `object[key]` with `partials` - * prepended to the arguments it receives. - * - * This method differs from `_.bind` by allowing bound functions to reference - * methods that may be redefined or don't yet exist. See - * [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern) - * for more details. - * - * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic - * builds, may be used as a placeholder for partially applied arguments. - * - * @static - * @memberOf _ - * @since 0.10.0 - * @category Function - * @param {Object} object The object to invoke the method on. - * @param {string} key The key of the method. - * @param {...*} [partials] The arguments to be partially applied. - * @returns {Function} Returns the new bound function. - * @example - * - * var object = { - * 'user': 'fred', - * 'greet': function(greeting, punctuation) { - * return greeting + ' ' + this.user + punctuation; - * } - * }; - * - * var bound = _.bindKey(object, 'greet', 'hi'); - * bound('!'); - * // => 'hi fred!' - * - * object.greet = function(greeting, punctuation) { - * return greeting + 'ya ' + this.user + punctuation; - * }; - * - * bound('!'); - * // => 'hiya fred!' + * Checks if `path` exists on `object`. * - * // Bound with placeholders. - * var bound = _.bindKey(object, 'greet', _, '!'); - * bound('hi'); - * // => 'hiya fred!' + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @param {Function} hasFunc The function to check properties. + * @returns {boolean} Returns `true` if `path` exists, else `false`. */ - var bindKey = baseRest(function(object, key, partials) { - var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG; - if (partials.length) { - var holders = replaceHolders(partials, getHolder(bindKey)); - bitmask |= WRAP_PARTIAL_FLAG; + function hasPath(object, path, hasFunc) { + path = castPath(path, object); + + var index = -1, + length = path.length, + result = false; + + while (++index < length) { + var key = toKey(path[index]); + if (!(result = object != null && hasFunc(object, key))) { + break; + } + object = object[key]; } - return createWrap(key, bitmask, object, partials, holders); - }); + if (result || ++index != length) { + return result; + } + length = object == null ? 0 : object.length; + return !!length && isLength(length) && isIndex(key, length) && + (isArray(object) || isArguments(object)); + } /** - * Creates a function that accepts arguments of `func` and either invokes - * `func` returning its result, if at least `arity` number of arguments have - * been provided, or returns a function that accepts the remaining `func` - * arguments, and so on. The arity of `func` may be specified if `func.length` - * is not sufficient. - * - * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds, - * may be used as a placeholder for provided arguments. - * - * **Note:** This method doesn't set the "length" property of curried functions. - * - * @static - * @memberOf _ - * @since 2.0.0 - * @category Function - * @param {Function} func The function to curry. - * @param {number} [arity=func.length] The arity of `func`. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Function} Returns the new curried function. - * @example - * - * var abc = function(a, b, c) { - * return [a, b, c]; - * }; - * - * var curried = _.curry(abc); - * - * curried(1)(2)(3); - * // => [1, 2, 3] - * - * curried(1, 2)(3); - * // => [1, 2, 3] - * - * curried(1, 2, 3); - * // => [1, 2, 3] + * Initializes an array clone. * - * // Curried with placeholders. - * curried(1)(_, 3)(2); - * // => [1, 2, 3] + * @private + * @param {Array} array The array to clone. + * @returns {Array} Returns the initialized clone. */ - function curry(func, arity, guard) { - arity = guard ? undefined : arity; - var result = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity); - result.placeholder = curry.placeholder; + function initCloneArray(array) { + var length = array.length, + result = new array.constructor(length); + + // Add properties assigned by `RegExp#exec`. + if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { + result.index = array.index; + result.input = array.input; + } return result; } /** - * This method is like `_.curry` except that arguments are applied to `func` - * in the manner of `_.partialRight` instead of `_.partial`. - * - * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic - * builds, may be used as a placeholder for provided arguments. - * - * **Note:** This method doesn't set the "length" property of curried functions. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Function - * @param {Function} func The function to curry. - * @param {number} [arity=func.length] The arity of `func`. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Function} Returns the new curried function. - * @example - * - * var abc = function(a, b, c) { - * return [a, b, c]; - * }; - * - * var curried = _.curryRight(abc); - * - * curried(3)(2)(1); - * // => [1, 2, 3] - * - * curried(2, 3)(1); - * // => [1, 2, 3] - * - * curried(1, 2, 3); - * // => [1, 2, 3] + * Initializes an object clone. * - * // Curried with placeholders. - * curried(3)(1, _)(2); - * // => [1, 2, 3] + * @private + * @param {Object} object The object to clone. + * @returns {Object} Returns the initialized clone. */ - function curryRight(func, arity, guard) { - arity = guard ? undefined : arity; - var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity); - result.placeholder = curryRight.placeholder; - return result; + function initCloneObject(object) { + return (typeof object.constructor == 'function' && !isPrototype(object)) + ? baseCreate(getPrototype(object)) + : {}; } /** - * Creates a debounced function that delays invoking `func` until after `wait` - * milliseconds have elapsed since the last time the debounced function was - * invoked. The debounced function comes with a `cancel` method to cancel - * delayed `func` invocations and a `flush` method to immediately invoke them. - * Provide `options` to indicate whether `func` should be invoked on the - * leading and/or trailing edge of the `wait` timeout. The `func` is invoked - * with the last arguments provided to the debounced function. Subsequent - * calls to the debounced function return the result of the last `func` - * invocation. - * - * **Note:** If `leading` and `trailing` options are `true`, `func` is - * invoked on the trailing edge of the timeout only if the debounced function - * is invoked more than once during the `wait` timeout. - * - * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred - * until to the next tick, similar to `setTimeout` with a timeout of `0`. - * - * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) - * for details over the differences between `_.debounce` and `_.throttle`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to debounce. - * @param {number} [wait=0] The number of milliseconds to delay. - * @param {Object} [options={}] The options object. - * @param {boolean} [options.leading=false] - * Specify invoking on the leading edge of the timeout. - * @param {number} [options.maxWait] - * The maximum time `func` is allowed to be delayed before it's invoked. - * @param {boolean} [options.trailing=true] - * Specify invoking on the trailing edge of the timeout. - * @returns {Function} Returns the new debounced function. - * @example - * - * // Avoid costly calculations while the window size is in flux. - * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); - * - * // Invoke `sendMail` when clicked, debouncing subsequent calls. - * jQuery(element).on('click', _.debounce(sendMail, 300, { - * 'leading': true, - * 'trailing': false - * })); + * Initializes an object clone based on its `toStringTag`. * - * // Ensure `batchLog` is invoked once after 1 second of debounced calls. - * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); - * var source = new EventSource('/stream'); - * jQuery(source).on('message', debounced); + * **Note:** This function only supports cloning values with tags of + * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`. * - * // Cancel the trailing debounced invocation. - * jQuery(window).on('popstate', debounced.cancel); + * @private + * @param {Object} object The object to clone. + * @param {string} tag The `toStringTag` of the object to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the initialized clone. */ - function debounce(func, wait, options) { - var lastArgs, - lastThis, - maxWait, - result, - timerId, - lastCallTime, - lastInvokeTime = 0, - leading = false, - maxing = false, - trailing = true; - - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - wait = toNumber(wait) || 0; - if (isObject(options)) { - leading = !!options.leading; - maxing = 'maxWait' in options; - maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait; - trailing = 'trailing' in options ? !!options.trailing : trailing; - } - - function invokeFunc(time) { - var args = lastArgs, - thisArg = lastThis; - - lastArgs = lastThis = undefined; - lastInvokeTime = time; - result = func.apply(thisArg, args); - return result; - } - - function leadingEdge(time) { - // Reset any `maxWait` timer. - lastInvokeTime = time; - // Start the timer for the trailing edge. - timerId = setTimeout(timerExpired, wait); - // Invoke the leading edge. - return leading ? invokeFunc(time) : result; - } - - function remainingWait(time) { - var timeSinceLastCall = time - lastCallTime, - timeSinceLastInvoke = time - lastInvokeTime, - timeWaiting = wait - timeSinceLastCall; - - return maxing - ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) - : timeWaiting; - } - - function shouldInvoke(time) { - var timeSinceLastCall = time - lastCallTime, - timeSinceLastInvoke = time - lastInvokeTime; - - // Either this is the first call, activity has stopped and we're at the - // trailing edge, the system time has gone backwards and we're treating - // it as the trailing edge, or we've hit the `maxWait` limit. - return (lastCallTime === undefined || (timeSinceLastCall >= wait) || - (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); - } + function initCloneByTag(object, tag, isDeep) { + var Ctor = object.constructor; + switch (tag) { + case arrayBufferTag: + return cloneArrayBuffer(object); - function timerExpired() { - var time = now(); - if (shouldInvoke(time)) { - return trailingEdge(time); - } - // Restart the timer. - timerId = setTimeout(timerExpired, remainingWait(time)); - } + case boolTag: + case dateTag: + return new Ctor(+object); - function trailingEdge(time) { - timerId = undefined; + case dataViewTag: + return cloneDataView(object, isDeep); - // Only invoke if we have `lastArgs` which means `func` has been - // debounced at least once. - if (trailing && lastArgs) { - return invokeFunc(time); - } - lastArgs = lastThis = undefined; - return result; - } + case float32Tag: case float64Tag: + case int8Tag: case int16Tag: case int32Tag: + case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: + return cloneTypedArray(object, isDeep); - function cancel() { - if (timerId !== undefined) { - clearTimeout(timerId); - } - lastInvokeTime = 0; - lastArgs = lastCallTime = lastThis = timerId = undefined; - } + case mapTag: + return new Ctor; - function flush() { - return timerId === undefined ? result : trailingEdge(now()); - } + case numberTag: + case stringTag: + return new Ctor(object); - function debounced() { - var time = now(), - isInvoking = shouldInvoke(time); + case regexpTag: + return cloneRegExp(object); - lastArgs = arguments; - lastThis = this; - lastCallTime = time; + case setTag: + return new Ctor; - if (isInvoking) { - if (timerId === undefined) { - return leadingEdge(lastCallTime); - } - if (maxing) { - // Handle invocations in a tight loop. - clearTimeout(timerId); - timerId = setTimeout(timerExpired, wait); - return invokeFunc(lastCallTime); - } - } - if (timerId === undefined) { - timerId = setTimeout(timerExpired, wait); - } - return result; + case symbolTag: + return cloneSymbol(object); } - debounced.cancel = cancel; - debounced.flush = flush; - return debounced; } /** - * Defers invoking the `func` until the current call stack has cleared. Any - * additional arguments are provided to `func` when it's invoked. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to defer. - * @param {...*} [args] The arguments to invoke `func` with. - * @returns {number} Returns the timer id. - * @example + * Inserts wrapper `details` in a comment at the top of the `source` body. * - * _.defer(function(text) { - * console.log(text); - * }, 'deferred'); - * // => Logs 'deferred' after one millisecond. + * @private + * @param {string} source The source to modify. + * @returns {Array} details The details to insert. + * @returns {string} Returns the modified source. */ - var defer = baseRest(function(func, args) { - return baseDelay(func, 1, args); - }); + function insertWrapDetails(source, details) { + var length = details.length; + if (!length) { + return source; + } + var lastIndex = length - 1; + details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex]; + details = details.join(length > 2 ? ', ' : ' '); + return source.replace(reWrapComment, '{\n/* [wrapped with ' + details + '] */\n'); + } /** - * Invokes `func` after `wait` milliseconds. Any additional arguments are - * provided to `func` when it's invoked. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to delay. - * @param {number} wait The number of milliseconds to delay invocation. - * @param {...*} [args] The arguments to invoke `func` with. - * @returns {number} Returns the timer id. - * @example + * Checks if `value` is a flattenable `arguments` object or array. * - * _.delay(function(text) { - * console.log(text); - * }, 1000, 'later'); - * // => Logs 'later' after one second. + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. */ - var delay = baseRest(function(func, wait, args) { - return baseDelay(func, toNumber(wait) || 0, args); - }); + function isFlattenable(value) { + return isArray(value) || isArguments(value) || + !!(spreadableSymbol && value && value[spreadableSymbol]); + } /** - * Creates a function that invokes `func` with arguments reversed. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Function - * @param {Function} func The function to flip arguments for. - * @returns {Function} Returns the new flipped function. - * @example - * - * var flipped = _.flip(function() { - * return _.toArray(arguments); - * }); + * Checks if `value` is a valid array-like index. * - * flipped('a', 'b', 'c', 'd'); - * // => ['d', 'c', 'b', 'a'] + * @private + * @param {*} value The value to check. + * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. + * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. */ - function flip(func) { - return createWrap(func, WRAP_FLIP_FLAG); + function isIndex(value, length) { + var type = typeof value; + length = length == null ? MAX_SAFE_INTEGER : length; + + return !!length && + (type == 'number' || + (type != 'symbol' && reIsUint.test(value))) && + (value > -1 && value % 1 == 0 && value < length); } /** - * Creates a function that memoizes the result of `func`. If `resolver` is - * provided, it determines the cache key for storing the result based on the - * arguments provided to the memoized function. By default, the first argument - * provided to the memoized function is used as the map cache key. The `func` - * is invoked with the `this` binding of the memoized function. - * - * **Note:** The cache is exposed as the `cache` property on the memoized - * function. Its creation may be customized by replacing the `_.memoize.Cache` - * constructor with one whose instances implement the - * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) - * method interface of `clear`, `delete`, `get`, `has`, and `set`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to have its output memoized. - * @param {Function} [resolver] The function to resolve the cache key. - * @returns {Function} Returns the new memoized function. - * @example - * - * var object = { 'a': 1, 'b': 2 }; - * var other = { 'c': 3, 'd': 4 }; - * - * var values = _.memoize(_.values); - * values(object); - * // => [1, 2] - * - * values(other); - * // => [3, 4] - * - * object.a = 2; - * values(object); - * // => [1, 2] - * - * // Modify the result cache. - * values.cache.set(object, ['a', 'b']); - * values(object); - * // => ['a', 'b'] + * Checks if the given arguments are from an iteratee call. * - * // Replace `_.memoize.Cache`. - * _.memoize.Cache = WeakMap; + * @private + * @param {*} value The potential iteratee value argument. + * @param {*} index The potential iteratee index or key argument. + * @param {*} object The potential iteratee object argument. + * @returns {boolean} Returns `true` if the arguments are from an iteratee call, + * else `false`. */ - function memoize(func, resolver) { - if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { - throw new TypeError(FUNC_ERROR_TEXT); + function isIterateeCall(value, index, object) { + if (!isObject(object)) { + return false; } - var memoized = function() { - var args = arguments, - key = resolver ? resolver.apply(this, args) : args[0], - cache = memoized.cache; - - if (cache.has(key)) { - return cache.get(key); - } - var result = func.apply(this, args); - memoized.cache = cache.set(key, result) || cache; - return result; - }; - memoized.cache = new (memoize.Cache || MapCache); - return memoized; + var type = typeof index; + if (type == 'number' + ? (isArrayLike(object) && isIndex(index, object.length)) + : (type == 'string' && index in object) + ) { + return eq(object[index], value); + } + return false; } - // Expose `MapCache`. - memoize.Cache = MapCache; - /** - * Creates a function that negates the result of the predicate `func`. The - * `func` predicate is invoked with the `this` binding and arguments of the - * created function. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Function - * @param {Function} predicate The predicate to negate. - * @returns {Function} Returns the new negated function. - * @example - * - * function isEven(n) { - * return n % 2 == 0; - * } + * Checks if `value` is a property name and not a property path. * - * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); - * // => [1, 3, 5] + * @private + * @param {*} value The value to check. + * @param {Object} [object] The object to query keys on. + * @returns {boolean} Returns `true` if `value` is a property name, else `false`. */ - function negate(predicate) { - if (typeof predicate != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); + function isKey(value, object) { + if (isArray(value)) { + return false; } - return function() { - var args = arguments; - switch (args.length) { - case 0: return !predicate.call(this); - case 1: return !predicate.call(this, args[0]); - case 2: return !predicate.call(this, args[0], args[1]); - case 3: return !predicate.call(this, args[0], args[1], args[2]); - } - return !predicate.apply(this, args); - }; + var type = typeof value; + if (type == 'number' || type == 'symbol' || type == 'boolean' || + value == null || isSymbol(value)) { + return true; + } + return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || + (object != null && value in Object(object)); } /** - * Creates a function that is restricted to invoking `func` once. Repeat calls - * to the function return the value of the first invocation. The `func` is - * invoked with the `this` binding and arguments of the created function. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new restricted function. - * @example + * Checks if `value` is suitable for use as unique object key. * - * var initialize = _.once(createApplication); - * initialize(); - * initialize(); - * // => `createApplication` is invoked once + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is suitable, else `false`. */ - function once(func) { - return before(2, func); + function isKeyable(value) { + var type = typeof value; + return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') + ? (value !== '__proto__') + : (value === null); } /** - * Creates a function that invokes `func` with its arguments transformed. - * - * @static - * @since 4.0.0 - * @memberOf _ - * @category Function - * @param {Function} func The function to wrap. - * @param {...(Function|Function[])} [transforms=[_.identity]] - * The argument transforms. - * @returns {Function} Returns the new function. - * @example - * - * function doubled(n) { - * return n * 2; - * } - * - * function square(n) { - * return n * n; - * } - * - * var func = _.overArgs(function(x, y) { - * return [x, y]; - * }, [square, doubled]); - * - * func(9, 3); - * // => [81, 6] + * Checks if `func` has a lazy counterpart. * - * func(10, 5); - * // => [100, 10] + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` has a lazy counterpart, + * else `false`. */ - var overArgs = castRest(function(func, transforms) { - transforms = (transforms.length == 1 && isArray(transforms[0])) - ? arrayMap(transforms[0], baseUnary(getIteratee())) - : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee())); - - var funcsLength = transforms.length; - return baseRest(function(args) { - var index = -1, - length = nativeMin(args.length, funcsLength); + function isLaziable(func) { + var funcName = getFuncName(func), + other = lodash[funcName]; - while (++index < length) { - args[index] = transforms[index].call(this, args[index]); - } - return apply(func, this, args); - }); - }); + if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) { + return false; + } + if (func === other) { + return true; + } + var data = getData(other); + return !!data && func === data[0]; + } /** - * Creates a function that invokes `func` with `partials` prepended to the - * arguments it receives. This method is like `_.bind` except it does **not** - * alter the `this` binding. - * - * The `_.partial.placeholder` value, which defaults to `_` in monolithic - * builds, may be used as a placeholder for partially applied arguments. - * - * **Note:** This method doesn't set the "length" property of partially - * applied functions. - * - * @static - * @memberOf _ - * @since 0.2.0 - * @category Function - * @param {Function} func The function to partially apply arguments to. - * @param {...*} [partials] The arguments to be partially applied. - * @returns {Function} Returns the new partially applied function. - * @example - * - * function greet(greeting, name) { - * return greeting + ' ' + name; - * } - * - * var sayHelloTo = _.partial(greet, 'hello'); - * sayHelloTo('fred'); - * // => 'hello fred' + * Checks if `func` has its source masked. * - * // Partially applied with placeholders. - * var greetFred = _.partial(greet, _, 'fred'); - * greetFred('hi'); - * // => 'hi fred' + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` is masked, else `false`. */ - var partial = baseRest(function(func, partials) { - var holders = replaceHolders(partials, getHolder(partial)); - return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders); - }); + function isMasked(func) { + return !!maskSrcKey && (maskSrcKey in func); + } /** - * This method is like `_.partial` except that partially applied arguments - * are appended to the arguments it receives. - * - * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic - * builds, may be used as a placeholder for partially applied arguments. - * - * **Note:** This method doesn't set the "length" property of partially - * applied functions. - * - * @static - * @memberOf _ - * @since 1.0.0 - * @category Function - * @param {Function} func The function to partially apply arguments to. - * @param {...*} [partials] The arguments to be partially applied. - * @returns {Function} Returns the new partially applied function. - * @example - * - * function greet(greeting, name) { - * return greeting + ' ' + name; - * } - * - * var greetFred = _.partialRight(greet, 'fred'); - * greetFred('hi'); - * // => 'hi fred' + * Checks if `func` is capable of being masked. * - * // Partially applied with placeholders. - * var sayHelloTo = _.partialRight(greet, 'hello', _); - * sayHelloTo('fred'); - * // => 'hello fred' + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `func` is maskable, else `false`. */ - var partialRight = baseRest(function(func, partials) { - var holders = replaceHolders(partials, getHolder(partialRight)); - return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined, partials, holders); - }); + var isMaskable = coreJsData ? isFunction : stubFalse; /** - * Creates a function that invokes `func` with arguments arranged according - * to the specified `indexes` where the argument value at the first index is - * provided as the first argument, the argument value at the second index is - * provided as the second argument, and so on. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Function - * @param {Function} func The function to rearrange arguments for. - * @param {...(number|number[])} indexes The arranged argument indexes. - * @returns {Function} Returns the new function. - * @example - * - * var rearged = _.rearg(function(a, b, c) { - * return [a, b, c]; - * }, [2, 0, 1]); + * Checks if `value` is likely a prototype object. * - * rearged('b', 'c', 'a') - * // => ['a', 'b', 'c'] + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. */ - var rearg = flatRest(function(func, indexes) { - return createWrap(func, WRAP_REARG_FLAG, undefined, undefined, undefined, indexes); - }); + function isPrototype(value) { + var Ctor = value && value.constructor, + proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; + + return value === proto; + } /** - * Creates a function that invokes `func` with the `this` binding of the - * created function and arguments from `start` and beyond provided as - * an array. - * - * **Note:** This method is based on the - * [rest parameter](https://mdn.io/rest_parameters). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Function - * @param {Function} func The function to apply a rest parameter to. - * @param {number} [start=func.length-1] The start position of the rest parameter. - * @returns {Function} Returns the new function. - * @example - * - * var say = _.rest(function(what, names) { - * return what + ' ' + _.initial(names).join(', ') + - * (_.size(names) > 1 ? ', & ' : '') + _.last(names); - * }); + * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. * - * say('hello', 'fred', 'barney', 'pebbles'); - * // => 'hello fred, barney, & pebbles' + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` if suitable for strict + * equality comparisons, else `false`. */ - function rest(func, start) { - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - start = start === undefined ? start : toInteger(start); - return baseRest(func, start); + function isStrictComparable(value) { + return value === value && !isObject(value); } /** - * Creates a function that invokes `func` with the `this` binding of the - * create function and an array of arguments much like - * [`Function#apply`](http://www.ecma-international.org/ecma-262/7.0/#sec-function.prototype.apply). - * - * **Note:** This method is based on the - * [spread operator](https://mdn.io/spread_operator). - * - * @static - * @memberOf _ - * @since 3.2.0 - * @category Function - * @param {Function} func The function to spread arguments over. - * @param {number} [start=0] The start position of the spread. - * @returns {Function} Returns the new function. - * @example - * - * var say = _.spread(function(who, what) { - * return who + ' says ' + what; - * }); - * - * say(['fred', 'hello']); - * // => 'fred says hello' - * - * var numbers = Promise.all([ - * Promise.resolve(40), - * Promise.resolve(36) - * ]); + * A specialized version of `matchesProperty` for source values suitable + * for strict equality comparisons, i.e. `===`. * - * numbers.then(_.spread(function(x, y) { - * return x + y; - * })); - * // => a Promise of 76 + * @private + * @param {string} key The key of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. */ - function spread(func, start) { - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - start = start == null ? 0 : nativeMax(toInteger(start), 0); - return baseRest(function(args) { - var array = args[start], - otherArgs = castSlice(args, 0, start); + function matchesStrictComparable(key, srcValue) { + return function(object) { + if (object == null) { + return false; + } + return object[key] === srcValue && + (srcValue !== undefined || (key in Object(object))); + }; + } - if (array) { - arrayPush(otherArgs, array); + /** + * A specialized version of `_.memoize` which clears the memoized function's + * cache when it exceeds `MAX_MEMOIZE_SIZE`. + * + * @private + * @param {Function} func The function to have its output memoized. + * @returns {Function} Returns the new memoized function. + */ + function memoizeCapped(func) { + var result = memoize(func, function(key) { + if (cache.size === MAX_MEMOIZE_SIZE) { + cache.clear(); } - return apply(func, this, otherArgs); + return key; }); + + var cache = result.cache; + return result; } /** - * Creates a throttled function that only invokes `func` at most once per - * every `wait` milliseconds. The throttled function comes with a `cancel` - * method to cancel delayed `func` invocations and a `flush` method to - * immediately invoke them. Provide `options` to indicate whether `func` - * should be invoked on the leading and/or trailing edge of the `wait` - * timeout. The `func` is invoked with the last arguments provided to the - * throttled function. Subsequent calls to the throttled function return the - * result of the last `func` invocation. - * - * **Note:** If `leading` and `trailing` options are `true`, `func` is - * invoked on the trailing edge of the timeout only if the throttled function - * is invoked more than once during the `wait` timeout. - * - * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred - * until to the next tick, similar to `setTimeout` with a timeout of `0`. - * - * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) - * for details over the differences between `_.throttle` and `_.debounce`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to throttle. - * @param {number} [wait=0] The number of milliseconds to throttle invocations to. - * @param {Object} [options={}] The options object. - * @param {boolean} [options.leading=true] - * Specify invoking on the leading edge of the timeout. - * @param {boolean} [options.trailing=true] - * Specify invoking on the trailing edge of the timeout. - * @returns {Function} Returns the new throttled function. - * @example - * - * // Avoid excessively updating the position while scrolling. - * jQuery(window).on('scroll', _.throttle(updatePosition, 100)); + * Merges the function metadata of `source` into `data`. * - * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes. - * var throttled = _.throttle(renewToken, 300000, { 'trailing': false }); - * jQuery(element).on('click', throttled); + * Merging metadata reduces the number of wrappers used to invoke a function. + * This is possible because methods like `_.bind`, `_.curry`, and `_.partial` + * may be applied regardless of execution order. Methods like `_.ary` and + * `_.rearg` modify function arguments, making the order in which they are + * executed important, preventing the merging of metadata. However, we make + * an exception for a safe combined case where curried functions have `_.ary` + * and or `_.rearg` applied. * - * // Cancel the trailing throttled invocation. - * jQuery(window).on('popstate', throttled.cancel); + * @private + * @param {Array} data The destination metadata. + * @param {Array} source The source metadata. + * @returns {Array} Returns `data`. */ - function throttle(func, wait, options) { - var leading = true, - trailing = true; + function mergeData(data, source) { + var bitmask = data[1], + srcBitmask = source[1], + newBitmask = bitmask | srcBitmask, + isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG); - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); + var isCombo = + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) || + ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) || + ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG)); + + // Exit early if metadata can't be merged. + if (!(isCommon || isCombo)) { + return data; } - if (isObject(options)) { - leading = 'leading' in options ? !!options.leading : leading; - trailing = 'trailing' in options ? !!options.trailing : trailing; + // Use source `thisArg` if available. + if (srcBitmask & WRAP_BIND_FLAG) { + data[2] = source[2]; + // Set when currying a bound function. + newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG; } - return debounce(func, wait, { - 'leading': leading, - 'maxWait': wait, - 'trailing': trailing - }); + // Compose partial arguments. + var value = source[3]; + if (value) { + var partials = data[3]; + data[3] = partials ? composeArgs(partials, value, source[4]) : value; + data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4]; + } + // Compose partial right arguments. + value = source[5]; + if (value) { + partials = data[5]; + data[5] = partials ? composeArgsRight(partials, value, source[6]) : value; + data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6]; + } + // Use source `argPos` if available. + value = source[7]; + if (value) { + data[7] = value; + } + // Use source `ary` if it's smaller. + if (srcBitmask & WRAP_ARY_FLAG) { + data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]); + } + // Use source `arity` if one is not provided. + if (data[9] == null) { + data[9] = source[9]; + } + // Use source `func` and merge bitmasks. + data[0] = source[0]; + data[1] = newBitmask; + + return data; } /** - * Creates a function that accepts up to one argument, ignoring any - * additional arguments. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Function - * @param {Function} func The function to cap arguments for. - * @returns {Function} Returns the new capped function. - * @example + * This function is like + * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * except that it includes inherited enumerable properties. * - * _.map(['6', '8', '10'], _.unary(parseInt)); - * // => [6, 8, 10] + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. */ - function unary(func) { - return ary(func, 1); + function nativeKeysIn(object) { + var result = []; + if (object != null) { + for (var key in Object(object)) { + result.push(key); + } + } + return result; } /** - * Creates a function that provides `value` to `wrapper` as its first - * argument. Any additional arguments provided to the function are appended - * to those provided to the `wrapper`. The wrapper is invoked with the `this` - * binding of the created function. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {*} value The value to wrap. - * @param {Function} [wrapper=identity] The wrapper function. - * @returns {Function} Returns the new function. - * @example - * - * var p = _.wrap(_.escape, function(func, text) { - * return '<p>' + func(text) + '</p>'; - * }); + * Converts `value` to a string using `Object.prototype.toString`. * - * p('fred, barney, & pebbles'); - * // => '<p>fred, barney, & pebbles</p>' + * @private + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. */ - function wrap(value, wrapper) { - return partial(castFunction(wrapper), value); + function objectToString(value) { + return nativeObjectToString.call(value); } - /*------------------------------------------------------------------------*/ - /** - * Casts `value` as an array if it's not one. - * - * @static - * @memberOf _ - * @since 4.4.0 - * @category Lang - * @param {*} value The value to inspect. - * @returns {Array} Returns the cast array. - * @example - * - * _.castArray(1); - * // => [1] - * - * _.castArray({ 'a': 1 }); - * // => [{ 'a': 1 }] - * - * _.castArray('abc'); - * // => ['abc'] - * - * _.castArray(null); - * // => [null] - * - * _.castArray(undefined); - * // => [undefined] - * - * _.castArray(); - * // => [] + * A specialized version of `baseRest` which transforms the rest array. * - * var array = [1, 2, 3]; - * console.log(_.castArray(array) === array); - * // => true + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @param {Function} transform The rest array transform. + * @returns {Function} Returns the new function. */ - function castArray() { - if (!arguments.length) { - return []; - } - var value = arguments[0]; - return isArray(value) ? value : [value]; + function overRest(func, start, transform) { + start = nativeMax(start === undefined ? (func.length - 1) : start, 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + array = Array(length); + + while (++index < length) { + array[index] = args[start + index]; + } + index = -1; + var otherArgs = Array(start + 1); + while (++index < start) { + otherArgs[index] = args[index]; + } + otherArgs[start] = transform(array); + return apply(func, this, otherArgs); + }; } /** - * Creates a shallow clone of `value`. - * - * **Note:** This method is loosely based on the - * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm) - * and supports cloning arrays, array buffers, booleans, date objects, maps, - * numbers, `Object` objects, regexes, sets, strings, symbols, and typed - * arrays. The own enumerable properties of `arguments` objects are cloned - * as plain objects. An empty object is returned for uncloneable values such - * as error objects, functions, DOM nodes, and WeakMaps. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to clone. - * @returns {*} Returns the cloned value. - * @see _.cloneDeep - * @example - * - * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * Gets the parent value at `path` of `object`. * - * var shallow = _.clone(objects); - * console.log(shallow[0] === objects[0]); - * // => true + * @private + * @param {Object} object The object to query. + * @param {Array} path The path to get the parent value of. + * @returns {*} Returns the parent value. */ - function clone(value) { - return baseClone(value, CLONE_SYMBOLS_FLAG); + function parent(object, path) { + return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); } /** - * This method is like `_.clone` except that it accepts `customizer` which - * is invoked to produce the cloned value. If `customizer` returns `undefined`, - * cloning is handled by the method instead. The `customizer` is invoked with - * up to four arguments; (value [, index|key, object, stack]). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to clone. - * @param {Function} [customizer] The function to customize cloning. - * @returns {*} Returns the cloned value. - * @see _.cloneDeepWith - * @example - * - * function customizer(value) { - * if (_.isElement(value)) { - * return value.cloneNode(false); - * } - * } - * - * var el = _.cloneWith(document.body, customizer); + * Reorder `array` according to the specified indexes where the element at + * the first index is assigned as the first element, the element at + * the second index is assigned as the second element, and so on. * - * console.log(el === document.body); - * // => false - * console.log(el.nodeName); - * // => 'BODY' - * console.log(el.childNodes.length); - * // => 0 + * @private + * @param {Array} array The array to reorder. + * @param {Array} indexes The arranged array indexes. + * @returns {Array} Returns `array`. */ - function cloneWith(value, customizer) { - customizer = typeof customizer == 'function' ? customizer : undefined; - return baseClone(value, CLONE_SYMBOLS_FLAG, customizer); + function reorder(array, indexes) { + var arrLength = array.length, + length = nativeMin(indexes.length, arrLength), + oldArray = copyArray(array); + + while (length--) { + var index = indexes[length]; + array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined; + } + return array; } /** - * This method is like `_.clone` except that it recursively clones `value`. - * - * @static - * @memberOf _ - * @since 1.0.0 - * @category Lang - * @param {*} value The value to recursively clone. - * @returns {*} Returns the deep cloned value. - * @see _.clone - * @example - * - * var objects = [{ 'a': 1 }, { 'b': 2 }]; + * Gets the value at `key`, unless `key` is "__proto__" or "constructor". * - * var deep = _.cloneDeep(objects); - * console.log(deep[0] === objects[0]); - * // => false + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. */ - function cloneDeep(value) { - return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG); + function safeGet(object, key) { + if (key === 'constructor' && typeof object[key] === 'function') { + return; + } + + if (key == '__proto__') { + return; + } + + return object[key]; } /** - * This method is like `_.cloneWith` except that it recursively clones `value`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to recursively clone. - * @param {Function} [customizer] The function to customize cloning. - * @returns {*} Returns the deep cloned value. - * @see _.cloneWith - * @example - * - * function customizer(value) { - * if (_.isElement(value)) { - * return value.cloneNode(true); - * } - * } + * Sets metadata for `func`. * - * var el = _.cloneDeepWith(document.body, customizer); + * **Note:** If this function becomes hot, i.e. is invoked a lot in a short + * period of time, it will trip its breaker and transition to an identity + * function to avoid garbage collection pauses in V8. See + * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070) + * for more details. * - * console.log(el === document.body); - * // => false - * console.log(el.nodeName); - * // => 'BODY' - * console.log(el.childNodes.length); - * // => 20 + * @private + * @param {Function} func The function to associate metadata with. + * @param {*} data The metadata. + * @returns {Function} Returns `func`. */ - function cloneDeepWith(value, customizer) { - customizer = typeof customizer == 'function' ? customizer : undefined; - return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer); - } + var setData = shortOut(baseSetData); /** - * Checks if `object` conforms to `source` by invoking the predicate - * properties of `source` with the corresponding property values of `object`. - * - * **Note:** This method is equivalent to `_.conforms` when `source` is - * partially applied. - * - * @static - * @memberOf _ - * @since 4.14.0 - * @category Lang - * @param {Object} object The object to inspect. - * @param {Object} source The object of property predicates to conform to. - * @returns {boolean} Returns `true` if `object` conforms, else `false`. - * @example - * - * var object = { 'a': 1, 'b': 2 }; - * - * _.conformsTo(object, { 'b': function(n) { return n > 1; } }); - * // => true + * A simple wrapper around the global [`setTimeout`](https://mdn.io/setTimeout). * - * _.conformsTo(object, { 'b': function(n) { return n > 2; } }); - * // => false + * @private + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @returns {number|Object} Returns the timer id or timeout object. */ - function conformsTo(object, source) { - return source == null || baseConformsTo(object, source, keys(source)); - } + var setTimeout = ctxSetTimeout || function(func, wait) { + return root.setTimeout(func, wait); + }; /** - * Performs a - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * comparison between two values to determine if they are equivalent. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. - * @example - * - * var object = { 'a': 1 }; - * var other = { 'a': 1 }; - * - * _.eq(object, object); - * // => true - * - * _.eq(object, other); - * // => false - * - * _.eq('a', 'a'); - * // => true + * Sets the `toString` method of `func` to return `string`. * - * _.eq('a', Object('a')); - * // => false + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ + var setToString = shortOut(baseSetToString); + + /** + * Sets the `toString` method of `wrapper` to mimic the source of `reference` + * with wrapper details in a comment at the top of the source body. * - * _.eq(NaN, NaN); - * // => true + * @private + * @param {Function} wrapper The function to modify. + * @param {Function} reference The reference function. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Function} Returns `wrapper`. */ - function eq(value, other) { - return value === other || (value !== value && other !== other); + function setWrapToString(wrapper, reference, bitmask) { + var source = (reference + ''); + return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask))); } /** - * Checks if `value` is greater than `other`. - * - * @static - * @memberOf _ - * @since 3.9.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if `value` is greater than `other`, - * else `false`. - * @see _.lt - * @example - * - * _.gt(3, 1); - * // => true - * - * _.gt(3, 3); - * // => false + * Creates a function that'll short out and invoke `identity` instead + * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` + * milliseconds. * - * _.gt(1, 3); - * // => false + * @private + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new shortable function. */ - var gt = createRelationalOperation(baseGt); + function shortOut(func) { + var count = 0, + lastCalled = 0; + + return function() { + var stamp = nativeNow(), + remaining = HOT_SPAN - (stamp - lastCalled); + + lastCalled = stamp; + if (remaining > 0) { + if (++count >= HOT_COUNT) { + return arguments[0]; + } + } else { + count = 0; + } + return func.apply(undefined, arguments); + }; + } /** - * Checks if `value` is greater than or equal to `other`. - * - * @static - * @memberOf _ - * @since 3.9.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if `value` is greater than or equal to - * `other`, else `false`. - * @see _.lte - * @example - * - * _.gte(3, 1); - * // => true - * - * _.gte(3, 3); - * // => true + * A specialized version of `_.shuffle` which mutates and sets the size of `array`. * - * _.gte(1, 3); - * // => false + * @private + * @param {Array} array The array to shuffle. + * @param {number} [size=array.length] The size of `array`. + * @returns {Array} Returns `array`. */ - var gte = createRelationalOperation(function(value, other) { - return value >= other; - }); + function shuffleSelf(array, size) { + var index = -1, + length = array.length, + lastIndex = length - 1; + + size = size === undefined ? length : size; + while (++index < size) { + var rand = baseRandom(index, lastIndex), + value = array[rand]; + + array[rand] = array[index]; + array[index] = value; + } + array.length = size; + return array; + } /** - * Checks if `value` is likely an `arguments` object. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an `arguments` object, - * else `false`. - * @example - * - * _.isArguments(function() { return arguments; }()); - * // => true + * Converts `string` to a property path array. * - * _.isArguments([1, 2, 3]); - * // => false + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the property path array. */ - var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { - return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && - !propertyIsEnumerable.call(value, 'callee'); - }; + var stringToPath = memoizeCapped(function(string) { + var result = []; + if (string.charCodeAt(0) === 46 /* . */) { + result.push(''); + } + string.replace(rePropName, function(match, number, quote, subString) { + result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); + }); + return result; + }); /** - * Checks if `value` is classified as an `Array` object. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an array, else `false`. - * @example - * - * _.isArray([1, 2, 3]); - * // => true - * - * _.isArray(document.body.children); - * // => false - * - * _.isArray('abc'); - * // => false + * Converts `value` to a string key if it's not a string or symbol. * - * _.isArray(_.noop); - * // => false + * @private + * @param {*} value The value to inspect. + * @returns {string|symbol} Returns the key. */ - var isArray = Array.isArray; + function toKey(value) { + if (typeof value == 'string' || isSymbol(value)) { + return value; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; + } /** - * Checks if `value` is classified as an `ArrayBuffer` object. - * - * @static - * @memberOf _ - * @since 4.3.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. - * @example - * - * _.isArrayBuffer(new ArrayBuffer(2)); - * // => true + * Converts `func` to its source code. * - * _.isArrayBuffer(new Array(2)); - * // => false + * @private + * @param {Function} func The function to convert. + * @returns {string} Returns the source code. */ - var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer; + function toSource(func) { + if (func != null) { + try { + return funcToString.call(func); + } catch (e) {} + try { + return (func + ''); + } catch (e) {} + } + return ''; + } /** - * Checks if `value` is array-like. A value is considered array-like if it's - * not a function and has a `value.length` that's an integer greater than or - * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is array-like, else `false`. - * @example - * - * _.isArrayLike([1, 2, 3]); - * // => true - * - * _.isArrayLike(document.body.children); - * // => true - * - * _.isArrayLike('abc'); - * // => true + * Updates wrapper `details` based on `bitmask` flags. * - * _.isArrayLike(_.noop); - * // => false + * @private + * @returns {Array} details The details to modify. + * @param {number} bitmask The bitmask flags. See `createWrap` for more details. + * @returns {Array} Returns `details`. */ - function isArrayLike(value) { - return value != null && isLength(value.length) && !isFunction(value); + function updateWrapDetails(details, bitmask) { + arrayEach(wrapFlags, function(pair) { + var value = '_.' + pair[0]; + if ((bitmask & pair[1]) && !arrayIncludes(details, value)) { + details.push(value); + } + }); + return details.sort(); } /** - * This method is like `_.isArrayLike` except that it also checks if `value` - * is an object. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an array-like object, - * else `false`. - * @example - * - * _.isArrayLikeObject([1, 2, 3]); - * // => true - * - * _.isArrayLikeObject(document.body.children); - * // => true - * - * _.isArrayLikeObject('abc'); - * // => false + * Creates a clone of `wrapper`. * - * _.isArrayLikeObject(_.noop); - * // => false - */ - function isArrayLikeObject(value) { - return isObjectLike(value) && isArrayLike(value); + * @private + * @param {Object} wrapper The wrapper to clone. + * @returns {Object} Returns the cloned wrapper. + */ + function wrapperClone(wrapper) { + if (wrapper instanceof LazyWrapper) { + return wrapper.clone(); + } + var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__); + result.__actions__ = copyArray(wrapper.__actions__); + result.__index__ = wrapper.__index__; + result.__values__ = wrapper.__values__; + return result; } + /*------------------------------------------------------------------------*/ + /** - * Checks if `value` is classified as a boolean primitive or object. + * Creates an array of elements split into groups the length of `size`. + * If `array` can't be split evenly, the final chunk will be the remaining + * elements. * * @static * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a boolean, else `false`. + * @since 3.0.0 + * @category Array + * @param {Array} array The array to process. + * @param {number} [size=1] The length of each chunk + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the new array of chunks. * @example * - * _.isBoolean(false); - * // => true + * _.chunk(['a', 'b', 'c', 'd'], 2); + * // => [['a', 'b'], ['c', 'd']] * - * _.isBoolean(null); - * // => false + * _.chunk(['a', 'b', 'c', 'd'], 3); + * // => [['a', 'b', 'c'], ['d']] */ - function isBoolean(value) { - return value === true || value === false || - (isObjectLike(value) && baseGetTag(value) == boolTag); + function chunk(array, size, guard) { + if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) { + size = 1; + } else { + size = nativeMax(toInteger(size), 0); + } + var length = array == null ? 0 : array.length; + if (!length || size < 1) { + return []; + } + var index = 0, + resIndex = 0, + result = Array(nativeCeil(length / size)); + + while (index < length) { + result[resIndex++] = baseSlice(array, index, (index += size)); + } + return result; } /** - * Checks if `value` is a buffer. + * Creates an array with all falsey values removed. The values `false`, `null`, + * `0`, `""`, `undefined`, and `NaN` are falsey. * * @static * @memberOf _ - * @since 4.3.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. + * @since 0.1.0 + * @category Array + * @param {Array} array The array to compact. + * @returns {Array} Returns the new array of filtered values. * @example * - * _.isBuffer(new Buffer(2)); - * // => true - * - * _.isBuffer(new Uint8Array(2)); - * // => false + * _.compact([0, 1, false, 2, '', 3]); + * // => [1, 2, 3] */ - var isBuffer = nativeIsBuffer || stubFalse; + function compact(array) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; + + while (++index < length) { + var value = array[index]; + if (value) { + result[resIndex++] = value; + } + } + return result; + } /** - * Checks if `value` is classified as a `Date` object. + * Creates a new array concatenating `array` with any additional arrays + * and/or values. * * @static * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a date object, else `false`. + * @since 4.0.0 + * @category Array + * @param {Array} array The array to concatenate. + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. * @example * - * _.isDate(new Date); - * // => true + * var array = [1]; + * var other = _.concat(array, 2, [3], [[4]]); * - * _.isDate('Mon April 23 2012'); - * // => false + * console.log(other); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] */ - var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate; + function concat() { + var length = arguments.length; + if (!length) { + return []; + } + var args = Array(length - 1), + array = arguments[0], + index = length; + + while (index--) { + args[index - 1] = arguments[index]; + } + return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1)); + } /** - * Checks if `value` is likely a DOM element. + * Creates an array of `array` values not included in the other given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. + * + * **Note:** Unlike `_.pullAll`, this method returns a new array. * * @static * @memberOf _ * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`. + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.without, _.xor * @example * - * _.isElement(document.body); - * // => true - * - * _.isElement('<body>'); - * // => false + * _.difference([2, 1], [2, 3]); + * // => [1] */ - function isElement(value) { - return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value); - } + var difference = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true)) + : []; + }); /** - * Checks if `value` is an empty object, collection, map, or set. - * - * Objects are considered empty if they have no own enumerable string keyed - * properties. + * This method is like `_.difference` except that it accepts `iteratee` which + * is invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). * - * Array-like values such as `arguments` objects, arrays, buffers, strings, or - * jQuery-like collections are considered empty if they have a `length` of `0`. - * Similarly, maps and sets are considered empty if they have a `size` of `0`. + * **Note:** Unlike `_.pullAllBy`, this method returns a new array. * * @static * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is empty, else `false`. + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. * @example * - * _.isEmpty(null); - * // => true - * - * _.isEmpty(true); - * // => true - * - * _.isEmpty(1); - * // => true - * - * _.isEmpty([1, 2, 3]); - * // => false + * _.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2] * - * _.isEmpty({ 'a': 1 }); - * // => false + * // The `_.property` iteratee shorthand. + * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] */ - function isEmpty(value) { - if (value == null) { - return true; - } - if (isArrayLike(value) && - (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' || - isBuffer(value) || isTypedArray(value) || isArguments(value))) { - return !value.length; - } - var tag = getTag(value); - if (tag == mapTag || tag == setTag) { - return !value.size; - } - if (isPrototype(value)) { - return !baseKeys(value).length; - } - for (var key in value) { - if (hasOwnProperty.call(value, key)) { - return false; - } + var differenceBy = baseRest(function(array, values) { + var iteratee = last(values); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; } - return true; - } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)) + : []; + }); /** - * Performs a deep comparison between two values to determine if they are - * equivalent. + * This method is like `_.difference` except that it accepts `comparator` + * which is invoked to compare elements of `array` to `values`. The order and + * references of result values are determined by the first array. The comparator + * is invoked with two arguments: (arrVal, othVal). * - * **Note:** This method supports comparing arrays, array buffers, booleans, - * date objects, error objects, maps, numbers, `Object` objects, regexes, - * sets, strings, symbols, and typed arrays. `Object` objects are compared - * by their own, not inherited, enumerable properties. Functions and DOM - * nodes are compared by strict equality, i.e. `===`. + * **Note:** Unlike `_.pullAllWith`, this method returns a new array. * * @static * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. * @example * - * var object = { 'a': 1 }; - * var other = { 'a': 1 }; - * - * _.isEqual(object, other); - * // => true + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; * - * object === other; - * // => false + * _.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual); + * // => [{ 'x': 2, 'y': 1 }] */ - function isEqual(value, other) { - return baseIsEqual(value, other); - } + var differenceWith = baseRest(function(array, values) { + var comparator = last(values); + if (isArrayLikeObject(comparator)) { + comparator = undefined; + } + return isArrayLikeObject(array) + ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), undefined, comparator) + : []; + }); /** - * This method is like `_.isEqual` except that it accepts `customizer` which - * is invoked to compare values. If `customizer` returns `undefined`, comparisons - * are handled by the method instead. The `customizer` is invoked with up to - * six arguments: (objValue, othValue [, index|key, object, other, stack]). + * Creates a slice of `array` with `n` elements dropped from the beginning. * * @static * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @param {Function} [customizer] The function to customize comparisons. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @since 0.5.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. * @example * - * function isGreeting(value) { - * return /^h(?:i|ello)$/.test(value); - * } + * _.drop([1, 2, 3]); + * // => [2, 3] * - * function customizer(objValue, othValue) { - * if (isGreeting(objValue) && isGreeting(othValue)) { - * return true; - * } - * } + * _.drop([1, 2, 3], 2); + * // => [3] * - * var array = ['hello', 'goodbye']; - * var other = ['hi', 'goodbye']; + * _.drop([1, 2, 3], 5); + * // => [] * - * _.isEqualWith(array, other, customizer); - * // => true + * _.drop([1, 2, 3], 0); + * // => [1, 2, 3] */ - function isEqualWith(value, other, customizer) { - customizer = typeof customizer == 'function' ? customizer : undefined; - var result = customizer ? customizer(value, other) : undefined; - return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result; + function drop(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, n < 0 ? 0 : n, length); } /** - * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`, - * `SyntaxError`, `TypeError`, or `URIError` object. + * Creates a slice of `array` with `n` elements dropped from the end. * * @static * @memberOf _ * @since 3.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an error object, else `false`. + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to drop. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. * @example * - * _.isError(new Error); - * // => true + * _.dropRight([1, 2, 3]); + * // => [1, 2] * - * _.isError(Error); - * // => false + * _.dropRight([1, 2, 3], 2); + * // => [1] + * + * _.dropRight([1, 2, 3], 5); + * // => [] + * + * _.dropRight([1, 2, 3], 0); + * // => [1, 2, 3] */ - function isError(value) { - if (!isObjectLike(value)) { - return false; + function dropRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; } - var tag = baseGetTag(value); - return tag == errorTag || tag == domExcTag || - (typeof value.message == 'string' && typeof value.name == 'string' && !isPlainObject(value)); + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, 0, n < 0 ? 0 : n); } /** - * Checks if `value` is a finite primitive number. - * - * **Note:** This method is based on - * [`Number.isFinite`](https://mdn.io/Number/isFinite). + * Creates a slice of `array` excluding elements dropped from the end. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). * * @static * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a finite number, else `false`. + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. * @example * - * _.isFinite(3); - * // => true - * - * _.isFinite(Number.MIN_VALUE); - * // => true - * - * _.isFinite(Infinity); - * // => false + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; * - * _.isFinite('3'); - * // => false - */ - function isFinite(value) { - return typeof value == 'number' && nativeIsFinite(value); - } - - /** - * Checks if `value` is classified as a `Function` object. + * _.dropRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney'] * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a function, else `false`. - * @example + * // The `_.matches` iteratee shorthand. + * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['barney', 'fred'] * - * _.isFunction(_); - * // => true + * // The `_.matchesProperty` iteratee shorthand. + * _.dropRightWhile(users, ['active', false]); + * // => objects for ['barney'] * - * _.isFunction(/abc/); - * // => false + * // The `_.property` iteratee shorthand. + * _.dropRightWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] */ - function isFunction(value) { - if (!isObject(value)) { - return false; - } - // The use of `Object#toString` avoids issues with the `typeof` operator - // in Safari 9 which returns 'object' for typed arrays and other constructors. - var tag = baseGetTag(value); - return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; + function dropRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), true, true) + : []; } /** - * Checks if `value` is an integer. - * - * **Note:** This method is based on - * [`Number.isInteger`](https://mdn.io/Number/isInteger). + * Creates a slice of `array` excluding elements dropped from the beginning. + * Elements are dropped until `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index, array). * * @static * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an integer, else `false`. + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. * @example * - * _.isInteger(3); - * // => true + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; * - * _.isInteger(Number.MIN_VALUE); - * // => false + * _.dropWhile(users, function(o) { return !o.active; }); + * // => objects for ['pebbles'] * - * _.isInteger(Infinity); - * // => false + * // The `_.matches` iteratee shorthand. + * _.dropWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['fred', 'pebbles'] * - * _.isInteger('3'); - * // => false + * // The `_.matchesProperty` iteratee shorthand. + * _.dropWhile(users, ['active', false]); + * // => objects for ['pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.dropWhile(users, 'active'); + * // => objects for ['barney', 'fred', 'pebbles'] */ - function isInteger(value) { - return typeof value == 'number' && value == toInteger(value); + function dropWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), true) + : []; } /** - * Checks if `value` is a valid array-like length. + * Fills elements of `array` with `value` from `start` up to, but not + * including, `end`. * - * **Note:** This method is loosely based on - * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * **Note:** This method mutates `array`. * * @static * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @since 3.2.0 + * @category Array + * @param {Array} array The array to fill. + * @param {*} value The value to fill `array` with. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns `array`. * @example * - * _.isLength(3); - * // => true + * var array = [1, 2, 3]; * - * _.isLength(Number.MIN_VALUE); - * // => false + * _.fill(array, 'a'); + * console.log(array); + * // => ['a', 'a', 'a'] * - * _.isLength(Infinity); - * // => false + * _.fill(Array(3), 2); + * // => [2, 2, 2] * - * _.isLength('3'); - * // => false + * _.fill([4, 6, 8, 10], '*', 1, 3); + * // => [4, '*', '*', 10] */ - function isLength(value) { - return typeof value == 'number' && - value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; + function fill(array, value, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + if (start && typeof start != 'number' && isIterateeCall(array, value, start)) { + start = 0; + end = length; + } + return baseFill(array, value, start, end); } /** - * Checks if `value` is the - * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) - * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) + * This method is like `_.find` except that it returns the index of the first + * element `predicate` returns truthy for instead of the element itself. * * @static * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an object, else `false`. + * @since 1.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. * @example * - * _.isObject({}); - * // => true + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; * - * _.isObject([1, 2, 3]); - * // => true + * _.findIndex(users, function(o) { return o.user == 'barney'; }); + * // => 0 * - * _.isObject(_.noop); - * // => true + * // The `_.matches` iteratee shorthand. + * _.findIndex(users, { 'user': 'fred', 'active': false }); + * // => 1 * - * _.isObject(null); - * // => false + * // The `_.matchesProperty` iteratee shorthand. + * _.findIndex(users, ['active', false]); + * // => 0 + * + * // The `_.property` iteratee shorthand. + * _.findIndex(users, 'active'); + * // => 2 */ - function isObject(value) { - var type = typeof value; - return value != null && (type == 'object' || type == 'function'); + function findIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseFindIndex(array, getIteratee(predicate, 3), index); } /** - * Checks if `value` is object-like. A value is object-like if it's not `null` - * and has a `typeof` result of "object". + * This method is like `_.findIndex` except that it iterates over elements + * of `collection` from right to left. * * @static * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + * @since 2.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the found element, else `-1`. * @example * - * _.isObjectLike({}); - * // => true + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; * - * _.isObjectLike([1, 2, 3]); - * // => true + * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; }); + * // => 2 * - * _.isObjectLike(_.noop); - * // => false + * // The `_.matches` iteratee shorthand. + * _.findLastIndex(users, { 'user': 'barney', 'active': true }); + * // => 0 * - * _.isObjectLike(null); - * // => false + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastIndex(users, ['active', false]); + * // => 2 + * + * // The `_.property` iteratee shorthand. + * _.findLastIndex(users, 'active'); + * // => 0 */ - function isObjectLike(value) { - return value != null && typeof value == 'object'; + function findLastIndex(array, predicate, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length - 1; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = fromIndex < 0 + ? nativeMax(length + index, 0) + : nativeMin(index, length - 1); + } + return baseFindIndex(array, getIteratee(predicate, 3), index, true); } /** - * Checks if `value` is classified as a `Map` object. + * Flattens `array` a single level deep. * * @static * @memberOf _ - * @since 4.3.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a map, else `false`. + * @since 0.1.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. * @example * - * _.isMap(new Map); - * // => true - * - * _.isMap(new WeakMap); - * // => false + * _.flatten([1, [2, [3, [4]], 5]]); + * // => [1, 2, [3, [4]], 5] */ - var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; + function flatten(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, 1) : []; + } /** - * Performs a partial deep comparison between `object` and `source` to - * determine if `object` contains equivalent property values. - * - * **Note:** This method is equivalent to `_.matches` when `source` is - * partially applied. - * - * Partial comparisons will match empty array and empty object `source` - * values against any array or object value, respectively. See `_.isEqual` - * for a list of supported value comparisons. + * Recursively flattens `array`. * * @static * @memberOf _ * @since 3.0.0 - * @category Lang - * @param {Object} object The object to inspect. - * @param {Object} source The object of property values to match. - * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. * @example * - * var object = { 'a': 1, 'b': 2 }; - * - * _.isMatch(object, { 'b': 2 }); - * // => true - * - * _.isMatch(object, { 'b': 1 }); - * // => false + * _.flattenDeep([1, [2, [3, [4]], 5]]); + * // => [1, 2, 3, 4, 5] */ - function isMatch(object, source) { - return object === source || baseIsMatch(object, source, getMatchData(source)); + function flattenDeep(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, INFINITY) : []; } /** - * This method is like `_.isMatch` except that it accepts `customizer` which - * is invoked to compare values. If `customizer` returns `undefined`, comparisons - * are handled by the method instead. The `customizer` is invoked with five - * arguments: (objValue, srcValue, index|key, object, source). + * Recursively flatten `array` up to `depth` times. * * @static * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {Object} object The object to inspect. - * @param {Object} source The object of property values to match. - * @param {Function} [customizer] The function to customize comparisons. - * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @since 4.4.0 + * @category Array + * @param {Array} array The array to flatten. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. * @example * - * function isGreeting(value) { - * return /^h(?:i|ello)$/.test(value); - * } - * - * function customizer(objValue, srcValue) { - * if (isGreeting(objValue) && isGreeting(srcValue)) { - * return true; - * } - * } + * var array = [1, [2, [3, [4]], 5]]; * - * var object = { 'greeting': 'hello' }; - * var source = { 'greeting': 'hi' }; + * _.flattenDepth(array, 1); + * // => [1, 2, [3, [4]], 5] * - * _.isMatchWith(object, source, customizer); - * // => true + * _.flattenDepth(array, 2); + * // => [1, 2, 3, [4], 5] */ - function isMatchWith(object, source, customizer) { - customizer = typeof customizer == 'function' ? customizer : undefined; - return baseIsMatch(object, source, getMatchData(source), customizer); + function flattenDepth(array, depth) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(array, depth); } /** - * Checks if `value` is `NaN`. - * - * **Note:** This method is based on - * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as - * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for - * `undefined` and other non-number values. + * The inverse of `_.toPairs`; this method returns an object composed + * from key-value `pairs`. * * @static * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + * @since 4.0.0 + * @category Array + * @param {Array} pairs The key-value pairs. + * @returns {Object} Returns the new object. * @example * - * _.isNaN(NaN); - * // => true - * - * _.isNaN(new Number(NaN)); - * // => true - * - * isNaN(undefined); - * // => true - * - * _.isNaN(undefined); - * // => false + * _.fromPairs([['a', 1], ['b', 2]]); + * // => { 'a': 1, 'b': 2 } */ - function isNaN(value) { - // An `NaN` primitive is the only value that is not equal to itself. - // Perform the `toStringTag` check first to avoid errors with some - // ActiveX objects in IE. - return isNumber(value) && value != +value; + function fromPairs(pairs) { + var index = -1, + length = pairs == null ? 0 : pairs.length, + result = {}; + + while (++index < length) { + var pair = pairs[index]; + result[pair[0]] = pair[1]; + } + return result; } /** - * Checks if `value` is a pristine native function. - * - * **Note:** This method can't reliably detect native functions in the presence - * of the core-js package because core-js circumvents this kind of detection. - * Despite multiple requests, the core-js maintainer has made it clear: any - * attempt to fix the detection will be obstructed. As a result, we're left - * with little choice but to throw an error. Unfortunately, this also affects - * packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill), - * which rely on core-js. + * Gets the first element of `array`. * * @static * @memberOf _ - * @since 3.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a native function, - * else `false`. + * @since 0.1.0 + * @alias first + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the first element of `array`. * @example * - * _.isNative(Array.prototype.push); - * // => true + * _.head([1, 2, 3]); + * // => 1 * - * _.isNative(_); - * // => false + * _.head([]); + * // => undefined */ - function isNative(value) { - if (isMaskable(value)) { - throw new Error(CORE_ERROR_TEXT); - } - return baseIsNative(value); + function head(array) { + return (array && array.length) ? array[0] : undefined; } /** - * Checks if `value` is `null`. + * Gets the index at which the first occurrence of `value` is found in `array` + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it's used as the + * offset from the end of `array`. * * @static * @memberOf _ * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is `null`, else `false`. + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. * @example * - * _.isNull(null); - * // => true + * _.indexOf([1, 2, 1, 2], 2); + * // => 1 * - * _.isNull(void 0); - * // => false + * // Search from the `fromIndex`. + * _.indexOf([1, 2, 1, 2], 2, 2); + * // => 3 */ - function isNull(value) { - return value === null; + function indexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = fromIndex == null ? 0 : toInteger(fromIndex); + if (index < 0) { + index = nativeMax(length + index, 0); + } + return baseIndexOf(array, value, index); } /** - * Checks if `value` is `null` or `undefined`. + * Gets all but the last element of `array`. * * @static * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is nullish, else `false`. + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. * @example * - * _.isNil(null); - * // => true - * - * _.isNil(void 0); - * // => true - * - * _.isNil(NaN); - * // => false + * _.initial([1, 2, 3]); + * // => [1, 2] */ - function isNil(value) { - return value == null; + function initial(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 0, -1) : []; } /** - * Checks if `value` is classified as a `Number` primitive or object. - * - * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are - * classified as numbers, use the `_.isFinite` method. + * Creates an array of unique values that are included in all given arrays + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. The order and references of result values are + * determined by the first array. * * @static * @memberOf _ * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a number, else `false`. + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of intersecting values. * @example * - * _.isNumber(3); - * // => true - * - * _.isNumber(Number.MIN_VALUE); - * // => true - * - * _.isNumber(Infinity); - * // => true - * - * _.isNumber('3'); - * // => false + * _.intersection([2, 1], [2, 3]); + * // => [2] */ - function isNumber(value) { - return typeof value == 'number' || - (isObjectLike(value) && baseGetTag(value) == numberTag); - } + var intersection = baseRest(function(arrays) { + var mapped = arrayMap(arrays, castArrayLikeObject); + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped) + : []; + }); /** - * Checks if `value` is a plain object, that is, an object created by the - * `Object` constructor or one with a `[[Prototype]]` of `null`. + * This method is like `_.intersection` except that it accepts `iteratee` + * which is invoked for each element of each `arrays` to generate the criterion + * by which they're compared. The order and references of result values are + * determined by the first array. The iteratee is invoked with one argument: + * (value). * * @static * @memberOf _ - * @since 0.8.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of intersecting values. * @example * - * function Foo() { - * this.a = 1; - * } - * - * _.isPlainObject(new Foo); - * // => false - * - * _.isPlainObject([1, 2, 3]); - * // => false - * - * _.isPlainObject({ 'x': 0, 'y': 0 }); - * // => true + * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [2.1] * - * _.isPlainObject(Object.create(null)); - * // => true + * // The `_.property` iteratee shorthand. + * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }] */ - function isPlainObject(value) { - if (!isObjectLike(value) || baseGetTag(value) != objectTag) { - return false; - } - var proto = getPrototype(value); - if (proto === null) { - return true; + var intersectionBy = baseRest(function(arrays) { + var iteratee = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + if (iteratee === last(mapped)) { + iteratee = undefined; + } else { + mapped.pop(); } - var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; - return typeof Ctor == 'function' && Ctor instanceof Ctor && - funcToString.call(Ctor) == objectCtorString; - } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, getIteratee(iteratee, 2)) + : []; + }); /** - * Checks if `value` is classified as a `RegExp` object. + * This method is like `_.intersection` except that it accepts `comparator` + * which is invoked to compare elements of `arrays`. The order and references + * of result values are determined by the first array. The comparator is + * invoked with two arguments: (arrVal, othVal). * * @static * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of intersecting values. * @example * - * _.isRegExp(/abc/); - * // => true + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; * - * _.isRegExp('/abc/'); - * // => false + * _.intersectionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }] */ - var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp; + var intersectionWith = baseRest(function(arrays) { + var comparator = last(arrays), + mapped = arrayMap(arrays, castArrayLikeObject); + + comparator = typeof comparator == 'function' ? comparator : undefined; + if (comparator) { + mapped.pop(); + } + return (mapped.length && mapped[0] === arrays[0]) + ? baseIntersection(mapped, undefined, comparator) + : []; + }); /** - * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754 - * double precision number which isn't the result of a rounded unsafe integer. - * - * **Note:** This method is based on - * [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger). + * Converts all elements in `array` into a string separated by `separator`. * * @static * @memberOf _ * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`. + * @category Array + * @param {Array} array The array to convert. + * @param {string} [separator=','] The element separator. + * @returns {string} Returns the joined string. * @example * - * _.isSafeInteger(3); - * // => true - * - * _.isSafeInteger(Number.MIN_VALUE); - * // => false - * - * _.isSafeInteger(Infinity); - * // => false - * - * _.isSafeInteger('3'); - * // => false + * _.join(['a', 'b', 'c'], '~'); + * // => 'a~b~c' */ - function isSafeInteger(value) { - return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER; + function join(array, separator) { + return array == null ? '' : nativeJoin.call(array, separator); } /** - * Checks if `value` is classified as a `Set` object. + * Gets the last element of `array`. * * @static * @memberOf _ - * @since 4.3.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a set, else `false`. + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. * @example * - * _.isSet(new Set); - * // => true - * - * _.isSet(new WeakSet); - * // => false + * _.last([1, 2, 3]); + * // => 3 */ - var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet; + function last(array) { + var length = array == null ? 0 : array.length; + return length ? array[length - 1] : undefined; + } /** - * Checks if `value` is classified as a `String` primitive or object. + * This method is like `_.indexOf` except that it iterates over elements of + * `array` from right to left. * * @static - * @since 0.1.0 * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a string, else `false`. + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=array.length-1] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. * @example * - * _.isString('abc'); - * // => true + * _.lastIndexOf([1, 2, 1, 2], 2); + * // => 3 * - * _.isString(1); - * // => false + * // Search from the `fromIndex`. + * _.lastIndexOf([1, 2, 1, 2], 2, 2); + * // => 1 */ - function isString(value) { - return typeof value == 'string' || - (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag); + function lastIndexOf(array, value, fromIndex) { + var length = array == null ? 0 : array.length; + if (!length) { + return -1; + } + var index = length; + if (fromIndex !== undefined) { + index = toInteger(fromIndex); + index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1); + } + return value === value + ? strictLastIndexOf(array, value, index) + : baseFindIndex(array, baseIsNaN, index, true); } /** - * Checks if `value` is classified as a `Symbol` primitive or object. + * Gets the element at index `n` of `array`. If `n` is negative, the nth + * element from the end is returned. * * @static * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. + * @since 4.11.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=0] The index of the element to return. + * @returns {*} Returns the nth element of `array`. * @example * - * _.isSymbol(Symbol.iterator); - * // => true + * var array = ['a', 'b', 'c', 'd']; * - * _.isSymbol('abc'); - * // => false + * _.nth(array, 1); + * // => 'b' + * + * _.nth(array, -2); + * // => 'c'; */ - function isSymbol(value) { - return typeof value == 'symbol' || - (isObjectLike(value) && baseGetTag(value) == symbolTag); + function nth(array, n) { + return (array && array.length) ? baseNth(array, toInteger(n)) : undefined; } /** - * Checks if `value` is classified as a typed array. + * Removes all given values from `array` using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove` + * to remove elements from an array by predicate. * * @static * @memberOf _ - * @since 3.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + * @since 2.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {...*} [values] The values to remove. + * @returns {Array} Returns `array`. * @example * - * _.isTypedArray(new Uint8Array); - * // => true + * var array = ['a', 'b', 'c', 'a', 'b', 'c']; * - * _.isTypedArray([]); - * // => false + * _.pull(array, 'a', 'c'); + * console.log(array); + * // => ['b', 'b'] */ - var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; + var pull = baseRest(pullAll); /** - * Checks if `value` is `undefined`. + * This method is like `_.pull` except that it accepts an array of values to remove. + * + * **Note:** Unlike `_.difference`, this method mutates `array`. * * @static - * @since 0.1.0 * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @returns {Array} Returns `array`. * @example * - * _.isUndefined(void 0); - * // => true + * var array = ['a', 'b', 'c', 'a', 'b', 'c']; * - * _.isUndefined(null); - * // => false + * _.pullAll(array, ['a', 'c']); + * console.log(array); + * // => ['b', 'b'] */ - function isUndefined(value) { - return value === undefined; + function pullAll(array, values) { + return (array && array.length && values && values.length) + ? basePullAll(array, values) + : array; } /** - * Checks if `value` is classified as a `WeakMap` object. + * This method is like `_.pullAll` except that it accepts `iteratee` which is + * invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The iteratee is invoked with one argument: (value). + * + * **Note:** Unlike `_.differenceBy`, this method mutates `array`. * * @static * @memberOf _ - * @since 4.3.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a weak map, else `false`. + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns `array`. * @example * - * _.isWeakMap(new WeakMap); - * // => true + * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }]; * - * _.isWeakMap(new Map); - * // => false + * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x'); + * console.log(array); + * // => [{ 'x': 2 }] */ - function isWeakMap(value) { - return isObjectLike(value) && getTag(value) == weakMapTag; + function pullAllBy(array, values, iteratee) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, getIteratee(iteratee, 2)) + : array; } /** - * Checks if `value` is classified as a `WeakSet` object. + * This method is like `_.pullAll` except that it accepts `comparator` which + * is invoked to compare elements of `array` to `values`. The comparator is + * invoked with two arguments: (arrVal, othVal). + * + * **Note:** Unlike `_.differenceWith`, this method mutates `array`. * * @static * @memberOf _ - * @since 4.3.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a weak set, else `false`. + * @since 4.6.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns `array`. * @example * - * _.isWeakSet(new WeakSet); - * // => true + * var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }]; * - * _.isWeakSet(new Set); - * // => false + * _.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual); + * console.log(array); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }] */ - function isWeakSet(value) { - return isObjectLike(value) && baseGetTag(value) == weakSetTag; + function pullAllWith(array, values, comparator) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, undefined, comparator) + : array; } /** - * Checks if `value` is less than `other`. + * Removes elements from `array` corresponding to `indexes` and returns an + * array of removed elements. + * + * **Note:** Unlike `_.at`, this method mutates `array`. * * @static * @memberOf _ - * @since 3.9.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if `value` is less than `other`, - * else `false`. - * @see _.gt + * @since 3.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {...(number|number[])} [indexes] The indexes of elements to remove. + * @returns {Array} Returns the new array of removed elements. * @example * - * _.lt(1, 3); - * // => true + * var array = ['a', 'b', 'c', 'd']; + * var pulled = _.pullAt(array, [1, 3]); * - * _.lt(3, 3); - * // => false + * console.log(array); + * // => ['a', 'c'] * - * _.lt(3, 1); - * // => false + * console.log(pulled); + * // => ['b', 'd'] */ - var lt = createRelationalOperation(baseLt); + var pullAt = flatRest(function(array, indexes) { + var length = array == null ? 0 : array.length, + result = baseAt(array, indexes); + + basePullAt(array, arrayMap(indexes, function(index) { + return isIndex(index, length) ? +index : index; + }).sort(compareAscending)); + + return result; + }); /** - * Checks if `value` is less than or equal to `other`. + * Removes all elements from `array` that `predicate` returns truthy for + * and returns an array of the removed elements. The predicate is invoked + * with three arguments: (value, index, array). + * + * **Note:** Unlike `_.filter`, this method mutates `array`. Use `_.pull` + * to pull elements from an array by value. * * @static * @memberOf _ - * @since 3.9.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if `value` is less than or equal to - * `other`, else `false`. - * @see _.gte + * @since 2.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new array of removed elements. * @example * - * _.lte(1, 3); - * // => true + * var array = [1, 2, 3, 4]; + * var evens = _.remove(array, function(n) { + * return n % 2 == 0; + * }); * - * _.lte(3, 3); - * // => true + * console.log(array); + * // => [1, 3] * - * _.lte(3, 1); - * // => false + * console.log(evens); + * // => [2, 4] */ - var lte = createRelationalOperation(function(value, other) { - return value <= other; - }); + function remove(array, predicate) { + var result = []; + if (!(array && array.length)) { + return result; + } + var index = -1, + indexes = [], + length = array.length; + + predicate = getIteratee(predicate, 3); + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result.push(value); + indexes.push(index); + } + } + basePullAt(array, indexes); + return result; + } /** - * Converts `value` to an array. + * Reverses `array` so that the first element becomes the last, the second + * element becomes the second to last, and so on. + * + * **Note:** This method mutates `array` and is based on + * [`Array#reverse`](https://mdn.io/Array/reverse). * * @static - * @since 0.1.0 * @memberOf _ - * @category Lang - * @param {*} value The value to convert. - * @returns {Array} Returns the converted array. + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @returns {Array} Returns `array`. * @example * - * _.toArray({ 'a': 1, 'b': 2 }); - * // => [1, 2] + * var array = [1, 2, 3]; * - * _.toArray('abc'); - * // => ['a', 'b', 'c'] + * _.reverse(array); + * // => [3, 2, 1] * - * _.toArray(1); - * // => [] + * console.log(array); + * // => [3, 2, 1] + */ + function reverse(array) { + return array == null ? array : nativeReverse.call(array); + } + + /** + * Creates a slice of `array` from `start` up to, but not including, `end`. * - * _.toArray(null); - * // => [] + * **Note:** This method is used instead of + * [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are + * returned. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Array + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. */ - function toArray(value) { - if (!value) { + function slice(array, start, end) { + var length = array == null ? 0 : array.length; + if (!length) { return []; } - if (isArrayLike(value)) { - return isString(value) ? stringToArray(value) : copyArray(value); + if (end && typeof end != 'number' && isIterateeCall(array, start, end)) { + start = 0; + end = length; } - if (symIterator && value[symIterator]) { - return iteratorToArray(value[symIterator]()); + else { + start = start == null ? 0 : toInteger(start); + end = end === undefined ? length : toInteger(end); } - var tag = getTag(value), - func = tag == mapTag ? mapToArray : (tag == setTag ? setToArray : values); - - return func(value); + return baseSlice(array, start, end); } /** - * Converts `value` to a finite number. + * Uses a binary search to determine the lowest index at which `value` + * should be inserted into `array` in order to maintain its sort order. * * @static * @memberOf _ - * @since 4.12.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {number} Returns the converted number. + * @since 0.1.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. * @example * - * _.toFinite(3.2); - * // => 3.2 - * - * _.toFinite(Number.MIN_VALUE); - * // => 5e-324 - * - * _.toFinite(Infinity); - * // => 1.7976931348623157e+308 - * - * _.toFinite('3.2'); - * // => 3.2 + * _.sortedIndex([30, 50], 40); + * // => 1 */ - function toFinite(value) { - if (!value) { - return value === 0 ? value : 0; - } - value = toNumber(value); - if (value === INFINITY || value === -INFINITY) { - var sign = (value < 0 ? -1 : 1); - return sign * MAX_INTEGER; - } - return value === value ? value : 0; + function sortedIndex(array, value) { + return baseSortedIndex(array, value); } /** - * Converts `value` to an integer. - * - * **Note:** This method is loosely based on - * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). + * This method is like `_.sortedIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). * * @static * @memberOf _ * @since 4.0.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {number} Returns the converted integer. + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. * @example * - * _.toInteger(3.2); - * // => 3 + * var objects = [{ 'x': 4 }, { 'x': 5 }]; * - * _.toInteger(Number.MIN_VALUE); + * _.sortedIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); * // => 0 * - * _.toInteger(Infinity); - * // => 1.7976931348623157e+308 - * - * _.toInteger('3.2'); - * // => 3 + * // The `_.property` iteratee shorthand. + * _.sortedIndexBy(objects, { 'x': 4 }, 'x'); + * // => 0 */ - function toInteger(value) { - var result = toFinite(value), - remainder = result % 1; - - return result === result ? (remainder ? result - remainder : result) : 0; + function sortedIndexBy(array, value, iteratee) { + return baseSortedIndexBy(array, value, getIteratee(iteratee, 2)); } /** - * Converts `value` to an integer suitable for use as the length of an - * array-like object. - * - * **Note:** This method is based on - * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * This method is like `_.indexOf` except that it performs a binary + * search on a sorted `array`. * * @static * @memberOf _ * @since 4.0.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {number} Returns the converted integer. + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. * @example * - * _.toLength(3.2); - * // => 3 - * - * _.toLength(Number.MIN_VALUE); - * // => 0 - * - * _.toLength(Infinity); - * // => 4294967295 - * - * _.toLength('3.2'); - * // => 3 + * _.sortedIndexOf([4, 5, 5, 5, 6], 5); + * // => 1 */ - function toLength(value) { - return value ? baseClamp(toInteger(value), 0, MAX_ARRAY_LENGTH) : 0; + function sortedIndexOf(array, value) { + var length = array == null ? 0 : array.length; + if (length) { + var index = baseSortedIndex(array, value); + if (index < length && eq(array[index], value)) { + return index; + } + } + return -1; } /** - * Converts `value` to a number. + * This method is like `_.sortedIndex` except that it returns the highest + * index at which `value` should be inserted into `array` in order to + * maintain its sort order. * * @static * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to process. - * @returns {number} Returns the number. + * @since 3.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. * @example * - * _.toNumber(3.2); - * // => 3.2 - * - * _.toNumber(Number.MIN_VALUE); - * // => 5e-324 - * - * _.toNumber(Infinity); - * // => Infinity - * - * _.toNumber('3.2'); - * // => 3.2 + * _.sortedLastIndex([4, 5, 5, 5, 6], 5); + * // => 4 */ - function toNumber(value) { - if (typeof value == 'number') { - return value; - } - if (isSymbol(value)) { - return NAN; - } - if (isObject(value)) { - var other = typeof value.valueOf == 'function' ? value.valueOf() : value; - value = isObject(other) ? (other + '') : other; - } - if (typeof value != 'string') { - return value === 0 ? value : +value; - } - value = baseTrim(value); - var isBinary = reIsBinary.test(value); - return (isBinary || reIsOctal.test(value)) - ? freeParseInt(value.slice(2), isBinary ? 2 : 8) - : (reIsBadHex.test(value) ? NAN : +value); + function sortedLastIndex(array, value) { + return baseSortedIndex(array, value, true); } /** - * Converts `value` to a plain object flattening inherited enumerable string - * keyed properties of `value` to own properties of the plain object. + * This method is like `_.sortedLastIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). * * @static * @memberOf _ - * @since 3.0.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {Object} Returns the converted plain object. + * @since 4.0.0 + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted + * into `array`. * @example * - * function Foo() { - * this.b = 2; - * } - * - * Foo.prototype.c = 3; + * var objects = [{ 'x': 4 }, { 'x': 5 }]; * - * _.assign({ 'a': 1 }, new Foo); - * // => { 'a': 1, 'b': 2 } + * _.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; }); + * // => 1 * - * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); - * // => { 'a': 1, 'b': 2, 'c': 3 } + * // The `_.property` iteratee shorthand. + * _.sortedLastIndexBy(objects, { 'x': 4 }, 'x'); + * // => 1 */ - function toPlainObject(value) { - return copyObject(value, keysIn(value)); + function sortedLastIndexBy(array, value, iteratee) { + return baseSortedIndexBy(array, value, getIteratee(iteratee, 2), true); } /** - * Converts `value` to a safe integer. A safe integer can be compared and - * represented correctly. + * This method is like `_.lastIndexOf` except that it performs a binary + * search on a sorted `array`. * * @static * @memberOf _ * @since 4.0.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {number} Returns the converted integer. + * @category Array + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. * @example * - * _.toSafeInteger(3.2); + * _.sortedLastIndexOf([4, 5, 5, 5, 6], 5); * // => 3 + */ + function sortedLastIndexOf(array, value) { + var length = array == null ? 0 : array.length; + if (length) { + var index = baseSortedIndex(array, value, true) - 1; + if (eq(array[index], value)) { + return index; + } + } + return -1; + } + + /** + * This method is like `_.uniq` except that it's designed and optimized + * for sorted arrays. * - * _.toSafeInteger(Number.MIN_VALUE); - * // => 0 - * - * _.toSafeInteger(Infinity); - * // => 9007199254740991 + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example * - * _.toSafeInteger('3.2'); - * // => 3 + * _.sortedUniq([1, 1, 2]); + * // => [1, 2] */ - function toSafeInteger(value) { - return value - ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER) - : (value === 0 ? value : 0); + function sortedUniq(array) { + return (array && array.length) + ? baseSortedUniq(array) + : []; } /** - * Converts `value` to a string. An empty string is returned for `null` - * and `undefined` values. The sign of `-0` is preserved. + * This method is like `_.uniqBy` except that it's designed and optimized + * for sorted arrays. * * @static * @memberOf _ * @since 4.0.0 - * @category Lang - * @param {*} value The value to convert. - * @returns {string} Returns the converted string. + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. * @example * - * _.toString(null); - * // => '' + * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); + * // => [1.1, 2.3] + */ + function sortedUniqBy(array, iteratee) { + return (array && array.length) + ? baseSortedUniq(array, getIteratee(iteratee, 2)) + : []; + } + + /** + * Gets all but the first element of `array`. * - * _.toString(-0); - * // => '-0' + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to query. + * @returns {Array} Returns the slice of `array`. + * @example * - * _.toString([1, 2, 3]); - * // => '1,2,3' + * _.tail([1, 2, 3]); + * // => [2, 3] */ - function toString(value) { - return value == null ? '' : baseToString(value); + function tail(array) { + var length = array == null ? 0 : array.length; + return length ? baseSlice(array, 1, length) : []; } - /*------------------------------------------------------------------------*/ - /** - * Assigns own enumerable string keyed properties of source objects to the - * destination object. Source objects are applied from left to right. - * Subsequent sources overwrite property assignments of previous sources. - * - * **Note:** This method mutates `object` and is loosely based on - * [`Object.assign`](https://mdn.io/Object/assign). + * Creates a slice of `array` with `n` elements taken from the beginning. * * @static * @memberOf _ - * @since 0.10.0 - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. - * @see _.assignIn + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. * @example * - * function Foo() { - * this.a = 1; - * } + * _.take([1, 2, 3]); + * // => [1] * - * function Bar() { - * this.c = 3; - * } + * _.take([1, 2, 3], 2); + * // => [1, 2] * - * Foo.prototype.b = 2; - * Bar.prototype.d = 4; + * _.take([1, 2, 3], 5); + * // => [1, 2, 3] * - * _.assign({ 'a': 0 }, new Foo, new Bar); - * // => { 'a': 1, 'c': 3 } + * _.take([1, 2, 3], 0); + * // => [] */ - var assign = createAssigner(function(object, source) { - if (isPrototype(source) || isArrayLike(source)) { - copyObject(source, keys(source), object); - return; - } - for (var key in source) { - if (hasOwnProperty.call(source, key)) { - assignValue(object, key, source[key]); - } + function take(array, n, guard) { + if (!(array && array.length)) { + return []; } - }); + n = (guard || n === undefined) ? 1 : toInteger(n); + return baseSlice(array, 0, n < 0 ? 0 : n); + } /** - * This method is like `_.assign` except that it iterates over own and - * inherited source properties. - * - * **Note:** This method mutates `object`. + * Creates a slice of `array` with `n` elements taken from the end. * * @static * @memberOf _ - * @since 4.0.0 - * @alias extend - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. - * @see _.assign + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {number} [n=1] The number of elements to take. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the slice of `array`. * @example * - * function Foo() { - * this.a = 1; - * } + * _.takeRight([1, 2, 3]); + * // => [3] * - * function Bar() { - * this.c = 3; - * } + * _.takeRight([1, 2, 3], 2); + * // => [2, 3] * - * Foo.prototype.b = 2; - * Bar.prototype.d = 4; + * _.takeRight([1, 2, 3], 5); + * // => [1, 2, 3] * - * _.assignIn({ 'a': 0 }, new Foo, new Bar); - * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 } + * _.takeRight([1, 2, 3], 0); + * // => [] */ - var assignIn = createAssigner(function(object, source) { - copyObject(source, keysIn(source), object); - }); + function takeRight(array, n, guard) { + var length = array == null ? 0 : array.length; + if (!length) { + return []; + } + n = (guard || n === undefined) ? 1 : toInteger(n); + n = length - n; + return baseSlice(array, n < 0 ? 0 : n, length); + } /** - * This method is like `_.assignIn` except that it accepts `customizer` - * which is invoked to produce the assigned values. If `customizer` returns - * `undefined`, assignment is handled by the method instead. The `customizer` - * is invoked with five arguments: (objValue, srcValue, key, object, source). - * - * **Note:** This method mutates `object`. + * Creates a slice of `array` with elements taken from the end. Elements are + * taken until `predicate` returns falsey. The predicate is invoked with + * three arguments: (value, index, array). * * @static * @memberOf _ - * @since 4.0.0 - * @alias extendWith - * @category Object - * @param {Object} object The destination object. - * @param {...Object} sources The source objects. - * @param {Function} [customizer] The function to customize assigned values. - * @returns {Object} Returns `object`. - * @see _.assignWith + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. * @example * - * function customizer(objValue, srcValue) { - * return _.isUndefined(objValue) ? srcValue : objValue; - * } + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': false } + * ]; * - * var defaults = _.partialRight(_.assignInWith, customizer); + * _.takeRightWhile(users, function(o) { return !o.active; }); + * // => objects for ['fred', 'pebbles'] * - * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); - * // => { 'a': 1, 'b': 2 } + * // The `_.matches` iteratee shorthand. + * _.takeRightWhile(users, { 'user': 'pebbles', 'active': false }); + * // => objects for ['pebbles'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.takeRightWhile(users, ['active', false]); + * // => objects for ['fred', 'pebbles'] + * + * // The `_.property` iteratee shorthand. + * _.takeRightWhile(users, 'active'); + * // => [] */ - var assignInWith = createAssigner(function(object, source, srcIndex, customizer) { - copyObject(source, keysIn(source), object, customizer); - }); + function takeRightWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3), false, true) + : []; + } /** - * This method is like `_.assign` except that it accepts `customizer` - * which is invoked to produce the assigned values. If `customizer` returns - * `undefined`, assignment is handled by the method instead. The `customizer` - * is invoked with five arguments: (objValue, srcValue, key, object, source). - * - * **Note:** This method mutates `object`. + * Creates a slice of `array` with elements taken from the beginning. Elements + * are taken until `predicate` returns falsey. The predicate is invoked with + * three arguments: (value, index, array). * * @static * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The destination object. - * @param {...Object} sources The source objects. - * @param {Function} [customizer] The function to customize assigned values. - * @returns {Object} Returns `object`. - * @see _.assignInWith + * @since 3.0.0 + * @category Array + * @param {Array} array The array to query. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the slice of `array`. * @example * - * function customizer(objValue, srcValue) { - * return _.isUndefined(objValue) ? srcValue : objValue; - * } + * var users = [ + * { 'user': 'barney', 'active': false }, + * { 'user': 'fred', 'active': false }, + * { 'user': 'pebbles', 'active': true } + * ]; * - * var defaults = _.partialRight(_.assignWith, customizer); + * _.takeWhile(users, function(o) { return !o.active; }); + * // => objects for ['barney', 'fred'] * - * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); - * // => { 'a': 1, 'b': 2 } + * // The `_.matches` iteratee shorthand. + * _.takeWhile(users, { 'user': 'barney', 'active': false }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.takeWhile(users, ['active', false]); + * // => objects for ['barney', 'fred'] + * + * // The `_.property` iteratee shorthand. + * _.takeWhile(users, 'active'); + * // => [] */ - var assignWith = createAssigner(function(object, source, srcIndex, customizer) { - copyObject(source, keys(source), object, customizer); - }); + function takeWhile(array, predicate) { + return (array && array.length) + ? baseWhile(array, getIteratee(predicate, 3)) + : []; + } /** - * Creates an array of values corresponding to `paths` of `object`. + * Creates an array of unique values, in order, from all given arrays using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. * * @static * @memberOf _ - * @since 1.0.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {...(string|string[])} [paths] The property paths to pick. - * @returns {Array} Returns the picked values. + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of combined values. * @example * - * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; - * - * _.at(object, ['a[0].b.c', 'a[1]']); - * // => [3, 4] + * _.union([2], [1, 2]); + * // => [2, 1] */ - var at = flatRest(baseAt); + var union = baseRest(function(arrays) { + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true)); + }); /** - * Creates an object that inherits from the `prototype` object. If a - * `properties` object is given, its own enumerable string keyed properties - * are assigned to the created object. + * This method is like `_.union` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by + * which uniqueness is computed. Result values are chosen from the first + * array in which the value occurs. The iteratee is invoked with one argument: + * (value). * * @static * @memberOf _ - * @since 2.3.0 - * @category Object - * @param {Object} prototype The object to inherit from. - * @param {Object} [properties] The properties to assign to the object. - * @returns {Object} Returns the new object. + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of combined values. * @example * - * function Shape() { - * this.x = 0; - * this.y = 0; - * } - * - * function Circle() { - * Shape.call(this); - * } - * - * Circle.prototype = _.create(Shape.prototype, { - * 'constructor': Circle - * }); - * - * var circle = new Circle; - * circle instanceof Circle; - * // => true + * _.unionBy([2.1], [1.2, 2.3], Math.floor); + * // => [2.1, 1.2] * - * circle instanceof Shape; - * // => true + * // The `_.property` iteratee shorthand. + * _.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] */ - function create(prototype, properties) { - var result = baseCreate(prototype); - return properties == null ? result : baseAssign(result, properties); - } + var unionBy = baseRest(function(arrays) { + var iteratee = last(arrays); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee, 2)); + }); /** - * Assigns own and inherited enumerable string keyed properties of source - * objects to the destination object for all destination properties that - * resolve to `undefined`. Source objects are applied from left to right. - * Once a property is set, additional values of the same property are ignored. - * - * **Note:** This method mutates `object`. + * This method is like `_.union` except that it accepts `comparator` which + * is invoked to compare elements of `arrays`. Result values are chosen from + * the first array in which the value occurs. The comparator is invoked + * with two arguments: (arrVal, othVal). * * @static - * @since 0.1.0 * @memberOf _ - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. - * @see _.defaultsDeep + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of combined values. * @example * - * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); - * // => { 'a': 1, 'b': 2 } + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.unionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] */ - var defaults = baseRest(function(object, sources) { - object = Object(object); - - var index = -1; - var length = sources.length; - var guard = length > 2 ? sources[2] : undefined; - - if (guard && isIterateeCall(sources[0], sources[1], guard)) { - length = 1; - } - - while (++index < length) { - var source = sources[index]; - var props = keysIn(source); - var propsIndex = -1; - var propsLength = props.length; - - while (++propsIndex < propsLength) { - var key = props[propsIndex]; - var value = object[key]; - - if (value === undefined || - (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) { - object[key] = source[key]; - } - } - } - - return object; + var unionWith = baseRest(function(arrays) { + var comparator = last(arrays); + comparator = typeof comparator == 'function' ? comparator : undefined; + return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined, comparator); }); /** - * This method is like `_.defaults` except that it recursively assigns - * default properties. - * - * **Note:** This method mutates `object`. + * Creates a duplicate-free version of an array, using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons, in which only the first occurrence of each element + * is kept. The order of result values is determined by the order they occur + * in the array. * * @static * @memberOf _ - * @since 3.10.0 - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. - * @see _.defaults + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. * @example * - * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } }); - * // => { 'a': { 'b': 2, 'c': 3 } } - */ - var defaultsDeep = baseRest(function(args) { - args.push(undefined, customDefaultsMerge); - return apply(mergeWith, undefined, args); - }); + * _.uniq([2, 1, 2]); + * // => [2, 1] + */ + function uniq(array) { + return (array && array.length) ? baseUniq(array) : []; + } /** - * This method is like `_.find` except that it returns the key of the first - * element `predicate` returns truthy for instead of the element itself. + * This method is like `_.uniq` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * uniqueness is computed. The order of result values is determined by the + * order they occur in the array. The iteratee is invoked with one argument: + * (value). * * @static * @memberOf _ - * @since 1.1.0 - * @category Object - * @param {Object} object The object to inspect. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {string|undefined} Returns the key of the matched element, - * else `undefined`. + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. * @example * - * var users = { - * 'barney': { 'age': 36, 'active': true }, - * 'fred': { 'age': 40, 'active': false }, - * 'pebbles': { 'age': 1, 'active': true } - * }; - * - * _.findKey(users, function(o) { return o.age < 40; }); - * // => 'barney' (iteration order is not guaranteed) - * - * // The `_.matches` iteratee shorthand. - * _.findKey(users, { 'age': 1, 'active': true }); - * // => 'pebbles' - * - * // The `_.matchesProperty` iteratee shorthand. - * _.findKey(users, ['active', false]); - * // => 'fred' + * _.uniqBy([2.1, 1.2, 2.3], Math.floor); + * // => [2.1, 1.2] * * // The `_.property` iteratee shorthand. - * _.findKey(users, 'active'); - * // => 'barney' + * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] */ - function findKey(object, predicate) { - return baseFindKey(object, getIteratee(predicate, 3), baseForOwn); + function uniqBy(array, iteratee) { + return (array && array.length) ? baseUniq(array, getIteratee(iteratee, 2)) : []; } /** - * This method is like `_.findKey` except that it iterates over elements of - * a collection in the opposite order. + * This method is like `_.uniq` except that it accepts `comparator` which + * is invoked to compare elements of `array`. The order of result values is + * determined by the order they occur in the array.The comparator is invoked + * with two arguments: (arrVal, othVal). * * @static * @memberOf _ - * @since 2.0.0 - * @category Object - * @param {Object} object The object to inspect. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @returns {string|undefined} Returns the key of the matched element, - * else `undefined`. + * @since 4.0.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. * @example * - * var users = { - * 'barney': { 'age': 36, 'active': true }, - * 'fred': { 'age': 40, 'active': false }, - * 'pebbles': { 'age': 1, 'active': true } - * }; - * - * _.findLastKey(users, function(o) { return o.age < 40; }); - * // => returns 'pebbles' assuming `_.findKey` returns 'barney' - * - * // The `_.matches` iteratee shorthand. - * _.findLastKey(users, { 'age': 36, 'active': true }); - * // => 'barney' - * - * // The `_.matchesProperty` iteratee shorthand. - * _.findLastKey(users, ['active', false]); - * // => 'fred' + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; * - * // The `_.property` iteratee shorthand. - * _.findLastKey(users, 'active'); - * // => 'pebbles' + * _.uniqWith(objects, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] */ - function findLastKey(object, predicate) { - return baseFindKey(object, getIteratee(predicate, 3), baseForOwnRight); + function uniqWith(array, comparator) { + comparator = typeof comparator == 'function' ? comparator : undefined; + return (array && array.length) ? baseUniq(array, undefined, comparator) : []; } /** - * Iterates over own and inherited enumerable string keyed properties of an - * object and invokes `iteratee` for each property. The iteratee is invoked - * with three arguments: (value, key, object). Iteratee functions may exit - * iteration early by explicitly returning `false`. + * This method is like `_.zip` except that it accepts an array of grouped + * elements and creates an array regrouping the elements to their pre-zip + * configuration. * * @static * @memberOf _ - * @since 0.3.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Object} Returns `object`. - * @see _.forInRight + * @since 1.2.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @returns {Array} Returns the new array of regrouped elements. * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; + * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] * - * _.forIn(new Foo, function(value, key) { - * console.log(key); - * }); - * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed). + * _.unzip(zipped); + * // => [['a', 'b'], [1, 2], [true, false]] */ - function forIn(object, iteratee) { - return object == null - ? object - : baseFor(object, getIteratee(iteratee, 3), keysIn); + function unzip(array) { + if (!(array && array.length)) { + return []; + } + var length = 0; + array = arrayFilter(array, function(group) { + if (isArrayLikeObject(group)) { + length = nativeMax(group.length, length); + return true; + } + }); + return baseTimes(length, function(index) { + return arrayMap(array, baseProperty(index)); + }); } /** - * This method is like `_.forIn` except that it iterates over properties of - * `object` in the opposite order. + * This method is like `_.unzip` except that it accepts `iteratee` to specify + * how regrouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). * * @static * @memberOf _ - * @since 2.0.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Object} Returns `object`. - * @see _.forIn + * @since 3.8.0 + * @category Array + * @param {Array} array The array of grouped elements to process. + * @param {Function} [iteratee=_.identity] The function to combine + * regrouped values. + * @returns {Array} Returns the new array of regrouped elements. * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; + * var zipped = _.zip([1, 2], [10, 20], [100, 200]); + * // => [[1, 10, 100], [2, 20, 200]] * - * _.forInRight(new Foo, function(value, key) { - * console.log(key); - * }); - * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'. + * _.unzipWith(zipped, _.add); + * // => [3, 30, 300] */ - function forInRight(object, iteratee) { - return object == null - ? object - : baseForRight(object, getIteratee(iteratee, 3), keysIn); + function unzipWith(array, iteratee) { + if (!(array && array.length)) { + return []; + } + var result = unzip(array); + if (iteratee == null) { + return result; + } + return arrayMap(result, function(group) { + return apply(iteratee, undefined, group); + }); } /** - * Iterates over own enumerable string keyed properties of an object and - * invokes `iteratee` for each property. The iteratee is invoked with three - * arguments: (value, key, object). Iteratee functions may exit iteration - * early by explicitly returning `false`. + * Creates an array excluding all given values using + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * **Note:** Unlike `_.pull`, this method returns a new array. * * @static * @memberOf _ - * @since 0.3.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Object} Returns `object`. - * @see _.forOwnRight + * @since 0.1.0 + * @category Array + * @param {Array} array The array to inspect. + * @param {...*} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.xor * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; - * - * _.forOwn(new Foo, function(value, key) { - * console.log(key); - * }); - * // => Logs 'a' then 'b' (iteration order is not guaranteed). + * _.without([2, 1, 2, 3], 1, 2); + * // => [3] */ - function forOwn(object, iteratee) { - return object && baseForOwn(object, getIteratee(iteratee, 3)); - } + var without = baseRest(function(array, values) { + return isArrayLikeObject(array) + ? baseDifference(array, values) + : []; + }); /** - * This method is like `_.forOwn` except that it iterates over properties of - * `object` in the opposite order. + * Creates an array of unique values that is the + * [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) + * of the given arrays. The order of result values is determined by the order + * they occur in the arrays. * * @static * @memberOf _ - * @since 2.0.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Object} Returns `object`. - * @see _.forOwn + * @since 2.4.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.without * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; - * - * _.forOwnRight(new Foo, function(value, key) { - * console.log(key); - * }); - * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'. + * _.xor([2, 1], [2, 3]); + * // => [1, 3] */ - function forOwnRight(object, iteratee) { - return object && baseForOwnRight(object, getIteratee(iteratee, 3)); - } + var xor = baseRest(function(arrays) { + return baseXor(arrayFilter(arrays, isArrayLikeObject)); + }); /** - * Creates an array of function property names from own enumerable properties - * of `object`. + * This method is like `_.xor` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by + * which by which they're compared. The order of result values is determined + * by the order they occur in the arrays. The iteratee is invoked with one + * argument: (value). * * @static - * @since 0.1.0 * @memberOf _ - * @category Object - * @param {Object} object The object to inspect. - * @returns {Array} Returns the function names. - * @see _.functionsIn + * @since 4.0.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of filtered values. * @example * - * function Foo() { - * this.a = _.constant('a'); - * this.b = _.constant('b'); - * } - * - * Foo.prototype.c = _.constant('c'); + * _.xorBy([2.1, 1.2], [2.3, 3.4], Math.floor); + * // => [1.2, 3.4] * - * _.functions(new Foo); - * // => ['a', 'b'] + * // The `_.property` iteratee shorthand. + * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] */ - function functions(object) { - return object == null ? [] : baseFunctions(object, keys(object)); - } + var xorBy = baseRest(function(arrays) { + var iteratee = last(arrays); + if (isArrayLikeObject(iteratee)) { + iteratee = undefined; + } + return baseXor(arrayFilter(arrays, isArrayLikeObject), getIteratee(iteratee, 2)); + }); /** - * Creates an array of function property names from own and inherited - * enumerable properties of `object`. + * This method is like `_.xor` except that it accepts `comparator` which is + * invoked to compare elements of `arrays`. The order of result values is + * determined by the order they occur in the arrays. The comparator is invoked + * with two arguments: (arrVal, othVal). * * @static * @memberOf _ * @since 4.0.0 - * @category Object - * @param {Object} object The object to inspect. - * @returns {Array} Returns the function names. - * @see _.functions + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of filtered values. * @example * - * function Foo() { - * this.a = _.constant('a'); - * this.b = _.constant('b'); - * } - * - * Foo.prototype.c = _.constant('c'); + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; * - * _.functionsIn(new Foo); - * // => ['a', 'b', 'c'] + * _.xorWith(objects, others, _.isEqual); + * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] */ - function functionsIn(object) { - return object == null ? [] : baseFunctions(object, keysIn(object)); - } + var xorWith = baseRest(function(arrays) { + var comparator = last(arrays); + comparator = typeof comparator == 'function' ? comparator : undefined; + return baseXor(arrayFilter(arrays, isArrayLikeObject), undefined, comparator); + }); /** - * Gets the value at `path` of `object`. If the resolved value is - * `undefined`, the `defaultValue` is returned in its place. + * Creates an array of grouped elements, the first of which contains the + * first elements of the given arrays, the second of which contains the + * second elements of the given arrays, and so on. * * @static * @memberOf _ - * @since 3.7.0 - * @category Object - * @param {Object} object The object to query. - * @param {Array|string} path The path of the property to get. - * @param {*} [defaultValue] The value returned for `undefined` resolved values. - * @returns {*} Returns the resolved value. + * @since 0.1.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @returns {Array} Returns the new array of grouped elements. * @example * - * var object = { 'a': [{ 'b': { 'c': 3 } }] }; - * - * _.get(object, 'a[0].b.c'); - * // => 3 + * _.zip(['a', 'b'], [1, 2], [true, false]); + * // => [['a', 1, true], ['b', 2, false]] + */ + var zip = baseRest(unzip); + + /** + * This method is like `_.fromPairs` except that it accepts two arrays, + * one of property identifiers and one of corresponding values. * - * _.get(object, ['a', '0', 'b', 'c']); - * // => 3 + * @static + * @memberOf _ + * @since 0.4.0 + * @category Array + * @param {Array} [props=[]] The property identifiers. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. + * @example * - * _.get(object, 'a.b.c', 'default'); - * // => 'default' + * _.zipObject(['a', 'b'], [1, 2]); + * // => { 'a': 1, 'b': 2 } */ - function get(object, path, defaultValue) { - var result = object == null ? undefined : baseGet(object, path); - return result === undefined ? defaultValue : result; + function zipObject(props, values) { + return baseZipObject(props || [], values || [], assignValue); } /** - * Checks if `path` is a direct property of `object`. + * This method is like `_.zipObject` except that it supports property paths. * * @static - * @since 0.1.0 * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @param {Array|string} path The path to check. - * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @since 4.1.0 + * @category Array + * @param {Array} [props=[]] The property identifiers. + * @param {Array} [values=[]] The property values. + * @returns {Object} Returns the new object. * @example * - * var object = { 'a': { 'b': 2 } }; - * var other = _.create({ 'a': _.create({ 'b': 2 }) }); - * - * _.has(object, 'a'); - * // => true - * - * _.has(object, 'a.b'); - * // => true - * - * _.has(object, ['a', 'b']); - * // => true - * - * _.has(other, 'a'); - * // => false + * _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]); + * // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } } */ - function has(object, path) { - return object != null && hasPath(object, path, baseHas); + function zipObjectDeep(props, values) { + return baseZipObject(props || [], values || [], baseSet); } /** - * Checks if `path` is a direct or inherited property of `object`. + * This method is like `_.zip` except that it accepts `iteratee` to specify + * how grouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). * * @static * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The object to query. - * @param {Array|string} path The path to check. - * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @since 3.8.0 + * @category Array + * @param {...Array} [arrays] The arrays to process. + * @param {Function} [iteratee=_.identity] The function to combine + * grouped values. + * @returns {Array} Returns the new array of grouped elements. * @example * - * var object = _.create({ 'a': _.create({ 'b': 2 }) }); - * - * _.hasIn(object, 'a'); - * // => true + * _.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) { + * return a + b + c; + * }); + * // => [111, 222] + */ + var zipWith = baseRest(function(arrays) { + var length = arrays.length, + iteratee = length > 1 ? arrays[length - 1] : undefined; + + iteratee = typeof iteratee == 'function' ? (arrays.pop(), iteratee) : undefined; + return unzipWith(arrays, iteratee); + }); + + /*------------------------------------------------------------------------*/ + + /** + * Creates a `lodash` wrapper instance that wraps `value` with explicit method + * chain sequences enabled. The result of such sequences must be unwrapped + * with `_#value`. * - * _.hasIn(object, 'a.b'); - * // => true + * @static + * @memberOf _ + * @since 1.3.0 + * @category Seq + * @param {*} value The value to wrap. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example * - * _.hasIn(object, ['a', 'b']); - * // => true + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'pebbles', 'age': 1 } + * ]; * - * _.hasIn(object, 'b'); - * // => false + * var youngest = _ + * .chain(users) + * .sortBy('age') + * .map(function(o) { + * return o.user + ' is ' + o.age; + * }) + * .head() + * .value(); + * // => 'pebbles is 1' */ - function hasIn(object, path) { - return object != null && hasPath(object, path, baseHasIn); + function chain(value) { + var result = lodash(value); + result.__chain__ = true; + return result; } /** - * Creates an object composed of the inverted keys and values of `object`. - * If `object` contains duplicate values, subsequent values overwrite - * property assignments of previous values. + * This method invokes `interceptor` and returns `value`. The interceptor + * is invoked with one argument; (value). The purpose of this method is to + * "tap into" a method chain sequence in order to modify intermediate results. * * @static * @memberOf _ - * @since 0.7.0 - * @category Object - * @param {Object} object The object to invert. - * @returns {Object} Returns the new inverted object. + * @since 0.1.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns `value`. * @example * - * var object = { 'a': 1, 'b': 2, 'c': 1 }; - * - * _.invert(object); - * // => { '1': 'c', '2': 'b' } + * _([1, 2, 3]) + * .tap(function(array) { + * // Mutate input array. + * array.pop(); + * }) + * .reverse() + * .value(); + * // => [2, 1] */ - var invert = createInverter(function(result, value, key) { - if (value != null && - typeof value.toString != 'function') { - value = nativeObjectToString.call(value); - } - - result[value] = key; - }, constant(identity)); + function tap(value, interceptor) { + interceptor(value); + return value; + } /** - * This method is like `_.invert` except that the inverted object is generated - * from the results of running each element of `object` thru `iteratee`. The - * corresponding inverted value of each inverted key is an array of keys - * responsible for generating the inverted value. The iteratee is invoked - * with one argument: (value). + * This method is like `_.tap` except that it returns the result of `interceptor`. + * The purpose of this method is to "pass thru" values replacing intermediate + * results in a method chain sequence. * * @static * @memberOf _ - * @since 4.1.0 - * @category Object - * @param {Object} object The object to invert. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Object} Returns the new inverted object. + * @since 3.0.0 + * @category Seq + * @param {*} value The value to provide to `interceptor`. + * @param {Function} interceptor The function to invoke. + * @returns {*} Returns the result of `interceptor`. * @example * - * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * _(' abc ') + * .chain() + * .trim() + * .thru(function(value) { + * return [value]; + * }) + * .value(); + * // => ['abc'] + */ + function thru(value, interceptor) { + return interceptor(value); + } + + /** + * This method is the wrapper version of `_.at`. * - * _.invertBy(object); - * // => { '1': ['a', 'c'], '2': ['b'] } + * @name at + * @memberOf _ + * @since 1.0.0 + * @category Seq + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new `lodash` wrapper instance. + * @example * - * _.invertBy(object, function(value) { - * return 'group' + value; - * }); - * // => { 'group1': ['a', 'c'], 'group2': ['b'] } + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _(object).at(['a[0].b.c', 'a[1]']).value(); + * // => [3, 4] */ - var invertBy = createInverter(function(result, value, key) { - if (value != null && - typeof value.toString != 'function') { - value = nativeObjectToString.call(value); - } + var wrapperAt = flatRest(function(paths) { + var length = paths.length, + start = length ? paths[0] : 0, + value = this.__wrapped__, + interceptor = function(object) { return baseAt(object, paths); }; - if (hasOwnProperty.call(result, value)) { - result[value].push(key); - } else { - result[value] = [key]; + if (length > 1 || this.__actions__.length || + !(value instanceof LazyWrapper) || !isIndex(start)) { + return this.thru(interceptor); } - }, getIteratee); + value = value.slice(start, +start + (length ? 1 : 0)); + value.__actions__.push({ + 'func': thru, + 'args': [interceptor], + 'thisArg': undefined + }); + return new LodashWrapper(value, this.__chain__).thru(function(array) { + if (length && !array.length) { + array.push(undefined); + } + return array; + }); + }); /** - * Invokes the method at `path` of `object`. + * Creates a `lodash` wrapper instance with explicit method chain sequences enabled. * - * @static + * @name chain * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The object to query. - * @param {Array|string} path The path of the method to invoke. - * @param {...*} [args] The arguments to invoke the method with. - * @returns {*} Returns the result of the invoked method. + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. * @example * - * var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] }; + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; * - * _.invoke(object, 'a[0].b.c.slice', 1, 3); - * // => [2, 3] + * // A sequence without explicit chaining. + * _(users).head(); + * // => { 'user': 'barney', 'age': 36 } + * + * // A sequence with explicit chaining. + * _(users) + * .chain() + * .head() + * .pick('user') + * .value(); + * // => { 'user': 'barney' } */ - var invoke = baseRest(baseInvoke); + function wrapperChain() { + return chain(this); + } /** - * Creates an array of the own enumerable property names of `object`. - * - * **Note:** Non-object values are coerced to objects. See the - * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) - * for more details. + * Executes the chain sequence and returns the wrapped result. * - * @static - * @since 0.1.0 + * @name commit * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. + * @since 3.2.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } + * var array = [1, 2]; + * var wrapped = _(array).push(3); * - * Foo.prototype.c = 3; + * console.log(array); + * // => [1, 2] * - * _.keys(new Foo); - * // => ['a', 'b'] (iteration order is not guaranteed) + * wrapped = wrapped.commit(); + * console.log(array); + * // => [1, 2, 3] * - * _.keys('hi'); - * // => ['0', '1'] + * wrapped.last(); + * // => 3 + * + * console.log(array); + * // => [1, 2, 3] */ - function keys(object) { - return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); + function wrapperCommit() { + return new LodashWrapper(this.value(), this.__chain__); } /** - * Creates an array of the own and inherited enumerable property names of `object`. - * - * **Note:** Non-object values are coerced to objects. + * Gets the next value on a wrapped object following the + * [iterator protocol](https://mdn.io/iteration_protocols#iterator). * - * @static + * @name next * @memberOf _ - * @since 3.0.0 - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property names. + * @since 4.0.0 + * @category Seq + * @returns {Object} Returns the next iterator value. * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } + * var wrapped = _([1, 2]); * - * Foo.prototype.c = 3; + * wrapped.next(); + * // => { 'done': false, 'value': 1 } * - * _.keysIn(new Foo); - * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + * wrapped.next(); + * // => { 'done': false, 'value': 2 } + * + * wrapped.next(); + * // => { 'done': true, 'value': undefined } */ - function keysIn(object) { - return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object); + function wrapperNext() { + if (this.__values__ === undefined) { + this.__values__ = toArray(this.value()); + } + var done = this.__index__ >= this.__values__.length, + value = done ? undefined : this.__values__[this.__index__++]; + + return { 'done': done, 'value': value }; } /** - * The opposite of `_.mapValues`; this method creates an object with the - * same values as `object` and keys generated by running each own enumerable - * string keyed property of `object` thru `iteratee`. The iteratee is invoked - * with three arguments: (value, key, object). + * Enables the wrapper to be iterable. * - * @static + * @name Symbol.iterator * @memberOf _ - * @since 3.8.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Object} Returns the new mapped object. - * @see _.mapValues + * @since 4.0.0 + * @category Seq + * @returns {Object} Returns the wrapper object. * @example * - * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) { - * return key + value; - * }); - * // => { 'a1': 1, 'b2': 2 } + * var wrapped = _([1, 2]); + * + * wrapped[Symbol.iterator]() === wrapped; + * // => true + * + * Array.from(wrapped); + * // => [1, 2] */ - function mapKeys(object, iteratee) { - var result = {}; - iteratee = getIteratee(iteratee, 3); - - baseForOwn(object, function(value, key, object) { - baseAssignValue(result, iteratee(value, key, object), value); - }); - return result; + function wrapperToIterator() { + return this; } /** - * Creates an object with the same keys as `object` and values generated - * by running each own enumerable string keyed property of `object` thru - * `iteratee`. The iteratee is invoked with three arguments: - * (value, key, object). + * Creates a clone of the chain sequence planting `value` as the wrapped value. * - * @static + * @name plant * @memberOf _ - * @since 2.4.0 - * @category Object - * @param {Object} object The object to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Object} Returns the new mapped object. - * @see _.mapKeys + * @since 3.2.0 + * @category Seq + * @param {*} value The value to plant. + * @returns {Object} Returns the new `lodash` wrapper instance. * @example * - * var users = { - * 'fred': { 'user': 'fred', 'age': 40 }, - * 'pebbles': { 'user': 'pebbles', 'age': 1 } - * }; + * function square(n) { + * return n * n; + * } * - * _.mapValues(users, function(o) { return o.age; }); - * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + * var wrapped = _([1, 2]).map(square); + * var other = wrapped.plant([3, 4]); * - * // The `_.property` iteratee shorthand. - * _.mapValues(users, 'age'); - * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + * other.value(); + * // => [9, 16] + * + * wrapped.value(); + * // => [1, 4] */ - function mapValues(object, iteratee) { - var result = {}; - iteratee = getIteratee(iteratee, 3); + function wrapperPlant(value) { + var result, + parent = this; - baseForOwn(object, function(value, key, object) { - baseAssignValue(result, key, iteratee(value, key, object)); - }); + while (parent instanceof baseLodash) { + var clone = wrapperClone(parent); + clone.__index__ = 0; + clone.__values__ = undefined; + if (result) { + previous.__wrapped__ = clone; + } else { + result = clone; + } + var previous = clone; + parent = parent.__wrapped__; + } + previous.__wrapped__ = value; return result; } /** - * This method is like `_.assign` except that it recursively merges own and - * inherited enumerable string keyed properties of source objects into the - * destination object. Source properties that resolve to `undefined` are - * skipped if a destination value exists. Array and plain object properties - * are merged recursively. Other objects and value types are overridden by - * assignment. Source objects are applied from left to right. Subsequent - * sources overwrite property assignments of previous sources. + * This method is the wrapper version of `_.reverse`. * - * **Note:** This method mutates `object`. + * **Note:** This method mutates the wrapped array. * - * @static + * @name reverse * @memberOf _ - * @since 0.5.0 - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. + * @since 0.1.0 + * @category Seq + * @returns {Object} Returns the new `lodash` wrapper instance. * @example * - * var object = { - * 'a': [{ 'b': 2 }, { 'd': 4 }] - * }; + * var array = [1, 2, 3]; * - * var other = { - * 'a': [{ 'c': 3 }, { 'e': 5 }] - * }; + * _(array).reverse().value() + * // => [3, 2, 1] * - * _.merge(object, other); - * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] } + * console.log(array); + * // => [3, 2, 1] */ - var merge = createAssigner(function(object, source, srcIndex) { - baseMerge(object, source, srcIndex); - }); + function wrapperReverse() { + var value = this.__wrapped__; + if (value instanceof LazyWrapper) { + var wrapped = value; + if (this.__actions__.length) { + wrapped = new LazyWrapper(this); + } + wrapped = wrapped.reverse(); + wrapped.__actions__.push({ + 'func': thru, + 'args': [reverse], + 'thisArg': undefined + }); + return new LodashWrapper(wrapped, this.__chain__); + } + return this.thru(reverse); + } /** - * This method is like `_.merge` except that it accepts `customizer` which - * is invoked to produce the merged values of the destination and source - * properties. If `customizer` returns `undefined`, merging is handled by the - * method instead. The `customizer` is invoked with six arguments: - * (objValue, srcValue, key, object, source, stack). - * - * **Note:** This method mutates `object`. + * Executes the chain sequence to resolve the unwrapped value. * - * @static + * @name value * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The destination object. - * @param {...Object} sources The source objects. - * @param {Function} customizer The function to customize assigned values. - * @returns {Object} Returns `object`. + * @since 0.1.0 + * @alias toJSON, valueOf + * @category Seq + * @returns {*} Returns the resolved unwrapped value. * @example * - * function customizer(objValue, srcValue) { - * if (_.isArray(objValue)) { - * return objValue.concat(srcValue); - * } - * } - * - * var object = { 'a': [1], 'b': [2] }; - * var other = { 'a': [3], 'b': [4] }; - * - * _.mergeWith(object, other, customizer); - * // => { 'a': [1, 3], 'b': [2, 4] } + * _([1, 2, 3]).value(); + * // => [1, 2, 3] */ - var mergeWith = createAssigner(function(object, source, srcIndex, customizer) { - baseMerge(object, source, srcIndex, customizer); - }); + function wrapperValue() { + return baseWrapperValue(this.__wrapped__, this.__actions__); + } + + /*------------------------------------------------------------------------*/ /** - * The opposite of `_.pick`; this method creates an object composed of the - * own and inherited enumerable property paths of `object` that are not omitted. - * - * **Note:** This method is considerably slower than `_.pick`. + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the number of times the key was returned by `iteratee`. The + * iteratee is invoked with one argument: (value). * * @static - * @since 0.1.0 * @memberOf _ - * @category Object - * @param {Object} object The source object. - * @param {...(string|string[])} [paths] The property paths to omit. - * @returns {Object} Returns the new object. + * @since 0.5.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. * @example * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * _.countBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': 1, '6': 2 } * - * _.omit(object, ['a', 'c']); - * // => { 'b': '2' } + * // The `_.property` iteratee shorthand. + * _.countBy(['one', 'two', 'three'], 'length'); + * // => { '3': 2, '5': 1 } */ - var omit = flatRest(function(object, paths) { - var result = {}; - if (object == null) { - return result; - } - var isDeep = false; - paths = arrayMap(paths, function(path) { - path = castPath(path, object); - isDeep || (isDeep = path.length > 1); - return path; - }); - copyObject(object, getAllKeysIn(object), result); - if (isDeep) { - result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone); - } - var length = paths.length; - while (length--) { - baseUnset(result, paths[length]); + var countBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + ++result[key]; + } else { + baseAssignValue(result, key, 1); } - return result; }); /** - * The opposite of `_.pickBy`; this method creates an object composed of - * the own and inherited enumerable string keyed properties of `object` that - * `predicate` doesn't return truthy for. The predicate is invoked with two - * arguments: (value, key). + * Checks if `predicate` returns truthy for **all** elements of `collection`. + * Iteration is stopped once `predicate` returns falsey. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * **Note:** This method returns `true` for + * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because + * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of + * elements of empty collections. * * @static * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The source object. - * @param {Function} [predicate=_.identity] The function invoked per property. - * @returns {Object} Returns the new object. + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if all elements pass the predicate check, + * else `false`. * @example * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * _.every([true, 1, null, 'yes'], Boolean); + * // => false * - * _.omitBy(object, _.isNumber); - * // => { 'b': '2' } - */ - function omitBy(object, predicate) { - return pickBy(object, negate(getIteratee(predicate))); - } - - /** - * Creates an object composed of the picked `object` properties. + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Object - * @param {Object} object The source object. - * @param {...(string|string[])} [paths] The property paths to pick. - * @returns {Object} Returns the new object. - * @example + * // The `_.matches` iteratee shorthand. + * _.every(users, { 'user': 'barney', 'active': false }); + * // => false * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * // The `_.matchesProperty` iteratee shorthand. + * _.every(users, ['active', false]); + * // => true * - * _.pick(object, ['a', 'c']); - * // => { 'a': 1, 'c': 3 } + * // The `_.property` iteratee shorthand. + * _.every(users, 'active'); + * // => false */ - var pick = flatRest(function(object, paths) { - return object == null ? {} : basePick(object, paths); - }); + function every(collection, predicate, guard) { + var func = isArray(collection) ? arrayEvery : baseEvery; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, getIteratee(predicate, 3)); + } /** - * Creates an object composed of the `object` properties `predicate` returns - * truthy for. The predicate is invoked with two arguments: (value, key). + * Iterates over elements of `collection`, returning an array of all elements + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). + * + * **Note:** Unlike `_.remove`, this method returns a new array. * * @static * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The source object. - * @param {Function} [predicate=_.identity] The function invoked per property. - * @returns {Object} Returns the new object. + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.reject * @example * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; * - * _.pickBy(object, _.isNumber); - * // => { 'a': 1, 'c': 3 } + * _.filter(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.filter(users, { 'age': 36, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.filter(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.filter(users, 'active'); + * // => objects for ['barney'] + * + * // Combining several predicates using `_.overEvery` or `_.overSome`. + * _.filter(users, _.overSome([{ 'age': 36 }, ['age', 40]])); + * // => objects for ['fred', 'barney'] */ - function pickBy(object, predicate) { - if (object == null) { - return {}; - } - var props = arrayMap(getAllKeysIn(object), function(prop) { - return [prop]; - }); - predicate = getIteratee(predicate); - return basePickBy(object, props, function(value, path) { - return predicate(value, path[0]); - }); + function filter(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, getIteratee(predicate, 3)); } /** - * This method is like `_.get` except that if the resolved value is a - * function it's invoked with the `this` binding of its parent object and - * its result is returned. + * Iterates over elements of `collection`, returning the first element + * `predicate` returns truthy for. The predicate is invoked with three + * arguments: (value, index|key, collection). * * @static - * @since 0.1.0 * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @param {Array|string} path The path of the property to resolve. - * @param {*} [defaultValue] The value returned for `undefined` resolved values. - * @returns {*} Returns the resolved value. + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=0] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. * @example * - * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] }; + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false }, + * { 'user': 'pebbles', 'age': 1, 'active': true } + * ]; * - * _.result(object, 'a[0].b.c1'); - * // => 3 + * _.find(users, function(o) { return o.age < 40; }); + * // => object for 'barney' * - * _.result(object, 'a[0].b.c2'); - * // => 4 + * // The `_.matches` iteratee shorthand. + * _.find(users, { 'age': 1, 'active': true }); + * // => object for 'pebbles' * - * _.result(object, 'a[0].b.c3', 'default'); - * // => 'default' + * // The `_.matchesProperty` iteratee shorthand. + * _.find(users, ['active', false]); + * // => object for 'fred' * - * _.result(object, 'a[0].b.c3', _.constant('default')); - * // => 'default' + * // The `_.property` iteratee shorthand. + * _.find(users, 'active'); + * // => object for 'barney' */ - function result(object, path, defaultValue) { - path = castPath(path, object); - - var index = -1, - length = path.length; - - // Ensure the loop is entered when path is empty. - if (!length) { - length = 1; - object = undefined; - } - while (++index < length) { - var value = object == null ? undefined : object[toKey(path[index])]; - if (value === undefined) { - index = length; - value = defaultValue; - } - object = isFunction(value) ? value.call(object) : value; - } - return object; - } + var find = createFind(findIndex); /** - * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, - * it's created. Arrays are created for missing index properties while objects - * are created for all other missing properties. Use `_.setWith` to customize - * `path` creation. - * - * **Note:** This method mutates `object`. + * This method is like `_.find` except that it iterates over elements of + * `collection` from right to left. * * @static * @memberOf _ - * @since 3.7.0 - * @category Object - * @param {Object} object The object to modify. - * @param {Array|string} path The path of the property to set. - * @param {*} value The value to set. - * @returns {Object} Returns `object`. + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param {number} [fromIndex=collection.length-1] The index to search from. + * @returns {*} Returns the matched element, else `undefined`. * @example * - * var object = { 'a': [{ 'b': { 'c': 3 } }] }; - * - * _.set(object, 'a[0].b.c', 4); - * console.log(object.a[0].b.c); - * // => 4 - * - * _.set(object, ['x', '0', 'y', 'z'], 5); - * console.log(object.x[0].y.z); - * // => 5 + * _.findLast([1, 2, 3, 4], function(n) { + * return n % 2 == 1; + * }); + * // => 3 */ - function set(object, path, value) { - return object == null ? object : baseSet(object, path, value); - } + var findLast = createFind(findLastIndex); /** - * This method is like `_.set` except that it accepts `customizer` which is - * invoked to produce the objects of `path`. If `customizer` returns `undefined` - * path creation is handled by the method instead. The `customizer` is invoked - * with three arguments: (nsValue, key, nsObject). - * - * **Note:** This method mutates `object`. + * Creates a flattened array of values by running each element in `collection` + * thru `iteratee` and flattening the mapped results. The iteratee is invoked + * with three arguments: (value, index|key, collection). * * @static * @memberOf _ * @since 4.0.0 - * @category Object - * @param {Object} object The object to modify. - * @param {Array|string} path The path of the property to set. - * @param {*} value The value to set. - * @param {Function} [customizer] The function to customize assigned values. - * @returns {Object} Returns `object`. + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. * @example * - * var object = {}; + * function duplicate(n) { + * return [n, n]; + * } * - * _.setWith(object, '[0][1]', 'a', Object); - * // => { '0': { '1': 'a' } } + * _.flatMap([1, 2], duplicate); + * // => [1, 1, 2, 2] */ - function setWith(object, path, value, customizer) { - customizer = typeof customizer == 'function' ? customizer : undefined; - return object == null ? object : baseSet(object, path, value, customizer); + function flatMap(collection, iteratee) { + return baseFlatten(map(collection, iteratee), 1); } /** - * Creates an array of own enumerable string keyed-value pairs for `object` - * which can be consumed by `_.fromPairs`. If `object` is a map or set, its - * entries are returned. + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results. * * @static * @memberOf _ - * @since 4.0.0 - * @alias entries - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the key-value pairs. + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; + * function duplicate(n) { + * return [[[n, n]]]; * } * - * Foo.prototype.c = 3; - * - * _.toPairs(new Foo); - * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed) + * _.flatMapDeep([1, 2], duplicate); + * // => [1, 1, 2, 2] */ - var toPairs = createToPairs(keys); + function flatMapDeep(collection, iteratee) { + return baseFlatten(map(collection, iteratee), INFINITY); + } /** - * Creates an array of own and inherited enumerable string keyed-value pairs - * for `object` which can be consumed by `_.fromPairs`. If `object` is a map - * or set, its entries are returned. + * This method is like `_.flatMap` except that it recursively flattens the + * mapped results up to `depth` times. * * @static * @memberOf _ - * @since 4.0.0 - * @alias entriesIn - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the key-value pairs. + * @since 4.7.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {number} [depth=1] The maximum recursion depth. + * @returns {Array} Returns the new flattened array. * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; + * function duplicate(n) { + * return [[[n, n]]]; * } * - * Foo.prototype.c = 3; - * - * _.toPairsIn(new Foo); - * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed) + * _.flatMapDepth([1, 2], duplicate, 2); + * // => [[1, 1], [2, 2]] */ - var toPairsIn = createToPairs(keysIn); + function flatMapDepth(collection, iteratee, depth) { + depth = depth === undefined ? 1 : toInteger(depth); + return baseFlatten(map(collection, iteratee), depth); + } /** - * An alternative to `_.reduce`; this method transforms `object` to a new - * `accumulator` object which is the result of running each of its own - * enumerable string keyed properties thru `iteratee`, with each invocation - * potentially mutating the `accumulator` object. If `accumulator` is not - * provided, a new object with the same `[[Prototype]]` will be used. The - * iteratee is invoked with four arguments: (accumulator, value, key, object). + * Iterates over elements of `collection` and invokes `iteratee` for each element. + * The iteratee is invoked with three arguments: (value, index|key, collection). * Iteratee functions may exit iteration early by explicitly returning `false`. * + * **Note:** As with other "Collections" methods, objects with a "length" + * property are iterated like arrays. To avoid this behavior use `_.forIn` + * or `_.forOwn` for object iteration. + * * @static * @memberOf _ - * @since 1.3.0 - * @category Object - * @param {Object} object The object to iterate over. + * @since 0.1.0 + * @alias each + * @category Collection + * @param {Array|Object} collection The collection to iterate over. * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @param {*} [accumulator] The custom accumulator value. - * @returns {*} Returns the accumulated value. + * @returns {Array|Object} Returns `collection`. + * @see _.forEachRight * @example * - * _.transform([2, 3, 4], function(result, n) { - * result.push(n *= n); - * return n % 2 == 0; - * }, []); - * // => [4, 9] + * _.forEach([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `1` then `2`. * - * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { - * (result[value] || (result[value] = [])).push(key); - * }, {}); - * // => { '1': ['a', 'c'], '2': ['b'] } + * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). */ - function transform(object, iteratee, accumulator) { - var isArr = isArray(object), - isArrLike = isArr || isBuffer(object) || isTypedArray(object); - - iteratee = getIteratee(iteratee, 4); - if (accumulator == null) { - var Ctor = object && object.constructor; - if (isArrLike) { - accumulator = isArr ? new Ctor : []; - } - else if (isObject(object)) { - accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {}; - } - else { - accumulator = {}; - } - } - (isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object) { - return iteratee(accumulator, value, index, object); - }); - return accumulator; + function forEach(collection, iteratee) { + var func = isArray(collection) ? arrayEach : baseEach; + return func(collection, getIteratee(iteratee, 3)); } /** - * Removes the property at `path` of `object`. - * - * **Note:** This method mutates `object`. + * This method is like `_.forEach` except that it iterates over elements of + * `collection` from right to left. * * @static * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The object to modify. - * @param {Array|string} path The path of the property to unset. - * @returns {boolean} Returns `true` if the property is deleted, else `false`. + * @since 2.0.0 + * @alias eachRight + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. + * @see _.forEach * @example * - * var object = { 'a': [{ 'b': { 'c': 7 } }] }; - * _.unset(object, 'a[0].b.c'); - * // => true + * _.forEachRight([1, 2], function(value) { + * console.log(value); + * }); + * // => Logs `2` then `1`. + */ + function forEachRight(collection, iteratee) { + var func = isArray(collection) ? arrayEachRight : baseEachRight; + return func(collection, getIteratee(iteratee, 3)); + } + + /** + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The order of grouped values + * is determined by the order they occur in `collection`. The corresponding + * value of each key is an array of elements responsible for generating the + * key. The iteratee is invoked with one argument: (value). * - * console.log(object); - * // => { 'a': [{ 'b': {} }] }; + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example * - * _.unset(object, ['a', '0', 'b', 'c']); - * // => true + * _.groupBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': [4.2], '6': [6.1, 6.3] } * - * console.log(object); - * // => { 'a': [{ 'b': {} }] }; + * // The `_.property` iteratee shorthand. + * _.groupBy(['one', 'two', 'three'], 'length'); + * // => { '3': ['one', 'two'], '5': ['three'] } */ - function unset(object, path) { - return object == null ? true : baseUnset(object, path); - } + var groupBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + result[key].push(value); + } else { + baseAssignValue(result, key, [value]); + } + }); /** - * This method is like `_.set` except that accepts `updater` to produce the - * value to set. Use `_.updateWith` to customize `path` creation. The `updater` - * is invoked with one argument: (value). - * - * **Note:** This method mutates `object`. + * Checks if `value` is in `collection`. If `collection` is a string, it's + * checked for a substring of `value`, otherwise + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * is used for equality comparisons. If `fromIndex` is negative, it's used as + * the offset from the end of `collection`. * * @static * @memberOf _ - * @since 4.6.0 - * @category Object - * @param {Object} object The object to modify. - * @param {Array|string} path The path of the property to set. - * @param {Function} updater The function to produce the updated value. - * @returns {Object} Returns `object`. + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. * @example * - * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * _.includes([1, 2, 3], 1); + * // => true * - * _.update(object, 'a[0].b.c', function(n) { return n * n; }); - * console.log(object.a[0].b.c); - * // => 9 + * _.includes([1, 2, 3], 1, 2); + * // => false * - * _.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; }); - * console.log(object.x[0].y.z); - * // => 0 + * _.includes({ 'a': 1, 'b': 2 }, 1); + * // => true + * + * _.includes('abcd', 'bc'); + * // => true */ - function update(object, path, updater) { - return object == null ? object : baseUpdate(object, path, castFunction(updater)); + function includes(collection, value, fromIndex, guard) { + collection = isArrayLike(collection) ? collection : values(collection); + fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0; + + var length = collection.length; + if (fromIndex < 0) { + fromIndex = nativeMax(length + fromIndex, 0); + } + return isString(collection) + ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) + : (!!length && baseIndexOf(collection, value, fromIndex) > -1); } /** - * This method is like `_.update` except that it accepts `customizer` which is - * invoked to produce the objects of `path`. If `customizer` returns `undefined` - * path creation is handled by the method instead. The `customizer` is invoked - * with three arguments: (nsValue, key, nsObject). - * - * **Note:** This method mutates `object`. + * Invokes the method at `path` of each element in `collection`, returning + * an array of the results of each invoked method. Any additional arguments + * are provided to each invoked method. If `path` is a function, it's invoked + * for, and `this` bound to, each element in `collection`. * * @static * @memberOf _ - * @since 4.6.0 - * @category Object - * @param {Object} object The object to modify. - * @param {Array|string} path The path of the property to set. - * @param {Function} updater The function to produce the updated value. - * @param {Function} [customizer] The function to customize assigned values. - * @returns {Object} Returns `object`. + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array|Function|string} path The path of the method to invoke or + * the function invoked per iteration. + * @param {...*} [args] The arguments to invoke each method with. + * @returns {Array} Returns the array of results. * @example * - * var object = {}; + * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort'); + * // => [[1, 5, 7], [1, 2, 3]] * - * _.updateWith(object, '[0][1]', _.constant('a'), Object); - * // => { '0': { '1': 'a' } } + * _.invokeMap([123, 456], String.prototype.split, ''); + * // => [['1', '2', '3'], ['4', '5', '6']] */ - function updateWith(object, path, updater, customizer) { - customizer = typeof customizer == 'function' ? customizer : undefined; - return object == null ? object : baseUpdate(object, path, castFunction(updater), customizer); - } + var invokeMap = baseRest(function(collection, path, args) { + var index = -1, + isFunc = typeof path == 'function', + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value) { + result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args); + }); + return result; + }); /** - * Creates an array of the own enumerable string keyed property values of `object`. - * - * **Note:** Non-object values are coerced to objects. + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the last element responsible for generating the key. The + * iteratee is invoked with one argument: (value). * * @static - * @since 0.1.0 * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property values. + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; + * var array = [ + * { 'dir': 'left', 'code': 97 }, + * { 'dir': 'right', 'code': 100 } + * ]; * - * _.values(new Foo); - * // => [1, 2] (iteration order is not guaranteed) + * _.keyBy(array, function(o) { + * return String.fromCharCode(o.code); + * }); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } * - * _.values('hi'); - * // => ['h', 'i'] + * _.keyBy(array, 'dir'); + * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } */ - function values(object) { - return object == null ? [] : baseValues(object, keys(object)); - } + var keyBy = createAggregator(function(result, value, key) { + baseAssignValue(result, key, value); + }); /** - * Creates an array of the own and inherited enumerable string keyed property - * values of `object`. + * Creates an array of values by running each element in `collection` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, index|key, collection). * - * **Note:** Non-object values are coerced to objects. + * Many lodash methods are guarded to work as iteratees for methods like + * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. + * + * The guarded methods are: + * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, + * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, + * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, + * `template`, `trim`, `trimEnd`, `trimStart`, and `words` * * @static * @memberOf _ - * @since 3.0.0 - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property values. + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new mapped array. * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; + * function square(n) { + * return n * n; * } * - * Foo.prototype.c = 3; + * _.map([4, 8], square); + * // => [16, 64] * - * _.valuesIn(new Foo); - * // => [1, 2, 3] (iteration order is not guaranteed) + * _.map({ 'a': 4, 'b': 8 }, square); + * // => [16, 64] (iteration order is not guaranteed) + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * // The `_.property` iteratee shorthand. + * _.map(users, 'user'); + * // => ['barney', 'fred'] */ - function valuesIn(object) { - return object == null ? [] : baseValues(object, keysIn(object)); + function map(collection, iteratee) { + var func = isArray(collection) ? arrayMap : baseMap; + return func(collection, getIteratee(iteratee, 3)); } - /*------------------------------------------------------------------------*/ - /** - * Clamps `number` within the inclusive `lower` and `upper` bounds. + * This method is like `_.sortBy` except that it allows specifying the sort + * orders of the iteratees to sort by. If `orders` is unspecified, all values + * are sorted in ascending order. Otherwise, specify an order of "desc" for + * descending or "asc" for ascending sort order of corresponding values. * * @static * @memberOf _ * @since 4.0.0 - * @category Number - * @param {number} number The number to clamp. - * @param {number} [lower] The lower bound. - * @param {number} upper The upper bound. - * @returns {number} Returns the clamped number. + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]] + * The iteratees to sort by. + * @param {string[]} [orders] The sort orders of `iteratees`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {Array} Returns the new sorted array. * @example * - * _.clamp(-10, -5, 5); - * // => -5 + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 34 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'barney', 'age': 36 } + * ]; * - * _.clamp(10, -5, 5); - * // => 5 + * // Sort by `user` in ascending order and by `age` in descending order. + * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] */ - function clamp(number, lower, upper) { - if (upper === undefined) { - upper = lower; - lower = undefined; + function orderBy(collection, iteratees, orders, guard) { + if (collection == null) { + return []; } - if (upper !== undefined) { - upper = toNumber(upper); - upper = upper === upper ? upper : 0; + if (!isArray(iteratees)) { + iteratees = iteratees == null ? [] : [iteratees]; } - if (lower !== undefined) { - lower = toNumber(lower); - lower = lower === lower ? lower : 0; + orders = guard ? undefined : orders; + if (!isArray(orders)) { + orders = orders == null ? [] : [orders]; } - return baseClamp(toNumber(number), lower, upper); + return baseOrderBy(collection, iteratees, orders); } /** - * Checks if `n` is between `start` and up to, but not including, `end`. If - * `end` is not specified, it's set to `start` with `start` then set to `0`. - * If `start` is greater than `end` the params are swapped to support - * negative ranges. + * Creates an array of elements split into two groups, the first of which + * contains elements `predicate` returns truthy for, the second of which + * contains elements `predicate` returns falsey for. The predicate is + * invoked with one argument: (value). * * @static * @memberOf _ - * @since 3.3.0 - * @category Number - * @param {number} number The number to check. - * @param {number} [start=0] The start of the range. - * @param {number} end The end of the range. - * @returns {boolean} Returns `true` if `number` is in the range, else `false`. - * @see _.range, _.rangeRight + * @since 3.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the array of grouped elements. * @example * - * _.inRange(3, 2, 4); - * // => true - * - * _.inRange(4, 8); - * // => true - * - * _.inRange(4, 2); - * // => false + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true }, + * { 'user': 'pebbles', 'age': 1, 'active': false } + * ]; * - * _.inRange(2, 2); - * // => false + * _.partition(users, function(o) { return o.active; }); + * // => objects for [['fred'], ['barney', 'pebbles']] * - * _.inRange(1.2, 2); - * // => true + * // The `_.matches` iteratee shorthand. + * _.partition(users, { 'age': 1, 'active': false }); + * // => objects for [['pebbles'], ['barney', 'fred']] * - * _.inRange(5.2, 4); - * // => false + * // The `_.matchesProperty` iteratee shorthand. + * _.partition(users, ['active', false]); + * // => objects for [['barney', 'pebbles'], ['fred']] * - * _.inRange(-3, -2, -6); - * // => true + * // The `_.property` iteratee shorthand. + * _.partition(users, 'active'); + * // => objects for [['fred'], ['barney', 'pebbles']] */ - function inRange(number, start, end) { - start = toFinite(start); - if (end === undefined) { - end = start; - start = 0; - } else { - end = toFinite(end); - } - number = toNumber(number); - return baseInRange(number, start, end); - } + var partition = createAggregator(function(result, value, key) { + result[key ? 0 : 1].push(value); + }, function() { return [[], []]; }); /** - * Produces a random number between the inclusive `lower` and `upper` bounds. - * If only one argument is provided a number between `0` and the given number - * is returned. If `floating` is `true`, or either `lower` or `upper` are - * floats, a floating-point number is returned instead of an integer. + * Reduces `collection` to a value which is the accumulated result of running + * each element in `collection` thru `iteratee`, where each successive + * invocation is supplied the return value of the previous. If `accumulator` + * is not given, the first element of `collection` is used as the initial + * value. The iteratee is invoked with four arguments: + * (accumulator, value, index|key, collection). * - * **Note:** JavaScript follows the IEEE-754 standard for resolving - * floating-point values which can produce unexpected results. + * Many lodash methods are guarded to work as iteratees for methods like + * `_.reduce`, `_.reduceRight`, and `_.transform`. + * + * The guarded methods are: + * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`, + * and `sortBy` * * @static * @memberOf _ - * @since 0.7.0 - * @category Number - * @param {number} [lower=0] The lower bound. - * @param {number} [upper=1] The upper bound. - * @param {boolean} [floating] Specify returning a floating-point number. - * @returns {number} Returns the random number. + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduceRight * @example * - * _.random(0, 5); - * // => an integer between 0 and 5 - * - * _.random(5); - * // => also an integer between 0 and 5 - * - * _.random(5, true); - * // => a floating-point number between 0 and 5 + * _.reduce([1, 2], function(sum, n) { + * return sum + n; + * }, 0); + * // => 3 * - * _.random(1.2, 5.2); - * // => a floating-point number between 1.2 and 5.2 + * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * return result; + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed) */ - function random(lower, upper, floating) { - if (floating && typeof floating != 'boolean' && isIterateeCall(lower, upper, floating)) { - upper = floating = undefined; - } - if (floating === undefined) { - if (typeof upper == 'boolean') { - floating = upper; - upper = undefined; - } - else if (typeof lower == 'boolean') { - floating = lower; - lower = undefined; - } - } - if (lower === undefined && upper === undefined) { - lower = 0; - upper = 1; - } - else { - lower = toFinite(lower); - if (upper === undefined) { - upper = lower; - lower = 0; - } else { - upper = toFinite(upper); - } - } - if (lower > upper) { - var temp = lower; - lower = upper; - upper = temp; - } - if (floating || lower % 1 || upper % 1) { - var rand = nativeRandom(); - return nativeMin(lower + (rand * (upper - lower + freeParseFloat('1e-' + ((rand + '').length - 1)))), upper); - } - return baseRandom(lower, upper); - } + function reduce(collection, iteratee, accumulator) { + var func = isArray(collection) ? arrayReduce : baseReduce, + initAccum = arguments.length < 3; - /*------------------------------------------------------------------------*/ + return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEach); + } /** - * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase). + * This method is like `_.reduce` except that it iterates over elements of + * `collection` from right to left. * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the camel cased string. + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The initial value. + * @returns {*} Returns the accumulated value. + * @see _.reduce * @example * - * _.camelCase('Foo Bar'); - * // => 'fooBar' - * - * _.camelCase('--foo-bar--'); - * // => 'fooBar' + * var array = [[0, 1], [2, 3], [4, 5]]; * - * _.camelCase('__FOO_BAR__'); - * // => 'fooBar' + * _.reduceRight(array, function(flattened, other) { + * return flattened.concat(other); + * }, []); + * // => [4, 5, 2, 3, 0, 1] */ - var camelCase = createCompounder(function(result, word, index) { - word = word.toLowerCase(); - return result + (index ? capitalize(word) : word); - }); + function reduceRight(collection, iteratee, accumulator) { + var func = isArray(collection) ? arrayReduceRight : baseReduce, + initAccum = arguments.length < 3; + + return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEachRight); + } /** - * Converts the first character of `string` to upper case and the remaining - * to lower case. + * The opposite of `_.filter`; this method returns the elements of `collection` + * that `predicate` does **not** return truthy for. * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to capitalize. - * @returns {string} Returns the capitalized string. + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + * @see _.filter * @example * - * _.capitalize('FRED'); - * // => 'Fred' + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': false }, + * { 'user': 'fred', 'age': 40, 'active': true } + * ]; + * + * _.reject(users, function(o) { return !o.active; }); + * // => objects for ['fred'] + * + * // The `_.matches` iteratee shorthand. + * _.reject(users, { 'age': 40, 'active': true }); + * // => objects for ['barney'] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.reject(users, ['active', false]); + * // => objects for ['fred'] + * + * // The `_.property` iteratee shorthand. + * _.reject(users, 'active'); + * // => objects for ['barney'] */ - function capitalize(string) { - return upperFirst(toString(string).toLowerCase()); + function reject(collection, predicate) { + var func = isArray(collection) ? arrayFilter : baseFilter; + return func(collection, negate(getIteratee(predicate, 3))); } /** - * Deburrs `string` by converting - * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) - * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A) - * letters to basic Latin letters and removing - * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). + * Gets a random element from `collection`. * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to deburr. - * @returns {string} Returns the deburred string. + * @since 2.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @returns {*} Returns the random element. * @example * - * _.deburr('déjà vu'); - * // => 'deja vu' + * _.sample([1, 2, 3, 4]); + * // => 2 */ - function deburr(string) { - string = toString(string); - return string && string.replace(reLatin, deburrLetter).replace(reComboMark, ''); + function sample(collection) { + var func = isArray(collection) ? arraySample : baseSample; + return func(collection); } /** - * Checks if `string` ends with the given target string. + * Gets `n` random elements at unique keys from `collection` up to the + * size of `collection`. * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to inspect. - * @param {string} [target] The string to search for. - * @param {number} [position=string.length] The position to search up to. - * @returns {boolean} Returns `true` if `string` ends with `target`, - * else `false`. + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @param {number} [n=1] The number of elements to sample. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the random elements. * @example * - * _.endsWith('abc', 'c'); - * // => true - * - * _.endsWith('abc', 'b'); - * // => false + * _.sampleSize([1, 2, 3], 2); + * // => [3, 1] * - * _.endsWith('abc', 'b', 2); - * // => true + * _.sampleSize([1, 2, 3], 4); + * // => [2, 3, 1] */ - function endsWith(string, target, position) { - string = toString(string); - target = baseToString(target); - - var length = string.length; - position = position === undefined - ? length - : baseClamp(toInteger(position), 0, length); - - var end = position; - position -= target.length; - return position >= 0 && string.slice(position, end) == target; + function sampleSize(collection, n, guard) { + if ((guard ? isIterateeCall(collection, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + var func = isArray(collection) ? arraySampleSize : baseSampleSize; + return func(collection, n); } /** - * Converts the characters "&", "<", ">", '"', and "'" in `string` to their - * corresponding HTML entities. - * - * **Note:** No other characters are escaped. To escape additional - * characters use a third-party library like [_he_](https://mths.be/he). - * - * Though the ">" character is escaped for symmetry, characters like - * ">" and "/" don't need escaping in HTML and have no special meaning - * unless they're part of a tag or unquoted attribute value. See - * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands) - * (under "semi-related fun fact") for more details. - * - * When working with HTML you should always - * [quote attribute values](http://wonko.com/post/html-escaping) to reduce - * XSS vectors. + * Creates an array of shuffled values, using a version of the + * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle). * * @static - * @since 0.1.0 * @memberOf _ - * @category String - * @param {string} [string=''] The string to escape. - * @returns {string} Returns the escaped string. + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to shuffle. + * @returns {Array} Returns the new shuffled array. * @example * - * _.escape('fred, barney, & pebbles'); - * // => 'fred, barney, & pebbles' + * _.shuffle([1, 2, 3, 4]); + * // => [4, 1, 3, 2] */ - function escape(string) { - string = toString(string); - return (string && reHasUnescapedHtml.test(string)) - ? string.replace(reUnescapedHtml, escapeHtmlChar) - : string; + function shuffle(collection) { + var func = isArray(collection) ? arrayShuffle : baseShuffle; + return func(collection); } /** - * Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+", - * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`. + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable string keyed properties for objects. * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to escape. - * @returns {string} Returns the escaped string. + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the collection size. * @example * - * _.escapeRegExp('[lodash](https://lodash.com/)'); - * // => '\[lodash\]\(https://lodash\.com/\)' + * _.size([1, 2, 3]); + * // => 3 + * + * _.size({ 'a': 1, 'b': 2 }); + * // => 2 + * + * _.size('pebbles'); + * // => 7 */ - function escapeRegExp(string) { - string = toString(string); - return (string && reHasRegExpChar.test(string)) - ? string.replace(reRegExpChar, '\\$&') - : string; + function size(collection) { + if (collection == null) { + return 0; + } + if (isArrayLike(collection)) { + return isString(collection) ? stringSize(collection) : collection.length; + } + var tag = getTag(collection); + if (tag == mapTag || tag == setTag) { + return collection.size; + } + return baseKeys(collection).length; } /** - * Converts `string` to - * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles). + * Checks if `predicate` returns truthy for **any** element of `collection`. + * Iteration is stopped once `predicate` returns truthy. The predicate is + * invoked with three arguments: (value, index|key, collection). * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the kebab cased string. + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. * @example * - * _.kebabCase('Foo Bar'); - * // => 'foo-bar' + * _.some([null, 0, 'yes', false], Boolean); + * // => true * - * _.kebabCase('fooBar'); - * // => 'foo-bar' + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ]; * - * _.kebabCase('__FOO_BAR__'); - * // => 'foo-bar' + * // The `_.matches` iteratee shorthand. + * _.some(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.some(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.some(users, 'active'); + * // => true */ - var kebabCase = createCompounder(function(result, word, index) { - return result + (index ? '-' : '') + word.toLowerCase(); - }); + function some(collection, predicate, guard) { + var func = isArray(collection) ? arraySome : baseSome; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, getIteratee(predicate, 3)); + } /** - * Converts `string`, as space separated words, to lower case. + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection thru each iteratee. This method + * performs a stable sort, that is, it preserves the original sort order of + * equal elements. The iteratees are invoked with one argument: (value). * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the lower cased string. + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {...(Function|Function[])} [iteratees=[_.identity]] + * The iteratees to sort by. + * @returns {Array} Returns the new sorted array. * @example * - * _.lowerCase('--Foo-Bar--'); - * // => 'foo bar' + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 30 }, + * { 'user': 'barney', 'age': 34 } + * ]; * - * _.lowerCase('fooBar'); - * // => 'foo bar' + * _.sortBy(users, [function(o) { return o.user; }]); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]] * - * _.lowerCase('__FOO_BAR__'); - * // => 'foo bar' + * _.sortBy(users, ['user', 'age']); + * // => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]] */ - var lowerCase = createCompounder(function(result, word, index) { - return result + (index ? ' ' : '') + word.toLowerCase(); + var sortBy = baseRest(function(collection, iteratees) { + if (collection == null) { + return []; + } + var length = iteratees.length; + if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) { + iteratees = []; + } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) { + iteratees = [iteratees[0]]; + } + return baseOrderBy(collection, baseFlatten(iteratees, 1), []); }); + /*------------------------------------------------------------------------*/ + /** - * Converts the first character of `string` to lower case. + * Gets the timestamp of the number of milliseconds that have elapsed since + * the Unix epoch (1 January 1970 00:00:00 UTC). * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the converted string. + * @since 2.4.0 + * @category Date + * @returns {number} Returns the timestamp. * @example * - * _.lowerFirst('Fred'); - * // => 'fred' - * - * _.lowerFirst('FRED'); - * // => 'fRED' + * _.defer(function(stamp) { + * console.log(_.now() - stamp); + * }, _.now()); + * // => Logs the number of milliseconds it took for the deferred invocation. */ - var lowerFirst = createCaseFirst('toLowerCase'); + var now = ctxNow || function() { + return root.Date.now(); + }; + + /*------------------------------------------------------------------------*/ /** - * Pads `string` on the left and right sides if it's shorter than `length`. - * Padding characters are truncated if they can't be evenly divided by `length`. + * The opposite of `_.before`; this method creates a function that invokes + * `func` once it's called `n` or more times. * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to pad. - * @param {number} [length=0] The padding length. - * @param {string} [chars=' '] The string used as padding. - * @returns {string} Returns the padded string. + * @since 0.1.0 + * @category Function + * @param {number} n The number of calls before `func` is invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. * @example * - * _.pad('abc', 8); - * // => ' abc ' + * var saves = ['profile', 'settings']; * - * _.pad('abc', 8, '_-'); - * // => '_-abc_-_' + * var done = _.after(saves.length, function() { + * console.log('done saving!'); + * }); * - * _.pad('abc', 3); - * // => 'abc' + * _.forEach(saves, function(type) { + * asyncSave({ 'type': type, 'complete': done }); + * }); + * // => Logs 'done saving!' after the two async saves have completed. */ - function pad(string, length, chars) { - string = toString(string); - length = toInteger(length); - - var strLength = length ? stringSize(string) : 0; - if (!length || strLength >= length) { - return string; + function after(n, func) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); } - var mid = (length - strLength) / 2; - return ( - createPadding(nativeFloor(mid), chars) + - string + - createPadding(nativeCeil(mid), chars) - ); + n = toInteger(n); + return function() { + if (--n < 1) { + return func.apply(this, arguments); + } + }; } /** - * Pads `string` on the right side if it's shorter than `length`. Padding - * characters are truncated if they exceed `length`. + * Creates a function that invokes `func`, with up to `n` arguments, + * ignoring any additional arguments. * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to pad. - * @param {number} [length=0] The padding length. - * @param {string} [chars=' '] The string used as padding. - * @returns {string} Returns the padded string. + * @since 3.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @param {number} [n=func.length] The arity cap. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new capped function. * @example * - * _.padEnd('abc', 6); - * // => 'abc ' - * - * _.padEnd('abc', 6, '_-'); - * // => 'abc_-_' - * - * _.padEnd('abc', 3); - * // => 'abc' + * _.map(['6', '8', '10'], _.ary(parseInt, 1)); + * // => [6, 8, 10] */ - function padEnd(string, length, chars) { - string = toString(string); - length = toInteger(length); - - var strLength = length ? stringSize(string) : 0; - return (length && strLength < length) - ? (string + createPadding(length - strLength, chars)) - : string; + function ary(func, n, guard) { + n = guard ? undefined : n; + n = (func && n == null) ? func.length : n; + return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n); } /** - * Pads `string` on the left side if it's shorter than `length`. Padding - * characters are truncated if they exceed `length`. + * Creates a function that invokes `func`, with the `this` binding and arguments + * of the created function, while it's called less than `n` times. Subsequent + * calls to the created function return the result of the last `func` invocation. * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to pad. - * @param {number} [length=0] The padding length. - * @param {string} [chars=' '] The string used as padding. - * @returns {string} Returns the padded string. + * @since 3.0.0 + * @category Function + * @param {number} n The number of calls at which `func` is no longer invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. * @example * - * _.padStart('abc', 6); - * // => ' abc' - * - * _.padStart('abc', 6, '_-'); - * // => '_-_abc' - * - * _.padStart('abc', 3); - * // => 'abc' + * jQuery(element).on('click', _.before(5, addContactToList)); + * // => Allows adding up to 4 contacts to the list. */ - function padStart(string, length, chars) { - string = toString(string); - length = toInteger(length); - - var strLength = length ? stringSize(string) : 0; - return (length && strLength < length) - ? (createPadding(length - strLength, chars) + string) - : string; + function before(n, func) { + var result; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n > 0) { + result = func.apply(this, arguments); + } + if (n <= 1) { + func = undefined; + } + return result; + }; } /** - * Converts `string` to an integer of the specified radix. If `radix` is - * `undefined` or `0`, a `radix` of `10` is used unless `value` is a - * hexadecimal, in which case a `radix` of `16` is used. + * Creates a function that invokes `func` with the `this` binding of `thisArg` + * and `partials` prepended to the arguments it receives. * - * **Note:** This method aligns with the - * [ES5 implementation](https://es5.github.io/#x15.1.2.2) of `parseInt`. + * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for partially applied arguments. + * + * **Note:** Unlike native `Function#bind`, this method doesn't set the "length" + * property of bound functions. * * @static * @memberOf _ - * @since 1.1.0 - * @category String - * @param {string} string The string to convert. - * @param {number} [radix=10] The radix to interpret `value` by. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {number} Returns the converted integer. + * @since 0.1.0 + * @category Function + * @param {Function} func The function to bind. + * @param {*} thisArg The `this` binding of `func`. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. * @example * - * _.parseInt('08'); - * // => 8 + * function greet(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } * - * _.map(['6', '08', '10'], _.parseInt); - * // => [6, 8, 10] + * var object = { 'user': 'fred' }; + * + * var bound = _.bind(greet, object, 'hi'); + * bound('!'); + * // => 'hi fred!' + * + * // Bound with placeholders. + * var bound = _.bind(greet, object, _, '!'); + * bound('hi'); + * // => 'hi fred!' */ - function parseInt(string, radix, guard) { - if (guard || radix == null) { - radix = 0; - } else if (radix) { - radix = +radix; + var bind = baseRest(function(func, thisArg, partials) { + var bitmask = WRAP_BIND_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bind)); + bitmask |= WRAP_PARTIAL_FLAG; } - return nativeParseInt(toString(string).replace(reTrimStart, ''), radix || 0); - } + return createWrap(func, bitmask, thisArg, partials, holders); + }); /** - * Repeats the given string `n` times. + * Creates a function that invokes the method at `object[key]` with `partials` + * prepended to the arguments it receives. + * + * This method differs from `_.bind` by allowing bound functions to reference + * methods that may be redefined or don't yet exist. See + * [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern) + * for more details. + * + * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to repeat. - * @param {number} [n=1] The number of times to repeat the string. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {string} Returns the repeated string. + * @since 0.10.0 + * @category Function + * @param {Object} object The object to invoke the method on. + * @param {string} key The key of the method. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new bound function. * @example * - * _.repeat('*', 3); - * // => '***' + * var object = { + * 'user': 'fred', + * 'greet': function(greeting, punctuation) { + * return greeting + ' ' + this.user + punctuation; + * } + * }; * - * _.repeat('abc', 2); - * // => 'abcabc' + * var bound = _.bindKey(object, 'greet', 'hi'); + * bound('!'); + * // => 'hi fred!' * - * _.repeat('abc', 0); - * // => '' + * object.greet = function(greeting, punctuation) { + * return greeting + 'ya ' + this.user + punctuation; + * }; + * + * bound('!'); + * // => 'hiya fred!' + * + * // Bound with placeholders. + * var bound = _.bindKey(object, 'greet', _, '!'); + * bound('hi'); + * // => 'hiya fred!' */ - function repeat(string, n, guard) { - if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) { - n = 1; - } else { - n = toInteger(n); + var bindKey = baseRest(function(object, key, partials) { + var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG; + if (partials.length) { + var holders = replaceHolders(partials, getHolder(bindKey)); + bitmask |= WRAP_PARTIAL_FLAG; } - return baseRepeat(toString(string), n); - } + return createWrap(key, bitmask, object, partials, holders); + }); /** - * Replaces matches for `pattern` in `string` with `replacement`. + * Creates a function that accepts arguments of `func` and either invokes + * `func` returning its result, if at least `arity` number of arguments have + * been provided, or returns a function that accepts the remaining `func` + * arguments, and so on. The arity of `func` may be specified if `func.length` + * is not sufficient. * - * **Note:** This method is based on - * [`String#replace`](https://mdn.io/String/replace). + * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds, + * may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to modify. - * @param {RegExp|string} pattern The pattern to replace. - * @param {Function|string} replacement The match replacement. - * @returns {string} Returns the modified string. + * @since 2.0.0 + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. * @example * - * _.replace('Hi Fred', 'Fred', 'Barney'); - * // => 'Hi Barney' + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; + * + * var curried = _.curry(abc); + * + * curried(1)(2)(3); + * // => [1, 2, 3] + * + * curried(1, 2)(3); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(1)(_, 3)(2); + * // => [1, 2, 3] */ - function replace() { - var args = arguments, - string = toString(args[0]); - - return args.length < 3 ? string : string.replace(args[1], args[2]); + function curry(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curry.placeholder; + return result; } /** - * Converts `string` to - * [snake case](https://en.wikipedia.org/wiki/Snake_case). + * This method is like `_.curry` except that arguments are applied to `func` + * in the manner of `_.partialRight` instead of `_.partial`. + * + * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for provided arguments. + * + * **Note:** This method doesn't set the "length" property of curried functions. * * @static * @memberOf _ * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the snake cased string. + * @category Function + * @param {Function} func The function to curry. + * @param {number} [arity=func.length] The arity of `func`. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the new curried function. * @example * - * _.snakeCase('Foo Bar'); - * // => 'foo_bar' + * var abc = function(a, b, c) { + * return [a, b, c]; + * }; * - * _.snakeCase('fooBar'); - * // => 'foo_bar' + * var curried = _.curryRight(abc); * - * _.snakeCase('--FOO-BAR--'); - * // => 'foo_bar' + * curried(3)(2)(1); + * // => [1, 2, 3] + * + * curried(2, 3)(1); + * // => [1, 2, 3] + * + * curried(1, 2, 3); + * // => [1, 2, 3] + * + * // Curried with placeholders. + * curried(3)(1, _)(2); + * // => [1, 2, 3] */ - var snakeCase = createCompounder(function(result, word, index) { - return result + (index ? '_' : '') + word.toLowerCase(); - }); + function curryRight(func, arity, guard) { + arity = guard ? undefined : arity; + var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity); + result.placeholder = curryRight.placeholder; + return result; + } /** - * Splits `string` by `separator`. + * Creates a debounced function that delays invoking `func` until after `wait` + * milliseconds have elapsed since the last time the debounced function was + * invoked. The debounced function comes with a `cancel` method to cancel + * delayed `func` invocations and a `flush` method to immediately invoke them. + * Provide `options` to indicate whether `func` should be invoked on the + * leading and/or trailing edge of the `wait` timeout. The `func` is invoked + * with the last arguments provided to the debounced function. Subsequent + * calls to the debounced function return the result of the last `func` + * invocation. * - * **Note:** This method is based on - * [`String#split`](https://mdn.io/String/split). + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the debounced function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.debounce` and `_.throttle`. * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to split. - * @param {RegExp|string} separator The separator pattern to split by. - * @param {number} [limit] The length to truncate results to. - * @returns {Array} Returns the string segments. + * @since 0.1.0 + * @category Function + * @param {Function} func The function to debounce. + * @param {number} [wait=0] The number of milliseconds to delay. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.leading=false] + * Specify invoking on the leading edge of the timeout. + * @param {number} [options.maxWait] + * The maximum time `func` is allowed to be delayed before it's invoked. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new debounced function. * @example * - * _.split('a-b-c', '-', 2); - * // => ['a', 'b'] + * // Avoid costly calculations while the window size is in flux. + * jQuery(window).on('resize', _.debounce(calculateLayout, 150)); + * + * // Invoke `sendMail` when clicked, debouncing subsequent calls. + * jQuery(element).on('click', _.debounce(sendMail, 300, { + * 'leading': true, + * 'trailing': false + * })); + * + * // Ensure `batchLog` is invoked once after 1 second of debounced calls. + * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 }); + * var source = new EventSource('/stream'); + * jQuery(source).on('message', debounced); + * + * // Cancel the trailing debounced invocation. + * jQuery(window).on('popstate', debounced.cancel); */ - function split(string, separator, limit) { - if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) { - separator = limit = undefined; + function debounce(func, wait, options) { + var lastArgs, + lastThis, + maxWait, + result, + timerId, + lastCallTime, + lastInvokeTime = 0, + leading = false, + maxing = false, + trailing = true; + + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); } - limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0; - if (!limit) { - return []; + wait = toNumber(wait) || 0; + if (isObject(options)) { + leading = !!options.leading; + maxing = 'maxWait' in options; + maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait; + trailing = 'trailing' in options ? !!options.trailing : trailing; } - string = toString(string); - if (string && ( - typeof separator == 'string' || - (separator != null && !isRegExp(separator)) - )) { - separator = baseToString(separator); - if (!separator && hasUnicode(string)) { - return castSlice(stringToArray(string), 0, limit); + + function invokeFunc(time) { + var args = lastArgs, + thisArg = lastThis; + + lastArgs = lastThis = undefined; + lastInvokeTime = time; + result = func.apply(thisArg, args); + return result; + } + + function leadingEdge(time) { + // Reset any `maxWait` timer. + lastInvokeTime = time; + // Start the timer for the trailing edge. + timerId = setTimeout(timerExpired, wait); + // Invoke the leading edge. + return leading ? invokeFunc(time) : result; + } + + function remainingWait(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime, + timeWaiting = wait - timeSinceLastCall; + + return maxing + ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) + : timeWaiting; + } + + function shouldInvoke(time) { + var timeSinceLastCall = time - lastCallTime, + timeSinceLastInvoke = time - lastInvokeTime; + + // Either this is the first call, activity has stopped and we're at the + // trailing edge, the system time has gone backwards and we're treating + // it as the trailing edge, or we've hit the `maxWait` limit. + return (lastCallTime === undefined || (timeSinceLastCall >= wait) || + (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait)); + } + + function timerExpired() { + var time = now(); + if (shouldInvoke(time)) { + return trailingEdge(time); } + // Restart the timer. + timerId = setTimeout(timerExpired, remainingWait(time)); } - return string.split(separator, limit); + + function trailingEdge(time) { + timerId = undefined; + + // Only invoke if we have `lastArgs` which means `func` has been + // debounced at least once. + if (trailing && lastArgs) { + return invokeFunc(time); + } + lastArgs = lastThis = undefined; + return result; + } + + function cancel() { + if (timerId !== undefined) { + clearTimeout(timerId); + } + lastInvokeTime = 0; + lastArgs = lastCallTime = lastThis = timerId = undefined; + } + + function flush() { + return timerId === undefined ? result : trailingEdge(now()); + } + + function debounced() { + var time = now(), + isInvoking = shouldInvoke(time); + + lastArgs = arguments; + lastThis = this; + lastCallTime = time; + + if (isInvoking) { + if (timerId === undefined) { + return leadingEdge(lastCallTime); + } + if (maxing) { + // Handle invocations in a tight loop. + clearTimeout(timerId); + timerId = setTimeout(timerExpired, wait); + return invokeFunc(lastCallTime); + } + } + if (timerId === undefined) { + timerId = setTimeout(timerExpired, wait); + } + return result; + } + debounced.cancel = cancel; + debounced.flush = flush; + return debounced; } /** - * Converts `string` to - * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage). + * Defers invoking the `func` until the current call stack has cleared. Any + * additional arguments are provided to `func` when it's invoked. * * @static * @memberOf _ - * @since 3.1.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the start cased string. + * @since 0.1.0 + * @category Function + * @param {Function} func The function to defer. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. * @example * - * _.startCase('--foo-bar--'); - * // => 'Foo Bar' + * _.defer(function(text) { + * console.log(text); + * }, 'deferred'); + * // => Logs 'deferred' after one millisecond. + */ + var defer = baseRest(function(func, args) { + return baseDelay(func, 1, args); + }); + + /** + * Invokes `func` after `wait` milliseconds. Any additional arguments are + * provided to `func` when it's invoked. * - * _.startCase('fooBar'); - * // => 'Foo Bar' + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to delay. + * @param {number} wait The number of milliseconds to delay invocation. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {number} Returns the timer id. + * @example * - * _.startCase('__FOO_BAR__'); - * // => 'FOO BAR' + * _.delay(function(text) { + * console.log(text); + * }, 1000, 'later'); + * // => Logs 'later' after one second. */ - var startCase = createCompounder(function(result, word, index) { - return result + (index ? ' ' : '') + upperFirst(word); + var delay = baseRest(function(func, wait, args) { + return baseDelay(func, toNumber(wait) || 0, args); }); /** - * Checks if `string` starts with the given target string. + * Creates a function that invokes `func` with arguments reversed. * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to inspect. - * @param {string} [target] The string to search for. - * @param {number} [position=0] The position to search from. - * @returns {boolean} Returns `true` if `string` starts with `target`, - * else `false`. + * @since 4.0.0 + * @category Function + * @param {Function} func The function to flip arguments for. + * @returns {Function} Returns the new flipped function. * @example * - * _.startsWith('abc', 'a'); - * // => true - * - * _.startsWith('abc', 'b'); - * // => false + * var flipped = _.flip(function() { + * return _.toArray(arguments); + * }); * - * _.startsWith('abc', 'b', 1); - * // => true + * flipped('a', 'b', 'c', 'd'); + * // => ['d', 'c', 'b', 'a'] */ - function startsWith(string, target, position) { - string = toString(string); - position = position == null - ? 0 - : baseClamp(toInteger(position), 0, string.length); - - target = baseToString(target); - return string.slice(position, position + target.length) == target; + function flip(func) { + return createWrap(func, WRAP_FLIP_FLAG); } /** - * Creates a compiled template function that can interpolate data properties - * in "interpolate" delimiters, HTML-escape interpolated data properties in - * "escape" delimiters, and execute JavaScript in "evaluate" delimiters. Data - * properties may be accessed as free variables in the template. If a setting - * object is given, it takes precedence over `_.templateSettings` values. - * - * **Note:** In the development build `_.template` utilizes - * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl) - * for easier debugging. - * - * For more information on precompiling templates see - * [lodash's custom builds documentation](https://lodash.com/custom-builds). + * Creates a function that memoizes the result of `func`. If `resolver` is + * provided, it determines the cache key for storing the result based on the + * arguments provided to the memoized function. By default, the first argument + * provided to the memoized function is used as the map cache key. The `func` + * is invoked with the `this` binding of the memoized function. * - * For more information on Chrome extension sandboxes see - * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval). + * **Note:** The cache is exposed as the `cache` property on the memoized + * function. Its creation may be customized by replacing the `_.memoize.Cache` + * constructor with one whose instances implement the + * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) + * method interface of `clear`, `delete`, `get`, `has`, and `set`. * * @static - * @since 0.1.0 * @memberOf _ - * @category String - * @param {string} [string=''] The template string. - * @param {Object} [options={}] The options object. - * @param {RegExp} [options.escape=_.templateSettings.escape] - * The HTML "escape" delimiter. - * @param {RegExp} [options.evaluate=_.templateSettings.evaluate] - * The "evaluate" delimiter. - * @param {Object} [options.imports=_.templateSettings.imports] - * An object to import into the template as free variables. - * @param {RegExp} [options.interpolate=_.templateSettings.interpolate] - * The "interpolate" delimiter. - * @param {string} [options.sourceURL='lodash.templateSources[n]'] - * The sourceURL of the compiled template. - * @param {string} [options.variable='obj'] - * The data object variable name. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Function} Returns the compiled template function. + * @since 0.1.0 + * @category Function + * @param {Function} func The function to have its output memoized. + * @param {Function} [resolver] The function to resolve the cache key. + * @returns {Function} Returns the new memoized function. * @example * - * // Use the "interpolate" delimiter to create a compiled template. - * var compiled = _.template('hello <%= user %>!'); - * compiled({ 'user': 'fred' }); - * // => 'hello fred!' - * - * // Use the HTML "escape" delimiter to escape data property values. - * var compiled = _.template('<b><%- value %></b>'); - * compiled({ 'value': '<script>' }); - * // => '<b><script></b>' - * - * // Use the "evaluate" delimiter to execute JavaScript and generate HTML. - * var compiled = _.template('<% _.forEach(users, function(user) { %><li><%- user %></li><% }); %>'); - * compiled({ 'users': ['fred', 'barney'] }); - * // => '<li>fred</li><li>barney</li>' - * - * // Use the internal `print` function in "evaluate" delimiters. - * var compiled = _.template('<% print("hello " + user); %>!'); - * compiled({ 'user': 'barney' }); - * // => 'hello barney!' - * - * // Use the ES template literal delimiter as an "interpolate" delimiter. - * // Disable support by replacing the "interpolate" delimiter. - * var compiled = _.template('hello ${ user }!'); - * compiled({ 'user': 'pebbles' }); - * // => 'hello pebbles!' - * - * // Use backslashes to treat delimiters as plain text. - * var compiled = _.template('<%= "\\<%- value %\\>" %>'); - * compiled({ 'value': 'ignored' }); - * // => '<%- value %>' + * var object = { 'a': 1, 'b': 2 }; + * var other = { 'c': 3, 'd': 4 }; * - * // Use the `imports` option to import `jQuery` as `jq`. - * var text = '<% jq.each(users, function(user) { %><li><%- user %></li><% }); %>'; - * var compiled = _.template(text, { 'imports': { 'jq': jQuery } }); - * compiled({ 'users': ['fred', 'barney'] }); - * // => '<li>fred</li><li>barney</li>' + * var values = _.memoize(_.values); + * values(object); + * // => [1, 2] * - * // Use the `sourceURL` option to specify a custom sourceURL for the template. - * var compiled = _.template('hello <%= user %>!', { 'sourceURL': '/basic/greeting.jst' }); - * compiled(data); - * // => Find the source of "greeting.jst" under the Sources tab or Resources panel of the web inspector. + * values(other); + * // => [3, 4] * - * // Use the `variable` option to ensure a with-statement isn't used in the compiled template. - * var compiled = _.template('hi <%= data.user %>!', { 'variable': 'data' }); - * compiled.source; - * // => function(data) { - * // var __t, __p = ''; - * // __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!'; - * // return __p; - * // } + * object.a = 2; + * values(object); + * // => [1, 2] * - * // Use custom template delimiters. - * _.templateSettings.interpolate = /{{([\s\S]+?)}}/g; - * var compiled = _.template('hello {{ user }}!'); - * compiled({ 'user': 'mustache' }); - * // => 'hello mustache!' + * // Modify the result cache. + * values.cache.set(object, ['a', 'b']); + * values(object); + * // => ['a', 'b'] * - * // Use the `source` property to inline compiled templates for meaningful - * // line numbers in error messages and stack traces. - * fs.writeFileSync(path.join(process.cwd(), 'jst.js'), '\ - * var JST = {\ - * "main": ' + _.template(mainText).source + '\ - * };\ - * '); + * // Replace `_.memoize.Cache`. + * _.memoize.Cache = WeakMap; */ - function template(string, options, guard) { - // Based on John Resig's `tmpl` implementation - // (http://ejohn.org/blog/javascript-micro-templating/) - // and Laura Doktorova's doT.js (https://github.com/olado/doT). - var settings = lodash.templateSettings; - - if (guard && isIterateeCall(string, options, guard)) { - options = undefined; + function memoize(func, resolver) { + if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { + throw new TypeError(FUNC_ERROR_TEXT); } - string = toString(string); - options = assignInWith({}, options, settings, customDefaultsAssignIn); - - var imports = assignInWith({}, options.imports, settings.imports, customDefaultsAssignIn), - importsKeys = keys(imports), - importsValues = baseValues(imports, importsKeys); - - var isEscaping, - isEvaluating, - index = 0, - interpolate = options.interpolate || reNoMatch, - source = "__p += '"; - - // Compile the regexp to match each delimiter. - var reDelimiters = RegExp( - (options.escape || reNoMatch).source + '|' + - interpolate.source + '|' + - (interpolate === reInterpolate ? reEsTemplate : reNoMatch).source + '|' + - (options.evaluate || reNoMatch).source + '|$' - , 'g'); - - // Use a sourceURL for easier debugging. - // The sourceURL gets injected into the source that's eval-ed, so be careful - // to normalize all kinds of whitespace, so e.g. newlines (and unicode versions of it) can't sneak in - // and escape the comment, thus injecting code that gets evaled. - var sourceURL = '//# sourceURL=' + - (hasOwnProperty.call(options, 'sourceURL') - ? (options.sourceURL + '').replace(/\s/g, ' ') - : ('lodash.templateSources[' + (++templateCounter) + ']') - ) + '\n'; - - string.replace(reDelimiters, function(match, escapeValue, interpolateValue, esTemplateValue, evaluateValue, offset) { - interpolateValue || (interpolateValue = esTemplateValue); - - // Escape characters that can't be included in string literals. - source += string.slice(index, offset).replace(reUnescapedString, escapeStringChar); + var memoized = function() { + var args = arguments, + key = resolver ? resolver.apply(this, args) : args[0], + cache = memoized.cache; - // Replace delimiters with snippets. - if (escapeValue) { - isEscaping = true; - source += "' +\n__e(" + escapeValue + ") +\n'"; - } - if (evaluateValue) { - isEvaluating = true; - source += "';\n" + evaluateValue + ";\n__p += '"; - } - if (interpolateValue) { - source += "' +\n((__t = (" + interpolateValue + ")) == null ? '' : __t) +\n'"; + if (cache.has(key)) { + return cache.get(key); } - index = offset + match.length; - - // The JS engine embedded in Adobe products needs `match` returned in - // order to produce the correct `offset` value. - return match; - }); - - source += "';\n"; - - // If `variable` is not specified wrap a with-statement around the generated - // code to add the data object to the top of the scope chain. - var variable = hasOwnProperty.call(options, 'variable') && options.variable; - if (!variable) { - source = 'with (obj) {\n' + source + '\n}\n'; - } - // Throw an error if a forbidden character was found in `variable`, to prevent - // potential command injection attacks. - else if (reForbiddenIdentifierChars.test(variable)) { - throw new Error(INVALID_TEMPL_VAR_ERROR_TEXT); - } - - // Cleanup code by stripping empty strings. - source = (isEvaluating ? source.replace(reEmptyStringLeading, '') : source) - .replace(reEmptyStringMiddle, '$1') - .replace(reEmptyStringTrailing, '$1;'); - - // Frame code as the function body. - source = 'function(' + (variable || 'obj') + ') {\n' + - (variable - ? '' - : 'obj || (obj = {});\n' - ) + - "var __t, __p = ''" + - (isEscaping - ? ', __e = _.escape' - : '' - ) + - (isEvaluating - ? ', __j = Array.prototype.join;\n' + - "function print() { __p += __j.call(arguments, '') }\n" - : ';\n' - ) + - source + - 'return __p\n}'; + var result = func.apply(this, args); + memoized.cache = cache.set(key, result) || cache; + return result; + }; + memoized.cache = new (memoize.Cache || MapCache); + return memoized; + } - var result = attempt(function() { - return Function(importsKeys, sourceURL + 'return ' + source) - .apply(undefined, importsValues); - }); + // Expose `MapCache`. + memoize.Cache = MapCache; - // Provide the compiled function's source by its `toString` method or - // the `source` property as a convenience for inlining compiled templates. - result.source = source; - if (isError(result)) { - throw result; + /** + * Creates a function that negates the result of the predicate `func`. The + * `func` predicate is invoked with the `this` binding and arguments of the + * created function. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} predicate The predicate to negate. + * @returns {Function} Returns the new negated function. + * @example + * + * function isEven(n) { + * return n % 2 == 0; + * } + * + * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); + * // => [1, 3, 5] + */ + function negate(predicate) { + if (typeof predicate != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); } - return result; + return function() { + var args = arguments; + switch (args.length) { + case 0: return !predicate.call(this); + case 1: return !predicate.call(this, args[0]); + case 2: return !predicate.call(this, args[0], args[1]); + case 3: return !predicate.call(this, args[0], args[1], args[2]); + } + return !predicate.apply(this, args); + }; } /** - * Converts `string`, as a whole, to lower case just like - * [String#toLowerCase](https://mdn.io/toLowerCase). + * Creates a function that is restricted to invoking `func` once. Repeat calls + * to the function return the value of the first invocation. The `func` is + * invoked with the `this` binding and arguments of the created function. * * @static * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var initialize = _.once(createApplication); + * initialize(); + * initialize(); + * // => `createApplication` is invoked once + */ + function once(func) { + return before(2, func); + } + + /** + * Creates a function that invokes `func` with its arguments transformed. + * + * @static * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the lower cased string. + * @memberOf _ + * @category Function + * @param {Function} func The function to wrap. + * @param {...(Function|Function[])} [transforms=[_.identity]] + * The argument transforms. + * @returns {Function} Returns the new function. * @example * - * _.toLower('--Foo-Bar--'); - * // => '--foo-bar--' + * function doubled(n) { + * return n * 2; + * } * - * _.toLower('fooBar'); - * // => 'foobar' + * function square(n) { + * return n * n; + * } * - * _.toLower('__FOO_BAR__'); - * // => '__foo_bar__' + * var func = _.overArgs(function(x, y) { + * return [x, y]; + * }, [square, doubled]); + * + * func(9, 3); + * // => [81, 6] + * + * func(10, 5); + * // => [100, 10] */ - function toLower(value) { - return toString(value).toLowerCase(); - } + var overArgs = castRest(function(func, transforms) { + transforms = (transforms.length == 1 && isArray(transforms[0])) + ? arrayMap(transforms[0], baseUnary(getIteratee())) + : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee())); + + var funcsLength = transforms.length; + return baseRest(function(args) { + var index = -1, + length = nativeMin(args.length, funcsLength); + + while (++index < length) { + args[index] = transforms[index].call(this, args[index]); + } + return apply(func, this, args); + }); + }); /** - * Converts `string`, as a whole, to upper case just like - * [String#toUpperCase](https://mdn.io/toUpperCase). + * Creates a function that invokes `func` with `partials` prepended to the + * arguments it receives. This method is like `_.bind` except it does **not** + * alter the `this` binding. + * + * The `_.partial.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method doesn't set the "length" property of partially + * applied functions. * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the upper cased string. + * @since 0.2.0 + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. * @example * - * _.toUpper('--foo-bar--'); - * // => '--FOO-BAR--' + * function greet(greeting, name) { + * return greeting + ' ' + name; + * } * - * _.toUpper('fooBar'); - * // => 'FOOBAR' + * var sayHelloTo = _.partial(greet, 'hello'); + * sayHelloTo('fred'); + * // => 'hello fred' * - * _.toUpper('__foo_bar__'); - * // => '__FOO_BAR__' + * // Partially applied with placeholders. + * var greetFred = _.partial(greet, _, 'fred'); + * greetFred('hi'); + * // => 'hi fred' */ - function toUpper(value) { - return toString(value).toUpperCase(); - } + var partial = baseRest(function(func, partials) { + var holders = replaceHolders(partials, getHolder(partial)); + return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders); + }); /** - * Removes leading and trailing whitespace or specified characters from `string`. + * This method is like `_.partial` except that partially applied arguments + * are appended to the arguments it receives. + * + * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic + * builds, may be used as a placeholder for partially applied arguments. + * + * **Note:** This method doesn't set the "length" property of partially + * applied functions. * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to trim. - * @param {string} [chars=whitespace] The characters to trim. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {string} Returns the trimmed string. + * @since 1.0.0 + * @category Function + * @param {Function} func The function to partially apply arguments to. + * @param {...*} [partials] The arguments to be partially applied. + * @returns {Function} Returns the new partially applied function. * @example * - * _.trim(' abc '); - * // => 'abc' + * function greet(greeting, name) { + * return greeting + ' ' + name; + * } * - * _.trim('-_-abc-_-', '_-'); - * // => 'abc' + * var greetFred = _.partialRight(greet, 'fred'); + * greetFred('hi'); + * // => 'hi fred' * - * _.map([' foo ', ' bar '], _.trim); - * // => ['foo', 'bar'] + * // Partially applied with placeholders. + * var sayHelloTo = _.partialRight(greet, 'hello', _); + * sayHelloTo('fred'); + * // => 'hello fred' */ - function trim(string, chars, guard) { - string = toString(string); - if (string && (guard || chars === undefined)) { - return baseTrim(string); - } - if (!string || !(chars = baseToString(chars))) { - return string; - } - var strSymbols = stringToArray(string), - chrSymbols = stringToArray(chars), - start = charsStartIndex(strSymbols, chrSymbols), - end = charsEndIndex(strSymbols, chrSymbols) + 1; + var partialRight = baseRest(function(func, partials) { + var holders = replaceHolders(partials, getHolder(partialRight)); + return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined, partials, holders); + }); - return castSlice(strSymbols, start, end).join(''); - } + /** + * Creates a function that invokes `func` with arguments arranged according + * to the specified `indexes` where the argument value at the first index is + * provided as the first argument, the argument value at the second index is + * provided as the second argument, and so on. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} func The function to rearrange arguments for. + * @param {...(number|number[])} indexes The arranged argument indexes. + * @returns {Function} Returns the new function. + * @example + * + * var rearged = _.rearg(function(a, b, c) { + * return [a, b, c]; + * }, [2, 0, 1]); + * + * rearged('b', 'c', 'a') + * // => ['a', 'b', 'c'] + */ + var rearg = flatRest(function(func, indexes) { + return createWrap(func, WRAP_REARG_FLAG, undefined, undefined, undefined, indexes); + }); /** - * Removes trailing whitespace or specified characters from `string`. + * Creates a function that invokes `func` with the `this` binding of the + * created function and arguments from `start` and beyond provided as + * an array. + * + * **Note:** This method is based on the + * [rest parameter](https://mdn.io/rest_parameters). * * @static * @memberOf _ * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to trim. - * @param {string} [chars=whitespace] The characters to trim. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {string} Returns the trimmed string. + * @category Function + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. * @example * - * _.trimEnd(' abc '); - * // => ' abc' + * var say = _.rest(function(what, names) { + * return what + ' ' + _.initial(names).join(', ') + + * (_.size(names) > 1 ? ', & ' : '') + _.last(names); + * }); * - * _.trimEnd('-_-abc-_-', '_-'); - * // => '-_-abc' + * say('hello', 'fred', 'barney', 'pebbles'); + * // => 'hello fred, barney, & pebbles' */ - function trimEnd(string, chars, guard) { - string = toString(string); - if (string && (guard || chars === undefined)) { - return string.slice(0, trimmedEndIndex(string) + 1); - } - if (!string || !(chars = baseToString(chars))) { - return string; + function rest(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); } - var strSymbols = stringToArray(string), - end = charsEndIndex(strSymbols, stringToArray(chars)) + 1; - - return castSlice(strSymbols, 0, end).join(''); + start = start === undefined ? start : toInteger(start); + return baseRest(func, start); } /** - * Removes leading whitespace or specified characters from `string`. + * Creates a function that invokes `func` with the `this` binding of the + * create function and an array of arguments much like + * [`Function#apply`](http://www.ecma-international.org/ecma-262/7.0/#sec-function.prototype.apply). + * + * **Note:** This method is based on the + * [spread operator](https://mdn.io/spread_operator). * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to trim. - * @param {string} [chars=whitespace] The characters to trim. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {string} Returns the trimmed string. + * @since 3.2.0 + * @category Function + * @param {Function} func The function to spread arguments over. + * @param {number} [start=0] The start position of the spread. + * @returns {Function} Returns the new function. * @example * - * _.trimStart(' abc '); - * // => 'abc ' + * var say = _.spread(function(who, what) { + * return who + ' says ' + what; + * }); * - * _.trimStart('-_-abc-_-', '_-'); - * // => 'abc-_-' + * say(['fred', 'hello']); + * // => 'fred says hello' + * + * var numbers = Promise.all([ + * Promise.resolve(40), + * Promise.resolve(36) + * ]); + * + * numbers.then(_.spread(function(x, y) { + * return x + y; + * })); + * // => a Promise of 76 */ - function trimStart(string, chars, guard) { - string = toString(string); - if (string && (guard || chars === undefined)) { - return string.replace(reTrimStart, ''); - } - if (!string || !(chars = baseToString(chars))) { - return string; + function spread(func, start) { + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); } - var strSymbols = stringToArray(string), - start = charsStartIndex(strSymbols, stringToArray(chars)); + start = start == null ? 0 : nativeMax(toInteger(start), 0); + return baseRest(function(args) { + var array = args[start], + otherArgs = castSlice(args, 0, start); - return castSlice(strSymbols, start).join(''); + if (array) { + arrayPush(otherArgs, array); + } + return apply(func, this, otherArgs); + }); } /** - * Truncates `string` if it's longer than the given maximum string length. - * The last characters of the truncated string are replaced with the omission - * string which defaults to "...". + * Creates a throttled function that only invokes `func` at most once per + * every `wait` milliseconds. The throttled function comes with a `cancel` + * method to cancel delayed `func` invocations and a `flush` method to + * immediately invoke them. Provide `options` to indicate whether `func` + * should be invoked on the leading and/or trailing edge of the `wait` + * timeout. The `func` is invoked with the last arguments provided to the + * throttled function. Subsequent calls to the throttled function return the + * result of the last `func` invocation. + * + * **Note:** If `leading` and `trailing` options are `true`, `func` is + * invoked on the trailing edge of the timeout only if the throttled function + * is invoked more than once during the `wait` timeout. + * + * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred + * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * + * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) + * for details over the differences between `_.throttle` and `_.debounce`. * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to truncate. + * @since 0.1.0 + * @category Function + * @param {Function} func The function to throttle. + * @param {number} [wait=0] The number of milliseconds to throttle invocations to. * @param {Object} [options={}] The options object. - * @param {number} [options.length=30] The maximum string length. - * @param {string} [options.omission='...'] The string to indicate text is omitted. - * @param {RegExp|string} [options.separator] The separator pattern to truncate to. - * @returns {string} Returns the truncated string. + * @param {boolean} [options.leading=true] + * Specify invoking on the leading edge of the timeout. + * @param {boolean} [options.trailing=true] + * Specify invoking on the trailing edge of the timeout. + * @returns {Function} Returns the new throttled function. * @example * - * _.truncate('hi-diddly-ho there, neighborino'); - * // => 'hi-diddly-ho there, neighbo...' - * - * _.truncate('hi-diddly-ho there, neighborino', { - * 'length': 24, - * 'separator': ' ' - * }); - * // => 'hi-diddly-ho there,...' + * // Avoid excessively updating the position while scrolling. + * jQuery(window).on('scroll', _.throttle(updatePosition, 100)); * - * _.truncate('hi-diddly-ho there, neighborino', { - * 'length': 24, - * 'separator': /,? +/ - * }); - * // => 'hi-diddly-ho there...' + * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes. + * var throttled = _.throttle(renewToken, 300000, { 'trailing': false }); + * jQuery(element).on('click', throttled); * - * _.truncate('hi-diddly-ho there, neighborino', { - * 'omission': ' [...]' - * }); - * // => 'hi-diddly-ho there, neig [...]' + * // Cancel the trailing throttled invocation. + * jQuery(window).on('popstate', throttled.cancel); */ - function truncate(string, options) { - var length = DEFAULT_TRUNC_LENGTH, - omission = DEFAULT_TRUNC_OMISSION; - - if (isObject(options)) { - var separator = 'separator' in options ? options.separator : separator; - length = 'length' in options ? toInteger(options.length) : length; - omission = 'omission' in options ? baseToString(options.omission) : omission; - } - string = toString(string); - - var strLength = string.length; - if (hasUnicode(string)) { - var strSymbols = stringToArray(string); - strLength = strSymbols.length; - } - if (length >= strLength) { - return string; - } - var end = length - stringSize(omission); - if (end < 1) { - return omission; - } - var result = strSymbols - ? castSlice(strSymbols, 0, end).join('') - : string.slice(0, end); + function throttle(func, wait, options) { + var leading = true, + trailing = true; - if (separator === undefined) { - return result + omission; - } - if (strSymbols) { - end += (result.length - end); + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); } - if (isRegExp(separator)) { - if (string.slice(end).search(separator)) { - var match, - substring = result; - - if (!separator.global) { - separator = RegExp(separator.source, toString(reFlags.exec(separator)) + 'g'); - } - separator.lastIndex = 0; - while ((match = separator.exec(substring))) { - var newEnd = match.index; - } - result = result.slice(0, newEnd === undefined ? end : newEnd); - } - } else if (string.indexOf(baseToString(separator), end) != end) { - var index = result.lastIndexOf(separator); - if (index > -1) { - result = result.slice(0, index); - } + if (isObject(options)) { + leading = 'leading' in options ? !!options.leading : leading; + trailing = 'trailing' in options ? !!options.trailing : trailing; } - return result + omission; + return debounce(func, wait, { + 'leading': leading, + 'maxWait': wait, + 'trailing': trailing + }); } /** - * The inverse of `_.escape`; this method converts the HTML entities - * `&`, `<`, `>`, `"`, and `'` in `string` to - * their corresponding characters. - * - * **Note:** No other HTML entities are unescaped. To unescape additional - * HTML entities use a third-party library like [_he_](https://mths.be/he). + * Creates a function that accepts up to one argument, ignoring any + * additional arguments. * * @static * @memberOf _ - * @since 0.6.0 - * @category String - * @param {string} [string=''] The string to unescape. - * @returns {string} Returns the unescaped string. + * @since 4.0.0 + * @category Function + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. * @example * - * _.unescape('fred, barney, & pebbles'); - * // => 'fred, barney, & pebbles' + * _.map(['6', '8', '10'], _.unary(parseInt)); + * // => [6, 8, 10] */ - function unescape(string) { - string = toString(string); - return (string && reHasEscapedHtml.test(string)) - ? string.replace(reEscapedHtml, unescapeHtmlChar) - : string; + function unary(func) { + return ary(func, 1); } /** - * Converts `string`, as space separated words, to upper case. + * Creates a function that provides `value` to `wrapper` as its first + * argument. Any additional arguments provided to the function are appended + * to those provided to the `wrapper`. The wrapper is invoked with the `this` + * binding of the created function. * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the upper cased string. + * @since 0.1.0 + * @category Function + * @param {*} value The value to wrap. + * @param {Function} [wrapper=identity] The wrapper function. + * @returns {Function} Returns the new function. * @example * - * _.upperCase('--foo-bar'); - * // => 'FOO BAR' - * - * _.upperCase('fooBar'); - * // => 'FOO BAR' + * var p = _.wrap(_.escape, function(func, text) { + * return '<p>' + func(text) + '</p>'; + * }); * - * _.upperCase('__foo_bar__'); - * // => 'FOO BAR' + * p('fred, barney, & pebbles'); + * // => '<p>fred, barney, & pebbles</p>' */ - var upperCase = createCompounder(function(result, word, index) { - return result + (index ? ' ' : '') + word.toUpperCase(); - }); + function wrap(value, wrapper) { + return partial(castFunction(wrapper), value); + } + + /*------------------------------------------------------------------------*/ /** - * Converts the first character of `string` to upper case. + * Casts `value` as an array if it's not one. * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to convert. - * @returns {string} Returns the converted string. + * @since 4.4.0 + * @category Lang + * @param {*} value The value to inspect. + * @returns {Array} Returns the cast array. * @example * - * _.upperFirst('fred'); - * // => 'Fred' + * _.castArray(1); + * // => [1] * - * _.upperFirst('FRED'); - * // => 'FRED' + * _.castArray({ 'a': 1 }); + * // => [{ 'a': 1 }] + * + * _.castArray('abc'); + * // => ['abc'] + * + * _.castArray(null); + * // => [null] + * + * _.castArray(undefined); + * // => [undefined] + * + * _.castArray(); + * // => [] + * + * var array = [1, 2, 3]; + * console.log(_.castArray(array) === array); + * // => true */ - var upperFirst = createCaseFirst('toUpperCase'); + function castArray() { + if (!arguments.length) { + return []; + } + var value = arguments[0]; + return isArray(value) ? value : [value]; + } /** - * Splits `string` into an array of its words. + * Creates a shallow clone of `value`. + * + * **Note:** This method is loosely based on the + * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm) + * and supports cloning arrays, array buffers, booleans, date objects, maps, + * numbers, `Object` objects, regexes, sets, strings, symbols, and typed + * arrays. The own enumerable properties of `arguments` objects are cloned + * as plain objects. An empty object is returned for uncloneable values such + * as error objects, functions, DOM nodes, and WeakMaps. * * @static * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to inspect. - * @param {RegExp|string} [pattern] The pattern to match words. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {Array} Returns the words of `string`. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to clone. + * @returns {*} Returns the cloned value. + * @see _.cloneDeep * @example * - * _.words('fred, barney, & pebbles'); - * // => ['fred', 'barney', 'pebbles'] + * var objects = [{ 'a': 1 }, { 'b': 2 }]; * - * _.words('fred, barney, & pebbles', /[^, ]+/g); - * // => ['fred', 'barney', '&', 'pebbles'] + * var shallow = _.clone(objects); + * console.log(shallow[0] === objects[0]); + * // => true */ - function words(string, pattern, guard) { - string = toString(string); - pattern = guard ? undefined : pattern; - - if (pattern === undefined) { - return hasUnicodeWord(string) ? unicodeWords(string) : asciiWords(string); - } - return string.match(pattern) || []; + function clone(value) { + return baseClone(value, CLONE_SYMBOLS_FLAG); } - /*------------------------------------------------------------------------*/ - /** - * Attempts to invoke `func`, returning either the result or the caught error - * object. Any additional arguments are provided to `func` when it's invoked. + * This method is like `_.clone` except that it accepts `customizer` which + * is invoked to produce the cloned value. If `customizer` returns `undefined`, + * cloning is handled by the method instead. The `customizer` is invoked with + * up to four arguments; (value [, index|key, object, stack]). * * @static * @memberOf _ - * @since 3.0.0 - * @category Util - * @param {Function} func The function to attempt. - * @param {...*} [args] The arguments to invoke `func` with. - * @returns {*} Returns the `func` result or error object. + * @since 4.0.0 + * @category Lang + * @param {*} value The value to clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the cloned value. + * @see _.cloneDeepWith * @example * - * // Avoid throwing errors for invalid selectors. - * var elements = _.attempt(function(selector) { - * return document.querySelectorAll(selector); - * }, '>_>'); - * - * if (_.isError(elements)) { - * elements = []; + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(false); + * } * } + * + * var el = _.cloneWith(document.body, customizer); + * + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 0 */ - var attempt = baseRest(function(func, args) { - try { - return apply(func, undefined, args); - } catch (e) { - return isError(e) ? e : new Error(e); - } - }); + function cloneWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_SYMBOLS_FLAG, customizer); + } /** - * Binds methods of an object to the object itself, overwriting the existing - * method. - * - * **Note:** This method doesn't set the "length" property of bound functions. + * This method is like `_.clone` except that it recursively clones `value`. * * @static - * @since 0.1.0 * @memberOf _ - * @category Util - * @param {Object} object The object to bind and assign the bound methods to. - * @param {...(string|string[])} methodNames The object method names to bind. - * @returns {Object} Returns `object`. + * @since 1.0.0 + * @category Lang + * @param {*} value The value to recursively clone. + * @returns {*} Returns the deep cloned value. + * @see _.clone * @example * - * var view = { - * 'label': 'docs', - * 'click': function() { - * console.log('clicked ' + this.label); - * } - * }; + * var objects = [{ 'a': 1 }, { 'b': 2 }]; * - * _.bindAll(view, ['click']); - * jQuery(element).on('click', view.click); - * // => Logs 'clicked docs' when clicked. + * var deep = _.cloneDeep(objects); + * console.log(deep[0] === objects[0]); + * // => false */ - var bindAll = flatRest(function(object, methodNames) { - arrayEach(methodNames, function(key) { - key = toKey(key); - baseAssignValue(object, key, bind(object[key], object)); - }); - return object; - }); + function cloneDeep(value) { + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG); + } /** - * Creates a function that iterates over `pairs` and invokes the corresponding - * function of the first predicate to return truthy. The predicate-function - * pairs are invoked with the `this` binding and arguments of the created - * function. + * This method is like `_.cloneWith` except that it recursively clones `value`. * * @static * @memberOf _ * @since 4.0.0 - * @category Util - * @param {Array} pairs The predicate-function pairs. - * @returns {Function} Returns the new composite function. + * @category Lang + * @param {*} value The value to recursively clone. + * @param {Function} [customizer] The function to customize cloning. + * @returns {*} Returns the deep cloned value. + * @see _.cloneWith * @example * - * var func = _.cond([ - * [_.matches({ 'a': 1 }), _.constant('matches A')], - * [_.conforms({ 'b': _.isNumber }), _.constant('matches B')], - * [_.stubTrue, _.constant('no match')] - * ]); - * - * func({ 'a': 1, 'b': 2 }); - * // => 'matches A' + * function customizer(value) { + * if (_.isElement(value)) { + * return value.cloneNode(true); + * } + * } * - * func({ 'a': 0, 'b': 1 }); - * // => 'matches B' + * var el = _.cloneDeepWith(document.body, customizer); * - * func({ 'a': '1', 'b': '2' }); - * // => 'no match' + * console.log(el === document.body); + * // => false + * console.log(el.nodeName); + * // => 'BODY' + * console.log(el.childNodes.length); + * // => 20 */ - function cond(pairs) { - var length = pairs == null ? 0 : pairs.length, - toIteratee = getIteratee(); - - pairs = !length ? [] : arrayMap(pairs, function(pair) { - if (typeof pair[1] != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - return [toIteratee(pair[0]), pair[1]]; - }); - - return baseRest(function(args) { - var index = -1; - while (++index < length) { - var pair = pairs[index]; - if (apply(pair[0], this, args)) { - return apply(pair[1], this, args); - } - } - }); + function cloneDeepWith(value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer); } /** - * Creates a function that invokes the predicate properties of `source` with - * the corresponding property values of a given object, returning `true` if - * all predicates return truthy, else `false`. + * Checks if `object` conforms to `source` by invoking the predicate + * properties of `source` with the corresponding property values of `object`. * - * **Note:** The created function is equivalent to `_.conformsTo` with - * `source` partially applied. + * **Note:** This method is equivalent to `_.conforms` when `source` is + * partially applied. * * @static * @memberOf _ - * @since 4.0.0 - * @category Util + * @since 4.14.0 + * @category Lang + * @param {Object} object The object to inspect. * @param {Object} source The object of property predicates to conform to. - * @returns {Function} Returns the new spec function. + * @returns {boolean} Returns `true` if `object` conforms, else `false`. * @example * - * var objects = [ - * { 'a': 2, 'b': 1 }, - * { 'a': 1, 'b': 2 } - * ]; + * var object = { 'a': 1, 'b': 2 }; * - * _.filter(objects, _.conforms({ 'b': function(n) { return n > 1; } })); - * // => [{ 'a': 1, 'b': 2 }] + * _.conformsTo(object, { 'b': function(n) { return n > 1; } }); + * // => true + * + * _.conformsTo(object, { 'b': function(n) { return n > 2; } }); + * // => false */ - function conforms(source) { - return baseConforms(baseClone(source, CLONE_DEEP_FLAG)); + function conformsTo(object, source) { + return source == null || baseConformsTo(object, source, keys(source)); } /** - * Creates a function that returns `value`. + * Performs a + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * comparison between two values to determine if they are equivalent. * * @static * @memberOf _ - * @since 2.4.0 - * @category Util - * @param {*} value The value to return from the new function. - * @returns {Function} Returns the new constant function. + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. * @example * - * var objects = _.times(2, _.constant({ 'a': 1 })); + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; * - * console.log(objects); - * // => [{ 'a': 1 }, { 'a': 1 }] + * _.eq(object, object); + * // => true * - * console.log(objects[0] === objects[1]); + * _.eq(object, other); + * // => false + * + * _.eq('a', 'a'); + * // => true + * + * _.eq('a', Object('a')); + * // => false + * + * _.eq(NaN, NaN); * // => true */ - function constant(value) { - return function() { - return value; - }; + function eq(value, other) { + return value === other || (value !== value && other !== other); } /** - * Checks `value` to determine whether a default value should be returned in - * its place. The `defaultValue` is returned if `value` is `NaN`, `null`, - * or `undefined`. + * Checks if `value` is greater than `other`. * * @static * @memberOf _ - * @since 4.14.0 - * @category Util - * @param {*} value The value to check. - * @param {*} defaultValue The default value. - * @returns {*} Returns the resolved value. + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, + * else `false`. + * @see _.lt * @example * - * _.defaultTo(1, 10); - * // => 1 + * _.gt(3, 1); + * // => true * - * _.defaultTo(undefined, 10); - * // => 10 + * _.gt(3, 3); + * // => false + * + * _.gt(1, 3); + * // => false */ - function defaultTo(value, defaultValue) { - return (value == null || value !== value) ? defaultValue : value; - } + var gt = createRelationalOperation(baseGt); /** - * Creates a function that returns the result of invoking the given functions - * with the `this` binding of the created function, where each successive - * invocation is supplied the return value of the previous. + * Checks if `value` is greater than or equal to `other`. * * @static * @memberOf _ - * @since 3.0.0 - * @category Util - * @param {...(Function|Function[])} [funcs] The functions to invoke. - * @returns {Function} Returns the new composite function. - * @see _.flowRight + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than or equal to + * `other`, else `false`. + * @see _.lte * @example * - * function square(n) { - * return n * n; - * } + * _.gte(3, 1); + * // => true * - * var addSquare = _.flow([_.add, square]); - * addSquare(1, 2); - * // => 9 + * _.gte(3, 3); + * // => true + * + * _.gte(1, 3); + * // => false */ - var flow = createFlow(); + var gte = createRelationalOperation(function(value, other) { + return value >= other; + }); /** - * This method is like `_.flow` except that it creates a function that - * invokes the given functions from right to left. + * Checks if `value` is likely an `arguments` object. * * @static - * @since 3.0.0 * @memberOf _ - * @category Util - * @param {...(Function|Function[])} [funcs] The functions to invoke. - * @returns {Function} Returns the new composite function. - * @see _.flow + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + * else `false`. * @example * - * function square(n) { - * return n * n; - * } + * _.isArguments(function() { return arguments; }()); + * // => true * - * var addSquare = _.flowRight([square, _.add]); - * addSquare(1, 2); - * // => 9 + * _.isArguments([1, 2, 3]); + * // => false */ - var flowRight = createFlow(true); + var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { + return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && + !propertyIsEnumerable.call(value, 'callee'); + }; /** - * This method returns the first argument it receives. + * Checks if `value` is classified as an `Array` object. * * @static + * @memberOf _ * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array, else `false`. + * @example + * + * _.isArray([1, 2, 3]); + * // => true + * + * _.isArray(document.body.children); + * // => false + * + * _.isArray('abc'); + * // => false + * + * _.isArray(_.noop); + * // => false + */ + var isArray = Array.isArray; + + /** + * Checks if `value` is classified as an `ArrayBuffer` object. + * + * @static * @memberOf _ - * @category Util - * @param {*} value Any value. - * @returns {*} Returns `value`. + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`. * @example * - * var object = { 'a': 1 }; + * _.isArrayBuffer(new ArrayBuffer(2)); + * // => true * - * console.log(_.identity(object) === object); + * _.isArrayBuffer(new Array(2)); + * // => false + */ + var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer; + + /** + * Checks if `value` is array-like. A value is considered array-like if it's + * not a function and has a `value.length` that's an integer greater than or + * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + * @example + * + * _.isArrayLike([1, 2, 3]); + * // => true + * + * _.isArrayLike(document.body.children); * // => true + * + * _.isArrayLike('abc'); + * // => true + * + * _.isArrayLike(_.noop); + * // => false */ - function identity(value) { - return value; + function isArrayLike(value) { + return value != null && isLength(value.length) && !isFunction(value); } /** - * Creates a function that invokes `func` with the arguments of the created - * function. If `func` is a property name, the created function returns the - * property value for a given element. If `func` is an array or object, the - * created function returns `true` for elements that contain the equivalent - * source properties, otherwise it returns `false`. + * This method is like `_.isArrayLike` except that it also checks if `value` + * is an object. * * @static - * @since 4.0.0 * @memberOf _ - * @category Util - * @param {*} [func=_.identity] The value to convert to a callback. - * @returns {Function} Returns the callback. + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array-like object, + * else `false`. * @example * - * var users = [ - * { 'user': 'barney', 'age': 36, 'active': true }, - * { 'user': 'fred', 'age': 40, 'active': false } - * ]; + * _.isArrayLikeObject([1, 2, 3]); + * // => true * - * // The `_.matches` iteratee shorthand. - * _.filter(users, _.iteratee({ 'user': 'barney', 'active': true })); - * // => [{ 'user': 'barney', 'age': 36, 'active': true }] + * _.isArrayLikeObject(document.body.children); + * // => true * - * // The `_.matchesProperty` iteratee shorthand. - * _.filter(users, _.iteratee(['user', 'fred'])); - * // => [{ 'user': 'fred', 'age': 40 }] + * _.isArrayLikeObject('abc'); + * // => false * - * // The `_.property` iteratee shorthand. - * _.map(users, _.iteratee('user')); - * // => ['barney', 'fred'] + * _.isArrayLikeObject(_.noop); + * // => false + */ + function isArrayLikeObject(value) { + return isObjectLike(value) && isArrayLike(value); + } + + /** + * Checks if `value` is classified as a boolean primitive or object. * - * // Create custom iteratee shorthands. - * _.iteratee = _.wrap(_.iteratee, function(iteratee, func) { - * return !_.isRegExp(func) ? iteratee(func) : function(string) { - * return func.test(string); - * }; - * }); + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a boolean, else `false`. + * @example + * + * _.isBoolean(false); + * // => true + * + * _.isBoolean(null); + * // => false + */ + function isBoolean(value) { + return value === true || value === false || + (isObjectLike(value) && baseGetTag(value) == boolTag); + } + + /** + * Checks if `value` is a buffer. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. + * @example + * + * _.isBuffer(new Buffer(2)); + * // => true * - * _.filter(['abc', 'def'], /ef/); - * // => ['def'] + * _.isBuffer(new Uint8Array(2)); + * // => false */ - function iteratee(func) { - return baseIteratee(typeof func == 'function' ? func : baseClone(func, CLONE_DEEP_FLAG)); - } + var isBuffer = nativeIsBuffer || stubFalse; /** - * Creates a function that performs a partial deep comparison between a given - * object and `source`, returning `true` if the given object has equivalent - * property values, else `false`. - * - * **Note:** The created function is equivalent to `_.isMatch` with `source` - * partially applied. - * - * Partial comparisons will match empty array and empty object `source` - * values against any array or object value, respectively. See `_.isEqual` - * for a list of supported value comparisons. - * - * **Note:** Multiple values can be checked by combining several matchers - * using `_.overSome` + * Checks if `value` is classified as a `Date` object. * * @static * @memberOf _ - * @since 3.0.0 - * @category Util - * @param {Object} source The object of property values to match. - * @returns {Function} Returns the new spec function. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a date object, else `false`. * @example * - * var objects = [ - * { 'a': 1, 'b': 2, 'c': 3 }, - * { 'a': 4, 'b': 5, 'c': 6 } - * ]; - * - * _.filter(objects, _.matches({ 'a': 4, 'c': 6 })); - * // => [{ 'a': 4, 'b': 5, 'c': 6 }] + * _.isDate(new Date); + * // => true * - * // Checking for several possible values - * _.filter(objects, _.overSome([_.matches({ 'a': 1 }), _.matches({ 'a': 4 })])); - * // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }] + * _.isDate('Mon April 23 2012'); + * // => false */ - function matches(source) { - return baseMatches(baseClone(source, CLONE_DEEP_FLAG)); - } + var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate; /** - * Creates a function that performs a partial deep comparison between the - * value at `path` of a given object to `srcValue`, returning `true` if the - * object value is equivalent, else `false`. - * - * **Note:** Partial comparisons will match empty array and empty object - * `srcValue` values against any array or object value, respectively. See - * `_.isEqual` for a list of supported value comparisons. - * - * **Note:** Multiple values can be checked by combining several matchers - * using `_.overSome` + * Checks if `value` is likely a DOM element. * * @static * @memberOf _ - * @since 3.2.0 - * @category Util - * @param {Array|string} path The path of the property to get. - * @param {*} srcValue The value to match. - * @returns {Function} Returns the new spec function. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`. * @example * - * var objects = [ - * { 'a': 1, 'b': 2, 'c': 3 }, - * { 'a': 4, 'b': 5, 'c': 6 } - * ]; - * - * _.find(objects, _.matchesProperty('a', 4)); - * // => { 'a': 4, 'b': 5, 'c': 6 } + * _.isElement(document.body); + * // => true * - * // Checking for several possible values - * _.filter(objects, _.overSome([_.matchesProperty('a', 1), _.matchesProperty('a', 4)])); - * // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }] + * _.isElement('<body>'); + * // => false */ - function matchesProperty(path, srcValue) { - return baseMatchesProperty(path, baseClone(srcValue, CLONE_DEEP_FLAG)); + function isElement(value) { + return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value); } /** - * Creates a function that invokes the method at `path` of a given object. - * Any additional arguments are provided to the invoked method. + * Checks if `value` is an empty object, collection, map, or set. + * + * Objects are considered empty if they have no own enumerable string keyed + * properties. + * + * Array-like values such as `arguments` objects, arrays, buffers, strings, or + * jQuery-like collections are considered empty if they have a `length` of `0`. + * Similarly, maps and sets are considered empty if they have a `size` of `0`. * * @static * @memberOf _ - * @since 3.7.0 - * @category Util - * @param {Array|string} path The path of the method to invoke. - * @param {...*} [args] The arguments to invoke the method with. - * @returns {Function} Returns the new invoker function. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is empty, else `false`. * @example * - * var objects = [ - * { 'a': { 'b': _.constant(2) } }, - * { 'a': { 'b': _.constant(1) } } - * ]; + * _.isEmpty(null); + * // => true * - * _.map(objects, _.method('a.b')); - * // => [2, 1] + * _.isEmpty(true); + * // => true * - * _.map(objects, _.method(['a', 'b'])); - * // => [2, 1] + * _.isEmpty(1); + * // => true + * + * _.isEmpty([1, 2, 3]); + * // => false + * + * _.isEmpty({ 'a': 1 }); + * // => false */ - var method = baseRest(function(path, args) { - return function(object) { - return baseInvoke(object, path, args); - }; - }); + function isEmpty(value) { + if (value == null) { + return true; + } + if (isArrayLike(value) && + (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' || + isBuffer(value) || isTypedArray(value) || isArguments(value))) { + return !value.length; + } + var tag = getTag(value); + if (tag == mapTag || tag == setTag) { + return !value.size; + } + if (isPrototype(value)) { + return !baseKeys(value).length; + } + for (var key in value) { + if (hasOwnProperty.call(value, key)) { + return false; + } + } + return true; + } /** - * The opposite of `_.method`; this method creates a function that invokes - * the method at a given path of `object`. Any additional arguments are - * provided to the invoked method. + * Performs a deep comparison between two values to determine if they are + * equivalent. + * + * **Note:** This method supports comparing arrays, array buffers, booleans, + * date objects, error objects, maps, numbers, `Object` objects, regexes, + * sets, strings, symbols, and typed arrays. `Object` objects are compared + * by their own, not inherited, enumerable properties. Functions and DOM + * nodes are compared by strict equality, i.e. `===`. * * @static * @memberOf _ - * @since 3.7.0 - * @category Util - * @param {Object} object The object to query. - * @param {...*} [args] The arguments to invoke the method with. - * @returns {Function} Returns the new invoker function. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. * @example * - * var array = _.times(3, _.constant), - * object = { 'a': array, 'b': array, 'c': array }; + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; * - * _.map(['a[2]', 'c[0]'], _.methodOf(object)); - * // => [2, 0] + * _.isEqual(object, other); + * // => true * - * _.map([['a', '2'], ['c', '0']], _.methodOf(object)); - * // => [2, 0] + * object === other; + * // => false */ - var methodOf = baseRest(function(object, args) { - return function(path) { - return baseInvoke(object, path, args); - }; - }); + function isEqual(value, other) { + return baseIsEqual(value, other); + } /** - * Adds all own enumerable string keyed function properties of a source - * object to the destination object. If `object` is a function, then methods - * are added to its prototype as well. - * - * **Note:** Use `_.runInContext` to create a pristine `lodash` function to - * avoid conflicts caused by modifying the original. + * This method is like `_.isEqual` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with up to + * six arguments: (objValue, othValue [, index|key, object, other, stack]). * * @static - * @since 0.1.0 * @memberOf _ - * @category Util - * @param {Function|Object} [object=lodash] The destination object. - * @param {Object} source The object of functions to add. - * @param {Object} [options={}] The options object. - * @param {boolean} [options.chain=true] Specify whether mixins are chainable. - * @returns {Function|Object} Returns `object`. + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. * @example * - * function vowels(string) { - * return _.filter(string, function(v) { - * return /[aeiou]/i.test(v); - * }); + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); * } * - * _.mixin({ 'vowels': vowels }); - * _.vowels('fred'); - * // => ['e'] + * function customizer(objValue, othValue) { + * if (isGreeting(objValue) && isGreeting(othValue)) { + * return true; + * } + * } * - * _('fred').vowels().value(); - * // => ['e'] + * var array = ['hello', 'goodbye']; + * var other = ['hi', 'goodbye']; * - * _.mixin({ 'vowels': vowels }, { 'chain': false }); - * _('fred').vowels(); - * // => ['e'] + * _.isEqualWith(array, other, customizer); + * // => true */ - function mixin(object, source, options) { - var props = keys(source), - methodNames = baseFunctions(source, props); - - if (options == null && - !(isObject(source) && (methodNames.length || !props.length))) { - options = source; - source = object; - object = this; - methodNames = baseFunctions(source, keys(source)); - } - var chain = !(isObject(options) && 'chain' in options) || !!options.chain, - isFunc = isFunction(object); - - arrayEach(methodNames, function(methodName) { - var func = source[methodName]; - object[methodName] = func; - if (isFunc) { - object.prototype[methodName] = function() { - var chainAll = this.__chain__; - if (chain || chainAll) { - var result = object(this.__wrapped__), - actions = result.__actions__ = copyArray(this.__actions__); - - actions.push({ 'func': func, 'args': arguments, 'thisArg': object }); - result.__chain__ = chainAll; - return result; - } - return func.apply(object, arrayPush([this.value()], arguments)); - }; - } - }); - - return object; + function isEqualWith(value, other, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + var result = customizer ? customizer(value, other) : undefined; + return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result; } /** - * Reverts the `_` variable to its previous value and returns a reference to - * the `lodash` function. + * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`, + * `SyntaxError`, `TypeError`, or `URIError` object. * * @static - * @since 0.1.0 * @memberOf _ - * @category Util - * @returns {Function} Returns the `lodash` function. + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an error object, else `false`. * @example * - * var lodash = _.noConflict(); + * _.isError(new Error); + * // => true + * + * _.isError(Error); + * // => false */ - function noConflict() { - if (root._ === this) { - root._ = oldDash; + function isError(value) { + if (!isObjectLike(value)) { + return false; } - return this; + var tag = baseGetTag(value); + return tag == errorTag || tag == domExcTag || + (typeof value.message == 'string' && typeof value.name == 'string' && !isPlainObject(value)); } /** - * This method returns `undefined`. + * Checks if `value` is a finite primitive number. + * + * **Note:** This method is based on + * [`Number.isFinite`](https://mdn.io/Number/isFinite). * * @static * @memberOf _ - * @since 2.3.0 - * @category Util + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a finite number, else `false`. * @example * - * _.times(2, _.noop); - * // => [undefined, undefined] + * _.isFinite(3); + * // => true + * + * _.isFinite(Number.MIN_VALUE); + * // => true + * + * _.isFinite(Infinity); + * // => false + * + * _.isFinite('3'); + * // => false */ - function noop() { - // No operation performed. + function isFinite(value) { + return typeof value == 'number' && nativeIsFinite(value); } /** - * Creates a function that gets the argument at index `n`. If `n` is negative, - * the nth argument from the end is returned. + * Checks if `value` is classified as a `Function` object. * * @static * @memberOf _ - * @since 4.0.0 - * @category Util - * @param {number} [n=0] The index of the argument to return. - * @returns {Function} Returns the new pass-thru function. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a function, else `false`. * @example * - * var func = _.nthArg(1); - * func('a', 'b', 'c', 'd'); - * // => 'b' + * _.isFunction(_); + * // => true * - * var func = _.nthArg(-2); - * func('a', 'b', 'c', 'd'); - * // => 'c' + * _.isFunction(/abc/); + * // => false */ - function nthArg(n) { - n = toInteger(n); - return baseRest(function(args) { - return baseNth(args, n); - }); + function isFunction(value) { + if (!isObject(value)) { + return false; + } + // The use of `Object#toString` avoids issues with the `typeof` operator + // in Safari 9 which returns 'object' for typed arrays and other constructors. + var tag = baseGetTag(value); + return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; } /** - * Creates a function that invokes `iteratees` with the arguments it receives - * and returns their results. + * Checks if `value` is an integer. + * + * **Note:** This method is based on + * [`Number.isInteger`](https://mdn.io/Number/isInteger). * * @static * @memberOf _ * @since 4.0.0 - * @category Util - * @param {...(Function|Function[])} [iteratees=[_.identity]] - * The iteratees to invoke. - * @returns {Function} Returns the new function. + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an integer, else `false`. * @example * - * var func = _.over([Math.max, Math.min]); + * _.isInteger(3); + * // => true * - * func(1, 2, 3, 4); - * // => [4, 1] + * _.isInteger(Number.MIN_VALUE); + * // => false + * + * _.isInteger(Infinity); + * // => false + * + * _.isInteger('3'); + * // => false */ - var over = createOver(arrayMap); + function isInteger(value) { + return typeof value == 'number' && value == toInteger(value); + } /** - * Creates a function that checks if **all** of the `predicates` return - * truthy when invoked with the arguments it receives. + * Checks if `value` is a valid array-like length. * - * Following shorthands are possible for providing predicates. - * Pass an `Object` and it will be used as an parameter for `_.matches` to create the predicate. - * Pass an `Array` of parameters for `_.matchesProperty` and the predicate will be created using them. + * **Note:** This method is loosely based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). * * @static * @memberOf _ * @since 4.0.0 - * @category Util - * @param {...(Function|Function[])} [predicates=[_.identity]] - * The predicates to check. - * @returns {Function} Returns the new function. + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. * @example * - * var func = _.overEvery([Boolean, isFinite]); - * - * func('1'); + * _.isLength(3); * // => true * - * func(null); + * _.isLength(Number.MIN_VALUE); * // => false * - * func(NaN); + * _.isLength(Infinity); + * // => false + * + * _.isLength('3'); * // => false */ - var overEvery = createOver(arrayEvery); + function isLength(value) { + return typeof value == 'number' && + value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; + } /** - * Creates a function that checks if **any** of the `predicates` return - * truthy when invoked with the arguments it receives. - * - * Following shorthands are possible for providing predicates. - * Pass an `Object` and it will be used as an parameter for `_.matches` to create the predicate. - * Pass an `Array` of parameters for `_.matchesProperty` and the predicate will be created using them. + * Checks if `value` is the + * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) + * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ - * @since 4.0.0 - * @category Util - * @param {...(Function|Function[])} [predicates=[_.identity]] - * The predicates to check. - * @returns {Function} Returns the new function. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an object, else `false`. * @example * - * var func = _.overSome([Boolean, isFinite]); + * _.isObject({}); + * // => true * - * func('1'); + * _.isObject([1, 2, 3]); * // => true * - * func(null); + * _.isObject(_.noop); * // => true * - * func(NaN); + * _.isObject(null); * // => false - * - * var matchesFunc = _.overSome([{ 'a': 1 }, { 'a': 2 }]) - * var matchesPropertyFunc = _.overSome([['a', 1], ['a', 2]]) */ - var overSome = createOver(arraySome); + function isObject(value) { + var type = typeof value; + return value != null && (type == 'object' || type == 'function'); + } /** - * Creates a function that returns the value at `path` of a given object. + * Checks if `value` is object-like. A value is object-like if it's not `null` + * and has a `typeof` result of "object". * * @static * @memberOf _ - * @since 2.4.0 - * @category Util - * @param {Array|string} path The path of the property to get. - * @returns {Function} Returns the new accessor function. + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. * @example * - * var objects = [ - * { 'a': { 'b': 2 } }, - * { 'a': { 'b': 1 } } - * ]; + * _.isObjectLike({}); + * // => true * - * _.map(objects, _.property('a.b')); - * // => [2, 1] + * _.isObjectLike([1, 2, 3]); + * // => true * - * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b'); - * // => [1, 2] + * _.isObjectLike(_.noop); + * // => false + * + * _.isObjectLike(null); + * // => false */ - function property(path) { - return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path); + function isObjectLike(value) { + return value != null && typeof value == 'object'; } /** - * The opposite of `_.property`; this method creates a function that returns - * the value at a given path of `object`. + * Checks if `value` is classified as a `Map` object. * * @static * @memberOf _ - * @since 3.0.0 - * @category Util - * @param {Object} object The object to query. - * @returns {Function} Returns the new accessor function. + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. * @example * - * var array = [0, 1, 2], - * object = { 'a': array, 'b': array, 'c': array }; - * - * _.map(['a[2]', 'c[0]'], _.propertyOf(object)); - * // => [2, 0] + * _.isMap(new Map); + * // => true * - * _.map([['a', '2'], ['c', '0']], _.propertyOf(object)); - * // => [2, 0] + * _.isMap(new WeakMap); + * // => false */ - function propertyOf(object) { - return function(path) { - return object == null ? undefined : baseGet(object, path); - }; - } + var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; /** - * Creates an array of numbers (positive and/or negative) progressing from - * `start` up to, but not including, `end`. A step of `-1` is used if a negative - * `start` is specified without an `end` or `step`. If `end` is not specified, - * it's set to `start` with `start` then set to `0`. + * Performs a partial deep comparison between `object` and `source` to + * determine if `object` contains equivalent property values. * - * **Note:** JavaScript follows the IEEE-754 standard for resolving - * floating-point values which can produce unexpected results. + * **Note:** This method is equivalent to `_.matches` when `source` is + * partially applied. + * + * Partial comparisons will match empty array and empty object `source` + * values against any array or object value, respectively. See `_.isEqual` + * for a list of supported value comparisons. * * @static - * @since 0.1.0 * @memberOf _ - * @category Util - * @param {number} [start=0] The start of the range. - * @param {number} end The end of the range. - * @param {number} [step=1] The value to increment or decrement by. - * @returns {Array} Returns the range of numbers. - * @see _.inRange, _.rangeRight + * @since 3.0.0 + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. * @example * - * _.range(4); - * // => [0, 1, 2, 3] - * - * _.range(-4); - * // => [0, -1, -2, -3] - * - * _.range(1, 5); - * // => [1, 2, 3, 4] - * - * _.range(0, 20, 5); - * // => [0, 5, 10, 15] - * - * _.range(0, -4, -1); - * // => [0, -1, -2, -3] + * var object = { 'a': 1, 'b': 2 }; * - * _.range(1, 4, 0); - * // => [1, 1, 1] + * _.isMatch(object, { 'b': 2 }); + * // => true * - * _.range(0); - * // => [] + * _.isMatch(object, { 'b': 1 }); + * // => false */ - var range = createRange(); + function isMatch(object, source) { + return object === source || baseIsMatch(object, source, getMatchData(source)); + } /** - * This method is like `_.range` except that it populates values in - * descending order. + * This method is like `_.isMatch` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with five + * arguments: (objValue, srcValue, index|key, object, source). * * @static * @memberOf _ * @since 4.0.0 - * @category Util - * @param {number} [start=0] The start of the range. - * @param {number} end The end of the range. - * @param {number} [step=1] The value to increment or decrement by. - * @returns {Array} Returns the range of numbers. - * @see _.inRange, _.range + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. * @example * - * _.rangeRight(4); - * // => [3, 2, 1, 0] - * - * _.rangeRight(-4); - * // => [-3, -2, -1, 0] - * - * _.rangeRight(1, 5); - * // => [4, 3, 2, 1] - * - * _.rangeRight(0, 20, 5); - * // => [15, 10, 5, 0] + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } * - * _.rangeRight(0, -4, -1); - * // => [-3, -2, -1, 0] + * function customizer(objValue, srcValue) { + * if (isGreeting(objValue) && isGreeting(srcValue)) { + * return true; + * } + * } * - * _.rangeRight(1, 4, 0); - * // => [1, 1, 1] + * var object = { 'greeting': 'hello' }; + * var source = { 'greeting': 'hi' }; * - * _.rangeRight(0); - * // => [] + * _.isMatchWith(object, source, customizer); + * // => true */ - var rangeRight = createRange(true); + function isMatchWith(object, source, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return baseIsMatch(object, source, getMatchData(source), customizer); + } /** - * This method returns a new empty array. + * Checks if `value` is `NaN`. + * + * **Note:** This method is based on + * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as + * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for + * `undefined` and other non-number values. * * @static * @memberOf _ - * @since 4.13.0 - * @category Util - * @returns {Array} Returns the new empty array. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. * @example * - * var arrays = _.times(2, _.stubArray); + * _.isNaN(NaN); + * // => true * - * console.log(arrays); - * // => [[], []] + * _.isNaN(new Number(NaN)); + * // => true * - * console.log(arrays[0] === arrays[1]); + * isNaN(undefined); + * // => true + * + * _.isNaN(undefined); * // => false */ - function stubArray() { - return []; + function isNaN(value) { + // An `NaN` primitive is the only value that is not equal to itself. + // Perform the `toStringTag` check first to avoid errors with some + // ActiveX objects in IE. + return isNumber(value) && value != +value; } /** - * This method returns `false`. + * Checks if `value` is a pristine native function. + * + * **Note:** This method can't reliably detect native functions in the presence + * of the core-js package because core-js circumvents this kind of detection. + * Despite multiple requests, the core-js maintainer has made it clear: any + * attempt to fix the detection will be obstructed. As a result, we're left + * with little choice but to throw an error. Unfortunately, this also affects + * packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill), + * which rely on core-js. * * @static * @memberOf _ - * @since 4.13.0 - * @category Util - * @returns {boolean} Returns `false`. + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. * @example * - * _.times(2, _.stubFalse); - * // => [false, false] + * _.isNative(Array.prototype.push); + * // => true + * + * _.isNative(_); + * // => false */ - function stubFalse() { - return false; + function isNative(value) { + if (isMaskable(value)) { + throw new Error(CORE_ERROR_TEXT); + } + return baseIsNative(value); } /** - * This method returns a new empty object. + * Checks if `value` is `null`. * * @static * @memberOf _ - * @since 4.13.0 - * @category Util - * @returns {Object} Returns the new empty object. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `null`, else `false`. * @example * - * var objects = _.times(2, _.stubObject); - * - * console.log(objects); - * // => [{}, {}] + * _.isNull(null); + * // => true * - * console.log(objects[0] === objects[1]); + * _.isNull(void 0); * // => false */ - function stubObject() { - return {}; + function isNull(value) { + return value === null; } /** - * This method returns an empty string. + * Checks if `value` is `null` or `undefined`. * * @static * @memberOf _ - * @since 4.13.0 - * @category Util - * @returns {string} Returns the empty string. + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is nullish, else `false`. * @example * - * _.times(2, _.stubString); - * // => ['', ''] + * _.isNil(null); + * // => true + * + * _.isNil(void 0); + * // => true + * + * _.isNil(NaN); + * // => false */ - function stubString() { - return ''; + function isNil(value) { + return value == null; } /** - * This method returns `true`. + * Checks if `value` is classified as a `Number` primitive or object. + * + * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are + * classified as numbers, use the `_.isFinite` method. * * @static * @memberOf _ - * @since 4.13.0 - * @category Util - * @returns {boolean} Returns `true`. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a number, else `false`. * @example * - * _.times(2, _.stubTrue); - * // => [true, true] + * _.isNumber(3); + * // => true + * + * _.isNumber(Number.MIN_VALUE); + * // => true + * + * _.isNumber(Infinity); + * // => true + * + * _.isNumber('3'); + * // => false */ - function stubTrue() { - return true; + function isNumber(value) { + return typeof value == 'number' || + (isObjectLike(value) && baseGetTag(value) == numberTag); } /** - * Invokes the iteratee `n` times, returning an array of the results of - * each invocation. The iteratee is invoked with one argument; (index). + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. * * @static - * @since 0.1.0 * @memberOf _ - * @category Util - * @param {number} n The number of times to invoke `iteratee`. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Array} Returns the array of results. + * @since 0.8.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. * @example * - * _.times(3, String); - * // => ['0', '1', '2'] + * function Foo() { + * this.a = 1; + * } * - * _.times(4, _.constant(0)); - * // => [0, 0, 0, 0] + * _.isPlainObject(new Foo); + * // => false + * + * _.isPlainObject([1, 2, 3]); + * // => false + * + * _.isPlainObject({ 'x': 0, 'y': 0 }); + * // => true + * + * _.isPlainObject(Object.create(null)); + * // => true */ - function times(n, iteratee) { - n = toInteger(n); - if (n < 1 || n > MAX_SAFE_INTEGER) { - return []; + function isPlainObject(value) { + if (!isObjectLike(value) || baseGetTag(value) != objectTag) { + return false; } - var index = MAX_ARRAY_LENGTH, - length = nativeMin(n, MAX_ARRAY_LENGTH); - - iteratee = getIteratee(iteratee); - n -= MAX_ARRAY_LENGTH; - - var result = baseTimes(length, iteratee); - while (++index < n) { - iteratee(index); + var proto = getPrototype(value); + if (proto === null) { + return true; } - return result; + var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; + return typeof Ctor == 'function' && Ctor instanceof Ctor && + funcToString.call(Ctor) == objectCtorString; } /** - * Converts `value` to a property path array. + * Checks if `value` is classified as a `RegExp` object. * * @static * @memberOf _ - * @since 4.0.0 - * @category Util - * @param {*} value The value to convert. - * @returns {Array} Returns the new property path array. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a regexp, else `false`. * @example * - * _.toPath('a.b.c'); - * // => ['a', 'b', 'c'] + * _.isRegExp(/abc/); + * // => true * - * _.toPath('a[0].b.c'); - * // => ['a', '0', 'b', 'c'] + * _.isRegExp('/abc/'); + * // => false */ - function toPath(value) { - if (isArray(value)) { - return arrayMap(value, toKey); - } - return isSymbol(value) ? [value] : copyArray(stringToPath(toString(value))); - } + var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp; /** - * Generates a unique ID. If `prefix` is given, the ID is appended to it. + * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754 + * double precision number which isn't the result of a rounded unsafe integer. + * + * **Note:** This method is based on + * [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger). * * @static - * @since 0.1.0 * @memberOf _ - * @category Util - * @param {string} [prefix=''] The value to prefix the ID with. - * @returns {string} Returns the unique ID. + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`. * @example * - * _.uniqueId('contact_'); - * // => 'contact_104' + * _.isSafeInteger(3); + * // => true * - * _.uniqueId(); - * // => '105' + * _.isSafeInteger(Number.MIN_VALUE); + * // => false + * + * _.isSafeInteger(Infinity); + * // => false + * + * _.isSafeInteger('3'); + * // => false */ - function uniqueId(prefix) { - var id = ++idCounter; - return toString(prefix) + id; + function isSafeInteger(value) { + return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER; } - /*------------------------------------------------------------------------*/ - /** - * Adds two numbers. + * Checks if `value` is classified as a `Set` object. * * @static * @memberOf _ - * @since 3.4.0 - * @category Math - * @param {number} augend The first number in an addition. - * @param {number} addend The second number in an addition. - * @returns {number} Returns the total. + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. * @example * - * _.add(6, 4); - * // => 10 + * _.isSet(new Set); + * // => true + * + * _.isSet(new WeakSet); + * // => false */ - var add = createMathOperation(function(augend, addend) { - return augend + addend; - }, 0); + var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet; /** - * Computes `number` rounded up to `precision`. + * Checks if `value` is classified as a `String` primitive or object. * * @static + * @since 0.1.0 * @memberOf _ - * @since 3.10.0 - * @category Math - * @param {number} number The number to round up. - * @param {number} [precision=0] The precision to round up to. - * @returns {number} Returns the rounded up number. + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a string, else `false`. * @example * - * _.ceil(4.006); - * // => 5 - * - * _.ceil(6.004, 2); - * // => 6.01 + * _.isString('abc'); + * // => true * - * _.ceil(6040, -2); - * // => 6100 + * _.isString(1); + * // => false */ - var ceil = createRound('ceil'); + function isString(value) { + return typeof value == 'string' || + (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag); + } /** - * Divide two numbers. + * Checks if `value` is classified as a `Symbol` primitive or object. * * @static * @memberOf _ - * @since 4.7.0 - * @category Math - * @param {number} dividend The first number in a division. - * @param {number} divisor The second number in a division. - * @returns {number} Returns the quotient. + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. * @example * - * _.divide(6, 4); - * // => 1.5 + * _.isSymbol(Symbol.iterator); + * // => true + * + * _.isSymbol('abc'); + * // => false */ - var divide = createMathOperation(function(dividend, divisor) { - return dividend / divisor; - }, 1); + function isSymbol(value) { + return typeof value == 'symbol' || + (isObjectLike(value) && baseGetTag(value) == symbolTag); + } /** - * Computes `number` rounded down to `precision`. + * Checks if `value` is classified as a typed array. * * @static * @memberOf _ - * @since 3.10.0 - * @category Math - * @param {number} number The number to round down. - * @param {number} [precision=0] The precision to round down to. - * @returns {number} Returns the rounded down number. + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. * @example * - * _.floor(4.006); - * // => 4 - * - * _.floor(0.046, 2); - * // => 0.04 + * _.isTypedArray(new Uint8Array); + * // => true * - * _.floor(4060, -2); - * // => 4000 + * _.isTypedArray([]); + * // => false */ - var floor = createRound('floor'); + var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; /** - * Computes the maximum value of `array`. If `array` is empty or falsey, - * `undefined` is returned. + * Checks if `value` is `undefined`. * * @static * @since 0.1.0 * @memberOf _ - * @category Math - * @param {Array} array The array to iterate over. - * @returns {*} Returns the maximum value. + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. * @example * - * _.max([4, 2, 8, 6]); - * // => 8 + * _.isUndefined(void 0); + * // => true * - * _.max([]); - * // => undefined + * _.isUndefined(null); + * // => false */ - function max(array) { - return (array && array.length) - ? baseExtremum(array, identity, baseGt) - : undefined; + function isUndefined(value) { + return value === undefined; } /** - * This method is like `_.max` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the criterion by which - * the value is ranked. The iteratee is invoked with one argument: (value). + * Checks if `value` is classified as a `WeakMap` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak map, else `false`. + * @example + * + * _.isWeakMap(new WeakMap); + * // => true + * + * _.isWeakMap(new Map); + * // => false + */ + function isWeakMap(value) { + return isObjectLike(value) && getTag(value) == weakMapTag; + } + + /** + * Checks if `value` is classified as a `WeakSet` object. * * @static * @memberOf _ - * @since 4.0.0 - * @category Math - * @param {Array} array The array to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {*} Returns the maximum value. + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a weak set, else `false`. * @example * - * var objects = [{ 'n': 1 }, { 'n': 2 }]; - * - * _.maxBy(objects, function(o) { return o.n; }); - * // => { 'n': 2 } + * _.isWeakSet(new WeakSet); + * // => true * - * // The `_.property` iteratee shorthand. - * _.maxBy(objects, 'n'); - * // => { 'n': 2 } + * _.isWeakSet(new Set); + * // => false */ - function maxBy(array, iteratee) { - return (array && array.length) - ? baseExtremum(array, getIteratee(iteratee, 2), baseGt) - : undefined; + function isWeakSet(value) { + return isObjectLike(value) && baseGetTag(value) == weakSetTag; } /** - * Computes the mean of the values in `array`. + * Checks if `value` is less than `other`. * * @static * @memberOf _ - * @since 4.0.0 - * @category Math - * @param {Array} array The array to iterate over. - * @returns {number} Returns the mean. + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than `other`, + * else `false`. + * @see _.gt * @example * - * _.mean([4, 2, 8, 6]); - * // => 5 + * _.lt(1, 3); + * // => true + * + * _.lt(3, 3); + * // => false + * + * _.lt(3, 1); + * // => false */ - function mean(array) { - return baseMean(array, identity); - } + var lt = createRelationalOperation(baseLt); /** - * This method is like `_.mean` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the value to be averaged. - * The iteratee is invoked with one argument: (value). + * Checks if `value` is less than or equal to `other`. * * @static * @memberOf _ - * @since 4.7.0 - * @category Math - * @param {Array} array The array to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {number} Returns the mean. + * @since 3.9.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is less than or equal to + * `other`, else `false`. + * @see _.gte * @example * - * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]; + * _.lte(1, 3); + * // => true * - * _.meanBy(objects, function(o) { return o.n; }); - * // => 5 + * _.lte(3, 3); + * // => true * - * // The `_.property` iteratee shorthand. - * _.meanBy(objects, 'n'); - * // => 5 + * _.lte(3, 1); + * // => false */ - function meanBy(array, iteratee) { - return baseMean(array, getIteratee(iteratee, 2)); - } + var lte = createRelationalOperation(function(value, other) { + return value <= other; + }); /** - * Computes the minimum value of `array`. If `array` is empty or falsey, - * `undefined` is returned. + * Converts `value` to an array. * * @static * @since 0.1.0 * @memberOf _ - * @category Math - * @param {Array} array The array to iterate over. - * @returns {*} Returns the minimum value. + * @category Lang + * @param {*} value The value to convert. + * @returns {Array} Returns the converted array. * @example * - * _.min([4, 2, 8, 6]); - * // => 2 + * _.toArray({ 'a': 1, 'b': 2 }); + * // => [1, 2] * - * _.min([]); - * // => undefined + * _.toArray('abc'); + * // => ['a', 'b', 'c'] + * + * _.toArray(1); + * // => [] + * + * _.toArray(null); + * // => [] */ - function min(array) { - return (array && array.length) - ? baseExtremum(array, identity, baseLt) - : undefined; + function toArray(value) { + if (!value) { + return []; + } + if (isArrayLike(value)) { + return isString(value) ? stringToArray(value) : copyArray(value); + } + if (symIterator && value[symIterator]) { + return iteratorToArray(value[symIterator]()); + } + var tag = getTag(value), + func = tag == mapTag ? mapToArray : (tag == setTag ? setToArray : values); + + return func(value); } /** - * This method is like `_.min` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the criterion by which - * the value is ranked. The iteratee is invoked with one argument: (value). + * Converts `value` to a finite number. * * @static * @memberOf _ - * @since 4.0.0 - * @category Math - * @param {Array} array The array to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {*} Returns the minimum value. + * @since 4.12.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted number. * @example * - * var objects = [{ 'n': 1 }, { 'n': 2 }]; + * _.toFinite(3.2); + * // => 3.2 * - * _.minBy(objects, function(o) { return o.n; }); - * // => { 'n': 1 } + * _.toFinite(Number.MIN_VALUE); + * // => 5e-324 * - * // The `_.property` iteratee shorthand. - * _.minBy(objects, 'n'); - * // => { 'n': 1 } + * _.toFinite(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toFinite('3.2'); + * // => 3.2 */ - function minBy(array, iteratee) { - return (array && array.length) - ? baseExtremum(array, getIteratee(iteratee, 2), baseLt) - : undefined; + function toFinite(value) { + if (!value) { + return value === 0 ? value : 0; + } + value = toNumber(value); + if (value === INFINITY || value === -INFINITY) { + var sign = (value < 0 ? -1 : 1); + return sign * MAX_INTEGER; + } + return value === value ? value : 0; } /** - * Multiply two numbers. + * Converts `value` to an integer. + * + * **Note:** This method is loosely based on + * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger). * * @static * @memberOf _ - * @since 4.7.0 - * @category Math - * @param {number} multiplier The first number in a multiplication. - * @param {number} multiplicand The second number in a multiplication. - * @returns {number} Returns the product. + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. * @example * - * _.multiply(6, 4); - * // => 24 + * _.toInteger(3.2); + * // => 3 + * + * _.toInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toInteger(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toInteger('3.2'); + * // => 3 */ - var multiply = createMathOperation(function(multiplier, multiplicand) { - return multiplier * multiplicand; - }, 1); + function toInteger(value) { + var result = toFinite(value), + remainder = result % 1; + + return result === result ? (remainder ? result - remainder : result) : 0; + } /** - * Computes `number` rounded to `precision`. + * Converts `value` to an integer suitable for use as the length of an + * array-like object. + * + * **Note:** This method is based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). * * @static * @memberOf _ - * @since 3.10.0 - * @category Math - * @param {number} number The number to round. - * @param {number} [precision=0] The precision to round to. - * @returns {number} Returns the rounded number. + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. * @example * - * _.round(4.006); - * // => 4 + * _.toLength(3.2); + * // => 3 * - * _.round(4.006, 2); - * // => 4.01 + * _.toLength(Number.MIN_VALUE); + * // => 0 * - * _.round(4060, -2); - * // => 4100 + * _.toLength(Infinity); + * // => 4294967295 + * + * _.toLength('3.2'); + * // => 3 */ - var round = createRound('round'); + function toLength(value) { + return value ? baseClamp(toInteger(value), 0, MAX_ARRAY_LENGTH) : 0; + } /** - * Subtract two numbers. + * Converts `value` to a number. * * @static * @memberOf _ * @since 4.0.0 - * @category Math - * @param {number} minuend The first number in a subtraction. - * @param {number} subtrahend The second number in a subtraction. - * @returns {number} Returns the difference. + * @category Lang + * @param {*} value The value to process. + * @returns {number} Returns the number. * @example * - * _.subtract(6, 4); - * // => 2 + * _.toNumber(3.2); + * // => 3.2 + * + * _.toNumber(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toNumber(Infinity); + * // => Infinity + * + * _.toNumber('3.2'); + * // => 3.2 */ - var subtract = createMathOperation(function(minuend, subtrahend) { - return minuend - subtrahend; - }, 0); + function toNumber(value) { + if (typeof value == 'number') { + return value; + } + if (isSymbol(value)) { + return NAN; + } + if (isObject(value)) { + var other = typeof value.valueOf == 'function' ? value.valueOf() : value; + value = isObject(other) ? (other + '') : other; + } + if (typeof value != 'string') { + return value === 0 ? value : +value; + } + value = baseTrim(value); + var isBinary = reIsBinary.test(value); + return (isBinary || reIsOctal.test(value)) + ? freeParseInt(value.slice(2), isBinary ? 2 : 8) + : (reIsBadHex.test(value) ? NAN : +value); + } /** - * Computes the sum of the values in `array`. + * Converts `value` to a plain object flattening inherited enumerable string + * keyed properties of `value` to own properties of the plain object. * * @static * @memberOf _ - * @since 3.4.0 - * @category Math - * @param {Array} array The array to iterate over. - * @returns {number} Returns the sum. + * @since 3.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {Object} Returns the converted plain object. * @example * - * _.sum([4, 2, 8, 6]); - * // => 20 + * function Foo() { + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.assign({ 'a': 1 }, new Foo); + * // => { 'a': 1, 'b': 2 } + * + * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); + * // => { 'a': 1, 'b': 2, 'c': 3 } */ - function sum(array) { - return (array && array.length) - ? baseSum(array, identity) - : 0; + function toPlainObject(value) { + return copyObject(value, keysIn(value)); } /** - * This method is like `_.sum` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the value to be summed. - * The iteratee is invoked with one argument: (value). + * Converts `value` to a safe integer. A safe integer can be compared and + * represented correctly. * * @static * @memberOf _ * @since 4.0.0 - * @category Math - * @param {Array} array The array to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {number} Returns the sum. + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. * @example * - * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]; + * _.toSafeInteger(3.2); + * // => 3 * - * _.sumBy(objects, function(o) { return o.n; }); - * // => 20 + * _.toSafeInteger(Number.MIN_VALUE); + * // => 0 * - * // The `_.property` iteratee shorthand. - * _.sumBy(objects, 'n'); - * // => 20 + * _.toSafeInteger(Infinity); + * // => 9007199254740991 + * + * _.toSafeInteger('3.2'); + * // => 3 */ - function sumBy(array, iteratee) { - return (array && array.length) - ? baseSum(array, getIteratee(iteratee, 2)) - : 0; + function toSafeInteger(value) { + return value + ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER) + : (value === 0 ? value : 0); } - /*------------------------------------------------------------------------*/ - - // Add methods that return wrapped values in chain sequences. - lodash.after = after; - lodash.ary = ary; - lodash.assign = assign; - lodash.assignIn = assignIn; - lodash.assignInWith = assignInWith; - lodash.assignWith = assignWith; - lodash.at = at; - lodash.before = before; - lodash.bind = bind; - lodash.bindAll = bindAll; - lodash.bindKey = bindKey; - lodash.castArray = castArray; - lodash.chain = chain; - lodash.chunk = chunk; - lodash.compact = compact; - lodash.concat = concat; - lodash.cond = cond; - lodash.conforms = conforms; - lodash.constant = constant; - lodash.countBy = countBy; - lodash.create = create; - lodash.curry = curry; - lodash.curryRight = curryRight; - lodash.debounce = debounce; - lodash.defaults = defaults; - lodash.defaultsDeep = defaultsDeep; - lodash.defer = defer; - lodash.delay = delay; - lodash.difference = difference; - lodash.differenceBy = differenceBy; - lodash.differenceWith = differenceWith; - lodash.drop = drop; - lodash.dropRight = dropRight; - lodash.dropRightWhile = dropRightWhile; - lodash.dropWhile = dropWhile; - lodash.fill = fill; - lodash.filter = filter; - lodash.flatMap = flatMap; - lodash.flatMapDeep = flatMapDeep; - lodash.flatMapDepth = flatMapDepth; - lodash.flatten = flatten; - lodash.flattenDeep = flattenDeep; - lodash.flattenDepth = flattenDepth; - lodash.flip = flip; - lodash.flow = flow; - lodash.flowRight = flowRight; - lodash.fromPairs = fromPairs; - lodash.functions = functions; - lodash.functionsIn = functionsIn; - lodash.groupBy = groupBy; - lodash.initial = initial; - lodash.intersection = intersection; - lodash.intersectionBy = intersectionBy; - lodash.intersectionWith = intersectionWith; - lodash.invert = invert; - lodash.invertBy = invertBy; - lodash.invokeMap = invokeMap; - lodash.iteratee = iteratee; - lodash.keyBy = keyBy; - lodash.keys = keys; - lodash.keysIn = keysIn; - lodash.map = map; - lodash.mapKeys = mapKeys; - lodash.mapValues = mapValues; - lodash.matches = matches; - lodash.matchesProperty = matchesProperty; - lodash.memoize = memoize; - lodash.merge = merge; - lodash.mergeWith = mergeWith; - lodash.method = method; - lodash.methodOf = methodOf; - lodash.mixin = mixin; - lodash.negate = negate; - lodash.nthArg = nthArg; - lodash.omit = omit; - lodash.omitBy = omitBy; - lodash.once = once; - lodash.orderBy = orderBy; - lodash.over = over; - lodash.overArgs = overArgs; - lodash.overEvery = overEvery; - lodash.overSome = overSome; - lodash.partial = partial; - lodash.partialRight = partialRight; - lodash.partition = partition; - lodash.pick = pick; - lodash.pickBy = pickBy; - lodash.property = property; - lodash.propertyOf = propertyOf; - lodash.pull = pull; - lodash.pullAll = pullAll; - lodash.pullAllBy = pullAllBy; - lodash.pullAllWith = pullAllWith; - lodash.pullAt = pullAt; - lodash.range = range; - lodash.rangeRight = rangeRight; - lodash.rearg = rearg; - lodash.reject = reject; - lodash.remove = remove; - lodash.rest = rest; - lodash.reverse = reverse; - lodash.sampleSize = sampleSize; - lodash.set = set; - lodash.setWith = setWith; - lodash.shuffle = shuffle; - lodash.slice = slice; - lodash.sortBy = sortBy; - lodash.sortedUniq = sortedUniq; - lodash.sortedUniqBy = sortedUniqBy; - lodash.split = split; - lodash.spread = spread; - lodash.tail = tail; - lodash.take = take; - lodash.takeRight = takeRight; - lodash.takeRightWhile = takeRightWhile; - lodash.takeWhile = takeWhile; - lodash.tap = tap; - lodash.throttle = throttle; - lodash.thru = thru; - lodash.toArray = toArray; - lodash.toPairs = toPairs; - lodash.toPairsIn = toPairsIn; - lodash.toPath = toPath; - lodash.toPlainObject = toPlainObject; - lodash.transform = transform; - lodash.unary = unary; - lodash.union = union; - lodash.unionBy = unionBy; - lodash.unionWith = unionWith; - lodash.uniq = uniq; - lodash.uniqBy = uniqBy; - lodash.uniqWith = uniqWith; - lodash.unset = unset; - lodash.unzip = unzip; - lodash.unzipWith = unzipWith; - lodash.update = update; - lodash.updateWith = updateWith; - lodash.values = values; - lodash.valuesIn = valuesIn; - lodash.without = without; - lodash.words = words; - lodash.wrap = wrap; - lodash.xor = xor; - lodash.xorBy = xorBy; - lodash.xorWith = xorWith; - lodash.zip = zip; - lodash.zipObject = zipObject; - lodash.zipObjectDeep = zipObjectDeep; - lodash.zipWith = zipWith; - - // Add aliases. - lodash.entries = toPairs; - lodash.entriesIn = toPairsIn; - lodash.extend = assignIn; - lodash.extendWith = assignInWith; - - // Add methods to `lodash.prototype`. - mixin(lodash, lodash); - - /*------------------------------------------------------------------------*/ - - // Add methods that return unwrapped values in chain sequences. - lodash.add = add; - lodash.attempt = attempt; - lodash.camelCase = camelCase; - lodash.capitalize = capitalize; - lodash.ceil = ceil; - lodash.clamp = clamp; - lodash.clone = clone; - lodash.cloneDeep = cloneDeep; - lodash.cloneDeepWith = cloneDeepWith; - lodash.cloneWith = cloneWith; - lodash.conformsTo = conformsTo; - lodash.deburr = deburr; - lodash.defaultTo = defaultTo; - lodash.divide = divide; - lodash.endsWith = endsWith; - lodash.eq = eq; - lodash.escape = escape; - lodash.escapeRegExp = escapeRegExp; - lodash.every = every; - lodash.find = find; - lodash.findIndex = findIndex; - lodash.findKey = findKey; - lodash.findLast = findLast; - lodash.findLastIndex = findLastIndex; - lodash.findLastKey = findLastKey; - lodash.floor = floor; - lodash.forEach = forEach; - lodash.forEachRight = forEachRight; - lodash.forIn = forIn; - lodash.forInRight = forInRight; - lodash.forOwn = forOwn; - lodash.forOwnRight = forOwnRight; - lodash.get = get; - lodash.gt = gt; - lodash.gte = gte; - lodash.has = has; - lodash.hasIn = hasIn; - lodash.head = head; - lodash.identity = identity; - lodash.includes = includes; - lodash.indexOf = indexOf; - lodash.inRange = inRange; - lodash.invoke = invoke; - lodash.isArguments = isArguments; - lodash.isArray = isArray; - lodash.isArrayBuffer = isArrayBuffer; - lodash.isArrayLike = isArrayLike; - lodash.isArrayLikeObject = isArrayLikeObject; - lodash.isBoolean = isBoolean; - lodash.isBuffer = isBuffer; - lodash.isDate = isDate; - lodash.isElement = isElement; - lodash.isEmpty = isEmpty; - lodash.isEqual = isEqual; - lodash.isEqualWith = isEqualWith; - lodash.isError = isError; - lodash.isFinite = isFinite; - lodash.isFunction = isFunction; - lodash.isInteger = isInteger; - lodash.isLength = isLength; - lodash.isMap = isMap; - lodash.isMatch = isMatch; - lodash.isMatchWith = isMatchWith; - lodash.isNaN = isNaN; - lodash.isNative = isNative; - lodash.isNil = isNil; - lodash.isNull = isNull; - lodash.isNumber = isNumber; - lodash.isObject = isObject; - lodash.isObjectLike = isObjectLike; - lodash.isPlainObject = isPlainObject; - lodash.isRegExp = isRegExp; - lodash.isSafeInteger = isSafeInteger; - lodash.isSet = isSet; - lodash.isString = isString; - lodash.isSymbol = isSymbol; - lodash.isTypedArray = isTypedArray; - lodash.isUndefined = isUndefined; - lodash.isWeakMap = isWeakMap; - lodash.isWeakSet = isWeakSet; - lodash.join = join; - lodash.kebabCase = kebabCase; - lodash.last = last; - lodash.lastIndexOf = lastIndexOf; - lodash.lowerCase = lowerCase; - lodash.lowerFirst = lowerFirst; - lodash.lt = lt; - lodash.lte = lte; - lodash.max = max; - lodash.maxBy = maxBy; - lodash.mean = mean; - lodash.meanBy = meanBy; - lodash.min = min; - lodash.minBy = minBy; - lodash.stubArray = stubArray; - lodash.stubFalse = stubFalse; - lodash.stubObject = stubObject; - lodash.stubString = stubString; - lodash.stubTrue = stubTrue; - lodash.multiply = multiply; - lodash.nth = nth; - lodash.noConflict = noConflict; - lodash.noop = noop; - lodash.now = now; - lodash.pad = pad; - lodash.padEnd = padEnd; - lodash.padStart = padStart; - lodash.parseInt = parseInt; - lodash.random = random; - lodash.reduce = reduce; - lodash.reduceRight = reduceRight; - lodash.repeat = repeat; - lodash.replace = replace; - lodash.result = result; - lodash.round = round; - lodash.runInContext = runInContext; - lodash.sample = sample; - lodash.size = size; - lodash.snakeCase = snakeCase; - lodash.some = some; - lodash.sortedIndex = sortedIndex; - lodash.sortedIndexBy = sortedIndexBy; - lodash.sortedIndexOf = sortedIndexOf; - lodash.sortedLastIndex = sortedLastIndex; - lodash.sortedLastIndexBy = sortedLastIndexBy; - lodash.sortedLastIndexOf = sortedLastIndexOf; - lodash.startCase = startCase; - lodash.startsWith = startsWith; - lodash.subtract = subtract; - lodash.sum = sum; - lodash.sumBy = sumBy; - lodash.template = template; - lodash.times = times; - lodash.toFinite = toFinite; - lodash.toInteger = toInteger; - lodash.toLength = toLength; - lodash.toLower = toLower; - lodash.toNumber = toNumber; - lodash.toSafeInteger = toSafeInteger; - lodash.toString = toString; - lodash.toUpper = toUpper; - lodash.trim = trim; - lodash.trimEnd = trimEnd; - lodash.trimStart = trimStart; - lodash.truncate = truncate; - lodash.unescape = unescape; - lodash.uniqueId = uniqueId; - lodash.upperCase = upperCase; - lodash.upperFirst = upperFirst; - - // Add aliases. - lodash.each = forEach; - lodash.eachRight = forEachRight; - lodash.first = head; - - mixin(lodash, (function() { - var source = {}; - baseForOwn(lodash, function(func, methodName) { - if (!hasOwnProperty.call(lodash.prototype, methodName)) { - source[methodName] = func; - } - }); - return source; - }()), { 'chain': false }); - - /*------------------------------------------------------------------------*/ - /** - * The semantic version number. + * Converts `value` to a string. An empty string is returned for `null` + * and `undefined` values. The sign of `-0` is preserved. * * @static * @memberOf _ - * @type {string} - */ - lodash.VERSION = VERSION; - - // Assign default placeholders. - arrayEach(['bind', 'bindKey', 'curry', 'curryRight', 'partial', 'partialRight'], function(methodName) { - lodash[methodName].placeholder = lodash; - }); - - // Add `LazyWrapper` methods for `_.drop` and `_.take` variants. - arrayEach(['drop', 'take'], function(methodName, index) { - LazyWrapper.prototype[methodName] = function(n) { - n = n === undefined ? 1 : nativeMax(toInteger(n), 0); - - var result = (this.__filtered__ && !index) - ? new LazyWrapper(this) - : this.clone(); - - if (result.__filtered__) { - result.__takeCount__ = nativeMin(n, result.__takeCount__); - } else { - result.__views__.push({ - 'size': nativeMin(n, MAX_ARRAY_LENGTH), - 'type': methodName + (result.__dir__ < 0 ? 'Right' : '') - }); - } - return result; - }; - - LazyWrapper.prototype[methodName + 'Right'] = function(n) { - return this.reverse()[methodName](n).reverse(); - }; - }); - - // Add `LazyWrapper` methods that accept an `iteratee` value. - arrayEach(['filter', 'map', 'takeWhile'], function(methodName, index) { - var type = index + 1, - isFilter = type == LAZY_FILTER_FLAG || type == LAZY_WHILE_FLAG; - - LazyWrapper.prototype[methodName] = function(iteratee) { - var result = this.clone(); - result.__iteratees__.push({ - 'iteratee': getIteratee(iteratee, 3), - 'type': type - }); - result.__filtered__ = result.__filtered__ || isFilter; - return result; - }; - }); - - // Add `LazyWrapper` methods for `_.head` and `_.last`. - arrayEach(['head', 'last'], function(methodName, index) { - var takeName = 'take' + (index ? 'Right' : ''); - - LazyWrapper.prototype[methodName] = function() { - return this[takeName](1).value()[0]; - }; - }); - - // Add `LazyWrapper` methods for `_.initial` and `_.tail`. - arrayEach(['initial', 'tail'], function(methodName, index) { - var dropName = 'drop' + (index ? '' : 'Right'); - - LazyWrapper.prototype[methodName] = function() { - return this.__filtered__ ? new LazyWrapper(this) : this[dropName](1); - }; - }); - - LazyWrapper.prototype.compact = function() { - return this.filter(identity); - }; - - LazyWrapper.prototype.find = function(predicate) { - return this.filter(predicate).head(); - }; - - LazyWrapper.prototype.findLast = function(predicate) { - return this.reverse().find(predicate); - }; - - LazyWrapper.prototype.invokeMap = baseRest(function(path, args) { - if (typeof path == 'function') { - return new LazyWrapper(this); - } - return this.map(function(value) { - return baseInvoke(value, path, args); - }); - }); - - LazyWrapper.prototype.reject = function(predicate) { - return this.filter(negate(getIteratee(predicate))); - }; - - LazyWrapper.prototype.slice = function(start, end) { - start = toInteger(start); - - var result = this; - if (result.__filtered__ && (start > 0 || end < 0)) { - return new LazyWrapper(result); - } - if (start < 0) { - result = result.takeRight(-start); - } else if (start) { - result = result.drop(start); - } - if (end !== undefined) { - end = toInteger(end); - result = end < 0 ? result.dropRight(-end) : result.take(end - start); - } - return result; - }; - - LazyWrapper.prototype.takeRightWhile = function(predicate) { - return this.reverse().takeWhile(predicate).reverse(); - }; - - LazyWrapper.prototype.toArray = function() { - return this.take(MAX_ARRAY_LENGTH); - }; - - // Add `LazyWrapper` methods to `lodash.prototype`. - baseForOwn(LazyWrapper.prototype, function(func, methodName) { - var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName), - isTaker = /^(?:head|last)$/.test(methodName), - lodashFunc = lodash[isTaker ? ('take' + (methodName == 'last' ? 'Right' : '')) : methodName], - retUnwrapped = isTaker || /^find/.test(methodName); - - if (!lodashFunc) { - return; - } - lodash.prototype[methodName] = function() { - var value = this.__wrapped__, - args = isTaker ? [1] : arguments, - isLazy = value instanceof LazyWrapper, - iteratee = args[0], - useLazy = isLazy || isArray(value); - - var interceptor = function(value) { - var result = lodashFunc.apply(lodash, arrayPush([value], args)); - return (isTaker && chainAll) ? result[0] : result; - }; - - if (useLazy && checkIteratee && typeof iteratee == 'function' && iteratee.length != 1) { - // Avoid lazy use if the iteratee has a "length" value other than `1`. - isLazy = useLazy = false; - } - var chainAll = this.__chain__, - isHybrid = !!this.__actions__.length, - isUnwrapped = retUnwrapped && !chainAll, - onlyLazy = isLazy && !isHybrid; - - if (!retUnwrapped && useLazy) { - value = onlyLazy ? value : new LazyWrapper(this); - var result = func.apply(value, args); - result.__actions__.push({ 'func': thru, 'args': [interceptor], 'thisArg': undefined }); - return new LodashWrapper(result, chainAll); - } - if (isUnwrapped && onlyLazy) { - return func.apply(this, args); - } - result = this.thru(interceptor); - return isUnwrapped ? (isTaker ? result.value()[0] : result.value()) : result; - }; - }); - - // Add `Array` methods to `lodash.prototype`. - arrayEach(['pop', 'push', 'shift', 'sort', 'splice', 'unshift'], function(methodName) { - var func = arrayProto[methodName], - chainName = /^(?:push|sort|unshift)$/.test(methodName) ? 'tap' : 'thru', - retUnwrapped = /^(?:pop|shift)$/.test(methodName); - - lodash.prototype[methodName] = function() { - var args = arguments; - if (retUnwrapped && !this.__chain__) { - var value = this.value(); - return func.apply(isArray(value) ? value : [], args); - } - return this[chainName](function(value) { - return func.apply(isArray(value) ? value : [], args); - }); - }; - }); - - // Map minified method names to their real names. - baseForOwn(LazyWrapper.prototype, function(func, methodName) { - var lodashFunc = lodash[methodName]; - if (lodashFunc) { - var key = lodashFunc.name + ''; - if (!hasOwnProperty.call(realNames, key)) { - realNames[key] = []; - } - realNames[key].push({ 'name': methodName, 'func': lodashFunc }); - } - }); - - realNames[createHybrid(undefined, WRAP_BIND_KEY_FLAG).name] = [{ - 'name': 'wrapper', - 'func': undefined - }]; - - // Add methods to `LazyWrapper`. - LazyWrapper.prototype.clone = lazyClone; - LazyWrapper.prototype.reverse = lazyReverse; - LazyWrapper.prototype.value = lazyValue; - - // Add chain sequence methods to the `lodash` wrapper. - lodash.prototype.at = wrapperAt; - lodash.prototype.chain = wrapperChain; - lodash.prototype.commit = wrapperCommit; - lodash.prototype.next = wrapperNext; - lodash.prototype.plant = wrapperPlant; - lodash.prototype.reverse = wrapperReverse; - lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue; - - // Add lazy aliases. - lodash.prototype.first = lodash.prototype.head; - - if (symIterator) { - lodash.prototype[symIterator] = wrapperToIterator; - } - return lodash; - }); - - /*--------------------------------------------------------------------------*/ - - // Export lodash. - var _ = runInContext(); - - // Some AMD build optimizers, like r.js, check for condition patterns like: - if (true) { - // Expose Lodash on the global object to prevent errors when Lodash is - // loaded by a script tag in the presence of an AMD loader. - // See http://requirejs.org/docs/errors.html#mismatch for more details. - // Use `_.noConflict` to remove Lodash from the global object. - root._ = _; - - // Define as an anonymous module so, through path mapping, it can be - // referenced as the "underscore" module. - !(__WEBPACK_AMD_DEFINE_RESULT__ = (function() { - return _; - }).call(exports, __webpack_require__, exports, module), - __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); - } - // Check for `exports` after `define` in case a build optimizer adds it. - else {} -}.call(this)); - -/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) - -/***/ }), -/* 824 */ -/***/ (function(module) { - -module.exports = JSON.parse("{\"qualifications\":[{\"label\":\"national_id_card\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"civil_registration\",\"subjects\":[\"identity\"]},{\"label\":\"passport\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"civil_registration\",\"subjects\":[\"identity\"]},{\"label\":\"residence_permit\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"immigration\",\"subjects\":[\"permit\",\"identity\"]},{\"label\":\"family_record_book\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"civil_registration\",\"subjects\":[\"family\"]},{\"label\":\"birth_certificate\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"civil_registration\",\"subjects\":[\"identity\",\"family\"]},{\"label\":\"driver_license\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"transport\",\"subjects\":[\"permit\",\"driving\"]},{\"label\":\"other_identity_document\",\"purpose\":\"attestation\"},{\"label\":\"wedding\",\"purpose\":\"contract\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"civil_registration\",\"subjects\":[\"family\"]},{\"label\":\"pacs\",\"purpose\":\"contract\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"civil_registration\",\"subjects\":[\"family\"]},{\"label\":\"divorce\",\"purpose\":\"contract\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"civil_registration\",\"subjects\":[\"family\"]},{\"label\":\"large_family_card\",\"purpose\":\"attestation\",\"sourceCategory\":\"transport\",\"subjects\":[\"right\"]},{\"label\":\"caf\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"family\",\"subjects\":[\"right\"]},{\"label\":\"other_family_document\"},{\"label\":\"diploma\",\"purpose\":\"attestation\",\"sourceCategory\":\"education\",\"subjects\":[\"achievement\"]},{\"label\":\"work_contract\",\"purpose\":\"contract\",\"sourceCategory\":\"employer\",\"subjects\":[\"work\",\"employment\"]},{\"label\":\"pay_sheet\",\"purpose\":\"attestation\",\"sourceCategory\":\"employer\",\"subjects\":[\"work\",\"revenues\"]},{\"label\":\"unemployment_benefit\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"subjects\":[\"revenues\"]},{\"label\":\"pension\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"subjects\":[\"revenues\"]},{\"label\":\"other_revenue\",\"purpose\":\"attestation\",\"subjects\":[\"revenues\"]},{\"label\":\"gradebook\",\"purpose\":\"report\",\"sourceCategory\":\"education\",\"subjects\":[\"history\"]},{\"label\":\"student_card\",\"purpose\":\"attestation\",\"sourceCategory\":\"education\",\"subjects\":[\"identity\"]},{\"label\":\"resume\",\"purpose\":\"description\",\"subjects\":[\"employment\"]},{\"label\":\"motivation_letter\",\"purpose\":\"description\",\"subjects\":[\"employment\"]},{\"label\":\"other_work_document\"},{\"label\":\"health_book\",\"purpose\":\"report\",\"sourceCategory\":\"health\",\"subjects\":[\"history\"]},{\"label\":\"national_insurance_card\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"health\",\"subjects\":[\"insurance\"]},{\"label\":\"health_insurance_card\",\"purpose\":\"attestation\",\"sourceCategory\":\"insurance\",\"sourceSubCategory\":\"health\",\"subjects\":[\"insurance\"]},{\"label\":\"prescription\",\"purpose\":\"attestation\",\"sourceCategory\":\"health\",\"subjects\":[\"right\"]},{\"label\":\"health_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"health\"},{\"label\":\"other_health_document\"},{\"label\":\"vehicle_registration\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"transport\",\"subjects\":[\"right\",\"identity\"]},{\"label\":\"car_insurance\",\"purpose\":\"attestation\",\"sourceCategory\":\"insurance\",\"sourceSubCategory\":\"transport\",\"subjects\":[\"insurance\",\"car\"]},{\"label\":\"mechanic_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"transport\"},{\"label\":\"transport_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"transport\"},{\"label\":\"other_transport_document\"},{\"label\":\"house_sale_agreeement\",\"purpose\":\"contract\",\"sourceCategory\":\"real_estate\",\"subjects\":[\"house\"]},{\"label\":\"building_permit\",\"purpose\":\"attestation\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"real_estate\",\"subjects\":[\"permit\",\"house\"]},{\"label\":\"technical_diagnostic_record\",\"purpose\":\"report\",\"sourceCategory\":\"real_estate\",\"subjects\":[\"compliance\",\"house\"]},{\"label\":\"lease\",\"purpose\":\"contract\",\"sourceCategory\":\"real_estate\",\"subjects\":[\"house\"]},{\"label\":\"rent_receipt\",\"purpose\":\"invoice\",\"sourceCategory\":\"real_estate\",\"subjects\":[\"house\"]},{\"label\":\"house_insurance\",\"purpose\":\"contract\",\"sourceCategory\":\"insurance\",\"sourceSubCategory\":\"real_estate\",\"subjects\":[\"insurance\",\"house\"]},{\"label\":\"work_quote\",\"purpose\":\"description\",\"sourceCategory\":\"building\",\"subjects\":[\"building\",\"house\"]},{\"label\":\"work_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"building\",\"subjects\":[\"building\",\"house\"]},{\"label\":\"other_house_document\"},{\"label\":\"phone_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"telecom\",\"sourceSubCategory\":\"mobile\"},{\"label\":\"isp_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"telecom\",\"sourceSubCategory\":\"internet\",\"subjects\":[\"subscription\"]},{\"label\":\"telecom_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"telecom\"},{\"label\":\"energy_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"energy\"},{\"label\":\"water_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"water\"},{\"label\":\"appliance_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"retail\"},{\"label\":\"web_service_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"web\"},{\"label\":\"restaurant_invoice\",\"purpose\":\"invoice\",\"sourceCategory\":\"alimentation\"},{\"label\":\"other_invoice\",\"purpose\":\"invoice\"},{\"label\":\"tax_return\",\"purpose\":\"report\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"tax\",\"subjects\":[\"tax\"]},{\"label\":\"tax_notice\",\"purpose\":\"invoice\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"tax\",\"subjects\":[\"tax\"]},{\"label\":\"tax_timetable\",\"purpose\":\"report\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"tax\",\"subjects\":[\"tax\"]},{\"label\":\"other_tax_document\",\"sourceCategory\":\"gov\",\"sourceSubCategory\":\"tax\",\"subjects\":[\"tax\"]},{\"label\":\"bank_details\",\"purpose\":\"attestation\",\"sourceCategory\":\"bank\",\"subjects\":[\"identity\"]},{\"label\":\"bank_statement\",\"purpose\":\"report\",\"sourceCategory\":\"bank\",\"subjects\":[\"history\"]},{\"label\":\"loan_agreement\",\"purpose\":\"contract\",\"sourceCategory\":\"bank\"},{\"label\":\"other_bank_document\",\"sourceCategory\":\"bank\"},{\"label\":\"receipt\",\"purpose\":\"report\"}],\"purposeKnownValues\":[\"attestation\",\"contract\",\"invoice\",\"report\",\"description\",\"evaluation\"],\"sourceCategoryKnownValues\":[\"bank\",\"insurance\",\"retail\",\"telecom\",\"energy\",\"water\",\"health\",\"gov\",\"education\",\"employer\",\"transport\",\"goods\",\"alimentation\",\"building\",\"real_estate\",\"web\"],\"sourceSubCategoryKnownValues\":[\"civil_registration\",\"immigration\",\"transport\",\"family\",\"tax\",\"health\",\"real_estate\",\"mobile\",\"internet\"],\"subjectsKnownValues\":[\"identity\",\"permit\",\"family\",\"driving\",\"right\",\"subvention\",\"achievement\",\"degree\",\"work\",\"employment\",\"revenues\",\"history\",\"insurance\",\"drugs\",\"medical_act\",\"car\",\"moto\",\"truck\",\"boat\",\"subscription\",\"buy/sale\",\"house\",\"compliance\",\"building\",\"food\",\"real_estate\",\"tax\",\"insurance\",\"education\",\"statement\",\"course\",\"internet\",\"phone\"]}"); - -/***/ }), -/* 825 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var _interopRequireDefault = __webpack_require__(530); - -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.getReferencedFolder = exports.createFolderWithReference = exports.ensureMagicFolder = exports.MAGIC_FOLDERS = void 0; - -var _regenerator = _interopRequireDefault(__webpack_require__(545)); - -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); - -var _sortBy = _interopRequireDefault(__webpack_require__(826)); - -var _CozyClient = _interopRequireDefault(__webpack_require__(531)); - -var _types = __webpack_require__(628); - -var APP_DOCTYPE = 'io.cozy.apps'; -var MAGIC_FOLDERS = { - ADMINISTRATIVE: "".concat(APP_DOCTYPE, "/administrative"), - PHOTOS: "".concat(APP_DOCTYPE, "/photos"), - PHOTOS_BACKUP: "".concat(APP_DOCTYPE, "/photos/mobile"), - PHOTOS_UPLOAD: "".concat(APP_DOCTYPE, "/photos/upload"), - NOTES: "".concat(APP_DOCTYPE, "/notes"), - HOME: "".concat(APP_DOCTYPE, "/home") -}; -/** - * Returns a "Magic Folder", given its id. See https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.apps/#special-iocozyapps-doctypes - * - * @param {CozyClient} client cozy-client instance - * @param {string} id Magic Folder id. `CozyFolder.magicFolders` contains the - * ids of folders that can be magic folders. - * @param {string} path Default path to use if magic folder does not exist - * @returns {Promise<IOCozyFolder>} Folder document - */ - -exports.MAGIC_FOLDERS = MAGIC_FOLDERS; - -var ensureMagicFolder = /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(client, id, path) { - var magicFolderDocument, existingMagicFolder, magicFoldersValues; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - magicFolderDocument = { - _type: APP_DOCTYPE, - _id: id - }; - _context.next = 3; - return getReferencedFolder(client, magicFolderDocument); - - case 3: - existingMagicFolder = _context.sent; - - if (!existingMagicFolder) { - _context.next = 6; - break; - } - - return _context.abrupt("return", existingMagicFolder); - - case 6: - magicFoldersValues = Object.values(MAGIC_FOLDERS); - - if (magicFoldersValues.includes(id)) { - _context.next = 9; - break; - } - - throw new Error("Cannot create Magic folder with id ".concat(id, ". Allowed values are ").concat(magicFoldersValues.join(', '), ".")); - - case 9: - if (path) { - _context.next = 11; - break; - } - - throw new Error('Magic folder default path must be defined'); + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.toString(null); + * // => '' + * + * _.toString(-0); + * // => '-0' + * + * _.toString([1, 2, 3]); + * // => '1,2,3' + */ + function toString(value) { + return value == null ? '' : baseToString(value); + } - case 11: - return _context.abrupt("return", createFolderWithReference(client, path, magicFolderDocument)); + /*------------------------------------------------------------------------*/ - case 12: - case "end": - return _context.stop(); + /** + * Assigns own enumerable string keyed properties of source objects to the + * destination object. Source objects are applied from left to right. + * Subsequent sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object` and is loosely based on + * [`Object.assign`](https://mdn.io/Object/assign). + * + * @static + * @memberOf _ + * @since 0.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assignIn + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assign({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'c': 3 } + */ + var assign = createAssigner(function(object, source) { + if (isPrototype(source) || isArrayLike(source)) { + copyObject(source, keys(source), object); + return; + } + for (var key in source) { + if (hasOwnProperty.call(source, key)) { + assignValue(object, key, source[key]); } } - }, _callee); - })); - - return function ensureMagicFolder(_x, _x2, _x3) { - return _ref.apply(this, arguments); - }; -}(); -/** - * The next functions are considered private and only exported for unit tests - */ - -/** - * Create a folder with a reference to the given document - * - * @param {CozyClient} client - cozy-client instance - * @param {string} path - Folder path - * @param {CozyClientDocument} document - Document to make reference to. Any doctype. - * @returns {Promise<IOCozyFolder>} Folder document - */ + }); + /** + * This method is like `_.assign` except that it iterates over own and + * inherited source properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extend + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.assign + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * function Bar() { + * this.c = 3; + * } + * + * Foo.prototype.b = 2; + * Bar.prototype.d = 4; + * + * _.assignIn({ 'a': 0 }, new Foo, new Bar); + * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 } + */ + var assignIn = createAssigner(function(object, source) { + copyObject(source, keysIn(source), object); + }); -exports.ensureMagicFolder = ensureMagicFolder; + /** + * This method is like `_.assignIn` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias extendWith + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignInWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var assignInWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keysIn(source), object, customizer); + }); -var createFolderWithReference = /*#__PURE__*/function () { - var _ref2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(client, path, document) { - var collection, dirId, _yield$collection$get, dirInfos; + /** + * This method is like `_.assign` except that it accepts `customizer` + * which is invoked to produce the assigned values. If `customizer` returns + * `undefined`, assignment is handled by the method instead. The `customizer` + * is invoked with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @see _.assignInWith + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var assignWith = createAssigner(function(object, source, srcIndex, customizer) { + copyObject(source, keys(source), object, customizer); + }); - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - collection = client.collection('io.cozy.files'); - _context2.next = 3; - return collection.ensureDirectoryExists(path); + /** + * Creates an array of values corresponding to `paths` of `object`. + * + * @static + * @memberOf _ + * @since 1.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Array} Returns the picked values. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] }; + * + * _.at(object, ['a[0].b.c', 'a[1]']); + * // => [3, 4] + */ + var at = flatRest(baseAt); - case 3: - dirId = _context2.sent; - _context2.next = 6; - return collection.addReferencesTo(document, [{ - _id: dirId - }]); + /** + * Creates an object that inherits from the `prototype` object. If a + * `properties` object is given, its own enumerable string keyed properties + * are assigned to the created object. + * + * @static + * @memberOf _ + * @since 2.3.0 + * @category Object + * @param {Object} prototype The object to inherit from. + * @param {Object} [properties] The properties to assign to the object. + * @returns {Object} Returns the new object. + * @example + * + * function Shape() { + * this.x = 0; + * this.y = 0; + * } + * + * function Circle() { + * Shape.call(this); + * } + * + * Circle.prototype = _.create(Shape.prototype, { + * 'constructor': Circle + * }); + * + * var circle = new Circle; + * circle instanceof Circle; + * // => true + * + * circle instanceof Shape; + * // => true + */ + function create(prototype, properties) { + var result = baseCreate(prototype); + return properties == null ? result : baseAssign(result, properties); + } - case 6: - _context2.next = 8; - return collection.get(dirId); + /** + * Assigns own and inherited enumerable string keyed properties of source + * objects to the destination object for all destination properties that + * resolve to `undefined`. Source objects are applied from left to right. + * Once a property is set, additional values of the same property are ignored. + * + * **Note:** This method mutates `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaultsDeep + * @example + * + * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + var defaults = baseRest(function(object, sources) { + object = Object(object); - case 8: - _yield$collection$get = _context2.sent; - dirInfos = _yield$collection$get.data; - return _context2.abrupt("return", dirInfos); + var index = -1; + var length = sources.length; + var guard = length > 2 ? sources[2] : undefined; - case 11: - case "end": - return _context2.stop(); - } + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + length = 1; } - }, _callee2); - })); - - return function createFolderWithReference(_x4, _x5, _x6) { - return _ref2.apply(this, arguments); - }; -}(); -/** - * Returns the most recent folder referenced by the given document - * - * @param {CozyClient} client cozy-client instance - * @param {CozyClientDocument} document Document to get references from - * @returns {Promise<IOCozyFolder>} Folder referenced by the given document - */ - -exports.createFolderWithReference = createFolderWithReference; - -var getReferencedFolder = /*#__PURE__*/function () { - var _ref3 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(client, document) { - var _yield$client$collect, included, foldersOutsideTrash; - - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - _context3.next = 2; - return client.collection('io.cozy.files').findReferencedBy(document); - - case 2: - _yield$client$collect = _context3.sent; - included = _yield$client$collect.included; - foldersOutsideTrash = included.filter(function (folder) { - return !/^\/\.cozy_trash/.test(folder.attributes.path); - }); // there can be multiple folders with the same reference in some edge cases - // when this happens we return the most recent one + while (++index < length) { + var source = sources[index]; + var props = keysIn(source); + var propsIndex = -1; + var propsLength = props.length; - return _context3.abrupt("return", foldersOutsideTrash.length > 0 ? (0, _sortBy.default)(foldersOutsideTrash, 'created_at').pop() : null); + while (++propsIndex < propsLength) { + var key = props[propsIndex]; + var value = object[key]; - case 6: - case "end": - return _context3.stop(); + if (value === undefined || + (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) { + object[key] = source[key]; + } } } - }, _callee3); - })); - - return function getReferencedFolder(_x7, _x8) { - return _ref3.apply(this, arguments); - }; -}(); -exports.getReferencedFolder = getReferencedFolder; - -/***/ }), -/* 826 */ -/***/ (function(module, exports, __webpack_require__) { + return object; + }); -var baseFlatten = __webpack_require__(559), - baseOrderBy = __webpack_require__(737), - baseRest = __webpack_require__(562), - isIterateeCall = __webpack_require__(754); + /** + * This method is like `_.defaults` except that it recursively assigns + * default properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaults + * @example + * + * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } }); + * // => { 'a': { 'b': 2, 'c': 3 } } + */ + var defaultsDeep = baseRest(function(args) { + args.push(undefined, customDefaultsMerge); + return apply(mergeWith, undefined, args); + }); -/** - * Creates an array of elements, sorted in ascending order by the results of - * running each element in a collection thru each iteratee. This method - * performs a stable sort, that is, it preserves the original sort order of - * equal elements. The iteratees are invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {...(Function|Function[])} [iteratees=[_.identity]] - * The iteratees to sort by. - * @returns {Array} Returns the new sorted array. - * @example - * - * var users = [ - * { 'user': 'fred', 'age': 48 }, - * { 'user': 'barney', 'age': 36 }, - * { 'user': 'fred', 'age': 30 }, - * { 'user': 'barney', 'age': 34 } - * ]; - * - * _.sortBy(users, [function(o) { return o.user; }]); - * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]] - * - * _.sortBy(users, ['user', 'age']); - * // => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]] - */ -var sortBy = baseRest(function(collection, iteratees) { - if (collection == null) { - return []; - } - var length = iteratees.length; - if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) { - iteratees = []; - } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) { - iteratees = [iteratees[0]]; - } - return baseOrderBy(collection, baseFlatten(iteratees, 1), []); -}); + /** + * This method is like `_.find` except that it returns the key of the first + * element `predicate` returns truthy for instead of the element itself. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findKey(users, function(o) { return o.age < 40; }); + * // => 'barney' (iteration order is not guaranteed) + * + * // The `_.matches` iteratee shorthand. + * _.findKey(users, { 'age': 1, 'active': true }); + * // => 'pebbles' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findKey(users, 'active'); + * // => 'barney' + */ + function findKey(object, predicate) { + return baseFindKey(object, getIteratee(predicate, 3), baseForOwn); + } -module.exports = sortBy; + /** + * This method is like `_.findKey` except that it iterates over elements of + * a collection in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @returns {string|undefined} Returns the key of the matched element, + * else `undefined`. + * @example + * + * var users = { + * 'barney': { 'age': 36, 'active': true }, + * 'fred': { 'age': 40, 'active': false }, + * 'pebbles': { 'age': 1, 'active': true } + * }; + * + * _.findLastKey(users, function(o) { return o.age < 40; }); + * // => returns 'pebbles' assuming `_.findKey` returns 'barney' + * + * // The `_.matches` iteratee shorthand. + * _.findLastKey(users, { 'age': 36, 'active': true }); + * // => 'barney' + * + * // The `_.matchesProperty` iteratee shorthand. + * _.findLastKey(users, ['active', false]); + * // => 'fred' + * + * // The `_.property` iteratee shorthand. + * _.findLastKey(users, 'active'); + * // => 'pebbles' + */ + function findLastKey(object, predicate) { + return baseFindKey(object, getIteratee(predicate, 3), baseForOwnRight); + } + /** + * Iterates over own and inherited enumerable string keyed properties of an + * object and invokes `iteratee` for each property. The iteratee is invoked + * with three arguments: (value, key, object). Iteratee functions may exit + * iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forInRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forIn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed). + */ + function forIn(object, iteratee) { + return object == null + ? object + : baseFor(object, getIteratee(iteratee, 3), keysIn); + } -/***/ }), -/* 827 */ -/***/ (function(module, exports, __webpack_require__) { + /** + * This method is like `_.forIn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forIn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forInRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'. + */ + function forInRight(object, iteratee) { + return object == null + ? object + : baseForRight(object, getIteratee(iteratee, 3), keysIn); + } -"use strict"; + /** + * Iterates over own enumerable string keyed properties of an object and + * invokes `iteratee` for each property. The iteratee is invoked with three + * arguments: (value, key, object). Iteratee functions may exit iteration + * early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 0.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwnRight + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwn(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'a' then 'b' (iteration order is not guaranteed). + */ + function forOwn(object, iteratee) { + return object && baseForOwn(object, getIteratee(iteratee, 3)); + } + /** + * This method is like `_.forOwn` except that it iterates over properties of + * `object` in the opposite order. + * + * @static + * @memberOf _ + * @since 2.0.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns `object`. + * @see _.forOwn + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.forOwnRight(new Foo, function(value, key) { + * console.log(key); + * }); + * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'. + */ + function forOwnRight(object, iteratee) { + return object && baseForOwnRight(object, getIteratee(iteratee, 3)); + } -var _interopRequireDefault = __webpack_require__(530); + /** + * Creates an array of function property names from own enumerable properties + * of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functionsIn + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functions(new Foo); + * // => ['a', 'b'] + */ + function functions(object) { + return object == null ? [] : baseFunctions(object, keys(object)); + } -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.fetchURL = exports.generateUrlForNote = exports.generatePrivateUrl = void 0; + /** + * Creates an array of function property names from own and inherited + * enumerable properties of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the function names. + * @see _.functions + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functionsIn(new Foo); + * // => ['a', 'b', 'c'] + */ + function functionsIn(object) { + return object == null ? [] : baseFunctions(object, keysIn(object)); + } -var _regenerator = _interopRequireDefault(__webpack_require__(545)); + /** + * Gets the value at `path` of `object`. If the resolved value is + * `undefined`, the `defaultValue` is returned in its place. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.get(object, 'a[0].b.c'); + * // => 3 + * + * _.get(object, ['a', '0', 'b', 'c']); + * // => 3 + * + * _.get(object, 'a.b.c', 'default'); + * // => 'default' + */ + function get(object, path, defaultValue) { + var result = object == null ? undefined : baseGet(object, path); + return result === undefined ? defaultValue : result; + } -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + /** + * Checks if `path` is a direct property of `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = { 'a': { 'b': 2 } }; + * var other = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.has(object, 'a'); + * // => true + * + * _.has(object, 'a.b'); + * // => true + * + * _.has(object, ['a', 'b']); + * // => true + * + * _.has(other, 'a'); + * // => false + */ + function has(object, path) { + return object != null && hasPath(object, path, baseHas); + } -var _helpers = __webpack_require__(761); + /** + * Checks if `path` is a direct or inherited property of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = _.create({ 'a': _.create({ 'b': 2 }) }); + * + * _.hasIn(object, 'a'); + * // => true + * + * _.hasIn(object, 'a.b'); + * // => true + * + * _.hasIn(object, ['a', 'b']); + * // => true + * + * _.hasIn(object, 'b'); + * // => false + */ + function hasIn(object, path) { + return object != null && hasPath(object, path, baseHasIn); + } -/** - * - * @param {string} notesAppUrl URL to the Notes App (https://notes.foo.mycozy.cloud) - * @param {object} file io.cozy.files object - */ -var generatePrivateUrl = function generatePrivateUrl(notesAppUrl, file) { - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - var returnUrl = options.returnUrl; - var url = new URL(notesAppUrl); + /** + * Creates an object composed of the inverted keys and values of `object`. + * If `object` contains duplicate values, subsequent values overwrite + * property assignments of previous values. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Object + * @param {Object} object The object to invert. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invert(object); + * // => { '1': 'c', '2': 'b' } + */ + var invert = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } - if (returnUrl) { - url.searchParams.set('returnUrl', returnUrl); - } + result[value] = key; + }, constant(identity)); - url.hash = "#/n/".concat(file.id); - return url.toString(); -}; + /** + * This method is like `_.invert` except that the inverted object is generated + * from the results of running each element of `object` thru `iteratee`. The + * corresponding inverted value of each inverted key is an array of keys + * responsible for generating the inverted value. The iteratee is invoked + * with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.1.0 + * @category Object + * @param {Object} object The object to invert. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Object} Returns the new inverted object. + * @example + * + * var object = { 'a': 1, 'b': 2, 'c': 1 }; + * + * _.invertBy(object); + * // => { '1': ['a', 'c'], '2': ['b'] } + * + * _.invertBy(object, function(value) { + * return 'group' + value; + * }); + * // => { 'group1': ['a', 'c'], 'group2': ['b'] } + */ + var invertBy = createInverter(function(result, value, key) { + if (value != null && + typeof value.toString != 'function') { + value = nativeObjectToString.call(value); + } -exports.generatePrivateUrl = generatePrivateUrl; + if (hasOwnProperty.call(result, value)) { + result[value].push(key); + } else { + result[value] = [key]; + } + }, getIteratee); -var generateUrlForNote = function generateUrlForNote(notesAppUrl, file) { - console.warn('generateUrlForNote is deprecated. Please use models.note.generatePrivateUrl instead'); - return generatePrivateUrl(notesAppUrl, file); -}; -/** - * Fetch and build an URL to open a note. - * - * @param {object} client CozyClient instance - * @param {object} file io.cozy.file object - * @returns {Promise<string>} url - */ + /** + * Invokes the method at `path` of `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the method to invoke. + * @param {...*} [args] The arguments to invoke the method with. + * @returns {*} Returns the result of the invoked method. + * @example + * + * var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] }; + * + * _.invoke(object, 'a[0].b.c.slice', 1, 3); + * // => [2, 3] + */ + var invoke = baseRest(baseInvoke); + /** + * Creates an array of the own enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. See the + * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * for more details. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keys(new Foo); + * // => ['a', 'b'] (iteration order is not guaranteed) + * + * _.keys('hi'); + * // => ['0', '1'] + */ + function keys(object) { + return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); + } -exports.generateUrlForNote = generateUrlForNote; + /** + * Creates an array of the own and inherited enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keysIn(new Foo); + * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + */ + function keysIn(object) { + return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object); + } -var fetchURL = /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(client, file) { - var _yield$client$getStac, _yield$client$getStac2, note_id, subdomain, protocol, instance, sharecode, public_name, searchParams; + /** + * The opposite of `_.mapValues`; this method creates an object with the + * same values as `object` and keys generated by running each own enumerable + * string keyed property of `object` thru `iteratee`. The iteratee is invoked + * with three arguments: (value, key, object). + * + * @static + * @memberOf _ + * @since 3.8.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapValues + * @example + * + * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) { + * return key + value; + * }); + * // => { 'a1': 1, 'b2': 2 } + */ + function mapKeys(object, iteratee) { + var result = {}; + iteratee = getIteratee(iteratee, 3); - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - _context.next = 2; - return client.getStackClient().collection('io.cozy.notes').fetchURL({ - _id: file.id - }); + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, iteratee(value, key, object), value); + }); + return result; + } - case 2: - _yield$client$getStac = _context.sent; - _yield$client$getStac2 = _yield$client$getStac.data; - note_id = _yield$client$getStac2.note_id; - subdomain = _yield$client$getStac2.subdomain; - protocol = _yield$client$getStac2.protocol; - instance = _yield$client$getStac2.instance; - sharecode = _yield$client$getStac2.sharecode; - public_name = _yield$client$getStac2.public_name; + /** + * Creates an object with the same keys as `object` and values generated + * by running each own enumerable string keyed property of `object` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, key, object). + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Object} Returns the new mapped object. + * @see _.mapKeys + * @example + * + * var users = { + * 'fred': { 'user': 'fred', 'age': 40 }, + * 'pebbles': { 'user': 'pebbles', 'age': 1 } + * }; + * + * _.mapValues(users, function(o) { return o.age; }); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + * + * // The `_.property` iteratee shorthand. + * _.mapValues(users, 'age'); + * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed) + */ + function mapValues(object, iteratee) { + var result = {}; + iteratee = getIteratee(iteratee, 3); - if (!sharecode) { - _context.next = 17; - break; - } + baseForOwn(object, function(value, key, object) { + baseAssignValue(result, key, iteratee(value, key, object)); + }); + return result; + } - searchParams = [['id', note_id]]; - searchParams.push(['sharecode', sharecode]); - if (public_name) searchParams.push(['username', public_name]); - return _context.abrupt("return", (0, _helpers.generateWebLink)({ - cozyUrl: "".concat(protocol, "://").concat(instance), - searchParams: searchParams, - pathname: '/public/', - slug: 'notes', - subDomainType: subdomain - })); + /** + * This method is like `_.assign` except that it recursively merges own and + * inherited enumerable string keyed properties of source objects into the + * destination object. Source properties that resolve to `undefined` are + * skipped if a destination value exists. Array and plain object properties + * are merged recursively. Other objects and value types are overridden by + * assignment. Source objects are applied from left to right. Subsequent + * sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * var object = { + * 'a': [{ 'b': 2 }, { 'd': 4 }] + * }; + * + * var other = { + * 'a': [{ 'c': 3 }, { 'e': 5 }] + * }; + * + * _.merge(object, other); + * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] } + */ + var merge = createAssigner(function(object, source, srcIndex) { + baseMerge(object, source, srcIndex); + }); - case 17: - return _context.abrupt("return", (0, _helpers.generateWebLink)({ - cozyUrl: "".concat(protocol, "://").concat(instance), - pathname: '', - slug: 'notes', - subDomainType: subdomain, - hash: "/n/".concat(note_id) - })); + /** + * This method is like `_.merge` except that it accepts `customizer` which + * is invoked to produce the merged values of the destination and source + * properties. If `customizer` returns `undefined`, merging is handled by the + * method instead. The `customizer` is invoked with six arguments: + * (objValue, srcValue, key, object, source, stack). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} customizer The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * function customizer(objValue, srcValue) { + * if (_.isArray(objValue)) { + * return objValue.concat(srcValue); + * } + * } + * + * var object = { 'a': [1], 'b': [2] }; + * var other = { 'a': [3], 'b': [4] }; + * + * _.mergeWith(object, other, customizer); + * // => { 'a': [1, 3], 'b': [2, 4] } + */ + var mergeWith = createAssigner(function(object, source, srcIndex, customizer) { + baseMerge(object, source, srcIndex, customizer); + }); - case 18: - case "end": - return _context.stop(); - } + /** + * The opposite of `_.pick`; this method creates an object composed of the + * own and inherited enumerable property paths of `object` that are not omitted. + * + * **Note:** This method is considerably slower than `_.pick`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to omit. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omit(object, ['a', 'c']); + * // => { 'b': '2' } + */ + var omit = flatRest(function(object, paths) { + var result = {}; + if (object == null) { + return result; } - }, _callee); - })); - - return function fetchURL(_x, _x2) { - return _ref.apply(this, arguments); - }; -}(); - -exports.fetchURL = fetchURL; - -/***/ }), -/* 828 */ -/***/ (function(module, exports, __webpack_require__) { + var isDeep = false; + paths = arrayMap(paths, function(path) { + path = castPath(path, object); + isDeep || (isDeep = path.length > 1); + return path; + }); + copyObject(object, getAllKeysIn(object), result); + if (isDeep) { + result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone); + } + var length = paths.length; + while (length--) { + baseUnset(result, paths[length]); + } + return result; + }); -"use strict"; + /** + * The opposite of `_.pickBy`; this method creates an object composed of + * the own and inherited enumerable string keyed properties of `object` that + * `predicate` doesn't return truthy for. The predicate is invoked with two + * arguments: (value, key). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omitBy(object, _.isNumber); + * // => { 'b': '2' } + */ + function omitBy(object, predicate) { + return pickBy(object, negate(getIteratee(predicate))); + } + /** + * Creates an object composed of the picked `object` properties. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pick(object, ['a', 'c']); + * // => { 'a': 1, 'c': 3 } + */ + var pick = flatRest(function(object, paths) { + return object == null ? {} : basePick(object, paths); + }); -var _interopRequireDefault = __webpack_require__(530); + /** + * Creates an object composed of the `object` properties `predicate` returns + * truthy for. The predicate is invoked with two arguments: (value, key). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pickBy(object, _.isNumber); + * // => { 'a': 1, 'c': 3 } + */ + function pickBy(object, predicate) { + if (object == null) { + return {}; + } + var props = arrayMap(getAllKeysIn(object), function(prop) { + return [prop]; + }); + predicate = getIteratee(predicate); + return basePickBy(object, props, function(value, path) { + return predicate(value, path[0]); + }); + } -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.isReadOnly = isReadOnly; -exports.fetchOwn = fetchOwn; -exports.isForType = isForType; -exports.isDocumentReadOnly = isDocumentReadOnly; -exports.isShortcutCreatedOnTheRecipientCozy = void 0; + /** + * This method is like `_.get` except that if the resolved value is a + * function it's invoked with the `this` binding of its parent object and + * its result is returned. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to resolve. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] }; + * + * _.result(object, 'a[0].b.c1'); + * // => 3 + * + * _.result(object, 'a[0].b.c2'); + * // => 4 + * + * _.result(object, 'a[0].b.c3', 'default'); + * // => 'default' + * + * _.result(object, 'a[0].b.c3', _.constant('default')); + * // => 'default' + */ + function result(object, path, defaultValue) { + path = castPath(path, object); -var _defineProperty2 = _interopRequireDefault(__webpack_require__(550)); + var index = -1, + length = path.length; -var _regenerator = _interopRequireDefault(__webpack_require__(545)); + // Ensure the loop is entered when path is empty. + if (!length) { + length = 1; + object = undefined; + } + while (++index < length) { + var value = object == null ? undefined : object[toKey(path[index])]; + if (value === undefined) { + index = length; + value = defaultValue; + } + object = isFunction(value) ? value.call(object) : value; + } + return object; + } -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + /** + * Sets the value at `path` of `object`. If a portion of `path` doesn't exist, + * it's created. Arrays are created for missing index properties while objects + * are created for all other missing properties. Use `_.setWith` to customize + * `path` creation. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.set(object, 'a[0].b.c', 4); + * console.log(object.a[0].b.c); + * // => 4 + * + * _.set(object, ['x', '0', 'y', 'z'], 5); + * console.log(object.x[0].y.z); + * // => 5 + */ + function set(object, path, value) { + return object == null ? object : baseSet(object, path, value); + } -var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(540)); + /** + * This method is like `_.set` except that it accepts `customizer` which is + * invoked to produce the objects of `path`. If `customizer` returns `undefined` + * path creation is handled by the method instead. The `customizer` is invoked + * with three arguments: (nsValue, key, nsObject). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * var object = {}; + * + * _.setWith(object, '[0][1]', 'a', Object); + * // => { '0': { '1': 'a' } } + */ + function setWith(object, path, value, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return object == null ? object : baseSet(object, path, value, customizer); + } -var _intersection = _interopRequireDefault(__webpack_require__(732)); + /** + * Creates an array of own enumerable string keyed-value pairs for `object` + * which can be consumed by `_.fromPairs`. If `object` is a map or set, its + * entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entries + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairs(new Foo); + * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed) + */ + var toPairs = createToPairs(keys); -var _get = _interopRequireDefault(__webpack_require__(370)); + /** + * Creates an array of own and inherited enumerable string keyed-value pairs + * for `object` which can be consumed by `_.fromPairs`. If `object` is a map + * or set, its entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entriesIn + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairsIn(new Foo); + * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed) + */ + var toPairsIn = createToPairs(keysIn); -var _CozyClient = _interopRequireDefault(__webpack_require__(531)); + /** + * An alternative to `_.reduce`; this method transforms `object` to a new + * `accumulator` object which is the result of running each of its own + * enumerable string keyed properties thru `iteratee`, with each invocation + * potentially mutating the `accumulator` object. If `accumulator` is not + * provided, a new object with the same `[[Prototype]]` will be used. The + * iteratee is invoked with four arguments: (accumulator, value, key, object). + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @static + * @memberOf _ + * @since 1.3.0 + * @category Object + * @param {Object} object The object to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @param {*} [accumulator] The custom accumulator value. + * @returns {*} Returns the accumulated value. + * @example + * + * _.transform([2, 3, 4], function(result, n) { + * result.push(n *= n); + * return n % 2 == 0; + * }, []); + * // => [4, 9] + * + * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) { + * (result[value] || (result[value] = [])).push(key); + * }, {}); + * // => { '1': ['a', 'c'], '2': ['b'] } + */ + function transform(object, iteratee, accumulator) { + var isArr = isArray(object), + isArrLike = isArr || isBuffer(object) || isTypedArray(object); -var _dsl = __webpack_require__(625); + iteratee = getIteratee(iteratee, 4); + if (accumulator == null) { + var Ctor = object && object.constructor; + if (isArrLike) { + accumulator = isArr ? new Ctor : []; + } + else if (isObject(object)) { + accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {}; + } + else { + accumulator = {}; + } + } + (isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object) { + return iteratee(accumulator, value, index, object); + }); + return accumulator; + } -var _file = __webpack_require__(821); + /** + * Removes the property at `path` of `object`. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 7 } }] }; + * _.unset(object, 'a[0].b.c'); + * // => true + * + * console.log(object); + * // => { 'a': [{ 'b': {} }] }; + * + * _.unset(object, ['a', '0', 'b', 'c']); + * // => true + * + * console.log(object); + * // => { 'a': [{ 'b': {} }] }; + */ + function unset(object, path) { + return object == null ? true : baseUnset(object, path); + } -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + /** + * This method is like `_.set` except that accepts `updater` to produce the + * value to set. Use `_.updateWith` to customize `path` creation. The `updater` + * is invoked with one argument: (value). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {Function} updater The function to produce the updated value. + * @returns {Object} Returns `object`. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.update(object, 'a[0].b.c', function(n) { return n * n; }); + * console.log(object.a[0].b.c); + * // => 9 + * + * _.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; }); + * console.log(object.x[0].y.z); + * // => 0 + */ + function update(object, path, updater) { + return object == null ? object : baseUpdate(object, path, castFunction(updater)); + } -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } + /** + * This method is like `_.update` except that it accepts `customizer` which is + * invoked to produce the objects of `path`. If `customizer` returns `undefined` + * path creation is handled by the method instead. The `customizer` is invoked + * with three arguments: (nsValue, key, nsObject). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 4.6.0 + * @category Object + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {Function} updater The function to produce the updated value. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * var object = {}; + * + * _.updateWith(object, '[0][1]', _.constant('a'), Object); + * // => { '0': { '1': 'a' } } + */ + function updateWith(object, path, updater, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + return object == null ? object : baseUpdate(object, path, castFunction(updater), customizer); + } -/** - * @typedef {object} Document - Couchdb document like an io.cozy.files - * @property {string} _id - * @property {string} id - * @property {string} _type - * @property {string} type - */ + /** + * Creates an array of the own enumerable string keyed property values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.values(new Foo); + * // => [1, 2] (iteration order is not guaranteed) + * + * _.values('hi'); + * // => ['h', 'i'] + */ + function values(object) { + return object == null ? [] : baseValues(object, keys(object)); + } -/** - * @typedef {('ALL'|'GET'|'PATCH'|'POST'|'PUT'|'DELETE')} PermissionVerb - */ + /** + * Creates an array of the own and inherited enumerable string keyed property + * values of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.valuesIn(new Foo); + * // => [1, 2, 3] (iteration order is not guaranteed) + */ + function valuesIn(object) { + return object == null ? [] : baseValues(object, keysIn(object)); + } -/** - * @typedef {object} PermissionItem - * @property {PermissionVerb[]} verbs - ALL, GET, PUT, PATCH, DELETE, POST… - * @property {string} selector - defaults to `id` - * @property {string[]} values - * @property {string} type - a couch db database like 'io.cozy.files' - */ + /*------------------------------------------------------------------------*/ -/** - * Is this permission read only ? - * - * @private - * @param {PermissionItem} perm - permission node in a io.cozy.permissions document - * @param {object} options - Options - * @param {PermissionVerb[]} [options.writability] - Writability - * @returns {boolean} true if the note should be displayed read-only - */ -function isReadOnly(perm) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var _options$writability = options.writability, - writability = _options$writability === void 0 ? ['PATCH', 'POST', 'PUT', 'DELETE'] : _options$writability; - return perm.verbs && // no verbs is equivalent to ['ALL'] - perm.verbs.length > 0 && // empty array is equivalent to ['ALL'] - (0, _intersection.default)(perm.verbs, ['ALL'].concat((0, _toConsumableArray2.default)(writability))).length === 0; -} -/** - * Fetches the list of permissions blocks - * - * @param {CozyClient} client - - * @returns {Promise<PermissionItem[]>} list of permissions - */ + /** + * Clamps `number` within the inclusive `lower` and `upper` bounds. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Number + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + * @example + * + * _.clamp(-10, -5, 5); + * // => -5 + * + * _.clamp(10, -5, 5); + * // => 5 + */ + function clamp(number, lower, upper) { + if (upper === undefined) { + upper = lower; + lower = undefined; + } + if (upper !== undefined) { + upper = toNumber(upper); + upper = upper === upper ? upper : 0; + } + if (lower !== undefined) { + lower = toNumber(lower); + lower = lower === lower ? lower : 0; + } + return baseClamp(toNumber(number), lower, upper); + } + /** + * Checks if `n` is between `start` and up to, but not including, `end`. If + * `end` is not specified, it's set to `start` with `start` then set to `0`. + * If `start` is greater than `end` the params are swapped to support + * negative ranges. + * + * @static + * @memberOf _ + * @since 3.3.0 + * @category Number + * @param {number} number The number to check. + * @param {number} [start=0] The start of the range. + * @param {number} end The end of the range. + * @returns {boolean} Returns `true` if `number` is in the range, else `false`. + * @see _.range, _.rangeRight + * @example + * + * _.inRange(3, 2, 4); + * // => true + * + * _.inRange(4, 8); + * // => true + * + * _.inRange(4, 2); + * // => false + * + * _.inRange(2, 2); + * // => false + * + * _.inRange(1.2, 2); + * // => true + * + * _.inRange(5.2, 4); + * // => false + * + * _.inRange(-3, -2, -6); + * // => true + */ + function inRange(number, start, end) { + start = toFinite(start); + if (end === undefined) { + end = start; + start = 0; + } else { + end = toFinite(end); + } + number = toNumber(number); + return baseInRange(number, start, end); + } -function fetchOwn(_x) { - return _fetchOwn.apply(this, arguments); -} -/** - * Checks if the permission item is about a specific doctype - * - * @param {PermissionItem} permission - - * @param {string} type - doctype - */ + /** + * Produces a random number between the inclusive `lower` and `upper` bounds. + * If only one argument is provided a number between `0` and the given number + * is returned. If `floating` is `true`, or either `lower` or `upper` are + * floats, a floating-point number is returned instead of an integer. + * + * **Note:** JavaScript follows the IEEE-754 standard for resolving + * floating-point values which can produce unexpected results. + * + * @static + * @memberOf _ + * @since 0.7.0 + * @category Number + * @param {number} [lower=0] The lower bound. + * @param {number} [upper=1] The upper bound. + * @param {boolean} [floating] Specify returning a floating-point number. + * @returns {number} Returns the random number. + * @example + * + * _.random(0, 5); + * // => an integer between 0 and 5 + * + * _.random(5); + * // => also an integer between 0 and 5 + * + * _.random(5, true); + * // => a floating-point number between 0 and 5 + * + * _.random(1.2, 5.2); + * // => a floating-point number between 1.2 and 5.2 + */ + function random(lower, upper, floating) { + if (floating && typeof floating != 'boolean' && isIterateeCall(lower, upper, floating)) { + upper = floating = undefined; + } + if (floating === undefined) { + if (typeof upper == 'boolean') { + floating = upper; + upper = undefined; + } + else if (typeof lower == 'boolean') { + floating = lower; + lower = undefined; + } + } + if (lower === undefined && upper === undefined) { + lower = 0; + upper = 1; + } + else { + lower = toFinite(lower); + if (upper === undefined) { + upper = lower; + lower = 0; + } else { + upper = toFinite(upper); + } + } + if (lower > upper) { + var temp = lower; + lower = upper; + upper = temp; + } + if (floating || lower % 1 || upper % 1) { + var rand = nativeRandom(); + return nativeMin(lower + (rand * (upper - lower + freeParseFloat('1e-' + ((rand + '').length - 1)))), upper); + } + return baseRandom(lower, upper); + } + /*------------------------------------------------------------------------*/ -function _fetchOwn() { - _fetchOwn = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(client) { - var collection, data, permissions; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - collection = client.collection('io.cozy.permissions'); - _context.next = 3; - return collection.getOwnPermissions(); + /** + * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the camel cased string. + * @example + * + * _.camelCase('Foo Bar'); + * // => 'fooBar' + * + * _.camelCase('--foo-bar--'); + * // => 'fooBar' + * + * _.camelCase('__FOO_BAR__'); + * // => 'fooBar' + */ + var camelCase = createCompounder(function(result, word, index) { + word = word.toLowerCase(); + return result + (index ? capitalize(word) : word); + }); - case 3: - data = _context.sent; - permissions = (0, _get.default)(data, 'data.attributes.permissions'); + /** + * Converts the first character of `string` to upper case and the remaining + * to lower case. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to capitalize. + * @returns {string} Returns the capitalized string. + * @example + * + * _.capitalize('FRED'); + * // => 'Fred' + */ + function capitalize(string) { + return upperFirst(toString(string).toLowerCase()); + } - if (permissions) { - _context.next = 7; - break; - } + /** + * Deburrs `string` by converting + * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table) + * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A) + * letters to basic Latin letters and removing + * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to deburr. + * @returns {string} Returns the deburred string. + * @example + * + * _.deburr('déjà vu'); + * // => 'deja vu' + */ + function deburr(string) { + string = toString(string); + return string && string.replace(reLatin, deburrLetter).replace(reComboMark, ''); + } - throw "Can't get self permissions"; + /** + * Checks if `string` ends with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=string.length] The position to search up to. + * @returns {boolean} Returns `true` if `string` ends with `target`, + * else `false`. + * @example + * + * _.endsWith('abc', 'c'); + * // => true + * + * _.endsWith('abc', 'b'); + * // => false + * + * _.endsWith('abc', 'b', 2); + * // => true + */ + function endsWith(string, target, position) { + string = toString(string); + target = baseToString(target); - case 7: - return _context.abrupt("return", Object.values(permissions)); + var length = string.length; + position = position === undefined + ? length + : baseClamp(toInteger(position), 0, length); - case 8: - case "end": - return _context.stop(); - } - } - }, _callee); - })); - return _fetchOwn.apply(this, arguments); -} + var end = position; + position -= target.length; + return position >= 0 && string.slice(position, end) == target; + } -function isForType(permission, type) { - return permission.type === type || permission.type + '.*' === type; -} -/** - * Finds the permission block for the the file - * in the permissions owned by the current cozy-client. - * - * Iterates through parent folders if needed - * until we can find the permissions attached to the share - * - * @private - * @param {object} options - Options - * @param {Document} options.document - a couchdb document - * @param {CozyClient} options.client - A cozy client - * @param {PermissionItem[]} options.permissions - - * @returns {Promise<PermissionItem|undefined>} the corresponding permission block - */ + /** + * Converts the characters "&", "<", ">", '"', and "'" in `string` to their + * corresponding HTML entities. + * + * **Note:** No other characters are escaped. To escape additional + * characters use a third-party library like [_he_](https://mths.be/he). + * + * Though the ">" character is escaped for symmetry, characters like + * ">" and "/" don't need escaping in HTML and have no special meaning + * unless they're part of a tag or unquoted attribute value. See + * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands) + * (under "semi-related fun fact") for more details. + * + * When working with HTML you should always + * [quote attribute values](http://wonko.com/post/html-escaping) to reduce + * XSS vectors. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escape('fred, barney, & pebbles'); + * // => 'fred, barney, & pebbles' + */ + function escape(string) { + string = toString(string); + return (string && reHasUnescapedHtml.test(string)) + ? string.replace(reUnescapedHtml, escapeHtmlChar) + : string; + } + /** + * Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+", + * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to escape. + * @returns {string} Returns the escaped string. + * @example + * + * _.escapeRegExp('[lodash](https://lodash.com/)'); + * // => '\[lodash\]\(https://lodash\.com/\)' + */ + function escapeRegExp(string) { + string = toString(string); + return (string && reHasRegExpChar.test(string)) + ? string.replace(reRegExpChar, '\\$&') + : string; + } -function findPermissionFor(_x2) { - return _findPermissionFor2.apply(this, arguments); -} + /** + * Converts `string` to + * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the kebab cased string. + * @example + * + * _.kebabCase('Foo Bar'); + * // => 'foo-bar' + * + * _.kebabCase('fooBar'); + * // => 'foo-bar' + * + * _.kebabCase('__FOO_BAR__'); + * // => 'foo-bar' + */ + var kebabCase = createCompounder(function(result, word, index) { + return result + (index ? '-' : '') + word.toLowerCase(); + }); -function _findPermissionFor2() { - _findPermissionFor2 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(options) { - var document, client, permissions, id, type, doc, definedPermissions, perms, getFile, _getFile, _findPermissionFor, _findPermissionFor3; + /** + * Converts `string`, as space separated words, to lower case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the lower cased string. + * @example + * + * _.lowerCase('--Foo-Bar--'); + * // => 'foo bar' + * + * _.lowerCase('fooBar'); + * // => 'foo bar' + * + * _.lowerCase('__FOO_BAR__'); + * // => 'foo bar' + */ + var lowerCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + word.toLowerCase(); + }); - return _regenerator.default.wrap(function _callee4$(_context4) { - while (1) { - switch (_context4.prev = _context4.next) { - case 0: - _findPermissionFor3 = function _findPermissionFor5() { - _findPermissionFor3 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(_ref) { - var doc, client, perms, perm, parentId, parentFolder; - return _regenerator.default.wrap(function _callee3$(_context3) { - while (1) { - switch (_context3.prev = _context3.next) { - case 0: - doc = _ref.doc, client = _ref.client, perms = _ref.perms; - perm = perms.find(function (perm) { - if (perm.values) { - var selector = perm.selector || 'id'; - var value = doc[selector]; - return perm.values.includes(value); - } else { - return true; - } - }); + /** + * Converts the first character of `string` to lower case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.lowerFirst('Fred'); + * // => 'fred' + * + * _.lowerFirst('FRED'); + * // => 'fRED' + */ + var lowerFirst = createCaseFirst('toLowerCase'); - if (!perm) { - _context3.next = 6; - break; - } + /** + * Pads `string` on the left and right sides if it's shorter than `length`. + * Padding characters are truncated if they can't be evenly divided by `length`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.pad('abc', 8); + * // => ' abc ' + * + * _.pad('abc', 8, '_-'); + * // => '_-abc_-_' + * + * _.pad('abc', 3); + * // => 'abc' + */ + function pad(string, length, chars) { + string = toString(string); + length = toInteger(length); - return _context3.abrupt("return", perm); + var strLength = length ? stringSize(string) : 0; + if (!length || strLength >= length) { + return string; + } + var mid = (length - strLength) / 2; + return ( + createPadding(nativeFloor(mid), chars) + + string + + createPadding(nativeCeil(mid), chars) + ); + } - case 6: - if (!(type === 'io.cozy.files')) { - _context3.next = 16; - break; - } + /** + * Pads `string` on the right side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padEnd('abc', 6); + * // => 'abc ' + * + * _.padEnd('abc', 6, '_-'); + * // => 'abc_-_' + * + * _.padEnd('abc', 3); + * // => 'abc' + */ + function padEnd(string, length, chars) { + string = toString(string); + length = toInteger(length); - // for files, we recursively try to check for parent folders - parentId = (0, _file.getParentFolderId)(doc); - _context3.t0 = parentId; + var strLength = length ? stringSize(string) : 0; + return (length && strLength < length) + ? (string + createPadding(length - strLength, chars)) + : string; + } - if (!_context3.t0) { - _context3.next = 13; - break; - } + /** + * Pads `string` on the left side if it's shorter than `length`. Padding + * characters are truncated if they exceed `length`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to pad. + * @param {number} [length=0] The padding length. + * @param {string} [chars=' '] The string used as padding. + * @returns {string} Returns the padded string. + * @example + * + * _.padStart('abc', 6); + * // => ' abc' + * + * _.padStart('abc', 6, '_-'); + * // => '_-_abc' + * + * _.padStart('abc', 3); + * // => 'abc' + */ + function padStart(string, length, chars) { + string = toString(string); + length = toInteger(length); - _context3.next = 12; - return getFile(parentId); + var strLength = length ? stringSize(string) : 0; + return (length && strLength < length) + ? (createPadding(length - strLength, chars) + string) + : string; + } - case 12: - _context3.t0 = _context3.sent; + /** + * Converts `string` to an integer of the specified radix. If `radix` is + * `undefined` or `0`, a `radix` of `10` is used unless `value` is a + * hexadecimal, in which case a `radix` of `16` is used. + * + * **Note:** This method aligns with the + * [ES5 implementation](https://es5.github.io/#x15.1.2.2) of `parseInt`. + * + * @static + * @memberOf _ + * @since 1.1.0 + * @category String + * @param {string} string The string to convert. + * @param {number} [radix=10] The radix to interpret `value` by. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {number} Returns the converted integer. + * @example + * + * _.parseInt('08'); + * // => 8 + * + * _.map(['6', '08', '10'], _.parseInt); + * // => [6, 8, 10] + */ + function parseInt(string, radix, guard) { + if (guard || radix == null) { + radix = 0; + } else if (radix) { + radix = +radix; + } + return nativeParseInt(toString(string).replace(reTrimStart, ''), radix || 0); + } - case 13: - parentFolder = _context3.t0; + /** + * Repeats the given string `n` times. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to repeat. + * @param {number} [n=1] The number of times to repeat the string. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {string} Returns the repeated string. + * @example + * + * _.repeat('*', 3); + * // => '***' + * + * _.repeat('abc', 2); + * // => 'abcabc' + * + * _.repeat('abc', 0); + * // => '' + */ + function repeat(string, n, guard) { + if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + return baseRepeat(toString(string), n); + } - if (!parentFolder) { - _context3.next = 16; - break; - } + /** + * Replaces matches for `pattern` in `string` with `replacement`. + * + * **Note:** This method is based on + * [`String#replace`](https://mdn.io/String/replace). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to modify. + * @param {RegExp|string} pattern The pattern to replace. + * @param {Function|string} replacement The match replacement. + * @returns {string} Returns the modified string. + * @example + * + * _.replace('Hi Fred', 'Fred', 'Barney'); + * // => 'Hi Barney' + */ + function replace() { + var args = arguments, + string = toString(args[0]); - return _context3.abrupt("return", _findPermissionFor({ - doc: parentFolder, - perms: perms, - client: client - })); + return args.length < 3 ? string : string.replace(args[1], args[2]); + } - case 16: - return _context3.abrupt("return", undefined); + /** + * Converts `string` to + * [snake case](https://en.wikipedia.org/wiki/Snake_case). + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the snake cased string. + * @example + * + * _.snakeCase('Foo Bar'); + * // => 'foo_bar' + * + * _.snakeCase('fooBar'); + * // => 'foo_bar' + * + * _.snakeCase('--FOO-BAR--'); + * // => 'foo_bar' + */ + var snakeCase = createCompounder(function(result, word, index) { + return result + (index ? '_' : '') + word.toLowerCase(); + }); - case 17: - case "end": - return _context3.stop(); - } - } - }, _callee3); - })); - return _findPermissionFor3.apply(this, arguments); - }; + /** + * Splits `string` by `separator`. + * + * **Note:** This method is based on + * [`String#split`](https://mdn.io/String/split). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to split. + * @param {RegExp|string} separator The separator pattern to split by. + * @param {number} [limit] The length to truncate results to. + * @returns {Array} Returns the string segments. + * @example + * + * _.split('a-b-c', '-', 2); + * // => ['a', 'b'] + */ + function split(string, separator, limit) { + if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) { + separator = limit = undefined; + } + limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0; + if (!limit) { + return []; + } + string = toString(string); + if (string && ( + typeof separator == 'string' || + (separator != null && !isRegExp(separator)) + )) { + separator = baseToString(separator); + if (!separator && hasUnicode(string)) { + return castSlice(stringToArray(string), 0, limit); + } + } + return string.split(separator, limit); + } - _findPermissionFor = function _findPermissionFor4(_x5) { - return _findPermissionFor3.apply(this, arguments); - }; + /** + * Converts `string` to + * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage). + * + * @static + * @memberOf _ + * @since 3.1.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the start cased string. + * @example + * + * _.startCase('--foo-bar--'); + * // => 'Foo Bar' + * + * _.startCase('fooBar'); + * // => 'Foo Bar' + * + * _.startCase('__FOO_BAR__'); + * // => 'FOO BAR' + */ + var startCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + upperFirst(word); + }); - _getFile = function _getFile3() { - _getFile = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(id) { - var query, data; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - query = (0, _dsl.Q)('io.cozy.files').getById(id); - _context2.next = 3; - return client.query(query); + /** + * Checks if `string` starts with the given target string. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {string} [target] The string to search for. + * @param {number} [position=0] The position to search from. + * @returns {boolean} Returns `true` if `string` starts with `target`, + * else `false`. + * @example + * + * _.startsWith('abc', 'a'); + * // => true + * + * _.startsWith('abc', 'b'); + * // => false + * + * _.startsWith('abc', 'b', 1); + * // => true + */ + function startsWith(string, target, position) { + string = toString(string); + position = position == null + ? 0 + : baseClamp(toInteger(position), 0, string.length); - case 3: - data = _context2.sent; - return _context2.abrupt("return", data && data.data); + target = baseToString(target); + return string.slice(position, position + target.length) == target; + } - case 5: - case "end": - return _context2.stop(); - } - } - }, _callee2); - })); - return _getFile.apply(this, arguments); - }; + /** + * Creates a compiled template function that can interpolate data properties + * in "interpolate" delimiters, HTML-escape interpolated data properties in + * "escape" delimiters, and execute JavaScript in "evaluate" delimiters. Data + * properties may be accessed as free variables in the template. If a setting + * object is given, it takes precedence over `_.templateSettings` values. + * + * **Note:** In the development build `_.template` utilizes + * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl) + * for easier debugging. + * + * For more information on precompiling templates see + * [lodash's custom builds documentation](https://lodash.com/custom-builds). + * + * For more information on Chrome extension sandboxes see + * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval). + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category String + * @param {string} [string=''] The template string. + * @param {Object} [options={}] The options object. + * @param {RegExp} [options.escape=_.templateSettings.escape] + * The HTML "escape" delimiter. + * @param {RegExp} [options.evaluate=_.templateSettings.evaluate] + * The "evaluate" delimiter. + * @param {Object} [options.imports=_.templateSettings.imports] + * An object to import into the template as free variables. + * @param {RegExp} [options.interpolate=_.templateSettings.interpolate] + * The "interpolate" delimiter. + * @param {string} [options.sourceURL='lodash.templateSources[n]'] + * The sourceURL of the compiled template. + * @param {string} [options.variable='obj'] + * The data object variable name. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Function} Returns the compiled template function. + * @example + * + * // Use the "interpolate" delimiter to create a compiled template. + * var compiled = _.template('hello <%= user %>!'); + * compiled({ 'user': 'fred' }); + * // => 'hello fred!' + * + * // Use the HTML "escape" delimiter to escape data property values. + * var compiled = _.template('<b><%- value %></b>'); + * compiled({ 'value': '<script>' }); + * // => '<b><script></b>' + * + * // Use the "evaluate" delimiter to execute JavaScript and generate HTML. + * var compiled = _.template('<% _.forEach(users, function(user) { %><li><%- user %></li><% }); %>'); + * compiled({ 'users': ['fred', 'barney'] }); + * // => '<li>fred</li><li>barney</li>' + * + * // Use the internal `print` function in "evaluate" delimiters. + * var compiled = _.template('<% print("hello " + user); %>!'); + * compiled({ 'user': 'barney' }); + * // => 'hello barney!' + * + * // Use the ES template literal delimiter as an "interpolate" delimiter. + * // Disable support by replacing the "interpolate" delimiter. + * var compiled = _.template('hello ${ user }!'); + * compiled({ 'user': 'pebbles' }); + * // => 'hello pebbles!' + * + * // Use backslashes to treat delimiters as plain text. + * var compiled = _.template('<%= "\\<%- value %\\>" %>'); + * compiled({ 'value': 'ignored' }); + * // => '<%- value %>' + * + * // Use the `imports` option to import `jQuery` as `jq`. + * var text = '<% jq.each(users, function(user) { %><li><%- user %></li><% }); %>'; + * var compiled = _.template(text, { 'imports': { 'jq': jQuery } }); + * compiled({ 'users': ['fred', 'barney'] }); + * // => '<li>fred</li><li>barney</li>' + * + * // Use the `sourceURL` option to specify a custom sourceURL for the template. + * var compiled = _.template('hello <%= user %>!', { 'sourceURL': '/basic/greeting.jst' }); + * compiled(data); + * // => Find the source of "greeting.jst" under the Sources tab or Resources panel of the web inspector. + * + * // Use the `variable` option to ensure a with-statement isn't used in the compiled template. + * var compiled = _.template('hi <%= data.user %>!', { 'variable': 'data' }); + * compiled.source; + * // => function(data) { + * // var __t, __p = ''; + * // __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!'; + * // return __p; + * // } + * + * // Use custom template delimiters. + * _.templateSettings.interpolate = /{{([\s\S]+?)}}/g; + * var compiled = _.template('hello {{ user }}!'); + * compiled({ 'user': 'mustache' }); + * // => 'hello mustache!' + * + * // Use the `source` property to inline compiled templates for meaningful + * // line numbers in error messages and stack traces. + * fs.writeFileSync(path.join(process.cwd(), 'jst.js'), '\ + * var JST = {\ + * "main": ' + _.template(mainText).source + '\ + * };\ + * '); + */ + function template(string, options, guard) { + // Based on John Resig's `tmpl` implementation + // (http://ejohn.org/blog/javascript-micro-templating/) + // and Laura Doktorova's doT.js (https://github.com/olado/doT). + var settings = lodash.templateSettings; - getFile = function _getFile2(_x4) { - return _getFile.apply(this, arguments); - }; + if (guard && isIterateeCall(string, options, guard)) { + options = undefined; + } + string = toString(string); + options = assignInWith({}, options, settings, customDefaultsAssignIn); - document = options.document, client = options.client, permissions = options.permissions; - id = document._id || document.id; - type = document._type || document.type; - doc = _objectSpread(_objectSpread({}, document), {}, { - id: id, - type: type - }); + var imports = assignInWith({}, options.imports, settings.imports, customDefaultsAssignIn), + importsKeys = keys(imports), + importsValues = baseValues(imports, importsKeys); - if (!permissions) { - _context4.next = 12; - break; - } + var isEscaping, + isEvaluating, + index = 0, + interpolate = options.interpolate || reNoMatch, + source = "__p += '"; - _context4.t0 = permissions; - _context4.next = 15; - break; + // Compile the regexp to match each delimiter. + var reDelimiters = RegExp( + (options.escape || reNoMatch).source + '|' + + interpolate.source + '|' + + (interpolate === reInterpolate ? reEsTemplate : reNoMatch).source + '|' + + (options.evaluate || reNoMatch).source + '|$' + , 'g'); - case 12: - _context4.next = 14; - return fetchOwn(client); + // Use a sourceURL for easier debugging. + // The sourceURL gets injected into the source that's eval-ed, so be careful + // to normalize all kinds of whitespace, so e.g. newlines (and unicode versions of it) can't sneak in + // and escape the comment, thus injecting code that gets evaled. + var sourceURL = '//# sourceURL=' + + (hasOwnProperty.call(options, 'sourceURL') + ? (options.sourceURL + '').replace(/\s/g, ' ') + : ('lodash.templateSources[' + (++templateCounter) + ']') + ) + '\n'; - case 14: - _context4.t0 = _context4.sent; + string.replace(reDelimiters, function(match, escapeValue, interpolateValue, esTemplateValue, evaluateValue, offset) { + interpolateValue || (interpolateValue = esTemplateValue); - case 15: - definedPermissions = _context4.t0; - perms = definedPermissions.filter(function (p) { - return isForType(p, type); - }); - return _context4.abrupt("return", _findPermissionFor({ - doc: doc, - client: client, - perms: perms - })); + // Escape characters that can't be included in string literals. + source += string.slice(index, offset).replace(reUnescapedString, escapeStringChar); - case 18: - case "end": - return _context4.stop(); + // Replace delimiters with snippets. + if (escapeValue) { + isEscaping = true; + source += "' +\n__e(" + escapeValue + ") +\n'"; } - } - }, _callee4); - })); - return _findPermissionFor2.apply(this, arguments); -} + if (evaluateValue) { + isEvaluating = true; + source += "';\n" + evaluateValue + ";\n__p += '"; + } + if (interpolateValue) { + source += "' +\n((__t = (" + interpolateValue + ")) == null ? '' : __t) +\n'"; + } + index = offset + match.length; -function isDocumentReadOnly(_x3) { - return _isDocumentReadOnly.apply(this, arguments); -} -/** - * When a cozy to cozy sharing is created Cozy's stack creates a - * shortcut in `/Inbox of sharing` on the recipient's cozy to have a - * quick access even when the sharing is not accepted yet. - * - * However, this file is created only if the stack knows the URL of the cozy. - * This is not always the case. - * - * This method is here to tell us if the shortcut's file is created - * on the recipient's cozy. It can be used to make an UI distinction between the - * both situation. - * - * @typedef {object} Permission - * @property {object} data Permission document - * @property {Array} included Member information from the sharing - * - * @param {Permission} permission From getOwnPermissions mainly - */ + // The JS engine embedded in Adobe products needs `match` returned in + // order to produce the correct `offset` value. + return match; + }); + source += "';\n"; -function _isDocumentReadOnly() { - _isDocumentReadOnly = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(args) { - var document, client, writability, _args$permissions, permissions, perm; + // If `variable` is not specified wrap a with-statement around the generated + // code to add the data object to the top of the scope chain. + var variable = hasOwnProperty.call(options, 'variable') && options.variable; + if (!variable) { + source = 'with (obj) {\n' + source + '\n}\n'; + } + // Throw an error if a forbidden character was found in `variable`, to prevent + // potential command injection attacks. + else if (reForbiddenIdentifierChars.test(variable)) { + throw new Error(INVALID_TEMPL_VAR_ERROR_TEXT); + } - return _regenerator.default.wrap(function _callee5$(_context5) { - while (1) { - switch (_context5.prev = _context5.next) { - case 0: - document = args.document; - client = args.client; - writability = args.writability; - _args$permissions = args.permissions; + // Cleanup code by stripping empty strings. + source = (isEvaluating ? source.replace(reEmptyStringLeading, '') : source) + .replace(reEmptyStringMiddle, '$1') + .replace(reEmptyStringTrailing, '$1;'); - if (!(_args$permissions === void 0)) { - _context5.next = 10; - break; - } + // Frame code as the function body. + source = 'function(' + (variable || 'obj') + ') {\n' + + (variable + ? '' + : 'obj || (obj = {});\n' + ) + + "var __t, __p = ''" + + (isEscaping + ? ', __e = _.escape' + : '' + ) + + (isEvaluating + ? ', __j = Array.prototype.join;\n' + + "function print() { __p += __j.call(arguments, '') }\n" + : ';\n' + ) + + source + + 'return __p\n}'; - _context5.next = 7; - return fetchOwn(client); + var result = attempt(function() { + return Function(importsKeys, sourceURL + 'return ' + source) + .apply(undefined, importsValues); + }); - case 7: - _context5.t0 = _context5.sent; - _context5.next = 11; - break; + // Provide the compiled function's source by its `toString` method or + // the `source` property as a convenience for inlining compiled templates. + result.source = source; + if (isError(result)) { + throw result; + } + return result; + } - case 10: - _context5.t0 = _args$permissions; + /** + * Converts `string`, as a whole, to lower case just like + * [String#toLowerCase](https://mdn.io/toLowerCase). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the lower cased string. + * @example + * + * _.toLower('--Foo-Bar--'); + * // => '--foo-bar--' + * + * _.toLower('fooBar'); + * // => 'foobar' + * + * _.toLower('__FOO_BAR__'); + * // => '__foo_bar__' + */ + function toLower(value) { + return toString(value).toLowerCase(); + } - case 11: - permissions = _context5.t0; + /** + * Converts `string`, as a whole, to upper case just like + * [String#toUpperCase](https://mdn.io/toUpperCase). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the upper cased string. + * @example + * + * _.toUpper('--foo-bar--'); + * // => '--FOO-BAR--' + * + * _.toUpper('fooBar'); + * // => 'FOOBAR' + * + * _.toUpper('__foo_bar__'); + * // => '__FOO_BAR__' + */ + function toUpper(value) { + return toString(value).toUpperCase(); + } - if (!(permissions.length <= 1)) { - _context5.next = 16; - break; - } + /** + * Removes leading and trailing whitespace or specified characters from `string`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to trim. + * @param {string} [chars=whitespace] The characters to trim. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {string} Returns the trimmed string. + * @example + * + * _.trim(' abc '); + * // => 'abc' + * + * _.trim('-_-abc-_-', '_-'); + * // => 'abc' + * + * _.map([' foo ', ' bar '], _.trim); + * // => ['foo', 'bar'] + */ + function trim(string, chars, guard) { + string = toString(string); + if (string && (guard || chars === undefined)) { + return baseTrim(string); + } + if (!string || !(chars = baseToString(chars))) { + return string; + } + var strSymbols = stringToArray(string), + chrSymbols = stringToArray(chars), + start = charsStartIndex(strSymbols, chrSymbols), + end = charsEndIndex(strSymbols, chrSymbols) + 1; - _context5.t1 = permissions[0] // shortcut because most of time, there will be only one permission block - ; - _context5.next = 19; - break; + return castSlice(strSymbols, start, end).join(''); + } - case 16: - _context5.next = 18; - return findPermissionFor({ - document: document, - client: client, - permissions: permissions - }); + /** + * Removes trailing whitespace or specified characters from `string`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to trim. + * @param {string} [chars=whitespace] The characters to trim. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {string} Returns the trimmed string. + * @example + * + * _.trimEnd(' abc '); + * // => ' abc' + * + * _.trimEnd('-_-abc-_-', '_-'); + * // => '-_-abc' + */ + function trimEnd(string, chars, guard) { + string = toString(string); + if (string && (guard || chars === undefined)) { + return string.slice(0, trimmedEndIndex(string) + 1); + } + if (!string || !(chars = baseToString(chars))) { + return string; + } + var strSymbols = stringToArray(string), + end = charsEndIndex(strSymbols, stringToArray(chars)) + 1; - case 18: - _context5.t1 = _context5.sent; + return castSlice(strSymbols, 0, end).join(''); + } - case 19: - perm = _context5.t1; + /** + * Removes leading whitespace or specified characters from `string`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to trim. + * @param {string} [chars=whitespace] The characters to trim. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {string} Returns the trimmed string. + * @example + * + * _.trimStart(' abc '); + * // => 'abc ' + * + * _.trimStart('-_-abc-_-', '_-'); + * // => 'abc-_-' + */ + function trimStart(string, chars, guard) { + string = toString(string); + if (string && (guard || chars === undefined)) { + return string.replace(reTrimStart, ''); + } + if (!string || !(chars = baseToString(chars))) { + return string; + } + var strSymbols = stringToArray(string), + start = charsStartIndex(strSymbols, stringToArray(chars)); - if (!perm) { - _context5.next = 24; - break; - } + return castSlice(strSymbols, start).join(''); + } - return _context5.abrupt("return", isReadOnly(perm, { - writability: writability - })); + /** + * Truncates `string` if it's longer than the given maximum string length. + * The last characters of the truncated string are replaced with the omission + * string which defaults to "...". + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to truncate. + * @param {Object} [options={}] The options object. + * @param {number} [options.length=30] The maximum string length. + * @param {string} [options.omission='...'] The string to indicate text is omitted. + * @param {RegExp|string} [options.separator] The separator pattern to truncate to. + * @returns {string} Returns the truncated string. + * @example + * + * _.truncate('hi-diddly-ho there, neighborino'); + * // => 'hi-diddly-ho there, neighbo...' + * + * _.truncate('hi-diddly-ho there, neighborino', { + * 'length': 24, + * 'separator': ' ' + * }); + * // => 'hi-diddly-ho there,...' + * + * _.truncate('hi-diddly-ho there, neighborino', { + * 'length': 24, + * 'separator': /,? +/ + * }); + * // => 'hi-diddly-ho there...' + * + * _.truncate('hi-diddly-ho there, neighborino', { + * 'omission': ' [...]' + * }); + * // => 'hi-diddly-ho there, neig [...]' + */ + function truncate(string, options) { + var length = DEFAULT_TRUNC_LENGTH, + omission = DEFAULT_TRUNC_OMISSION; - case 24: - console.warn("can't find the document in current attached permissions"); - return _context5.abrupt("return", undefined); + if (isObject(options)) { + var separator = 'separator' in options ? options.separator : separator; + length = 'length' in options ? toInteger(options.length) : length; + omission = 'omission' in options ? baseToString(options.omission) : omission; + } + string = toString(string); - case 26: - case "end": - return _context5.stop(); - } + var strLength = string.length; + if (hasUnicode(string)) { + var strSymbols = stringToArray(string); + strLength = strSymbols.length; } - }, _callee5); - })); - return _isDocumentReadOnly.apply(this, arguments); -} + if (length >= strLength) { + return string; + } + var end = length - stringSize(omission); + if (end < 1) { + return omission; + } + var result = strSymbols + ? castSlice(strSymbols, 0, end).join('') + : string.slice(0, end); -var isShortcutCreatedOnTheRecipientCozy = function isShortcutCreatedOnTheRecipientCozy(permission) { - if (!permission.included) return false; - var sharingMember = permission.included.find(function (item) { - return item.type === 'io.cozy.sharings.members'; - }); + if (separator === undefined) { + return result + omission; + } + if (strSymbols) { + end += (result.length - end); + } + if (isRegExp(separator)) { + if (string.slice(end).search(separator)) { + var match, + substring = result; - if (sharingMember && sharingMember.attributes.instance) { - return true; - } + if (!separator.global) { + separator = RegExp(separator.source, toString(reFlags.exec(separator)) + 'g'); + } + separator.lastIndex = 0; + while ((match = separator.exec(substring))) { + var newEnd = match.index; + } + result = result.slice(0, newEnd === undefined ? end : newEnd); + } + } else if (string.indexOf(baseToString(separator), end) != end) { + var index = result.lastIndexOf(separator); + if (index > -1) { + result = result.slice(0, index); + } + } + return result + omission; + } - return false; -}; + /** + * The inverse of `_.escape`; this method converts the HTML entities + * `&`, `<`, `>`, `"`, and `'` in `string` to + * their corresponding characters. + * + * **Note:** No other HTML entities are unescaped. To unescape additional + * HTML entities use a third-party library like [_he_](https://mths.be/he). + * + * @static + * @memberOf _ + * @since 0.6.0 + * @category String + * @param {string} [string=''] The string to unescape. + * @returns {string} Returns the unescaped string. + * @example + * + * _.unescape('fred, barney, & pebbles'); + * // => 'fred, barney, & pebbles' + */ + function unescape(string) { + string = toString(string); + return (string && reHasEscapedHtml.test(string)) + ? string.replace(reEscapedHtml, unescapeHtmlChar) + : string; + } -exports.isShortcutCreatedOnTheRecipientCozy = isShortcutCreatedOnTheRecipientCozy; + /** + * Converts `string`, as space separated words, to upper case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the upper cased string. + * @example + * + * _.upperCase('--foo-bar'); + * // => 'FOO BAR' + * + * _.upperCase('fooBar'); + * // => 'FOO BAR' + * + * _.upperCase('__foo_bar__'); + * // => 'FOO BAR' + */ + var upperCase = createCompounder(function(result, word, index) { + return result + (index ? ' ' : '') + word.toUpperCase(); + }); -/***/ }), -/* 829 */ -/***/ (function(module, exports, __webpack_require__) { + /** + * Converts the first character of `string` to upper case. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.upperFirst('fred'); + * // => 'Fred' + * + * _.upperFirst('FRED'); + * // => 'FRED' + */ + var upperFirst = createCaseFirst('toUpperCase'); -"use strict"; + /** + * Splits `string` into an array of its words. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category String + * @param {string} [string=''] The string to inspect. + * @param {RegExp|string} [pattern] The pattern to match words. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the words of `string`. + * @example + * + * _.words('fred, barney, & pebbles'); + * // => ['fred', 'barney', 'pebbles'] + * + * _.words('fred, barney, & pebbles', /[^, ]+/g); + * // => ['fred', 'barney', '&', 'pebbles'] + */ + function words(string, pattern, guard) { + string = toString(string); + pattern = guard ? undefined : pattern; + if (pattern === undefined) { + return hasUnicodeWord(string) ? unicodeWords(string) : asciiWords(string); + } + return string.match(pattern) || []; + } -var _interopRequireDefault = __webpack_require__(530); + /*------------------------------------------------------------------------*/ -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.getCreatedByApp = exports.hasBeenUpdatedByApp = void 0; + /** + * Attempts to invoke `func`, returning either the result or the caught error + * object. Any additional arguments are provided to `func` when it's invoked. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Util + * @param {Function} func The function to attempt. + * @param {...*} [args] The arguments to invoke `func` with. + * @returns {*} Returns the `func` result or error object. + * @example + * + * // Avoid throwing errors for invalid selectors. + * var elements = _.attempt(function(selector) { + * return document.querySelectorAll(selector); + * }, '>_>'); + * + * if (_.isError(elements)) { + * elements = []; + * } + */ + var attempt = baseRest(function(func, args) { + try { + return apply(func, undefined, args); + } catch (e) { + return isError(e) ? e : new Error(e); + } + }); -var _get = _interopRequireDefault(__webpack_require__(370)); + /** + * Binds methods of an object to the object itself, overwriting the existing + * method. + * + * **Note:** This method doesn't set the "length" property of bound functions. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {Object} object The object to bind and assign the bound methods to. + * @param {...(string|string[])} methodNames The object method names to bind. + * @returns {Object} Returns `object`. + * @example + * + * var view = { + * 'label': 'docs', + * 'click': function() { + * console.log('clicked ' + this.label); + * } + * }; + * + * _.bindAll(view, ['click']); + * jQuery(element).on('click', view.click); + * // => Logs 'clicked docs' when clicked. + */ + var bindAll = flatRest(function(object, methodNames) { + arrayEach(methodNames, function(key) { + key = toKey(key); + baseAssignValue(object, key, bind(object[key], object)); + }); + return object; + }); -var hasBeenUpdatedByApp = function hasBeenUpdatedByApp(doc, appSlug) { - var updatedByApps = (0, _get.default)(doc, 'cozyMetadata.updatedByApps'); - return Boolean(updatedByApps && updatedByApps.find(function (x) { - return x.slug === appSlug; - })); -}; + /** + * Creates a function that iterates over `pairs` and invokes the corresponding + * function of the first predicate to return truthy. The predicate-function + * pairs are invoked with the `this` binding and arguments of the created + * function. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Util + * @param {Array} pairs The predicate-function pairs. + * @returns {Function} Returns the new composite function. + * @example + * + * var func = _.cond([ + * [_.matches({ 'a': 1 }), _.constant('matches A')], + * [_.conforms({ 'b': _.isNumber }), _.constant('matches B')], + * [_.stubTrue, _.constant('no match')] + * ]); + * + * func({ 'a': 1, 'b': 2 }); + * // => 'matches A' + * + * func({ 'a': 0, 'b': 1 }); + * // => 'matches B' + * + * func({ 'a': '1', 'b': '2' }); + * // => 'no match' + */ + function cond(pairs) { + var length = pairs == null ? 0 : pairs.length, + toIteratee = getIteratee(); -exports.hasBeenUpdatedByApp = hasBeenUpdatedByApp; + pairs = !length ? [] : arrayMap(pairs, function(pair) { + if (typeof pair[1] != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return [toIteratee(pair[0]), pair[1]]; + }); -var getCreatedByApp = function getCreatedByApp(doc) { - return (0, _get.default)(doc, 'cozyMetadata.createdByApp'); -}; + return baseRest(function(args) { + var index = -1; + while (++index < length) { + var pair = pairs[index]; + if (apply(pair[0], this, args)) { + return apply(pair[1], this, args); + } + } + }); + } -exports.getCreatedByApp = getCreatedByApp; + /** + * Creates a function that invokes the predicate properties of `source` with + * the corresponding property values of a given object, returning `true` if + * all predicates return truthy, else `false`. + * + * **Note:** The created function is equivalent to `_.conformsTo` with + * `source` partially applied. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Util + * @param {Object} source The object of property predicates to conform to. + * @returns {Function} Returns the new spec function. + * @example + * + * var objects = [ + * { 'a': 2, 'b': 1 }, + * { 'a': 1, 'b': 2 } + * ]; + * + * _.filter(objects, _.conforms({ 'b': function(n) { return n > 1; } })); + * // => [{ 'a': 1, 'b': 2 }] + */ + function conforms(source) { + return baseConforms(baseClone(source, CLONE_DEEP_FLAG)); + } -/***/ }), -/* 830 */ -/***/ (function(module, exports, __webpack_require__) { + /** + * Creates a function that returns `value`. + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Util + * @param {*} value The value to return from the new function. + * @returns {Function} Returns the new constant function. + * @example + * + * var objects = _.times(2, _.constant({ 'a': 1 })); + * + * console.log(objects); + * // => [{ 'a': 1 }, { 'a': 1 }] + * + * console.log(objects[0] === objects[1]); + * // => true + */ + function constant(value) { + return function() { + return value; + }; + } -"use strict"; + /** + * Checks `value` to determine whether a default value should be returned in + * its place. The `defaultValue` is returned if `value` is `NaN`, `null`, + * or `undefined`. + * + * @static + * @memberOf _ + * @since 4.14.0 + * @category Util + * @param {*} value The value to check. + * @param {*} defaultValue The default value. + * @returns {*} Returns the resolved value. + * @example + * + * _.defaultTo(1, 10); + * // => 1 + * + * _.defaultTo(undefined, 10); + * // => 10 + */ + function defaultTo(value, defaultValue) { + return (value == null || value !== value) ? defaultValue : value; + } + /** + * Creates a function that returns the result of invoking the given functions + * with the `this` binding of the created function, where each successive + * invocation is supplied the return value of the previous. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Util + * @param {...(Function|Function[])} [funcs] The functions to invoke. + * @returns {Function} Returns the new composite function. + * @see _.flowRight + * @example + * + * function square(n) { + * return n * n; + * } + * + * var addSquare = _.flow([_.add, square]); + * addSquare(1, 2); + * // => 9 + */ + var flow = createFlow(); -var _interopRequireDefault = __webpack_require__(530); + /** + * This method is like `_.flow` except that it creates a function that + * invokes the given functions from right to left. + * + * @static + * @since 3.0.0 + * @memberOf _ + * @category Util + * @param {...(Function|Function[])} [funcs] The functions to invoke. + * @returns {Function} Returns the new composite function. + * @see _.flow + * @example + * + * function square(n) { + * return n * n; + * } + * + * var addSquare = _.flowRight([square, _.add]); + * addSquare(1, 2); + * // => 9 + */ + var flowRight = createFlow(true); -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.getIndexByFamilyNameGivenNameEmailCozyUrl = exports.getDefaultSortIndexValue = exports.makeDefaultSortIndexValue = exports.getDisplayName = exports.makeDisplayName = exports.getFullname = exports.makeFullname = exports.getPrimaryAddress = exports.getPrimaryPhone = exports.getPrimaryCozyDomain = exports.getPrimaryCozy = exports.getPrimaryEmail = exports.getInitials = exports.getPrimaryOrFirst = void 0; + /** + * This method returns the first argument it receives. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {*} value Any value. + * @returns {*} Returns `value`. + * @example + * + * var object = { 'a': 1 }; + * + * console.log(_.identity(object) === object); + * // => true + */ + function identity(value) { + return value; + } -var _get = _interopRequireDefault(__webpack_require__(370)); + /** + * Creates a function that invokes `func` with the arguments of the created + * function. If `func` is a property name, the created function returns the + * property value for a given element. If `func` is an array or object, the + * created function returns `true` for elements that contain the equivalent + * source properties, otherwise it returns `false`. + * + * @static + * @since 4.0.0 + * @memberOf _ + * @category Util + * @param {*} [func=_.identity] The value to convert to a callback. + * @returns {Function} Returns the callback. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36, 'active': true }, + * { 'user': 'fred', 'age': 40, 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.filter(users, _.iteratee({ 'user': 'barney', 'active': true })); + * // => [{ 'user': 'barney', 'age': 36, 'active': true }] + * + * // The `_.matchesProperty` iteratee shorthand. + * _.filter(users, _.iteratee(['user', 'fred'])); + * // => [{ 'user': 'fred', 'age': 40 }] + * + * // The `_.property` iteratee shorthand. + * _.map(users, _.iteratee('user')); + * // => ['barney', 'fred'] + * + * // Create custom iteratee shorthands. + * _.iteratee = _.wrap(_.iteratee, function(iteratee, func) { + * return !_.isRegExp(func) ? iteratee(func) : function(string) { + * return func.test(string); + * }; + * }); + * + * _.filter(['abc', 'def'], /ef/); + * // => ['def'] + */ + function iteratee(func) { + return baseIteratee(typeof func == 'function' ? func : baseClone(func, CLONE_DEEP_FLAG)); + } -var _isEmpty = _interopRequireDefault(__webpack_require__(831)); + /** + * Creates a function that performs a partial deep comparison between a given + * object and `source`, returning `true` if the given object has equivalent + * property values, else `false`. + * + * **Note:** The created function is equivalent to `_.isMatch` with `source` + * partially applied. + * + * Partial comparisons will match empty array and empty object `source` + * values against any array or object value, respectively. See `_.isEqual` + * for a list of supported value comparisons. + * + * **Note:** Multiple values can be checked by combining several matchers + * using `_.overSome` + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Util + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new spec function. + * @example + * + * var objects = [ + * { 'a': 1, 'b': 2, 'c': 3 }, + * { 'a': 4, 'b': 5, 'c': 6 } + * ]; + * + * _.filter(objects, _.matches({ 'a': 4, 'c': 6 })); + * // => [{ 'a': 4, 'b': 5, 'c': 6 }] + * + * // Checking for several possible values + * _.filter(objects, _.overSome([_.matches({ 'a': 1 }), _.matches({ 'a': 4 })])); + * // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }] + */ + function matches(source) { + return baseMatches(baseClone(source, CLONE_DEEP_FLAG)); + } -var getPrimaryOrFirst = function getPrimaryOrFirst(property) { - return function (obj) { - return !obj[property] || obj[property].length === 0 ? '' : obj[property].find(function (property) { - return property.primary; - }) || obj[property][0]; - }; -}; -/** - * Returns the initials of the contact. - * - * @param {object} contact - A contact - * @returns {string} - the contact's initials - */ + /** + * Creates a function that performs a partial deep comparison between the + * value at `path` of a given object to `srcValue`, returning `true` if the + * object value is equivalent, else `false`. + * + * **Note:** Partial comparisons will match empty array and empty object + * `srcValue` values against any array or object value, respectively. See + * `_.isEqual` for a list of supported value comparisons. + * + * **Note:** Multiple values can be checked by combining several matchers + * using `_.overSome` + * + * @static + * @memberOf _ + * @since 3.2.0 + * @category Util + * @param {Array|string} path The path of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + * @example + * + * var objects = [ + * { 'a': 1, 'b': 2, 'c': 3 }, + * { 'a': 4, 'b': 5, 'c': 6 } + * ]; + * + * _.find(objects, _.matchesProperty('a', 4)); + * // => { 'a': 4, 'b': 5, 'c': 6 } + * + * // Checking for several possible values + * _.filter(objects, _.overSome([_.matchesProperty('a', 1), _.matchesProperty('a', 4)])); + * // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }] + */ + function matchesProperty(path, srcValue) { + return baseMatchesProperty(path, baseClone(srcValue, CLONE_DEEP_FLAG)); + } + /** + * Creates a function that invokes the method at `path` of a given object. + * Any additional arguments are provided to the invoked method. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Util + * @param {Array|string} path The path of the method to invoke. + * @param {...*} [args] The arguments to invoke the method with. + * @returns {Function} Returns the new invoker function. + * @example + * + * var objects = [ + * { 'a': { 'b': _.constant(2) } }, + * { 'a': { 'b': _.constant(1) } } + * ]; + * + * _.map(objects, _.method('a.b')); + * // => [2, 1] + * + * _.map(objects, _.method(['a', 'b'])); + * // => [2, 1] + */ + var method = baseRest(function(path, args) { + return function(object) { + return baseInvoke(object, path, args); + }; + }); -exports.getPrimaryOrFirst = getPrimaryOrFirst; + /** + * The opposite of `_.method`; this method creates a function that invokes + * the method at a given path of `object`. Any additional arguments are + * provided to the invoked method. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Util + * @param {Object} object The object to query. + * @param {...*} [args] The arguments to invoke the method with. + * @returns {Function} Returns the new invoker function. + * @example + * + * var array = _.times(3, _.constant), + * object = { 'a': array, 'b': array, 'c': array }; + * + * _.map(['a[2]', 'c[0]'], _.methodOf(object)); + * // => [2, 0] + * + * _.map([['a', '2'], ['c', '0']], _.methodOf(object)); + * // => [2, 0] + */ + var methodOf = baseRest(function(object, args) { + return function(path) { + return baseInvoke(object, path, args); + }; + }); -var getInitials = function getInitials(contact) { - if (contact.name && !(0, _isEmpty.default)(contact.name)) { - return ['givenName', 'familyName'].map(function (part) { - return (0, _get.default)(contact, ['name', part, 0], ''); - }).join('').toUpperCase(); - } + /** + * Adds all own enumerable string keyed function properties of a source + * object to the destination object. If `object` is a function, then methods + * are added to its prototype as well. + * + * **Note:** Use `_.runInContext` to create a pristine `lodash` function to + * avoid conflicts caused by modifying the original. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {Function|Object} [object=lodash] The destination object. + * @param {Object} source The object of functions to add. + * @param {Object} [options={}] The options object. + * @param {boolean} [options.chain=true] Specify whether mixins are chainable. + * @returns {Function|Object} Returns `object`. + * @example + * + * function vowels(string) { + * return _.filter(string, function(v) { + * return /[aeiou]/i.test(v); + * }); + * } + * + * _.mixin({ 'vowels': vowels }); + * _.vowels('fred'); + * // => ['e'] + * + * _('fred').vowels().value(); + * // => ['e'] + * + * _.mixin({ 'vowels': vowels }, { 'chain': false }); + * _('fred').vowels(); + * // => ['e'] + */ + function mixin(object, source, options) { + var props = keys(source), + methodNames = baseFunctions(source, props); - var email = getPrimaryEmail(contact); + if (options == null && + !(isObject(source) && (methodNames.length || !props.length))) { + options = source; + source = object; + object = this; + methodNames = baseFunctions(source, keys(source)); + } + var chain = !(isObject(options) && 'chain' in options) || !!options.chain, + isFunc = isFunction(object); - if (email) { - return email[0].toUpperCase(); - } + arrayEach(methodNames, function(methodName) { + var func = source[methodName]; + object[methodName] = func; + if (isFunc) { + object.prototype[methodName] = function() { + var chainAll = this.__chain__; + if (chain || chainAll) { + var result = object(this.__wrapped__), + actions = result.__actions__ = copyArray(this.__actions__); - var cozy = getPrimaryCozyDomain(contact); + actions.push({ 'func': func, 'args': arguments, 'thisArg': object }); + result.__chain__ = chainAll; + return result; + } + return func.apply(object, arrayPush([this.value()], arguments)); + }; + } + }); - if (cozy) { - return cozy[0].toUpperCase(); - } + return object; + } - return ''; -}; -/** - * Returns the contact's main email - * - * @param {object} contact - A contact - * @returns {string} - The contact's main email - */ + /** + * Reverts the `_` variable to its previous value and returns a reference to + * the `lodash` function. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @returns {Function} Returns the `lodash` function. + * @example + * + * var lodash = _.noConflict(); + */ + function noConflict() { + if (root._ === this) { + root._ = oldDash; + } + return this; + } + /** + * This method returns `undefined`. + * + * @static + * @memberOf _ + * @since 2.3.0 + * @category Util + * @example + * + * _.times(2, _.noop); + * // => [undefined, undefined] + */ + function noop() { + // No operation performed. + } -exports.getInitials = getInitials; + /** + * Creates a function that gets the argument at index `n`. If `n` is negative, + * the nth argument from the end is returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Util + * @param {number} [n=0] The index of the argument to return. + * @returns {Function} Returns the new pass-thru function. + * @example + * + * var func = _.nthArg(1); + * func('a', 'b', 'c', 'd'); + * // => 'b' + * + * var func = _.nthArg(-2); + * func('a', 'b', 'c', 'd'); + * // => 'c' + */ + function nthArg(n) { + n = toInteger(n); + return baseRest(function(args) { + return baseNth(args, n); + }); + } -var getPrimaryEmail = function getPrimaryEmail(contact) { - return Array.isArray(contact.email) ? getPrimaryOrFirst('email')(contact).address || '' : contact.email; -}; -/** - * Returns the contact's main cozy - * - * @param {object} contact - A contact - * @returns {string} - The contact's main cozy - */ + /** + * Creates a function that invokes `iteratees` with the arguments it receives + * and returns their results. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Util + * @param {...(Function|Function[])} [iteratees=[_.identity]] + * The iteratees to invoke. + * @returns {Function} Returns the new function. + * @example + * + * var func = _.over([Math.max, Math.min]); + * + * func(1, 2, 3, 4); + * // => [4, 1] + */ + var over = createOver(arrayMap); + /** + * Creates a function that checks if **all** of the `predicates` return + * truthy when invoked with the arguments it receives. + * + * Following shorthands are possible for providing predicates. + * Pass an `Object` and it will be used as an parameter for `_.matches` to create the predicate. + * Pass an `Array` of parameters for `_.matchesProperty` and the predicate will be created using them. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Util + * @param {...(Function|Function[])} [predicates=[_.identity]] + * The predicates to check. + * @returns {Function} Returns the new function. + * @example + * + * var func = _.overEvery([Boolean, isFinite]); + * + * func('1'); + * // => true + * + * func(null); + * // => false + * + * func(NaN); + * // => false + */ + var overEvery = createOver(arrayEvery); -exports.getPrimaryEmail = getPrimaryEmail; + /** + * Creates a function that checks if **any** of the `predicates` return + * truthy when invoked with the arguments it receives. + * + * Following shorthands are possible for providing predicates. + * Pass an `Object` and it will be used as an parameter for `_.matches` to create the predicate. + * Pass an `Array` of parameters for `_.matchesProperty` and the predicate will be created using them. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Util + * @param {...(Function|Function[])} [predicates=[_.identity]] + * The predicates to check. + * @returns {Function} Returns the new function. + * @example + * + * var func = _.overSome([Boolean, isFinite]); + * + * func('1'); + * // => true + * + * func(null); + * // => true + * + * func(NaN); + * // => false + * + * var matchesFunc = _.overSome([{ 'a': 1 }, { 'a': 2 }]) + * var matchesPropertyFunc = _.overSome([['a', 1], ['a', 2]]) + */ + var overSome = createOver(arraySome); -var getPrimaryCozy = function getPrimaryCozy(contact) { - return Array.isArray(contact.cozy) ? getPrimaryOrFirst('cozy')(contact).url || '' : contact.url; -}; -/** - * Returns the contact's main cozy url without protocol - * - * @param {object} contact - A contact - * @returns {string} - The contact's main cozy url - */ + /** + * Creates a function that returns the value at `path` of a given object. + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Util + * @param {Array|string} path The path of the property to get. + * @returns {Function} Returns the new accessor function. + * @example + * + * var objects = [ + * { 'a': { 'b': 2 } }, + * { 'a': { 'b': 1 } } + * ]; + * + * _.map(objects, _.property('a.b')); + * // => [2, 1] + * + * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b'); + * // => [1, 2] + */ + function property(path) { + return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path); + } + /** + * The opposite of `_.property`; this method creates a function that returns + * the value at a given path of `object`. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Util + * @param {Object} object The object to query. + * @returns {Function} Returns the new accessor function. + * @example + * + * var array = [0, 1, 2], + * object = { 'a': array, 'b': array, 'c': array }; + * + * _.map(['a[2]', 'c[0]'], _.propertyOf(object)); + * // => [2, 0] + * + * _.map([['a', '2'], ['c', '0']], _.propertyOf(object)); + * // => [2, 0] + */ + function propertyOf(object) { + return function(path) { + return object == null ? undefined : baseGet(object, path); + }; + } -exports.getPrimaryCozy = getPrimaryCozy; + /** + * Creates an array of numbers (positive and/or negative) progressing from + * `start` up to, but not including, `end`. A step of `-1` is used if a negative + * `start` is specified without an `end` or `step`. If `end` is not specified, + * it's set to `start` with `start` then set to `0`. + * + * **Note:** JavaScript follows the IEEE-754 standard for resolving + * floating-point values which can produce unexpected results. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {number} [start=0] The start of the range. + * @param {number} end The end of the range. + * @param {number} [step=1] The value to increment or decrement by. + * @returns {Array} Returns the range of numbers. + * @see _.inRange, _.rangeRight + * @example + * + * _.range(4); + * // => [0, 1, 2, 3] + * + * _.range(-4); + * // => [0, -1, -2, -3] + * + * _.range(1, 5); + * // => [1, 2, 3, 4] + * + * _.range(0, 20, 5); + * // => [0, 5, 10, 15] + * + * _.range(0, -4, -1); + * // => [0, -1, -2, -3] + * + * _.range(1, 4, 0); + * // => [1, 1, 1] + * + * _.range(0); + * // => [] + */ + var range = createRange(); -var getPrimaryCozyDomain = function getPrimaryCozyDomain(contact) { - try { - var url = new URL(getPrimaryCozy(contact)); - return url.hostname.replace(/^(www.)/g, ''); - } catch (_unused) { - return getPrimaryCozy(contact); - } -}; -/** - * Returns the contact's main phone number - * - * @param {object} contact - A contact - * @returns {string} - The contact's main phone number - */ + /** + * This method is like `_.range` except that it populates values in + * descending order. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Util + * @param {number} [start=0] The start of the range. + * @param {number} end The end of the range. + * @param {number} [step=1] The value to increment or decrement by. + * @returns {Array} Returns the range of numbers. + * @see _.inRange, _.range + * @example + * + * _.rangeRight(4); + * // => [3, 2, 1, 0] + * + * _.rangeRight(-4); + * // => [-3, -2, -1, 0] + * + * _.rangeRight(1, 5); + * // => [4, 3, 2, 1] + * + * _.rangeRight(0, 20, 5); + * // => [15, 10, 5, 0] + * + * _.rangeRight(0, -4, -1); + * // => [-3, -2, -1, 0] + * + * _.rangeRight(1, 4, 0); + * // => [1, 1, 1] + * + * _.rangeRight(0); + * // => [] + */ + var rangeRight = createRange(true); + /** + * This method returns a new empty array. + * + * @static + * @memberOf _ + * @since 4.13.0 + * @category Util + * @returns {Array} Returns the new empty array. + * @example + * + * var arrays = _.times(2, _.stubArray); + * + * console.log(arrays); + * // => [[], []] + * + * console.log(arrays[0] === arrays[1]); + * // => false + */ + function stubArray() { + return []; + } -exports.getPrimaryCozyDomain = getPrimaryCozyDomain; + /** + * This method returns `false`. + * + * @static + * @memberOf _ + * @since 4.13.0 + * @category Util + * @returns {boolean} Returns `false`. + * @example + * + * _.times(2, _.stubFalse); + * // => [false, false] + */ + function stubFalse() { + return false; + } -var getPrimaryPhone = function getPrimaryPhone(contact) { - return getPrimaryOrFirst('phone')(contact).number || ''; -}; -/** - * Returns the contact's main address - * - * @param {object} contact - A contact - * @returns {string} - The contact's main address - */ + /** + * This method returns a new empty object. + * + * @static + * @memberOf _ + * @since 4.13.0 + * @category Util + * @returns {Object} Returns the new empty object. + * @example + * + * var objects = _.times(2, _.stubObject); + * + * console.log(objects); + * // => [{}, {}] + * + * console.log(objects[0] === objects[1]); + * // => false + */ + function stubObject() { + return {}; + } + /** + * This method returns an empty string. + * + * @static + * @memberOf _ + * @since 4.13.0 + * @category Util + * @returns {string} Returns the empty string. + * @example + * + * _.times(2, _.stubString); + * // => ['', ''] + */ + function stubString() { + return ''; + } -exports.getPrimaryPhone = getPrimaryPhone; + /** + * This method returns `true`. + * + * @static + * @memberOf _ + * @since 4.13.0 + * @category Util + * @returns {boolean} Returns `true`. + * @example + * + * _.times(2, _.stubTrue); + * // => [true, true] + */ + function stubTrue() { + return true; + } -var getPrimaryAddress = function getPrimaryAddress(contact) { - return getPrimaryOrFirst('address')(contact).formattedAddress || ''; -}; -/** - * Makes fullname from contact name - * - * @param {*} contact - A contact - * @returns {string} - The contact's fullname - */ + /** + * Invokes the iteratee `n` times, returning an array of the results of + * each invocation. The iteratee is invoked with one argument; (index). + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {number} n The number of times to invoke `iteratee`. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the array of results. + * @example + * + * _.times(3, String); + * // => ['0', '1', '2'] + * + * _.times(4, _.constant(0)); + * // => [0, 0, 0, 0] + */ + function times(n, iteratee) { + n = toInteger(n); + if (n < 1 || n > MAX_SAFE_INTEGER) { + return []; + } + var index = MAX_ARRAY_LENGTH, + length = nativeMin(n, MAX_ARRAY_LENGTH); + iteratee = getIteratee(iteratee); + n -= MAX_ARRAY_LENGTH; -exports.getPrimaryAddress = getPrimaryAddress; + var result = baseTimes(length, iteratee); + while (++index < n) { + iteratee(index); + } + return result; + } -var makeFullname = function makeFullname(contact) { - if (contact.name) { - return ['namePrefix', 'givenName', 'additionalName', 'familyName', 'nameSuffix'].map(function (part) { - return contact.name[part]; - }).filter(function (part) { - return part !== undefined; - }).join(' ').trim(); - } + /** + * Converts `value` to a property path array. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Util + * @param {*} value The value to convert. + * @returns {Array} Returns the new property path array. + * @example + * + * _.toPath('a.b.c'); + * // => ['a', 'b', 'c'] + * + * _.toPath('a[0].b.c'); + * // => ['a', '0', 'b', 'c'] + */ + function toPath(value) { + if (isArray(value)) { + return arrayMap(value, toKey); + } + return isSymbol(value) ? [value] : copyArray(stringToPath(toString(value))); + } - return ''; -}; -/** - * Returns the contact's fullname - * - * @param {object} contact - A contact - * @returns {string} - The contact's fullname - */ + /** + * Generates a unique ID. If `prefix` is given, the ID is appended to it. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {string} [prefix=''] The value to prefix the ID with. + * @returns {string} Returns the unique ID. + * @example + * + * _.uniqueId('contact_'); + * // => 'contact_104' + * + * _.uniqueId(); + * // => '105' + */ + function uniqueId(prefix) { + var id = ++idCounter; + return toString(prefix) + id; + } + /*------------------------------------------------------------------------*/ -exports.makeFullname = makeFullname; + /** + * Adds two numbers. + * + * @static + * @memberOf _ + * @since 3.4.0 + * @category Math + * @param {number} augend The first number in an addition. + * @param {number} addend The second number in an addition. + * @returns {number} Returns the total. + * @example + * + * _.add(6, 4); + * // => 10 + */ + var add = createMathOperation(function(augend, addend) { + return augend + addend; + }, 0); -var getFullname = function getFullname(contact) { - if ((0, _get.default)(contact, 'fullname')) { - return contact.fullname; - } + /** + * Computes `number` rounded up to `precision`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Math + * @param {number} number The number to round up. + * @param {number} [precision=0] The precision to round up to. + * @returns {number} Returns the rounded up number. + * @example + * + * _.ceil(4.006); + * // => 5 + * + * _.ceil(6.004, 2); + * // => 6.01 + * + * _.ceil(6040, -2); + * // => 6100 + */ + var ceil = createRound('ceil'); - return makeFullname(contact); -}; -/** - * Makes displayName from contact data - * - * @param {*} contact - A contact - * @returns {string} - The contact's displayName - */ + /** + * Divide two numbers. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Math + * @param {number} dividend The first number in a division. + * @param {number} divisor The second number in a division. + * @returns {number} Returns the quotient. + * @example + * + * _.divide(6, 4); + * // => 1.5 + */ + var divide = createMathOperation(function(dividend, divisor) { + return dividend / divisor; + }, 1); + /** + * Computes `number` rounded down to `precision`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Math + * @param {number} number The number to round down. + * @param {number} [precision=0] The precision to round down to. + * @returns {number} Returns the rounded down number. + * @example + * + * _.floor(4.006); + * // => 4 + * + * _.floor(0.046, 2); + * // => 0.04 + * + * _.floor(4060, -2); + * // => 4000 + */ + var floor = createRound('floor'); -exports.getFullname = getFullname; + /** + * Computes the maximum value of `array`. If `array` is empty or falsey, + * `undefined` is returned. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @returns {*} Returns the maximum value. + * @example + * + * _.max([4, 2, 8, 6]); + * // => 8 + * + * _.max([]); + * // => undefined + */ + function max(array) { + return (array && array.length) + ? baseExtremum(array, identity, baseGt) + : undefined; + } -var makeDisplayName = function makeDisplayName(contact) { - var fullname = makeFullname(contact); - var primaryEmail = getPrimaryEmail(contact); - var primaryCozyDomain = getPrimaryCozyDomain(contact); + /** + * This method is like `_.max` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * the value is ranked. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Math + * @param {Array} array The array to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {*} Returns the maximum value. + * @example + * + * var objects = [{ 'n': 1 }, { 'n': 2 }]; + * + * _.maxBy(objects, function(o) { return o.n; }); + * // => { 'n': 2 } + * + * // The `_.property` iteratee shorthand. + * _.maxBy(objects, 'n'); + * // => { 'n': 2 } + */ + function maxBy(array, iteratee) { + return (array && array.length) + ? baseExtremum(array, getIteratee(iteratee, 2), baseGt) + : undefined; + } - if (fullname && fullname.length > 0) { - return fullname; - } + /** + * Computes the mean of the values in `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Math + * @param {Array} array The array to iterate over. + * @returns {number} Returns the mean. + * @example + * + * _.mean([4, 2, 8, 6]); + * // => 5 + */ + function mean(array) { + return baseMean(array, identity); + } - if (primaryEmail && primaryEmail.length > 0) { - return primaryEmail; - } + /** + * This method is like `_.mean` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the value to be averaged. + * The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Math + * @param {Array} array The array to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the mean. + * @example + * + * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]; + * + * _.meanBy(objects, function(o) { return o.n; }); + * // => 5 + * + * // The `_.property` iteratee shorthand. + * _.meanBy(objects, 'n'); + * // => 5 + */ + function meanBy(array, iteratee) { + return baseMean(array, getIteratee(iteratee, 2)); + } - if (primaryCozyDomain && primaryCozyDomain.length > 0) { - return primaryCozyDomain; - } + /** + * Computes the minimum value of `array`. If `array` is empty or falsey, + * `undefined` is returned. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @returns {*} Returns the minimum value. + * @example + * + * _.min([4, 2, 8, 6]); + * // => 2 + * + * _.min([]); + * // => undefined + */ + function min(array) { + return (array && array.length) + ? baseExtremum(array, identity, baseLt) + : undefined; + } - return ''; -}; -/** - * Returns a display name for the contact - * - * @param {object} contact - A contact - * @returns {string} - the contact's display name - **/ + /** + * This method is like `_.min` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * the value is ranked. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Math + * @param {Array} array The array to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {*} Returns the minimum value. + * @example + * + * var objects = [{ 'n': 1 }, { 'n': 2 }]; + * + * _.minBy(objects, function(o) { return o.n; }); + * // => { 'n': 1 } + * + * // The `_.property` iteratee shorthand. + * _.minBy(objects, 'n'); + * // => { 'n': 1 } + */ + function minBy(array, iteratee) { + return (array && array.length) + ? baseExtremum(array, getIteratee(iteratee, 2), baseLt) + : undefined; + } + /** + * Multiply two numbers. + * + * @static + * @memberOf _ + * @since 4.7.0 + * @category Math + * @param {number} multiplier The first number in a multiplication. + * @param {number} multiplicand The second number in a multiplication. + * @returns {number} Returns the product. + * @example + * + * _.multiply(6, 4); + * // => 24 + */ + var multiply = createMathOperation(function(multiplier, multiplicand) { + return multiplier * multiplicand; + }, 1); -exports.makeDisplayName = makeDisplayName; + /** + * Computes `number` rounded to `precision`. + * + * @static + * @memberOf _ + * @since 3.10.0 + * @category Math + * @param {number} number The number to round. + * @param {number} [precision=0] The precision to round to. + * @returns {number} Returns the rounded number. + * @example + * + * _.round(4.006); + * // => 4 + * + * _.round(4.006, 2); + * // => 4.01 + * + * _.round(4060, -2); + * // => 4100 + */ + var round = createRound('round'); -var getDisplayName = function getDisplayName(contact) { - if ((0, _get.default)(contact, 'displayName')) { - return contact.displayName; - } + /** + * Subtract two numbers. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Math + * @param {number} minuend The first number in a subtraction. + * @param {number} subtrahend The second number in a subtraction. + * @returns {number} Returns the difference. + * @example + * + * _.subtract(6, 4); + * // => 2 + */ + var subtract = createMathOperation(function(minuend, subtrahend) { + return minuend - subtrahend; + }, 0); - return makeDisplayName(contact); -}; -/** - * Makes 'byFamilyNameGivenNameEmailCozyUrl' index of a contact - * - * @param {object} contact - A contact - * @returns {string} - the contact's 'byFamilyNameGivenNameEmailCozyUrl' index - */ + /** + * Computes the sum of the values in `array`. + * + * @static + * @memberOf _ + * @since 3.4.0 + * @category Math + * @param {Array} array The array to iterate over. + * @returns {number} Returns the sum. + * @example + * + * _.sum([4, 2, 8, 6]); + * // => 20 + */ + function sum(array) { + return (array && array.length) + ? baseSum(array, identity) + : 0; + } + /** + * This method is like `_.sum` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the value to be summed. + * The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Math + * @param {Array} array The array to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the sum. + * @example + * + * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]; + * + * _.sumBy(objects, function(o) { return o.n; }); + * // => 20 + * + * // The `_.property` iteratee shorthand. + * _.sumBy(objects, 'n'); + * // => 20 + */ + function sumBy(array, iteratee) { + return (array && array.length) + ? baseSum(array, getIteratee(iteratee, 2)) + : 0; + } -exports.getDisplayName = getDisplayName; + /*------------------------------------------------------------------------*/ -var makeDefaultSortIndexValue = function makeDefaultSortIndexValue(contact) { - var defaultSortIndexValue = [(0, _get.default)(contact, 'name.familyName', ''), (0, _get.default)(contact, 'name.givenName', ''), getPrimaryEmail(contact), getPrimaryCozyDomain(contact)].join('').trim().toLowerCase(); + // Add methods that return wrapped values in chain sequences. + lodash.after = after; + lodash.ary = ary; + lodash.assign = assign; + lodash.assignIn = assignIn; + lodash.assignInWith = assignInWith; + lodash.assignWith = assignWith; + lodash.at = at; + lodash.before = before; + lodash.bind = bind; + lodash.bindAll = bindAll; + lodash.bindKey = bindKey; + lodash.castArray = castArray; + lodash.chain = chain; + lodash.chunk = chunk; + lodash.compact = compact; + lodash.concat = concat; + lodash.cond = cond; + lodash.conforms = conforms; + lodash.constant = constant; + lodash.countBy = countBy; + lodash.create = create; + lodash.curry = curry; + lodash.curryRight = curryRight; + lodash.debounce = debounce; + lodash.defaults = defaults; + lodash.defaultsDeep = defaultsDeep; + lodash.defer = defer; + lodash.delay = delay; + lodash.difference = difference; + lodash.differenceBy = differenceBy; + lodash.differenceWith = differenceWith; + lodash.drop = drop; + lodash.dropRight = dropRight; + lodash.dropRightWhile = dropRightWhile; + lodash.dropWhile = dropWhile; + lodash.fill = fill; + lodash.filter = filter; + lodash.flatMap = flatMap; + lodash.flatMapDeep = flatMapDeep; + lodash.flatMapDepth = flatMapDepth; + lodash.flatten = flatten; + lodash.flattenDeep = flattenDeep; + lodash.flattenDepth = flattenDepth; + lodash.flip = flip; + lodash.flow = flow; + lodash.flowRight = flowRight; + lodash.fromPairs = fromPairs; + lodash.functions = functions; + lodash.functionsIn = functionsIn; + lodash.groupBy = groupBy; + lodash.initial = initial; + lodash.intersection = intersection; + lodash.intersectionBy = intersectionBy; + lodash.intersectionWith = intersectionWith; + lodash.invert = invert; + lodash.invertBy = invertBy; + lodash.invokeMap = invokeMap; + lodash.iteratee = iteratee; + lodash.keyBy = keyBy; + lodash.keys = keys; + lodash.keysIn = keysIn; + lodash.map = map; + lodash.mapKeys = mapKeys; + lodash.mapValues = mapValues; + lodash.matches = matches; + lodash.matchesProperty = matchesProperty; + lodash.memoize = memoize; + lodash.merge = merge; + lodash.mergeWith = mergeWith; + lodash.method = method; + lodash.methodOf = methodOf; + lodash.mixin = mixin; + lodash.negate = negate; + lodash.nthArg = nthArg; + lodash.omit = omit; + lodash.omitBy = omitBy; + lodash.once = once; + lodash.orderBy = orderBy; + lodash.over = over; + lodash.overArgs = overArgs; + lodash.overEvery = overEvery; + lodash.overSome = overSome; + lodash.partial = partial; + lodash.partialRight = partialRight; + lodash.partition = partition; + lodash.pick = pick; + lodash.pickBy = pickBy; + lodash.property = property; + lodash.propertyOf = propertyOf; + lodash.pull = pull; + lodash.pullAll = pullAll; + lodash.pullAllBy = pullAllBy; + lodash.pullAllWith = pullAllWith; + lodash.pullAt = pullAt; + lodash.range = range; + lodash.rangeRight = rangeRight; + lodash.rearg = rearg; + lodash.reject = reject; + lodash.remove = remove; + lodash.rest = rest; + lodash.reverse = reverse; + lodash.sampleSize = sampleSize; + lodash.set = set; + lodash.setWith = setWith; + lodash.shuffle = shuffle; + lodash.slice = slice; + lodash.sortBy = sortBy; + lodash.sortedUniq = sortedUniq; + lodash.sortedUniqBy = sortedUniqBy; + lodash.split = split; + lodash.spread = spread; + lodash.tail = tail; + lodash.take = take; + lodash.takeRight = takeRight; + lodash.takeRightWhile = takeRightWhile; + lodash.takeWhile = takeWhile; + lodash.tap = tap; + lodash.throttle = throttle; + lodash.thru = thru; + lodash.toArray = toArray; + lodash.toPairs = toPairs; + lodash.toPairsIn = toPairsIn; + lodash.toPath = toPath; + lodash.toPlainObject = toPlainObject; + lodash.transform = transform; + lodash.unary = unary; + lodash.union = union; + lodash.unionBy = unionBy; + lodash.unionWith = unionWith; + lodash.uniq = uniq; + lodash.uniqBy = uniqBy; + lodash.uniqWith = uniqWith; + lodash.unset = unset; + lodash.unzip = unzip; + lodash.unzipWith = unzipWith; + lodash.update = update; + lodash.updateWith = updateWith; + lodash.values = values; + lodash.valuesIn = valuesIn; + lodash.without = without; + lodash.words = words; + lodash.wrap = wrap; + lodash.xor = xor; + lodash.xorBy = xorBy; + lodash.xorWith = xorWith; + lodash.zip = zip; + lodash.zipObject = zipObject; + lodash.zipObjectDeep = zipObjectDeep; + lodash.zipWith = zipWith; - if (defaultSortIndexValue.length === 0) { - return null; - } + // Add aliases. + lodash.entries = toPairs; + lodash.entriesIn = toPairsIn; + lodash.extend = assignIn; + lodash.extendWith = assignInWith; - return defaultSortIndexValue; -}; -/** - * Returns 'byFamilyNameGivenNameEmailCozyUrl' index of a contact - * - * @param {object} contact - A contact - * @returns {string} - the contact's 'byFamilyNameGivenNameEmailCozyUrl' index - */ + // Add methods to `lodash.prototype`. + mixin(lodash, lodash); + /*------------------------------------------------------------------------*/ -exports.makeDefaultSortIndexValue = makeDefaultSortIndexValue; + // Add methods that return unwrapped values in chain sequences. + lodash.add = add; + lodash.attempt = attempt; + lodash.camelCase = camelCase; + lodash.capitalize = capitalize; + lodash.ceil = ceil; + lodash.clamp = clamp; + lodash.clone = clone; + lodash.cloneDeep = cloneDeep; + lodash.cloneDeepWith = cloneDeepWith; + lodash.cloneWith = cloneWith; + lodash.conformsTo = conformsTo; + lodash.deburr = deburr; + lodash.defaultTo = defaultTo; + lodash.divide = divide; + lodash.endsWith = endsWith; + lodash.eq = eq; + lodash.escape = escape; + lodash.escapeRegExp = escapeRegExp; + lodash.every = every; + lodash.find = find; + lodash.findIndex = findIndex; + lodash.findKey = findKey; + lodash.findLast = findLast; + lodash.findLastIndex = findLastIndex; + lodash.findLastKey = findLastKey; + lodash.floor = floor; + lodash.forEach = forEach; + lodash.forEachRight = forEachRight; + lodash.forIn = forIn; + lodash.forInRight = forInRight; + lodash.forOwn = forOwn; + lodash.forOwnRight = forOwnRight; + lodash.get = get; + lodash.gt = gt; + lodash.gte = gte; + lodash.has = has; + lodash.hasIn = hasIn; + lodash.head = head; + lodash.identity = identity; + lodash.includes = includes; + lodash.indexOf = indexOf; + lodash.inRange = inRange; + lodash.invoke = invoke; + lodash.isArguments = isArguments; + lodash.isArray = isArray; + lodash.isArrayBuffer = isArrayBuffer; + lodash.isArrayLike = isArrayLike; + lodash.isArrayLikeObject = isArrayLikeObject; + lodash.isBoolean = isBoolean; + lodash.isBuffer = isBuffer; + lodash.isDate = isDate; + lodash.isElement = isElement; + lodash.isEmpty = isEmpty; + lodash.isEqual = isEqual; + lodash.isEqualWith = isEqualWith; + lodash.isError = isError; + lodash.isFinite = isFinite; + lodash.isFunction = isFunction; + lodash.isInteger = isInteger; + lodash.isLength = isLength; + lodash.isMap = isMap; + lodash.isMatch = isMatch; + lodash.isMatchWith = isMatchWith; + lodash.isNaN = isNaN; + lodash.isNative = isNative; + lodash.isNil = isNil; + lodash.isNull = isNull; + lodash.isNumber = isNumber; + lodash.isObject = isObject; + lodash.isObjectLike = isObjectLike; + lodash.isPlainObject = isPlainObject; + lodash.isRegExp = isRegExp; + lodash.isSafeInteger = isSafeInteger; + lodash.isSet = isSet; + lodash.isString = isString; + lodash.isSymbol = isSymbol; + lodash.isTypedArray = isTypedArray; + lodash.isUndefined = isUndefined; + lodash.isWeakMap = isWeakMap; + lodash.isWeakSet = isWeakSet; + lodash.join = join; + lodash.kebabCase = kebabCase; + lodash.last = last; + lodash.lastIndexOf = lastIndexOf; + lodash.lowerCase = lowerCase; + lodash.lowerFirst = lowerFirst; + lodash.lt = lt; + lodash.lte = lte; + lodash.max = max; + lodash.maxBy = maxBy; + lodash.mean = mean; + lodash.meanBy = meanBy; + lodash.min = min; + lodash.minBy = minBy; + lodash.stubArray = stubArray; + lodash.stubFalse = stubFalse; + lodash.stubObject = stubObject; + lodash.stubString = stubString; + lodash.stubTrue = stubTrue; + lodash.multiply = multiply; + lodash.nth = nth; + lodash.noConflict = noConflict; + lodash.noop = noop; + lodash.now = now; + lodash.pad = pad; + lodash.padEnd = padEnd; + lodash.padStart = padStart; + lodash.parseInt = parseInt; + lodash.random = random; + lodash.reduce = reduce; + lodash.reduceRight = reduceRight; + lodash.repeat = repeat; + lodash.replace = replace; + lodash.result = result; + lodash.round = round; + lodash.runInContext = runInContext; + lodash.sample = sample; + lodash.size = size; + lodash.snakeCase = snakeCase; + lodash.some = some; + lodash.sortedIndex = sortedIndex; + lodash.sortedIndexBy = sortedIndexBy; + lodash.sortedIndexOf = sortedIndexOf; + lodash.sortedLastIndex = sortedLastIndex; + lodash.sortedLastIndexBy = sortedLastIndexBy; + lodash.sortedLastIndexOf = sortedLastIndexOf; + lodash.startCase = startCase; + lodash.startsWith = startsWith; + lodash.subtract = subtract; + lodash.sum = sum; + lodash.sumBy = sumBy; + lodash.template = template; + lodash.times = times; + lodash.toFinite = toFinite; + lodash.toInteger = toInteger; + lodash.toLength = toLength; + lodash.toLower = toLower; + lodash.toNumber = toNumber; + lodash.toSafeInteger = toSafeInteger; + lodash.toString = toString; + lodash.toUpper = toUpper; + lodash.trim = trim; + lodash.trimEnd = trimEnd; + lodash.trimStart = trimStart; + lodash.truncate = truncate; + lodash.unescape = unescape; + lodash.uniqueId = uniqueId; + lodash.upperCase = upperCase; + lodash.upperFirst = upperFirst; -var getDefaultSortIndexValue = function getDefaultSortIndexValue(contact) { - var defaultSortIndexValue = (0, _get.default)(contact, 'indexes.byFamilyNameGivenNameEmailCozyUrl', null); + // Add aliases. + lodash.each = forEach; + lodash.eachRight = forEachRight; + lodash.first = head; - if (defaultSortIndexValue !== null) { - return (0, _isEmpty.default)(defaultSortIndexValue) ? null : defaultSortIndexValue; - } + mixin(lodash, (function() { + var source = {}; + baseForOwn(lodash, function(func, methodName) { + if (!hasOwnProperty.call(lodash.prototype, methodName)) { + source[methodName] = func; + } + }); + return source; + }()), { 'chain': false }); - return makeDefaultSortIndexValue(contact); -}; -/** - * Returns 'byFamilyNameGivenNameEmailCozyUrl' index of a contact - * - * @deprecated Prefer to use getDefaultSortIndexValue. - * @param {object} contact - A contact - * @returns {string} - the contact's 'byFamilyNameGivenNameEmailCozyUrl' index - */ + /*------------------------------------------------------------------------*/ + /** + * The semantic version number. + * + * @static + * @memberOf _ + * @type {string} + */ + lodash.VERSION = VERSION; -exports.getDefaultSortIndexValue = getDefaultSortIndexValue; + // Assign default placeholders. + arrayEach(['bind', 'bindKey', 'curry', 'curryRight', 'partial', 'partialRight'], function(methodName) { + lodash[methodName].placeholder = lodash; + }); -var getIndexByFamilyNameGivenNameEmailCozyUrl = function getIndexByFamilyNameGivenNameEmailCozyUrl(contact) { - console.warn('Deprecation: `getIndexByFamilyNameGivenNameEmailCozyUrl` is deprecated, please use `getDefaultSortIndexValue` instead'); - return getDefaultSortIndexValue(contact); -}; + // Add `LazyWrapper` methods for `_.drop` and `_.take` variants. + arrayEach(['drop', 'take'], function(methodName, index) { + LazyWrapper.prototype[methodName] = function(n) { + n = n === undefined ? 1 : nativeMax(toInteger(n), 0); -exports.getIndexByFamilyNameGivenNameEmailCozyUrl = getIndexByFamilyNameGivenNameEmailCozyUrl; + var result = (this.__filtered__ && !index) + ? new LazyWrapper(this) + : this.clone(); -/***/ }), -/* 831 */ -/***/ (function(module, exports, __webpack_require__) { + if (result.__filtered__) { + result.__takeCount__ = nativeMin(n, result.__takeCount__); + } else { + result.__views__.push({ + 'size': nativeMin(n, MAX_ARRAY_LENGTH), + 'type': methodName + (result.__dir__ < 0 ? 'Right' : '') + }); + } + return result; + }; -var baseKeys = __webpack_require__(454), - getTag = __webpack_require__(459), - isArguments = __webpack_require__(444), - isArray = __webpack_require__(75), - isArrayLike = __webpack_require__(458), - isBuffer = __webpack_require__(446), - isPrototype = __webpack_require__(455), - isTypedArray = __webpack_require__(449); + LazyWrapper.prototype[methodName + 'Right'] = function(n) { + return this.reverse()[methodName](n).reverse(); + }; + }); -/** `Object#toString` result references. */ -var mapTag = '[object Map]', - setTag = '[object Set]'; + // Add `LazyWrapper` methods that accept an `iteratee` value. + arrayEach(['filter', 'map', 'takeWhile'], function(methodName, index) { + var type = index + 1, + isFilter = type == LAZY_FILTER_FLAG || type == LAZY_WHILE_FLAG; -/** Used for built-in method references. */ -var objectProto = Object.prototype; + LazyWrapper.prototype[methodName] = function(iteratee) { + var result = this.clone(); + result.__iteratees__.push({ + 'iteratee': getIteratee(iteratee, 3), + 'type': type + }); + result.__filtered__ = result.__filtered__ || isFilter; + return result; + }; + }); -/** Used to check objects for own properties. */ -var hasOwnProperty = objectProto.hasOwnProperty; + // Add `LazyWrapper` methods for `_.head` and `_.last`. + arrayEach(['head', 'last'], function(methodName, index) { + var takeName = 'take' + (index ? 'Right' : ''); -/** - * Checks if `value` is an empty object, collection, map, or set. - * - * Objects are considered empty if they have no own enumerable string keyed - * properties. - * - * Array-like values such as `arguments` objects, arrays, buffers, strings, or - * jQuery-like collections are considered empty if they have a `length` of `0`. - * Similarly, maps and sets are considered empty if they have a `size` of `0`. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is empty, else `false`. - * @example - * - * _.isEmpty(null); - * // => true - * - * _.isEmpty(true); - * // => true - * - * _.isEmpty(1); - * // => true - * - * _.isEmpty([1, 2, 3]); - * // => false - * - * _.isEmpty({ 'a': 1 }); - * // => false - */ -function isEmpty(value) { - if (value == null) { - return true; - } - if (isArrayLike(value) && - (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' || - isBuffer(value) || isTypedArray(value) || isArguments(value))) { - return !value.length; - } - var tag = getTag(value); - if (tag == mapTag || tag == setTag) { - return !value.size; - } - if (isPrototype(value)) { - return !baseKeys(value).length; - } - for (var key in value) { - if (hasOwnProperty.call(value, key)) { - return false; - } - } - return true; -} + LazyWrapper.prototype[methodName] = function() { + return this[takeName](1).value()[0]; + }; + }); -module.exports = isEmpty; + // Add `LazyWrapper` methods for `_.initial` and `_.tail`. + arrayEach(['initial', 'tail'], function(methodName, index) { + var dropName = 'drop' + (index ? '' : 'Right'); + LazyWrapper.prototype[methodName] = function() { + return this.__filtered__ ? new LazyWrapper(this) : this[dropName](1); + }; + }); -/***/ }), -/* 832 */ -/***/ (function(module, exports, __webpack_require__) { + LazyWrapper.prototype.compact = function() { + return this.filter(identity); + }; -"use strict"; + LazyWrapper.prototype.find = function(predicate) { + return this.filter(predicate).head(); + }; + LazyWrapper.prototype.findLast = function(predicate) { + return this.reverse().find(predicate); + }; -var _interopRequireDefault = __webpack_require__(530); + LazyWrapper.prototype.invokeMap = baseRest(function(path, args) { + if (typeof path == 'function') { + return new LazyWrapper(this); + } + return this.map(function(value) { + return baseInvoke(value, path, args); + }); + }); -Object.defineProperty(exports, "__esModule", { - value: true -}); -exports.fetchTimeSeriesByIntervalAndSource = exports.saveTimeSeries = void 0; + LazyWrapper.prototype.reject = function(predicate) { + return this.filter(negate(getIteratee(predicate))); + }; -var _regenerator = _interopRequireDefault(__webpack_require__(545)); + LazyWrapper.prototype.slice = function(start, end) { + start = toInteger(start); -var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(547)); + var result = this; + if (result.__filtered__ && (start > 0 || end < 0)) { + return new LazyWrapper(result); + } + if (start < 0) { + result = result.takeRight(-start); + } else if (start) { + result = result.drop(start); + } + if (end !== undefined) { + end = toInteger(end); + result = end < 0 ? result.dropRight(-end) : result.take(end - start); + } + return result; + }; -var _dsl = __webpack_require__(625); + LazyWrapper.prototype.takeRightWhile = function(predicate) { + return this.reverse().takeWhile(predicate).reverse(); + }; -var _types = __webpack_require__(628); + LazyWrapper.prototype.toArray = function() { + return this.take(MAX_ARRAY_LENGTH); + }; -var validateTimeSeriesFormat = function validateTimeSeriesFormat(timeseries) { - if (!timeseries.startDate || !timeseries.endDate) { - throw new Error('You must specify a startDate and endDate for the time serie'); - } + // Add `LazyWrapper` methods to `lodash.prototype`. + baseForOwn(LazyWrapper.prototype, function(func, methodName) { + var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName), + isTaker = /^(?:head|last)$/.test(methodName), + lodashFunc = lodash[isTaker ? ('take' + (methodName == 'last' ? 'Right' : '')) : methodName], + retUnwrapped = isTaker || /^find/.test(methodName); - if (!Date.parse(timeseries.startDate) || !Date.parse(timeseries.endDate)) { - throw new Error('Invalid date format for the time serie'); - } + if (!lodashFunc) { + return; + } + lodash.prototype[methodName] = function() { + var value = this.__wrapped__, + args = isTaker ? [1] : arguments, + isLazy = value instanceof LazyWrapper, + iteratee = args[0], + useLazy = isLazy || isArray(value); - if (!timeseries.dataType) { - throw new Error('You must specify a dataType for the time serie'); - } + var interceptor = function(value) { + var result = lodashFunc.apply(lodash, arrayPush([value], args)); + return (isTaker && chainAll) ? result[0] : result; + }; - if (!timeseries.series || !Array.isArray(timeseries.series)) { - throw new Error('You must specify a series array for the time serie'); - } -}; -/** - * @typedef TimeSeries - * @property dataType {String} - The type of time series, e.g. 'electricity' - * @property startDate {Date} - The starting date of the series - * @property endDate {Date} - The end date of the series - * @property endType {Date} - The starting date of the series - * @property source {String} - The data source, e.g. 'enedis.fr' - * @property theme {String} - The theme used to group time series, e.g. 'energy' - * @property series {Array} - An array of objects representing the time series - */ + if (useLazy && checkIteratee && typeof iteratee == 'function' && iteratee.length != 1) { + // Avoid lazy use if the iteratee has a "length" value other than `1`. + isLazy = useLazy = false; + } + var chainAll = this.__chain__, + isHybrid = !!this.__actions__.length, + isUnwrapped = retUnwrapped && !chainAll, + onlyLazy = isLazy && !isHybrid; -/** - * Helper to save a time series document. - * - * @param {object} client - The CozyClient instance - * - - * @param {TimeSeries} timeseriesOption - The time series to save - */ + if (!retUnwrapped && useLazy) { + value = onlyLazy ? value : new LazyWrapper(this); + var result = func.apply(value, args); + result.__actions__.push({ 'func': thru, 'args': [interceptor], 'thisArg': undefined }); + return new LodashWrapper(result, chainAll); + } + if (isUnwrapped && onlyLazy) { + return func.apply(this, args); + } + result = this.thru(interceptor); + return isUnwrapped ? (isTaker ? result.value()[0] : result.value()) : result; + }; + }); + // Add `Array` methods to `lodash.prototype`. + arrayEach(['pop', 'push', 'shift', 'sort', 'splice', 'unshift'], function(methodName) { + var func = arrayProto[methodName], + chainName = /^(?:push|sort|unshift)$/.test(methodName) ? 'tap' : 'thru', + retUnwrapped = /^(?:pop|shift)$/.test(methodName); -var saveTimeSeries = /*#__PURE__*/function () { - var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(client, timeseriesOption) { - var dataType, series, startDate, endDate, source, theme, doctype, timeseries; - return _regenerator.default.wrap(function _callee$(_context) { - while (1) { - switch (_context.prev = _context.next) { - case 0: - dataType = timeseriesOption.dataType, series = timeseriesOption.series, startDate = timeseriesOption.startDate, endDate = timeseriesOption.endDate, source = timeseriesOption.source, theme = timeseriesOption.theme; - validateTimeSeriesFormat({ - dataType: dataType, - series: series, - startDate: startDate, - endDate: endDate, - source: source - }); - doctype = "io.cozy.timeseries.".concat(dataType); - timeseries = { - _type: doctype, - startDate: startDate, - endDate: endDate, - source: source, - theme: theme, - series: series - }; - return _context.abrupt("return", client.save(timeseries)); + lodash.prototype[methodName] = function() { + var args = arguments; + if (retUnwrapped && !this.__chain__) { + var value = this.value(); + return func.apply(isArray(value) ? value : [], args); + } + return this[chainName](function(value) { + return func.apply(isArray(value) ? value : [], args); + }); + }; + }); - case 5: - case "end": - return _context.stop(); + // Map minified method names to their real names. + baseForOwn(LazyWrapper.prototype, function(func, methodName) { + var lodashFunc = lodash[methodName]; + if (lodashFunc) { + var key = lodashFunc.name + ''; + if (!hasOwnProperty.call(realNames, key)) { + realNames[key] = []; } + realNames[key].push({ 'name': methodName, 'func': lodashFunc }); } - }, _callee); - })); + }); - return function saveTimeSeries(_x, _x2) { - return _ref.apply(this, arguments); - }; -}(); -/** - * Helper to retrieve time series by their date interval and source. - * - * @param {object} client - The CozyClient instance - * @param {object} params - The query params - * @param {Date} params.startDate - The starting date of the series - * @param {Date} params.endDate - The end date of the series - * @param {String} params.dataType - The type of time series, e.g. 'electricity' - * @param {String} params.source - The data source, e.g. 'enedis.fr' - * @param {number} params.limit - Number of serie items to retrieve - * - * @typedef TimeSeriesJSONAPI - * @property data {Array<TimeSeries>} - The JSON-API data response - * @returns {Promise<TimeSeriesJSONAPI>} The TimeSeries found by the query in JSON-API format - */ + realNames[createHybrid(undefined, WRAP_BIND_KEY_FLAG).name] = [{ + 'name': 'wrapper', + 'func': undefined + }]; + + // Add methods to `LazyWrapper`. + LazyWrapper.prototype.clone = lazyClone; + LazyWrapper.prototype.reverse = lazyReverse; + LazyWrapper.prototype.value = lazyValue; + // Add chain sequence methods to the `lodash` wrapper. + lodash.prototype.at = wrapperAt; + lodash.prototype.chain = wrapperChain; + lodash.prototype.commit = wrapperCommit; + lodash.prototype.next = wrapperNext; + lodash.prototype.plant = wrapperPlant; + lodash.prototype.reverse = wrapperReverse; + lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue; -exports.saveTimeSeries = saveTimeSeries; + // Add lazy aliases. + lodash.prototype.first = lodash.prototype.head; -var fetchTimeSeriesByIntervalAndSource = /*#__PURE__*/function () { - var _ref3 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(client, _ref2) { - var startDate, endDate, dataType, source, limit, doctype, query; - return _regenerator.default.wrap(function _callee2$(_context2) { - while (1) { - switch (_context2.prev = _context2.next) { - case 0: - startDate = _ref2.startDate, endDate = _ref2.endDate, dataType = _ref2.dataType, source = _ref2.source, limit = _ref2.limit; + if (symIterator) { + lodash.prototype[symIterator] = wrapperToIterator; + } + return lodash; + }); - /** - * @type {Doctype} - */ - doctype = "io.cozy.timeseries.".concat(dataType); - query = (0, _dsl.Q)(doctype).where({ - source: source, - startDate: { - $gte: startDate - }, - endDate: { - $lte: endDate - } - }).indexFields(['source', 'startDate', 'endDate']).sortBy([{ - source: 'desc' - }, { - startDate: 'desc' - }, { - endDate: 'desc' - }]).limitBy(limit || 5); - return _context2.abrupt("return", client.query(query)); + /*--------------------------------------------------------------------------*/ - case 4: - case "end": - return _context2.stop(); - } - } - }, _callee2); - })); + // Export lodash. + var _ = runInContext(); - return function fetchTimeSeriesByIntervalAndSource(_x3, _x4) { - return _ref3.apply(this, arguments); - }; -}(); + // Some AMD build optimizers, like r.js, check for condition patterns like: + if (true) { + // Expose Lodash on the global object to prevent errors when Lodash is + // loaded by a script tag in the presence of an AMD loader. + // See http://requirejs.org/docs/errors.html#mismatch for more details. + // Use `_.noConflict` to remove Lodash from the global object. + root._ = _; + + // Define as an anonymous module so, through path mapping, it can be + // referenced as the "underscore" module. + !(__WEBPACK_AMD_DEFINE_RESULT__ = (function() { + return _; + }).call(exports, __webpack_require__, exports, module), + __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); + } + // Check for `exports` after `define` in case a build optimizer adds it. + else {} +}.call(this)); -exports.fetchTimeSeriesByIntervalAndSource = fetchTimeSeriesByIntervalAndSource; +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) /***/ }), -/* 833 */ +/* 845 */ /***/ (function(module, exports, __webpack_require__) { /* global __WEBPACK_PROVIDED_MANIFEST__ */ @@ -140754,15 +138046,9 @@ const fs = __webpack_require__(167); const path = __webpack_require__(160); -let manifest = typeof {"version":"1.0.2","name":"EGL","type":"konnector","language":"node","icon":"icon.png","slug":"eglgrandlyon","source":"https://forge.grandlyon.com/web-et-numerique/llle_project/egl-konnector.git","editor":"Métropole de Lyon","vendor_link":"www.grandlyon.com","frequency":"daily","categories":["energy"],"fields":{"login":{"type":"text"},"password":{"type":"password"},"advancedFields":{"folderPath":{"advanced":true,"isRequired":false}}},"data_types":[],"screenshots":[],"permissions":{"egl data":{"type":"com.grandlyon.egl.*"},"accounts":{"type":"io.cozy.accounts","verbs":["GET"]}},"developer":{"name":"Métropole de Lyon","url":"https://grandlyon.com"},"langs":["fr"],"locales":{"fr":{"short_description":"Courbe de charge depuis l'API eau du Grand Lyon","long_description":"Ce connecteur récupère la courbe de charge enregistrée par le compteur Téléo","permissions":{"egl data":{"description":"Requises pour accéder et stocker les données collectées par le compteur Téléo et exposées par les API Eau du Grand Lyon (consommations d’eau au jour, mois et année)."},"accounts":{"description":"Utilisé pour accéder à vos données de consommation."}}},"en":{"short_description":"Water consumption data fetched from \"Eau du Grand Lyon\" API","long_description":"This konnector fetches the data curve gathered by Téléo device.","permissions":{"egl data":{"description":"Required to access and store the data collected by the Téléo meter and exposed by Eau du Grand Lyon APIs (daily, monthly and yearly consumption)."},"accounts":{"description":"Used to access your consumption data."}}}},"manifest_version":"2"} === 'undefined' ? {} : {"version":"1.0.2","name":"EGL","type":"konnector","language":"node","icon":"icon.png","slug":"eglgrandlyon","source":"https://forge.grandlyon.com/web-et-numerique/llle_project/egl-konnector.git","editor":"Métropole de Lyon","vendor_link":"www.grandlyon.com","frequency":"daily","categories":["energy"],"fields":{"login":{"type":"text"},"password":{"type":"password"},"advancedFields":{"folderPath":{"advanced":true,"isRequired":false}}},"data_types":[],"screenshots":[],"permissions":{"egl data":{"type":"com.grandlyon.egl.*"},"accounts":{"type":"io.cozy.accounts","verbs":["GET"]}},"developer":{"name":"Métropole de Lyon","url":"https://grandlyon.com"},"langs":["fr"],"locales":{"fr":{"short_description":"Courbe de charge depuis l'API eau du Grand Lyon","long_description":"Ce connecteur récupère la courbe de charge enregistrée par le compteur Téléo","permissions":{"egl data":{"description":"Requises pour accéder et stocker les données collectées par le compteur Téléo et exposées par les API Eau du Grand Lyon (consommations d’eau au jour, mois et année)."},"accounts":{"description":"Utilisé pour accéder à vos données de consommation."}}},"en":{"short_description":"Water consumption data fetched from \"Eau du Grand Lyon\" API","long_description":"This konnector fetches the data curve gathered by Téléo device.","permissions":{"egl data":{"description":"Required to access and store the data collected by the Téléo meter and exposed by Eau du Grand Lyon APIs (daily, monthly and yearly consumption)."},"accounts":{"description":"Used to access your consumption data."}}}},"manifest_version":"2"}; +let manifest = typeof {"version":"1.0.1","name":"EGL","type":"konnector","language":"node","icon":"icon.png","slug":"eglgrandlyon","source":"https://forge.grandlyon.com/web-et-numerique/llle_project/egl-konnector.git","editor":"Métropole de Lyon","vendor_link":"www.grandlyon.com","frequency":"daily","categories":["energy"],"fields":{"login":{"type":"text"},"password":{"type":"password"},"advancedFields":{"folderPath":{"advanced":true,"isRequired":false}}},"data_types":[],"screenshots":[],"permissions":{"egl data":{"type":"com.grandlyon.egl.*"},"accounts":{"type":"io.cozy.accounts","verbs":["GET"]}},"developer":{"name":"Métropole de Lyon","url":"https://grandlyon.com"},"langs":["fr"],"locales":{"fr":{"short_description":"Courbe de charge depuis l'API eau du Grand Lyon","long_description":"Ce connecteur récupère la courbe de charge enregistrée par le compteur Téléo","permissions":{"egl data":{"description":"Requises pour accéder et stocker les données collectées par le compteur Téléo et exposées par les API Eau du Grand Lyon (consommations d’eau au jour, mois et année)."},"accounts":{"description":"Utilisé pour accéder à vos données de consommation."}}},"en":{"short_description":"Water consumption data fetched from \"Eau du Grand Lyon\" API","long_description":"This konnector fetches the data curve gathered by Téléo device.","permissions":{"egl data":{"description":"Required to access and store the data collected by the Téléo meter and exposed by Eau du Grand Lyon APIs (daily, monthly and yearly consumption)."},"accounts":{"description":"Used to access your consumption data."}}}},"manifest_version":"2"} === 'undefined' ? {} : {"version":"1.0.1","name":"EGL","type":"konnector","language":"node","icon":"icon.png","slug":"eglgrandlyon","source":"https://forge.grandlyon.com/web-et-numerique/llle_project/egl-konnector.git","editor":"Métropole de Lyon","vendor_link":"www.grandlyon.com","frequency":"daily","categories":["energy"],"fields":{"login":{"type":"text"},"password":{"type":"password"},"advancedFields":{"folderPath":{"advanced":true,"isRequired":false}}},"data_types":[],"screenshots":[],"permissions":{"egl data":{"type":"com.grandlyon.egl.*"},"accounts":{"type":"io.cozy.accounts","verbs":["GET"]}},"developer":{"name":"Métropole de Lyon","url":"https://grandlyon.com"},"langs":["fr"],"locales":{"fr":{"short_description":"Courbe de charge depuis l'API eau du Grand Lyon","long_description":"Ce connecteur récupère la courbe de charge enregistrée par le compteur Téléo","permissions":{"egl data":{"description":"Requises pour accéder et stocker les données collectées par le compteur Téléo et exposées par les API Eau du Grand Lyon (consommations d’eau au jour, mois et année)."},"accounts":{"description":"Utilisé pour accéder à vos données de consommation."}}},"en":{"short_description":"Water consumption data fetched from \"Eau du Grand Lyon\" API","long_description":"This konnector fetches the data curve gathered by Téléo device.","permissions":{"egl data":{"description":"Required to access and store the data collected by the Téléo meter and exposed by Eau du Grand Lyon APIs (daily, monthly and yearly consumption)."},"accounts":{"description":"Used to access your consumption data."}}}},"manifest_version":"2"}; -if ("none" !== undefined && "none" !== 'none' && "none" !== 'production') { - try { - manifest = getManifestFromFile(); - } catch (err) { - manifest = {}; - } -} +if (false) {} function getManifestFromFile() { return JSON.parse(fs.readFileSync(path.join(process.cwd(), 'manifest.konnector'))); @@ -140808,7 +138094,7 @@ module.exports = { }; /***/ }), -/* 834 */ +/* 846 */ /***/ (function(module, exports, __webpack_require__) { const fs = __webpack_require__(167); @@ -140817,21 +138103,21 @@ const path = __webpack_require__(160); const log = __webpack_require__(2).namespace('cozy-client-js-stub'); -const mimetypes = __webpack_require__(835); +const mimetypes = __webpack_require__(157); -const low = __webpack_require__(838); +const low = __webpack_require__(847); -const lodashId = __webpack_require__(840); +const lodashId = __webpack_require__(849); -const get = __webpack_require__(370); +const get = __webpack_require__(372); -const FileSync = __webpack_require__(841); +const FileSync = __webpack_require__(850); -const rawBody = __webpack_require__(849); +const rawBody = __webpack_require__(858); -const stripJsonComments = __webpack_require__(885); +const stripJsonComments = __webpack_require__(893); -const manifest = __webpack_require__(833); +const manifest = __webpack_require__(845); const sleep = __webpack_require__(9).promisify(global.setTimeout); @@ -141176,232 +138462,14 @@ async function waitForFileEnd(file, finalPath, writeStream) { } /***/ }), -/* 835 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; -/*! - * mime-types - * Copyright(c) 2014 Jonathan Ong - * Copyright(c) 2015 Douglas Christopher Wilson - * MIT Licensed - */ - - - -/** - * Module dependencies. - * @private - */ - -var db = __webpack_require__(836) -var extname = __webpack_require__(160).extname - -/** - * Module variables. - * @private - */ - -var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/ -var TEXT_TYPE_REGEXP = /^text\//i - -/** - * Module exports. - * @public - */ - -exports.charset = charset -exports.charsets = { lookup: charset } -exports.contentType = contentType -exports.extension = extension -exports.extensions = Object.create(null) -exports.lookup = lookup -exports.types = Object.create(null) - -// Populate the extensions/types maps -populateMaps(exports.extensions, exports.types) - -/** - * Get the default charset for a MIME type. - * - * @param {string} type - * @return {boolean|string} - */ - -function charset (type) { - if (!type || typeof type !== 'string') { - return false - } - - // TODO: use media-typer - var match = EXTRACT_TYPE_REGEXP.exec(type) - var mime = match && db[match[1].toLowerCase()] - - if (mime && mime.charset) { - return mime.charset - } - - // default text/* to utf-8 - if (match && TEXT_TYPE_REGEXP.test(match[1])) { - return 'UTF-8' - } - - return false -} - -/** - * Create a full Content-Type header given a MIME type or extension. - * - * @param {string} str - * @return {boolean|string} - */ - -function contentType (str) { - // TODO: should this even be in this module? - if (!str || typeof str !== 'string') { - return false - } - - var mime = str.indexOf('/') === -1 - ? exports.lookup(str) - : str - - if (!mime) { - return false - } - - // TODO: use content-type or other module - if (mime.indexOf('charset') === -1) { - var charset = exports.charset(mime) - if (charset) mime += '; charset=' + charset.toLowerCase() - } - - return mime -} - -/** - * Get the default extension for a MIME type. - * - * @param {string} type - * @return {boolean|string} - */ - -function extension (type) { - if (!type || typeof type !== 'string') { - return false - } - - // TODO: use media-typer - var match = EXTRACT_TYPE_REGEXP.exec(type) - - // get extensions - var exts = match && exports.extensions[match[1].toLowerCase()] - - if (!exts || !exts.length) { - return false - } - - return exts[0] -} - -/** - * Lookup the MIME type for a file path/extension. - * - * @param {string} path - * @return {boolean|string} - */ - -function lookup (path) { - if (!path || typeof path !== 'string') { - return false - } - - // get the extension ("ext" or ".ext" or full path) - var extension = extname('x.' + path) - .toLowerCase() - .substr(1) - - if (!extension) { - return false - } - - return exports.types[extension] || false -} - -/** - * Populate the extensions and types maps. - * @private - */ - -function populateMaps (extensions, types) { - // source preference (least -> most) - var preference = ['nginx', 'apache', undefined, 'iana'] - - Object.keys(db).forEach(function forEachMimeType (type) { - var mime = db[type] - var exts = mime.extensions - - if (!exts || !exts.length) { - return - } - - // mime -> extensions - extensions[type] = exts - - // extension -> mime - for (var i = 0; i < exts.length; i++) { - var extension = exts[i] - - if (types[extension]) { - var from = preference.indexOf(db[types[extension]].source) - var to = preference.indexOf(mime.source) - - if (types[extension] !== 'application/octet-stream' && - (from > to || (from === to && types[extension].substr(0, 12) === 'application/'))) { - // skip the remapping - continue - } - } - - // set the extension -> mime - types[extension] = type - } - }) -} - - -/***/ }), -/* 836 */ -/***/ (function(module, exports, __webpack_require__) { - -/*! - * mime-db - * Copyright(c) 2014 Jonathan Ong - * MIT Licensed - */ - -/** - * Module exports. - */ - -module.exports = __webpack_require__(837) - - -/***/ }), -/* 837 */ -/***/ (function(module) { - -module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source\":\"iana\"},\"application/3gpdash-qoe-report+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/3gpp-ims+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/3gpphal+json\":{\"source\":\"iana\",\"compressible\":true},\"application/3gpphalforms+json\":{\"source\":\"iana\",\"compressible\":true},\"application/a2l\":{\"source\":\"iana\"},\"application/ace+cbor\":{\"source\":\"iana\"},\"application/activemessage\":{\"source\":\"iana\"},\"application/activity+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-costmap+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-costmapfilter+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-directory+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-endpointcost+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-endpointcostparams+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-endpointprop+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-endpointpropparams+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-error+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-networkmap+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-networkmapfilter+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-updatestreamcontrol+json\":{\"source\":\"iana\",\"compressible\":true},\"application/alto-updatestreamparams+json\":{\"source\":\"iana\",\"compressible\":true},\"application/aml\":{\"source\":\"iana\"},\"application/andrew-inset\":{\"source\":\"iana\",\"extensions\":[\"ez\"]},\"application/applefile\":{\"source\":\"iana\"},\"application/applixware\":{\"source\":\"apache\",\"extensions\":[\"aw\"]},\"application/at+jwt\":{\"source\":\"iana\"},\"application/atf\":{\"source\":\"iana\"},\"application/atfx\":{\"source\":\"iana\"},\"application/atom+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"atom\"]},\"application/atomcat+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"atomcat\"]},\"application/atomdeleted+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"atomdeleted\"]},\"application/atomicmail\":{\"source\":\"iana\"},\"application/atomsvc+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"atomsvc\"]},\"application/atsc-dwd+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"dwd\"]},\"application/atsc-dynamic-event-message\":{\"source\":\"iana\"},\"application/atsc-held+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"held\"]},\"application/atsc-rdt+json\":{\"source\":\"iana\",\"compressible\":true},\"application/atsc-rsat+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rsat\"]},\"application/atxml\":{\"source\":\"iana\"},\"application/auth-policy+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/bacnet-xdd+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/batch-smtp\":{\"source\":\"iana\"},\"application/bdoc\":{\"compressible\":false,\"extensions\":[\"bdoc\"]},\"application/beep+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/calendar+json\":{\"source\":\"iana\",\"compressible\":true},\"application/calendar+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xcs\"]},\"application/call-completion\":{\"source\":\"iana\"},\"application/cals-1840\":{\"source\":\"iana\"},\"application/captive+json\":{\"source\":\"iana\",\"compressible\":true},\"application/cbor\":{\"source\":\"iana\"},\"application/cbor-seq\":{\"source\":\"iana\"},\"application/cccex\":{\"source\":\"iana\"},\"application/ccmp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/ccxml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ccxml\"]},\"application/cdfx+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"cdfx\"]},\"application/cdmi-capability\":{\"source\":\"iana\",\"extensions\":[\"cdmia\"]},\"application/cdmi-container\":{\"source\":\"iana\",\"extensions\":[\"cdmic\"]},\"application/cdmi-domain\":{\"source\":\"iana\",\"extensions\":[\"cdmid\"]},\"application/cdmi-object\":{\"source\":\"iana\",\"extensions\":[\"cdmio\"]},\"application/cdmi-queue\":{\"source\":\"iana\",\"extensions\":[\"cdmiq\"]},\"application/cdni\":{\"source\":\"iana\"},\"application/cea\":{\"source\":\"iana\"},\"application/cea-2018+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/cellml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/cfw\":{\"source\":\"iana\"},\"application/clr\":{\"source\":\"iana\"},\"application/clue+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/clue_info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/cms\":{\"source\":\"iana\"},\"application/cnrp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/coap-group+json\":{\"source\":\"iana\",\"compressible\":true},\"application/coap-payload\":{\"source\":\"iana\"},\"application/commonground\":{\"source\":\"iana\"},\"application/conference-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/cose\":{\"source\":\"iana\"},\"application/cose-key\":{\"source\":\"iana\"},\"application/cose-key-set\":{\"source\":\"iana\"},\"application/cpl+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/csrattrs\":{\"source\":\"iana\"},\"application/csta+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/cstadata+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/csvm+json\":{\"source\":\"iana\",\"compressible\":true},\"application/cu-seeme\":{\"source\":\"apache\",\"extensions\":[\"cu\"]},\"application/cwt\":{\"source\":\"iana\"},\"application/cybercash\":{\"source\":\"iana\"},\"application/dart\":{\"compressible\":true},\"application/dash+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mpd\"]},\"application/dashdelta\":{\"source\":\"iana\"},\"application/davmount+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"davmount\"]},\"application/dca-rft\":{\"source\":\"iana\"},\"application/dcd\":{\"source\":\"iana\"},\"application/dec-dx\":{\"source\":\"iana\"},\"application/dialog-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/dicom\":{\"source\":\"iana\"},\"application/dicom+json\":{\"source\":\"iana\",\"compressible\":true},\"application/dicom+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/dii\":{\"source\":\"iana\"},\"application/dit\":{\"source\":\"iana\"},\"application/dns\":{\"source\":\"iana\"},\"application/dns+json\":{\"source\":\"iana\",\"compressible\":true},\"application/dns-message\":{\"source\":\"iana\"},\"application/docbook+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"dbk\"]},\"application/dots+cbor\":{\"source\":\"iana\"},\"application/dskpp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/dssc+der\":{\"source\":\"iana\",\"extensions\":[\"dssc\"]},\"application/dssc+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xdssc\"]},\"application/dvcs\":{\"source\":\"iana\"},\"application/ecmascript\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"es\",\"ecma\"]},\"application/edi-consent\":{\"source\":\"iana\"},\"application/edi-x12\":{\"source\":\"iana\",\"compressible\":false},\"application/edifact\":{\"source\":\"iana\",\"compressible\":false},\"application/efi\":{\"source\":\"iana\"},\"application/elm+json\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/elm+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.cap+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/emergencycalldata.comment+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.control+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.deviceinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.ecall.msd\":{\"source\":\"iana\"},\"application/emergencycalldata.providerinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.serviceinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.subscriberinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emergencycalldata.veds+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/emma+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"emma\"]},\"application/emotionml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"emotionml\"]},\"application/encaprtp\":{\"source\":\"iana\"},\"application/epp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/epub+zip\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"epub\"]},\"application/eshop\":{\"source\":\"iana\"},\"application/exi\":{\"source\":\"iana\",\"extensions\":[\"exi\"]},\"application/expect-ct-report+json\":{\"source\":\"iana\",\"compressible\":true},\"application/express\":{\"source\":\"iana\",\"extensions\":[\"exp\"]},\"application/fastinfoset\":{\"source\":\"iana\"},\"application/fastsoap\":{\"source\":\"iana\"},\"application/fdt+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"fdt\"]},\"application/fhir+json\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/fhir+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/fido.trusted-apps+json\":{\"compressible\":true},\"application/fits\":{\"source\":\"iana\"},\"application/flexfec\":{\"source\":\"iana\"},\"application/font-sfnt\":{\"source\":\"iana\"},\"application/font-tdpfr\":{\"source\":\"iana\",\"extensions\":[\"pfr\"]},\"application/font-woff\":{\"source\":\"iana\",\"compressible\":false},\"application/framework-attributes+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/geo+json\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"geojson\"]},\"application/geo+json-seq\":{\"source\":\"iana\"},\"application/geopackage+sqlite3\":{\"source\":\"iana\"},\"application/geoxacml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/gltf-buffer\":{\"source\":\"iana\"},\"application/gml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"gml\"]},\"application/gpx+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"gpx\"]},\"application/gxf\":{\"source\":\"apache\",\"extensions\":[\"gxf\"]},\"application/gzip\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"gz\"]},\"application/h224\":{\"source\":\"iana\"},\"application/held+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/hjson\":{\"extensions\":[\"hjson\"]},\"application/http\":{\"source\":\"iana\"},\"application/hyperstudio\":{\"source\":\"iana\",\"extensions\":[\"stk\"]},\"application/ibe-key-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/ibe-pkg-reply+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/ibe-pp-data\":{\"source\":\"iana\"},\"application/iges\":{\"source\":\"iana\"},\"application/im-iscomposing+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/index\":{\"source\":\"iana\"},\"application/index.cmd\":{\"source\":\"iana\"},\"application/index.obj\":{\"source\":\"iana\"},\"application/index.response\":{\"source\":\"iana\"},\"application/index.vnd\":{\"source\":\"iana\"},\"application/inkml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ink\",\"inkml\"]},\"application/iotp\":{\"source\":\"iana\"},\"application/ipfix\":{\"source\":\"iana\",\"extensions\":[\"ipfix\"]},\"application/ipp\":{\"source\":\"iana\"},\"application/isup\":{\"source\":\"iana\"},\"application/its+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"its\"]},\"application/java-archive\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"jar\",\"war\",\"ear\"]},\"application/java-serialized-object\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"ser\"]},\"application/java-vm\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"class\"]},\"application/javascript\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"js\",\"mjs\"]},\"application/jf2feed+json\":{\"source\":\"iana\",\"compressible\":true},\"application/jose\":{\"source\":\"iana\"},\"application/jose+json\":{\"source\":\"iana\",\"compressible\":true},\"application/jrd+json\":{\"source\":\"iana\",\"compressible\":true},\"application/jscalendar+json\":{\"source\":\"iana\",\"compressible\":true},\"application/json\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"json\",\"map\"]},\"application/json-patch+json\":{\"source\":\"iana\",\"compressible\":true},\"application/json-seq\":{\"source\":\"iana\"},\"application/json5\":{\"extensions\":[\"json5\"]},\"application/jsonml+json\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"jsonml\"]},\"application/jwk+json\":{\"source\":\"iana\",\"compressible\":true},\"application/jwk-set+json\":{\"source\":\"iana\",\"compressible\":true},\"application/jwt\":{\"source\":\"iana\"},\"application/kpml-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/kpml-response+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/ld+json\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"jsonld\"]},\"application/lgr+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"lgr\"]},\"application/link-format\":{\"source\":\"iana\"},\"application/load-control+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/lost+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"lostxml\"]},\"application/lostsync+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/lpf+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/lxf\":{\"source\":\"iana\"},\"application/mac-binhex40\":{\"source\":\"iana\",\"extensions\":[\"hqx\"]},\"application/mac-compactpro\":{\"source\":\"apache\",\"extensions\":[\"cpt\"]},\"application/macwriteii\":{\"source\":\"iana\"},\"application/mads+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mads\"]},\"application/manifest+json\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"webmanifest\"]},\"application/marc\":{\"source\":\"iana\",\"extensions\":[\"mrc\"]},\"application/marcxml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mrcx\"]},\"application/mathematica\":{\"source\":\"iana\",\"extensions\":[\"ma\",\"nb\",\"mb\"]},\"application/mathml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mathml\"]},\"application/mathml-content+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mathml-presentation+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-associated-procedure-description+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-deregister+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-envelope+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-msk+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-msk-response+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-protection-description+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-reception-report+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-register+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-register-response+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-schedule+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbms-user-service-description+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mbox\":{\"source\":\"iana\",\"extensions\":[\"mbox\"]},\"application/media-policy-dataset+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/media_control+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mediaservercontrol+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mscml\"]},\"application/merge-patch+json\":{\"source\":\"iana\",\"compressible\":true},\"application/metalink+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"metalink\"]},\"application/metalink4+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"meta4\"]},\"application/mets+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mets\"]},\"application/mf4\":{\"source\":\"iana\"},\"application/mikey\":{\"source\":\"iana\"},\"application/mipc\":{\"source\":\"iana\"},\"application/missing-blocks+cbor-seq\":{\"source\":\"iana\"},\"application/mmt-aei+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"maei\"]},\"application/mmt-usd+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"musd\"]},\"application/mods+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mods\"]},\"application/moss-keys\":{\"source\":\"iana\"},\"application/moss-signature\":{\"source\":\"iana\"},\"application/mosskey-data\":{\"source\":\"iana\"},\"application/mosskey-request\":{\"source\":\"iana\"},\"application/mp21\":{\"source\":\"iana\",\"extensions\":[\"m21\",\"mp21\"]},\"application/mp4\":{\"source\":\"iana\",\"extensions\":[\"mp4s\",\"m4p\"]},\"application/mpeg4-generic\":{\"source\":\"iana\"},\"application/mpeg4-iod\":{\"source\":\"iana\"},\"application/mpeg4-iod-xmt\":{\"source\":\"iana\"},\"application/mrb-consumer+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/mrb-publish+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/msc-ivr+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/msc-mixer+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/msword\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"doc\",\"dot\"]},\"application/mud+json\":{\"source\":\"iana\",\"compressible\":true},\"application/multipart-core\":{\"source\":\"iana\"},\"application/mxf\":{\"source\":\"iana\",\"extensions\":[\"mxf\"]},\"application/n-quads\":{\"source\":\"iana\",\"extensions\":[\"nq\"]},\"application/n-triples\":{\"source\":\"iana\",\"extensions\":[\"nt\"]},\"application/nasdata\":{\"source\":\"iana\"},\"application/news-checkgroups\":{\"source\":\"iana\",\"charset\":\"US-ASCII\"},\"application/news-groupinfo\":{\"source\":\"iana\",\"charset\":\"US-ASCII\"},\"application/news-transmission\":{\"source\":\"iana\"},\"application/nlsml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/node\":{\"source\":\"iana\",\"extensions\":[\"cjs\"]},\"application/nss\":{\"source\":\"iana\"},\"application/oauth-authz-req+jwt\":{\"source\":\"iana\"},\"application/ocsp-request\":{\"source\":\"iana\"},\"application/ocsp-response\":{\"source\":\"iana\"},\"application/octet-stream\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"bin\",\"dms\",\"lrf\",\"mar\",\"so\",\"dist\",\"distz\",\"pkg\",\"bpk\",\"dump\",\"elc\",\"deploy\",\"exe\",\"dll\",\"deb\",\"dmg\",\"iso\",\"img\",\"msi\",\"msp\",\"msm\",\"buffer\"]},\"application/oda\":{\"source\":\"iana\",\"extensions\":[\"oda\"]},\"application/odm+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/odx\":{\"source\":\"iana\"},\"application/oebps-package+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"opf\"]},\"application/ogg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"ogx\"]},\"application/omdoc+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"omdoc\"]},\"application/onenote\":{\"source\":\"apache\",\"extensions\":[\"onetoc\",\"onetoc2\",\"onetmp\",\"onepkg\"]},\"application/opc-nodeset+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/oscore\":{\"source\":\"iana\"},\"application/oxps\":{\"source\":\"iana\",\"extensions\":[\"oxps\"]},\"application/p21\":{\"source\":\"iana\"},\"application/p21+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/p2p-overlay+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"relo\"]},\"application/parityfec\":{\"source\":\"iana\"},\"application/passport\":{\"source\":\"iana\"},\"application/patch-ops-error+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xer\"]},\"application/pdf\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"pdf\"]},\"application/pdx\":{\"source\":\"iana\"},\"application/pem-certificate-chain\":{\"source\":\"iana\"},\"application/pgp-encrypted\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"pgp\"]},\"application/pgp-keys\":{\"source\":\"iana\"},\"application/pgp-signature\":{\"source\":\"iana\",\"extensions\":[\"asc\",\"sig\"]},\"application/pics-rules\":{\"source\":\"apache\",\"extensions\":[\"prf\"]},\"application/pidf+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/pidf-diff+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/pkcs10\":{\"source\":\"iana\",\"extensions\":[\"p10\"]},\"application/pkcs12\":{\"source\":\"iana\"},\"application/pkcs7-mime\":{\"source\":\"iana\",\"extensions\":[\"p7m\",\"p7c\"]},\"application/pkcs7-signature\":{\"source\":\"iana\",\"extensions\":[\"p7s\"]},\"application/pkcs8\":{\"source\":\"iana\",\"extensions\":[\"p8\"]},\"application/pkcs8-encrypted\":{\"source\":\"iana\"},\"application/pkix-attr-cert\":{\"source\":\"iana\",\"extensions\":[\"ac\"]},\"application/pkix-cert\":{\"source\":\"iana\",\"extensions\":[\"cer\"]},\"application/pkix-crl\":{\"source\":\"iana\",\"extensions\":[\"crl\"]},\"application/pkix-pkipath\":{\"source\":\"iana\",\"extensions\":[\"pkipath\"]},\"application/pkixcmp\":{\"source\":\"iana\",\"extensions\":[\"pki\"]},\"application/pls+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"pls\"]},\"application/poc-settings+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/postscript\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ai\",\"eps\",\"ps\"]},\"application/ppsp-tracker+json\":{\"source\":\"iana\",\"compressible\":true},\"application/problem+json\":{\"source\":\"iana\",\"compressible\":true},\"application/problem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/provenance+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"provx\"]},\"application/prs.alvestrand.titrax-sheet\":{\"source\":\"iana\"},\"application/prs.cww\":{\"source\":\"iana\",\"extensions\":[\"cww\"]},\"application/prs.cyn\":{\"source\":\"iana\",\"charset\":\"7-BIT\"},\"application/prs.hpub+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/prs.nprend\":{\"source\":\"iana\"},\"application/prs.plucker\":{\"source\":\"iana\"},\"application/prs.rdf-xml-crypt\":{\"source\":\"iana\"},\"application/prs.xsf+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/pskc+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"pskcxml\"]},\"application/pvd+json\":{\"source\":\"iana\",\"compressible\":true},\"application/qsig\":{\"source\":\"iana\"},\"application/raml+yaml\":{\"compressible\":true,\"extensions\":[\"raml\"]},\"application/raptorfec\":{\"source\":\"iana\"},\"application/rdap+json\":{\"source\":\"iana\",\"compressible\":true},\"application/rdf+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rdf\",\"owl\"]},\"application/reginfo+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rif\"]},\"application/relax-ng-compact-syntax\":{\"source\":\"iana\",\"extensions\":[\"rnc\"]},\"application/remote-printing\":{\"source\":\"iana\"},\"application/reputon+json\":{\"source\":\"iana\",\"compressible\":true},\"application/resource-lists+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rl\"]},\"application/resource-lists-diff+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rld\"]},\"application/rfc+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/riscos\":{\"source\":\"iana\"},\"application/rlmi+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/rls-services+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rs\"]},\"application/route-apd+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rapd\"]},\"application/route-s-tsid+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"sls\"]},\"application/route-usd+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rusd\"]},\"application/rpki-ghostbusters\":{\"source\":\"iana\",\"extensions\":[\"gbr\"]},\"application/rpki-manifest\":{\"source\":\"iana\",\"extensions\":[\"mft\"]},\"application/rpki-publication\":{\"source\":\"iana\"},\"application/rpki-roa\":{\"source\":\"iana\",\"extensions\":[\"roa\"]},\"application/rpki-updown\":{\"source\":\"iana\"},\"application/rsd+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"rsd\"]},\"application/rss+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"rss\"]},\"application/rtf\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rtf\"]},\"application/rtploopback\":{\"source\":\"iana\"},\"application/rtx\":{\"source\":\"iana\"},\"application/samlassertion+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/samlmetadata+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/sarif+json\":{\"source\":\"iana\",\"compressible\":true},\"application/sarif-external-properties+json\":{\"source\":\"iana\",\"compressible\":true},\"application/sbe\":{\"source\":\"iana\"},\"application/sbml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"sbml\"]},\"application/scaip+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/scim+json\":{\"source\":\"iana\",\"compressible\":true},\"application/scvp-cv-request\":{\"source\":\"iana\",\"extensions\":[\"scq\"]},\"application/scvp-cv-response\":{\"source\":\"iana\",\"extensions\":[\"scs\"]},\"application/scvp-vp-request\":{\"source\":\"iana\",\"extensions\":[\"spq\"]},\"application/scvp-vp-response\":{\"source\":\"iana\",\"extensions\":[\"spp\"]},\"application/sdp\":{\"source\":\"iana\",\"extensions\":[\"sdp\"]},\"application/secevent+jwt\":{\"source\":\"iana\"},\"application/senml+cbor\":{\"source\":\"iana\"},\"application/senml+json\":{\"source\":\"iana\",\"compressible\":true},\"application/senml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"senmlx\"]},\"application/senml-etch+cbor\":{\"source\":\"iana\"},\"application/senml-etch+json\":{\"source\":\"iana\",\"compressible\":true},\"application/senml-exi\":{\"source\":\"iana\"},\"application/sensml+cbor\":{\"source\":\"iana\"},\"application/sensml+json\":{\"source\":\"iana\",\"compressible\":true},\"application/sensml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"sensmlx\"]},\"application/sensml-exi\":{\"source\":\"iana\"},\"application/sep+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/sep-exi\":{\"source\":\"iana\"},\"application/session-info\":{\"source\":\"iana\"},\"application/set-payment\":{\"source\":\"iana\"},\"application/set-payment-initiation\":{\"source\":\"iana\",\"extensions\":[\"setpay\"]},\"application/set-registration\":{\"source\":\"iana\"},\"application/set-registration-initiation\":{\"source\":\"iana\",\"extensions\":[\"setreg\"]},\"application/sgml\":{\"source\":\"iana\"},\"application/sgml-open-catalog\":{\"source\":\"iana\"},\"application/shf+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"shf\"]},\"application/sieve\":{\"source\":\"iana\",\"extensions\":[\"siv\",\"sieve\"]},\"application/simple-filter+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/simple-message-summary\":{\"source\":\"iana\"},\"application/simplesymbolcontainer\":{\"source\":\"iana\"},\"application/sipc\":{\"source\":\"iana\"},\"application/slate\":{\"source\":\"iana\"},\"application/smil\":{\"source\":\"iana\"},\"application/smil+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"smi\",\"smil\"]},\"application/smpte336m\":{\"source\":\"iana\"},\"application/soap+fastinfoset\":{\"source\":\"iana\"},\"application/soap+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/sparql-query\":{\"source\":\"iana\",\"extensions\":[\"rq\"]},\"application/sparql-results+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"srx\"]},\"application/spirits-event+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/sql\":{\"source\":\"iana\"},\"application/srgs\":{\"source\":\"iana\",\"extensions\":[\"gram\"]},\"application/srgs+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"grxml\"]},\"application/sru+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"sru\"]},\"application/ssdl+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"ssdl\"]},\"application/ssml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ssml\"]},\"application/stix+json\":{\"source\":\"iana\",\"compressible\":true},\"application/swid+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"swidtag\"]},\"application/tamp-apex-update\":{\"source\":\"iana\"},\"application/tamp-apex-update-confirm\":{\"source\":\"iana\"},\"application/tamp-community-update\":{\"source\":\"iana\"},\"application/tamp-community-update-confirm\":{\"source\":\"iana\"},\"application/tamp-error\":{\"source\":\"iana\"},\"application/tamp-sequence-adjust\":{\"source\":\"iana\"},\"application/tamp-sequence-adjust-confirm\":{\"source\":\"iana\"},\"application/tamp-status-query\":{\"source\":\"iana\"},\"application/tamp-status-response\":{\"source\":\"iana\"},\"application/tamp-update\":{\"source\":\"iana\"},\"application/tamp-update-confirm\":{\"source\":\"iana\"},\"application/tar\":{\"compressible\":true},\"application/taxii+json\":{\"source\":\"iana\",\"compressible\":true},\"application/td+json\":{\"source\":\"iana\",\"compressible\":true},\"application/tei+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"tei\",\"teicorpus\"]},\"application/tetra_isi\":{\"source\":\"iana\"},\"application/thraud+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"tfi\"]},\"application/timestamp-query\":{\"source\":\"iana\"},\"application/timestamp-reply\":{\"source\":\"iana\"},\"application/timestamped-data\":{\"source\":\"iana\",\"extensions\":[\"tsd\"]},\"application/tlsrpt+gzip\":{\"source\":\"iana\"},\"application/tlsrpt+json\":{\"source\":\"iana\",\"compressible\":true},\"application/tnauthlist\":{\"source\":\"iana\"},\"application/token-introspection+jwt\":{\"source\":\"iana\"},\"application/toml\":{\"compressible\":true,\"extensions\":[\"toml\"]},\"application/trickle-ice-sdpfrag\":{\"source\":\"iana\"},\"application/trig\":{\"source\":\"iana\",\"extensions\":[\"trig\"]},\"application/ttml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ttml\"]},\"application/tve-trigger\":{\"source\":\"iana\"},\"application/tzif\":{\"source\":\"iana\"},\"application/tzif-leap\":{\"source\":\"iana\"},\"application/ubjson\":{\"compressible\":false,\"extensions\":[\"ubj\"]},\"application/ulpfec\":{\"source\":\"iana\"},\"application/urc-grpsheet+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/urc-ressheet+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rsheet\"]},\"application/urc-targetdesc+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"td\"]},\"application/urc-uisocketdesc+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vcard+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vcard+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vemmi\":{\"source\":\"iana\"},\"application/vividence.scriptfile\":{\"source\":\"apache\"},\"application/vnd.1000minds.decision-model+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"1km\"]},\"application/vnd.3gpp-prose+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp-prose-pc3ch+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp-v2x-local-service-information\":{\"source\":\"iana\"},\"application/vnd.3gpp.5gnas\":{\"source\":\"iana\"},\"application/vnd.3gpp.access-transfer-events+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.bsf+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.gmop+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.gtpc\":{\"source\":\"iana\"},\"application/vnd.3gpp.interworking-data\":{\"source\":\"iana\"},\"application/vnd.3gpp.lpp\":{\"source\":\"iana\"},\"application/vnd.3gpp.mc-signalling-ear\":{\"source\":\"iana\"},\"application/vnd.3gpp.mcdata-affiliation-command+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcdata-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcdata-payload\":{\"source\":\"iana\"},\"application/vnd.3gpp.mcdata-service-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcdata-signalling\":{\"source\":\"iana\"},\"application/vnd.3gpp.mcdata-ue-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcdata-user-profile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-affiliation-command+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-floor-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-location-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-mbms-usage-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-service-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-signed+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-ue-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-ue-init-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcptt-user-profile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-affiliation-command+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-affiliation-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-location-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-mbms-usage-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-service-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-transmission-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-ue-config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mcvideo-user-profile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.mid-call+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.ngap\":{\"source\":\"iana\"},\"application/vnd.3gpp.pfcp\":{\"source\":\"iana\"},\"application/vnd.3gpp.pic-bw-large\":{\"source\":\"iana\",\"extensions\":[\"plb\"]},\"application/vnd.3gpp.pic-bw-small\":{\"source\":\"iana\",\"extensions\":[\"psb\"]},\"application/vnd.3gpp.pic-bw-var\":{\"source\":\"iana\",\"extensions\":[\"pvb\"]},\"application/vnd.3gpp.s1ap\":{\"source\":\"iana\"},\"application/vnd.3gpp.sms\":{\"source\":\"iana\"},\"application/vnd.3gpp.sms+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.srvcc-ext+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.srvcc-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.state-and-event-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp.ussd+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp2.bcmcsinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.3gpp2.sms\":{\"source\":\"iana\"},\"application/vnd.3gpp2.tcap\":{\"source\":\"iana\",\"extensions\":[\"tcap\"]},\"application/vnd.3lightssoftware.imagescal\":{\"source\":\"iana\"},\"application/vnd.3m.post-it-notes\":{\"source\":\"iana\",\"extensions\":[\"pwn\"]},\"application/vnd.accpac.simply.aso\":{\"source\":\"iana\",\"extensions\":[\"aso\"]},\"application/vnd.accpac.simply.imp\":{\"source\":\"iana\",\"extensions\":[\"imp\"]},\"application/vnd.acucobol\":{\"source\":\"iana\",\"extensions\":[\"acu\"]},\"application/vnd.acucorp\":{\"source\":\"iana\",\"extensions\":[\"atc\",\"acutc\"]},\"application/vnd.adobe.air-application-installer-package+zip\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"air\"]},\"application/vnd.adobe.flash.movie\":{\"source\":\"iana\"},\"application/vnd.adobe.formscentral.fcdt\":{\"source\":\"iana\",\"extensions\":[\"fcdt\"]},\"application/vnd.adobe.fxp\":{\"source\":\"iana\",\"extensions\":[\"fxp\",\"fxpl\"]},\"application/vnd.adobe.partial-upload\":{\"source\":\"iana\"},\"application/vnd.adobe.xdp+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xdp\"]},\"application/vnd.adobe.xfdf\":{\"source\":\"iana\",\"extensions\":[\"xfdf\"]},\"application/vnd.aether.imp\":{\"source\":\"iana\"},\"application/vnd.afpc.afplinedata\":{\"source\":\"iana\"},\"application/vnd.afpc.afplinedata-pagedef\":{\"source\":\"iana\"},\"application/vnd.afpc.cmoca-cmresource\":{\"source\":\"iana\"},\"application/vnd.afpc.foca-charset\":{\"source\":\"iana\"},\"application/vnd.afpc.foca-codedfont\":{\"source\":\"iana\"},\"application/vnd.afpc.foca-codepage\":{\"source\":\"iana\"},\"application/vnd.afpc.modca\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-cmtable\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-formdef\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-mediummap\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-objectcontainer\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-overlay\":{\"source\":\"iana\"},\"application/vnd.afpc.modca-pagesegment\":{\"source\":\"iana\"},\"application/vnd.ah-barcode\":{\"source\":\"iana\"},\"application/vnd.ahead.space\":{\"source\":\"iana\",\"extensions\":[\"ahead\"]},\"application/vnd.airzip.filesecure.azf\":{\"source\":\"iana\",\"extensions\":[\"azf\"]},\"application/vnd.airzip.filesecure.azs\":{\"source\":\"iana\",\"extensions\":[\"azs\"]},\"application/vnd.amadeus+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.amazon.ebook\":{\"source\":\"apache\",\"extensions\":[\"azw\"]},\"application/vnd.amazon.mobi8-ebook\":{\"source\":\"iana\"},\"application/vnd.americandynamics.acc\":{\"source\":\"iana\",\"extensions\":[\"acc\"]},\"application/vnd.amiga.ami\":{\"source\":\"iana\",\"extensions\":[\"ami\"]},\"application/vnd.amundsen.maze+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.android.ota\":{\"source\":\"iana\"},\"application/vnd.android.package-archive\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"apk\"]},\"application/vnd.anki\":{\"source\":\"iana\"},\"application/vnd.anser-web-certificate-issue-initiation\":{\"source\":\"iana\",\"extensions\":[\"cii\"]},\"application/vnd.anser-web-funds-transfer-initiation\":{\"source\":\"apache\",\"extensions\":[\"fti\"]},\"application/vnd.antix.game-component\":{\"source\":\"iana\",\"extensions\":[\"atx\"]},\"application/vnd.apache.arrow.file\":{\"source\":\"iana\"},\"application/vnd.apache.arrow.stream\":{\"source\":\"iana\"},\"application/vnd.apache.thrift.binary\":{\"source\":\"iana\"},\"application/vnd.apache.thrift.compact\":{\"source\":\"iana\"},\"application/vnd.apache.thrift.json\":{\"source\":\"iana\"},\"application/vnd.api+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.aplextor.warrp+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.apothekende.reservation+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.apple.installer+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mpkg\"]},\"application/vnd.apple.keynote\":{\"source\":\"iana\",\"extensions\":[\"key\"]},\"application/vnd.apple.mpegurl\":{\"source\":\"iana\",\"extensions\":[\"m3u8\"]},\"application/vnd.apple.numbers\":{\"source\":\"iana\",\"extensions\":[\"numbers\"]},\"application/vnd.apple.pages\":{\"source\":\"iana\",\"extensions\":[\"pages\"]},\"application/vnd.apple.pkpass\":{\"compressible\":false,\"extensions\":[\"pkpass\"]},\"application/vnd.arastra.swi\":{\"source\":\"iana\"},\"application/vnd.aristanetworks.swi\":{\"source\":\"iana\",\"extensions\":[\"swi\"]},\"application/vnd.artisan+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.artsquare\":{\"source\":\"iana\"},\"application/vnd.astraea-software.iota\":{\"source\":\"iana\",\"extensions\":[\"iota\"]},\"application/vnd.audiograph\":{\"source\":\"iana\",\"extensions\":[\"aep\"]},\"application/vnd.autopackage\":{\"source\":\"iana\"},\"application/vnd.avalon+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.avistar+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.balsamiq.bmml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"bmml\"]},\"application/vnd.balsamiq.bmpr\":{\"source\":\"iana\"},\"application/vnd.banana-accounting\":{\"source\":\"iana\"},\"application/vnd.bbf.usp.error\":{\"source\":\"iana\"},\"application/vnd.bbf.usp.msg\":{\"source\":\"iana\"},\"application/vnd.bbf.usp.msg+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.bekitzur-stech+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.bint.med-content\":{\"source\":\"iana\"},\"application/vnd.biopax.rdf+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.blink-idb-value-wrapper\":{\"source\":\"iana\"},\"application/vnd.blueice.multipass\":{\"source\":\"iana\",\"extensions\":[\"mpm\"]},\"application/vnd.bluetooth.ep.oob\":{\"source\":\"iana\"},\"application/vnd.bluetooth.le.oob\":{\"source\":\"iana\"},\"application/vnd.bmi\":{\"source\":\"iana\",\"extensions\":[\"bmi\"]},\"application/vnd.bpf\":{\"source\":\"iana\"},\"application/vnd.bpf3\":{\"source\":\"iana\"},\"application/vnd.businessobjects\":{\"source\":\"iana\",\"extensions\":[\"rep\"]},\"application/vnd.byu.uapi+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cab-jscript\":{\"source\":\"iana\"},\"application/vnd.canon-cpdl\":{\"source\":\"iana\"},\"application/vnd.canon-lips\":{\"source\":\"iana\"},\"application/vnd.capasystems-pg+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cendio.thinlinc.clientconf\":{\"source\":\"iana\"},\"application/vnd.century-systems.tcp_stream\":{\"source\":\"iana\"},\"application/vnd.chemdraw+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"cdxml\"]},\"application/vnd.chess-pgn\":{\"source\":\"iana\"},\"application/vnd.chipnuts.karaoke-mmd\":{\"source\":\"iana\",\"extensions\":[\"mmd\"]},\"application/vnd.ciedi\":{\"source\":\"iana\"},\"application/vnd.cinderella\":{\"source\":\"iana\",\"extensions\":[\"cdy\"]},\"application/vnd.cirpack.isdn-ext\":{\"source\":\"iana\"},\"application/vnd.citationstyles.style+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"csl\"]},\"application/vnd.claymore\":{\"source\":\"iana\",\"extensions\":[\"cla\"]},\"application/vnd.cloanto.rp9\":{\"source\":\"iana\",\"extensions\":[\"rp9\"]},\"application/vnd.clonk.c4group\":{\"source\":\"iana\",\"extensions\":[\"c4g\",\"c4d\",\"c4f\",\"c4p\",\"c4u\"]},\"application/vnd.cluetrust.cartomobile-config\":{\"source\":\"iana\",\"extensions\":[\"c11amc\"]},\"application/vnd.cluetrust.cartomobile-config-pkg\":{\"source\":\"iana\",\"extensions\":[\"c11amz\"]},\"application/vnd.coffeescript\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.document\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.document-template\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.presentation\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.presentation-template\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.spreadsheet\":{\"source\":\"iana\"},\"application/vnd.collabio.xodocuments.spreadsheet-template\":{\"source\":\"iana\"},\"application/vnd.collection+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.collection.doc+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.collection.next+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.comicbook+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.comicbook-rar\":{\"source\":\"iana\"},\"application/vnd.commerce-battelle\":{\"source\":\"iana\"},\"application/vnd.commonspace\":{\"source\":\"iana\",\"extensions\":[\"csp\"]},\"application/vnd.contact.cmsg\":{\"source\":\"iana\",\"extensions\":[\"cdbcmsg\"]},\"application/vnd.coreos.ignition+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cosmocaller\":{\"source\":\"iana\",\"extensions\":[\"cmc\"]},\"application/vnd.crick.clicker\":{\"source\":\"iana\",\"extensions\":[\"clkx\"]},\"application/vnd.crick.clicker.keyboard\":{\"source\":\"iana\",\"extensions\":[\"clkk\"]},\"application/vnd.crick.clicker.palette\":{\"source\":\"iana\",\"extensions\":[\"clkp\"]},\"application/vnd.crick.clicker.template\":{\"source\":\"iana\",\"extensions\":[\"clkt\"]},\"application/vnd.crick.clicker.wordbank\":{\"source\":\"iana\",\"extensions\":[\"clkw\"]},\"application/vnd.criticaltools.wbs+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"wbs\"]},\"application/vnd.cryptii.pipe+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.crypto-shade-file\":{\"source\":\"iana\"},\"application/vnd.cryptomator.encrypted\":{\"source\":\"iana\"},\"application/vnd.cryptomator.vault\":{\"source\":\"iana\"},\"application/vnd.ctc-posml\":{\"source\":\"iana\",\"extensions\":[\"pml\"]},\"application/vnd.ctct.ws+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cups-pdf\":{\"source\":\"iana\"},\"application/vnd.cups-postscript\":{\"source\":\"iana\"},\"application/vnd.cups-ppd\":{\"source\":\"iana\",\"extensions\":[\"ppd\"]},\"application/vnd.cups-raster\":{\"source\":\"iana\"},\"application/vnd.cups-raw\":{\"source\":\"iana\"},\"application/vnd.curl\":{\"source\":\"iana\"},\"application/vnd.curl.car\":{\"source\":\"apache\",\"extensions\":[\"car\"]},\"application/vnd.curl.pcurl\":{\"source\":\"apache\",\"extensions\":[\"pcurl\"]},\"application/vnd.cyan.dean.root+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cybank\":{\"source\":\"iana\"},\"application/vnd.cyclonedx+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.cyclonedx+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.d2l.coursepackage1p0+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.d3m-dataset\":{\"source\":\"iana\"},\"application/vnd.d3m-problem\":{\"source\":\"iana\"},\"application/vnd.dart\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"dart\"]},\"application/vnd.data-vision.rdz\":{\"source\":\"iana\",\"extensions\":[\"rdz\"]},\"application/vnd.datapackage+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dataresource+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dbf\":{\"source\":\"iana\",\"extensions\":[\"dbf\"]},\"application/vnd.debian.binary-package\":{\"source\":\"iana\"},\"application/vnd.dece.data\":{\"source\":\"iana\",\"extensions\":[\"uvf\",\"uvvf\",\"uvd\",\"uvvd\"]},\"application/vnd.dece.ttml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"uvt\",\"uvvt\"]},\"application/vnd.dece.unspecified\":{\"source\":\"iana\",\"extensions\":[\"uvx\",\"uvvx\"]},\"application/vnd.dece.zip\":{\"source\":\"iana\",\"extensions\":[\"uvz\",\"uvvz\"]},\"application/vnd.denovo.fcselayout-link\":{\"source\":\"iana\",\"extensions\":[\"fe_launch\"]},\"application/vnd.desmume.movie\":{\"source\":\"iana\"},\"application/vnd.dir-bi.plate-dl-nosuffix\":{\"source\":\"iana\"},\"application/vnd.dm.delegation+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dna\":{\"source\":\"iana\",\"extensions\":[\"dna\"]},\"application/vnd.document+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dolby.mlp\":{\"source\":\"apache\",\"extensions\":[\"mlp\"]},\"application/vnd.dolby.mobile.1\":{\"source\":\"iana\"},\"application/vnd.dolby.mobile.2\":{\"source\":\"iana\"},\"application/vnd.doremir.scorecloud-binary-document\":{\"source\":\"iana\"},\"application/vnd.dpgraph\":{\"source\":\"iana\",\"extensions\":[\"dpg\"]},\"application/vnd.dreamfactory\":{\"source\":\"iana\",\"extensions\":[\"dfac\"]},\"application/vnd.drive+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ds-keypoint\":{\"source\":\"apache\",\"extensions\":[\"kpxx\"]},\"application/vnd.dtg.local\":{\"source\":\"iana\"},\"application/vnd.dtg.local.flash\":{\"source\":\"iana\"},\"application/vnd.dtg.local.html\":{\"source\":\"iana\"},\"application/vnd.dvb.ait\":{\"source\":\"iana\",\"extensions\":[\"ait\"]},\"application/vnd.dvb.dvbisl+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.dvbj\":{\"source\":\"iana\"},\"application/vnd.dvb.esgcontainer\":{\"source\":\"iana\"},\"application/vnd.dvb.ipdcdftnotifaccess\":{\"source\":\"iana\"},\"application/vnd.dvb.ipdcesgaccess\":{\"source\":\"iana\"},\"application/vnd.dvb.ipdcesgaccess2\":{\"source\":\"iana\"},\"application/vnd.dvb.ipdcesgpdd\":{\"source\":\"iana\"},\"application/vnd.dvb.ipdcroaming\":{\"source\":\"iana\"},\"application/vnd.dvb.iptv.alfec-base\":{\"source\":\"iana\"},\"application/vnd.dvb.iptv.alfec-enhancement\":{\"source\":\"iana\"},\"application/vnd.dvb.notif-aggregate-root+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-container+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-generic+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-ia-msglist+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-ia-registration-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-ia-registration-response+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.notif-init+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.dvb.pfr\":{\"source\":\"iana\"},\"application/vnd.dvb.service\":{\"source\":\"iana\",\"extensions\":[\"svc\"]},\"application/vnd.dxr\":{\"source\":\"iana\"},\"application/vnd.dynageo\":{\"source\":\"iana\",\"extensions\":[\"geo\"]},\"application/vnd.dzr\":{\"source\":\"iana\"},\"application/vnd.easykaraoke.cdgdownload\":{\"source\":\"iana\"},\"application/vnd.ecdis-update\":{\"source\":\"iana\"},\"application/vnd.ecip.rlp\":{\"source\":\"iana\"},\"application/vnd.ecowin.chart\":{\"source\":\"iana\",\"extensions\":[\"mag\"]},\"application/vnd.ecowin.filerequest\":{\"source\":\"iana\"},\"application/vnd.ecowin.fileupdate\":{\"source\":\"iana\"},\"application/vnd.ecowin.series\":{\"source\":\"iana\"},\"application/vnd.ecowin.seriesrequest\":{\"source\":\"iana\"},\"application/vnd.ecowin.seriesupdate\":{\"source\":\"iana\"},\"application/vnd.efi.img\":{\"source\":\"iana\"},\"application/vnd.efi.iso\":{\"source\":\"iana\"},\"application/vnd.emclient.accessrequest+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.enliven\":{\"source\":\"iana\",\"extensions\":[\"nml\"]},\"application/vnd.enphase.envoy\":{\"source\":\"iana\"},\"application/vnd.eprints.data+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.epson.esf\":{\"source\":\"iana\",\"extensions\":[\"esf\"]},\"application/vnd.epson.msf\":{\"source\":\"iana\",\"extensions\":[\"msf\"]},\"application/vnd.epson.quickanime\":{\"source\":\"iana\",\"extensions\":[\"qam\"]},\"application/vnd.epson.salt\":{\"source\":\"iana\",\"extensions\":[\"slt\"]},\"application/vnd.epson.ssf\":{\"source\":\"iana\",\"extensions\":[\"ssf\"]},\"application/vnd.ericsson.quickcall\":{\"source\":\"iana\"},\"application/vnd.espass-espass+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.eszigno3+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"es3\",\"et3\"]},\"application/vnd.etsi.aoc+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.asic-e+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.etsi.asic-s+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.etsi.cug+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvcommand+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvdiscovery+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvprofile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvsad-bc+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvsad-cod+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvsad-npvr+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvservice+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvsync+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.iptvueprofile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.mcid+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.mheg5\":{\"source\":\"iana\"},\"application/vnd.etsi.overload-control-policy-dataset+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.pstn+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.sci+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.simservs+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.timestamp-token\":{\"source\":\"iana\"},\"application/vnd.etsi.tsl+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.etsi.tsl.der\":{\"source\":\"iana\"},\"application/vnd.eudora.data\":{\"source\":\"iana\"},\"application/vnd.evolv.ecig.profile\":{\"source\":\"iana\"},\"application/vnd.evolv.ecig.settings\":{\"source\":\"iana\"},\"application/vnd.evolv.ecig.theme\":{\"source\":\"iana\"},\"application/vnd.exstream-empower+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.exstream-package\":{\"source\":\"iana\"},\"application/vnd.ezpix-album\":{\"source\":\"iana\",\"extensions\":[\"ez2\"]},\"application/vnd.ezpix-package\":{\"source\":\"iana\",\"extensions\":[\"ez3\"]},\"application/vnd.f-secure.mobile\":{\"source\":\"iana\"},\"application/vnd.fastcopy-disk-image\":{\"source\":\"iana\"},\"application/vnd.fdf\":{\"source\":\"iana\",\"extensions\":[\"fdf\"]},\"application/vnd.fdsn.mseed\":{\"source\":\"iana\",\"extensions\":[\"mseed\"]},\"application/vnd.fdsn.seed\":{\"source\":\"iana\",\"extensions\":[\"seed\",\"dataless\"]},\"application/vnd.ffsns\":{\"source\":\"iana\"},\"application/vnd.ficlab.flb+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.filmit.zfc\":{\"source\":\"iana\"},\"application/vnd.fints\":{\"source\":\"iana\"},\"application/vnd.firemonkeys.cloudcell\":{\"source\":\"iana\"},\"application/vnd.flographit\":{\"source\":\"iana\",\"extensions\":[\"gph\"]},\"application/vnd.fluxtime.clip\":{\"source\":\"iana\",\"extensions\":[\"ftc\"]},\"application/vnd.font-fontforge-sfd\":{\"source\":\"iana\"},\"application/vnd.framemaker\":{\"source\":\"iana\",\"extensions\":[\"fm\",\"frame\",\"maker\",\"book\"]},\"application/vnd.frogans.fnc\":{\"source\":\"iana\",\"extensions\":[\"fnc\"]},\"application/vnd.frogans.ltf\":{\"source\":\"iana\",\"extensions\":[\"ltf\"]},\"application/vnd.fsc.weblaunch\":{\"source\":\"iana\",\"extensions\":[\"fsc\"]},\"application/vnd.fujifilm.fb.docuworks\":{\"source\":\"iana\"},\"application/vnd.fujifilm.fb.docuworks.binder\":{\"source\":\"iana\"},\"application/vnd.fujifilm.fb.docuworks.container\":{\"source\":\"iana\"},\"application/vnd.fujifilm.fb.jfi+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.fujitsu.oasys\":{\"source\":\"iana\",\"extensions\":[\"oas\"]},\"application/vnd.fujitsu.oasys2\":{\"source\":\"iana\",\"extensions\":[\"oa2\"]},\"application/vnd.fujitsu.oasys3\":{\"source\":\"iana\",\"extensions\":[\"oa3\"]},\"application/vnd.fujitsu.oasysgp\":{\"source\":\"iana\",\"extensions\":[\"fg5\"]},\"application/vnd.fujitsu.oasysprs\":{\"source\":\"iana\",\"extensions\":[\"bh2\"]},\"application/vnd.fujixerox.art-ex\":{\"source\":\"iana\"},\"application/vnd.fujixerox.art4\":{\"source\":\"iana\"},\"application/vnd.fujixerox.ddd\":{\"source\":\"iana\",\"extensions\":[\"ddd\"]},\"application/vnd.fujixerox.docuworks\":{\"source\":\"iana\",\"extensions\":[\"xdw\"]},\"application/vnd.fujixerox.docuworks.binder\":{\"source\":\"iana\",\"extensions\":[\"xbd\"]},\"application/vnd.fujixerox.docuworks.container\":{\"source\":\"iana\"},\"application/vnd.fujixerox.hbpl\":{\"source\":\"iana\"},\"application/vnd.fut-misnet\":{\"source\":\"iana\"},\"application/vnd.futoin+cbor\":{\"source\":\"iana\"},\"application/vnd.futoin+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.fuzzysheet\":{\"source\":\"iana\",\"extensions\":[\"fzs\"]},\"application/vnd.genomatix.tuxedo\":{\"source\":\"iana\",\"extensions\":[\"txd\"]},\"application/vnd.gentics.grd+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.geo+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.geocube+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.geogebra.file\":{\"source\":\"iana\",\"extensions\":[\"ggb\"]},\"application/vnd.geogebra.slides\":{\"source\":\"iana\"},\"application/vnd.geogebra.tool\":{\"source\":\"iana\",\"extensions\":[\"ggt\"]},\"application/vnd.geometry-explorer\":{\"source\":\"iana\",\"extensions\":[\"gex\",\"gre\"]},\"application/vnd.geonext\":{\"source\":\"iana\",\"extensions\":[\"gxt\"]},\"application/vnd.geoplan\":{\"source\":\"iana\",\"extensions\":[\"g2w\"]},\"application/vnd.geospace\":{\"source\":\"iana\",\"extensions\":[\"g3w\"]},\"application/vnd.gerber\":{\"source\":\"iana\"},\"application/vnd.globalplatform.card-content-mgt\":{\"source\":\"iana\"},\"application/vnd.globalplatform.card-content-mgt-response\":{\"source\":\"iana\"},\"application/vnd.gmx\":{\"source\":\"iana\",\"extensions\":[\"gmx\"]},\"application/vnd.google-apps.document\":{\"compressible\":false,\"extensions\":[\"gdoc\"]},\"application/vnd.google-apps.presentation\":{\"compressible\":false,\"extensions\":[\"gslides\"]},\"application/vnd.google-apps.spreadsheet\":{\"compressible\":false,\"extensions\":[\"gsheet\"]},\"application/vnd.google-earth.kml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"kml\"]},\"application/vnd.google-earth.kmz\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"kmz\"]},\"application/vnd.gov.sk.e-form+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.gov.sk.e-form+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.gov.sk.xmldatacontainer+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.grafeq\":{\"source\":\"iana\",\"extensions\":[\"gqf\",\"gqs\"]},\"application/vnd.gridmp\":{\"source\":\"iana\"},\"application/vnd.groove-account\":{\"source\":\"iana\",\"extensions\":[\"gac\"]},\"application/vnd.groove-help\":{\"source\":\"iana\",\"extensions\":[\"ghf\"]},\"application/vnd.groove-identity-message\":{\"source\":\"iana\",\"extensions\":[\"gim\"]},\"application/vnd.groove-injector\":{\"source\":\"iana\",\"extensions\":[\"grv\"]},\"application/vnd.groove-tool-message\":{\"source\":\"iana\",\"extensions\":[\"gtm\"]},\"application/vnd.groove-tool-template\":{\"source\":\"iana\",\"extensions\":[\"tpl\"]},\"application/vnd.groove-vcard\":{\"source\":\"iana\",\"extensions\":[\"vcg\"]},\"application/vnd.hal+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hal+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"hal\"]},\"application/vnd.handheld-entertainment+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"zmm\"]},\"application/vnd.hbci\":{\"source\":\"iana\",\"extensions\":[\"hbci\"]},\"application/vnd.hc+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hcl-bireports\":{\"source\":\"iana\"},\"application/vnd.hdt\":{\"source\":\"iana\"},\"application/vnd.heroku+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hhe.lesson-player\":{\"source\":\"iana\",\"extensions\":[\"les\"]},\"application/vnd.hp-hpgl\":{\"source\":\"iana\",\"extensions\":[\"hpgl\"]},\"application/vnd.hp-hpid\":{\"source\":\"iana\",\"extensions\":[\"hpid\"]},\"application/vnd.hp-hps\":{\"source\":\"iana\",\"extensions\":[\"hps\"]},\"application/vnd.hp-jlyt\":{\"source\":\"iana\",\"extensions\":[\"jlt\"]},\"application/vnd.hp-pcl\":{\"source\":\"iana\",\"extensions\":[\"pcl\"]},\"application/vnd.hp-pclxl\":{\"source\":\"iana\",\"extensions\":[\"pclxl\"]},\"application/vnd.httphone\":{\"source\":\"iana\"},\"application/vnd.hydrostatix.sof-data\":{\"source\":\"iana\",\"extensions\":[\"sfd-hdstx\"]},\"application/vnd.hyper+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hyper-item+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hyperdrive+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.hzn-3d-crossword\":{\"source\":\"iana\"},\"application/vnd.ibm.afplinedata\":{\"source\":\"iana\"},\"application/vnd.ibm.electronic-media\":{\"source\":\"iana\"},\"application/vnd.ibm.minipay\":{\"source\":\"iana\",\"extensions\":[\"mpy\"]},\"application/vnd.ibm.modcap\":{\"source\":\"iana\",\"extensions\":[\"afp\",\"listafp\",\"list3820\"]},\"application/vnd.ibm.rights-management\":{\"source\":\"iana\",\"extensions\":[\"irm\"]},\"application/vnd.ibm.secure-container\":{\"source\":\"iana\",\"extensions\":[\"sc\"]},\"application/vnd.iccprofile\":{\"source\":\"iana\",\"extensions\":[\"icc\",\"icm\"]},\"application/vnd.ieee.1905\":{\"source\":\"iana\"},\"application/vnd.igloader\":{\"source\":\"iana\",\"extensions\":[\"igl\"]},\"application/vnd.imagemeter.folder+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.imagemeter.image+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.immervision-ivp\":{\"source\":\"iana\",\"extensions\":[\"ivp\"]},\"application/vnd.immervision-ivu\":{\"source\":\"iana\",\"extensions\":[\"ivu\"]},\"application/vnd.ims.imsccv1p1\":{\"source\":\"iana\"},\"application/vnd.ims.imsccv1p2\":{\"source\":\"iana\"},\"application/vnd.ims.imsccv1p3\":{\"source\":\"iana\"},\"application/vnd.ims.lis.v2.result+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ims.lti.v2.toolconsumerprofile+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ims.lti.v2.toolproxy+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ims.lti.v2.toolproxy.id+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ims.lti.v2.toolsettings+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ims.lti.v2.toolsettings.simple+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.informedcontrol.rms+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.informix-visionary\":{\"source\":\"iana\"},\"application/vnd.infotech.project\":{\"source\":\"iana\"},\"application/vnd.infotech.project+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.innopath.wamp.notification\":{\"source\":\"iana\"},\"application/vnd.insors.igm\":{\"source\":\"iana\",\"extensions\":[\"igm\"]},\"application/vnd.intercon.formnet\":{\"source\":\"iana\",\"extensions\":[\"xpw\",\"xpx\"]},\"application/vnd.intergeo\":{\"source\":\"iana\",\"extensions\":[\"i2g\"]},\"application/vnd.intertrust.digibox\":{\"source\":\"iana\"},\"application/vnd.intertrust.nncp\":{\"source\":\"iana\"},\"application/vnd.intu.qbo\":{\"source\":\"iana\",\"extensions\":[\"qbo\"]},\"application/vnd.intu.qfx\":{\"source\":\"iana\",\"extensions\":[\"qfx\"]},\"application/vnd.iptc.g2.catalogitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.conceptitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.knowledgeitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.newsitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.newsmessage+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.packageitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.iptc.g2.planningitem+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ipunplugged.rcprofile\":{\"source\":\"iana\",\"extensions\":[\"rcprofile\"]},\"application/vnd.irepository.package+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"irp\"]},\"application/vnd.is-xpr\":{\"source\":\"iana\",\"extensions\":[\"xpr\"]},\"application/vnd.isac.fcs\":{\"source\":\"iana\",\"extensions\":[\"fcs\"]},\"application/vnd.iso11783-10+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.jam\":{\"source\":\"iana\",\"extensions\":[\"jam\"]},\"application/vnd.japannet-directory-service\":{\"source\":\"iana\"},\"application/vnd.japannet-jpnstore-wakeup\":{\"source\":\"iana\"},\"application/vnd.japannet-payment-wakeup\":{\"source\":\"iana\"},\"application/vnd.japannet-registration\":{\"source\":\"iana\"},\"application/vnd.japannet-registration-wakeup\":{\"source\":\"iana\"},\"application/vnd.japannet-setstore-wakeup\":{\"source\":\"iana\"},\"application/vnd.japannet-verification\":{\"source\":\"iana\"},\"application/vnd.japannet-verification-wakeup\":{\"source\":\"iana\"},\"application/vnd.jcp.javame.midlet-rms\":{\"source\":\"iana\",\"extensions\":[\"rms\"]},\"application/vnd.jisp\":{\"source\":\"iana\",\"extensions\":[\"jisp\"]},\"application/vnd.joost.joda-archive\":{\"source\":\"iana\",\"extensions\":[\"joda\"]},\"application/vnd.jsk.isdn-ngn\":{\"source\":\"iana\"},\"application/vnd.kahootz\":{\"source\":\"iana\",\"extensions\":[\"ktz\",\"ktr\"]},\"application/vnd.kde.karbon\":{\"source\":\"iana\",\"extensions\":[\"karbon\"]},\"application/vnd.kde.kchart\":{\"source\":\"iana\",\"extensions\":[\"chrt\"]},\"application/vnd.kde.kformula\":{\"source\":\"iana\",\"extensions\":[\"kfo\"]},\"application/vnd.kde.kivio\":{\"source\":\"iana\",\"extensions\":[\"flw\"]},\"application/vnd.kde.kontour\":{\"source\":\"iana\",\"extensions\":[\"kon\"]},\"application/vnd.kde.kpresenter\":{\"source\":\"iana\",\"extensions\":[\"kpr\",\"kpt\"]},\"application/vnd.kde.kspread\":{\"source\":\"iana\",\"extensions\":[\"ksp\"]},\"application/vnd.kde.kword\":{\"source\":\"iana\",\"extensions\":[\"kwd\",\"kwt\"]},\"application/vnd.kenameaapp\":{\"source\":\"iana\",\"extensions\":[\"htke\"]},\"application/vnd.kidspiration\":{\"source\":\"iana\",\"extensions\":[\"kia\"]},\"application/vnd.kinar\":{\"source\":\"iana\",\"extensions\":[\"kne\",\"knp\"]},\"application/vnd.koan\":{\"source\":\"iana\",\"extensions\":[\"skp\",\"skd\",\"skt\",\"skm\"]},\"application/vnd.kodak-descriptor\":{\"source\":\"iana\",\"extensions\":[\"sse\"]},\"application/vnd.las\":{\"source\":\"iana\"},\"application/vnd.las.las+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.las.las+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"lasxml\"]},\"application/vnd.laszip\":{\"source\":\"iana\"},\"application/vnd.leap+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.liberty-request+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.llamagraphics.life-balance.desktop\":{\"source\":\"iana\",\"extensions\":[\"lbd\"]},\"application/vnd.llamagraphics.life-balance.exchange+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"lbe\"]},\"application/vnd.logipipe.circuit+zip\":{\"source\":\"iana\",\"compressible\":false},\"application/vnd.loom\":{\"source\":\"iana\"},\"application/vnd.lotus-1-2-3\":{\"source\":\"iana\",\"extensions\":[\"123\"]},\"application/vnd.lotus-approach\":{\"source\":\"iana\",\"extensions\":[\"apr\"]},\"application/vnd.lotus-freelance\":{\"source\":\"iana\",\"extensions\":[\"pre\"]},\"application/vnd.lotus-notes\":{\"source\":\"iana\",\"extensions\":[\"nsf\"]},\"application/vnd.lotus-organizer\":{\"source\":\"iana\",\"extensions\":[\"org\"]},\"application/vnd.lotus-screencam\":{\"source\":\"iana\",\"extensions\":[\"scm\"]},\"application/vnd.lotus-wordpro\":{\"source\":\"iana\",\"extensions\":[\"lwp\"]},\"application/vnd.macports.portpkg\":{\"source\":\"iana\",\"extensions\":[\"portpkg\"]},\"application/vnd.mapbox-vector-tile\":{\"source\":\"iana\",\"extensions\":[\"mvt\"]},\"application/vnd.marlin.drm.actiontoken+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.marlin.drm.conftoken+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.marlin.drm.license+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.marlin.drm.mdcf\":{\"source\":\"iana\"},\"application/vnd.mason+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.maxmind.maxmind-db\":{\"source\":\"iana\"},\"application/vnd.mcd\":{\"source\":\"iana\",\"extensions\":[\"mcd\"]},\"application/vnd.medcalcdata\":{\"source\":\"iana\",\"extensions\":[\"mc1\"]},\"application/vnd.mediastation.cdkey\":{\"source\":\"iana\",\"extensions\":[\"cdkey\"]},\"application/vnd.meridian-slingshot\":{\"source\":\"iana\"},\"application/vnd.mfer\":{\"source\":\"iana\",\"extensions\":[\"mwf\"]},\"application/vnd.mfmp\":{\"source\":\"iana\",\"extensions\":[\"mfm\"]},\"application/vnd.micro+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.micrografx.flo\":{\"source\":\"iana\",\"extensions\":[\"flo\"]},\"application/vnd.micrografx.igx\":{\"source\":\"iana\",\"extensions\":[\"igx\"]},\"application/vnd.microsoft.portable-executable\":{\"source\":\"iana\"},\"application/vnd.microsoft.windows.thumbnail-cache\":{\"source\":\"iana\"},\"application/vnd.miele+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.mif\":{\"source\":\"iana\",\"extensions\":[\"mif\"]},\"application/vnd.minisoft-hp3000-save\":{\"source\":\"iana\"},\"application/vnd.mitsubishi.misty-guard.trustweb\":{\"source\":\"iana\"},\"application/vnd.mobius.daf\":{\"source\":\"iana\",\"extensions\":[\"daf\"]},\"application/vnd.mobius.dis\":{\"source\":\"iana\",\"extensions\":[\"dis\"]},\"application/vnd.mobius.mbk\":{\"source\":\"iana\",\"extensions\":[\"mbk\"]},\"application/vnd.mobius.mqy\":{\"source\":\"iana\",\"extensions\":[\"mqy\"]},\"application/vnd.mobius.msl\":{\"source\":\"iana\",\"extensions\":[\"msl\"]},\"application/vnd.mobius.plc\":{\"source\":\"iana\",\"extensions\":[\"plc\"]},\"application/vnd.mobius.txf\":{\"source\":\"iana\",\"extensions\":[\"txf\"]},\"application/vnd.mophun.application\":{\"source\":\"iana\",\"extensions\":[\"mpn\"]},\"application/vnd.mophun.certificate\":{\"source\":\"iana\",\"extensions\":[\"mpc\"]},\"application/vnd.motorola.flexsuite\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.adsi\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.fis\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.gotap\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.kmr\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.ttc\":{\"source\":\"iana\"},\"application/vnd.motorola.flexsuite.wem\":{\"source\":\"iana\"},\"application/vnd.motorola.iprm\":{\"source\":\"iana\"},\"application/vnd.mozilla.xul+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xul\"]},\"application/vnd.ms-3mfdocument\":{\"source\":\"iana\"},\"application/vnd.ms-artgalry\":{\"source\":\"iana\",\"extensions\":[\"cil\"]},\"application/vnd.ms-asf\":{\"source\":\"iana\"},\"application/vnd.ms-cab-compressed\":{\"source\":\"iana\",\"extensions\":[\"cab\"]},\"application/vnd.ms-color.iccprofile\":{\"source\":\"apache\"},\"application/vnd.ms-excel\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"xls\",\"xlm\",\"xla\",\"xlc\",\"xlt\",\"xlw\"]},\"application/vnd.ms-excel.addin.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"xlam\"]},\"application/vnd.ms-excel.sheet.binary.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"xlsb\"]},\"application/vnd.ms-excel.sheet.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"xlsm\"]},\"application/vnd.ms-excel.template.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"xltm\"]},\"application/vnd.ms-fontobject\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"eot\"]},\"application/vnd.ms-htmlhelp\":{\"source\":\"iana\",\"extensions\":[\"chm\"]},\"application/vnd.ms-ims\":{\"source\":\"iana\",\"extensions\":[\"ims\"]},\"application/vnd.ms-lrm\":{\"source\":\"iana\",\"extensions\":[\"lrm\"]},\"application/vnd.ms-office.activex+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ms-officetheme\":{\"source\":\"iana\",\"extensions\":[\"thmx\"]},\"application/vnd.ms-opentype\":{\"source\":\"apache\",\"compressible\":true},\"application/vnd.ms-outlook\":{\"compressible\":false,\"extensions\":[\"msg\"]},\"application/vnd.ms-package.obfuscated-opentype\":{\"source\":\"apache\"},\"application/vnd.ms-pki.seccat\":{\"source\":\"apache\",\"extensions\":[\"cat\"]},\"application/vnd.ms-pki.stl\":{\"source\":\"apache\",\"extensions\":[\"stl\"]},\"application/vnd.ms-playready.initiator+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ms-powerpoint\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"ppt\",\"pps\",\"pot\"]},\"application/vnd.ms-powerpoint.addin.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"ppam\"]},\"application/vnd.ms-powerpoint.presentation.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"pptm\"]},\"application/vnd.ms-powerpoint.slide.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"sldm\"]},\"application/vnd.ms-powerpoint.slideshow.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"ppsm\"]},\"application/vnd.ms-powerpoint.template.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"potm\"]},\"application/vnd.ms-printdevicecapabilities+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ms-printing.printticket+xml\":{\"source\":\"apache\",\"compressible\":true},\"application/vnd.ms-printschematicket+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.ms-project\":{\"source\":\"iana\",\"extensions\":[\"mpp\",\"mpt\"]},\"application/vnd.ms-tnef\":{\"source\":\"iana\"},\"application/vnd.ms-windows.devicepairing\":{\"source\":\"iana\"},\"application/vnd.ms-windows.nwprinting.oob\":{\"source\":\"iana\"},\"application/vnd.ms-windows.printerpairing\":{\"source\":\"iana\"},\"application/vnd.ms-windows.wsd.oob\":{\"source\":\"iana\"},\"application/vnd.ms-wmdrm.lic-chlg-req\":{\"source\":\"iana\"},\"application/vnd.ms-wmdrm.lic-resp\":{\"source\":\"iana\"},\"application/vnd.ms-wmdrm.meter-chlg-req\":{\"source\":\"iana\"},\"application/vnd.ms-wmdrm.meter-resp\":{\"source\":\"iana\"},\"application/vnd.ms-word.document.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"docm\"]},\"application/vnd.ms-word.template.macroenabled.12\":{\"source\":\"iana\",\"extensions\":[\"dotm\"]},\"application/vnd.ms-works\":{\"source\":\"iana\",\"extensions\":[\"wps\",\"wks\",\"wcm\",\"wdb\"]},\"application/vnd.ms-wpl\":{\"source\":\"iana\",\"extensions\":[\"wpl\"]},\"application/vnd.ms-xpsdocument\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"xps\"]},\"application/vnd.msa-disk-image\":{\"source\":\"iana\"},\"application/vnd.mseq\":{\"source\":\"iana\",\"extensions\":[\"mseq\"]},\"application/vnd.msign\":{\"source\":\"iana\"},\"application/vnd.multiad.creator\":{\"source\":\"iana\"},\"application/vnd.multiad.creator.cif\":{\"source\":\"iana\"},\"application/vnd.music-niff\":{\"source\":\"iana\"},\"application/vnd.musician\":{\"source\":\"iana\",\"extensions\":[\"mus\"]},\"application/vnd.muvee.style\":{\"source\":\"iana\",\"extensions\":[\"msty\"]},\"application/vnd.mynfc\":{\"source\":\"iana\",\"extensions\":[\"taglet\"]},\"application/vnd.ncd.control\":{\"source\":\"iana\"},\"application/vnd.ncd.reference\":{\"source\":\"iana\"},\"application/vnd.nearst.inv+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nebumind.line\":{\"source\":\"iana\"},\"application/vnd.nervana\":{\"source\":\"iana\"},\"application/vnd.netfpx\":{\"source\":\"iana\"},\"application/vnd.neurolanguage.nlu\":{\"source\":\"iana\",\"extensions\":[\"nlu\"]},\"application/vnd.nimn\":{\"source\":\"iana\"},\"application/vnd.nintendo.nitro.rom\":{\"source\":\"iana\"},\"application/vnd.nintendo.snes.rom\":{\"source\":\"iana\"},\"application/vnd.nitf\":{\"source\":\"iana\",\"extensions\":[\"ntf\",\"nitf\"]},\"application/vnd.noblenet-directory\":{\"source\":\"iana\",\"extensions\":[\"nnd\"]},\"application/vnd.noblenet-sealer\":{\"source\":\"iana\",\"extensions\":[\"nns\"]},\"application/vnd.noblenet-web\":{\"source\":\"iana\",\"extensions\":[\"nnw\"]},\"application/vnd.nokia.catalogs\":{\"source\":\"iana\"},\"application/vnd.nokia.conml+wbxml\":{\"source\":\"iana\"},\"application/vnd.nokia.conml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nokia.iptv.config+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nokia.isds-radio-presets\":{\"source\":\"iana\"},\"application/vnd.nokia.landmark+wbxml\":{\"source\":\"iana\"},\"application/vnd.nokia.landmark+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nokia.landmarkcollection+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nokia.n-gage.ac+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ac\"]},\"application/vnd.nokia.n-gage.data\":{\"source\":\"iana\",\"extensions\":[\"ngdat\"]},\"application/vnd.nokia.n-gage.symbian.install\":{\"source\":\"iana\",\"extensions\":[\"n-gage\"]},\"application/vnd.nokia.ncd\":{\"source\":\"iana\"},\"application/vnd.nokia.pcd+wbxml\":{\"source\":\"iana\"},\"application/vnd.nokia.pcd+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.nokia.radio-preset\":{\"source\":\"iana\",\"extensions\":[\"rpst\"]},\"application/vnd.nokia.radio-presets\":{\"source\":\"iana\",\"extensions\":[\"rpss\"]},\"application/vnd.novadigm.edm\":{\"source\":\"iana\",\"extensions\":[\"edm\"]},\"application/vnd.novadigm.edx\":{\"source\":\"iana\",\"extensions\":[\"edx\"]},\"application/vnd.novadigm.ext\":{\"source\":\"iana\",\"extensions\":[\"ext\"]},\"application/vnd.ntt-local.content-share\":{\"source\":\"iana\"},\"application/vnd.ntt-local.file-transfer\":{\"source\":\"iana\"},\"application/vnd.ntt-local.ogw_remote-access\":{\"source\":\"iana\"},\"application/vnd.ntt-local.sip-ta_remote\":{\"source\":\"iana\"},\"application/vnd.ntt-local.sip-ta_tcp_stream\":{\"source\":\"iana\"},\"application/vnd.oasis.opendocument.chart\":{\"source\":\"iana\",\"extensions\":[\"odc\"]},\"application/vnd.oasis.opendocument.chart-template\":{\"source\":\"iana\",\"extensions\":[\"otc\"]},\"application/vnd.oasis.opendocument.database\":{\"source\":\"iana\",\"extensions\":[\"odb\"]},\"application/vnd.oasis.opendocument.formula\":{\"source\":\"iana\",\"extensions\":[\"odf\"]},\"application/vnd.oasis.opendocument.formula-template\":{\"source\":\"iana\",\"extensions\":[\"odft\"]},\"application/vnd.oasis.opendocument.graphics\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"odg\"]},\"application/vnd.oasis.opendocument.graphics-template\":{\"source\":\"iana\",\"extensions\":[\"otg\"]},\"application/vnd.oasis.opendocument.image\":{\"source\":\"iana\",\"extensions\":[\"odi\"]},\"application/vnd.oasis.opendocument.image-template\":{\"source\":\"iana\",\"extensions\":[\"oti\"]},\"application/vnd.oasis.opendocument.presentation\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"odp\"]},\"application/vnd.oasis.opendocument.presentation-template\":{\"source\":\"iana\",\"extensions\":[\"otp\"]},\"application/vnd.oasis.opendocument.spreadsheet\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"ods\"]},\"application/vnd.oasis.opendocument.spreadsheet-template\":{\"source\":\"iana\",\"extensions\":[\"ots\"]},\"application/vnd.oasis.opendocument.text\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"odt\"]},\"application/vnd.oasis.opendocument.text-master\":{\"source\":\"iana\",\"extensions\":[\"odm\"]},\"application/vnd.oasis.opendocument.text-template\":{\"source\":\"iana\",\"extensions\":[\"ott\"]},\"application/vnd.oasis.opendocument.text-web\":{\"source\":\"iana\",\"extensions\":[\"oth\"]},\"application/vnd.obn\":{\"source\":\"iana\"},\"application/vnd.ocf+cbor\":{\"source\":\"iana\"},\"application/vnd.oci.image.manifest.v1+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oftn.l10n+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.contentaccessdownload+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.contentaccessstreaming+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.cspg-hexbinary\":{\"source\":\"iana\"},\"application/vnd.oipf.dae.svg+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.dae.xhtml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.mippvcontrolmessage+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.pae.gem\":{\"source\":\"iana\"},\"application/vnd.oipf.spdiscovery+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.spdlist+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.ueprofile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oipf.userprofile+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.olpc-sugar\":{\"source\":\"iana\",\"extensions\":[\"xo\"]},\"application/vnd.oma-scws-config\":{\"source\":\"iana\"},\"application/vnd.oma-scws-http-request\":{\"source\":\"iana\"},\"application/vnd.oma-scws-http-response\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.associated-procedure-parameter+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.drm-trigger+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.imd+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.ltkm\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.notification+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.provisioningtrigger\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.sgboot\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.sgdd+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.sgdu\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.simple-symbol-container\":{\"source\":\"iana\"},\"application/vnd.oma.bcast.smartcard-trigger+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.sprov+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.bcast.stkm\":{\"source\":\"iana\"},\"application/vnd.oma.cab-address-book+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.cab-feature-handler+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.cab-pcc+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.cab-subs-invite+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.cab-user-prefs+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.dcd\":{\"source\":\"iana\"},\"application/vnd.oma.dcdc\":{\"source\":\"iana\"},\"application/vnd.oma.dd2+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"dd2\"]},\"application/vnd.oma.drm.risd+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.group-usage-list+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.lwm2m+cbor\":{\"source\":\"iana\"},\"application/vnd.oma.lwm2m+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.lwm2m+tlv\":{\"source\":\"iana\"},\"application/vnd.oma.pal+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.poc.detailed-progress-report+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.poc.final-report+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.poc.groups+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.poc.invocation-descriptor+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.poc.optimized-progress-report+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.push\":{\"source\":\"iana\"},\"application/vnd.oma.scidm.messages+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oma.xcap-directory+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.omads-email+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/vnd.omads-file+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/vnd.omads-folder+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/vnd.omaloc-supl-init\":{\"source\":\"iana\"},\"application/vnd.onepager\":{\"source\":\"iana\"},\"application/vnd.onepagertamp\":{\"source\":\"iana\"},\"application/vnd.onepagertamx\":{\"source\":\"iana\"},\"application/vnd.onepagertat\":{\"source\":\"iana\"},\"application/vnd.onepagertatp\":{\"source\":\"iana\"},\"application/vnd.onepagertatx\":{\"source\":\"iana\"},\"application/vnd.openblox.game+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"obgx\"]},\"application/vnd.openblox.game-binary\":{\"source\":\"iana\"},\"application/vnd.openeye.oeb\":{\"source\":\"iana\"},\"application/vnd.openofficeorg.extension\":{\"source\":\"apache\",\"extensions\":[\"oxt\"]},\"application/vnd.openstreetmap.data+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"osm\"]},\"application/vnd.opentimestamps.ots\":{\"source\":\"iana\"},\"application/vnd.openxmlformats-officedocument.custom-properties+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.customxmlproperties+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawing+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.chart+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.extended-properties+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.comments+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.presentation\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"pptx\"]},\"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.presprops+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.slide\":{\"source\":\"iana\",\"extensions\":[\"sldx\"]},\"application/vnd.openxmlformats-officedocument.presentationml.slide+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.slideshow\":{\"source\":\"iana\",\"extensions\":[\"ppsx\"]},\"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.tags+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.template\":{\"source\":\"iana\",\"extensions\":[\"potx\"]},\"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"xlsx\"]},\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.template\":{\"source\":\"iana\",\"extensions\":[\"xltx\"]},\"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.theme+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.themeoverride+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.vmldrawing\":{\"source\":\"iana\"},\"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.document\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"docx\"]},\"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.template\":{\"source\":\"iana\",\"extensions\":[\"dotx\"]},\"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-package.core-properties+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.openxmlformats-package.relationships+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oracle.resource+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.orange.indata\":{\"source\":\"iana\"},\"application/vnd.osa.netdeploy\":{\"source\":\"iana\"},\"application/vnd.osgeo.mapguide.package\":{\"source\":\"iana\",\"extensions\":[\"mgp\"]},\"application/vnd.osgi.bundle\":{\"source\":\"iana\"},\"application/vnd.osgi.dp\":{\"source\":\"iana\",\"extensions\":[\"dp\"]},\"application/vnd.osgi.subsystem\":{\"source\":\"iana\",\"extensions\":[\"esa\"]},\"application/vnd.otps.ct-kip+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.oxli.countgraph\":{\"source\":\"iana\"},\"application/vnd.pagerduty+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.palm\":{\"source\":\"iana\",\"extensions\":[\"pdb\",\"pqa\",\"oprc\"]},\"application/vnd.panoply\":{\"source\":\"iana\"},\"application/vnd.paos.xml\":{\"source\":\"iana\"},\"application/vnd.patentdive\":{\"source\":\"iana\"},\"application/vnd.patientecommsdoc\":{\"source\":\"iana\"},\"application/vnd.pawaafile\":{\"source\":\"iana\",\"extensions\":[\"paw\"]},\"application/vnd.pcos\":{\"source\":\"iana\"},\"application/vnd.pg.format\":{\"source\":\"iana\",\"extensions\":[\"str\"]},\"application/vnd.pg.osasli\":{\"source\":\"iana\",\"extensions\":[\"ei6\"]},\"application/vnd.piaccess.application-licence\":{\"source\":\"iana\"},\"application/vnd.picsel\":{\"source\":\"iana\",\"extensions\":[\"efif\"]},\"application/vnd.pmi.widget\":{\"source\":\"iana\",\"extensions\":[\"wg\"]},\"application/vnd.poc.group-advertisement+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.pocketlearn\":{\"source\":\"iana\",\"extensions\":[\"plf\"]},\"application/vnd.powerbuilder6\":{\"source\":\"iana\",\"extensions\":[\"pbd\"]},\"application/vnd.powerbuilder6-s\":{\"source\":\"iana\"},\"application/vnd.powerbuilder7\":{\"source\":\"iana\"},\"application/vnd.powerbuilder7-s\":{\"source\":\"iana\"},\"application/vnd.powerbuilder75\":{\"source\":\"iana\"},\"application/vnd.powerbuilder75-s\":{\"source\":\"iana\"},\"application/vnd.preminet\":{\"source\":\"iana\"},\"application/vnd.previewsystems.box\":{\"source\":\"iana\",\"extensions\":[\"box\"]},\"application/vnd.proteus.magazine\":{\"source\":\"iana\",\"extensions\":[\"mgz\"]},\"application/vnd.psfs\":{\"source\":\"iana\"},\"application/vnd.publishare-delta-tree\":{\"source\":\"iana\",\"extensions\":[\"qps\"]},\"application/vnd.pvi.ptid1\":{\"source\":\"iana\",\"extensions\":[\"ptid\"]},\"application/vnd.pwg-multiplexed\":{\"source\":\"iana\"},\"application/vnd.pwg-xhtml-print+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.qualcomm.brew-app-res\":{\"source\":\"iana\"},\"application/vnd.quarantainenet\":{\"source\":\"iana\"},\"application/vnd.quark.quarkxpress\":{\"source\":\"iana\",\"extensions\":[\"qxd\",\"qxt\",\"qwd\",\"qwt\",\"qxl\",\"qxb\"]},\"application/vnd.quobject-quoxdocument\":{\"source\":\"iana\"},\"application/vnd.radisys.moml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-audit+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-audit-conf+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-audit-conn+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-audit-dialog+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-audit-stream+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-conf+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-base+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-fax-detect+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-fax-sendrecv+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-group+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-speech+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.radisys.msml-dialog-transform+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.rainstor.data\":{\"source\":\"iana\"},\"application/vnd.rapid\":{\"source\":\"iana\"},\"application/vnd.rar\":{\"source\":\"iana\",\"extensions\":[\"rar\"]},\"application/vnd.realvnc.bed\":{\"source\":\"iana\",\"extensions\":[\"bed\"]},\"application/vnd.recordare.musicxml\":{\"source\":\"iana\",\"extensions\":[\"mxl\"]},\"application/vnd.recordare.musicxml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"musicxml\"]},\"application/vnd.renlearn.rlprint\":{\"source\":\"iana\"},\"application/vnd.resilient.logic\":{\"source\":\"iana\"},\"application/vnd.restful+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.rig.cryptonote\":{\"source\":\"iana\",\"extensions\":[\"cryptonote\"]},\"application/vnd.rim.cod\":{\"source\":\"apache\",\"extensions\":[\"cod\"]},\"application/vnd.rn-realmedia\":{\"source\":\"apache\",\"extensions\":[\"rm\"]},\"application/vnd.rn-realmedia-vbr\":{\"source\":\"apache\",\"extensions\":[\"rmvb\"]},\"application/vnd.route66.link66+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"link66\"]},\"application/vnd.rs-274x\":{\"source\":\"iana\"},\"application/vnd.ruckus.download\":{\"source\":\"iana\"},\"application/vnd.s3sms\":{\"source\":\"iana\"},\"application/vnd.sailingtracker.track\":{\"source\":\"iana\",\"extensions\":[\"st\"]},\"application/vnd.sar\":{\"source\":\"iana\"},\"application/vnd.sbm.cid\":{\"source\":\"iana\"},\"application/vnd.sbm.mid2\":{\"source\":\"iana\"},\"application/vnd.scribus\":{\"source\":\"iana\"},\"application/vnd.sealed.3df\":{\"source\":\"iana\"},\"application/vnd.sealed.csf\":{\"source\":\"iana\"},\"application/vnd.sealed.doc\":{\"source\":\"iana\"},\"application/vnd.sealed.eml\":{\"source\":\"iana\"},\"application/vnd.sealed.mht\":{\"source\":\"iana\"},\"application/vnd.sealed.net\":{\"source\":\"iana\"},\"application/vnd.sealed.ppt\":{\"source\":\"iana\"},\"application/vnd.sealed.tiff\":{\"source\":\"iana\"},\"application/vnd.sealed.xls\":{\"source\":\"iana\"},\"application/vnd.sealedmedia.softseal.html\":{\"source\":\"iana\"},\"application/vnd.sealedmedia.softseal.pdf\":{\"source\":\"iana\"},\"application/vnd.seemail\":{\"source\":\"iana\",\"extensions\":[\"see\"]},\"application/vnd.seis+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.sema\":{\"source\":\"iana\",\"extensions\":[\"sema\"]},\"application/vnd.semd\":{\"source\":\"iana\",\"extensions\":[\"semd\"]},\"application/vnd.semf\":{\"source\":\"iana\",\"extensions\":[\"semf\"]},\"application/vnd.shade-save-file\":{\"source\":\"iana\"},\"application/vnd.shana.informed.formdata\":{\"source\":\"iana\",\"extensions\":[\"ifm\"]},\"application/vnd.shana.informed.formtemplate\":{\"source\":\"iana\",\"extensions\":[\"itp\"]},\"application/vnd.shana.informed.interchange\":{\"source\":\"iana\",\"extensions\":[\"iif\"]},\"application/vnd.shana.informed.package\":{\"source\":\"iana\",\"extensions\":[\"ipk\"]},\"application/vnd.shootproof+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.shopkick+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.shp\":{\"source\":\"iana\"},\"application/vnd.shx\":{\"source\":\"iana\"},\"application/vnd.sigrok.session\":{\"source\":\"iana\"},\"application/vnd.simtech-mindmapper\":{\"source\":\"iana\",\"extensions\":[\"twd\",\"twds\"]},\"application/vnd.siren+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.smaf\":{\"source\":\"iana\",\"extensions\":[\"mmf\"]},\"application/vnd.smart.notebook\":{\"source\":\"iana\"},\"application/vnd.smart.teacher\":{\"source\":\"iana\",\"extensions\":[\"teacher\"]},\"application/vnd.snesdev-page-table\":{\"source\":\"iana\"},\"application/vnd.software602.filler.form+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"fo\"]},\"application/vnd.software602.filler.form-xml-zip\":{\"source\":\"iana\"},\"application/vnd.solent.sdkm+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"sdkm\",\"sdkd\"]},\"application/vnd.spotfire.dxp\":{\"source\":\"iana\",\"extensions\":[\"dxp\"]},\"application/vnd.spotfire.sfs\":{\"source\":\"iana\",\"extensions\":[\"sfs\"]},\"application/vnd.sqlite3\":{\"source\":\"iana\"},\"application/vnd.sss-cod\":{\"source\":\"iana\"},\"application/vnd.sss-dtf\":{\"source\":\"iana\"},\"application/vnd.sss-ntf\":{\"source\":\"iana\"},\"application/vnd.stardivision.calc\":{\"source\":\"apache\",\"extensions\":[\"sdc\"]},\"application/vnd.stardivision.draw\":{\"source\":\"apache\",\"extensions\":[\"sda\"]},\"application/vnd.stardivision.impress\":{\"source\":\"apache\",\"extensions\":[\"sdd\"]},\"application/vnd.stardivision.math\":{\"source\":\"apache\",\"extensions\":[\"smf\"]},\"application/vnd.stardivision.writer\":{\"source\":\"apache\",\"extensions\":[\"sdw\",\"vor\"]},\"application/vnd.stardivision.writer-global\":{\"source\":\"apache\",\"extensions\":[\"sgl\"]},\"application/vnd.stepmania.package\":{\"source\":\"iana\",\"extensions\":[\"smzip\"]},\"application/vnd.stepmania.stepchart\":{\"source\":\"iana\",\"extensions\":[\"sm\"]},\"application/vnd.street-stream\":{\"source\":\"iana\"},\"application/vnd.sun.wadl+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"wadl\"]},\"application/vnd.sun.xml.calc\":{\"source\":\"apache\",\"extensions\":[\"sxc\"]},\"application/vnd.sun.xml.calc.template\":{\"source\":\"apache\",\"extensions\":[\"stc\"]},\"application/vnd.sun.xml.draw\":{\"source\":\"apache\",\"extensions\":[\"sxd\"]},\"application/vnd.sun.xml.draw.template\":{\"source\":\"apache\",\"extensions\":[\"std\"]},\"application/vnd.sun.xml.impress\":{\"source\":\"apache\",\"extensions\":[\"sxi\"]},\"application/vnd.sun.xml.impress.template\":{\"source\":\"apache\",\"extensions\":[\"sti\"]},\"application/vnd.sun.xml.math\":{\"source\":\"apache\",\"extensions\":[\"sxm\"]},\"application/vnd.sun.xml.writer\":{\"source\":\"apache\",\"extensions\":[\"sxw\"]},\"application/vnd.sun.xml.writer.global\":{\"source\":\"apache\",\"extensions\":[\"sxg\"]},\"application/vnd.sun.xml.writer.template\":{\"source\":\"apache\",\"extensions\":[\"stw\"]},\"application/vnd.sus-calendar\":{\"source\":\"iana\",\"extensions\":[\"sus\",\"susp\"]},\"application/vnd.svd\":{\"source\":\"iana\",\"extensions\":[\"svd\"]},\"application/vnd.swiftview-ics\":{\"source\":\"iana\"},\"application/vnd.sycle+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.symbian.install\":{\"source\":\"apache\",\"extensions\":[\"sis\",\"sisx\"]},\"application/vnd.syncml+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"xsm\"]},\"application/vnd.syncml.dm+wbxml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"extensions\":[\"bdm\"]},\"application/vnd.syncml.dm+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"xdm\"]},\"application/vnd.syncml.dm.notification\":{\"source\":\"iana\"},\"application/vnd.syncml.dmddf+wbxml\":{\"source\":\"iana\"},\"application/vnd.syncml.dmddf+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"ddf\"]},\"application/vnd.syncml.dmtnds+wbxml\":{\"source\":\"iana\"},\"application/vnd.syncml.dmtnds+xml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true},\"application/vnd.syncml.ds.notification\":{\"source\":\"iana\"},\"application/vnd.tableschema+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.tao.intent-module-archive\":{\"source\":\"iana\",\"extensions\":[\"tao\"]},\"application/vnd.tcpdump.pcap\":{\"source\":\"iana\",\"extensions\":[\"pcap\",\"cap\",\"dmp\"]},\"application/vnd.think-cell.ppttc+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.tmd.mediaflex.api+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.tml\":{\"source\":\"iana\"},\"application/vnd.tmobile-livetv\":{\"source\":\"iana\",\"extensions\":[\"tmo\"]},\"application/vnd.tri.onesource\":{\"source\":\"iana\"},\"application/vnd.trid.tpt\":{\"source\":\"iana\",\"extensions\":[\"tpt\"]},\"application/vnd.triscape.mxs\":{\"source\":\"iana\",\"extensions\":[\"mxs\"]},\"application/vnd.trueapp\":{\"source\":\"iana\",\"extensions\":[\"tra\"]},\"application/vnd.truedoc\":{\"source\":\"iana\"},\"application/vnd.ubisoft.webplayer\":{\"source\":\"iana\"},\"application/vnd.ufdl\":{\"source\":\"iana\",\"extensions\":[\"ufd\",\"ufdl\"]},\"application/vnd.uiq.theme\":{\"source\":\"iana\",\"extensions\":[\"utz\"]},\"application/vnd.umajin\":{\"source\":\"iana\",\"extensions\":[\"umj\"]},\"application/vnd.unity\":{\"source\":\"iana\",\"extensions\":[\"unityweb\"]},\"application/vnd.uoml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"uoml\"]},\"application/vnd.uplanet.alert\":{\"source\":\"iana\"},\"application/vnd.uplanet.alert-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.bearer-choice\":{\"source\":\"iana\"},\"application/vnd.uplanet.bearer-choice-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.cacheop\":{\"source\":\"iana\"},\"application/vnd.uplanet.cacheop-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.channel\":{\"source\":\"iana\"},\"application/vnd.uplanet.channel-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.list\":{\"source\":\"iana\"},\"application/vnd.uplanet.list-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.listcmd\":{\"source\":\"iana\"},\"application/vnd.uplanet.listcmd-wbxml\":{\"source\":\"iana\"},\"application/vnd.uplanet.signal\":{\"source\":\"iana\"},\"application/vnd.uri-map\":{\"source\":\"iana\"},\"application/vnd.valve.source.material\":{\"source\":\"iana\"},\"application/vnd.vcx\":{\"source\":\"iana\",\"extensions\":[\"vcx\"]},\"application/vnd.vd-study\":{\"source\":\"iana\"},\"application/vnd.vectorworks\":{\"source\":\"iana\"},\"application/vnd.vel+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.verimatrix.vcas\":{\"source\":\"iana\"},\"application/vnd.veritone.aion+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.veryant.thin\":{\"source\":\"iana\"},\"application/vnd.ves.encrypted\":{\"source\":\"iana\"},\"application/vnd.vidsoft.vidconference\":{\"source\":\"iana\"},\"application/vnd.visio\":{\"source\":\"iana\",\"extensions\":[\"vsd\",\"vst\",\"vss\",\"vsw\"]},\"application/vnd.visionary\":{\"source\":\"iana\",\"extensions\":[\"vis\"]},\"application/vnd.vividence.scriptfile\":{\"source\":\"iana\"},\"application/vnd.vsf\":{\"source\":\"iana\",\"extensions\":[\"vsf\"]},\"application/vnd.wap.sic\":{\"source\":\"iana\"},\"application/vnd.wap.slc\":{\"source\":\"iana\"},\"application/vnd.wap.wbxml\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"extensions\":[\"wbxml\"]},\"application/vnd.wap.wmlc\":{\"source\":\"iana\",\"extensions\":[\"wmlc\"]},\"application/vnd.wap.wmlscriptc\":{\"source\":\"iana\",\"extensions\":[\"wmlsc\"]},\"application/vnd.webturbo\":{\"source\":\"iana\",\"extensions\":[\"wtb\"]},\"application/vnd.wfa.dpp\":{\"source\":\"iana\"},\"application/vnd.wfa.p2p\":{\"source\":\"iana\"},\"application/vnd.wfa.wsc\":{\"source\":\"iana\"},\"application/vnd.windows.devicepairing\":{\"source\":\"iana\"},\"application/vnd.wmc\":{\"source\":\"iana\"},\"application/vnd.wmf.bootstrap\":{\"source\":\"iana\"},\"application/vnd.wolfram.mathematica\":{\"source\":\"iana\"},\"application/vnd.wolfram.mathematica.package\":{\"source\":\"iana\"},\"application/vnd.wolfram.player\":{\"source\":\"iana\",\"extensions\":[\"nbp\"]},\"application/vnd.wordperfect\":{\"source\":\"iana\",\"extensions\":[\"wpd\"]},\"application/vnd.wqd\":{\"source\":\"iana\",\"extensions\":[\"wqd\"]},\"application/vnd.wrq-hp3000-labelled\":{\"source\":\"iana\"},\"application/vnd.wt.stf\":{\"source\":\"iana\",\"extensions\":[\"stf\"]},\"application/vnd.wv.csp+wbxml\":{\"source\":\"iana\"},\"application/vnd.wv.csp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.wv.ssp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.xacml+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.xara\":{\"source\":\"iana\",\"extensions\":[\"xar\"]},\"application/vnd.xfdl\":{\"source\":\"iana\",\"extensions\":[\"xfdl\"]},\"application/vnd.xfdl.webform\":{\"source\":\"iana\"},\"application/vnd.xmi+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/vnd.xmpie.cpkg\":{\"source\":\"iana\"},\"application/vnd.xmpie.dpkg\":{\"source\":\"iana\"},\"application/vnd.xmpie.plan\":{\"source\":\"iana\"},\"application/vnd.xmpie.ppkg\":{\"source\":\"iana\"},\"application/vnd.xmpie.xlim\":{\"source\":\"iana\"},\"application/vnd.yamaha.hv-dic\":{\"source\":\"iana\",\"extensions\":[\"hvd\"]},\"application/vnd.yamaha.hv-script\":{\"source\":\"iana\",\"extensions\":[\"hvs\"]},\"application/vnd.yamaha.hv-voice\":{\"source\":\"iana\",\"extensions\":[\"hvp\"]},\"application/vnd.yamaha.openscoreformat\":{\"source\":\"iana\",\"extensions\":[\"osf\"]},\"application/vnd.yamaha.openscoreformat.osfpvg+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"osfpvg\"]},\"application/vnd.yamaha.remote-setup\":{\"source\":\"iana\"},\"application/vnd.yamaha.smaf-audio\":{\"source\":\"iana\",\"extensions\":[\"saf\"]},\"application/vnd.yamaha.smaf-phrase\":{\"source\":\"iana\",\"extensions\":[\"spf\"]},\"application/vnd.yamaha.through-ngn\":{\"source\":\"iana\"},\"application/vnd.yamaha.tunnel-udpencap\":{\"source\":\"iana\"},\"application/vnd.yaoweme\":{\"source\":\"iana\"},\"application/vnd.yellowriver-custom-menu\":{\"source\":\"iana\",\"extensions\":[\"cmp\"]},\"application/vnd.youtube.yt\":{\"source\":\"iana\"},\"application/vnd.zul\":{\"source\":\"iana\",\"extensions\":[\"zir\",\"zirz\"]},\"application/vnd.zzazz.deck+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"zaz\"]},\"application/voicexml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"vxml\"]},\"application/voucher-cms+json\":{\"source\":\"iana\",\"compressible\":true},\"application/vq-rtcpxr\":{\"source\":\"iana\"},\"application/wasm\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"wasm\"]},\"application/watcherinfo+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/webpush-options+json\":{\"source\":\"iana\",\"compressible\":true},\"application/whoispp-query\":{\"source\":\"iana\"},\"application/whoispp-response\":{\"source\":\"iana\"},\"application/widget\":{\"source\":\"iana\",\"extensions\":[\"wgt\"]},\"application/winhlp\":{\"source\":\"apache\",\"extensions\":[\"hlp\"]},\"application/wita\":{\"source\":\"iana\"},\"application/wordperfect5.1\":{\"source\":\"iana\"},\"application/wsdl+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"wsdl\"]},\"application/wspolicy+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"wspolicy\"]},\"application/x-7z-compressed\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"7z\"]},\"application/x-abiword\":{\"source\":\"apache\",\"extensions\":[\"abw\"]},\"application/x-ace-compressed\":{\"source\":\"apache\",\"extensions\":[\"ace\"]},\"application/x-amf\":{\"source\":\"apache\"},\"application/x-apple-diskimage\":{\"source\":\"apache\",\"extensions\":[\"dmg\"]},\"application/x-arj\":{\"compressible\":false,\"extensions\":[\"arj\"]},\"application/x-authorware-bin\":{\"source\":\"apache\",\"extensions\":[\"aab\",\"x32\",\"u32\",\"vox\"]},\"application/x-authorware-map\":{\"source\":\"apache\",\"extensions\":[\"aam\"]},\"application/x-authorware-seg\":{\"source\":\"apache\",\"extensions\":[\"aas\"]},\"application/x-bcpio\":{\"source\":\"apache\",\"extensions\":[\"bcpio\"]},\"application/x-bdoc\":{\"compressible\":false,\"extensions\":[\"bdoc\"]},\"application/x-bittorrent\":{\"source\":\"apache\",\"extensions\":[\"torrent\"]},\"application/x-blorb\":{\"source\":\"apache\",\"extensions\":[\"blb\",\"blorb\"]},\"application/x-bzip\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"bz\"]},\"application/x-bzip2\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"bz2\",\"boz\"]},\"application/x-cbr\":{\"source\":\"apache\",\"extensions\":[\"cbr\",\"cba\",\"cbt\",\"cbz\",\"cb7\"]},\"application/x-cdlink\":{\"source\":\"apache\",\"extensions\":[\"vcd\"]},\"application/x-cfs-compressed\":{\"source\":\"apache\",\"extensions\":[\"cfs\"]},\"application/x-chat\":{\"source\":\"apache\",\"extensions\":[\"chat\"]},\"application/x-chess-pgn\":{\"source\":\"apache\",\"extensions\":[\"pgn\"]},\"application/x-chrome-extension\":{\"extensions\":[\"crx\"]},\"application/x-cocoa\":{\"source\":\"nginx\",\"extensions\":[\"cco\"]},\"application/x-compress\":{\"source\":\"apache\"},\"application/x-conference\":{\"source\":\"apache\",\"extensions\":[\"nsc\"]},\"application/x-cpio\":{\"source\":\"apache\",\"extensions\":[\"cpio\"]},\"application/x-csh\":{\"source\":\"apache\",\"extensions\":[\"csh\"]},\"application/x-deb\":{\"compressible\":false},\"application/x-debian-package\":{\"source\":\"apache\",\"extensions\":[\"deb\",\"udeb\"]},\"application/x-dgc-compressed\":{\"source\":\"apache\",\"extensions\":[\"dgc\"]},\"application/x-director\":{\"source\":\"apache\",\"extensions\":[\"dir\",\"dcr\",\"dxr\",\"cst\",\"cct\",\"cxt\",\"w3d\",\"fgd\",\"swa\"]},\"application/x-doom\":{\"source\":\"apache\",\"extensions\":[\"wad\"]},\"application/x-dtbncx+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"ncx\"]},\"application/x-dtbook+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"dtb\"]},\"application/x-dtbresource+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"res\"]},\"application/x-dvi\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"dvi\"]},\"application/x-envoy\":{\"source\":\"apache\",\"extensions\":[\"evy\"]},\"application/x-eva\":{\"source\":\"apache\",\"extensions\":[\"eva\"]},\"application/x-font-bdf\":{\"source\":\"apache\",\"extensions\":[\"bdf\"]},\"application/x-font-dos\":{\"source\":\"apache\"},\"application/x-font-framemaker\":{\"source\":\"apache\"},\"application/x-font-ghostscript\":{\"source\":\"apache\",\"extensions\":[\"gsf\"]},\"application/x-font-libgrx\":{\"source\":\"apache\"},\"application/x-font-linux-psf\":{\"source\":\"apache\",\"extensions\":[\"psf\"]},\"application/x-font-pcf\":{\"source\":\"apache\",\"extensions\":[\"pcf\"]},\"application/x-font-snf\":{\"source\":\"apache\",\"extensions\":[\"snf\"]},\"application/x-font-speedo\":{\"source\":\"apache\"},\"application/x-font-sunos-news\":{\"source\":\"apache\"},\"application/x-font-type1\":{\"source\":\"apache\",\"extensions\":[\"pfa\",\"pfb\",\"pfm\",\"afm\"]},\"application/x-font-vfont\":{\"source\":\"apache\"},\"application/x-freearc\":{\"source\":\"apache\",\"extensions\":[\"arc\"]},\"application/x-futuresplash\":{\"source\":\"apache\",\"extensions\":[\"spl\"]},\"application/x-gca-compressed\":{\"source\":\"apache\",\"extensions\":[\"gca\"]},\"application/x-glulx\":{\"source\":\"apache\",\"extensions\":[\"ulx\"]},\"application/x-gnumeric\":{\"source\":\"apache\",\"extensions\":[\"gnumeric\"]},\"application/x-gramps-xml\":{\"source\":\"apache\",\"extensions\":[\"gramps\"]},\"application/x-gtar\":{\"source\":\"apache\",\"extensions\":[\"gtar\"]},\"application/x-gzip\":{\"source\":\"apache\"},\"application/x-hdf\":{\"source\":\"apache\",\"extensions\":[\"hdf\"]},\"application/x-httpd-php\":{\"compressible\":true,\"extensions\":[\"php\"]},\"application/x-install-instructions\":{\"source\":\"apache\",\"extensions\":[\"install\"]},\"application/x-iso9660-image\":{\"source\":\"apache\",\"extensions\":[\"iso\"]},\"application/x-iwork-keynote-sffkey\":{\"extensions\":[\"key\"]},\"application/x-iwork-numbers-sffnumbers\":{\"extensions\":[\"numbers\"]},\"application/x-iwork-pages-sffpages\":{\"extensions\":[\"pages\"]},\"application/x-java-archive-diff\":{\"source\":\"nginx\",\"extensions\":[\"jardiff\"]},\"application/x-java-jnlp-file\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"jnlp\"]},\"application/x-javascript\":{\"compressible\":true},\"application/x-keepass2\":{\"extensions\":[\"kdbx\"]},\"application/x-latex\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"latex\"]},\"application/x-lua-bytecode\":{\"extensions\":[\"luac\"]},\"application/x-lzh-compressed\":{\"source\":\"apache\",\"extensions\":[\"lzh\",\"lha\"]},\"application/x-makeself\":{\"source\":\"nginx\",\"extensions\":[\"run\"]},\"application/x-mie\":{\"source\":\"apache\",\"extensions\":[\"mie\"]},\"application/x-mobipocket-ebook\":{\"source\":\"apache\",\"extensions\":[\"prc\",\"mobi\"]},\"application/x-mpegurl\":{\"compressible\":false},\"application/x-ms-application\":{\"source\":\"apache\",\"extensions\":[\"application\"]},\"application/x-ms-shortcut\":{\"source\":\"apache\",\"extensions\":[\"lnk\"]},\"application/x-ms-wmd\":{\"source\":\"apache\",\"extensions\":[\"wmd\"]},\"application/x-ms-wmz\":{\"source\":\"apache\",\"extensions\":[\"wmz\"]},\"application/x-ms-xbap\":{\"source\":\"apache\",\"extensions\":[\"xbap\"]},\"application/x-msaccess\":{\"source\":\"apache\",\"extensions\":[\"mdb\"]},\"application/x-msbinder\":{\"source\":\"apache\",\"extensions\":[\"obd\"]},\"application/x-mscardfile\":{\"source\":\"apache\",\"extensions\":[\"crd\"]},\"application/x-msclip\":{\"source\":\"apache\",\"extensions\":[\"clp\"]},\"application/x-msdos-program\":{\"extensions\":[\"exe\"]},\"application/x-msdownload\":{\"source\":\"apache\",\"extensions\":[\"exe\",\"dll\",\"com\",\"bat\",\"msi\"]},\"application/x-msmediaview\":{\"source\":\"apache\",\"extensions\":[\"mvb\",\"m13\",\"m14\"]},\"application/x-msmetafile\":{\"source\":\"apache\",\"extensions\":[\"wmf\",\"wmz\",\"emf\",\"emz\"]},\"application/x-msmoney\":{\"source\":\"apache\",\"extensions\":[\"mny\"]},\"application/x-mspublisher\":{\"source\":\"apache\",\"extensions\":[\"pub\"]},\"application/x-msschedule\":{\"source\":\"apache\",\"extensions\":[\"scd\"]},\"application/x-msterminal\":{\"source\":\"apache\",\"extensions\":[\"trm\"]},\"application/x-mswrite\":{\"source\":\"apache\",\"extensions\":[\"wri\"]},\"application/x-netcdf\":{\"source\":\"apache\",\"extensions\":[\"nc\",\"cdf\"]},\"application/x-ns-proxy-autoconfig\":{\"compressible\":true,\"extensions\":[\"pac\"]},\"application/x-nzb\":{\"source\":\"apache\",\"extensions\":[\"nzb\"]},\"application/x-perl\":{\"source\":\"nginx\",\"extensions\":[\"pl\",\"pm\"]},\"application/x-pilot\":{\"source\":\"nginx\",\"extensions\":[\"prc\",\"pdb\"]},\"application/x-pkcs12\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"p12\",\"pfx\"]},\"application/x-pkcs7-certificates\":{\"source\":\"apache\",\"extensions\":[\"p7b\",\"spc\"]},\"application/x-pkcs7-certreqresp\":{\"source\":\"apache\",\"extensions\":[\"p7r\"]},\"application/x-pki-message\":{\"source\":\"iana\"},\"application/x-rar-compressed\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"rar\"]},\"application/x-redhat-package-manager\":{\"source\":\"nginx\",\"extensions\":[\"rpm\"]},\"application/x-research-info-systems\":{\"source\":\"apache\",\"extensions\":[\"ris\"]},\"application/x-sea\":{\"source\":\"nginx\",\"extensions\":[\"sea\"]},\"application/x-sh\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"sh\"]},\"application/x-shar\":{\"source\":\"apache\",\"extensions\":[\"shar\"]},\"application/x-shockwave-flash\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"swf\"]},\"application/x-silverlight-app\":{\"source\":\"apache\",\"extensions\":[\"xap\"]},\"application/x-sql\":{\"source\":\"apache\",\"extensions\":[\"sql\"]},\"application/x-stuffit\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"sit\"]},\"application/x-stuffitx\":{\"source\":\"apache\",\"extensions\":[\"sitx\"]},\"application/x-subrip\":{\"source\":\"apache\",\"extensions\":[\"srt\"]},\"application/x-sv4cpio\":{\"source\":\"apache\",\"extensions\":[\"sv4cpio\"]},\"application/x-sv4crc\":{\"source\":\"apache\",\"extensions\":[\"sv4crc\"]},\"application/x-t3vm-image\":{\"source\":\"apache\",\"extensions\":[\"t3\"]},\"application/x-tads\":{\"source\":\"apache\",\"extensions\":[\"gam\"]},\"application/x-tar\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"tar\"]},\"application/x-tcl\":{\"source\":\"apache\",\"extensions\":[\"tcl\",\"tk\"]},\"application/x-tex\":{\"source\":\"apache\",\"extensions\":[\"tex\"]},\"application/x-tex-tfm\":{\"source\":\"apache\",\"extensions\":[\"tfm\"]},\"application/x-texinfo\":{\"source\":\"apache\",\"extensions\":[\"texinfo\",\"texi\"]},\"application/x-tgif\":{\"source\":\"apache\",\"extensions\":[\"obj\"]},\"application/x-ustar\":{\"source\":\"apache\",\"extensions\":[\"ustar\"]},\"application/x-virtualbox-hdd\":{\"compressible\":true,\"extensions\":[\"hdd\"]},\"application/x-virtualbox-ova\":{\"compressible\":true,\"extensions\":[\"ova\"]},\"application/x-virtualbox-ovf\":{\"compressible\":true,\"extensions\":[\"ovf\"]},\"application/x-virtualbox-vbox\":{\"compressible\":true,\"extensions\":[\"vbox\"]},\"application/x-virtualbox-vbox-extpack\":{\"compressible\":false,\"extensions\":[\"vbox-extpack\"]},\"application/x-virtualbox-vdi\":{\"compressible\":true,\"extensions\":[\"vdi\"]},\"application/x-virtualbox-vhd\":{\"compressible\":true,\"extensions\":[\"vhd\"]},\"application/x-virtualbox-vmdk\":{\"compressible\":true,\"extensions\":[\"vmdk\"]},\"application/x-wais-source\":{\"source\":\"apache\",\"extensions\":[\"src\"]},\"application/x-web-app-manifest+json\":{\"compressible\":true,\"extensions\":[\"webapp\"]},\"application/x-www-form-urlencoded\":{\"source\":\"iana\",\"compressible\":true},\"application/x-x509-ca-cert\":{\"source\":\"iana\",\"extensions\":[\"der\",\"crt\",\"pem\"]},\"application/x-x509-ca-ra-cert\":{\"source\":\"iana\"},\"application/x-x509-next-ca-cert\":{\"source\":\"iana\"},\"application/x-xfig\":{\"source\":\"apache\",\"extensions\":[\"fig\"]},\"application/x-xliff+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"xlf\"]},\"application/x-xpinstall\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"xpi\"]},\"application/x-xz\":{\"source\":\"apache\",\"extensions\":[\"xz\"]},\"application/x-zmachine\":{\"source\":\"apache\",\"extensions\":[\"z1\",\"z2\",\"z3\",\"z4\",\"z5\",\"z6\",\"z7\",\"z8\"]},\"application/x400-bp\":{\"source\":\"iana\"},\"application/xacml+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xaml+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"xaml\"]},\"application/xcap-att+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xav\"]},\"application/xcap-caps+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xca\"]},\"application/xcap-diff+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xdf\"]},\"application/xcap-el+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xel\"]},\"application/xcap-error+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xcap-ns+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xns\"]},\"application/xcon-conference-info+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xcon-conference-info-diff+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xenc+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xenc\"]},\"application/xhtml+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xhtml\",\"xht\"]},\"application/xhtml-voice+xml\":{\"source\":\"apache\",\"compressible\":true},\"application/xliff+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xlf\"]},\"application/xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xml\",\"xsl\",\"xsd\",\"rng\"]},\"application/xml-dtd\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"dtd\"]},\"application/xml-external-parsed-entity\":{\"source\":\"iana\"},\"application/xml-patch+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xmpp+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/xop+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xop\"]},\"application/xproc+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"xpl\"]},\"application/xslt+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xsl\",\"xslt\"]},\"application/xspf+xml\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"xspf\"]},\"application/xv+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"mxml\",\"xhvml\",\"xvml\",\"xvm\"]},\"application/yang\":{\"source\":\"iana\",\"extensions\":[\"yang\"]},\"application/yang-data+json\":{\"source\":\"iana\",\"compressible\":true},\"application/yang-data+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/yang-patch+json\":{\"source\":\"iana\",\"compressible\":true},\"application/yang-patch+xml\":{\"source\":\"iana\",\"compressible\":true},\"application/yin+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"yin\"]},\"application/zip\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"zip\"]},\"application/zlib\":{\"source\":\"iana\"},\"application/zstd\":{\"source\":\"iana\"},\"audio/1d-interleaved-parityfec\":{\"source\":\"iana\"},\"audio/32kadpcm\":{\"source\":\"iana\"},\"audio/3gpp\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"3gpp\"]},\"audio/3gpp2\":{\"source\":\"iana\"},\"audio/aac\":{\"source\":\"iana\"},\"audio/ac3\":{\"source\":\"iana\"},\"audio/adpcm\":{\"source\":\"apache\",\"extensions\":[\"adp\"]},\"audio/amr\":{\"source\":\"iana\",\"extensions\":[\"amr\"]},\"audio/amr-wb\":{\"source\":\"iana\"},\"audio/amr-wb+\":{\"source\":\"iana\"},\"audio/aptx\":{\"source\":\"iana\"},\"audio/asc\":{\"source\":\"iana\"},\"audio/atrac-advanced-lossless\":{\"source\":\"iana\"},\"audio/atrac-x\":{\"source\":\"iana\"},\"audio/atrac3\":{\"source\":\"iana\"},\"audio/basic\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"au\",\"snd\"]},\"audio/bv16\":{\"source\":\"iana\"},\"audio/bv32\":{\"source\":\"iana\"},\"audio/clearmode\":{\"source\":\"iana\"},\"audio/cn\":{\"source\":\"iana\"},\"audio/dat12\":{\"source\":\"iana\"},\"audio/dls\":{\"source\":\"iana\"},\"audio/dsr-es201108\":{\"source\":\"iana\"},\"audio/dsr-es202050\":{\"source\":\"iana\"},\"audio/dsr-es202211\":{\"source\":\"iana\"},\"audio/dsr-es202212\":{\"source\":\"iana\"},\"audio/dv\":{\"source\":\"iana\"},\"audio/dvi4\":{\"source\":\"iana\"},\"audio/eac3\":{\"source\":\"iana\"},\"audio/encaprtp\":{\"source\":\"iana\"},\"audio/evrc\":{\"source\":\"iana\"},\"audio/evrc-qcp\":{\"source\":\"iana\"},\"audio/evrc0\":{\"source\":\"iana\"},\"audio/evrc1\":{\"source\":\"iana\"},\"audio/evrcb\":{\"source\":\"iana\"},\"audio/evrcb0\":{\"source\":\"iana\"},\"audio/evrcb1\":{\"source\":\"iana\"},\"audio/evrcnw\":{\"source\":\"iana\"},\"audio/evrcnw0\":{\"source\":\"iana\"},\"audio/evrcnw1\":{\"source\":\"iana\"},\"audio/evrcwb\":{\"source\":\"iana\"},\"audio/evrcwb0\":{\"source\":\"iana\"},\"audio/evrcwb1\":{\"source\":\"iana\"},\"audio/evs\":{\"source\":\"iana\"},\"audio/flexfec\":{\"source\":\"iana\"},\"audio/fwdred\":{\"source\":\"iana\"},\"audio/g711-0\":{\"source\":\"iana\"},\"audio/g719\":{\"source\":\"iana\"},\"audio/g722\":{\"source\":\"iana\"},\"audio/g7221\":{\"source\":\"iana\"},\"audio/g723\":{\"source\":\"iana\"},\"audio/g726-16\":{\"source\":\"iana\"},\"audio/g726-24\":{\"source\":\"iana\"},\"audio/g726-32\":{\"source\":\"iana\"},\"audio/g726-40\":{\"source\":\"iana\"},\"audio/g728\":{\"source\":\"iana\"},\"audio/g729\":{\"source\":\"iana\"},\"audio/g7291\":{\"source\":\"iana\"},\"audio/g729d\":{\"source\":\"iana\"},\"audio/g729e\":{\"source\":\"iana\"},\"audio/gsm\":{\"source\":\"iana\"},\"audio/gsm-efr\":{\"source\":\"iana\"},\"audio/gsm-hr-08\":{\"source\":\"iana\"},\"audio/ilbc\":{\"source\":\"iana\"},\"audio/ip-mr_v2.5\":{\"source\":\"iana\"},\"audio/isac\":{\"source\":\"apache\"},\"audio/l16\":{\"source\":\"iana\"},\"audio/l20\":{\"source\":\"iana\"},\"audio/l24\":{\"source\":\"iana\",\"compressible\":false},\"audio/l8\":{\"source\":\"iana\"},\"audio/lpc\":{\"source\":\"iana\"},\"audio/melp\":{\"source\":\"iana\"},\"audio/melp1200\":{\"source\":\"iana\"},\"audio/melp2400\":{\"source\":\"iana\"},\"audio/melp600\":{\"source\":\"iana\"},\"audio/mhas\":{\"source\":\"iana\"},\"audio/midi\":{\"source\":\"apache\",\"extensions\":[\"mid\",\"midi\",\"kar\",\"rmi\"]},\"audio/mobile-xmf\":{\"source\":\"iana\",\"extensions\":[\"mxmf\"]},\"audio/mp3\":{\"compressible\":false,\"extensions\":[\"mp3\"]},\"audio/mp4\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"m4a\",\"mp4a\"]},\"audio/mp4a-latm\":{\"source\":\"iana\"},\"audio/mpa\":{\"source\":\"iana\"},\"audio/mpa-robust\":{\"source\":\"iana\"},\"audio/mpeg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"mpga\",\"mp2\",\"mp2a\",\"mp3\",\"m2a\",\"m3a\"]},\"audio/mpeg4-generic\":{\"source\":\"iana\"},\"audio/musepack\":{\"source\":\"apache\"},\"audio/ogg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"oga\",\"ogg\",\"spx\",\"opus\"]},\"audio/opus\":{\"source\":\"iana\"},\"audio/parityfec\":{\"source\":\"iana\"},\"audio/pcma\":{\"source\":\"iana\"},\"audio/pcma-wb\":{\"source\":\"iana\"},\"audio/pcmu\":{\"source\":\"iana\"},\"audio/pcmu-wb\":{\"source\":\"iana\"},\"audio/prs.sid\":{\"source\":\"iana\"},\"audio/qcelp\":{\"source\":\"iana\"},\"audio/raptorfec\":{\"source\":\"iana\"},\"audio/red\":{\"source\":\"iana\"},\"audio/rtp-enc-aescm128\":{\"source\":\"iana\"},\"audio/rtp-midi\":{\"source\":\"iana\"},\"audio/rtploopback\":{\"source\":\"iana\"},\"audio/rtx\":{\"source\":\"iana\"},\"audio/s3m\":{\"source\":\"apache\",\"extensions\":[\"s3m\"]},\"audio/scip\":{\"source\":\"iana\"},\"audio/silk\":{\"source\":\"apache\",\"extensions\":[\"sil\"]},\"audio/smv\":{\"source\":\"iana\"},\"audio/smv-qcp\":{\"source\":\"iana\"},\"audio/smv0\":{\"source\":\"iana\"},\"audio/sofa\":{\"source\":\"iana\"},\"audio/sp-midi\":{\"source\":\"iana\"},\"audio/speex\":{\"source\":\"iana\"},\"audio/t140c\":{\"source\":\"iana\"},\"audio/t38\":{\"source\":\"iana\"},\"audio/telephone-event\":{\"source\":\"iana\"},\"audio/tetra_acelp\":{\"source\":\"iana\"},\"audio/tetra_acelp_bb\":{\"source\":\"iana\"},\"audio/tone\":{\"source\":\"iana\"},\"audio/tsvcis\":{\"source\":\"iana\"},\"audio/uemclip\":{\"source\":\"iana\"},\"audio/ulpfec\":{\"source\":\"iana\"},\"audio/usac\":{\"source\":\"iana\"},\"audio/vdvi\":{\"source\":\"iana\"},\"audio/vmr-wb\":{\"source\":\"iana\"},\"audio/vnd.3gpp.iufp\":{\"source\":\"iana\"},\"audio/vnd.4sb\":{\"source\":\"iana\"},\"audio/vnd.audiokoz\":{\"source\":\"iana\"},\"audio/vnd.celp\":{\"source\":\"iana\"},\"audio/vnd.cisco.nse\":{\"source\":\"iana\"},\"audio/vnd.cmles.radio-events\":{\"source\":\"iana\"},\"audio/vnd.cns.anp1\":{\"source\":\"iana\"},\"audio/vnd.cns.inf1\":{\"source\":\"iana\"},\"audio/vnd.dece.audio\":{\"source\":\"iana\",\"extensions\":[\"uva\",\"uvva\"]},\"audio/vnd.digital-winds\":{\"source\":\"iana\",\"extensions\":[\"eol\"]},\"audio/vnd.dlna.adts\":{\"source\":\"iana\"},\"audio/vnd.dolby.heaac.1\":{\"source\":\"iana\"},\"audio/vnd.dolby.heaac.2\":{\"source\":\"iana\"},\"audio/vnd.dolby.mlp\":{\"source\":\"iana\"},\"audio/vnd.dolby.mps\":{\"source\":\"iana\"},\"audio/vnd.dolby.pl2\":{\"source\":\"iana\"},\"audio/vnd.dolby.pl2x\":{\"source\":\"iana\"},\"audio/vnd.dolby.pl2z\":{\"source\":\"iana\"},\"audio/vnd.dolby.pulse.1\":{\"source\":\"iana\"},\"audio/vnd.dra\":{\"source\":\"iana\",\"extensions\":[\"dra\"]},\"audio/vnd.dts\":{\"source\":\"iana\",\"extensions\":[\"dts\"]},\"audio/vnd.dts.hd\":{\"source\":\"iana\",\"extensions\":[\"dtshd\"]},\"audio/vnd.dts.uhd\":{\"source\":\"iana\"},\"audio/vnd.dvb.file\":{\"source\":\"iana\"},\"audio/vnd.everad.plj\":{\"source\":\"iana\"},\"audio/vnd.hns.audio\":{\"source\":\"iana\"},\"audio/vnd.lucent.voice\":{\"source\":\"iana\",\"extensions\":[\"lvp\"]},\"audio/vnd.ms-playready.media.pya\":{\"source\":\"iana\",\"extensions\":[\"pya\"]},\"audio/vnd.nokia.mobile-xmf\":{\"source\":\"iana\"},\"audio/vnd.nortel.vbk\":{\"source\":\"iana\"},\"audio/vnd.nuera.ecelp4800\":{\"source\":\"iana\",\"extensions\":[\"ecelp4800\"]},\"audio/vnd.nuera.ecelp7470\":{\"source\":\"iana\",\"extensions\":[\"ecelp7470\"]},\"audio/vnd.nuera.ecelp9600\":{\"source\":\"iana\",\"extensions\":[\"ecelp9600\"]},\"audio/vnd.octel.sbc\":{\"source\":\"iana\"},\"audio/vnd.presonus.multitrack\":{\"source\":\"iana\"},\"audio/vnd.qcelp\":{\"source\":\"iana\"},\"audio/vnd.rhetorex.32kadpcm\":{\"source\":\"iana\"},\"audio/vnd.rip\":{\"source\":\"iana\",\"extensions\":[\"rip\"]},\"audio/vnd.rn-realaudio\":{\"compressible\":false},\"audio/vnd.sealedmedia.softseal.mpeg\":{\"source\":\"iana\"},\"audio/vnd.vmx.cvsd\":{\"source\":\"iana\"},\"audio/vnd.wave\":{\"compressible\":false},\"audio/vorbis\":{\"source\":\"iana\",\"compressible\":false},\"audio/vorbis-config\":{\"source\":\"iana\"},\"audio/wav\":{\"compressible\":false,\"extensions\":[\"wav\"]},\"audio/wave\":{\"compressible\":false,\"extensions\":[\"wav\"]},\"audio/webm\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"weba\"]},\"audio/x-aac\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"aac\"]},\"audio/x-aiff\":{\"source\":\"apache\",\"extensions\":[\"aif\",\"aiff\",\"aifc\"]},\"audio/x-caf\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"caf\"]},\"audio/x-flac\":{\"source\":\"apache\",\"extensions\":[\"flac\"]},\"audio/x-m4a\":{\"source\":\"nginx\",\"extensions\":[\"m4a\"]},\"audio/x-matroska\":{\"source\":\"apache\",\"extensions\":[\"mka\"]},\"audio/x-mpegurl\":{\"source\":\"apache\",\"extensions\":[\"m3u\"]},\"audio/x-ms-wax\":{\"source\":\"apache\",\"extensions\":[\"wax\"]},\"audio/x-ms-wma\":{\"source\":\"apache\",\"extensions\":[\"wma\"]},\"audio/x-pn-realaudio\":{\"source\":\"apache\",\"extensions\":[\"ram\",\"ra\"]},\"audio/x-pn-realaudio-plugin\":{\"source\":\"apache\",\"extensions\":[\"rmp\"]},\"audio/x-realaudio\":{\"source\":\"nginx\",\"extensions\":[\"ra\"]},\"audio/x-tta\":{\"source\":\"apache\"},\"audio/x-wav\":{\"source\":\"apache\",\"extensions\":[\"wav\"]},\"audio/xm\":{\"source\":\"apache\",\"extensions\":[\"xm\"]},\"chemical/x-cdx\":{\"source\":\"apache\",\"extensions\":[\"cdx\"]},\"chemical/x-cif\":{\"source\":\"apache\",\"extensions\":[\"cif\"]},\"chemical/x-cmdf\":{\"source\":\"apache\",\"extensions\":[\"cmdf\"]},\"chemical/x-cml\":{\"source\":\"apache\",\"extensions\":[\"cml\"]},\"chemical/x-csml\":{\"source\":\"apache\",\"extensions\":[\"csml\"]},\"chemical/x-pdb\":{\"source\":\"apache\"},\"chemical/x-xyz\":{\"source\":\"apache\",\"extensions\":[\"xyz\"]},\"font/collection\":{\"source\":\"iana\",\"extensions\":[\"ttc\"]},\"font/otf\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"otf\"]},\"font/sfnt\":{\"source\":\"iana\"},\"font/ttf\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"ttf\"]},\"font/woff\":{\"source\":\"iana\",\"extensions\":[\"woff\"]},\"font/woff2\":{\"source\":\"iana\",\"extensions\":[\"woff2\"]},\"image/aces\":{\"source\":\"iana\",\"extensions\":[\"exr\"]},\"image/apng\":{\"compressible\":false,\"extensions\":[\"apng\"]},\"image/avci\":{\"source\":\"iana\"},\"image/avcs\":{\"source\":\"iana\"},\"image/avif\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"avif\"]},\"image/bmp\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"bmp\"]},\"image/cgm\":{\"source\":\"iana\",\"extensions\":[\"cgm\"]},\"image/dicom-rle\":{\"source\":\"iana\",\"extensions\":[\"drle\"]},\"image/emf\":{\"source\":\"iana\",\"extensions\":[\"emf\"]},\"image/fits\":{\"source\":\"iana\",\"extensions\":[\"fits\"]},\"image/g3fax\":{\"source\":\"iana\",\"extensions\":[\"g3\"]},\"image/gif\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"gif\"]},\"image/heic\":{\"source\":\"iana\",\"extensions\":[\"heic\"]},\"image/heic-sequence\":{\"source\":\"iana\",\"extensions\":[\"heics\"]},\"image/heif\":{\"source\":\"iana\",\"extensions\":[\"heif\"]},\"image/heif-sequence\":{\"source\":\"iana\",\"extensions\":[\"heifs\"]},\"image/hej2k\":{\"source\":\"iana\",\"extensions\":[\"hej2\"]},\"image/hsj2\":{\"source\":\"iana\",\"extensions\":[\"hsj2\"]},\"image/ief\":{\"source\":\"iana\",\"extensions\":[\"ief\"]},\"image/jls\":{\"source\":\"iana\",\"extensions\":[\"jls\"]},\"image/jp2\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"jp2\",\"jpg2\"]},\"image/jpeg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"jpeg\",\"jpg\",\"jpe\"]},\"image/jph\":{\"source\":\"iana\",\"extensions\":[\"jph\"]},\"image/jphc\":{\"source\":\"iana\",\"extensions\":[\"jhc\"]},\"image/jpm\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"jpm\"]},\"image/jpx\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"jpx\",\"jpf\"]},\"image/jxr\":{\"source\":\"iana\",\"extensions\":[\"jxr\"]},\"image/jxra\":{\"source\":\"iana\",\"extensions\":[\"jxra\"]},\"image/jxrs\":{\"source\":\"iana\",\"extensions\":[\"jxrs\"]},\"image/jxs\":{\"source\":\"iana\",\"extensions\":[\"jxs\"]},\"image/jxsc\":{\"source\":\"iana\",\"extensions\":[\"jxsc\"]},\"image/jxsi\":{\"source\":\"iana\",\"extensions\":[\"jxsi\"]},\"image/jxss\":{\"source\":\"iana\",\"extensions\":[\"jxss\"]},\"image/ktx\":{\"source\":\"iana\",\"extensions\":[\"ktx\"]},\"image/ktx2\":{\"source\":\"iana\",\"extensions\":[\"ktx2\"]},\"image/naplps\":{\"source\":\"iana\"},\"image/pjpeg\":{\"compressible\":false},\"image/png\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"png\"]},\"image/prs.btif\":{\"source\":\"iana\",\"extensions\":[\"btif\"]},\"image/prs.pti\":{\"source\":\"iana\",\"extensions\":[\"pti\"]},\"image/pwg-raster\":{\"source\":\"iana\"},\"image/sgi\":{\"source\":\"apache\",\"extensions\":[\"sgi\"]},\"image/svg+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"svg\",\"svgz\"]},\"image/t38\":{\"source\":\"iana\",\"extensions\":[\"t38\"]},\"image/tiff\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"tif\",\"tiff\"]},\"image/tiff-fx\":{\"source\":\"iana\",\"extensions\":[\"tfx\"]},\"image/vnd.adobe.photoshop\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"psd\"]},\"image/vnd.airzip.accelerator.azv\":{\"source\":\"iana\",\"extensions\":[\"azv\"]},\"image/vnd.cns.inf2\":{\"source\":\"iana\"},\"image/vnd.dece.graphic\":{\"source\":\"iana\",\"extensions\":[\"uvi\",\"uvvi\",\"uvg\",\"uvvg\"]},\"image/vnd.djvu\":{\"source\":\"iana\",\"extensions\":[\"djvu\",\"djv\"]},\"image/vnd.dvb.subtitle\":{\"source\":\"iana\",\"extensions\":[\"sub\"]},\"image/vnd.dwg\":{\"source\":\"iana\",\"extensions\":[\"dwg\"]},\"image/vnd.dxf\":{\"source\":\"iana\",\"extensions\":[\"dxf\"]},\"image/vnd.fastbidsheet\":{\"source\":\"iana\",\"extensions\":[\"fbs\"]},\"image/vnd.fpx\":{\"source\":\"iana\",\"extensions\":[\"fpx\"]},\"image/vnd.fst\":{\"source\":\"iana\",\"extensions\":[\"fst\"]},\"image/vnd.fujixerox.edmics-mmr\":{\"source\":\"iana\",\"extensions\":[\"mmr\"]},\"image/vnd.fujixerox.edmics-rlc\":{\"source\":\"iana\",\"extensions\":[\"rlc\"]},\"image/vnd.globalgraphics.pgb\":{\"source\":\"iana\"},\"image/vnd.microsoft.icon\":{\"source\":\"iana\",\"extensions\":[\"ico\"]},\"image/vnd.mix\":{\"source\":\"iana\"},\"image/vnd.mozilla.apng\":{\"source\":\"iana\"},\"image/vnd.ms-dds\":{\"extensions\":[\"dds\"]},\"image/vnd.ms-modi\":{\"source\":\"iana\",\"extensions\":[\"mdi\"]},\"image/vnd.ms-photo\":{\"source\":\"apache\",\"extensions\":[\"wdp\"]},\"image/vnd.net-fpx\":{\"source\":\"iana\",\"extensions\":[\"npx\"]},\"image/vnd.pco.b16\":{\"source\":\"iana\",\"extensions\":[\"b16\"]},\"image/vnd.radiance\":{\"source\":\"iana\"},\"image/vnd.sealed.png\":{\"source\":\"iana\"},\"image/vnd.sealedmedia.softseal.gif\":{\"source\":\"iana\"},\"image/vnd.sealedmedia.softseal.jpg\":{\"source\":\"iana\"},\"image/vnd.svf\":{\"source\":\"iana\"},\"image/vnd.tencent.tap\":{\"source\":\"iana\",\"extensions\":[\"tap\"]},\"image/vnd.valve.source.texture\":{\"source\":\"iana\",\"extensions\":[\"vtf\"]},\"image/vnd.wap.wbmp\":{\"source\":\"iana\",\"extensions\":[\"wbmp\"]},\"image/vnd.xiff\":{\"source\":\"iana\",\"extensions\":[\"xif\"]},\"image/vnd.zbrush.pcx\":{\"source\":\"iana\",\"extensions\":[\"pcx\"]},\"image/webp\":{\"source\":\"apache\",\"extensions\":[\"webp\"]},\"image/wmf\":{\"source\":\"iana\",\"extensions\":[\"wmf\"]},\"image/x-3ds\":{\"source\":\"apache\",\"extensions\":[\"3ds\"]},\"image/x-cmu-raster\":{\"source\":\"apache\",\"extensions\":[\"ras\"]},\"image/x-cmx\":{\"source\":\"apache\",\"extensions\":[\"cmx\"]},\"image/x-freehand\":{\"source\":\"apache\",\"extensions\":[\"fh\",\"fhc\",\"fh4\",\"fh5\",\"fh7\"]},\"image/x-icon\":{\"source\":\"apache\",\"compressible\":true,\"extensions\":[\"ico\"]},\"image/x-jng\":{\"source\":\"nginx\",\"extensions\":[\"jng\"]},\"image/x-mrsid-image\":{\"source\":\"apache\",\"extensions\":[\"sid\"]},\"image/x-ms-bmp\":{\"source\":\"nginx\",\"compressible\":true,\"extensions\":[\"bmp\"]},\"image/x-pcx\":{\"source\":\"apache\",\"extensions\":[\"pcx\"]},\"image/x-pict\":{\"source\":\"apache\",\"extensions\":[\"pic\",\"pct\"]},\"image/x-portable-anymap\":{\"source\":\"apache\",\"extensions\":[\"pnm\"]},\"image/x-portable-bitmap\":{\"source\":\"apache\",\"extensions\":[\"pbm\"]},\"image/x-portable-graymap\":{\"source\":\"apache\",\"extensions\":[\"pgm\"]},\"image/x-portable-pixmap\":{\"source\":\"apache\",\"extensions\":[\"ppm\"]},\"image/x-rgb\":{\"source\":\"apache\",\"extensions\":[\"rgb\"]},\"image/x-tga\":{\"source\":\"apache\",\"extensions\":[\"tga\"]},\"image/x-xbitmap\":{\"source\":\"apache\",\"extensions\":[\"xbm\"]},\"image/x-xcf\":{\"compressible\":false},\"image/x-xpixmap\":{\"source\":\"apache\",\"extensions\":[\"xpm\"]},\"image/x-xwindowdump\":{\"source\":\"apache\",\"extensions\":[\"xwd\"]},\"message/cpim\":{\"source\":\"iana\"},\"message/delivery-status\":{\"source\":\"iana\"},\"message/disposition-notification\":{\"source\":\"iana\",\"extensions\":[\"disposition-notification\"]},\"message/external-body\":{\"source\":\"iana\"},\"message/feedback-report\":{\"source\":\"iana\"},\"message/global\":{\"source\":\"iana\",\"extensions\":[\"u8msg\"]},\"message/global-delivery-status\":{\"source\":\"iana\",\"extensions\":[\"u8dsn\"]},\"message/global-disposition-notification\":{\"source\":\"iana\",\"extensions\":[\"u8mdn\"]},\"message/global-headers\":{\"source\":\"iana\",\"extensions\":[\"u8hdr\"]},\"message/http\":{\"source\":\"iana\",\"compressible\":false},\"message/imdn+xml\":{\"source\":\"iana\",\"compressible\":true},\"message/news\":{\"source\":\"iana\"},\"message/partial\":{\"source\":\"iana\",\"compressible\":false},\"message/rfc822\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"eml\",\"mime\"]},\"message/s-http\":{\"source\":\"iana\"},\"message/sip\":{\"source\":\"iana\"},\"message/sipfrag\":{\"source\":\"iana\"},\"message/tracking-status\":{\"source\":\"iana\"},\"message/vnd.si.simp\":{\"source\":\"iana\"},\"message/vnd.wfa.wsc\":{\"source\":\"iana\",\"extensions\":[\"wsc\"]},\"model/3mf\":{\"source\":\"iana\",\"extensions\":[\"3mf\"]},\"model/e57\":{\"source\":\"iana\"},\"model/gltf+json\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"gltf\"]},\"model/gltf-binary\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"glb\"]},\"model/iges\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"igs\",\"iges\"]},\"model/mesh\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"msh\",\"mesh\",\"silo\"]},\"model/mtl\":{\"source\":\"iana\",\"extensions\":[\"mtl\"]},\"model/obj\":{\"source\":\"iana\",\"extensions\":[\"obj\"]},\"model/step\":{\"source\":\"iana\"},\"model/step+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"stpx\"]},\"model/step+zip\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"stpz\"]},\"model/step-xml+zip\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"stpxz\"]},\"model/stl\":{\"source\":\"iana\",\"extensions\":[\"stl\"]},\"model/vnd.collada+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"dae\"]},\"model/vnd.dwf\":{\"source\":\"iana\",\"extensions\":[\"dwf\"]},\"model/vnd.flatland.3dml\":{\"source\":\"iana\"},\"model/vnd.gdl\":{\"source\":\"iana\",\"extensions\":[\"gdl\"]},\"model/vnd.gs-gdl\":{\"source\":\"apache\"},\"model/vnd.gs.gdl\":{\"source\":\"iana\"},\"model/vnd.gtw\":{\"source\":\"iana\",\"extensions\":[\"gtw\"]},\"model/vnd.moml+xml\":{\"source\":\"iana\",\"compressible\":true},\"model/vnd.mts\":{\"source\":\"iana\",\"extensions\":[\"mts\"]},\"model/vnd.opengex\":{\"source\":\"iana\",\"extensions\":[\"ogex\"]},\"model/vnd.parasolid.transmit.binary\":{\"source\":\"iana\",\"extensions\":[\"x_b\"]},\"model/vnd.parasolid.transmit.text\":{\"source\":\"iana\",\"extensions\":[\"x_t\"]},\"model/vnd.pytha.pyox\":{\"source\":\"iana\"},\"model/vnd.rosette.annotated-data-model\":{\"source\":\"iana\"},\"model/vnd.sap.vds\":{\"source\":\"iana\",\"extensions\":[\"vds\"]},\"model/vnd.usdz+zip\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"usdz\"]},\"model/vnd.valve.source.compiled-map\":{\"source\":\"iana\",\"extensions\":[\"bsp\"]},\"model/vnd.vtu\":{\"source\":\"iana\",\"extensions\":[\"vtu\"]},\"model/vrml\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"wrl\",\"vrml\"]},\"model/x3d+binary\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"x3db\",\"x3dbz\"]},\"model/x3d+fastinfoset\":{\"source\":\"iana\",\"extensions\":[\"x3db\"]},\"model/x3d+vrml\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"x3dv\",\"x3dvz\"]},\"model/x3d+xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"x3d\",\"x3dz\"]},\"model/x3d-vrml\":{\"source\":\"iana\",\"extensions\":[\"x3dv\"]},\"multipart/alternative\":{\"source\":\"iana\",\"compressible\":false},\"multipart/appledouble\":{\"source\":\"iana\"},\"multipart/byteranges\":{\"source\":\"iana\"},\"multipart/digest\":{\"source\":\"iana\"},\"multipart/encrypted\":{\"source\":\"iana\",\"compressible\":false},\"multipart/form-data\":{\"source\":\"iana\",\"compressible\":false},\"multipart/header-set\":{\"source\":\"iana\"},\"multipart/mixed\":{\"source\":\"iana\"},\"multipart/multilingual\":{\"source\":\"iana\"},\"multipart/parallel\":{\"source\":\"iana\"},\"multipart/related\":{\"source\":\"iana\",\"compressible\":false},\"multipart/report\":{\"source\":\"iana\"},\"multipart/signed\":{\"source\":\"iana\",\"compressible\":false},\"multipart/vnd.bint.med-plus\":{\"source\":\"iana\"},\"multipart/voice-message\":{\"source\":\"iana\"},\"multipart/x-mixed-replace\":{\"source\":\"iana\"},\"text/1d-interleaved-parityfec\":{\"source\":\"iana\"},\"text/cache-manifest\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"appcache\",\"manifest\"]},\"text/calendar\":{\"source\":\"iana\",\"extensions\":[\"ics\",\"ifb\"]},\"text/calender\":{\"compressible\":true},\"text/cmd\":{\"compressible\":true},\"text/coffeescript\":{\"extensions\":[\"coffee\",\"litcoffee\"]},\"text/cql\":{\"source\":\"iana\"},\"text/cql-expression\":{\"source\":\"iana\"},\"text/cql-identifier\":{\"source\":\"iana\"},\"text/css\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"css\"]},\"text/csv\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"csv\"]},\"text/csv-schema\":{\"source\":\"iana\"},\"text/directory\":{\"source\":\"iana\"},\"text/dns\":{\"source\":\"iana\"},\"text/ecmascript\":{\"source\":\"iana\"},\"text/encaprtp\":{\"source\":\"iana\"},\"text/enriched\":{\"source\":\"iana\"},\"text/fhirpath\":{\"source\":\"iana\"},\"text/flexfec\":{\"source\":\"iana\"},\"text/fwdred\":{\"source\":\"iana\"},\"text/gff3\":{\"source\":\"iana\"},\"text/grammar-ref-list\":{\"source\":\"iana\"},\"text/html\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"html\",\"htm\",\"shtml\"]},\"text/jade\":{\"extensions\":[\"jade\"]},\"text/javascript\":{\"source\":\"iana\",\"compressible\":true},\"text/jcr-cnd\":{\"source\":\"iana\"},\"text/jsx\":{\"compressible\":true,\"extensions\":[\"jsx\"]},\"text/less\":{\"compressible\":true,\"extensions\":[\"less\"]},\"text/markdown\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"markdown\",\"md\"]},\"text/mathml\":{\"source\":\"nginx\",\"extensions\":[\"mml\"]},\"text/mdx\":{\"compressible\":true,\"extensions\":[\"mdx\"]},\"text/mizar\":{\"source\":\"iana\"},\"text/n3\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"n3\"]},\"text/parameters\":{\"source\":\"iana\",\"charset\":\"UTF-8\"},\"text/parityfec\":{\"source\":\"iana\"},\"text/plain\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"txt\",\"text\",\"conf\",\"def\",\"list\",\"log\",\"in\",\"ini\"]},\"text/provenance-notation\":{\"source\":\"iana\",\"charset\":\"UTF-8\"},\"text/prs.fallenstein.rst\":{\"source\":\"iana\"},\"text/prs.lines.tag\":{\"source\":\"iana\",\"extensions\":[\"dsc\"]},\"text/prs.prop.logic\":{\"source\":\"iana\"},\"text/raptorfec\":{\"source\":\"iana\"},\"text/red\":{\"source\":\"iana\"},\"text/rfc822-headers\":{\"source\":\"iana\"},\"text/richtext\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rtx\"]},\"text/rtf\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"rtf\"]},\"text/rtp-enc-aescm128\":{\"source\":\"iana\"},\"text/rtploopback\":{\"source\":\"iana\"},\"text/rtx\":{\"source\":\"iana\"},\"text/sgml\":{\"source\":\"iana\",\"extensions\":[\"sgml\",\"sgm\"]},\"text/shaclc\":{\"source\":\"iana\"},\"text/shex\":{\"source\":\"iana\",\"extensions\":[\"shex\"]},\"text/slim\":{\"extensions\":[\"slim\",\"slm\"]},\"text/spdx\":{\"source\":\"iana\",\"extensions\":[\"spdx\"]},\"text/strings\":{\"source\":\"iana\"},\"text/stylus\":{\"extensions\":[\"stylus\",\"styl\"]},\"text/t140\":{\"source\":\"iana\"},\"text/tab-separated-values\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"tsv\"]},\"text/troff\":{\"source\":\"iana\",\"extensions\":[\"t\",\"tr\",\"roff\",\"man\",\"me\",\"ms\"]},\"text/turtle\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"extensions\":[\"ttl\"]},\"text/ulpfec\":{\"source\":\"iana\"},\"text/uri-list\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"uri\",\"uris\",\"urls\"]},\"text/vcard\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"vcard\"]},\"text/vnd.a\":{\"source\":\"iana\"},\"text/vnd.abc\":{\"source\":\"iana\"},\"text/vnd.ascii-art\":{\"source\":\"iana\"},\"text/vnd.curl\":{\"source\":\"iana\",\"extensions\":[\"curl\"]},\"text/vnd.curl.dcurl\":{\"source\":\"apache\",\"extensions\":[\"dcurl\"]},\"text/vnd.curl.mcurl\":{\"source\":\"apache\",\"extensions\":[\"mcurl\"]},\"text/vnd.curl.scurl\":{\"source\":\"apache\",\"extensions\":[\"scurl\"]},\"text/vnd.debian.copyright\":{\"source\":\"iana\",\"charset\":\"UTF-8\"},\"text/vnd.dmclientscript\":{\"source\":\"iana\"},\"text/vnd.dvb.subtitle\":{\"source\":\"iana\",\"extensions\":[\"sub\"]},\"text/vnd.esmertec.theme-descriptor\":{\"source\":\"iana\",\"charset\":\"UTF-8\"},\"text/vnd.ficlab.flt\":{\"source\":\"iana\"},\"text/vnd.fly\":{\"source\":\"iana\",\"extensions\":[\"fly\"]},\"text/vnd.fmi.flexstor\":{\"source\":\"iana\",\"extensions\":[\"flx\"]},\"text/vnd.gml\":{\"source\":\"iana\"},\"text/vnd.graphviz\":{\"source\":\"iana\",\"extensions\":[\"gv\"]},\"text/vnd.hans\":{\"source\":\"iana\"},\"text/vnd.hgl\":{\"source\":\"iana\"},\"text/vnd.in3d.3dml\":{\"source\":\"iana\",\"extensions\":[\"3dml\"]},\"text/vnd.in3d.spot\":{\"source\":\"iana\",\"extensions\":[\"spot\"]},\"text/vnd.iptc.newsml\":{\"source\":\"iana\"},\"text/vnd.iptc.nitf\":{\"source\":\"iana\"},\"text/vnd.latex-z\":{\"source\":\"iana\"},\"text/vnd.motorola.reflex\":{\"source\":\"iana\"},\"text/vnd.ms-mediapackage\":{\"source\":\"iana\"},\"text/vnd.net2phone.commcenter.command\":{\"source\":\"iana\"},\"text/vnd.radisys.msml-basic-layout\":{\"source\":\"iana\"},\"text/vnd.senx.warpscript\":{\"source\":\"iana\"},\"text/vnd.si.uricatalogue\":{\"source\":\"iana\"},\"text/vnd.sosi\":{\"source\":\"iana\"},\"text/vnd.sun.j2me.app-descriptor\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"extensions\":[\"jad\"]},\"text/vnd.trolltech.linguist\":{\"source\":\"iana\",\"charset\":\"UTF-8\"},\"text/vnd.wap.si\":{\"source\":\"iana\"},\"text/vnd.wap.sl\":{\"source\":\"iana\"},\"text/vnd.wap.wml\":{\"source\":\"iana\",\"extensions\":[\"wml\"]},\"text/vnd.wap.wmlscript\":{\"source\":\"iana\",\"extensions\":[\"wmls\"]},\"text/vtt\":{\"source\":\"iana\",\"charset\":\"UTF-8\",\"compressible\":true,\"extensions\":[\"vtt\"]},\"text/x-asm\":{\"source\":\"apache\",\"extensions\":[\"s\",\"asm\"]},\"text/x-c\":{\"source\":\"apache\",\"extensions\":[\"c\",\"cc\",\"cxx\",\"cpp\",\"h\",\"hh\",\"dic\"]},\"text/x-component\":{\"source\":\"nginx\",\"extensions\":[\"htc\"]},\"text/x-fortran\":{\"source\":\"apache\",\"extensions\":[\"f\",\"for\",\"f77\",\"f90\"]},\"text/x-gwt-rpc\":{\"compressible\":true},\"text/x-handlebars-template\":{\"extensions\":[\"hbs\"]},\"text/x-java-source\":{\"source\":\"apache\",\"extensions\":[\"java\"]},\"text/x-jquery-tmpl\":{\"compressible\":true},\"text/x-lua\":{\"extensions\":[\"lua\"]},\"text/x-markdown\":{\"compressible\":true,\"extensions\":[\"mkd\"]},\"text/x-nfo\":{\"source\":\"apache\",\"extensions\":[\"nfo\"]},\"text/x-opml\":{\"source\":\"apache\",\"extensions\":[\"opml\"]},\"text/x-org\":{\"compressible\":true,\"extensions\":[\"org\"]},\"text/x-pascal\":{\"source\":\"apache\",\"extensions\":[\"p\",\"pas\"]},\"text/x-processing\":{\"compressible\":true,\"extensions\":[\"pde\"]},\"text/x-sass\":{\"extensions\":[\"sass\"]},\"text/x-scss\":{\"extensions\":[\"scss\"]},\"text/x-setext\":{\"source\":\"apache\",\"extensions\":[\"etx\"]},\"text/x-sfv\":{\"source\":\"apache\",\"extensions\":[\"sfv\"]},\"text/x-suse-ymp\":{\"compressible\":true,\"extensions\":[\"ymp\"]},\"text/x-uuencode\":{\"source\":\"apache\",\"extensions\":[\"uu\"]},\"text/x-vcalendar\":{\"source\":\"apache\",\"extensions\":[\"vcs\"]},\"text/x-vcard\":{\"source\":\"apache\",\"extensions\":[\"vcf\"]},\"text/xml\":{\"source\":\"iana\",\"compressible\":true,\"extensions\":[\"xml\"]},\"text/xml-external-parsed-entity\":{\"source\":\"iana\"},\"text/yaml\":{\"compressible\":true,\"extensions\":[\"yaml\",\"yml\"]},\"video/1d-interleaved-parityfec\":{\"source\":\"iana\"},\"video/3gpp\":{\"source\":\"iana\",\"extensions\":[\"3gp\",\"3gpp\"]},\"video/3gpp-tt\":{\"source\":\"iana\"},\"video/3gpp2\":{\"source\":\"iana\",\"extensions\":[\"3g2\"]},\"video/av1\":{\"source\":\"iana\"},\"video/bmpeg\":{\"source\":\"iana\"},\"video/bt656\":{\"source\":\"iana\"},\"video/celb\":{\"source\":\"iana\"},\"video/dv\":{\"source\":\"iana\"},\"video/encaprtp\":{\"source\":\"iana\"},\"video/ffv1\":{\"source\":\"iana\"},\"video/flexfec\":{\"source\":\"iana\"},\"video/h261\":{\"source\":\"iana\",\"extensions\":[\"h261\"]},\"video/h263\":{\"source\":\"iana\",\"extensions\":[\"h263\"]},\"video/h263-1998\":{\"source\":\"iana\"},\"video/h263-2000\":{\"source\":\"iana\"},\"video/h264\":{\"source\":\"iana\",\"extensions\":[\"h264\"]},\"video/h264-rcdo\":{\"source\":\"iana\"},\"video/h264-svc\":{\"source\":\"iana\"},\"video/h265\":{\"source\":\"iana\"},\"video/iso.segment\":{\"source\":\"iana\",\"extensions\":[\"m4s\"]},\"video/jpeg\":{\"source\":\"iana\",\"extensions\":[\"jpgv\"]},\"video/jpeg2000\":{\"source\":\"iana\"},\"video/jpm\":{\"source\":\"apache\",\"extensions\":[\"jpm\",\"jpgm\"]},\"video/jxsv\":{\"source\":\"iana\"},\"video/mj2\":{\"source\":\"iana\",\"extensions\":[\"mj2\",\"mjp2\"]},\"video/mp1s\":{\"source\":\"iana\"},\"video/mp2p\":{\"source\":\"iana\"},\"video/mp2t\":{\"source\":\"iana\",\"extensions\":[\"ts\"]},\"video/mp4\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"mp4\",\"mp4v\",\"mpg4\"]},\"video/mp4v-es\":{\"source\":\"iana\"},\"video/mpeg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"mpeg\",\"mpg\",\"mpe\",\"m1v\",\"m2v\"]},\"video/mpeg4-generic\":{\"source\":\"iana\"},\"video/mpv\":{\"source\":\"iana\"},\"video/nv\":{\"source\":\"iana\"},\"video/ogg\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"ogv\"]},\"video/parityfec\":{\"source\":\"iana\"},\"video/pointer\":{\"source\":\"iana\"},\"video/quicktime\":{\"source\":\"iana\",\"compressible\":false,\"extensions\":[\"qt\",\"mov\"]},\"video/raptorfec\":{\"source\":\"iana\"},\"video/raw\":{\"source\":\"iana\"},\"video/rtp-enc-aescm128\":{\"source\":\"iana\"},\"video/rtploopback\":{\"source\":\"iana\"},\"video/rtx\":{\"source\":\"iana\"},\"video/scip\":{\"source\":\"iana\"},\"video/smpte291\":{\"source\":\"iana\"},\"video/smpte292m\":{\"source\":\"iana\"},\"video/ulpfec\":{\"source\":\"iana\"},\"video/vc1\":{\"source\":\"iana\"},\"video/vc2\":{\"source\":\"iana\"},\"video/vnd.cctv\":{\"source\":\"iana\"},\"video/vnd.dece.hd\":{\"source\":\"iana\",\"extensions\":[\"uvh\",\"uvvh\"]},\"video/vnd.dece.mobile\":{\"source\":\"iana\",\"extensions\":[\"uvm\",\"uvvm\"]},\"video/vnd.dece.mp4\":{\"source\":\"iana\"},\"video/vnd.dece.pd\":{\"source\":\"iana\",\"extensions\":[\"uvp\",\"uvvp\"]},\"video/vnd.dece.sd\":{\"source\":\"iana\",\"extensions\":[\"uvs\",\"uvvs\"]},\"video/vnd.dece.video\":{\"source\":\"iana\",\"extensions\":[\"uvv\",\"uvvv\"]},\"video/vnd.directv.mpeg\":{\"source\":\"iana\"},\"video/vnd.directv.mpeg-tts\":{\"source\":\"iana\"},\"video/vnd.dlna.mpeg-tts\":{\"source\":\"iana\"},\"video/vnd.dvb.file\":{\"source\":\"iana\",\"extensions\":[\"dvb\"]},\"video/vnd.fvt\":{\"source\":\"iana\",\"extensions\":[\"fvt\"]},\"video/vnd.hns.video\":{\"source\":\"iana\"},\"video/vnd.iptvforum.1dparityfec-1010\":{\"source\":\"iana\"},\"video/vnd.iptvforum.1dparityfec-2005\":{\"source\":\"iana\"},\"video/vnd.iptvforum.2dparityfec-1010\":{\"source\":\"iana\"},\"video/vnd.iptvforum.2dparityfec-2005\":{\"source\":\"iana\"},\"video/vnd.iptvforum.ttsavc\":{\"source\":\"iana\"},\"video/vnd.iptvforum.ttsmpeg2\":{\"source\":\"iana\"},\"video/vnd.motorola.video\":{\"source\":\"iana\"},\"video/vnd.motorola.videop\":{\"source\":\"iana\"},\"video/vnd.mpegurl\":{\"source\":\"iana\",\"extensions\":[\"mxu\",\"m4u\"]},\"video/vnd.ms-playready.media.pyv\":{\"source\":\"iana\",\"extensions\":[\"pyv\"]},\"video/vnd.nokia.interleaved-multimedia\":{\"source\":\"iana\"},\"video/vnd.nokia.mp4vr\":{\"source\":\"iana\"},\"video/vnd.nokia.videovoip\":{\"source\":\"iana\"},\"video/vnd.objectvideo\":{\"source\":\"iana\"},\"video/vnd.radgamettools.bink\":{\"source\":\"iana\"},\"video/vnd.radgamettools.smacker\":{\"source\":\"iana\"},\"video/vnd.sealed.mpeg1\":{\"source\":\"iana\"},\"video/vnd.sealed.mpeg4\":{\"source\":\"iana\"},\"video/vnd.sealed.swf\":{\"source\":\"iana\"},\"video/vnd.sealedmedia.softseal.mov\":{\"source\":\"iana\"},\"video/vnd.uvvu.mp4\":{\"source\":\"iana\",\"extensions\":[\"uvu\",\"uvvu\"]},\"video/vnd.vivo\":{\"source\":\"iana\",\"extensions\":[\"viv\"]},\"video/vnd.youtube.yt\":{\"source\":\"iana\"},\"video/vp8\":{\"source\":\"iana\"},\"video/vp9\":{\"source\":\"iana\"},\"video/webm\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"webm\"]},\"video/x-f4v\":{\"source\":\"apache\",\"extensions\":[\"f4v\"]},\"video/x-fli\":{\"source\":\"apache\",\"extensions\":[\"fli\"]},\"video/x-flv\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"flv\"]},\"video/x-m4v\":{\"source\":\"apache\",\"extensions\":[\"m4v\"]},\"video/x-matroska\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"mkv\",\"mk3d\",\"mks\"]},\"video/x-mng\":{\"source\":\"apache\",\"extensions\":[\"mng\"]},\"video/x-ms-asf\":{\"source\":\"apache\",\"extensions\":[\"asf\",\"asx\"]},\"video/x-ms-vob\":{\"source\":\"apache\",\"extensions\":[\"vob\"]},\"video/x-ms-wm\":{\"source\":\"apache\",\"extensions\":[\"wm\"]},\"video/x-ms-wmv\":{\"source\":\"apache\",\"compressible\":false,\"extensions\":[\"wmv\"]},\"video/x-ms-wmx\":{\"source\":\"apache\",\"extensions\":[\"wmx\"]},\"video/x-ms-wvx\":{\"source\":\"apache\",\"extensions\":[\"wvx\"]},\"video/x-msvideo\":{\"source\":\"apache\",\"extensions\":[\"avi\"]},\"video/x-sgi-movie\":{\"source\":\"apache\",\"extensions\":[\"movie\"]},\"video/x-smv\":{\"source\":\"apache\",\"extensions\":[\"smv\"]},\"x-conference/x-cooltalk\":{\"source\":\"apache\",\"extensions\":[\"ice\"]},\"x-shader/x-fragment\":{\"compressible\":true},\"x-shader/x-vertex\":{\"compressible\":true}}"); - -/***/ }), -/* 838 */ +/* 847 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var lodash = __webpack_require__(823); -var isPromise = __webpack_require__(839); +var lodash = __webpack_require__(844); +var isPromise = __webpack_require__(848); module.exports = function (adapter) { if (typeof adapter !== 'object') { @@ -141452,7 +138520,7 @@ module.exports = function (adapter) { }; /***/ }), -/* 839 */ +/* 848 */ /***/ (function(module, exports) { module.exports = isPromise; @@ -141464,7 +138532,7 @@ function isPromise(obj) { /***/ }), -/* 840 */ +/* 849 */ /***/ (function(module, exports) { // UUID @@ -141596,7 +138664,7 @@ module.exports = { /***/ }), -/* 841 */ +/* 850 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -141610,8 +138678,8 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } -var fs = __webpack_require__(842); -var Base = __webpack_require__(847); +var fs = __webpack_require__(851); +var Base = __webpack_require__(856); var readFile = fs.readFileSync; var writeFile = fs.writeFileSync; @@ -141662,13 +138730,13 @@ var FileSync = function (_Base) { module.exports = FileSync; /***/ }), -/* 842 */ +/* 851 */ /***/ (function(module, exports, __webpack_require__) { var fs = __webpack_require__(167) -var polyfills = __webpack_require__(843) -var legacy = __webpack_require__(845) -var clone = __webpack_require__(846) +var polyfills = __webpack_require__(852) +var legacy = __webpack_require__(854) +var clone = __webpack_require__(855) var util = __webpack_require__(9) @@ -142041,10 +139109,10 @@ function retry () { /***/ }), -/* 843 */ +/* 852 */ /***/ (function(module, exports, __webpack_require__) { -var constants = __webpack_require__(844) +var constants = __webpack_require__(853) var origCwd = process.cwd var cwd = null @@ -142393,13 +139461,13 @@ function patch (fs) { /***/ }), -/* 844 */ +/* 853 */ /***/ (function(module, exports) { module.exports = require("constants"); /***/ }), -/* 845 */ +/* 854 */ /***/ (function(module, exports, __webpack_require__) { var Stream = __webpack_require__(100).Stream @@ -142523,7 +139591,7 @@ function legacy (fs) { /***/ }), -/* 846 */ +/* 855 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -142553,7 +139621,7 @@ function clone (obj) { /***/ }), -/* 847 */ +/* 856 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -142561,7 +139629,7 @@ function clone (obj) { function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } -var stringify = __webpack_require__(848); +var stringify = __webpack_require__(857); var Base = function Base(source) { var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}, @@ -142583,7 +139651,7 @@ var Base = function Base(source) { module.exports = Base; /***/ }), -/* 848 */ +/* 857 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -142595,7 +139663,7 @@ module.exports = function stringify(obj) { }; /***/ }), -/* 849 */ +/* 858 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -142613,10 +139681,10 @@ module.exports = function stringify(obj) { * @private */ -var bytes = __webpack_require__(850) -var createError = __webpack_require__(851) -var iconv = __webpack_require__(862) -var unpipe = __webpack_require__(884) +var bytes = __webpack_require__(859) +var createError = __webpack_require__(860) +var iconv = __webpack_require__(871) +var unpipe = __webpack_require__(892) /** * Module exports. @@ -142888,7 +139956,7 @@ function readStream (stream, encoding, length, limit, callback) { /***/ }), -/* 850 */ +/* 859 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -143057,7 +140125,7 @@ function parse(val) { /***/ }), -/* 851 */ +/* 860 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -143075,11 +140143,11 @@ function parse(val) { * @private */ -var deprecate = __webpack_require__(852)('http-errors') -var setPrototypeOf = __webpack_require__(856) -var statuses = __webpack_require__(857) -var inherits = __webpack_require__(859) -var toIdentifier = __webpack_require__(861) +var deprecate = __webpack_require__(861)('http-errors') +var setPrototypeOf = __webpack_require__(865) +var statuses = __webpack_require__(866) +var inherits = __webpack_require__(868) +var toIdentifier = __webpack_require__(870) /** * Module exports. @@ -143330,7 +140398,7 @@ function populateConstructorExports (exports, codes, HttpError) { /***/ }), -/* 852 */ +/* 861 */ /***/ (function(module, exports, __webpack_require__) { /*! @@ -143343,8 +140411,8 @@ function populateConstructorExports (exports, codes, HttpError) { * Module dependencies. */ -var callSiteToString = __webpack_require__(853).callSiteToString -var eventListenerCount = __webpack_require__(853).eventListenerCount +var callSiteToString = __webpack_require__(862).callSiteToString +var eventListenerCount = __webpack_require__(862).eventListenerCount var relative = __webpack_require__(160).relative /** @@ -143858,7 +140926,7 @@ function DeprecationError (namespace, message, stack) { /***/ }), -/* 853 */ +/* 862 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -143875,7 +140943,7 @@ function DeprecationError (namespace, message, stack) { * @private */ -var EventEmitter = __webpack_require__(271).EventEmitter +var EventEmitter = __webpack_require__(268).EventEmitter /** * Module exports. @@ -143903,11 +140971,11 @@ lazyProperty(module.exports, 'callSiteToString', function callSiteToString () { Error.prepareStackTrace = prep Error.stackTraceLimit = limit - return stack[0].toString ? toString : __webpack_require__(854) + return stack[0].toString ? toString : __webpack_require__(863) }) lazyProperty(module.exports, 'eventListenerCount', function eventListenerCount () { - return EventEmitter.listenerCount || __webpack_require__(855) + return EventEmitter.listenerCount || __webpack_require__(864) }) /** @@ -143944,7 +141012,7 @@ function toString (obj) { /***/ }), -/* 854 */ +/* 863 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -144054,7 +141122,7 @@ function getConstructorName (obj) { /***/ }), -/* 855 */ +/* 864 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -144083,7 +141151,7 @@ function eventListenerCount (emitter, type) { /***/ }), -/* 856 */ +/* 865 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -144107,7 +141175,7 @@ function mixinProperties (obj, proto) { /***/ }), -/* 857 */ +/* 866 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -144125,7 +141193,7 @@ function mixinProperties (obj, proto) { * @private */ -var codes = __webpack_require__(858) +var codes = __webpack_require__(867) /** * Module exports. @@ -144227,13 +141295,13 @@ function status (code) { /***/ }), -/* 858 */ +/* 867 */ /***/ (function(module) { module.exports = JSON.parse("{\"100\":\"Continue\",\"101\":\"Switching Protocols\",\"102\":\"Processing\",\"103\":\"Early Hints\",\"200\":\"OK\",\"201\":\"Created\",\"202\":\"Accepted\",\"203\":\"Non-Authoritative Information\",\"204\":\"No Content\",\"205\":\"Reset Content\",\"206\":\"Partial Content\",\"207\":\"Multi-Status\",\"208\":\"Already Reported\",\"226\":\"IM Used\",\"300\":\"Multiple Choices\",\"301\":\"Moved Permanently\",\"302\":\"Found\",\"303\":\"See Other\",\"304\":\"Not Modified\",\"305\":\"Use Proxy\",\"306\":\"(Unused)\",\"307\":\"Temporary Redirect\",\"308\":\"Permanent Redirect\",\"400\":\"Bad Request\",\"401\":\"Unauthorized\",\"402\":\"Payment Required\",\"403\":\"Forbidden\",\"404\":\"Not Found\",\"405\":\"Method Not Allowed\",\"406\":\"Not Acceptable\",\"407\":\"Proxy Authentication Required\",\"408\":\"Request Timeout\",\"409\":\"Conflict\",\"410\":\"Gone\",\"411\":\"Length Required\",\"412\":\"Precondition Failed\",\"413\":\"Payload Too Large\",\"414\":\"URI Too Long\",\"415\":\"Unsupported Media Type\",\"416\":\"Range Not Satisfiable\",\"417\":\"Expectation Failed\",\"418\":\"I'm a teapot\",\"421\":\"Misdirected Request\",\"422\":\"Unprocessable Entity\",\"423\":\"Locked\",\"424\":\"Failed Dependency\",\"425\":\"Unordered Collection\",\"426\":\"Upgrade Required\",\"428\":\"Precondition Required\",\"429\":\"Too Many Requests\",\"431\":\"Request Header Fields Too Large\",\"451\":\"Unavailable For Legal Reasons\",\"500\":\"Internal Server Error\",\"501\":\"Not Implemented\",\"502\":\"Bad Gateway\",\"503\":\"Service Unavailable\",\"504\":\"Gateway Timeout\",\"505\":\"HTTP Version Not Supported\",\"506\":\"Variant Also Negotiates\",\"507\":\"Insufficient Storage\",\"508\":\"Loop Detected\",\"509\":\"Bandwidth Limit Exceeded\",\"510\":\"Not Extended\",\"511\":\"Network Authentication Required\"}"); /***/ }), -/* 859 */ +/* 868 */ /***/ (function(module, exports, __webpack_require__) { try { @@ -144243,12 +141311,12 @@ try { module.exports = util.inherits; } catch (e) { /* istanbul ignore next */ - module.exports = __webpack_require__(860); + module.exports = __webpack_require__(869); } /***/ }), -/* 860 */ +/* 869 */ /***/ (function(module, exports) { if (typeof Object.create === 'function') { @@ -144281,7 +141349,7 @@ if (typeof Object.create === 'function') { /***/ }), -/* 861 */ +/* 870 */ /***/ (function(module, exports) { /*! @@ -144317,7 +141385,7 @@ function toIdentifier (str) { /***/ }), -/* 862 */ +/* 871 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -144327,7 +141395,7 @@ function toIdentifier (str) { // Solution would be installing npm modules "buffer" and "stream" explicitly. var Buffer = __webpack_require__(114).Buffer; -var bomHandling = __webpack_require__(863), +var bomHandling = __webpack_require__(872), iconv = module.exports; // All codecs and aliases are kept here, keyed by encoding name/alias. @@ -144385,7 +141453,7 @@ iconv.fromEncoding = iconv.decode; iconv._codecDataCache = {}; iconv.getCodec = function getCodec(encoding) { if (!iconv.encodings) - iconv.encodings = __webpack_require__(864); // Lazy load all encoding definitions. + iconv.encodings = __webpack_require__(873); // Lazy load all encoding definitions. // Canonicalize encoding name: strip all non-alphanumeric chars and appended year. var enc = iconv._canonicalizeEncoding(encoding); @@ -144464,18 +141532,18 @@ if (nodeVer) { // Load streaming support in Node v0.10+ var nodeVerArr = nodeVer.split(".").map(Number); if (nodeVerArr[0] > 0 || nodeVerArr[1] >= 10) { - __webpack_require__(882)(iconv); + __webpack_require__(890)(iconv); } // Load Node primitive extensions. - __webpack_require__(883)(iconv); + __webpack_require__(891)(iconv); } if (false) {} /***/ }), -/* 863 */ +/* 872 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -144534,7 +141602,7 @@ StripBOMWrapper.prototype.end = function() { /***/ }), -/* 864 */ +/* 873 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -144543,14 +141611,14 @@ StripBOMWrapper.prototype.end = function() { // Update this array if you add/rename/remove files in this directory. // We support Browserify by skipping automatic module discovery and requiring modules directly. var modules = [ - __webpack_require__(865), - __webpack_require__(867), - __webpack_require__(868), - __webpack_require__(869), - __webpack_require__(870), - __webpack_require__(871), - __webpack_require__(872), - __webpack_require__(873), + __webpack_require__(874), + __webpack_require__(875), + __webpack_require__(876), + __webpack_require__(877), + __webpack_require__(878), + __webpack_require__(879), + __webpack_require__(880), + __webpack_require__(881), ]; // Put all encoding/alias/codec definitions to single object and export it. @@ -144563,7 +141631,7 @@ for (var i = 0; i < modules.length; i++) { /***/ }), -/* 865 */ +/* 874 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -144615,7 +141683,7 @@ InternalCodec.prototype.decoder = InternalDecoder; //------------------------------------------------------------------------------ // We use node.js internal decoder. Its signature is the same as ours. -var StringDecoder = __webpack_require__(866).StringDecoder; +var StringDecoder = __webpack_require__(809).StringDecoder; if (!StringDecoder.prototype.end) // Node v0.8 doesn't have this method. StringDecoder.prototype.end = function() {}; @@ -144758,13 +141826,7 @@ InternalDecoderCesu8.prototype.end = function() { /***/ }), -/* 866 */ -/***/ (function(module, exports) { - -module.exports = require("string_decoder"); - -/***/ }), -/* 867 */ +/* 875 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -144948,7 +142010,7 @@ function detectEncoding(buf, defaultEncoding) { /***/ }), -/* 868 */ +/* 876 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -145245,7 +142307,7 @@ Utf7IMAPDecoder.prototype.end = function() { /***/ }), -/* 869 */ +/* 877 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -145324,7 +142386,7 @@ SBCSDecoder.prototype.end = function() { /***/ }), -/* 870 */ +/* 878 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -145505,7 +142567,7 @@ module.exports = { /***/ }), -/* 871 */ +/* 879 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -145962,7 +143024,7 @@ module.exports = { } /***/ }), -/* 872 */ +/* 880 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -146524,7 +143586,7 @@ function findIdx(table, val) { /***/ }), -/* 873 */ +/* 881 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -146570,7 +143632,7 @@ module.exports = { 'shiftjis': { type: '_dbcs', - table: function() { return __webpack_require__(874) }, + table: function() { return __webpack_require__(882) }, encodeAdd: {'\u00a5': 0x5C, '\u203E': 0x7E}, encodeSkipVals: [{from: 0xED40, to: 0xF940}], }, @@ -146587,7 +143649,7 @@ module.exports = { 'eucjp': { type: '_dbcs', - table: function() { return __webpack_require__(875) }, + table: function() { return __webpack_require__(883) }, encodeAdd: {'\u00a5': 0x5C, '\u203E': 0x7E}, }, @@ -146614,13 +143676,13 @@ module.exports = { '936': 'cp936', 'cp936': { type: '_dbcs', - table: function() { return __webpack_require__(876) }, + table: function() { return __webpack_require__(884) }, }, // GBK (~22000 chars) is an extension of CP936 that added user-mapped chars and some other. 'gbk': { type: '_dbcs', - table: function() { return __webpack_require__(876).concat(__webpack_require__(877)) }, + table: function() { return __webpack_require__(884).concat(__webpack_require__(885)) }, }, 'xgbk': 'gbk', 'isoir58': 'gbk', @@ -146632,8 +143694,8 @@ module.exports = { // http://www.khngai.com/chinese/charmap/tblgbk.php?page=0 'gb18030': { type: '_dbcs', - table: function() { return __webpack_require__(876).concat(__webpack_require__(877)) }, - gb18030: function() { return __webpack_require__(878) }, + table: function() { return __webpack_require__(884).concat(__webpack_require__(885)) }, + gb18030: function() { return __webpack_require__(886) }, encodeSkipVals: [0x80], encodeAdd: {'€': 0xA2E3}, }, @@ -146648,7 +143710,7 @@ module.exports = { '949': 'cp949', 'cp949': { type: '_dbcs', - table: function() { return __webpack_require__(879) }, + table: function() { return __webpack_require__(887) }, }, 'cseuckr': 'cp949', @@ -146689,14 +143751,14 @@ module.exports = { '950': 'cp950', 'cp950': { type: '_dbcs', - table: function() { return __webpack_require__(880) }, + table: function() { return __webpack_require__(888) }, }, // Big5 has many variations and is an extension of cp950. We use Encoding Standard's as a consensus. 'big5': 'big5hkscs', 'big5hkscs': { type: '_dbcs', - table: function() { return __webpack_require__(880).concat(__webpack_require__(881)) }, + table: function() { return __webpack_require__(888).concat(__webpack_require__(889)) }, encodeSkipVals: [0xa2cc], }, @@ -146707,55 +143769,55 @@ module.exports = { /***/ }), -/* 874 */ +/* 882 */ /***/ (function(module) { module.exports = JSON.parse("[[\"0\",\"\\u0000\",128],[\"a1\",\"。\",62],[\"8140\",\" ã€ã€‚,.・:;?ï¼ã‚›ã‚œÂ´ï½€Â¨ï¼¾ï¿£ï¼¿ãƒ½ãƒ¾ã‚ゞ〃ä»ã€…〆〇ー―â€ï¼ï¼¼ï½žâˆ¥ï½œâ€¦â€¥â€˜â€™â€œâ€ï¼ˆï¼‰ã€”〕[]{ï½ã€ˆ\",9,\"+ï¼Â±Ã—\"],[\"8180\",\"÷ï¼â‰ ï¼œï¼žâ‰¦â‰§âˆžâˆ´â™‚â™€Â°â€²â€³â„ƒï¿¥ï¼„ï¿ ï¿¡ï¼…ï¼ƒï¼†ï¼Šï¼ Â§â˜†â˜…â—‹â—◎◇◆□■△▲▽▼※〒→â†â†‘↓〓\"],[\"81b8\",\"∈∋⊆⊇⊂⊃∪∩\"],[\"81c8\",\"∧∨¬⇒⇔∀∃\"],[\"81da\",\"∠⊥⌒∂∇≡≒≪≫√∽âˆâˆµâˆ«âˆ¬\"],[\"81f0\",\"ʼn♯â™â™ªâ€ ‡¶\"],[\"81fc\",\"â—¯\"],[\"824f\",\"ï¼\",9],[\"8260\",\"A\",25],[\"8281\",\"ï½\",25],[\"829f\",\"ã\",82],[\"8340\",\"ã‚¡\",62],[\"8380\",\"ム\",22],[\"839f\",\"Α\",16,\"Σ\",6],[\"83bf\",\"α\",16,\"σ\",6],[\"8440\",\"Ð\",5,\"ÐЖ\",25],[\"8470\",\"а\",5,\"ёж\",7],[\"8480\",\"о\",17],[\"849f\",\"─│┌â”┘└├┬┤┴┼â”┃â”┓┛┗┣┳┫┻╋┠┯┨┷┿â”┰┥┸╂\"],[\"8740\",\"â‘ \",19,\"â… \",9],[\"875f\",\"ã‰ãŒ”㌢ã㌘㌧㌃㌶ã‘ã—ãŒãŒ¦ãŒ£ãŒ«ãŠãŒ»ãŽœãŽãŽžãŽŽãŽã„㎡\"],[\"877e\",\"ã»\"],[\"8780\",\"ã€ã€Ÿâ„–ã℡㊤\",4,\"㈱㈲㈹ã¾ã½ã¼â‰’≡∫∮∑√⊥∠∟⊿∵∩∪\"],[\"889f\",\"äºœå”–å¨ƒé˜¿å“€æ„›æŒ¨å§¶é€¢è‘µèŒœç©æ‚ªæ¡æ¸¥æ—葦芦鯵梓圧斡扱宛å§è™»é£´çµ¢ç¶¾é®Žæˆ–ç²Ÿè¢·å®‰åºµæŒ‰æš—æ¡ˆé—‡éžæä»¥ä¼Šä½ä¾å‰å›²å¤·å§”å¨å°‰æƒŸæ„慰易椅為ç•ç•°ç§»ç¶ç·¯èƒƒèŽè¡£è¬‚é•éºåŒ»äº•亥域育éƒç£¯ä¸€å£±æº¢é€¸ç¨²èŒ¨èЋ鰝å…å°å’½å“¡å› 姻引飲淫胤è”\"],[\"8940\",\"é™¢é™°éš éŸ»å‹å³å®‡çƒç¾½è¿‚雨å¯éµœçªºä¸‘碓臼渦嘘唄æ¬è”šé°»å§¥åŽ©æµ¦ç“œé–噂云é‹é›²è餌å¡å–¶å¬°å½±æ˜ æ›³æ „æ°¸æ³³æ´©ç‘›ç›ˆç©Žé ´è‹±è¡›è© é‹æ¶²ç–«ç›Šé§…悦è¬è¶Šé–²æ¦ŽåŽå††\"],[\"8980\",\"åœ’å °å¥„å®´å»¶æ€¨æŽ©æ´æ²¿æ¼”炎焔煙燕猿ç¸è‰¶è‹‘è–—é 鉛鴛塩於汚甥凹央奥往応押旺横欧殴王ç¿è¥–鴬鴎黄岡沖è»å„„å±‹æ†¶è‡†æ¡¶ç‰¡ä¹™ä¿ºå¸æ©æ¸©ç©éŸ³ä¸‹åŒ–ä»®ä½•ä¼½ä¾¡ä½³åŠ å¯å˜‰å¤å«å®¶å¯¡ç§‘æš‡æžœæž¶æŒæ²³ç«ç‚ç¦ç¦¾ç¨¼ç®‡èŠ±è‹›èŒ„è·è¯è“è¦èª²å˜©è²¨è¿¦éŽéœžèšŠä¿„å³¨æˆ‘ç‰™ç”»è‡¥èŠ½è›¾è³€é›…é¤“é§•ä»‹ä¼šè§£å›žå¡Šå£Šå»»å¿«æ€ªæ‚”æ¢æ‡æˆ’æ‹æ”¹\"],[\"8a40\",\"éæ™¦æ¢°æµ·ç°ç•Œçš†çµµèŠ¥èŸ¹é–‹éšŽè²å‡±åŠ¾å¤–å’³å®³å´–æ…¨æ¦‚æ¶¯ç¢è“‹è¡—該鎧骸浬馨蛙垣柿蛎鈎劃嚇å„å»“æ‹¡æ’¹æ ¼æ ¸æ®»ç²ç¢ºç©«è¦šè§’赫較éƒé–£éš”é©å¦å²³æ¥½é¡é¡ŽæŽ›ç¬ 樫\"],[\"8a80\",\"æ©¿æ¢¶é°æ½Ÿå‰²å–æ°æ‹¬æ´»æ¸‡æ»‘è‘›è¤è½„䏔鰹嶿¤›æ¨ºéž„æ ªå…œç«ƒè’²é‡œéŽŒå™›é´¨æ ¢èŒ…è±ç²¥åˆˆè‹…ç“¦ä¹¾ä¾ƒå† å¯’åˆŠå‹˜å‹§å·»å–šå ªå§¦å®Œå®˜å¯›å¹²å¹¹æ‚£æ„Ÿæ…£æ†¾æ›æ•¢æŸ‘æ¡“æ£ºæ¬¾æ“æ±—漢澗潅環甘監看竿管簡緩缶翰è‚艦莞観諌貫還鑑間閑関陥韓館舘丸å«å²¸å·ŒçŽ©ç™Œçœ¼å²©ç¿«è´‹é›é ‘顔願ä¼ä¼Žå±å–œå™¨åŸºå¥‡å¬‰å¯„å²å¸Œå¹¾å¿Œæ®æœºæ——既期棋棄\"],[\"8b40\",\"機帰毅気汽畿祈å£ç¨€ç´€å¾½è¦è¨˜è²´èµ·è»Œè¼é£¢é¨Žé¬¼äº€å½å„€å¦“å®œæˆ¯æŠ€æ“¬æ¬ºçŠ ç–‘ç¥‡ç¾©èŸ»èª¼è°æŽ¬èŠéž å‰åƒå–«æ¡”æ©˜è©°ç §æµé»å´å®¢è„šè™é€†ä¸˜ä¹…仇休åŠå¸å®®å¼“急救\"],[\"8b80\",\"朽求汲泣ç¸çƒç©¶çª®ç¬ˆç´šç³¾çµ¦æ—§ç‰›åŽ»å±…å·¨æ‹’æ‹ æŒ™æ¸ è™šè¨±è·é‹¸æ¼ç¦¦éšäº¨äº«äº¬ä¾›ä¾ 僑兇競共凶å”匡å¿å«å–¬å¢ƒå³¡å¼·å½Šæ€¯æææŒŸæ•™æ©‹æ³ç‹‚ç‹çŸ¯èƒ¸è„…興蕎郷é¡éŸ¿é¥—驚仰å‡å°æšæ¥å±€æ›²æ¥µçމæ¡ç²åƒ…勤å‡å·¾éŒ¦æ–¤æ¬£æ¬½ç´ç¦ç¦½ç‹ç·ŠèйèŒè¡¿è¥Ÿè¬¹è¿‘金åŸéŠ€ä¹å€¶å¥åŒºç‹—玖矩苦躯駆駈駒具愚虞喰空å¶å¯“é‡éš…串櫛釧屑屈\"],[\"8c40\",\"掘窟沓é´è½¡çªªç†Šéšˆç²‚æ —ç¹°æ¡‘é¬å‹²å›è–«è¨“群è»éƒ¡å¦è¢ˆç¥ä¿‚傾刑兄啓åœçªåž‹å¥‘å½¢å¾„æµæ…¶æ…§æ†©æŽ²æºæ•¬æ™¯æ¡‚渓畦稽系経継繋罫茎èŠè›è¨ˆè©£è¦è»½é šé¶èŠ¸è¿Žé¯¨\"],[\"8c80\",\"劇戟撃激隙æ¡å‚‘æ¬ æ±ºæ½”ç©´çµè¡€è¨£æœˆä»¶å€¹å€¦å¥å…¼åˆ¸å‰£å–§åœå …å«Œå»ºæ†²æ‡¸æ‹³æ²æ¤œæ¨©ç‰½çŠ¬çŒ®ç ”ç¡¯çµ¹çœŒè‚©è¦‹è¬™è³¢è»’é£éµé™ºé¡•験鹸元原厳幻弦減æºçŽ„ç¾çµƒèˆ·è¨€è«ºé™ä¹Žå€‹å¤å‘¼å›ºå§‘å¤å·±åº«å¼§æˆ¸æ•…枯湖ç‹ç³Šè¢´è‚¡èƒ¡è°è™Žèª‡è·¨éˆ·é›‡é¡§é¼“五互ä¼åˆå‘‰å¾å¨¯å¾Œå¾¡æ‚Ÿæ¢§æªŽç‘šç¢èªžèª¤è·é†ä¹žé¯‰äº¤ä½¼ä¾¯å€™å€–光公功効勾厚å£å‘\"],[\"8d40\",\"åŽå–‰å‘垢好å”åå®å·¥å·§å··å¹¸åºƒåºšåº·å¼˜æ’æ…ŒæŠ—æ‹˜æŽ§æ”»æ˜‚æ™ƒæ›´ææ ¡æ¢—構江洪浩港æºç”²çš‡ç¡¬ç¨¿ç³ 紅紘絞綱耕考肯肱腔è†èˆªè’è¡Œè¡¡è¬›è²¢è³¼éƒŠé…µé‰±ç ¿é‹¼é–¤é™\"],[\"8d80\",\"é …é¦™é«˜é´»å‰›åŠ«å·åˆå£•æ‹·æ¿ è±ªè½Ÿéº¹å…‹åˆ»å‘Šå›½ç©€é…·éµ é»’ç„æ¼‰è…°ç”‘忽惚骨狛込æ¤é ƒä»Šå›°å¤å¢¾å©šæ¨æ‡‡æ˜æ˜†æ ¹æ¢±æ··ç—•紺艮é‚些ä½å‰å”†åµ¯å·¦å·®æŸ»æ²™ç‘³ç ‚è©éŽ–è£Ÿååº§æŒ«å‚µå‚¬å†æœ€å“‰å¡žå¦»å®°å½©æ‰æŽ¡æ ½æ³æ¸ˆç½é‡‡çŠ€ç •ç ¦ç¥æ–Žç´°èœè£è¼‰éš›å‰¤åœ¨æç½ªè²¡å†´å‚é˜ªå ºæ¦Šè‚´å’²å´ŽåŸ¼ç¢•é·ºä½œå‰Šå’‹æ¾æ˜¨æœ”柵窄ç–索錯桜é®ç¬¹åŒ™å†Šåˆ·\"],[\"8e40\",\"å¯Ÿæ‹¶æ’®æ“¦æœæ®ºè–©é›‘çšé¯–æŒéŒ†é®«çš¿æ™’三傘å‚山惨撒散桟燦çŠç”£ç®—çº‚èš•è®ƒè³›é…¸é¤æ–¬æš«æ®‹ä»•仔伺使刺å¸å²å—£å››å£«å§‹å§‰å§¿åå±å¸‚å¸«å¿—æ€æŒ‡æ”¯åœæ–¯æ–½æ—¨æžæ¢\"],[\"8e80\",\"æ»æ°ç…祉ç§ç³¸ç´™ç´«è‚¢è„‚至視詞詩試誌諮資賜雌飼æ¯äº‹ä¼¼ä¾å…å—å¯ºæ…ˆæŒæ™‚次滋治爾璽痔ç£ç¤ºè€Œè€³è‡ªè’”辞æ±é¹¿å¼è˜é´«ç«ºè»¸å®é›«ä¸ƒå±åŸ·å¤±å«‰å®¤æ‚‰æ¹¿æ¼†ç–¾è³ªå®Ÿè”€ç¯ 岿Ÿ´èŠå±¡è•Šç¸žèˆŽå†™å°„æ¨èµ¦æ–œç…®ç¤¾ç´—者è¬è»Šé®è›‡é‚ªå€Ÿå‹ºå°ºæ“ç¼çˆµé…Œé‡ˆéŒ«è‹¥å¯‚弱惹主å–守手朱殊狩ç 種腫趣酒首儒å—呪寿授樹綬需囚åŽå‘¨\"],[\"8f40\",\"å®—å°±å·žä¿®æ„æ‹¾æ´²ç§€ç§‹çµ‚ç¹ç¿’è‡èˆŸè’衆襲è®è¹´è¼¯é€±é…‹é…¬é›†é†œä»€ä½å……åå¾“æˆŽæŸ”æ±æ¸‹ç£ç¸¦é‡éŠƒå”夙宿淑ç¥ç¸®ç²›å¡¾ç†Ÿå‡ºè¡“述俊峻春瞬竣舜駿准循旬楯殉淳\"],[\"8f80\",\"準潤盾純巡éµé†‡é †å‡¦åˆæ‰€æš‘曙渚庶緒署書薯藷諸助å™å¥³åºå¾æ•鋤除傷償å‹åŒ å‡å¬å“¨å•†å”±å˜—奨妾娼宵将å°å°‘å°šåº„åºŠå» å½°æ‰¿æŠ„æ‹›æŽŒæ·æ˜‡æ˜Œæ˜æ™¶æ¾æ¢¢æ¨Ÿæ¨µæ²¼æ¶ˆæ¸‰æ¹˜ç„¼ç„¦ç…§ç—‡çœç¡ç¤ç¥¥ç§°ç« 笑粧紹肖è–蒋蕉è¡è£³è¨Ÿè¨¼è©”詳象賞醤鉦é¾é˜éšœéž˜ä¸Šä¸ˆä¸žä¹—å†—å‰°åŸŽå ´å£Œå¬¢å¸¸æƒ…æ“¾æ¡æ–浄状畳穣蒸è²é†¸éŒ 嘱埴飾\"],[\"9040\",\"æ‹æ¤æ®–ç‡ç¹”è·è‰²è§¦é£Ÿè•è¾±å°»ä¼¸ä¿¡ä¾µå”‡å¨ å¯å¯©å¿ƒæ…ŽæŒ¯æ–°æ™‹æ£®æ¦›æµ¸æ·±ç”³ç–¹çœŸç¥žç§¦ç´³è‡£èŠ¯è–ªè¦ªè¨ºèº«è¾›é€²é‡éœ‡äººä»åˆƒå¡µå£¬å°‹ç”šå°½è…Žè¨Šè¿…陣é笥è«é ˆé…¢å›³åލ\"],[\"9080\",\"逗å¹åž‚帥推水炊ç¡ç²‹ç¿ è¡°é‚é…”éŒéŒ˜éšç‘žé«„å´‡åµ©æ•°æž¢è¶¨é››æ®æ‰æ¤™è…é —é›€è£¾æ¾„æ‘ºå¯¸ä¸–ç€¬ç•æ˜¯å‡„åˆ¶å‹¢å§“å¾æ€§æˆæ”¿æ•´æ˜Ÿæ™´æ£²æ –æ£æ¸…牲生盛精è–å£°è£½è¥¿èª èª“è«‹é€é†’é’陿–‰ç¨Žè„†éš»å¸æƒœæˆšæ–¥æ˜”æžçŸ³ç©ç±ç¸¾è„Šè²¬èµ¤è·¡è¹Ÿç¢©åˆ‡æ‹™æŽ¥æ‘‚折è¨çªƒç¯€èª¬é›ªçµ¶èˆŒè‰ä»™å…ˆåƒå 宣専尖巿ˆ¦æ‰‡æ’°æ “æ ´æ³‰æµ…æ´—æŸ“æ½œç…Žç…½æ—‹ç©¿ç®ç·š\"],[\"9140\",\"繊羨腺舛船薦詮賎践é¸é·éŠéŠ‘é–ƒé®®å‰å–„漸然全禅繕膳糎噌塑岨措曾曽楚狙ç–ç–Žç¤Žç¥–ç§Ÿç²—ç´ çµ„è˜‡è¨´é˜»é¡é¼ 僧創åŒå¢å€‰å–ªå£®å¥çˆ½å®‹å±¤åŒæƒ£æƒ³æœæŽƒæŒ¿æŽ»\"],[\"9180\",\"æ“æ—©æ›¹å·£æ§æ§½æ¼•燥争痩相窓糟ç·ç¶œè¡è‰è˜è‘¬è’¼è—»è£…èµ°é€é鎗霜騒åƒå¢—æ†Žè‡“è”µè´ˆé€ ä¿ƒå´å‰‡å³æ¯æ‰æŸæ¸¬è¶³é€Ÿä¿—属賊æ—ç¶šå’袖其æƒå˜å«å°Šææ‘éœä»–å¤šå¤ªæ±°è©‘å”¾å •å¦¥æƒ°æ‰“æŸèˆµæ¥•é™€é§„é¨¨ä½“å †å¯¾è€å²±å¸¯å¾…æ€ æ…‹æˆ´æ›¿æ³°æ»žèƒŽè…¿è‹”è¢‹è²¸é€€é€®éšŠé»›é¯›ä»£å°å¤§ç¬¬é†é¡Œé·¹æ»ç€§å“啄宅托択拓沢濯ç¢è¨—鏿¿è«¾èŒ¸å‡§è›¸åª\"],[\"9240\",\"å©ä½†é”辰奪脱巽竪辿棚谷狸鱈樽誰丹å˜å˜†å¦æ‹…æŽ¢æ—¦æŽæ·¡æ¹›ç‚çŸç«¯ç®ªç¶»è€½èƒ†è›‹èª•é›å›£å£‡å¼¾æ–æš–æª€æ®µç”·è«‡å€¤çŸ¥åœ°å¼›æ¥æ™ºæ± 痴稚置致蜘é…馳築畜竹ç‘è“„\"],[\"9280\",\"é€ç§©çª’茶嫡ç€ä¸ä»²å®™å¿ æŠ½æ˜¼æŸ±æ³¨è™«è¡·è¨»é…Žé‹³é§æ¨—瀦猪苧著貯ä¸å…†å‡‹å–‹å¯µå¸–帳åºå¼”å¼µå½«å¾´æ‡²æŒ‘æš¢æœæ½®ç‰’町眺è´è„¹è…¸è¶èª¿è«œè¶…è·³éŠšé•·é ‚é³¥å‹…æ—直朕沈çè³ƒéŽ®é™³æ´¥å¢œæ¤Žæ§Œè¿½éŽšç—›é€šå¡šæ ‚æŽ´æ§»ä½ƒæ¼¬æŸ˜è¾»è”¦ç¶´é”æ¤¿æ½°åªå£·å¬¬ç´¬çˆªåŠé‡£é¶´äºä½Žåœåµå‰ƒè²žå‘ˆå ¤å®šå¸åº•åºå»·å¼Ÿæ‚ŒæŠµæŒºææ¢¯æ±€ç¢‡ç¦Žç¨‹ç· 艇訂諦蹄逓\"],[\"9340\",\"邸é„釘鼎泥摘擢敵滴的笛é©é‘溺哲徹撤è½è¿é‰„典填天展店添çºç”œè²¼è»¢é¡›ç‚¹ä¼æ®¿æ¾±ç”°é›»å…Žåå µå¡—å¦¬å± å¾’æ–—æœæ¸¡ç™»èŸè³é€”都éç ¥ç ºåŠªåº¦åœŸå¥´æ€’å€’å…šå†¬\"],[\"9380\",\"å‡åˆ€å”å¡”å¡˜å¥—å®•å³¶å¶‹æ‚¼æŠ•ææ±æ¡ƒæ¢¼æ£Ÿç›—æ·˜æ¹¯æ¶›ç¯ç‡ˆå½“痘祷ç‰ç”ç’糖統到董蕩藤討謄豆è¸é€ƒé€é™é™¶é 騰闘åƒå‹•åŒå ‚導憧撞洞瞳童胴è„é“éŠ…å³ é´‡åŒ¿å¾—å¾³æ¶œç‰¹ç£ç¦¿ç¯¤æ¯’ç‹¬èªæ ƒæ©¡å‡¸çªæ¤´å±Šé³¶è‹«å¯…酉瀞噸屯惇敦沌豚éé “å‘‘æ›‡éˆå¥ˆé‚£å†…ä¹å‡ªè–™è¬Žç˜æºé‹æ¥¢é¦´ç¸„ç•·å—æ¥ 軟難æ±äºŒå°¼å¼è¿©åŒ‚賑肉虹廿日乳入\"],[\"9440\",\"如尿韮任妊å¿èªæ¿¡ç¦°ç¥¢å¯§è‘±çŒ«ç†±å¹´å¿µæ»æ’šç‡ƒç²˜ä¹ƒå»¼ä¹‹åŸœå𢿂©æ¿ƒç´èƒ½è„³è†¿è¾²è¦—蚤巴把æ’è¦‡æ·æ³¢æ´¾ç¶ç ´å©†ç½µèŠé¦¬ä¿³å»ƒæ‹æŽ’æ•—æ¯ç›ƒç‰ŒèƒŒè‚ºè¼©é…å€åŸ¹åª’梅\"],[\"9480\",\"æ¥³ç…¤ç‹½è²·å£²è³ é™ªé€™è¿ç§¤çŸ§è©ä¼¯å‰¥å𿋿Ÿæ³Šç™½ç®”ç²•èˆ¶è–„è¿«æ›æ¼ 爆縛莫é§éº¦å‡½ç®±ç¡²ç®¸è‚‡çˆæ«¨å¹¡è‚Œç•‘ç• å…«é‰¢æºŒç™ºé†—é«ªä¼ç½°æŠœç閥鳩噺塙蛤隼伴判åŠåå›å¸†æ¬æ–‘æ¿æ°¾æ±Žç‰ˆçНçç•”ç¹èˆ¬è—©è²©ç¯„é‡†ç…©é ’é£¯æŒ½æ™©ç•ªç›¤ç£è•ƒè›®åŒªå‘å¦å¦ƒåº‡å½¼æ‚²æ‰‰æ‰¹æŠ«æ–比泌疲皮碑秘緋罷肥被誹費é¿éžé£›æ¨‹ç°¸å‚™å°¾å¾®æž‡æ¯˜çµçœ‰ç¾Ž\"],[\"9540\",\"鼻柊稗匹疋é«å½¦è†è±è‚˜å¼¼å¿…ç•¢ç†é€¼æ¡§å§«åª›ç´ç™¾è¬¬ä¿µå½ªæ¨™æ°·æ¼‚瓢票表評豹廟æç—…秒苗錨鋲蒜è›é°å“å½¬æ–Œæµœç€•è²§è³“é »æ•ç“¶ä¸ä»˜åŸ 夫婦富冨布府怖扶敷\"],[\"9580\",\"斧普浮父符è…膚芙èœè² 賦赴阜附侮撫æ¦èˆžè‘¡è•ªéƒ¨å°æ¥“風葺蕗ä¼å‰¯å¾©å¹…æœç¦è…¹è¤‡è¦†æ·µå¼—払沸ä»ç‰©é®’分å»å™´å¢³æ†¤æ‰®ç„šå¥®ç²‰ç³žç´›é›°æ–‡èžä¸™ä½µå…µå¡€å¹£å¹³å¼ŠæŸ„並蔽閉陛米é 僻å£ç™–碧別瞥蔑箆å変片篇編辺返é便勉娩å¼éžä¿èˆ—é‹ªåœƒæ•æ©ç”«è£œè¼”穂募墓慕戊暮æ¯ç°¿è©å€£ä¿¸åŒ…å‘†å ±å¥‰å®å³°å³¯å´©åº–æŠ±æ§æ”¾æ–¹æœ‹\"],[\"9640\",\"æ³•æ³¡çƒ¹ç ²ç¸«èƒžèŠ³èŒè“¬èœ‚褒訪豊邦鋒飽鳳鵬ä¹äº¡å‚剖åŠå¦¨å¸½å¿˜å¿™æˆ¿æš´æœ›æŸæ£’冒紡肪膨謀貌貿鉾防å é ¬åŒ—åƒ•åœå¢¨æ’²æœ´ç‰§ç¦ç©†é‡¦å‹ƒæ²¡æ®†å €å¹Œå¥”本翻凡盆\"],[\"9680\",\"摩磨é”麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒æ¡äº¦ä¿£åˆæŠ¹æœ«æ²«è¿„ä¾ç¹éº¿ä¸‡æ…¢æº€æ¼«è”“味未é…å·³ç®•å²¬å¯†èœœæ¹Šè“‘ç¨”è„ˆå¦™ç²æ°‘çœ å‹™å¤¢ç„¡ç‰ŸçŸ›éœ§éµ¡æ¤‹å©¿å¨˜å†¥åå‘½æ˜Žç›Ÿè¿·éŠ˜é³´å§ªç‰æ»…å…æ£‰ç¶¿ç·¬é¢éººæ‘¸æ¨¡èŒ‚å¦„åŸæ¯›çŒ›ç›²ç¶²è€—蒙儲木黙目æ¢å‹¿é¤…å°¤æˆ»ç±¾è²°å•æ‚¶ç´‹é–€åŒä¹Ÿå†¶å¤œçˆºè€¶é‡Žå¼¥çŸ¢åŽ„å½¹ç´„è–¬è¨³èºé–柳薮鑓愉愈油癒\"],[\"9740\",\"è«è¼¸å”¯ä½‘優勇å‹å®¥å¹½æ‚ æ†‚æ–æœ‰æŸšæ¹§æ¶ŒçŒ¶çŒ·ç”±ç¥è£•誘éŠé‚‘郵雄èžå¤•予余与誉輿é å‚å¹¼å¦–å®¹åº¸æšæºæ“曜楊様洋溶熔用窯羊耀葉蓉è¦è¬¡è¸Šé¥é™½é¤Šæ…¾æŠ‘欲\"],[\"9780\",\"沃浴翌翼淀羅螺裸æ¥èŽ±é ¼é›·æ´›çµ¡è½é…ªä¹±åµåµæ¬„æ¿«è—è˜è¦§åˆ©åå±¥æŽæ¢¨ç†ç’ƒç—¢è£è£¡é‡Œé›¢é™¸å¾‹çŽ‡ç«‹è‘ŽæŽ ç•¥åŠ‰æµæºœç‰ç•™ç¡«ç²’隆竜é¾ä¾¶æ…®æ—…è™œäº†äº®åƒšä¸¡å‡Œå¯®æ–™æ¢æ¶¼çŒŸç™‚çžç¨œç³§è‰¯è«’é¼é‡é™µé ˜åŠ›ç·‘å€«åŽ˜æž—æ·‹ç‡ç³è‡¨è¼ªéš£é±—éºŸç‘ å¡æ¶™ç´¯é¡žä»¤ä¼¶ä¾‹å†·åŠ±å¶ºæ€œçŽ²ç¤¼è‹“éˆ´éš·é›¶éœŠéº—é½¢æš¦æ´åˆ—åŠ£çƒˆè£‚å»‰æ‹æ†æ¼£ç…‰ç°¾ç·´è¯\"],[\"9840\",\"è“®é€£éŒ¬å‘‚é¯æ«“炉賂路露労å©å»Šå¼„朗楼榔浪æ¼ç‰¢ç‹¼ç¯è€è¾è‹éƒŽå…麓禄肋録論å€å’Œè©±æªè³„è„‡æƒ‘æž é·²äº™äº˜é°è©«è—蕨椀湾碗腕\"],[\"989f\",\"弌ä¸ä¸•个丱丶丼丿乂乖乘亂亅豫亊舒å¼äºŽäºžäºŸäº 亢亰亳亶从ä»ä»„仆仂仗仞ä»ä»Ÿä»·ä¼‰ä½šä¼°ä½›ä½ä½—佇佶侈ä¾ä¾˜ä½»ä½©ä½°ä¾‘佯來侖儘俔俟俎俘俛俑俚ä¿ä¿¤ä¿¥å€šå€¨å€”倪倥倅伜俶倡倩倬俾俯們倆åƒå‡æœƒå•ååˆåšå–å¬å¸å‚€å‚šå‚…傴傲\"],[\"9940\",\"僉僊傳僂僖僞僥åƒåƒ£åƒ®åƒ¹åƒµå„‰å„儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉å†å†‘å†“å†•å†–å†¤å†¦å†¢å†©å†ªå†«å†³å†±å†²å†°å†µå†½å‡…å‡‰å‡›å‡ è™•å‡©å‡\"],[\"9980\",\"凰凵凾刄刋刔刎刧刪刮刳刹å‰å‰„剋剌剞剔剪剴剩剳剿剽åŠåŠ”åŠ’å‰±åŠˆåŠ‘è¾¨è¾§åŠ¬åŠåŠ¼åŠµå‹å‹å‹—勞勣勦é£å‹ 勳勵勸勹匆匈甸åŒåŒåŒåŒ•匚匣匯匱匳匸å€å†å…丗å‰å凖åžå©å®å¤˜å»å·åŽ‚åŽ–åŽ åŽ¦åŽ¥åŽ®åŽ°åŽ¶åƒç°’é›™åŸæ›¼ç‡®å®å¨ååºåå½å‘€å¬åå¼å®å¶å©å呎å’呵咎呟呱呷呰咒呻咀呶咄å’咆哇咢咸咥咬哄哈咨\"],[\"9a40\",\"咫哂咤咾咼哘哥哦å”唔哽哮å“哺哢唹啀啣啌售啜啅啖啗唸唳å•喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎å™ç‡Ÿå˜´å˜¶å˜²å˜¸\"],[\"9a80\",\"å™«å™¤å˜¯å™¬å™ªåš†åš€åšŠåš åš”åšåš¥åš®åš¶åš´å›‚åš¼å›å›ƒå›€å›ˆå›Žå›‘囓囗囮囹圀囿圄圉圈國åœåœ“團圖嗇圜圦圷圸åŽåœ»å€åå©åŸ€åžˆå¡å¿åž‰åž“åž åž³åž¤åžªåž°åŸƒåŸ†åŸ”åŸ’åŸ“å ŠåŸ–åŸ£å ‹å ™å å¡²å ¡å¡¢å¡‹å¡°æ¯€å¡’å ½å¡¹å¢…å¢¹å¢Ÿå¢«å¢ºå£žå¢»å¢¸å¢®å£…å£“å£‘å£—å£™å£˜å£¥å£œå£¤å£Ÿå£¯å£ºå£¹å£»å£¼å£½å¤‚å¤Šå¤å¤›æ¢¦å¤¥å¤¬å¤å¤²å¤¸å¤¾ç«’奕å¥å¥Žå¥šå¥˜å¥¢å¥ 奧奬奩\"],[\"9b40\",\"奸å¦å¦ä½žä¾«å¦£å¦²å§†å§¨å§œå¦å§™å§šå¨¥å¨Ÿå¨‘娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲å«å¬ªå¬¶å¬¾åƒå…å€å‘å•åšå›å¥å©å°å³åµå¸æ–ˆåºå®€\"],[\"9b80\",\"它宦宸寃寇寉寔å¯å¯¤å¯¦å¯¢å¯žå¯¥å¯«å¯°å¯¶å¯³å°…將專å°å°“å° å°¢å°¨å°¸å°¹å±å±†å±Žå±“å±å±å±å±¬å±®ä¹¢å±¶å±¹å²Œå²‘岔妛岫岻岶岼岷峅岾峇峙峩峽峺å³å¶Œå³ªå´‹å´•崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢å¶å¶¬å¶®å¶½å¶å¶·å¶¼å·‰å·å·“å·’å·–å·›å·«å·²å·µå¸‹å¸šå¸™å¸‘å¸›å¸¶å¸·å¹„å¹ƒå¹€å¹Žå¹—å¹”å¹Ÿå¹¢å¹¤å¹‡å¹µå¹¶å¹ºéº¼å¹¿åº å»å»‚廈å»å»\"],[\"9c40\",\"廖廣å»å»šå»›å»¢å»¡å»¨å»©å»¬å»±å»³å»°å»´å»¸å»¾å¼ƒå¼‰å½å½œå¼‹å¼‘弖弩å¼å¼¸å½å½ˆå½Œå½Žå¼¯å½‘彖彗彙彡å½å½³å½·å¾ƒå¾‚å½¿å¾Šå¾ˆå¾‘å¾‡å¾žå¾™å¾˜å¾ å¾¨å¾å¾¼å¿–å¿»å¿¤å¿¸å¿±å¿æ‚³å¿¿æ€¡æ \"],[\"9c80\",\"æ€™æ€æ€©æ€Žæ€±æ€›æ€•æ€«æ€¦æ€æ€ºæšææªæ·æŸæŠæ†ææ£æƒæ¤æ‚æ¬æ«æ™æ‚æ‚æƒ§æ‚ƒæ‚šæ‚„æ‚›æ‚–æ‚—æ‚’æ‚§æ‚‹æƒ¡æ‚¸æƒ æƒ“æ‚´å¿°æ‚½æƒ†æ‚µæƒ˜æ…æ„•æ„†æƒ¶æƒ·æ„€æƒ´æƒºæ„ƒæ„¡æƒ»æƒ±æ„æ„Žæ…‡æ„¾æ„¨æ„§æ…Šæ„¿æ„¼æ„¬æ„´æ„½æ…‚æ…„æ…³æ…·æ…˜æ…™æ…šæ…«æ…´æ…¯æ…¥æ…±æ…Ÿæ…æ…“æ…µæ†™æ†–æ†‡æ†¬æ†”æ†šæ†Šæ†‘æ†«æ†®æ‡Œæ‡Šæ‡‰æ‡·æ‡ˆæ‡ƒæ‡†æ†ºæ‡‹ç½¹æ‡æ‡¦æ‡£æ‡¶æ‡ºæ‡´æ‡¿æ‡½æ‡¼æ‡¾æˆ€æˆˆæˆ‰æˆæˆŒæˆ”戛\"],[\"9d40\",\"æˆžæˆ¡æˆªæˆ®æˆ°æˆ²æˆ³æ‰æ‰Žæ‰žæ‰£æ‰›æ‰ æ‰¨æ‰¼æŠ‚æŠ‰æ‰¾æŠ’æŠ“æŠ–æ‹”æŠƒæŠ”æ‹—æ‹‘æŠ»æ‹æ‹¿æ‹†æ“”æ‹ˆæ‹œæ‹Œæ‹Šæ‹‚æ‹‡æŠ›æ‹‰æŒŒæ‹®æ‹±æŒ§æŒ‚æŒˆæ‹¯æ‹µææŒ¾ææœææŽ–æŽŽæŽ€æŽ«æ¶æŽ£æŽæŽ‰æŽŸæŽµæ«\"],[\"9d80\",\"æ©æŽ¾æ©æ€æ†æ£æ‰æ’æ¶æ„æ–æ´æ†æ“æ¦æ¶æ”æ—æ¨ææ‘§æ‘¯æ‘¶æ‘Žæ”ªæ’•æ’“æ’¥æ’©æ’ˆæ’¼æ“šæ“’æ“…æ“‡æ’»æ“˜æ“‚æ“±æ“§èˆ‰æ“ æ“¡æŠ¬æ“£æ“¯æ”¬æ“¶æ“´æ“²æ“ºæ”€æ“½æ”˜æ”œæ”…æ”¤æ”£æ”«æ”´æ”µæ”·æ”¶æ”¸ç•‹æ•ˆæ•–æ••æ•æ•˜æ•žæ•æ•²æ•¸æ–‚æ–ƒè®Šæ–›æ–Ÿæ–«æ–·æ—ƒæ—†æ—æ—„æ—Œæ—’æ—›æ—™æ— æ—¡æ—±æ²æ˜Šæ˜ƒæ—»æ³æ˜µæ˜¶æ˜´æ˜œæ™æ™„æ™‰æ™æ™žæ™æ™¤æ™§æ™¨æ™Ÿæ™¢æ™°æšƒæšˆæšŽæš‰æš„æš˜æšæ›æš¹æ›‰æš¾æš¼\"],[\"9e40\",\"æ›„æš¸æ›–æ›šæ› æ˜¿æ›¦æ›©æ›°æ›µæ›·æœæœ–æœžæœ¦æœ§éœ¸æœ®æœ¿æœ¶ææœ¸æœ·æ†æžæ æ™æ£æ¤æž‰æ°æž©æ¼æªæžŒæž‹æž¦æž¡æž…æž·æŸ¯æž´æŸ¬æž³æŸ©æž¸æŸ¤æŸžæŸæŸ¢æŸ®æž¹æŸŽæŸ†æŸ§æªœæ žæ¡†æ ©æ¡€æ¡æ ²æ¡Ž\"],[\"9e80\",\"æ¢³æ «æ¡™æ¡£æ¡·æ¡¿æ¢Ÿæ¢æ¢æ¢”æ¢æ¢›æ¢ƒæª®æ¢¹æ¡´æ¢µæ¢ æ¢ºæ¤æ¢æ¡¾æ¤æ£Šæ¤ˆæ£˜æ¤¢æ¤¦æ£¡æ¤Œæ£æ£”æ£§æ£•æ¤¶æ¤’æ¤„æ£—æ££æ¤¥æ£¹æ£ æ£¯æ¤¨æ¤ªæ¤šæ¤£æ¤¡æ£†æ¥¹æ¥·æ¥œæ¥¸æ¥«æ¥”æ¥¾æ¥®æ¤¹æ¥´æ¤½æ¥™æ¤°æ¥¡æ¥žæ¥æ¦æ¥ªæ¦²æ¦®æ§æ¦¿æ§æ§“æ¦¾æ§Žå¯¨æ§Šæ§æ¦»æ§ƒæ¦§æ¨®æ¦‘æ¦ æ¦œæ¦•æ¦´æ§žæ§¨æ¨‚æ¨›æ§¿æ¬Šæ§¹æ§²æ§§æ¨…æ¦±æ¨žæ§æ¨”æ§«æ¨Šæ¨’æ«æ¨£æ¨“æ©„æ¨Œæ©²æ¨¶æ©¸æ©‡æ©¢æ©™æ©¦æ©ˆæ¨¸æ¨¢æªæªæª 檄檢檣\"],[\"9f40\",\"æª—è˜—æª»æ«ƒæ«‚æª¸æª³æª¬æ«žæ«‘æ«Ÿæªªæ«šæ«ªæ«»æ¬…è˜–æ«ºæ¬’æ¬–é¬±æ¬Ÿæ¬¸æ¬·ç›œæ¬¹é£®æ‡æƒæ‰ææ™æ”æ›æŸæ¡æ¸æ¹æ¿æ®€æ®„æ®ƒæ®æ®˜æ®•殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯\"],[\"9f80\",\"éº¾æ°ˆæ°“æ°”æ°›æ°¤æ°£æ±žæ±•æ±¢æ±ªæ²‚æ²æ²šæ²æ²›æ±¾æ±¨æ±³æ²’æ²æ³„æ³±æ³“æ²½æ³—æ³…æ³æ²®æ²±æ²¾æ²ºæ³›æ³¯æ³™æ³ªæ´Ÿè¡æ´¶æ´«æ´½æ´¸æ´™æ´µæ´³æ´’æ´Œæµ£æ¶“æµ¤æµšæµ¹æµ™æ¶Žæ¶•æ¿¤æ¶…æ·¹æ¸•æ¸Šæ¶µæ·‡æ·¦æ¶¸æ·†æ·¬æ·žæ·Œæ·¨æ·’æ·…æ·ºæ·™æ·¤æ·•æ·ªæ·®æ¸æ¹®æ¸®æ¸™æ¹²æ¹Ÿæ¸¾æ¸£æ¹«æ¸«æ¹¶æ¹æ¸Ÿæ¹ƒæ¸ºæ¹Žæ¸¤æ»¿æ¸æ¸¸æº‚æºªæº˜æ»‰æº·æ»“æº½æº¯æ»„æº²æ»”æ»•æºæº¥æ»‚æºŸæ½æ¼‘çŒæ»¬æ»¸æ»¾æ¼¿æ»²æ¼±æ»¯æ¼²æ»Œ\"],[\"e040\",\"æ¼¾æ¼“æ»·æ¾†æ½ºæ½¸æ¾æ¾€æ½¯æ½›æ¿³æ½æ¾‚潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑ç€ç€æ¿¾ç€›ç€šæ½´ç€ç€˜ç€Ÿç€°ç€¾ç€²ç‘ç£ç‚™ç‚’炯烱炬炸炳炮烟烋çƒ\"],[\"e080\",\"烙焉烽焜焙煥煕熈煦煢煌煖煬ç†ç‡»ç†„ç†•ç†¨ç†¬ç‡—ç†¹ç†¾ç‡’ç‡‰ç‡”ç‡Žç‡ ç‡¬ç‡§ç‡µç‡¼ç‡¹ç‡¿çˆçˆçˆ›çˆ¨çˆçˆ¬çˆ°çˆ²çˆ»çˆ¼çˆ¿ç‰€ç‰†ç‰‹ç‰˜ç‰´ç‰¾çŠ‚çŠçŠ‡çŠ’çŠ–çŠ¢çŠ§çŠ¹çŠ²ç‹ƒç‹†ç‹„ç‹Žç‹’ç‹¢ç‹ ç‹¡ç‹¹ç‹·å€çŒ—猊猜猖çŒçŒ´çŒ¯çŒ©çŒ¥çŒ¾çŽç默ç—çªç¨ç°ç¸çµç»çºçˆç޳çŽçŽ»ç€ç¥ç®çžç’¢ç…瑯ç¥ç¸ç²çºç‘•ç¿ç‘Ÿç‘™ç‘瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊ç“ç“”ç±\"],[\"e140\",\"ç“ ç“£ç“§ç“©ç“®ç“²ç“°ç“±ç“¸ç“·ç”„ç”ƒç”…ç”Œç”Žç”甕甓甞甦甬甼畄ç•畊畉畛畆畚畩畤畧畫ç•畸當疆疇畴疊疉疂疔疚ç–疥疣痂疳痃疵疽疸疼疱ç—痊痒痙痣痞痾痿\"],[\"e180\",\"ç—¼ç˜ç—°ç—ºç—²ç—³ç˜‹ç˜ç˜‰ç˜Ÿç˜§ç˜ 瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂ç›ç›–盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸ç‡çšç¨ç«ç›ç¥ç¿ç¾ç¹çžŽçž‹çž‘çž çžžçž°çž¶çž¹çž¿çž¼çž½çž»çŸ‡çŸçŸ—çŸšçŸœçŸ£çŸ®çŸ¼ç Œç ’ç¤¦ç 礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬\"],[\"e240\",\"ç£§ç£šç£½ç£´ç¤‡ç¤’ç¤‘ç¤™ç¤¬ç¤«ç¥€ç¥ ç¥—ç¥Ÿç¥šç¥•ç¥“ç¥ºç¥¿ç¦Šç¦ç¦§é½‹ç¦ªç¦®ç¦³ç¦¹ç¦ºç§‰ç§•秧秬秡秣稈ç¨ç¨˜ç¨™ç¨ 稟禀稱稻稾稷穃穗穉穡穢穩é¾ç©°ç©¹ç©½çªˆçª—窕窘窖窩竈窰\"],[\"e280\",\"窶竅竄窿邃竇竊ç«ç«ç«•竓站竚ç«ç«¡ç«¢ç«¦ç«ç«°ç¬‚ç¬ç¬Šç¬†ç¬³ç¬˜ç¬™ç¬žç¬µç¬¨ç¬¶ççºç¬„ç笋çŒç…çµç¥ç´ç§ç°ç±ç¬ç®ç®ç®˜ç®Ÿç®ç®œç®šç®‹ç®’ç®ç箙篋ç¯ç¯Œç¯ç®´ç¯†ç¯ç¯©ç°‘ç°”ç¯¦ç¯¥ç± ç°€ç°‡ç°“ç¯³ç¯·ç°—ç°ç¯¶ç°£ç°§ç°ªç°Ÿç°·ç°«ç°½ç±Œç±ƒç±”ç±ç±€ç±ç±˜ç±Ÿç±¤ç±–籥籬籵粃ç²ç²¤ç²ç²¢ç²«ç²¡ç²¨ç²³ç²²ç²±ç²®ç²¹ç²½ç³€ç³…糂糘糒糜糢鬻糯糲糴糶糺紆\"],[\"e340\",\"紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮çµçµ£ç¶“綉絛ç¶çµ½ç¶›ç¶ºç¶®ç¶£ç¶µç·‡ç¶½ç¶«ç¸½ç¶¢ç¶¯ç·œç¶¸ç¶Ÿç¶°ç·˜ç·ç·¤ç·žç·»ç·²ç·¡ç¸…縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷\"],[\"e380\",\"縲縺繧ç¹ç¹–繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒çºçº“纔纖纎纛纜缸缺罅罌ç½ç½Žç½ç½‘ç½•ç½”ç½˜ç½Ÿç½ ç½¨ç½©ç½§ç½¸ç¾‚ç¾†ç¾ƒç¾ˆç¾‡ç¾Œç¾”ç¾žç¾ç¾šç¾£ç¾¯ç¾²ç¾¹ç¾®ç¾¶ç¾¸è±ç¿…翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻èŠè†è’è˜èšèŸè¢è¨è³è²è°è¶è¹è½è¿è‚„肆肅肛肓肚è‚å†è‚¬èƒ›èƒ¥èƒ™èƒèƒ„胚胖脉胯胱脛脩脣脯腋\"],[\"e440\",\"éš‹è…†è„¾è…“è…‘èƒ¼è…±è…®è…¥è…¦è…´è†ƒè†ˆè†Šè†€è†‚è† è†•è†¤è†£è…Ÿè†“è†©è†°è†µè†¾è†¸è†½è‡€è‡‚è†ºè‡‰è‡è‡‘è‡™è‡˜è‡ˆè‡šè‡Ÿè‡ è‡§è‡ºè‡»è‡¾èˆèˆ‚舅與舊èˆèˆèˆ–舩舫舸舳艀艙艘è‰è‰šè‰Ÿè‰¤\"],[\"e480\",\"艢艨艪艫舮艱艷艸艾èŠèŠ’èŠ«èŠŸèŠ»èŠ¬è‹¡è‹£è‹Ÿè‹’è‹´è‹³è‹ºèŽ“èŒƒè‹»è‹¹è‹žèŒ†è‹œèŒ‰è‹™èŒµèŒ´èŒ–èŒ²èŒ±è€èŒ¹èè…茯茫茗茘莅莚莪莟莢莖茣莎莇莊è¼è޵è³èµèŽ èŽ‰èŽ¨è´è“è«èŽè½èƒè˜è‹èè·è‡è è²èè¢è 莽è¸è”†è»è‘èªè¼è•šè’„è‘·è‘«è’葮蒂葩葆è¬è‘¯è‘¹èµè“Šè‘¢è’¹è’¿è’Ÿè“™è“蒻蓚è“è“蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈\"],[\"e540\",\"è•蘂蕋蕕薀薤薈薑薊薨è•薔薛藪薇薜蕷蕾è–藉薺è—è–¹è—è—•è—藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿è™ä¹•è™”è™Ÿè™§è™±èš“èš£èš©èšªèš‹èšŒèš¶èš¯è›„è›†èš°è›‰è £èš«è›”è›žè›©è›¬\"],[\"e580\",\"蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉èœè›¹èœŠèœ´èœ¿èœ·èœ»èœ¥èœ©èœšè èŸè¸èŒèŽè´è—è¨è®è™è“è£èªè …螢螟螂螯蟋螽蟀èŸé›–èž«èŸ„èž³èŸ‡èŸ†èž»èŸ¯èŸ²èŸ è è èŸ¾èŸ¶èŸ·è ŽèŸ’è ‘è –è •è ¢è ¡è ±è ¶è ¹è §è »è¡„è¡‚è¡’è¡™è¡žè¡¢è¡«è¢è¡¾è¢žè¡µè¡½è¢µè¡²è¢‚袗袒袮袙袢è¢è¢¤è¢°è¢¿è¢±è£ƒè£„裔裘裙è£è£¹è¤‚裼裴裨裲褄褌褊褓襃褞褥褪褫è¥è¥„褻褶褸襌è¤è¥ 襞\"],[\"e640\",\"襦襤è¥è¥ªè¥¯è¥´è¥·è¥¾è¦ƒè¦ˆè¦Šè¦“覘覡覩覦覬覯覲覺覽覿觀觚觜è§è§§è§´è§¸è¨ƒè¨–è¨è¨Œè¨›è¨è¨¥è¨¶è©è©›è©’詆詈詼è©è©¬è©¢èª…誂誄誨誡誑誥誦誚誣諄è«è«‚諚諫諳諧\"],[\"e680\",\"è«¤è«±è¬”è« è«¢è«·è«žè«›è¬Œè¬‡è¬šè«¡è¬–è¬è¬—è¬ è¬³éž«è¬¦è¬«è¬¾è¬¨èèŒèèŽè‰è–è›èšè«èŸè¬è¯è´è½è®€è®Œè®Žè®’讓讖讙讚谺è±è°¿è±ˆè±Œè±Žè±è±•豢豬豸豺貂貉貅貊è²è²Žè²”豼貘æˆè²è²ªè²½è²²è²³è²®è²¶è³ˆè³è³¤è³£è³šè³½è³ºè³»è´„è´…è´Šè´‡è´è´è´é½Žè´“è³è´”è´–èµ§èµèµ±èµ³è¶è¶™è·‚趾趺è·è·šè·–跌跛跋跪跫跟跣跼踈踉跿è¸è¸žè¸è¸Ÿè¹‚踵踰踴蹊\"],[\"e740\",\"蹇蹉蹌è¹è¹ˆè¹™è¹¤è¹ 踪蹣蹕蹶蹲蹼èºèº‡èº…躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜\"],[\"e780\",\"轢轣轤辜辟辣è¾è¾¯è¾·è¿šè¿¥è¿¢è¿ªè¿¯é‚‡è¿´é€…迹迺逑逕逡é€é€žé€–逋逧逶逵逹迸ééé‘é’逎é‰é€¾é–é˜éžé¨é¯é¶éš¨é²é‚‚é½é‚邀邊邉é‚邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀é‡é‡‰é‡‹é‡é‡–釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋é‰éŠœéŠ–éŠ“éŠ›é‰šé‹éŠ¹éŠ·é‹©éŒé‹ºé„錮\"],[\"e840\",\"錙錢錚錣錺錵錻éœé é¼é®é–鎰鎬éŽéŽ”éŽ¹é–é—é¨é¥é˜éƒéééˆé¤éšé”é“éƒé‡éé¶é«éµé¡éºé‘é‘’é‘„é‘›é‘ é‘¢é‘žé‘ªéˆ©é‘°é‘µé‘·é‘½é‘šé‘¼é‘¾é’鑿閂閇閊閔閖閘閙\"],[\"e880\",\"é– é–¨é–§é–閼閻閹閾闊濶闃é—闌闕闔闖關闡闥闢阡阨阮阯陂陌é™é™‹é™·é™œé™žé™é™Ÿé™¦é™²é™¬éšéš˜éš•隗險隧隱隲隰隴隶隸隹雎雋雉é›è¥é›œéœé›•雹霄霆霈霓霎霑éœéœ–霙霤霪霰霹霽霾é„é†éˆé‚é‰éœé é¤é¦é¨å‹’é«é±é¹éž…é¼éžéºéž†éž‹éžéžéžœéž¨éž¦éž£éž³éž´éŸƒéŸ†éŸˆéŸ‹éŸœéŸé½éŸ²ç«ŸéŸ¶éŸµé é Œé ¸é ¤é ¡é ·é ½é¡†é¡é¡‹é¡«é¡¯é¡°\"],[\"e940\",\"顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡é¤é¤žé¤¤é¤ 餬餮餽餾饂饉饅é¥é¥‹é¥‘饒饌饕馗馘馥é¦é¦®é¦¼é§Ÿé§›é§é§˜é§‘é§é§®é§±é§²é§»é§¸é¨é¨é¨…駢騙騫騷驅驂驀驃\"],[\"e980\",\"騾驕é©é©›é©—驟驢驥驤驩驫驪éªéª°éª¼é«€é«é«‘髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲é„éƒéééŽé‘é˜é´é®“é®ƒé®‘é®–é®—é®Ÿé® é®¨é®´é¯€é¯Šé®¹é¯†é¯é¯‘é¯’é¯£é¯¢é¯¤é¯”é¯¡é°ºé¯²é¯±é¯°é°•é°”é°‰é°“é°Œé°†é°ˆé°’é°Šé°„é°®é°›é°¥é°¤é°¡é°°é±‡é°²é±†é°¾é±šé± é±§é±¶é±¸é³§é³¬é³°é´‰é´ˆé³«é´ƒé´†é´ªé´¦é¶¯é´£é´Ÿéµ„é´•é´’éµé´¿é´¾éµ†éµˆ\"],[\"ea40\",\"éµéµžéµ¤éµ‘éµéµ™éµ²é¶‰é¶‡é¶«éµ¯éµºé¶šé¶¤é¶©é¶²é·„é·é¶»é¶¸é¶ºé·†é·é·‚鷙鷓鷸鷦é·é·¯é·½é¸šé¸›é¸žé¹µé¹¹é¹½éºéºˆéº‹éºŒéº’麕麑éºéº¥éº©éº¸éºªéºé¡é»Œé»Žé»é»é»”黜點é»é» 黥黨黯\"],[\"ea80\",\"é»´é»¶é»·é»¹é»»é»¼é»½é¼‡é¼ˆçš·é¼•é¼¡é¼¬é¼¾é½Šé½’é½”é½£é½Ÿé½ é½¡é½¦é½§é½¬é½ªé½·é½²é½¶é¾•é¾œé¾ å ¯æ§‡é™ç‘¤å‡œç†™\"],[\"ed40\",\"纊褜éˆéŠˆè“œä¿‰ç‚»æ˜±æ£ˆé‹¹æ›»å½…ä¸¨ä»¡ä»¼ä¼€ä¼ƒä¼¹ä½–ä¾’ä¾Šä¾šä¾”ä¿å€å€¢ä¿¿å€žå†å°å‚傔僴僘兊兤å†å†¾å‡¬åˆ•劜劦勀勛匀匇匤å²åŽ“åŽ²å﨎咜咊咩哿喆å™å¥åž¬åŸˆåŸ‡ï¨\"],[\"ed80\",\"ï¨å¢žå¢²å¤‹å¥“奛å¥å¥£å¦¤å¦ºå–寀甯寘寬尞岦岺峵崧嵓﨑嵂åµå¶¸å¶¹å·å¼¡å¼´å½§å¾·å¿žææ‚…æ‚Šæƒžæƒ•æ„ æƒ²æ„‘æ„·æ„°æ†˜æˆ“æŠ¦æµæ‘ æ’æ“Žæ•Žæ˜€æ˜•æ˜»æ˜‰æ˜®æ˜žæ˜¤æ™¥æ™—æ™™ï¨’æ™³æš™æš æš²æš¿æ›ºæœŽï¤©æ¦æž»æ¡’æŸ€æ æ¡„æ£ï¨“æ¥¨ï¨”æ¦˜æ§¢æ¨°æ©«æ©†æ©³æ©¾æ«¢æ«¤æ¯–æ°¿æ±œæ²†æ±¯æ³šæ´„æ¶‡æµ¯æ¶–æ¶¬æ·æ·¸æ·²æ·¼æ¸¹æ¹œæ¸§æ¸¼æº¿æ¾ˆæ¾µæ¿µç€…瀇瀨炅炫ç„焄煜煆煇凞ç‡ç‡¾çб\"],[\"ee40\",\"犾猤猪ç·ç޽ç‰ç–ç£ç’ç‡çµç¦çªç©ç®ç‘¢ç’‰ç’Ÿç”畯皂皜皞皛皦益ç†åŠ¯ç ¡ç¡Žç¡¤ç¡ºç¤°ï¨˜ï¨™ï¨šç¦”ï¨›ç¦›ç«‘ç«§ï¨œç««ç®žï¨çµˆçµœç¶·ç¶ 緖繒罇羡羽èŒè¢è¿è‡è¶è‘ˆè’´è•“è•™\"],[\"ee80\",\"è•«ï¨Ÿè–°ï¨ ï¨¡è ‡è£µè¨’è¨·è©¹èª§èª¾è«Ÿï¨¢è«¶è“è¿è³°è³´è´’赶﨣è»ï¨¤ï¨¥é§éƒžï¨¦é„•鄧釚釗釞é‡é‡®é‡¤é‡¥éˆ†éˆéˆŠéˆºé‰€éˆ¼é‰Žé‰™é‰‘鈹鉧銧鉷鉸鋧鋗鋙é‹ï¨§é‹•é‹ é‹“éŒ¥éŒ¡é‹»ï¨¨éŒžé‹¿éŒéŒ‚é°é—鎤é†éžé¸é±é‘…鑈閒隆﨩éšéš¯éœ³éœ»éƒééé‘é•顗顥飯飼餧館馞驎髙髜éµé²é®é®±é®»é°€éµ°éµ«ï¨é¸™é»‘\"],[\"eeef\",\"â…°\",9,\"¬¦'"\"],[\"f040\",\"\",62],[\"f080\",\"\",124],[\"f140\",\"\",62],[\"f180\",\"\",124],[\"f240\",\"î…¸\",62],[\"f280\",\"\",124],[\"f340\",\"\",62],[\"f380\",\"\",124],[\"f440\",\"î‹°\",62],[\"f480\",\"\",124],[\"f540\",\"\",62],[\"f580\",\"î«\",124],[\"f640\",\"\",62],[\"f680\",\"î’§\",124],[\"f740\",\"\",62],[\"f780\",\"î•£\",124],[\"f840\",\"î— \",62],[\"f880\",\"\",124],[\"f940\",\"îšœ\"],[\"fa40\",\"â…°\",9,\"â… \",9,\"¬¦'"㈱№℡∵纊褜éˆéŠˆè“œä¿‰ç‚»æ˜±æ£ˆé‹¹æ›»å½…ä¸¨ä»¡ä»¼ä¼€ä¼ƒä¼¹ä½–ä¾’ä¾Šä¾šä¾”ä¿å€å€¢ä¿¿å€žå†å°å‚傔僴僘兊\"],[\"fa80\",\"å…¤å†å†¾å‡¬åˆ•劜劦勀勛匀匇匤å²åŽ“åŽ²å﨎咜咊咩哿喆å™å¥åž¬åŸˆåŸ‡ï¨ï¨å¢žå¢²å¤‹å¥“奛å¥å¥£å¦¤å¦ºå–寀甯寘寬尞岦岺峵崧嵓﨑嵂åµå¶¸å¶¹å·å¼¡å¼´å½§å¾·å¿žææ‚…æ‚Šæƒžæƒ•æ„ æƒ²æ„‘æ„·æ„°æ†˜æˆ“æŠ¦æµæ‘ æ’æ“Žæ•Žæ˜€æ˜•æ˜»æ˜‰æ˜®æ˜žæ˜¤æ™¥æ™—æ™™ï¨’æ™³æš™æš æš²æš¿æ›ºæœŽï¤©æ¦æž»æ¡’æŸ€æ æ¡„æ£ï¨“楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯\"],[\"fb40\",\"æ¶–æ¶¬æ·æ·¸æ·²æ·¼æ¸¹æ¹œæ¸§æ¸¼æº¿æ¾ˆæ¾µæ¿µç€…瀇瀨炅炫ç„焄煜煆煇凞ç‡ç‡¾çŠ±çŠ¾çŒ¤ï¨–ç·ç޽ç‰ç–ç£ç’ç‡çµç¦çªç©ç®ç‘¢ç’‰ç’Ÿç”畯皂皜皞皛皦益ç†åŠ¯ç ¡ç¡Žç¡¤ç¡ºç¤°ï¨˜ï¨™\"],[\"fb80\",\"祥禔福禛竑竧靖竫箞ï¨çµˆçµœç¶·ç¶ 緖繒罇羡羽èŒè¢è¿è‡è¶è‘ˆè’´è•“è•™è•«ï¨Ÿè–°ï¨ ï¨¡è ‡è£µè¨’è¨·è©¹èª§èª¾è«Ÿï¨¢è«¶è“è¿è³°è³´è´’赶﨣è»ï¨¤ï¨¥é§éƒžï¨¦é„•鄧釚釗釞é‡é‡®é‡¤é‡¥éˆ†éˆéˆŠéˆºé‰€éˆ¼é‰Žé‰™é‰‘鈹鉧銧鉷鉸鋧鋗鋙é‹ï¨§é‹•é‹ é‹“éŒ¥éŒ¡é‹»ï¨¨éŒžé‹¿éŒéŒ‚é°é—鎤é†éžé¸é±é‘…鑈閒隆﨩éšéš¯éœ³éœ»éƒééé‘é•顗顥飯飼餧館馞驎髙\"],[\"fc40\",\"髜éµé²é®é®±é®»é°€éµ°éµ«ï¨é¸™é»‘\"]]"); /***/ }), -/* 875 */ +/* 883 */ /***/ (function(module) { module.exports = JSON.parse("[[\"0\",\"\\u0000\",127],[\"8ea1\",\"。\",62],[\"a1a1\",\" ã€ã€‚,.・:;?ï¼ã‚›ã‚œÂ´ï½€Â¨ï¼¾ï¿£ï¼¿ãƒ½ãƒ¾ã‚ゞ〃ä»ã€…〆〇ー―â€ï¼ï¼¼ï½žâˆ¥ï½œâ€¦â€¥â€˜â€™â€œâ€ï¼ˆï¼‰ã€”〕[]{ï½ã€ˆ\",9,\"+ï¼Â±Ã—÷ï¼â‰ ï¼œï¼žâ‰¦â‰§âˆžâˆ´â™‚â™€Â°â€²â€³â„ƒï¿¥ï¼„ï¿ ï¿¡ï¼…ï¼ƒï¼†ï¼Šï¼ Â§â˜†â˜…â—‹â—â—Žâ—‡\"],[\"a2a1\",\"◆□■△▲▽▼※〒→â†â†‘↓〓\"],[\"a2ba\",\"∈∋⊆⊇⊂⊃∪∩\"],[\"a2ca\",\"∧∨¬⇒⇔∀∃\"],[\"a2dc\",\"∠⊥⌒∂∇≡≒≪≫√∽âˆâˆµâˆ«âˆ¬\"],[\"a2f2\",\"ʼn♯â™â™ªâ€ ‡¶\"],[\"a2fe\",\"â—¯\"],[\"a3b0\",\"ï¼\",9],[\"a3c1\",\"A\",25],[\"a3e1\",\"ï½\",25],[\"a4a1\",\"ã\",82],[\"a5a1\",\"ã‚¡\",85],[\"a6a1\",\"Α\",16,\"Σ\",6],[\"a6c1\",\"α\",16,\"σ\",6],[\"a7a1\",\"Ð\",5,\"ÐЖ\",25],[\"a7d1\",\"а\",5,\"ёж\",25],[\"a8a1\",\"─│┌â”┘└├┬┤┴┼â”┃â”┓┛┗┣┳┫┻╋┠┯┨┷┿â”┰┥┸╂\"],[\"ada1\",\"â‘ \",19,\"â… \",9],[\"adc0\",\"ã‰ãŒ”㌢ã㌘㌧㌃㌶ã‘ã—ãŒãŒ¦ãŒ£ãŒ«ãŠãŒ»ãŽœãŽãŽžãŽŽãŽã„㎡\"],[\"addf\",\"ã»ã€ã€Ÿâ„–ã℡㊤\",4,\"㈱㈲㈹ã¾ã½ã¼â‰’≡∫∮∑√⊥∠∟⊿∵∩∪\"],[\"b0a1\",\"äºœå”–å¨ƒé˜¿å“€æ„›æŒ¨å§¶é€¢è‘µèŒœç©æ‚ªæ¡æ¸¥æ—葦芦鯵梓圧斡扱宛å§è™»é£´çµ¢ç¶¾é®Žæˆ–ç²Ÿè¢·å®‰åºµæŒ‰æš—æ¡ˆé—‡éžæä»¥ä¼Šä½ä¾å‰å›²å¤·å§”å¨å°‰æƒŸæ„慰易椅為ç•ç•°ç§»ç¶ç·¯èƒƒèŽè¡£è¬‚é•éºåŒ»äº•亥域育éƒç£¯ä¸€å£±æº¢é€¸ç¨²èŒ¨èЋ鰝å…å°å’½å“¡å› 姻引飲淫胤è”\"],[\"b1a1\",\"é™¢é™°éš éŸ»å‹å³å®‡çƒç¾½è¿‚雨å¯éµœçªºä¸‘碓臼渦嘘唄æ¬è”šé°»å§¥åŽ©æµ¦ç“œé–噂云é‹é›²è餌å¡å–¶å¬°å½±æ˜ æ›³æ „æ°¸æ³³æ´©ç‘›ç›ˆç©Žé ´è‹±è¡›è© é‹æ¶²ç–«ç›Šé§…悦è¬è¶Šé–²æ¦ŽåŽå††åœ’å °å¥„å®´å»¶æ€¨æŽ©æ´æ²¿æ¼”炎焔煙燕猿ç¸è‰¶è‹‘è–—é 鉛鴛塩於汚甥凹央奥往応\"],[\"b2a1\",\"押旺横欧殴王ç¿è¥–鴬鴎黄岡沖è»å„„å±‹æ†¶è‡†æ¡¶ç‰¡ä¹™ä¿ºå¸æ©æ¸©ç©éŸ³ä¸‹åŒ–ä»®ä½•ä¼½ä¾¡ä½³åŠ å¯å˜‰å¤å«å®¶å¯¡ç§‘æš‡æžœæž¶æŒæ²³ç«ç‚ç¦ç¦¾ç¨¼ç®‡èŠ±è‹›èŒ„è·è¯è“è¦èª²å˜©è²¨è¿¦éŽéœžèšŠä¿„å³¨æˆ‘ç‰™ç”»è‡¥èŠ½è›¾è³€é›…é¤“é§•ä»‹ä¼šè§£å›žå¡Šå£Šå»»å¿«æ€ªæ‚”æ¢æ‡æˆ’æ‹æ”¹\"],[\"b3a1\",\"éæ™¦æ¢°æµ·ç°ç•Œçš†çµµèŠ¥èŸ¹é–‹éšŽè²å‡±åŠ¾å¤–å’³å®³å´–æ…¨æ¦‚æ¶¯ç¢è“‹è¡—該鎧骸浬馨蛙垣柿蛎鈎劃嚇å„å»“æ‹¡æ’¹æ ¼æ ¸æ®»ç²ç¢ºç©«è¦šè§’赫較éƒé–£éš”é©å¦å²³æ¥½é¡é¡ŽæŽ›ç¬ æ¨«æ©¿æ¢¶é°æ½Ÿå‰²å–æ°æ‹¬æ´»æ¸‡æ»‘è‘›è¤è½„䏔鰹嶿¤›æ¨ºéž„æ ªå…œç«ƒè’²é‡œéŽŒå™›é´¨æ ¢èŒ…è±\"],[\"b4a1\",\"ç²¥åˆˆè‹…ç“¦ä¹¾ä¾ƒå† å¯’åˆŠå‹˜å‹§å·»å–šå ªå§¦å®Œå®˜å¯›å¹²å¹¹æ‚£æ„Ÿæ…£æ†¾æ›æ•¢æŸ‘æ¡“æ£ºæ¬¾æ“æ±—漢澗潅環甘監看竿管簡緩缶翰è‚艦莞観諌貫還鑑間閑関陥韓館舘丸å«å²¸å·ŒçŽ©ç™Œçœ¼å²©ç¿«è´‹é›é ‘顔願ä¼ä¼Žå±å–œå™¨åŸºå¥‡å¬‰å¯„å²å¸Œå¹¾å¿Œæ®æœºæ——既期棋棄\"],[\"b5a1\",\"機帰毅気汽畿祈å£ç¨€ç´€å¾½è¦è¨˜è²´èµ·è»Œè¼é£¢é¨Žé¬¼äº€å½å„€å¦“å®œæˆ¯æŠ€æ“¬æ¬ºçŠ ç–‘ç¥‡ç¾©èŸ»èª¼è°æŽ¬èŠéž å‰åƒå–«æ¡”æ©˜è©°ç §æµé»å´å®¢è„šè™é€†ä¸˜ä¹…仇休åŠå¸å®®å¼“急救朽求汲泣ç¸çƒç©¶çª®ç¬ˆç´šç³¾çµ¦æ—§ç‰›åŽ»å±…å·¨æ‹’æ‹ æŒ™æ¸ è™šè¨±è·é‹¸æ¼ç¦¦éšäº¨äº«äº¬\"],[\"b6a1\",\"ä¾›ä¾ åƒ‘å…‡ç«¶å…±å‡¶å”匡å¿å«å–¬å¢ƒå³¡å¼·å½Šæ€¯æææŒŸæ•™æ©‹æ³ç‹‚ç‹çŸ¯èƒ¸è„…興蕎郷é¡éŸ¿é¥—驚仰å‡å°æšæ¥å±€æ›²æ¥µçމæ¡ç²åƒ…勤å‡å·¾éŒ¦æ–¤æ¬£æ¬½ç´ç¦ç¦½ç‹ç·ŠèйèŒè¡¿è¥Ÿè¬¹è¿‘金åŸéŠ€ä¹å€¶å¥åŒºç‹—玖矩苦躯駆駈駒具愚虞喰空å¶å¯“é‡éš…串櫛釧屑屈\"],[\"b7a1\",\"掘窟沓é´è½¡çªªç†Šéšˆç²‚æ —ç¹°æ¡‘é¬å‹²å›è–«è¨“群è»éƒ¡å¦è¢ˆç¥ä¿‚傾刑兄啓åœçªåž‹å¥‘å½¢å¾„æµæ…¶æ…§æ†©æŽ²æºæ•¬æ™¯æ¡‚渓畦稽系経継繋罫茎èŠè›è¨ˆè©£è¦è»½é šé¶èŠ¸è¿Žé¯¨åŠ‡æˆŸæ’ƒæ¿€éš™æ¡å‚‘æ¬ æ±ºæ½”ç©´çµè¡€è¨£æœˆä»¶å€¹å€¦å¥å…¼åˆ¸å‰£å–§åœå …嫌建憲懸拳æ²\"],[\"b8a1\",\"æ¤œæ¨©ç‰½çŠ¬çŒ®ç ”ç¡¯çµ¹çœŒè‚©è¦‹è¬™è³¢è»’é£éµé™ºé¡•験鹸元原厳幻弦減æºçŽ„ç¾çµƒèˆ·è¨€è«ºé™ä¹Žå€‹å¤å‘¼å›ºå§‘å¤å·±åº«å¼§æˆ¸æ•…枯湖ç‹ç³Šè¢´è‚¡èƒ¡è°è™Žèª‡è·¨éˆ·é›‡é¡§é¼“五互ä¼åˆå‘‰å¾å¨¯å¾Œå¾¡æ‚Ÿæ¢§æªŽç‘šç¢èªžèª¤è·é†ä¹žé¯‰äº¤ä½¼ä¾¯å€™å€–光公功効勾厚å£å‘\"],[\"b9a1\",\"åŽå–‰å‘垢好å”åå®å·¥å·§å··å¹¸åºƒåºšåº·å¼˜æ’æ…ŒæŠ—æ‹˜æŽ§æ”»æ˜‚æ™ƒæ›´ææ ¡æ¢—構江洪浩港æºç”²çš‡ç¡¬ç¨¿ç³ 紅紘絞綱耕考肯肱腔è†èˆªè’è¡Œè¡¡è¬›è²¢è³¼éƒŠé…µé‰±ç ¿é‹¼é–¤é™é …香高鴻剛劫å·åˆå£•æ‹·æ¿ è±ªè½Ÿéº¹å…‹åˆ»å‘Šå›½ç©€é…·éµ é»’ç„æ¼‰è…°ç”‘忽惚骨狛込\"],[\"baa1\",\"æ¤é ƒä»Šå›°å¤å¢¾å©šæ¨æ‡‡æ˜æ˜†æ ¹æ¢±æ··ç—•紺艮é‚些ä½å‰å”†åµ¯å·¦å·®æŸ»æ²™ç‘³ç ‚è©éŽ–è£Ÿååº§æŒ«å‚µå‚¬å†æœ€å“‰å¡žå¦»å®°å½©æ‰æŽ¡æ ½æ³æ¸ˆç½é‡‡çŠ€ç •ç ¦ç¥æ–Žç´°èœè£è¼‰éš›å‰¤åœ¨æç½ªè²¡å†´å‚é˜ªå ºæ¦Šè‚´å’²å´ŽåŸ¼ç¢•é·ºä½œå‰Šå’‹æ¾æ˜¨æœ”柵窄ç–索錯桜é®ç¬¹åŒ™å†Šåˆ·\"],[\"bba1\",\"å¯Ÿæ‹¶æ’®æ“¦æœæ®ºè–©é›‘çšé¯–æŒéŒ†é®«çš¿æ™’三傘å‚山惨撒散桟燦çŠç”£ç®—çº‚èš•è®ƒè³›é…¸é¤æ–¬æš«æ®‹ä»•仔伺使刺å¸å²å—£å››å£«å§‹å§‰å§¿åå±å¸‚å¸«å¿—æ€æŒ‡æ”¯åœæ–¯æ–½æ—¨æžæ¢æ»æ°ç…祉ç§ç³¸ç´™ç´«è‚¢è„‚至視詞詩試誌諮資賜雌飼æ¯äº‹ä¼¼ä¾å…å—å¯ºæ…ˆæŒæ™‚\"],[\"bca1\",\"次滋治爾璽痔ç£ç¤ºè€Œè€³è‡ªè’”辞æ±é¹¿å¼è˜é´«ç«ºè»¸å®é›«ä¸ƒå±åŸ·å¤±å«‰å®¤æ‚‰æ¹¿æ¼†ç–¾è³ªå®Ÿè”€ç¯ 岿Ÿ´èŠå±¡è•Šç¸žèˆŽå†™å°„æ¨èµ¦æ–œç…®ç¤¾ç´—者è¬è»Šé®è›‡é‚ªå€Ÿå‹ºå°ºæ“ç¼çˆµé…Œé‡ˆéŒ«è‹¥å¯‚弱惹主å–守手朱殊狩ç 種腫趣酒首儒å—呪寿授樹綬需囚åŽå‘¨\"],[\"bda1\",\"å®—å°±å·žä¿®æ„æ‹¾æ´²ç§€ç§‹çµ‚ç¹ç¿’è‡èˆŸè’衆襲è®è¹´è¼¯é€±é…‹é…¬é›†é†œä»€ä½å……åå¾“æˆŽæŸ”æ±æ¸‹ç£ç¸¦é‡éŠƒå”夙宿淑ç¥ç¸®ç²›å¡¾ç†Ÿå‡ºè¡“述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡éµé†‡é †å‡¦åˆæ‰€æš‘曙渚庶緒署書薯藷諸助å™å¥³åºå¾æ•鋤除傷償\"],[\"bea1\",\"å‹åŒ å‡å¬å“¨å•†å”±å˜—奨妾娼宵将å°å°‘å°šåº„åºŠå» å½°æ‰¿æŠ„æ‹›æŽŒæ·æ˜‡æ˜Œæ˜æ™¶æ¾æ¢¢æ¨Ÿæ¨µæ²¼æ¶ˆæ¸‰æ¹˜ç„¼ç„¦ç…§ç—‡çœç¡ç¤ç¥¥ç§°ç« 笑粧紹肖è–蒋蕉è¡è£³è¨Ÿè¨¼è©”詳象賞醤鉦é¾é˜éšœéž˜ä¸Šä¸ˆä¸žä¹—å†—å‰°åŸŽå ´å£Œå¬¢å¸¸æƒ…æ“¾æ¡æ–浄状畳穣蒸è²é†¸éŒ 嘱埴飾\"],[\"bfa1\",\"æ‹æ¤æ®–ç‡ç¹”è·è‰²è§¦é£Ÿè•è¾±å°»ä¼¸ä¿¡ä¾µå”‡å¨ å¯å¯©å¿ƒæ…ŽæŒ¯æ–°æ™‹æ£®æ¦›æµ¸æ·±ç”³ç–¹çœŸç¥žç§¦ç´³è‡£èŠ¯è–ªè¦ªè¨ºèº«è¾›é€²é‡éœ‡äººä»åˆƒå¡µå£¬å°‹ç”šå°½è…Žè¨Šè¿…陣é笥è«é ˆé…¢å›³åލ逗å¹åž‚帥推水炊ç¡ç²‹ç¿ è¡°é‚é…”éŒéŒ˜éšç‘žé«„å´‡åµ©æ•°æž¢è¶¨é››æ®æ‰æ¤™è…é —é›€è£¾\"],[\"c0a1\",\"æ¾„æ‘ºå¯¸ä¸–ç€¬ç•æ˜¯å‡„åˆ¶å‹¢å§“å¾æ€§æˆæ”¿æ•´æ˜Ÿæ™´æ£²æ –æ£æ¸…牲生盛精è–å£°è£½è¥¿èª èª“è«‹é€é†’é’陿–‰ç¨Žè„†éš»å¸æƒœæˆšæ–¥æ˜”æžçŸ³ç©ç±ç¸¾è„Šè²¬èµ¤è·¡è¹Ÿç¢©åˆ‡æ‹™æŽ¥æ‘‚折è¨çªƒç¯€èª¬é›ªçµ¶èˆŒè‰ä»™å…ˆåƒå 宣専尖巿ˆ¦æ‰‡æ’°æ “æ ´æ³‰æµ…æ´—æŸ“æ½œç…Žç…½æ—‹ç©¿ç®ç·š\"],[\"c1a1\",\"繊羨腺舛船薦詮賎践é¸é·éŠéŠ‘é–ƒé®®å‰å–„漸然全禅繕膳糎噌塑岨措曾曽楚狙ç–ç–Žç¤Žç¥–ç§Ÿç²—ç´ çµ„è˜‡è¨´é˜»é¡é¼ 僧創åŒå¢å€‰å–ªå£®å¥çˆ½å®‹å±¤åŒæƒ£æƒ³æœæŽƒæŒ¿æŽ»æ“æ—©æ›¹å·£æ§æ§½æ¼•燥争痩相窓糟ç·ç¶œè¡è‰è˜è‘¬è’¼è—»è£…èµ°é€é鎗霜騒åƒå¢—憎\"],[\"c2a1\",\"è‡“è”µè´ˆé€ ä¿ƒå´å‰‡å³æ¯æ‰æŸæ¸¬è¶³é€Ÿä¿—属賊æ—ç¶šå’袖其æƒå˜å«å°Šææ‘éœä»–å¤šå¤ªæ±°è©‘å”¾å •å¦¥æƒ°æ‰“æŸèˆµæ¥•é™€é§„é¨¨ä½“å †å¯¾è€å²±å¸¯å¾…æ€ æ…‹æˆ´æ›¿æ³°æ»žèƒŽè…¿è‹”è¢‹è²¸é€€é€®éšŠé»›é¯›ä»£å°å¤§ç¬¬é†é¡Œé·¹æ»ç€§å“啄宅托択拓沢濯ç¢è¨—鏿¿è«¾èŒ¸å‡§è›¸åª\"],[\"c3a1\",\"å©ä½†é”辰奪脱巽竪辿棚谷狸鱈樽誰丹å˜å˜†å¦æ‹…æŽ¢æ—¦æŽæ·¡æ¹›ç‚çŸç«¯ç®ªç¶»è€½èƒ†è›‹èª•é›å›£å£‡å¼¾æ–æš–æª€æ®µç”·è«‡å€¤çŸ¥åœ°å¼›æ¥æ™ºæ± 痴稚置致蜘é…馳築畜竹ç‘è“„é€ç§©çª’茶嫡ç€ä¸ä»²å®™å¿ æŠ½æ˜¼æŸ±æ³¨è™«è¡·è¨»é…Žé‹³é§æ¨—瀦猪苧著貯ä¸å…†å‡‹å–‹å¯µ\"],[\"c4a1\",\"帖帳åºå¼”å¼µå½«å¾´æ‡²æŒ‘æš¢æœæ½®ç‰’町眺è´è„¹è…¸è¶èª¿è«œè¶…è·³éŠšé•·é ‚é³¥å‹…æ—直朕沈çè³ƒéŽ®é™³æ´¥å¢œæ¤Žæ§Œè¿½éŽšç—›é€šå¡šæ ‚æŽ´æ§»ä½ƒæ¼¬æŸ˜è¾»è”¦ç¶´é”æ¤¿æ½°åªå£·å¬¬ç´¬çˆªåŠé‡£é¶´äºä½Žåœåµå‰ƒè²žå‘ˆå ¤å®šå¸åº•åºå»·å¼Ÿæ‚ŒæŠµæŒºææ¢¯æ±€ç¢‡ç¦Žç¨‹ç· 艇訂諦蹄逓\"],[\"c5a1\",\"邸é„釘鼎泥摘擢敵滴的笛é©é‘溺哲徹撤è½è¿é‰„典填天展店添çºç”œè²¼è»¢é¡›ç‚¹ä¼æ®¿æ¾±ç”°é›»å…Žåå µå¡—å¦¬å± å¾’æ–—æœæ¸¡ç™»èŸè³é€”都éç ¥ç ºåŠªåº¦åœŸå¥´æ€’å€’å…šå†¬å‡åˆ€å”å¡”å¡˜å¥—å®•å³¶å¶‹æ‚¼æŠ•ææ±æ¡ƒæ¢¼æ£Ÿç›—æ·˜æ¹¯æ¶›ç¯ç‡ˆå½“痘祷ç‰ç”ç’糖統到\"],[\"c6a1\",\"董蕩藤討謄豆è¸é€ƒé€é™é™¶é 騰闘åƒå‹•åŒå ‚導憧撞洞瞳童胴è„é“éŠ…å³ é´‡åŒ¿å¾—å¾³æ¶œç‰¹ç£ç¦¿ç¯¤æ¯’ç‹¬èªæ ƒæ©¡å‡¸çªæ¤´å±Šé³¶è‹«å¯…酉瀞噸屯惇敦沌豚éé “å‘‘æ›‡éˆå¥ˆé‚£å†…ä¹å‡ªè–™è¬Žç˜æºé‹æ¥¢é¦´ç¸„ç•·å—æ¥ 軟難æ±äºŒå°¼å¼è¿©åŒ‚賑肉虹廿日乳入\"],[\"c7a1\",\"如尿韮任妊å¿èªæ¿¡ç¦°ç¥¢å¯§è‘±çŒ«ç†±å¹´å¿µæ»æ’šç‡ƒç²˜ä¹ƒå»¼ä¹‹åŸœå𢿂©æ¿ƒç´èƒ½è„³è†¿è¾²è¦—蚤巴把æ’è¦‡æ·æ³¢æ´¾ç¶ç ´å©†ç½µèŠé¦¬ä¿³å»ƒæ‹æŽ’æ•—æ¯ç›ƒç‰ŒèƒŒè‚ºè¼©é…å€åŸ¹åª’æ¢…æ¥³ç…¤ç‹½è²·å£²è³ é™ªé€™è¿ç§¤çŸ§è©ä¼¯å‰¥å𿋿Ÿæ³Šç™½ç®”ç²•èˆ¶è–„è¿«æ›æ¼ 爆縛莫é§éº¦\"],[\"c8a1\",\"å‡½ç®±ç¡²ç®¸è‚‡çˆæ«¨å¹¡è‚Œç•‘ç• å…«é‰¢æºŒç™ºé†—é«ªä¼ç½°æŠœç閥鳩噺塙蛤隼伴判åŠåå›å¸†æ¬æ–‘æ¿æ°¾æ±Žç‰ˆçНçç•”ç¹èˆ¬è—©è²©ç¯„é‡†ç…©é ’é£¯æŒ½æ™©ç•ªç›¤ç£è•ƒè›®åŒªå‘å¦å¦ƒåº‡å½¼æ‚²æ‰‰æ‰¹æŠ«æ–比泌疲皮碑秘緋罷肥被誹費é¿éžé£›æ¨‹ç°¸å‚™å°¾å¾®æž‡æ¯˜çµçœ‰ç¾Ž\"],[\"c9a1\",\"鼻柊稗匹疋é«å½¦è†è±è‚˜å¼¼å¿…ç•¢ç†é€¼æ¡§å§«åª›ç´ç™¾è¬¬ä¿µå½ªæ¨™æ°·æ¼‚瓢票表評豹廟æç—…秒苗錨鋲蒜è›é°å“å½¬æ–Œæµœç€•è²§è³“é »æ•ç“¶ä¸ä»˜åŸ 夫婦富冨布府怖扶敷斧普浮父符è…膚芙èœè² 賦赴阜附侮撫æ¦èˆžè‘¡è•ªéƒ¨å°æ¥“風葺蕗ä¼å‰¯å¾©å¹…æœ\"],[\"caa1\",\"ç¦è…¹è¤‡è¦†æ·µå¼—払沸ä»ç‰©é®’分å»å™´å¢³æ†¤æ‰®ç„šå¥®ç²‰ç³žç´›é›°æ–‡èžä¸™ä½µå…µå¡€å¹£å¹³å¼ŠæŸ„並蔽閉陛米é 僻å£ç™–碧別瞥蔑箆å変片篇編辺返é便勉娩å¼éžä¿èˆ—é‹ªåœƒæ•æ©ç”«è£œè¼”穂募墓慕戊暮æ¯ç°¿è©å€£ä¿¸åŒ…å‘†å ±å¥‰å®å³°å³¯å´©åº–æŠ±æ§æ”¾æ–¹æœ‹\"],[\"cba1\",\"æ³•æ³¡çƒ¹ç ²ç¸«èƒžèŠ³èŒè“¬èœ‚褒訪豊邦鋒飽鳳鵬ä¹äº¡å‚剖åŠå¦¨å¸½å¿˜å¿™æˆ¿æš´æœ›æŸæ£’冒紡肪膨謀貌貿鉾防å é ¬åŒ—åƒ•åœå¢¨æ’²æœ´ç‰§ç¦ç©†é‡¦å‹ƒæ²¡æ®†å €å¹Œå¥”本翻凡盆摩磨é”麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒æ¡äº¦ä¿£åˆæŠ¹æœ«æ²«è¿„ä¾ç¹éº¿ä¸‡æ…¢æº€\"],[\"cca1\",\"漫蔓味未é…å·³ç®•å²¬å¯†èœœæ¹Šè“‘ç¨”è„ˆå¦™ç²æ°‘çœ å‹™å¤¢ç„¡ç‰ŸçŸ›éœ§éµ¡æ¤‹å©¿å¨˜å†¥åå‘½æ˜Žç›Ÿè¿·éŠ˜é³´å§ªç‰æ»…å…æ£‰ç¶¿ç·¬é¢éººæ‘¸æ¨¡èŒ‚å¦„åŸæ¯›çŒ›ç›²ç¶²è€—蒙儲木黙目æ¢å‹¿é¤…å°¤æˆ»ç±¾è²°å•æ‚¶ç´‹é–€åŒä¹Ÿå†¶å¤œçˆºè€¶é‡Žå¼¥çŸ¢åŽ„å½¹ç´„è–¬è¨³èºé–柳薮鑓愉愈油癒\"],[\"cda1\",\"è«è¼¸å”¯ä½‘優勇å‹å®¥å¹½æ‚ æ†‚æ–æœ‰æŸšæ¹§æ¶ŒçŒ¶çŒ·ç”±ç¥è£•誘éŠé‚‘郵雄èžå¤•予余与誉輿é å‚å¹¼å¦–å®¹åº¸æšæºæ“曜楊様洋溶熔用窯羊耀葉蓉è¦è¬¡è¸Šé¥é™½é¤Šæ…¾æŠ‘欲沃浴翌翼淀羅螺裸æ¥èŽ±é ¼é›·æ´›çµ¡è½é…ªä¹±åµåµæ¬„æ¿«è—è˜è¦§åˆ©åå±¥æŽæ¢¨ç†ç’ƒ\"],[\"cea1\",\"ç—¢è£è£¡é‡Œé›¢é™¸å¾‹çŽ‡ç«‹è‘ŽæŽ ç•¥åŠ‰æµæºœç‰ç•™ç¡«ç²’隆竜é¾ä¾¶æ…®æ—…è™œäº†äº®åƒšä¸¡å‡Œå¯®æ–™æ¢æ¶¼çŒŸç™‚çžç¨œç³§è‰¯è«’é¼é‡é™µé ˜åŠ›ç·‘å€«åŽ˜æž—æ·‹ç‡ç³è‡¨è¼ªéš£é±—éºŸç‘ å¡æ¶™ç´¯é¡žä»¤ä¼¶ä¾‹å†·åŠ±å¶ºæ€œçŽ²ç¤¼è‹“éˆ´éš·é›¶éœŠéº—é½¢æš¦æ´åˆ—åŠ£çƒˆè£‚å»‰æ‹æ†æ¼£ç…‰ç°¾ç·´è¯\"],[\"cfa1\",\"è“®é€£éŒ¬å‘‚é¯æ«“炉賂路露労å©å»Šå¼„朗楼榔浪æ¼ç‰¢ç‹¼ç¯è€è¾è‹éƒŽå…麓禄肋録論å€å’Œè©±æªè³„è„‡æƒ‘æž é·²äº™äº˜é°è©«è—蕨椀湾碗腕\"],[\"d0a1\",\"弌ä¸ä¸•个丱丶丼丿乂乖乘亂亅豫亊舒å¼äºŽäºžäºŸäº 亢亰亳亶从ä»ä»„仆仂仗仞ä»ä»Ÿä»·ä¼‰ä½šä¼°ä½›ä½ä½—佇佶侈ä¾ä¾˜ä½»ä½©ä½°ä¾‘佯來侖儘俔俟俎俘俛俑俚ä¿ä¿¤ä¿¥å€šå€¨å€”倪倥倅伜俶倡倩倬俾俯們倆åƒå‡æœƒå•ååˆåšå–å¬å¸å‚€å‚šå‚…傴傲\"],[\"d1a1\",\"僉僊傳僂僖僞僥åƒåƒ£åƒ®åƒ¹åƒµå„‰å„儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉å†å†‘å†“å†•å†–å†¤å†¦å†¢å†©å†ªå†«å†³å†±å†²å†°å†µå†½å‡…å‡‰å‡›å‡ è™•å‡©å‡å‡°å‡µå‡¾åˆ„刋刔刎刧刪刮刳刹å‰å‰„剋剌剞剔剪剴剩剳剿剽åŠåŠ”åŠ’å‰±åŠˆåŠ‘è¾¨\"],[\"d2a1\",\"辧劬åŠåŠ¼åŠµå‹å‹å‹—勞勣勦é£å‹ 勳勵勸勹匆匈甸åŒåŒåŒåŒ•匚匣匯匱匳匸å€å†å…丗å‰å凖åžå©å®å¤˜å»å·åŽ‚åŽ–åŽ åŽ¦åŽ¥åŽ®åŽ°åŽ¶åƒç°’é›™åŸæ›¼ç‡®å®å¨ååºåå½å‘€å¬åå¼å®å¶å©å呎å’呵咎呟呱呷呰咒呻咀呶咄å’咆哇咢咸咥咬哄哈咨\"],[\"d3a1\",\"咫哂咤咾咼哘哥哦å”唔哽哮å“哺哢唹啀啣啌售啜啅啖啗唸唳å•喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎å™ç‡Ÿå˜´å˜¶å˜²å˜¸å™«å™¤å˜¯å™¬å™ªåš†åš€åšŠåš åš”åšåš¥åš®åš¶åš´å›‚åš¼å›å›ƒå›€å›ˆå›Žå›‘囓囗囮囹圀囿圄圉\"],[\"d4a1\",\"圈國åœåœ“團圖嗇圜圦圷圸åŽåœ»å€åå©åŸ€åžˆå¡å¿åž‰åž“åž åž³åž¤åžªåž°åŸƒåŸ†åŸ”åŸ’åŸ“å ŠåŸ–åŸ£å ‹å ™å å¡²å ¡å¡¢å¡‹å¡°æ¯€å¡’å ½å¡¹å¢…å¢¹å¢Ÿå¢«å¢ºå£žå¢»å¢¸å¢®å£…å£“å£‘å£—å£™å£˜å£¥å£œå£¤å£Ÿå£¯å£ºå£¹å£»å£¼å£½å¤‚å¤Šå¤å¤›æ¢¦å¤¥å¤¬å¤å¤²å¤¸å¤¾ç«’奕å¥å¥Žå¥šå¥˜å¥¢å¥ 奧奬奩\"],[\"d5a1\",\"奸å¦å¦ä½žä¾«å¦£å¦²å§†å§¨å§œå¦å§™å§šå¨¥å¨Ÿå¨‘娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲å«å¬ªå¬¶å¬¾åƒå…å€å‘å•åšå›å¥å©å°å³åµå¸æ–ˆåºå®€å®ƒå®¦å®¸å¯ƒå¯‡å¯‰å¯”å¯å¯¤å¯¦å¯¢å¯žå¯¥å¯«å¯°å¯¶å¯³å°…將專å°å°“å° å°¢å°¨å°¸å°¹å±å±†å±Žå±“\"],[\"d6a1\",\"å±å±å±å±¬å±®ä¹¢å±¶å±¹å²Œå²‘岔妛岫岻岶岼岷峅岾峇峙峩峽峺å³å¶Œå³ªå´‹å´•崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢å¶å¶¬å¶®å¶½å¶å¶·å¶¼å·‰å·å·“å·’å·–å·›å·«å·²å·µå¸‹å¸šå¸™å¸‘å¸›å¸¶å¸·å¹„å¹ƒå¹€å¹Žå¹—å¹”å¹Ÿå¹¢å¹¤å¹‡å¹µå¹¶å¹ºéº¼å¹¿åº å»å»‚廈å»å»\"],[\"d7a1\",\"廖廣å»å»šå»›å»¢å»¡å»¨å»©å»¬å»±å»³å»°å»´å»¸å»¾å¼ƒå¼‰å½å½œå¼‹å¼‘弖弩å¼å¼¸å½å½ˆå½Œå½Žå¼¯å½‘彖彗彙彡å½å½³å½·å¾ƒå¾‚å½¿å¾Šå¾ˆå¾‘å¾‡å¾žå¾™å¾˜å¾ å¾¨å¾å¾¼å¿–å¿»å¿¤å¿¸å¿±å¿æ‚³å¿¿æ€¡æ æ€™æ€æ€©æ€Žæ€±æ€›æ€•æ€«æ€¦æ€æ€ºæšææªæ·æŸæŠæ†ææ£æƒæ¤æ‚æ¬æ«æ™æ‚æ‚æƒ§æ‚ƒæ‚š\"],[\"d8a1\",\"æ‚„æ‚›æ‚–æ‚—æ‚’æ‚§æ‚‹æƒ¡æ‚¸æƒ æƒ“æ‚´å¿°æ‚½æƒ†æ‚µæƒ˜æ…æ„•æ„†æƒ¶æƒ·æ„€æƒ´æƒºæ„ƒæ„¡æƒ»æƒ±æ„æ„Žæ…‡æ„¾æ„¨æ„§æ…Šæ„¿æ„¼æ„¬æ„´æ„½æ…‚æ…„æ…³æ…·æ…˜æ…™æ…šæ…«æ…´æ…¯æ…¥æ…±æ…Ÿæ…æ…“æ…µæ†™æ†–æ†‡æ†¬æ†”æ†šæ†Šæ†‘æ†«æ†®æ‡Œæ‡Šæ‡‰æ‡·æ‡ˆæ‡ƒæ‡†æ†ºæ‡‹ç½¹æ‡æ‡¦æ‡£æ‡¶æ‡ºæ‡´æ‡¿æ‡½æ‡¼æ‡¾æˆ€æˆˆæˆ‰æˆæˆŒæˆ”戛\"],[\"d9a1\",\"æˆžæˆ¡æˆªæˆ®æˆ°æˆ²æˆ³æ‰æ‰Žæ‰žæ‰£æ‰›æ‰ æ‰¨æ‰¼æŠ‚æŠ‰æ‰¾æŠ’æŠ“æŠ–æ‹”æŠƒæŠ”æ‹—æ‹‘æŠ»æ‹æ‹¿æ‹†æ“”æ‹ˆæ‹œæ‹Œæ‹Šæ‹‚æ‹‡æŠ›æ‹‰æŒŒæ‹®æ‹±æŒ§æŒ‚æŒˆæ‹¯æ‹µææŒ¾ææœææŽ–æŽŽæŽ€æŽ«æ¶æŽ£æŽæŽ‰æŽŸæŽµæ«æ©æŽ¾æ©æ€æ†æ£æ‰æ’æ¶æ„æ–æ´æ†æ“æ¦æ¶æ”æ—æ¨ææ‘§æ‘¯æ‘¶æ‘Žæ”ªæ’•撓撥撩撈撼\"],[\"daa1\",\"æ“šæ“’æ“…æ“‡æ’»æ“˜æ“‚æ“±æ“§èˆ‰æ“ æ“¡æŠ¬æ“£æ“¯æ”¬æ“¶æ“´æ“²æ“ºæ”€æ“½æ”˜æ”œæ”…æ”¤æ”£æ”«æ”´æ”µæ”·æ”¶æ”¸ç•‹æ•ˆæ•–æ••æ•æ•˜æ•žæ•æ•²æ•¸æ–‚æ–ƒè®Šæ–›æ–Ÿæ–«æ–·æ—ƒæ—†æ—æ—„æ—Œæ—’æ—›æ—™æ— æ—¡æ—±æ²æ˜Šæ˜ƒæ—»æ³æ˜µæ˜¶æ˜´æ˜œæ™æ™„æ™‰æ™æ™žæ™æ™¤æ™§æ™¨æ™Ÿæ™¢æ™°æšƒæšˆæšŽæš‰æš„æš˜æšæ›æš¹æ›‰æš¾æš¼\"],[\"dba1\",\"æ›„æš¸æ›–æ›šæ› æ˜¿æ›¦æ›©æ›°æ›µæ›·æœæœ–æœžæœ¦æœ§éœ¸æœ®æœ¿æœ¶ææœ¸æœ·æ†æžæ æ™æ£æ¤æž‰æ°æž©æ¼æªæžŒæž‹æž¦æž¡æž…æž·æŸ¯æž´æŸ¬æž³æŸ©æž¸æŸ¤æŸžæŸæŸ¢æŸ®æž¹æŸŽæŸ†æŸ§æªœæ žæ¡†æ ©æ¡€æ¡æ ²æ¡Žæ¢³æ «æ¡™æ¡£æ¡·æ¡¿æ¢Ÿæ¢æ¢æ¢”æ¢æ¢›æ¢ƒæª®æ¢¹æ¡´æ¢µæ¢ æ¢ºæ¤æ¢æ¡¾æ¤æ£Šæ¤ˆæ£˜æ¤¢æ¤¦æ£¡æ¤Œæ£\"],[\"dca1\",\"æ£”æ£§æ£•æ¤¶æ¤’æ¤„æ£—æ££æ¤¥æ£¹æ£ æ£¯æ¤¨æ¤ªæ¤šæ¤£æ¤¡æ£†æ¥¹æ¥·æ¥œæ¥¸æ¥«æ¥”æ¥¾æ¥®æ¤¹æ¥´æ¤½æ¥™æ¤°æ¥¡æ¥žæ¥æ¦æ¥ªæ¦²æ¦®æ§æ¦¿æ§æ§“æ¦¾æ§Žå¯¨æ§Šæ§æ¦»æ§ƒæ¦§æ¨®æ¦‘æ¦ æ¦œæ¦•æ¦´æ§žæ§¨æ¨‚æ¨›æ§¿æ¬Šæ§¹æ§²æ§§æ¨…æ¦±æ¨žæ§æ¨”æ§«æ¨Šæ¨’æ«æ¨£æ¨“æ©„æ¨Œæ©²æ¨¶æ©¸æ©‡æ©¢æ©™æ©¦æ©ˆæ¨¸æ¨¢æªæªæª 檄檢檣\"],[\"dda1\",\"æª—è˜—æª»æ«ƒæ«‚æª¸æª³æª¬æ«žæ«‘æ«Ÿæªªæ«šæ«ªæ«»æ¬…è˜–æ«ºæ¬’æ¬–é¬±æ¬Ÿæ¬¸æ¬·ç›œæ¬¹é£®æ‡æƒæ‰ææ™æ”æ›æŸæ¡æ¸æ¹æ¿æ®€æ®„æ®ƒæ®æ®˜æ®•æ®žæ®¤æ®ªæ®«æ®¯æ®²æ®±æ®³æ®·æ®¼æ¯†æ¯‹æ¯“æ¯Ÿæ¯¬æ¯«æ¯³æ¯¯éº¾æ°ˆæ°“æ°”æ°›æ°¤æ°£æ±žæ±•æ±¢æ±ªæ²‚æ²æ²šæ²æ²›æ±¾æ±¨æ±³æ²’æ²æ³„æ³±æ³“æ²½æ³—æ³…æ³æ²®æ²±æ²¾\"],[\"dea1\",\"æ²ºæ³›æ³¯æ³™æ³ªæ´Ÿè¡æ´¶æ´«æ´½æ´¸æ´™æ´µæ´³æ´’æ´Œæµ£æ¶“æµ¤æµšæµ¹æµ™æ¶Žæ¶•æ¿¤æ¶…æ·¹æ¸•æ¸Šæ¶µæ·‡æ·¦æ¶¸æ·†æ·¬æ·žæ·Œæ·¨æ·’æ·…æ·ºæ·™æ·¤æ·•æ·ªæ·®æ¸æ¹®æ¸®æ¸™æ¹²æ¹Ÿæ¸¾æ¸£æ¹«æ¸«æ¹¶æ¹æ¸Ÿæ¹ƒæ¸ºæ¹Žæ¸¤æ»¿æ¸æ¸¸æº‚æºªæº˜æ»‰æº·æ»“æº½æº¯æ»„æº²æ»”æ»•æºæº¥æ»‚æºŸæ½æ¼‘çŒæ»¬æ»¸æ»¾æ¼¿æ»²æ¼±æ»¯æ¼²æ»Œ\"],[\"dfa1\",\"æ¼¾æ¼“æ»·æ¾†æ½ºæ½¸æ¾æ¾€æ½¯æ½›æ¿³æ½æ¾‚潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑ç€ç€æ¿¾ç€›ç€šæ½´ç€ç€˜ç€Ÿç€°ç€¾ç€²ç‘ç£ç‚™ç‚’炯烱炬炸炳炮烟烋çƒçƒ™ç„‰çƒ½ç„œç„™ç…¥ç…•熈煦煢煌煖煬ç†ç‡»ç†„ç†•ç†¨ç†¬ç‡—ç†¹ç†¾ç‡’ç‡‰ç‡”ç‡Žç‡ ç‡¬ç‡§ç‡µç‡¼\"],[\"e0a1\",\"燹燿çˆçˆçˆ›çˆ¨çˆçˆ¬çˆ°çˆ²çˆ»çˆ¼çˆ¿ç‰€ç‰†ç‰‹ç‰˜ç‰´ç‰¾çŠ‚çŠçŠ‡çŠ’çŠ–çŠ¢çŠ§çŠ¹çŠ²ç‹ƒç‹†ç‹„ç‹Žç‹’ç‹¢ç‹ ç‹¡ç‹¹ç‹·å€çŒ—猊猜猖çŒçŒ´çŒ¯çŒ©çŒ¥çŒ¾çŽç默ç—çªç¨ç°ç¸çµç»çºçˆç޳çŽçŽ»ç€ç¥ç®çžç’¢ç…瑯ç¥ç¸ç²çºç‘•ç¿ç‘Ÿç‘™ç‘瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊ç“ç“”ç±\"],[\"e1a1\",\"ç“ ç“£ç“§ç“©ç“®ç“²ç“°ç“±ç“¸ç“·ç”„ç”ƒç”…ç”Œç”Žç”甕甓甞甦甬甼畄ç•畊畉畛畆畚畩畤畧畫ç•畸當疆疇畴疊疉疂疔疚ç–疥疣痂疳痃疵疽疸疼疱ç—痊痒痙痣痞痾痿痼ç˜ç—°ç—ºç—²ç—³ç˜‹ç˜ç˜‰ç˜Ÿç˜§ç˜ 瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰\"],[\"e2a1\",\"癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂ç›ç›–盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸ç‡çšç¨ç«ç›ç¥ç¿ç¾ç¹çžŽçž‹çž‘çž çžžçž°çž¶çž¹çž¿çž¼çž½çž»çŸ‡çŸçŸ—çŸšçŸœçŸ£çŸ®çŸ¼ç Œç ’ç¤¦ç 礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬\"],[\"e3a1\",\"ç£§ç£šç£½ç£´ç¤‡ç¤’ç¤‘ç¤™ç¤¬ç¤«ç¥€ç¥ ç¥—ç¥Ÿç¥šç¥•ç¥“ç¥ºç¥¿ç¦Šç¦ç¦§é½‹ç¦ªç¦®ç¦³ç¦¹ç¦ºç§‰ç§•秧秬秡秣稈ç¨ç¨˜ç¨™ç¨ 稟禀稱稻稾稷穃穗穉穡穢穩é¾ç©°ç©¹ç©½çªˆçª—窕窘窖窩竈窰窶竅竄窿邃竇竊ç«ç«ç«•竓站竚ç«ç«¡ç«¢ç«¦ç«ç«°ç¬‚ç¬ç¬Šç¬†ç¬³ç¬˜ç¬™ç¬žç¬µç¬¨ç¬¶ç\"],[\"e4a1\",\"çºç¬„ç笋çŒç…çµç¥ç´ç§ç°ç±ç¬ç®ç®ç®˜ç®Ÿç®ç®œç®šç®‹ç®’ç®ç箙篋ç¯ç¯Œç¯ç®´ç¯†ç¯ç¯©ç°‘ç°”ç¯¦ç¯¥ç± ç°€ç°‡ç°“ç¯³ç¯·ç°—ç°ç¯¶ç°£ç°§ç°ªç°Ÿç°·ç°«ç°½ç±Œç±ƒç±”ç±ç±€ç±ç±˜ç±Ÿç±¤ç±–籥籬籵粃ç²ç²¤ç²ç²¢ç²«ç²¡ç²¨ç²³ç²²ç²±ç²®ç²¹ç²½ç³€ç³…糂糘糒糜糢鬻糯糲糴糶糺紆\"],[\"e5a1\",\"紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮çµçµ£ç¶“綉絛ç¶çµ½ç¶›ç¶ºç¶®ç¶£ç¶µç·‡ç¶½ç¶«ç¸½ç¶¢ç¶¯ç·œç¶¸ç¶Ÿç¶°ç·˜ç·ç·¤ç·žç·»ç·²ç·¡ç¸…縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧ç¹ç¹–繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒çºçº“纔纖纎纛纜缸缺\"],[\"e6a1\",\"罅罌ç½ç½Žç½ç½‘ç½•ç½”ç½˜ç½Ÿç½ ç½¨ç½©ç½§ç½¸ç¾‚ç¾†ç¾ƒç¾ˆç¾‡ç¾Œç¾”ç¾žç¾ç¾šç¾£ç¾¯ç¾²ç¾¹ç¾®ç¾¶ç¾¸è±ç¿…翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻èŠè†è’è˜èšèŸè¢è¨è³è²è°è¶è¹è½è¿è‚„肆肅肛肓肚è‚å†è‚¬èƒ›èƒ¥èƒ™èƒèƒ„胚胖脉胯胱脛脩脣脯腋\"],[\"e7a1\",\"éš‹è…†è„¾è…“è…‘èƒ¼è…±è…®è…¥è…¦è…´è†ƒè†ˆè†Šè†€è†‚è† è†•è†¤è†£è…Ÿè†“è†©è†°è†µè†¾è†¸è†½è‡€è‡‚è†ºè‡‰è‡è‡‘è‡™è‡˜è‡ˆè‡šè‡Ÿè‡ è‡§è‡ºè‡»è‡¾èˆèˆ‚舅與舊èˆèˆèˆ–舩舫舸舳艀艙艘è‰è‰šè‰Ÿè‰¤è‰¢è‰¨è‰ªè‰«èˆ®è‰±è‰·è‰¸è‰¾èŠèŠ’èŠ«èŠŸèŠ»èŠ¬è‹¡è‹£è‹Ÿè‹’è‹´è‹³è‹ºèŽ“èŒƒè‹»è‹¹è‹žèŒ†è‹œèŒ‰è‹™\"],[\"e8a1\",\"茵茴茖茲茱è€èŒ¹èè…茯茫茗茘莅莚莪莟莢莖茣莎莇莊è¼è޵è³èµèŽ èŽ‰èŽ¨è´è“è«èŽè½èƒè˜è‹èè·è‡è è²èè¢è 莽è¸è”†è»è‘èªè¼è•šè’„è‘·è‘«è’葮蒂葩葆è¬è‘¯è‘¹èµè“Šè‘¢è’¹è’¿è’Ÿè“™è“蒻蓚è“è“蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈\"],[\"e9a1\",\"è•蘂蕋蕕薀薤薈薑薊薨è•薔薛藪薇薜蕷蕾è–藉薺è—è–¹è—è—•è—藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿è™ä¹•è™”è™Ÿè™§è™±èš“èš£èš©èšªèš‹èšŒèš¶èš¯è›„è›†èš°è›‰è £èš«è›”è›žè›©è›¬è›Ÿè››è›¯èœ’èœ†èœˆèœ€èœƒè›»èœ‘èœ‰èœè›¹èœŠèœ´èœ¿èœ·èœ»èœ¥èœ©èœšè èŸè¸èŒèŽè´è—è¨è®è™\"],[\"eaa1\",\"è“è£èªè …螢螟螂螯蟋螽蟀èŸé›–èž«èŸ„èž³èŸ‡èŸ†èž»èŸ¯èŸ²èŸ è è èŸ¾èŸ¶èŸ·è ŽèŸ’è ‘è –è •è ¢è ¡è ±è ¶è ¹è §è »è¡„è¡‚è¡’è¡™è¡žè¡¢è¡«è¢è¡¾è¢žè¡µè¡½è¢µè¡²è¢‚袗袒袮袙袢è¢è¢¤è¢°è¢¿è¢±è£ƒè£„裔裘裙è£è£¹è¤‚裼裴裨裲褄褌褊褓襃褞褥褪褫è¥è¥„褻褶褸襌è¤è¥ 襞\"],[\"eba1\",\"襦襤è¥è¥ªè¥¯è¥´è¥·è¥¾è¦ƒè¦ˆè¦Šè¦“覘覡覩覦覬覯覲覺覽覿觀觚觜è§è§§è§´è§¸è¨ƒè¨–è¨è¨Œè¨›è¨è¨¥è¨¶è©è©›è©’詆詈詼è©è©¬è©¢èª…誂誄誨誡誑誥誦誚誣諄è«è«‚è«šè««è«³è«§è«¤è«±è¬”è« è«¢è«·è«žè«›è¬Œè¬‡è¬šè«¡è¬–è¬è¬—è¬ è¬³éž«è¬¦è¬«è¬¾è¬¨èèŒèèŽè‰è–è›èšè«\"],[\"eca1\",\"èŸè¬è¯è´è½è®€è®Œè®Žè®’讓讖讙讚谺è±è°¿è±ˆè±Œè±Žè±è±•豢豬豸豺貂貉貅貊è²è²Žè²”豼貘æˆè²è²ªè²½è²²è²³è²®è²¶è³ˆè³è³¤è³£è³šè³½è³ºè³»è´„è´…è´Šè´‡è´è´è´é½Žè´“è³è´”è´–èµ§èµèµ±èµ³è¶è¶™è·‚趾趺è·è·šè·–跌跛跋跪跫跟跣跼踈踉跿è¸è¸žè¸è¸Ÿè¹‚踵踰踴蹊\"],[\"eda1\",\"蹇蹉蹌è¹è¹ˆè¹™è¹¤è¹ 踪蹣蹕蹶蹲蹼èºèº‡èº…躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣è¾è¾¯è¾·è¿šè¿¥è¿¢è¿ªè¿¯é‚‡è¿´é€…迹迺逑逕逡é€é€žé€–逋逧逶逵逹迸\"],[\"eea1\",\"ééé‘é’逎é‰é€¾é–é˜éžé¨é¯é¶éš¨é²é‚‚é½é‚邀邊邉é‚邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀é‡é‡‰é‡‹é‡é‡–釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋é‰éŠœéŠ–éŠ“éŠ›é‰šé‹éŠ¹éŠ·é‹©éŒé‹ºé„錮\"],[\"efa1\",\"錙錢錚錣錺錵錻éœé é¼é®é–鎰鎬éŽéŽ”éŽ¹é–é—é¨é¥é˜éƒéééˆé¤éšé”é“éƒé‡éé¶é«éµé¡éºé‘é‘’é‘„é‘›é‘ é‘¢é‘žé‘ªéˆ©é‘°é‘µé‘·é‘½é‘šé‘¼é‘¾é’é‘¿é–‚é–‡é–Šé–”é––é–˜é–™é– é–¨é–§é–閼閻閹閾闊濶闃é—闌闕闔闖關闡闥闢阡阨阮阯陂陌é™é™‹é™·é™œé™ž\"],[\"f0a1\",\"é™é™Ÿé™¦é™²é™¬éšéš˜éš•隗險隧隱隲隰隴隶隸隹雎雋雉é›è¥é›œéœé›•雹霄霆霈霓霎霑éœéœ–霙霤霪霰霹霽霾é„é†éˆé‚é‰éœé é¤é¦é¨å‹’é«é±é¹éž…é¼éžéºéž†éž‹éžéžéžœéž¨éž¦éž£éž³éž´éŸƒéŸ†éŸˆéŸ‹éŸœéŸé½éŸ²ç«ŸéŸ¶éŸµé é Œé ¸é ¤é ¡é ·é ½é¡†é¡é¡‹é¡«é¡¯é¡°\"],[\"f1a1\",\"顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡é¤é¤žé¤¤é¤ 餬餮餽餾饂饉饅é¥é¥‹é¥‘饒饌饕馗馘馥é¦é¦®é¦¼é§Ÿé§›é§é§˜é§‘é§é§®é§±é§²é§»é§¸é¨é¨é¨…駢騙騫騷驅驂驀驃騾驕é©é©›é©—驟驢驥驤驩驫驪éªéª°éª¼é«€é«é«‘髓體髞髟髢髣髦髯髫髮髴髱髷\"],[\"f2a1\",\"髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲é„éƒéééŽé‘é˜é´é®“é®ƒé®‘é®–é®—é®Ÿé® é®¨é®´é¯€é¯Šé®¹é¯†é¯é¯‘é¯’é¯£é¯¢é¯¤é¯”é¯¡é°ºé¯²é¯±é¯°é°•é°”é°‰é°“é°Œé°†é°ˆé°’é°Šé°„é°®é°›é°¥é°¤é°¡é°°é±‡é°²é±†é°¾é±šé± é±§é±¶é±¸é³§é³¬é³°é´‰é´ˆé³«é´ƒé´†é´ªé´¦é¶¯é´£é´Ÿéµ„é´•é´’éµé´¿é´¾éµ†éµˆ\"],[\"f3a1\",\"éµéµžéµ¤éµ‘éµéµ™éµ²é¶‰é¶‡é¶«éµ¯éµºé¶šé¶¤é¶©é¶²é·„é·é¶»é¶¸é¶ºé·†é·é·‚鷙鷓鷸鷦é·é·¯é·½é¸šé¸›é¸žé¹µé¹¹é¹½éºéºˆéº‹éºŒéº’麕麑éºéº¥éº©éº¸éºªéºé¡é»Œé»Žé»é»é»”黜點é»é» é»¥é»¨é»¯é»´é»¶é»·é»¹é»»é»¼é»½é¼‡é¼ˆçš·é¼•é¼¡é¼¬é¼¾é½Šé½’é½”é½£é½Ÿé½ é½¡é½¦é½§é½¬é½ªé½·é½²é½¶é¾•é¾œé¾ \"],[\"f4a1\",\"å ¯æ§‡é™ç‘¤å‡œç†™\"],[\"f9a1\",\"纊褜éˆéŠˆè“œä¿‰ç‚»æ˜±æ£ˆé‹¹æ›»å½…ä¸¨ä»¡ä»¼ä¼€ä¼ƒä¼¹ä½–ä¾’ä¾Šä¾šä¾”ä¿å€å€¢ä¿¿å€žå†å°å‚傔僴僘兊兤å†å†¾å‡¬åˆ•劜劦勀勛匀匇匤å²åŽ“åŽ²å﨎咜咊咩哿喆å™å¥åž¬åŸˆåŸ‡ï¨ï¨å¢žå¢²å¤‹å¥“奛å¥å¥£å¦¤å¦ºå–寀甯寘寬尞岦岺峵崧嵓﨑嵂åµå¶¸å¶¹å·å¼¡å¼´å½§å¾·\"],[\"faa1\",\"å¿žææ‚…æ‚Šæƒžæƒ•æ„ æƒ²æ„‘æ„·æ„°æ†˜æˆ“æŠ¦æµæ‘ æ’æ“Žæ•Žæ˜€æ˜•æ˜»æ˜‰æ˜®æ˜žæ˜¤æ™¥æ™—æ™™ï¨’æ™³æš™æš æš²æš¿æ›ºæœŽï¤©æ¦æž»æ¡’æŸ€æ æ¡„æ£ï¨“æ¥¨ï¨”æ¦˜æ§¢æ¨°æ©«æ©†æ©³æ©¾æ«¢æ«¤æ¯–æ°¿æ±œæ²†æ±¯æ³šæ´„æ¶‡æµ¯æ¶–æ¶¬æ·æ·¸æ·²æ·¼æ¸¹æ¹œæ¸§æ¸¼æº¿æ¾ˆæ¾µæ¿µç€…瀇瀨炅炫ç„焄煜煆煇凞ç‡ç‡¾çб\"],[\"fba1\",\"犾猤猪ç·ç޽ç‰ç–ç£ç’ç‡çµç¦çªç©ç®ç‘¢ç’‰ç’Ÿç”畯皂皜皞皛皦益ç†åŠ¯ç ¡ç¡Žç¡¤ç¡ºç¤°ï¨˜ï¨™ï¨šç¦”ï¨›ç¦›ç«‘ç«§ï¨œç««ç®žï¨çµˆçµœç¶·ç¶ 緖繒罇羡羽èŒè¢è¿è‡è¶è‘ˆè’´è•“è•™è•«ï¨Ÿè–°ï¨ ï¨¡è ‡è£µè¨’è¨·è©¹èª§èª¾è«Ÿï¨¢è«¶è“è¿è³°è³´è´’赶﨣è»ï¨¤ï¨¥é§éƒžï¨¦é„•鄧釚\"],[\"fca1\",\"釗釞é‡é‡®é‡¤é‡¥éˆ†éˆéˆŠéˆºé‰€éˆ¼é‰Žé‰™é‰‘鈹鉧銧鉷鉸鋧鋗鋙é‹ï¨§é‹•é‹ é‹“éŒ¥éŒ¡é‹»ï¨¨éŒžé‹¿éŒéŒ‚é°é—鎤é†éžé¸é±é‘…鑈閒隆﨩éšéš¯éœ³éœ»éƒééé‘é•顗顥飯飼餧館馞驎髙髜éµé²é®é®±é®»é°€éµ°éµ«ï¨é¸™é»‘\"],[\"fcf1\",\"â…°\",9,\"¬¦'"\"],[\"8fa2af\",\"˘ˇ¸˙˯˛˚~΄΅\"],[\"8fa2c2\",\"¡¦¿\"],[\"8fa2eb\",\"ºª©®™¤№\"],[\"8fa6e1\",\"ΆΈΉΊΪ\"],[\"8fa6e7\",\"ÎŒ\"],[\"8fa6e9\",\"ΎΫ\"],[\"8fa6ec\",\"Î\"],[\"8fa6f1\",\"άÎήίϊÎόςÏϋΰώ\"],[\"8fa7c2\",\"Ђ\",10,\"ÐŽÐ\"],[\"8fa7f2\",\"Ñ’\",10,\"ўџ\"],[\"8fa9a1\",\"ÆÄ\"],[\"8fa9a4\",\"Ħ\"],[\"8fa9a6\",\"IJ\"],[\"8fa9a8\",\"ÅÄ¿\"],[\"8fa9ab\",\"ŊØŒ\"],[\"8fa9af\",\"ŦÞ\"],[\"8fa9c1\",\"æđðħıijĸłŀʼnŋøœßŧþ\"],[\"8faaa1\",\"ÃÀÄÂĂÇĀĄÅÃĆĈČÇĊĎÉÈËÊĚĖĒĘ\"],[\"8faaba\",\"ÄœÄžÄ¢Ä Ä¤ÃÃŒÃÃŽÇİĪĮĨĴĶĹĽĻŃŇŅÑÓÒÖÔǑÅŌÕŔŘŖŚŜŠŞŤŢÚÙÜÛŬǓŰŪŲŮŨǗǛǙǕŴßŶŹŽŻ\"],[\"8faba1\",\"áà äâăǎÄąåãćĉÄçċÄéèëêěėēęǵÄÄŸ\"],[\"8fabbd\",\"ġĥÃìïîÇ\"],[\"8fabc5\",\"īįĩĵķĺľļńňņñóòöôǒőÅõŕřŗśÅšşťţúùüûÅǔűūųůũǘǜǚǖŵýÿŷźžż\"],[\"8fb0a1\",\"丂丄丅丌丒丟丣两丨丫丮丯丰丵乀ä¹ä¹„乇乑乚乜乣乨乩乴乵乹乿äºäº–亗äºäº¯äº¹ä»ƒä»ä»šä»›ä» ä»¡ä»¢ä»¨ä»¯ä»±ä»³ä»µä»½ä»¾ä»¿ä¼€ä¼‚ä¼ƒä¼ˆä¼‹ä¼Œä¼’ä¼•ä¼–ä¼—ä¼™ä¼®ä¼±ä½ ä¼³ä¼µä¼·ä¼¹ä¼»ä¼¾ä½€ä½‚ä½ˆä½‰ä½‹ä½Œä½’ä½”ä½–ä½˜ä½Ÿä½£ä½ªä½¬ä½®ä½±ä½·ä½¸ä½¹ä½ºä½½ä½¾ä¾ä¾‚侄\"],[\"8fb1a1\",\"侅侉侊侌侎ä¾ä¾’侓侔侗侙侚侞侟侲侷侹侻侼侽侾俀ä¿ä¿…俆俈俉俋俌ä¿ä¿ä¿’ä¿œä¿ ä¿¢ä¿°ä¿²ä¿¼ä¿½ä¿¿å€€å€å€„倇倊倌倎å€å€“倗倘倛倜å€å€žå€¢å€§å€®å€°å€²å€³å€µå€åå‚å…å†åŠåŒåŽå‘å’å“å—å™åŸå å¢å£å¦å§åªåå°å±å€»å‚傃傄傆傊傎å‚å‚\"],[\"8fb2a1\",\"傒傓傔傖傛傜傞\",4,\"傪傯傰傹傺傽僀僃僄僇僌僎åƒåƒ“僔僘僜åƒåƒŸåƒ¢åƒ¤åƒ¦åƒ¨åƒ©åƒ¯åƒ±åƒ¶åƒºåƒ¾å„ƒå„†å„‡å„ˆå„‹å„Œå„儎僲å„儗儙儛儜å„儞儣儧儨儬å„儯儱儳儴儵儸儹兂兊å…兓兕兗兘兟兤兦兾冃冄冋冎冘å†å†¡å†£å†å†¸å†ºå†¼å†¾å†¿å‡‚\"],[\"8fb3a1\",\"凈å‡å‡‘凒凓凕凘凞凢凥凮凲凳凴凷åˆåˆ‚åˆ…åˆ’åˆ“åˆ•åˆ–åˆ˜åˆ¢åˆ¨åˆ±åˆ²åˆµåˆ¼å‰…å‰‰å‰•å‰—å‰˜å‰šå‰œå‰Ÿå‰ å‰¡å‰¦å‰®å‰·å‰¸å‰¹åŠ€åŠ‚åŠ…åŠŠåŠŒåŠ“åŠ•åŠ–åŠ—åŠ˜åŠšåŠœåŠ¤åŠ¥åŠ¦åŠ§åŠ¯åŠ°åŠ¶åŠ·åŠ¸åŠºåŠ»åŠ½å‹€å‹„å‹†å‹ˆå‹Œå‹å‹‘勔勖勛勜勡勥勨勩勪勬勰勱勴勶勷匀匃匊匋\"],[\"8fb4a1\",\"匌匑匓匘匛匜匞匟匥匧匨匩匫匬åŒåŒ°åŒ²åŒµåŒ¼åŒ½åŒ¾å‚åŒå‹å™å›å¡å£å¥å¬åå²å¹å¾åŽƒåŽ‡åŽˆåŽŽåŽ“åŽ”åŽ™åŽåŽ¡åŽ¤åŽªåŽ«åŽ¯åŽ²åŽ´åŽµåŽ·åŽ¸åŽºåŽ½å€å…åå’å“å•åšååžå å¦å§åµå‚å“åšå¡å§å¨åªå¯å±å´åµå‘ƒå‘„呇å‘å‘呞呢呤呦呧呩呫å‘呮呴呿\"],[\"8fb5a1\",\"å’咃咅咈咉å’咑咕咖咜咟咡咦咧咩咪å’咮咱咷咹咺咻咿哆哊å“å“Žå“ å“ªå“¬å“¯å“¶å“¼å“¾å“¿å”€å”唅唈唉唌å”唎唕唪唫唲唵唶唻唼唽å•啇啉啊å•å•å•‘å•˜å•šå•›å•žå• å•¡å•¤å•¦å•¿å–喂喆喈喎å–喑喒喓喔喗喣喤å–喲喿å—嗃嗆嗉嗋嗌嗎嗑嗒\"],[\"8fb6a1\",\"嗓嗗嗘嗛嗞嗢嗩嗶嗿嘅嘈嘊å˜\",5,\"嘙嘬嘰嘳嘵嘷嘹嘻嘼嘽嘿噀å™å™ƒå™„噆噉噋å™å™å™”å™žå™ å™¡å™¢å™£å™¦å™©å™å™¯å™±å™²å™µåš„嚅嚈嚋嚌嚕嚙嚚åšåšžåšŸåš¦åš§åš¨åš©åš«åš¬åšåš±åš³åš·åš¾å›…囉囊囋å›å›å›Œå›å›™å›œå›å›Ÿå›¡å›¤\",4,\"囱囫å›\"],[\"8fb7a1\",\"å›¶å›·åœåœ‚圇圊圌圑圕圚圛åœåœ 圢圣圤圥圩圪圬圮圯圳圴圽圾圿å…å†åŒåå’å¢å¥å§å¨å«å\",4,\"å³å´åµå·å¹åºå»å¼å¾åžåžƒåžŒåž”垗垙垚垜åžåžžåžŸåž¡åž•垧垨垩垬垸垽埇埈埌åŸåŸ•åŸåŸžåŸ¤åŸ¦åŸ§åŸ©åŸåŸ°åŸµåŸ¶åŸ¸åŸ½åŸ¾åŸ¿å ƒå „å ˆå ‰åŸ¡\"],[\"8fb8a1\",\"å Œå å ›å žå Ÿå å ¦å §å å ²å ¹å ¿å¡‰å¡Œå¡å¡å¡å¡•塟塡塤塧塨塸塼塿墀å¢å¢‡å¢ˆå¢‰å¢Šå¢Œå¢å¢å¢å¢”墖å¢å¢ 墡墢墦墩墱墲壄墼壂壈å£å£Žå£å£’壔壖壚å£å£¡å£¢å£©å£³å¤…夆夋夌夒夓夔è™å¤å¤¡å¤£å¤¤å¤¨å¤¯å¤°å¤³å¤µå¤¶å¤¿å¥ƒå¥†å¥’奓奙奛å¥å¥žå¥Ÿå¥¡å¥£å¥«å¥\"],[\"8fb9a1\",\"奯奲奵奶她奻奼妋妌妎妒妕妗妟妤妧å¦å¦®å¦¯å¦°å¦³å¦·å¦ºå¦¼å§å§ƒå§„姈姊å§å§’å§å§žå§Ÿå§£å§¤å§§å§®å§¯å§±å§²å§´å§·å¨€å¨„娌å¨å¨Žå¨’娓娞娣娤娧娨娪å¨å¨°å©„婅婇婈婌å©å©•婞婣婥婧å©å©·å©ºå©»å©¾åª‹åªåª“åª–åª™åªœåªžåªŸåª åª¢åª§åª¬åª±åª²åª³åªµåª¸åªºåª»åª¿\"],[\"8fbaa1\",\"嫄嫆嫈å«å«šå«œå« 嫥嫪嫮嫵嫶嫽嬀å¬å¬ˆå¬—嬴嬙嬛å¬å¬¡å¬¥å¬å¬¸åå‹åŒå’å–åžå¨å®å¯å¼å½å¾å¿å®å®„宆宊宎å®å®‘宓宔宖宨宩宬å®å®¯å®±å®²å®·å®ºå®¼å¯€å¯å¯å¯å¯–\",4,\"å¯ å¯¯å¯±å¯´å¯½å°Œå°—å°žå°Ÿå°£å°¦å°©å°«å°¬å°®å°°å°²å°µå°¶å±™å±šå±œå±¢å±£å±§å±¨å±©\"],[\"8fbba1\",\"å±å±°å±´å±µå±ºå±»å±¼å±½å²‡å²ˆå²Šå²å²’å²å²Ÿå² 岢岣岦岪岲岴岵岺峉峋峒å³å³—峮峱峲峴å´å´†å´å´’å´«å´£å´¤å´¦å´§å´±å´´å´¹å´½å´¿åµ‚åµƒåµ†åµˆåµ•åµ‘åµ™åµŠåµŸåµ åµ¡åµ¢åµ¤åµªåµåµ°åµ¹åµºåµ¾åµ¿å¶å¶ƒå¶ˆå¶Šå¶’å¶“å¶”å¶•å¶™å¶›å¶Ÿå¶ å¶§å¶«å¶°å¶´å¶¸å¶¹å·ƒå·‡å·‹å·å·Žå·˜å·™å· å·¤\"],[\"8fbca1\",\"巩巸巹帀帇å¸å¸’å¸”å¸•å¸˜å¸Ÿå¸ å¸®å¸¨å¸²å¸µå¸¾å¹‹å¹å¹‰å¹‘幖幘幛幜幞幨幪\",4,\"幰庀庋庎庢庤庥庨庪庬庱庳庽庾庿廆廌廋廎廑廒廔廕廜廞廥廫异弆弇弈弎弙弜å¼å¼¡å¼¢å¼£å¼¤å¼¨å¼«å¼¬å¼®å¼°å¼´å¼¶å¼»å¼½å¼¿å½€å½„彅彇å½å½å½”å½˜å½›å½ å½£å½¤å½§\"],[\"8fbda1\",\"彯彲彴彵彸彺彽彾徉å¾å¾å¾–徜å¾å¾¢å¾§å¾«å¾¤å¾¬å¾¯å¾°å¾±å¾¸å¿„忇忈忉忋å¿\",4,\"忞忡忢忨忩忪忬å¿å¿®å¿¯å¿²å¿³å¿¶å¿ºå¿¼æ€‡æ€Šæ€æ€“æ€”æ€—æ€˜æ€šæ€Ÿæ€¤æ€æ€³æ€µæ€æ‡æˆæ‰æŒæ‘æ”æ–æ—ææ¡æ§æ±æ¾æ¿æ‚‚æ‚†æ‚ˆæ‚Šæ‚Žæ‚‘æ‚“æ‚•æ‚˜æ‚æ‚žæ‚¢æ‚¤æ‚¥æ‚¨æ‚°æ‚±æ‚·\"],[\"8fbea1\",\"æ‚»æ‚¾æƒ‚æƒ„æƒˆæƒ‰æƒŠæƒ‹æƒŽæƒæƒ”æƒ•æƒ™æƒ›æƒæƒžæƒ¢æƒ¥æƒ²æƒµæƒ¸æƒ¼æƒ½æ„‚愇愊愌æ„\",4,\"æ„–æ„—æ„™æ„œæ„žæ„¢æ„ªæ„«æ„°æ„±æ„µæ„¶æ„·æ„¹æ…æ……æ…†æ…‰æ…žæ… æ…¬æ…²æ…¸æ…»æ…¼æ…¿æ†€æ†æ†ƒæ†„æ†‹æ†æ†’æ†“æ†—æ†˜æ†œæ†æ†Ÿæ† æ†¥æ†¨æ†ªæ†æ†¸æ†¹æ†¼æ‡€æ‡æ‡‚æ‡Žæ‡æ‡•æ‡œæ‡æ‡žæ‡Ÿæ‡¡æ‡¢æ‡§æ‡©æ‡¥\"],[\"8fbfa1\",\"æ‡¬æ‡æ‡¯æˆæˆƒæˆ„æˆ‡æˆ“æˆ•æˆœæˆ æˆ¢æˆ£æˆ§æˆ©æˆ«æˆ¹æˆ½æ‰‚æ‰ƒæ‰„æ‰†æ‰Œæ‰æ‰‘æ‰’æ‰”æ‰–æ‰šæ‰œæ‰¤æ‰æ‰¯æ‰³æ‰ºæ‰½æŠæŠŽæŠæŠæŠ¦æŠ¨æŠ³æŠ¶æŠ·æŠºæŠ¾æŠ¿æ‹„æ‹Žæ‹•æ‹–æ‹šæ‹ªæ‹²æ‹´æ‹¼æ‹½æŒƒæŒ„æŒŠæŒ‹æŒæŒæŒ“æŒ–æŒ˜æŒ©æŒªæŒæŒµæŒ¶æŒ¹æŒ¼ææ‚æƒæ„æ†æŠæ‹æŽæ’æ“æ”æ˜æ›æ¥æ¦æ¬ææ±æ´æµ\"],[\"8fc0a1\",\"æ¸æ¼æ½æ¿æŽ‚æŽ„æŽ‡æŽŠæŽæŽ”æŽ•æŽ™æŽšæŽžæŽ¤æŽ¦æŽæŽ®æŽ¯æŽ½ææ…æˆæŽæ‘æ“æ”æ•æœæ æ¥æªæ¬æ²æ³æµæ¸æ¹æ‰æŠææ’æ”æ˜æžæ æ¢æ¤æ¥æ©æªæ¯æ°æµæ½æ¿æ‘‹æ‘æ‘‘æ‘’æ‘“æ‘”æ‘šæ‘›æ‘œæ‘æ‘Ÿæ‘ æ‘¡æ‘£æ‘æ‘³æ‘´æ‘»æ‘½æ’…æ’‡æ’æ’æ’‘æ’˜æ’™æ’›æ’æ’Ÿæ’¡æ’£æ’¦æ’¨æ’¬æ’³æ’½æ’¾æ’¿\"],[\"8fc1a1\",\"æ“„æ“‰æ“Šæ“‹æ“Œæ“Žæ“æ“‘æ“•æ“—æ“¤æ“¥æ“©æ“ªæ“æ“°æ“µæ“·æ“»æ“¿æ”æ”„æ”ˆæ”‰æ”Šæ”æ”“æ””æ”–æ”™æ”›æ”žæ”Ÿæ”¢æ”¦æ”©æ”®æ”±æ”ºæ”¼æ”½æ•ƒæ•‡æ•‰æ•æ•’æ•”æ•Ÿæ• æ•§æ•«æ•ºæ•½æ–æ–…æ–Šæ–’æ–•æ–˜æ–æ– æ–£æ–¦æ–®æ–²æ–³æ–´æ–¿æ—‚æ—ˆæ—‰æ—Žæ—æ—”æ—–æ—˜æ—Ÿæ—°æ—²æ—´æ—µæ—¹æ—¾æ—¿æ˜€æ˜„æ˜ˆæ˜‰æ˜æ˜‘昒昕昖æ˜\"],[\"8fc2a1\",\"æ˜žæ˜¡æ˜¢æ˜£æ˜¤æ˜¦æ˜©æ˜ªæ˜«æ˜¬æ˜®æ˜°æ˜±æ˜³æ˜¹æ˜·æ™€æ™…æ™†æ™Šæ™Œæ™‘æ™Žæ™—æ™˜æ™™æ™›æ™œæ™ æ™¡æ›»æ™ªæ™«æ™¬æ™¾æ™³æ™µæ™¿æ™·æ™¸æ™¹æ™»æš€æ™¼æš‹æšŒæšæšæš’æš™æššæš›æšœæšŸæš æš¤æšæš±æš²æšµæš»æš¿æ›€æ›‚æ›ƒæ›ˆæ›Œæ›Žæ›æ›”æ››æ›Ÿæ›¨æ›«æ›¬æ›®æ›ºæœ…æœ‡æœŽæœ“æœ™æœœæœ æœ¢æœ³æœ¾æ…æ‡æˆæŒæ”æ•æ\"],[\"8fc3a1\",\"æ¦æ¬æ®æ´æ¶æ»æžæž„æžŽæžæž‘æž“æž–æž˜æž™æž›æž°æž±æž²æžµæž»æž¼æž½æŸ¹æŸ€æŸ‚æŸƒæŸ…æŸˆæŸ‰æŸ’æŸ—æŸ™æŸœæŸ¡æŸ¦æŸ°æŸ²æŸ¶æŸ·æ¡’æ ”æ ™æ æ Ÿæ ¨æ §æ ¬æ æ ¯æ °æ ±æ ³æ »æ ¿æ¡„æ¡…æ¡Šæ¡Œæ¡•æ¡—æ¡˜æ¡›æ¡«æ¡®\",4,\"桵桹桺桻桼梂梄梆梈梖梘梚梜梡梣梥梩梪梮梲梻棅棈棌æ£\"],[\"8fc4a1\",\"æ£æ£‘æ£“æ£–æ£™æ£œæ£æ£¥æ£¨æ£ªæ£«æ£¬æ£æ£°æ£±æ£µæ£¶æ£»æ£¼æ£½æ¤†æ¤‰æ¤Šæ¤æ¤‘æ¤“æ¤–æ¤—æ¤±æ¤³æ¤µæ¤¸æ¤»æ¥‚æ¥…æ¥‰æ¥Žæ¥—æ¥›æ¥£æ¥¤æ¥¥æ¥¦æ¥¨æ¥©æ¥¬æ¥°æ¥±æ¥²æ¥ºæ¥»æ¥¿æ¦€æ¦æ¦’æ¦–æ¦˜æ¦¡æ¦¥æ¦¦æ¦¨æ¦«æ¦æ¦¯æ¦·æ¦¸æ¦ºæ¦¼æ§…æ§ˆæ§‘æ§–æ§—æ§¢æ§¥æ§®æ§¯æ§±æ§³æ§µæ§¾æ¨€æ¨æ¨ƒæ¨æ¨‘æ¨•æ¨šæ¨æ¨ 樤樨樰樲\"],[\"8fc5a1\",\"æ¨´æ¨·æ¨»æ¨¾æ¨¿æ©…æ©†æ©‰æ©Šæ©Žæ©æ©‘æ©’æ©•æ©–æ©›æ©¤æ©§æ©ªæ©±æ©³æ©¾æªæªƒæª†æª‡æª‰æª‹æª‘æª›æªæªžæªŸæª¥æª«æª¯æª°æª±æª´æª½æª¾æª¿æ«†æ«‰æ«ˆæ«Œæ«æ«”æ«•æ«–æ«œæ«æ«¤æ«§æ«¬æ«°æ«±æ«²æ«¼æ«½æ¬‚æ¬ƒæ¬†æ¬‡æ¬‰æ¬æ¬æ¬‘æ¬—æ¬›æ¬žæ¬¤æ¬¨æ¬«æ¬¬æ¬¯æ¬µæ¬¶æ¬»æ¬¿æ†æŠææ’æ–æ˜ææ æ§æ«æ®æ°æµæ½\"],[\"8fc6a1\",\"æ¾æ®‚æ®…æ®—æ®›æ®Ÿæ® æ®¢æ®£æ®¨æ®©æ®¬æ®æ®®æ®°æ®¸æ®¹æ®½æ®¾æ¯ƒæ¯„æ¯‰æ¯Œæ¯–æ¯šæ¯¡æ¯£æ¯¦æ¯§æ¯®æ¯±æ¯·æ¯¹æ¯¿æ°‚æ°„æ°…æ°‰æ°æ°Žæ°æ°’æ°™æ°Ÿæ°¦æ°§æ°¨æ°¬æ°®æ°³æ°µæ°¶æ°ºæ°»æ°¿æ±Šæ±‹æ±æ±æ±’æ±”æ±™æ±›æ±œæ±«æ±æ±¯æ±´æ±¶æ±¸æ±¹æ±»æ²…æ²†æ²‡æ²‰æ²”æ²•æ²—æ²˜æ²œæ²Ÿæ²°æ²²æ²´æ³‚æ³†æ³æ³æ³æ³‘泒泔泖\"],[\"8fc7a1\",\"æ³šæ³œæ³ æ³§æ³©æ³«æ³¬æ³®æ³²æ³´æ´„æ´‡æ´Šæ´Žæ´æ´‘æ´“æ´šæ´¦æ´§æ´¨æ±§æ´®æ´¯æ´±æ´¹æ´¼æ´¿æµ—æµžæµŸæµ¡æµ¥æµ§æµ¯æµ°æµ¼æ¶‚æ¶‡æ¶‘æ¶’æ¶”æ¶–æ¶—æ¶˜æ¶ªæ¶¬æ¶´æ¶·æ¶¹æ¶½æ¶¿æ·„æ·ˆæ·Šæ·Žæ·æ·–æ·›æ·æ·Ÿæ· æ·¢æ·¥æ·©æ·¯æ·°æ·´æ·¶æ·¼æ¸€æ¸„æ¸žæ¸¢æ¸§æ¸²æ¸¶æ¸¹æ¸»æ¸¼æ¹„æ¹…æ¹ˆæ¹‰æ¹‹æ¹æ¹‘æ¹’æ¹“æ¹”æ¹—æ¹œæ¹æ¹ž\"],[\"8fc8a1\",\"æ¹¢æ¹£æ¹¨æ¹³æ¹»æ¹½æºæº“æº™æº æº§æºæº®æº±æº³æº»æº¿æ»€æ»æ»ƒæ»‡æ»ˆæ»Šæ»æ»Žæ»æ»«æ»æ»®æ»¹æ»»æ»½æ¼„æ¼ˆæ¼Šæ¼Œæ¼æ¼–æ¼˜æ¼šæ¼›æ¼¦æ¼©æ¼ªæ¼¯æ¼°æ¼³æ¼¶æ¼»æ¼¼æ¼æ½æ½‘æ½’æ½“æ½—æ½™æ½šæ½æ½žæ½¡æ½¢æ½¨æ½¬æ½½æ½¾æ¾ƒæ¾‡æ¾ˆæ¾‹æ¾Œæ¾æ¾æ¾’æ¾“æ¾”æ¾–æ¾šæ¾Ÿæ¾ æ¾¥æ¾¦æ¾§æ¾¨æ¾®æ¾¯æ¾°æ¾µæ¾¶æ¾¼æ¿…æ¿‡æ¿ˆæ¿Š\"],[\"8fc9a1\",\"濚濞濨濩濰濵濹濼濽瀀瀅瀆瀇ç€ç€—ç€ ç€£ç€¯ç€´ç€·ç€¹ç€¼çƒç„çˆç‰çŠç‹ç”ç•ççžçŽç¤ç¥ç¬ç®çµç¶ç¾ç‚炅炆炔\",4,\"炛炤炫炰炱炴炷烊烑烓烔烕烖烘烜烤烺焃\",4,\"焋焌ç„ç„žç„ ç„«ç„焯焰焱焸ç…煅煆煇煊煋ç…ç…’ç…—ç…šç…œç…žç… \"],[\"8fcaa1\",\"ç…¨ç…¹ç†€ç†…ç†‡ç†Œç†’ç†šç†›ç† ç†¢ç†¯ç†°ç†²ç†³ç†ºç†¿ç‡€ç‡ç‡„燋燌燓燖燙燚燜燸燾爀爇爈爉爓爗爚çˆçˆŸçˆ¤çˆ«çˆ¯çˆ´çˆ¸çˆ¹ç‰ç‰‚牃牅牎ç‰ç‰ç‰“ç‰•ç‰–ç‰šç‰œç‰žç‰ ç‰£ç‰¨ç‰«ç‰®ç‰¯ç‰±ç‰·ç‰¸ç‰»ç‰¼ç‰¿çŠ„çŠ‰çŠçŠŽçŠ“çŠ›çŠ¨çŠçŠ®çŠ±çŠ´çŠ¾ç‹ç‹‡ç‹‰ç‹Œç‹•狖狘狟狥狳狴狺狻\"],[\"8fcba1\",\"狾猂猄猅猇猋çŒçŒ’猓猘猙猞猢猤猧猨猬猱猲猵猺猻猽çƒççç’ç–ç˜ççžçŸç ç¦ç§ç©ç«ç¬ç®ç¯ç±ç·ç¹ç¼çŽ€çŽçŽƒçŽ…çŽ†çŽŽçŽçŽ“çŽ•çŽ—çŽ˜çŽœçŽžçŽŸçŽ çŽ¢çŽ¥çŽ¦çŽªçŽ«çŽçŽµçŽ·çŽ¹çŽ¼çŽ½çŽ¿ç…ç†ç‰ç‹çŒçç’ç“ç–ç™çç¡ç£ç¦ç§ç©ç´çµç·ç¹çºç»ç½\"],[\"8fcca1\",\"ç¿ç€çç„ç‡çŠç‘çšç›ç¤ç¦ç¨\",9,\"ç¹ç‘€ç‘ƒç‘„瑆瑇瑋ç‘ç‘‘ç‘’ç‘—ç‘瑢瑦瑧瑨瑫ç‘瑮瑱瑲璀ç’璅璆璇璉ç’ç’ç’‘ç’’ç’˜ç’™ç’šç’œç’Ÿç’ ç’¡ç’£ç’¦ç’¨ç’©ç’ªç’«ç’®ç’¯ç’±ç’²ç’µç’¹ç’»ç’¿ç“ˆç“‰ç“Œç“瓓瓘瓚瓛瓞瓟瓤瓨瓪瓫瓯瓴瓺瓻瓼瓿甆\"],[\"8fcda1\",\"ç”’ç”–ç”—ç” ç”¡ç”¤ç”§ç”©ç”ªç”¯ç”¶ç”¹ç”½ç”¾ç”¿ç•€ç•ƒç•‡ç•ˆç•Žç•畒畗畞畟畡畯畱畹\",5,\"ç–ç–…ç–疒疓疕疙疜疢疤疴疺疿痀ç—痄痆痌痎ç—ç——ç—œç—Ÿç— ç—¡ç—¤ç—§ç—¬ç—®ç—¯ç—±ç—¹ç˜€ç˜‚ç˜ƒç˜„ç˜‡ç˜ˆç˜Šç˜Œç˜ç˜’瘓瘕瘖瘙瘛瘜ç˜ç˜žç˜£ç˜¥ç˜¦ç˜©ç˜ç˜²ç˜³ç˜µç˜¸ç˜¹\"],[\"8fcea1\",\"瘺瘼癊癀ç™ç™ƒç™„癅癉癋癕癙癟癤癥ç™ç™®ç™¯ç™±ç™´çšçš…皌çšçš•皛皜çšçšŸçš 皢\",6,\"皪çšçš½ç›ç›…ç›‰ç›‹ç›Œç›Žç›”ç›™ç› ç›¦ç›¨ç›¬ç›°ç›±ç›¶ç›¹ç›¼çœ€çœ†çœŠçœŽçœ’çœ”çœ•çœ—çœ™çœšçœœçœ¢çœ¨çœçœ®çœ¯çœ´çœµçœ¶çœ¹çœ½çœ¾ç‚ç…ç†çŠççŽçç’ç–ç—çœçžçŸç ç¢\"],[\"8fcfa1\",\"ç¤ç§çªç¬ç°ç²ç³ç´çºç½çž€çž„瞌çžçž”çž•çž–çžšçžŸçž¢çž§çžªçž®çž¯çž±çžµçž¾çŸƒçŸ‰çŸ‘çŸ’çŸ•çŸ™çŸžçŸŸçŸ çŸ¤çŸ¦çŸªçŸ¬çŸ°çŸ±çŸ´çŸ¸çŸ»ç …ç †ç ‰ç ç Žç ‘ç ç ¡ç ¢ç £ç ç ®ç °ç µç ·ç¡ƒç¡„ç¡‡ç¡ˆç¡Œç¡Žç¡’ç¡œç¡žç¡ ç¡¡ç¡£ç¡¤ç¡¨ç¡ªç¡®ç¡ºç¡¾ç¢Šç¢ç¢”碘碡ç¢ç¢žç¢Ÿç¢¤ç¢¨ç¢¬ç¢ç¢°ç¢±ç¢²ç¢³\"],[\"8fd0a1\",\"ç¢»ç¢½ç¢¿ç£‡ç£ˆç£‰ç£Œç£Žç£’ç£“ç£•ç£–ç£¤ç£›ç£Ÿç£ ç£¡ç£¦ç£ªç£²ç£³ç¤€ç£¶ç£·ç£ºç£»ç£¿ç¤†ç¤Œç¤ç¤šç¤œç¤žç¤Ÿç¤ 礥礧礩ç¤ç¤±ç¤´ç¤µç¤»ç¤½ç¤¿ç¥„祅祆祊祋ç¥ç¥‘祔祘祛祜祧祩祫祲祹祻祼祾禋禌禑禓禔禕禖禘禛禜禡禨禩禫禯禱禴禸离秂秄秇秈秊ç§ç§”ç§–ç§šç§ç§ž\"],[\"8fd1a1\",\"ç§ ç§¢ç§¥ç§ªç§«ç§ç§±ç§¸ç§¼ç¨‚稃稇稉稊稌稑稕稛稞稡稧稫ç¨ç¨¯ç¨°ç¨´ç¨µç¨¸ç¨¹ç¨ºç©„穅穇穈穌穕穖穙穜ç©ç©Ÿç© 穥穧穪ç©ç©µç©¸ç©¾çª€çª‚窅窆窊窋çªçª‘çª”çªžçª çª£çª¬çª³çªµçª¹çª»çª¼ç«†ç«‰ç«Œç«Žç«‘ç«›ç«¨ç«©ç««ç«¬ç«±ç«´ç«»ç«½ç«¾ç¬‡ç¬”ç¬Ÿç¬£ç¬§ç¬©ç¬ªç¬«ç¬ç¬®ç¬¯ç¬°\"],[\"8fd2a1\",\"笱笴笽笿ç€çç‡çŽç•ç ç¤ç¦ç©çªçç¯ç²ç³ç·ç®„箉箎ç®ç®‘ç®–ç®›ç®žç® ç®¥ç®¬ç®¯ç®°ç®²ç®µç®¶ç®ºç®»ç®¼ç®½ç¯‚ç¯…ç¯ˆç¯Šç¯”ç¯–ç¯—ç¯™ç¯šç¯›ç¯¨ç¯ªç¯²ç¯´ç¯µç¯¸ç¯¹ç¯ºç¯¼ç¯¾ç°ç°‚簃簄簆簉簋簌簎ç°ç°™ç°›ç° 簥簦簨簬簱簳簴簶簹簺籆籊籕籑籒籓籙\",5],[\"8fd3a1\",\"籡籣籧籩ç±ç±®ç±°ç±²ç±¹ç±¼ç±½ç²†ç²‡ç²ç²”ç²žç² ç²¦ç²°ç²¶ç²·ç²ºç²»ç²¼ç²¿ç³„ç³‡ç³ˆç³‰ç³ç³ç³“糔糕糗糙糚ç³ç³¦ç³©ç³«ç³µç´ƒç´‡ç´ˆç´‰ç´ç´‘ç´’ç´“ç´–ç´ç´žç´£ç´¦ç´ªç´ç´±ç´¼ç´½ç´¾çµ€çµçµ‡çµˆçµçµ‘絓絗絙絚絜çµçµ¥çµ§çµªçµ°çµ¸çµºçµ»çµ¿ç¶ç¶‚綃綅綆綈綋綌ç¶ç¶‘ç¶–ç¶—ç¶\"],[\"8fd4a1\",\"綞綦綧綪綳綶綷綹緂\",4,\"ç·Œç·ç·Žç·—緙縀緢緥緦緪緫ç·ç·±ç·µç·¶ç·¹ç·ºç¸ˆç¸ç¸‘縕縗縜ç¸ç¸ 縧縨縬ç¸ç¸¯ç¸³ç¸¶ç¸¿ç¹„繅繇繎ç¹ç¹’繘繟繡繢繥繫繮繯繳繸繾çºçº†çº‡çºŠçºçº‘纕纘纚çºçºžç¼¼ç¼»ç¼½ç¼¾ç¼¿ç½ƒç½„罇ç½ç½’罓罛罜ç½ç½¡ç½£ç½¤ç½¥ç½¦ç½\"],[\"8fd5a1\",\"罱罽罾罿羀羋ç¾ç¾ç¾ç¾‘羖羗羜羡羢羦羪ç¾ç¾´ç¾¼ç¾¿ç¿€ç¿ƒç¿ˆç¿Žç¿ç¿›ç¿Ÿç¿£ç¿¥ç¿¨ç¿¬ç¿®ç¿¯ç¿²ç¿ºç¿½ç¿¾ç¿¿è€‡è€ˆè€Šè€è€Žè€è€‘耓耔耖è€è€žè€Ÿè€ 耤耦耬耮耰耴耵耷耹耺耼耾è€è„è è¤è¦èè±èµè‚肈肎肜肞肦肧肫肸肹胈èƒèƒèƒ’èƒ”èƒ•èƒ—èƒ˜èƒ èƒèƒ®\"],[\"8fd6a1\",\"èƒ°èƒ²èƒ³èƒ¶èƒ¹èƒºèƒ¾è„ƒè„‹è„–è„—è„˜è„œè„žè„ è„¤è„§è„¬è„°è„µè„ºè„¼è……è…‡è…Šè…Œè…’è…—è… è…¡è…§è…¨è…©è…腯腷è†è†è†„膅膆膋膎膖膘膛膞膢膮膲膴膻臋臃臅臊臎è‡è‡•臗臛è‡è‡žè‡¡è‡¤è‡«è‡¬è‡°è‡±è‡²è‡µè‡¶è‡¸è‡¹è‡½è‡¿èˆ€èˆƒèˆèˆ“舔舙舚èˆèˆ¡èˆ¢èˆ¨èˆ²èˆ´èˆºè‰ƒè‰„艅艆\"],[\"8fd7a1\",\"艋艎è‰è‰‘è‰–è‰œè‰ è‰£è‰§è‰è‰´è‰»è‰½è‰¿èŠ€èŠèŠƒèŠ„èŠ‡èŠ‰èŠŠèŠŽèŠ‘èŠ”èŠ–èŠ˜èŠšèŠ›èŠ èŠ¡èŠ£èŠ¤èŠ§èŠ¨èŠ©èŠªèŠ®èŠ°èŠ²èŠ´èŠ·èŠºèŠ¼èŠ¾èŠ¿è‹†è‹è‹•è‹šè‹ è‹¢è‹¤è‹¨è‹ªè‹è‹¯è‹¶è‹·è‹½è‹¾èŒ€èŒèŒ‡èŒˆèŒŠèŒ‹è”茛èŒèŒžèŒŸèŒ¡èŒ¢èŒ¬èŒèŒ®èŒ°èŒ³èŒ·èŒºèŒ¼èŒ½è‚èƒè„è‡èèŽè‘è•è–è—è°è¸\"],[\"8fd8a1\",\"è½è¿èŽ€èŽ‚èŽ„èŽ†èŽèŽ’èŽ”èŽ•èŽ˜èŽ™èŽ›èŽœèŽèŽ¦èŽ§èŽ©èŽ¬èŽ¾èŽ¿è€è‡è‰èèè‘è”èè“è¨èªè¶è¸è¹è¼èè†èŠèè‘è•è™èŽè¯è¹è‘…葇葈葊è‘è‘è‘‘è‘’è‘–è‘˜è‘™è‘šè‘œè‘ è‘¤è‘¥è‘§è‘ªè‘°è‘³è‘´è‘¶è‘¸è‘¼è‘½è’蒅蒒蒓蒕蒞蒦蒨蒩蒪蒯蒱蒴蒺蒽蒾蓀蓂蓇蓈蓌è“è““\"],[\"8fd9a1\",\"蓜蓧蓪蓯蓰蓱蓲蓷蔲蓺蓻蓽蔂蔃蔇蔌蔎è”蔜蔞蔢蔣蔤蔥蔧蔪蔫蔯蔳蔴蔶蔿蕆è•\",4,\"蕖蕙蕜\",6,\"蕤蕫蕯蕹蕺蕻蕽蕿è–薅薆薉薋薌è–è–“è–˜è–è–Ÿè– è–¢è–¥è–§è–´è–¶è–·è–¸è–¼è–½è–¾è–¿è—‚è—‡è—Šè—‹è—Žè–è—˜è—šè—Ÿè— è—¦è—¨è—藳藶藼\"],[\"8fdaa1\",\"藿蘀蘄蘅è˜è˜Žè˜è˜‘蘒蘘蘙蘛蘞蘡蘧蘩蘶蘸蘺蘼蘽虀虂虆虒虓虖虗虘虙è™è™ \",4,\"虩虬虯虵虶虷虺èšèš‘蚖蚘蚚蚜蚡蚦蚧蚨èšèš±èš³èš´èšµèš·èš¸èš¹èš¿è›€è›è›ƒè›…è›‘è›’è›•è›—è›šè›œè› è›£è›¥è›§èšˆè›ºè›¼è›½èœ„èœ…èœ‡èœ‹èœŽèœèœèœ“蜔蜙蜞蜟蜡蜣\"],[\"8fdba1\",\"蜨蜮蜯蜱蜲蜹蜺蜼蜽蜾è€èƒè…èè˜èè¡è¤è¥è¯è±è²è»èžƒ\",6,\"螋螌èžèž“èž•èž—èž˜èž™èžžèž èž£èž§èž¬èžèž®èž±èžµèž¾èž¿èŸèŸˆèŸ‰èŸŠèŸŽèŸ•蟖蟙蟚蟜蟟蟢蟣蟤蟪蟫èŸèŸ±èŸ³èŸ¸èŸºèŸ¿è è ƒè †è ‰è Šè ‹è è ™è ’è “è ”è ˜è šè ›è œè žè Ÿè ¨è è ®è °è ²è µ\"],[\"8fdca1\",\"è ºè ¼è¡è¡ƒè¡…è¡ˆè¡‰è¡Šè¡‹è¡Žè¡‘è¡•è¡–è¡˜è¡šè¡œè¡Ÿè¡ è¡¤è¡©è¡±è¡¹è¡»è¢€è¢˜è¢šè¢›è¢œè¢Ÿè¢ è¢¨è¢ªè¢ºè¢½è¢¾è£€è£Š\",4,\"裑裒裓裛裞裧裯裰裱裵裷è¤è¤†è¤è¤Žè¤è¤•è¤–è¤˜è¤™è¤šè¤œè¤ è¤¦è¤§è¤¨è¤°è¤±è¤²è¤µè¤¹è¤ºè¤¾è¥€è¥‚è¥…è¥†è¥‰è¥è¥’襗襚襛襜襡襢襣襫襮襰襳襵襺\"],[\"8fdda1\",\"襻襼襽覉è¦è¦è¦”è¦•è¦›è¦œè¦Ÿè¦ è¦¥è¦°è¦´è¦µè¦¶è¦·è¦¼è§”\",4,\"觥觩觫è§è§±è§³è§¶è§¹è§½è§¿è¨„訅訇è¨è¨‘è¨’è¨”è¨•è¨žè¨ è¨¢è¨¤è¨¦è¨«è¨¬è¨¯è¨µè¨·è¨½è¨¾è©€è©ƒè©…è©‡è©‰è©è©Žè©“詖詗詘詜è©è©¡è©¥è©§è©µè©¶è©·è©¹è©ºè©»è©¾è©¿èª€èªƒèª†èª‹èªèªèª’誖誗誙誟誧誩誮誯誳\"],[\"8fdea1\",\"誶誷誻誾諃諆諈諉諊諑諓諔諕諗è«è«Ÿè«¬è«°è«´è«µè«¶è«¼è«¿è¬…謆謋謑謜謞謟謊è¬è¬°è¬·è¬¼è‚\",4,\"èˆè’è“è”è™èèžè£èè¶è¸è¹è¼è¾è®è®„讅讋è®è®è®”讕讜讞讟谸谹谽谾豅豇豉豋è±è±‘豓豔豗豘豛è±è±™è±£è±¤è±¦è±¨è±©è±è±³è±µè±¶è±»è±¾è²†\"],[\"8fdfa1\",\"貇貋è²è²’貓貙貛貜貤貹貺賅賆賉賋è³è³–賕賙è³è³¡è³¨è³¬è³¯è³°è³²è³µè³·è³¸è³¾è³¿è´è´ƒè´‰è´’贗贛赥赩赬赮赿趂趄趈è¶è¶è¶‘è¶•è¶žè¶Ÿè¶ è¶¦è¶«è¶¬è¶¯è¶²è¶µè¶·è¶¹è¶»è·€è·…è·†è·‡è·ˆè·Šè·Žè·‘è·”è·•è·—è·™è·¤è·¥è·§è·¬è·°è¶¼è·±è·²è·´è·½è¸è¸„è¸…è¸†è¸‹è¸‘è¸”è¸–è¸ è¸¡è¸¢\"],[\"8fe0a1\",\"踣踦踧踱踳踶踷踸踹踽蹀è¹è¹‹è¹è¹Žè¹è¹”蹛蹜è¹è¹žè¹¡è¹¢è¹©è¹¬è¹è¹¯è¹°è¹±è¹¹è¹ºè¹»èº‚躃躉èºèº’躕躚躛èºèºžèº¢èº§èº©èºèº®èº³èºµèººèº»è»€è»è»ƒè»„軇è»è»‘軔軜軨軮軰軱軷軹軺è»è¼€è¼‚輇輈è¼è¼è¼–è¼—è¼˜è¼žè¼ è¼¡è¼£è¼¥è¼§è¼¨è¼¬è¼è¼®è¼´è¼µè¼¶è¼·è¼ºè½€è½\"],[\"8fe1a1\",\"轃轇è½è½‘\",4,\"轘è½è½žè½¥è¾è¾ 辡辤辥辦辵辶辸达迀è¿è¿†è¿Šè¿‹è¿è¿è¿’è¿“è¿•è¿ è¿£è¿¤è¿¨è¿®è¿±è¿µè¿¶è¿»è¿¾é€‚é€„é€ˆé€Œé€˜é€›é€¨é€©é€¯é€ªé€¬é€é€³é€´é€·é€¿éƒé„éŒé›éé¢é¦é§é¬é°é´é¹é‚…邈邋邌邎é‚é‚•é‚—é‚˜é‚™é‚›é‚ é‚¡é‚¢é‚¥é‚°é‚²é‚³é‚´é‚¶é‚½éƒŒé‚¾éƒƒ\"],[\"8fe2a1\",\"郄郅郇郈郕郗郘郙郜éƒéƒŸéƒ¥éƒ’郶郫郯郰郴郾郿鄀鄄鄅鄆鄈é„é„é„”é„–é„—é„˜é„šé„œé„žé„ é„¥é„¢é„£é„§é„©é„®é„¯é„±é„´é„¶é„·é„¹é„ºé„¼é„½é…ƒé…‡é…ˆé…酓酗酙酚酛酡酤酧é…酴酹酺酻é†é†ƒé†…醆醊醎醑醓醔醕醘醞醡醦醨醬é†é†®é†°é†±é†²é†³é†¶é†»é†¼é†½é†¿\"],[\"8fe3a1\",\"釂釃釅釓釔釗釙釚釞釤釥釩釪釬\",5,\"釷釹釻釽鈀éˆéˆ„鈅鈆鈇鈉鈊鈌éˆéˆ’鈓鈖鈘鈜éˆéˆ£éˆ¤éˆ¥éˆ¦éˆ¨éˆ®éˆ¯éˆ°éˆ³éˆµéˆ¶éˆ¸éˆ¹éˆºéˆ¼éˆ¾é‰€é‰‚鉃鉆鉇鉊é‰é‰Žé‰é‰‘鉘鉙鉜é‰é‰ 鉡鉥鉧鉨鉩鉮鉯鉰鉵\",4,\"鉻鉼鉽鉿銈銉銊éŠéŠŽéŠ’éŠ—\"],[\"8fe4a1\",\"éŠ™éŠŸéŠ éŠ¤éŠ¥éŠ§éŠ¨éŠ«éŠ¯éŠ²éŠ¶éŠ¸éŠºéŠ»éŠ¼éŠ½éŠ¿\",4,\"鋅鋆鋇鋈鋋鋌é‹é‹Žé‹é‹“鋕鋗鋘鋙鋜é‹é‹Ÿé‹ 鋡鋣鋥鋧鋨鋬鋮鋰鋹鋻鋿錀錂錈éŒéŒ‘錔錕錜éŒéŒžéŒŸéŒ¡éŒ¤éŒ¥éŒ§éŒ©éŒªéŒ³éŒ´éŒ¶éŒ·é‡éˆé‰éé‘é’é•é—é˜éšéžé¤é¥é§é©éªéé¯é°é±é³é´é¶\"],[\"8fe5a1\",\"éºé½é¿éŽ€éŽéŽ‚éŽˆéŽŠéŽ‹éŽéŽéŽ’éŽ•éŽ˜éŽ›éŽžéŽ¡éŽ£éŽ¤éŽ¦éŽ¨éŽ«éŽ´éŽµéŽ¶éŽºéŽ©éé„é…é†é‡é‰\",4,\"é“é™éœéžéŸé¢é¦é§é¹é·é¸éºé»é½éé‚é„éˆé‰ééŽéé•é–é—éŸé®é¯é±é²é³é´é»é¿é½é‘ƒé‘…鑈鑊鑌鑕鑙鑜鑟鑡鑣鑨鑫é‘鑮鑯鑱鑲钄钃镸镹\"],[\"8fe6a1\",\"镾閄閈閌é–é–Žé–閞閟閡閦閩閫閬閴閶閺閽閿闆闈闉闋é—闑闒闓闙闚é—é—žé—Ÿé— é—¤é—¦é˜é˜žé˜¢é˜¤é˜¥é˜¦é˜¬é˜±é˜³é˜·é˜¸é˜¹é˜ºé˜¼é˜½é™é™’陔陖陗陘陡陮陴陻陼陾陿éšéš‚隃隄隉隑隖隚éšéšŸéš¤éš¥éš¦éš©éš®éš¯éš³éšºé›Šé›’嶲雘雚é›é›žé›Ÿé›©é›¯é›±é›ºéœ‚\"],[\"8fe7a1\",\"霃霅霉霚霛éœéœ¡éœ¢éœ£éœ¨éœ±éœ³ééƒéŠéŽéé•é—é˜éšé›é£é§éªé®é³é¶é·é¸é»é½é¿éž€éž‰éž•鞖鞗鞙鞚鞞鞟鞢鞬鞮鞱鞲鞵鞶鞸鞹鞺鞼鞾鞿éŸéŸ„韅韇韉韊韌éŸéŸŽéŸéŸ‘韔韗韘韙éŸéŸžéŸ éŸ›éŸ¡éŸ¤éŸ¯éŸ±éŸ´éŸ·éŸ¸éŸºé ‡é Šé ™é é Žé ”é –é œé žé é £é ¦\"],[\"8fe8a1\",\"é «é ®é ¯é °é ²é ³é µé ¥é ¾é¡„é¡‡é¡Šé¡‘é¡’é¡“é¡–é¡—é¡™é¡šé¡¢é¡£é¡¥é¡¦é¡ªé¡¬é¢«é¢é¢®é¢°é¢´é¢·é¢¸é¢ºé¢»é¢¿é£‚飅飈飌飡飣飥飦飧飪飳飶餂餇餈餑餕餖餗餚餛餜餟餢餦餧餫餱\",4,\"餹餺餻餼饀é¥é¥†é¥‡é¥ˆé¥é¥Žé¥”é¥˜é¥™é¥›é¥œé¥žé¥Ÿé¥ é¦›é¦é¦Ÿé¦¦é¦°é¦±é¦²é¦µ\"],[\"8fe9a1\",\"馹馺馽馿駃駉駓駔駙駚駜駞駧駪駫駬駰駴駵駹駽駾騂騃騄騋騌é¨é¨‘é¨–é¨žé¨ é¨¢é¨£é¨¤é¨§é¨é¨®é¨³é¨µé¨¶é¨¸é©‡é©é©„驊驋驌驎驑驔驖é©éªªéª¬éª®éª¯éª²éª´éªµéª¶éª¹éª»éª¾éª¿é«é«ƒé«†é«ˆé«Žé«é«’é«•é«–é«—é«›é«œé« é«¤é«¥é«§é«©é«¬é«²é«³é«µé«¹é«ºé«½é«¿\",4],[\"8feaa1\",\"鬄鬅鬈鬉鬋鬌é¬é¬Žé¬é¬’é¬–é¬™é¬›é¬œé¬ é¬¦é¬«é¬é¬³é¬´é¬µé¬·é¬¹é¬ºé¬½éˆé‹éŒé•é–é—é›éžé¡é£é¥é¦é¨éª\",4,\"é³éµé·é¸é¹é¿é®€é®„鮅鮆鮇鮉鮊鮋é®é®é®é®”鮚é®é®žé®¦é®§é®©é®¬é®°é®±é®²é®·é®¸é®»é®¼é®¾é®¿é¯é¯‡é¯ˆé¯Žé¯é¯—鯘é¯é¯Ÿé¯¥é¯§é¯ªé¯«é¯¯é¯³é¯·é¯¸\"],[\"8feba1\",\"鯹鯺鯽鯿鰀鰂鰋é°é°‘鰖鰘鰙鰚鰜鰞鰢鰣鰦\",4,\"鰱鰵鰶鰷鰽é±é±ƒé±„鱅鱉鱊鱎é±é±é±“鱔鱖鱘鱛é±é±žé±Ÿé±£é±©é±ªé±œé±«é±¨é±®é±°é±²é±µé±·é±»é³¦é³²é³·é³¹é´‹é´‚鴑鴗鴘鴜é´é´žé´¯é´°é´²é´³é´´é´ºé´¼éµ…鴽鵂鵃鵇鵊鵓鵔鵟鵣鵢鵥鵩鵪鵫鵰鵶鵷鵻\"],[\"8feca1\",\"鵼鵾鶃鶄鶆鶊é¶é¶Žé¶’é¶“é¶•é¶–é¶—é¶˜é¶¡é¶ªé¶¬é¶®é¶±é¶µé¶¹é¶¼é¶¿é·ƒé·‡é·‰é·Šé·”é·•é·–é·—é·šé·žé·Ÿé· é·¥é·§é·©é·«é·®é·°é·³é·´é·¾é¸Šé¸‚é¸‡é¸Žé¸é¸‘鸒鸕鸖鸙鸜é¸é¹ºé¹»é¹¼éº€éº‚麃麄麅麇麎éºéº–麘麛麞麤麨麬麮麯麰麳麴麵黆黈黋黕黟黤黧黬é»é»®é»°é»±é»²é»µ\"],[\"8feda1\",\"黸黿鼂鼃鼉é¼é¼é¼‘鼒鼔鼖鼗鼙鼚鼛鼟鼢鼦鼪鼫鼯鼱鼲鼴鼷鼹鼺鼼鼽鼿é½é½ƒ\",4,\"齓齕齖齗齘齚é½é½žé½¨é½©é½\",4,\"齳齵齺齽é¾é¾é¾‘龒龔龖龗龞龡龢龣龥\"]]"); /***/ }), -/* 876 */ +/* 884 */ /***/ (function(module) { module.exports = JSON.parse("[[\"0\",\"\\u0000\",127,\"€\"],[\"8140\",\"丂丄丅丆ä¸ä¸’ä¸—ä¸Ÿä¸ ä¸¡ä¸£ä¸¦ä¸©ä¸®ä¸¯ä¸±ä¸³ä¸µä¸·ä¸¼ä¹€ä¹ä¹‚乄乆乊乑乕乗乚乛乢乣乤乥乧乨乪\",5,\"乲乴\",9,\"乿\",6,\"亇亊\"],[\"8180\",\"äºäº–亗亙亜äºäºžäº£äºªäº¯äº°äº±äº´äº¶äº·äº¸äº¹äº¼äº½äº¾ä»ˆä»Œä»ä»ä»’ä»šä»›ä»œä» ä»¢ä»¦ä»§ä»©ä»ä»®ä»¯ä»±ä»´ä»¸ä»¹ä»ºä»¼ä»¾ä¼€ä¼‚\",6,\"伋伌伒\",4,\"伜ä¼ä¼¡ä¼£ä¼¨ä¼©ä¼¬ä¼ä¼®ä¼±ä¼³ä¼µä¼·ä¼¹ä¼»ä¼¾\",4,\"佄佅佇\",5,\"佒佔佖佡佢佦佨佪佫ä½ä½®ä½±ä½²ä½µä½·ä½¸ä½¹ä½ºä½½ä¾€ä¾ä¾‚侅來侇侊侌侎ä¾ä¾’侓侕侖侘侙侚侜侞侟価侢\"],[\"8240\",\"侤侫ä¾ä¾°\",4,\"ä¾¶\",8,\"ä¿€ä¿ä¿‚俆俇俈俉俋俌ä¿ä¿’\",4,\"ä¿™ä¿›ä¿ ä¿¢ä¿¤ä¿¥ä¿§ä¿«ä¿¬ä¿°ä¿²ä¿´ä¿µä¿¶ä¿·ä¿¹ä¿»ä¿¼ä¿½ä¿¿\",11],[\"8280\",\"個倎å€å€‘倓倕倖倗倛å€å€žå€ 倢倣値倧倫倯\",10,\"倻倽倿å€åå‚å„å…å†å‰åŠå‹åå\",4,\"å–å—å˜å™å›å\",7,\"å¦\",5,\"å\",8,\"å¸å¹åºå¼å½å‚傂傃傄傆傇傉傊傋傌傎\",20,\"傤傦傪傫å‚\",4,\"傳\",6,\"傼\"],[\"8340\",\"傽\",17,\"åƒ\",5,\"僗僘僙僛\",10,\"僨僩僪僫僯僰僱僲僴僶\",4,\"僼\",9,\"儈\"],[\"8380\",\"儉儊儌\",5,\"å„“\",13,\"å„¢\",28,\"兂兇兊兌兎å…å…兒兓兗兘兙兛å…\",4,\"兣兤兦內兩兪兯兲兺兾兿冃冄円冇冊冋冎å†å†å†‘冓冔冘冚å†å†žå†Ÿå†¡å†£å†¦\",4,\"å†å†®å†´å†¸å†¹å†ºå†¾å†¿å‡å‡‚凃凅凈凊å‡å‡Žå‡å‡’\",5],[\"8440\",\"凘凙凚凜凞凟凢凣凥\",5,\"凬凮凱凲凴凷凾刄刅刉刋刌åˆåˆåˆ“刔刕刜刞刟刡刢刣別刦刧刪刬刯刱刲刴刵刼刾剄\",5,\"剋剎å‰å‰’剓剕剗剘\"],[\"8480\",\"剙剚剛å‰å‰Ÿå‰ 剢剣剤剦剨剫剬å‰å‰®å‰°å‰±å‰³\",9,\"剾劀劃\",4,\"劉\",6,\"劑劒劔\",6,\"劜劤劥劦劧劮劯劰労\",9,\"å‹€å‹å‹‚勄勅勆勈勊勌å‹å‹Žå‹å‹‘勓勔動勗務\",5,\"å‹ å‹¡å‹¢å‹£å‹¥\",10,\"勱\",7,\"勻勼勽åŒåŒ‚匃匄匇匉匊匋匌匎\"],[\"8540\",\"匑匒匓匔匘匛匜匞匟匢匤匥匧匨匩匫匬åŒåŒ¯\",9,\"匼匽å€å‚å„å†å‹åŒååå”å˜å™å›åå¥å¨åªå¬åå²å¶å¹å»å¼å½å¾åŽ€åŽåŽƒåŽ‡åŽˆåŽŠåŽŽåŽ\"],[\"8580\",\"åŽ\",4,\"åŽ–åŽ—åŽ™åŽ›åŽœåŽžåŽ åŽ¡åŽ¤åŽ§åŽªåŽ«åŽ¬åŽåޝ\",6,\"厷厸厹厺厼厽厾å€åƒ\",4,\"åŽååå’å“å•åšåœååžå¡å¢å§å´åºå¾å¿å€å‚å…å‡å‹å”å˜å™åšåœå¢å¤å¥åªå°å³å¶å·åºå½å¿å‘呂呄呅呇呉呌å‘呎å‘呑呚å‘\",4,\"呣呥呧呩\",7,\"呴呹呺呾呿å’咃咅咇咈咉咊å’å’‘å’“å’—å’˜å’œå’žå’Ÿå’ å’¡\"],[\"8640\",\"å’¢å’¥å’®å’°å’²å’µå’¶å’·å’¹å’ºå’¼å’¾å“ƒå“…å“Šå“‹å“–å“˜å“›å“ \",4,\"哫哬哯哰哱哴\",5,\"哻哾唀唂唃唄唅唈唊\",4,\"唒唓唕\",5,\"唜å”唞唟唡唥唦\"],[\"8680\",\"唨唩唫å”唲唴唵唶唸唹唺唻唽啀啂啅啇啈啋\",4,\"啑啒啓啔啗\",4,\"å•å•žå•Ÿå• å•¢å•£å•¨å•©å•«å•¯\",5,\"啹啺啽啿喅喆喌å–å–Žå–å–’å–“å–•å––å–—å–šå–›å–žå– \",6,\"å–¨\",8,\"喲喴営喸喺喼喿\",4,\"嗆嗇嗈嗊嗋嗎å—å—å—•å——\",4,\"å—žå— å—¢å—§å—©å—嗮嗰嗱嗴嗶嗸\",4,\"嗿嘂嘃嘄嘅\"],[\"8740\",\"嘆嘇嘊嘋å˜å˜\",7,\"嘙嘚嘜å˜å˜ 嘡嘢嘥嘦嘨嘩嘪嘫嘮嘯嘰嘳嘵嘷嘸嘺嘼嘽嘾噀\",11,\"å™\",4,\"噕噖噚噛å™\",4],[\"8780\",\"噣噥噦噧å™å™®å™¯å™°å™²å™³å™´å™µå™·å™¸å™¹å™ºå™½\",7,\"嚇\",6,\"åšåš‘åš’åš”\",14,\"嚤\",10,\"åš°\",6,\"嚸嚹嚺嚻嚽\",12,\"囋\",8,\"囕囖囘囙囜団囥\",5,\"囬囮囯囲図囶囷囸囻囼圀åœåœ‚圅圇國\",6],[\"8840\",\"園\",9,\"åœåœžåœ 圡圢圤圥圦圧圫圱圲圴\",4,\"圼圽圿ååƒå„å…å†åˆå‰å‹å’\",4,\"å˜å™å¢å£å¥å§å¬å®å°å±å²å´åµå¸å¹åºå½å¾å¿åž€\"],[\"8880\",\"åžåž‡åžˆåž‰åžŠåž\",4,\"åž”\",6,\"åžœåžåžžåžŸåž¥åž¨åžªåž¬åž¯åž°åž±åž³åžµåž¶åž·åž¹\",8,\"埄\",6,\"埌åŸåŸåŸ‘埓埖埗埛埜埞埡埢埣埥\",7,\"埮埰埱埲埳埵埶執埻埼埾埿å å ƒå „å …å ˆå ‰å Šå Œå Žå å å ’å “å ”å –å —å ˜å šå ›å œå å Ÿå ¢å £å ¥\",4,\"å «\",4,\"å ±å ²å ³å ´å ¶\",7],[\"8940\",\"å ¾\",5,\"å¡…\",6,\"塎å¡å¡å¡’å¡“å¡•å¡–å¡—å¡™\",4,\"塟\",5,\"塦\",4,\"å¡\",16,\"塿墂墄墆墇墈墊墋墌\"],[\"8980\",\"å¢\",4,\"墔\",4,\"墛墜å¢å¢ \",7,\"墪\",17,\"墽墾墿壀壂壃壄壆\",10,\"壒壓壔壖\",13,\"壥\",5,\"å£å£¯å£±å£²å£´å£µå£·å£¸å£º\",7,\"夃夅夆夈\",4,\"夎å¤å¤‘夒夓夗夘夛å¤å¤žå¤ 夡夢夣夦夨夬夰夲夳夵夶夻\"],[\"8a40\",\"夽夾夿奀奃奅奆奊奌å¥å¥å¥’奓奙奛\",4,\"奡奣奤奦\",12,\"奵奷奺奻奼奾奿妀妅妉妋妌妎å¦å¦å¦‘妔妕妘妚妛妜å¦å¦Ÿå¦ 妡妢妦\"],[\"8a80\",\"妧妬å¦å¦°å¦±å¦³\",5,\"妺妼妽妿\",6,\"姇姈姉姌å§å§Žå§å§•姖姙姛姞\",4,\"姤姦姧姩姪姫å§\",11,\"姺姼姽姾娀娂娊娋å¨å¨Žå¨å¨å¨’娔娕娖娗娙娚娛å¨å¨žå¨¡å¨¢å¨¤å¨¦å¨§å¨¨å¨ª\",6,\"娳娵娷\",4,\"娽娾娿å©\",4,\"婇婈婋\",9,\"婖婗婘婙婛\",5],[\"8b40\",\"婡婣婤婥婦婨婩婫\",8,\"婸婹婻婼婽婾媀\",17,\"媓\",6,\"媜\",13,\"媫媬\"],[\"8b80\",\"åª\",4,\"媴媶媷媹\",4,\"媿嫀嫃\",5,\"嫊嫋å«\",4,\"嫓嫕嫗嫙嫚嫛å«å«žå«Ÿå«¢å«¤å«¥å«§å«¨å«ªå«¬\",4,\"嫲\",22,\"嬊\",11,\"嬘\",25,\"嬳嬵嬶嬸\",7,\"å\",6],[\"8c40\",\"åˆ\",7,\"å’å–åžå å¡å§å¨å«åå®å¯å²å´å¶å·å¸å¹å»å¼å¾å¿å®‚宆宊å®å®Žå®å®‘宒宔宖実宧宨宩宬å®å®®å®¯å®±å®²å®·å®ºå®»å®¼å¯€å¯å¯ƒå¯ˆå¯‰å¯Šå¯‹å¯å¯Žå¯\"],[\"8c80\",\"寑寔\",8,\"å¯ å¯¢å¯£å¯¦å¯§å¯©\",4,\"寯寱\",6,\"寽対尀専尃尅將專尋尌å°å°Žå°å°’å°“å°—å°™å°›å°žå°Ÿå° å°¡å°£å°¦å°¨å°©å°ªå°«å°å°®å°¯å°°å°²å°³å°µå°¶å°·å±ƒå±„屆屇屌å±å±’屓屔屖屗屘屚屛屜å±å±Ÿå±¢å±¤å±§\",6,\"å±°å±²\",6,\"屻屼屽屾岀岃\",4,\"岉岊岋岎å²å²’岓岕å²\",4,\"岤\",4],[\"8d40\",\"岪岮岯岰岲岴岶岹岺岻岼岾峀峂峃峅\",5,\"峌\",5,\"峓\",5,\"峚\",6,\"峢峣峧峩峫峬峮峯峱\",9,\"å³¼\",4],[\"8d80\",\"å´å´„å´…å´ˆ\",5,\"å´\",4,\"崕崗崘崙崚崜å´å´Ÿ\",4,\"崥崨崪崫崬崯\",4,\"å´µ\",7,\"å´¿\",7,\"嵈嵉åµ\",10,\"嵙嵚嵜嵞\",10,\"嵪åµåµ®åµ°åµ±åµ²åµ³åµµ\",12,\"嶃\",21,\"å¶šå¶›å¶œå¶žå¶Ÿå¶ \"],[\"8e40\",\"å¶¡\",21,\"嶸\",12,\"å·†\",6,\"å·Ž\",12,\"å·œå·Ÿå· å·£å·¤å·ªå·¬å·\"],[\"8e80\",\"巰巵巶巸\",4,\"巿帀帄帇帉帊帋å¸å¸Žå¸’帓帗帞\",7,\"帨\",4,\"帯帰帲\",4,\"帹帺帾帿幀å¹å¹ƒå¹†\",5,\"å¹\",6,\"å¹–\",4,\"幜å¹å¹Ÿå¹ å¹£\",14,\"幵幷幹幾åºåº‚広庅庈庉庌åºåºŽåº’庘庛åºåº¡åº¢åº£åº¤åº¨\",4,\"庮\",4,\"庴庺庻庼庽庿\",6],[\"8f40\",\"廆廇廈廋\",5,\"廔廕廗廘廙廚廜\",11,\"廩廫\",8,\"廵廸廹廻廼廽弅弆弇弉弌å¼å¼Žå¼å¼’弔弖弙弚弜å¼å¼žå¼¡å¼¢å¼£å¼¤\"],[\"8f80\",\"弨弫弬弮弰弲\",6,\"弻弽弾弿å½\",14,\"å½‘å½”å½™å½šå½›å½œå½žå½Ÿå½ å½£å½¥å½§å½¨å½«å½®å½¯å½²å½´å½µå½¶å½¸å½ºå½½å½¾å½¿å¾ƒå¾†å¾å¾Žå¾å¾‘従徔徖徚徛å¾å¾žå¾Ÿå¾ å¾¢\",5,\"復徫徬徯\",5,\"徶徸徹徺徻徾\",4,\"忇忈忊忋忎忓忔忕忚忛応忞忟忢忣忥忦忨忩忬忯忰忲忳忴忶忷忹忺忼怇\"],[\"9040\",\"æ€ˆæ€‰æ€‹æ€Œæ€æ€‘æ€“æ€—æ€˜æ€šæ€žæ€Ÿæ€¢æ€£æ€¤æ€¬æ€æ€®æ€°\",4,\"怶\",4,\"æ€½æ€¾æ€æ„\",6,\"æŒæŽææ‘æ“æ”æ–æ—æ˜æ›æœæžæŸæ æ¡æ¥æ¦æ®æ±æ²æ´æµæ·æ¾æ‚€\"],[\"9080\",\"æ‚æ‚‚æ‚…æ‚†æ‚‡æ‚ˆæ‚Šæ‚‹æ‚Žæ‚æ‚悑悓悕悗悘悙悜悞悡悢悤悥悧悩悪悮悰悳悵悶悷悹悺悽\",7,\"惇惈惉惌\",4,\"惒惓惔惖惗惙惛惞惡\",4,\"惪惱惲惵惷惸惻\",4,\"愂愃愄愅愇愊愋愌æ„\",4,\"æ„–æ„—æ„˜æ„™æ„›æ„œæ„æ„žæ„¡æ„¢æ„¥æ„¨æ„©æ„ªæ„¬\",18,\"æ…€\",6],[\"9140\",\"æ…‡æ…‰æ…‹æ…æ…æ…æ…’慓慔慖\",6,\"æ…žæ…Ÿæ… æ…¡æ…£æ…¤æ…¥æ…¦æ…©\",6,\"慱慲慳慴慶慸\",18,\"æ†Œæ†æ†\",4,\"憕\"],[\"9180\",\"憖\",6,\"憞\",8,\"憪憫æ†\",9,\"憸\",5,\"æ†¿æ‡€æ‡æ‡ƒ\",4,\"應懌\",4,\"懓懕\",16,\"懧\",13,\"懶\",8,\"戀\",5,\"æˆ‡æˆ‰æˆ“æˆ”æˆ™æˆœæˆæˆžæˆ æˆ£æˆ¦æˆ§æˆ¨æˆ©æˆ«æˆæˆ¯æˆ°æˆ±æˆ²æˆµæˆ¶æˆ¸\",4,\"扂扄扅扆扊\"],[\"9240\",\"æ‰æ‰æ‰•扖扗扙扚扜\",6,\"æ‰¤æ‰¥æ‰¨æ‰±æ‰²æ‰´æ‰µæ‰·æ‰¸æ‰ºæ‰»æ‰½æŠæŠ‚æŠƒæŠ…æŠ†æŠ‡æŠˆæŠ‹\",5,\"æŠ”æŠ™æŠœæŠæŠžæŠ£æŠ¦æŠ§æŠ©æŠªæŠæŠ®æŠ¯æŠ°æŠ²æŠ³æŠ´æŠ¶æŠ·æŠ¸æŠºæŠ¾æ‹€æ‹\"],[\"9280\",\"æ‹ƒæ‹‹æ‹æ‹‘æ‹•æ‹æ‹žæ‹ æ‹¡æ‹¤æ‹ªæ‹«æ‹°æ‹²æ‹µæ‹¸æ‹¹æ‹ºæ‹»æŒ€æŒƒæŒ„æŒ…æŒ†æŒŠæŒ‹æŒŒæŒæŒæŒæŒ’æŒ“æŒ”æŒ•æŒ—æŒ˜æŒ™æŒœæŒ¦æŒ§æŒ©æŒ¬æŒæŒ®æŒ°æŒ±æŒ³\",5,\"æŒ»æŒ¼æŒ¾æŒ¿æ€ææ„æ‡æˆæŠæ‘æ’æ“æ”æ–\",7,\"æ æ¤æ¥æ¦æ¨æªæ«æ¬æ¯æ°æ²æ³æ´æµæ¸æ¹æ¼æ½æ¾æ¿æŽæŽƒæŽ„æŽ…æŽ†æŽ‹æŽæŽ‘æŽ“æŽ”æŽ•æŽ—æŽ™\",6,\"採掤掦掫掯掱掲掵掶掹掻掽掿æ€\"],[\"9340\",\"ææ‚æƒæ…æ‡æˆæŠæ‹æŒæ‘æ“æ”æ•æ—\",6,\"æŸæ¢æ¤\",4,\"æ«æ¬æ®æ¯æ°æ±æ³æµæ·æ¹æºæ»æ¼æ¾æƒæ„æ†\",4,\"ææŽæ‘æ’æ•\",5,\"ææŸæ¢æ£æ¤\"],[\"9380\",\"æ¥æ§æ¨æ©æ«æ®\",5,\"æµ\",4,\"æ»æ¼æ¾æ‘€æ‘‚摃摉摋\",6,\"æ‘“æ‘•æ‘–æ‘—æ‘™\",4,\"摟\",7,\"摨摪摫摬摮\",9,\"æ‘»\",6,\"撃撆撈\",8,\"æ’“æ’”æ’—æ’˜æ’šæ’›æ’œæ’æ’Ÿ\",4,\"æ’¥æ’¦æ’§æ’¨æ’ªæ’«æ’¯æ’±æ’²æ’³æ’´æ’¶æ’¹æ’»æ’½æ’¾æ’¿æ“æ“ƒæ“„擆\",6,\"æ“æ“‘擓擔擕擖擙據\"],[\"9440\",\"æ“›æ“œæ“æ“Ÿæ“ 擡擣擥擧\",24,\"æ”\",7,\"攊\",7,\"攓\",4,\"æ”™\",8],[\"9480\",\"攢攣攤攦\",4,\"æ”¬æ”æ”°æ”±æ”²æ”³æ”·æ”ºæ”¼æ”½æ•€\",4,\"æ•†æ•‡æ•Šæ•‹æ•æ•Žæ•æ•’æ•“æ•”æ•—æ•˜æ•šæ•œæ•Ÿæ• æ•¡æ•¤æ•¥æ•§æ•¨æ•©æ•ªæ•æ•®æ•¯æ•±æ•³æ•µæ•¶æ•¸\",14,\"æ–ˆæ–‰æ–Šæ–æ–Žæ–æ–’æ–”æ–•æ––æ–˜æ–šæ–æ–žæ– 斢斣斦斨斪斬斮斱\",7,\"æ–ºæ–»æ–¾æ–¿æ—€æ—‚æ—‡æ—ˆæ—‰æ—Šæ—æ—旑旓旔旕旘\",7,\"旡旣旤旪旫\"],[\"9540\",\"旲旳旴旵旸旹旻\",4,\"æ˜æ˜„æ˜…æ˜‡æ˜ˆæ˜‰æ˜‹æ˜æ˜æ˜‘昒昖昗昘昚昛昜昞昡昢昣昤昦昩昪昫昬昮昰昲昳昷\",4,\"昽昿晀時晄\",6,\"æ™æ™Žæ™æ™‘晘\"],[\"9580\",\"æ™™æ™›æ™œæ™æ™žæ™ 晢晣晥晧晩\",4,\"æ™±æ™²æ™³æ™µæ™¸æ™¹æ™»æ™¼æ™½æ™¿æš€æšæšƒæš…æš†æšˆæš‰æšŠæš‹æšæšŽæšæšæš’æš“暔暕暘\",4,\"æšž\",8,\"æš©\",4,\"暯\",4,\"暵暶暷暸暺暻暼暽暿\",25,\"曚曞\",7,\"曧曨曪\",5,\"æ›±æ›µæ›¶æ›¸æ›ºæ›»æ›½æœæœ‚會\"],[\"9640\",\"æœ„æœ…æœ†æœ‡æœŒæœŽæœæœ‘æœ’æœ“æœ–æœ˜æœ™æœšæœœæœžæœ \",5,\"æœ§æœ©æœ®æœ°æœ²æœ³æœ¶æœ·æœ¸æœ¹æœ»æœ¼æœ¾æœ¿ææ„æ…æ‡æŠæ‹ææ’æ”æ•æ—\",4,\"ææ¢æ£æ¤æ¦æ§æ«æ¬æ®æ±æ´æ¶\"],[\"9680\",\"æ¸æ¹æºæ»æ½æž€æž‚æžƒæž…æž†æžˆæžŠæžŒæžæžŽæžæž‘æž’æž“æž”æž–æž™æž›æžŸæž æž¡æž¤æž¦æž©æž¬æž®æž±æž²æž´æž¹\",7,\"柂柅\",9,\"æŸ•æŸ–æŸ—æŸ›æŸŸæŸ¡æŸ£æŸ¤æŸ¦æŸ§æŸ¨æŸªæŸ«æŸæŸ®æŸ²æŸµ\",7,\"æŸ¾æ æ ‚æ ƒæ „æ †æ æ æ ’æ ”æ •æ ˜\",4,\"æ žæ Ÿæ æ ¢\",6,\"æ «\",6,\"æ ´æ µæ ¶æ ºæ »æ ¿æ¡‡æ¡‹æ¡æ¡æ¡’æ¡–\",5],[\"9740\",\"æ¡œæ¡æ¡žæ¡Ÿæ¡ªæ¡¬\",7,\"桵桸\",8,\"梂梄梇\",7,\"æ¢æ¢‘梒梔梕梖梘\",9,\"梣梤梥梩梪梫梬梮梱梲梴梶梷梸\"],[\"9780\",\"梹\",6,\"æ£æ£ƒ\",5,\"æ£Šæ£Œæ£Žæ£æ£æ£‘棓棔棖棗棙棛\",4,\"棡棢棤\",9,\"棯棲棳棴棶棷棸棻棽棾棿椀椂椃椄椆\",4,\"æ¤Œæ¤æ¤‘椓\",11,\"椡椢椣椥\",7,\"æ¤®æ¤¯æ¤±æ¤²æ¤³æ¤µæ¤¶æ¤·æ¤¸æ¤ºæ¤»æ¤¼æ¤¾æ¥€æ¥æ¥ƒ\",16,\"楕楖楘楙楛楜楟\"],[\"9840\",\"æ¥¡æ¥¢æ¥¤æ¥¥æ¥§æ¥¨æ¥©æ¥ªæ¥¬æ¥æ¥¯æ¥°æ¥²\",4,\"æ¥ºæ¥»æ¥½æ¥¾æ¥¿æ¦æ¦ƒæ¦…榊榋榌榎\",5,\"榖榗榙榚æ¦\",9,\"榩榪榬榮榯榰榲榳榵榶榸榹榺榼榽\"],[\"9880\",\"榾榿槀槂\",7,\"æ§‹æ§æ§æ§‘æ§’æ§“æ§•\",5,\"æ§œæ§æ§žæ§¡\",11,\"槮槯槰槱槳\",9,\"槾樀\",9,\"樋\",11,\"標\",5,\"æ¨ æ¨¢\",5,\"æ¨©æ¨«æ¨¬æ¨æ¨®æ¨°æ¨²æ¨³æ¨´æ¨¶\",6,\"樿\",4,\"橅橆橈\",7,\"æ©‘\",6,\"橚\"],[\"9940\",\"橜\",4,\"橢橣橤橦\",10,\"橲\",6,\"æ©ºæ©»æ©½æ©¾æ©¿æªæª‚檃檅\",8,\"æªæª’\",4,\"檘\",7,\"檡\",5],[\"9980\",\"檧檨檪æª\",114,\"欥欦欨\",6],[\"9a40\",\"æ¬¯æ¬°æ¬±æ¬³æ¬´æ¬µæ¬¶æ¬¸æ¬»æ¬¼æ¬½æ¬¿æ€ææ‚æ„æ…æˆæŠæ‹æ\",11,\"æš\",7,\"æ¨æ©æ«\",13,\"æºæ½æ¾æ¿æ®€æ®…殈\"],[\"9a80\",\"æ®Œæ®Žæ®æ®æ®‘殔殕殗殘殙殜\",4,\"殢\",7,\"殫\",7,\"殶殸\",6,\"毀毃毄毆\",4,\"æ¯Œæ¯Žæ¯æ¯‘毘毚毜\",4,\"毢\",7,\"æ¯¬æ¯æ¯®æ¯°æ¯±æ¯²æ¯´æ¯¶æ¯·æ¯¸æ¯ºæ¯»æ¯¼æ¯¾\",6,\"æ°ˆ\",4,\"æ°Žæ°’æ°—æ°œæ°æ°žæ° æ°£æ°¥æ°«æ°¬æ°æ°±æ°³æ°¶æ°·æ°¹æ°ºæ°»æ°¼æ°¾æ°¿æ±ƒæ±„汅汈汋\",4,\"汑汒汓汖汘\"],[\"9b40\",\"汙汚汢汣汥汦汧汫\",4,\"æ±±æ±³æ±µæ±·æ±¸æ±ºæ±»æ±¼æ±¿æ²€æ²„æ²‡æ²Šæ²‹æ²æ²Žæ²‘æ²’æ²•æ²–æ²—æ²˜æ²šæ²œæ²æ²žæ² æ²¢æ²¨æ²¬æ²¯æ²°æ²´æ²µæ²¶æ²·æ²ºæ³€æ³æ³‚æ³ƒæ³†æ³‡æ³ˆæ³‹æ³æ³Žæ³æ³‘泒泘\"],[\"9b80\",\"æ³™æ³šæ³œæ³æ³Ÿæ³¤æ³¦æ³§æ³©æ³¬æ³æ³²æ³´æ³¹æ³¿æ´€æ´‚æ´ƒæ´…æ´†æ´ˆæ´‰æ´Šæ´æ´æ´æ´‘æ´“æ´”æ´•æ´–æ´˜æ´œæ´æ´Ÿ\",5,\"æ´¦æ´¨æ´©æ´¬æ´æ´¯æ´°æ´´æ´¶æ´·æ´¸æ´ºæ´¿æµ€æµ‚æµ„æµ‰æµŒæµæµ•æµ–æµ—æµ˜æµ›æµæµŸæµ¡æµ¢æµ¤æµ¥æµ§æµ¨æµ«æµ¬æµæµ°æµ±æµ²æµ³æµµæµ¶æµ¹æµºæµ»æµ½\",4,\"æ¶ƒæ¶„æ¶†æ¶‡æ¶Šæ¶‹æ¶æ¶æ¶æ¶’æ¶–\",4,\"æ¶œæ¶¢æ¶¥æ¶¬æ¶æ¶°æ¶±æ¶³æ¶´æ¶¶æ¶·æ¶¹\",5,\"æ·æ·‚淃淈淉淊\"],[\"9c40\",\"æ·æ·Žæ·æ·æ·’æ·“æ·”æ·•æ·—æ·šæ·›æ·œæ·Ÿæ·¢æ·£æ·¥æ·§æ·¨æ·©æ·ªæ·æ·¯æ·°æ·²æ·´æ·µæ·¶æ·¸æ·ºæ·½\",7,\"æ¸†æ¸‡æ¸ˆæ¸‰æ¸‹æ¸æ¸’渓渕渘渙減渜渞渟渢渦渧渨渪測渮渰渱渳渵\"],[\"9c80\",\"渶渷渹渻\",7,\"æ¹…\",7,\"æ¹æ¹æ¹‘æ¹’æ¹•æ¹—æ¹™æ¹šæ¹œæ¹æ¹žæ¹ \",10,\"æ¹¬æ¹æ¹¯\",14,\"æº€æºæº‚溄溇溈溊\",4,\"溑\",6,\"æº™æºšæº›æºæºžæº æº¡æº£æº¤æº¦æº¨æº©æº«æº¬æºæº®æº°æº³æºµæº¸æº¹æº¼æº¾æº¿æ»€æ»ƒæ»„æ»…æ»†æ»ˆæ»‰æ»Šæ»Œæ»æ»Žæ»æ»’æ»–æ»˜æ»™æ»›æ»œæ»æ»£æ»§æ»ª\",5],[\"9d40\",\"滰滱滲滳滵滶滷滸滺\",7,\"漃漄漅漇漈漊\",4,\"æ¼æ¼‘æ¼’æ¼–\",9,\"漡漢漣漥漦漧漨漬漮漰漲漴漵漷\",6,\"æ¼¿æ½€æ½æ½‚\"],[\"9d80\",\"潃潄潅潈潉潊潌潎\",9,\"æ½™æ½šæ½›æ½æ½Ÿæ½ 潡潣潤潥潧\",5,\"潯潰潱潳潵潶潷潹潻潽\",6,\"澅澆澇澊澋æ¾\",12,\"æ¾æ¾žæ¾Ÿæ¾ æ¾¢\",4,\"澨\",10,\"澴澵澷澸澺\",5,\"æ¿æ¿ƒ\",5,\"濊\",6,\"æ¿“\",10,\"濟濢濣濤濥\"],[\"9e40\",\"濦\",7,\"æ¿°\",32,\"瀒\",7,\"瀜\",6,\"瀤\",6],[\"9e80\",\"瀫\",9,\"瀶瀷瀸瀺\",17,\"ççŽç\",13,\"çŸ\",11,\"ç®ç±ç²ç³ç´ç·ç¹çºç»ç½ç‚炂炃炄炆炇炈炋炌ç‚ç‚ç‚炑炓炗炘炚炛炞\",12,\"炰炲炴炵炶為炾炿烄烅烆烇烉烋\",12,\"烚\"],[\"9f40\",\"烜çƒçƒžçƒ 烡烢烣烥烪烮烰\",6,\"烸烺烻烼烾\",10,\"ç„‹\",4,\"焑焒焔焗焛\",10,\"ç„§\",7,\"焲焳焴\"],[\"9f80\",\"焵焷\",13,\"煆煇煈煉煋ç…ç…\",12,\"ç…ç…Ÿ\",4,\"煥煩\",4,\"煯煰煱煴煵煶煷煹煻煼煾\",5,\"熅\",4,\"熋熌ç†ç†Žç†ç†‘熒熓熕熖熗熚\",4,\"熡\",6,\"熩熪熫ç†\",5,\"熴熶熷熸熺\",8,\"燄\",9,\"ç‡\",4],[\"a040\",\"燖\",9,\"燡燢燣燤燦燨\",5,\"燯\",9,\"燺\",11,\"爇\",19],[\"a080\",\"爛爜爞\",9,\"爩爫çˆçˆ®çˆ¯çˆ²çˆ³çˆ´çˆºçˆ¼çˆ¾ç‰€\",6,\"牉牊牋牎ç‰ç‰ç‰‘ç‰“ç‰”ç‰•ç‰—ç‰˜ç‰šç‰œç‰žç‰ ç‰£ç‰¤ç‰¥ç‰¨ç‰ªç‰«ç‰¬ç‰ç‰°ç‰±ç‰³ç‰´ç‰¶ç‰·ç‰¸ç‰»ç‰¼ç‰½çŠ‚çŠƒçŠ…\",4,\"犌犎çŠçŠ‘çŠ“\",11,\"çŠ \",11,\"犮犱犲犳犵犺\",6,\"狅狆狇狉狊狋狌ç‹ç‹‘狓狔狕狖狘狚狛\"],[\"a1a1\",\" ã€ã€‚·ˉˇ¨〃々—~‖…‘’“â€ã€”〕〈\",7,\"〖〗ã€ã€‘±×÷∶∧∨∑âˆâˆªâˆ©âˆˆâˆ·âˆšâŠ¥âˆ¥âˆ âŒ’âŠ™âˆ«âˆ®â‰¡â‰Œâ‰ˆâˆ½âˆâ‰ â‰®â‰¯â‰¤â‰¥âˆžâˆµâˆ´â™‚â™€Â°â€²â€³â„ƒï¼„Â¤ï¿ ï¿¡â€°Â§â„–â˜†â˜…â—‹â—◎◇◆□■△▲※→â†â†‘↓〓\"],[\"a2a1\",\"â…°\",9],[\"a2b1\",\"â’ˆ\",19,\"â‘´\",19,\"â‘ \",9],[\"a2e5\",\"㈠\",9],[\"a2f1\",\"â… \",11],[\"a3a1\",\"ï¼ï¼‚#¥%\",88,\"ï¿£\"],[\"a4a1\",\"ã\",82],[\"a5a1\",\"ã‚¡\",85],[\"a6a1\",\"Α\",16,\"Σ\",6],[\"a6c1\",\"α\",16,\"σ\",6],[\"a6e0\",\"︵︶︹︺︿﹀︽︾ï¹ï¹‚﹃﹄\"],[\"a6ee\",\"︻︼︷︸︱\"],[\"a6f4\",\"︳︴\"],[\"a7a1\",\"Ð\",5,\"ÐЖ\",25],[\"a7d1\",\"а\",5,\"ёж\",25],[\"a840\",\"ˊˋ˙–―‥‵℅℉↖↗↘↙∕∟∣≒≦≧⊿â•\",35,\"â–\",6],[\"a880\",\"â–ˆ\",7,\"▓▔▕▼▽◢◣◤◥☉⊕〒ã€ã€ž\"],[\"a8a1\",\"Äáǎà ēéěèīÃÇìÅóǒòūúǔùǖǘǚǜüêɑ\"],[\"a8bd\",\"ńň\"],[\"a8c0\",\"É¡\"],[\"a8c5\",\"ã„…\",36],[\"a940\",\"〡\",8,\"㊣㎎ãŽãŽœãŽãŽžãŽ¡ã„ãŽã‘ã’ã•︰¬¦\"],[\"a959\",\"℡㈱\"],[\"a95c\",\"â€\"],[\"a960\",\"ー゛゜ヽヾ〆ã‚ゞ﹉\",9,\"﹔﹕﹖﹗﹙\",8],[\"a980\",\"ï¹¢\",4,\"﹨﹩﹪﹫\"],[\"a996\",\"〇\"],[\"a9a4\",\"─\",75],[\"aa40\",\"狜ç‹ç‹Ÿç‹¢\",5,\"狪狫狵狶狹狽狾狿猀猂猄\",5,\"猋猌çŒçŒçŒçŒ‘çŒ’çŒ”çŒ˜çŒ™çŒšçŒŸçŒ çŒ£çŒ¤çŒ¦çŒ§çŒ¨çŒçŒ¯çŒ°çŒ²çŒ³çŒµçŒ¶çŒºçŒ»çŒ¼çŒ½ç€\",8],[\"aa80\",\"ç‰çŠç‹çŒçŽçç‘ç“ç”ç•ç–ç˜\",7,\"ç¡\",10,\"ç®ç°ç±\"],[\"ab40\",\"ç²\",11,\"ç¿\",4,\"玅玆玈玊玌çŽçŽçŽçŽ’çŽ“çŽ”çŽ•çŽ—çŽ˜çŽ™çŽšçŽœçŽçŽžçŽ çŽ¡çŽ£\",5,\"玪玬çŽçŽ±çŽ´çŽµçŽ¶çŽ¸çŽ¹çŽ¼çŽ½çŽ¾çŽ¿ççƒ\",4],[\"ab80\",\"ç‹çŒçŽç’\",6,\"çšç›çœççŸç¡ç¢ç£ç¤ç¦ç¨çªç«ç¬ç®ç¯ç°ç±ç³\",4],[\"ac40\",\"ç¸\",10,\"ç„ç‡çˆç‹çŒççŽç‘\",8,\"çœ\",5,\"ç£ç¤ç§ç©ç«çç¯ç±ç²ç·\",4,\"ç½ç¾ç¿ç‘€ç‘‚\",11],[\"ac80\",\"瑎\",6,\"瑖瑘ç‘ç‘ \",12,\"瑮瑯瑱\",4,\"瑸瑹瑺\"],[\"ad40\",\"瑻瑼瑽瑿璂璄璅璆璈璉璊璌ç’ç’ç’‘\",10,\"ç’ç’Ÿ\",7,\"ç’ª\",15,\"ç’»\",12],[\"ad80\",\"瓈\",9,\"ç““\",8,\"ç“瓟瓡瓥瓧\",6,\"瓰瓱瓲\"],[\"ae40\",\"瓳瓵瓸\",6,\"甀ç”甂甃甅\",7,\"甎ç”甒甔甕甖甗甛ç”ç”žç” \",4,\"甦甧甪甮甴甶甹甼甽甿ç•畂畃畄畆畇畉畊ç•ç•畑畒畓畕畖畗畘\"],[\"ae80\",\"ç•\",7,\"畧畨畩畫\",6,\"畳畵當畷畺\",4,\"ç–€ç–ç–‚ç–„ç–…ç–‡\"],[\"af40\",\"疈疉疊疌ç–ç–Žç–疓疕疘疛疜疞疢疦\",4,\"ç–疶疷疺疻疿痀ç—痆痋痌痎ç—ç—痑痓痗痙痚痜ç—ç—Ÿç— ç—¡ç—¥ç—©ç—¬ç—痮痯痲痳痵痶痷痸痺痻痽痾瘂瘄瘆瘇\"],[\"af80\",\"瘈瘉瘋ç˜ç˜Žç˜ç˜‘瘒瘓瘔瘖瘚瘜ç˜ç˜žç˜¡ç˜£ç˜§ç˜¨ç˜¬ç˜®ç˜¯ç˜±ç˜²ç˜¶ç˜·ç˜¹ç˜ºç˜»ç˜½ç™ç™‚癄\"],[\"b040\",\"ç™…\",6,\"癎\",5,\"癕癗\",4,\"ç™ç™Ÿç™ 癡癢癤\",6,\"癬ç™ç™®ç™°\",7,\"癹発發癿皀çšçšƒçš…皉皊皌çšçšçšçš’皔皕皗皘皚皛\"],[\"b080\",\"çšœ\",7,\"皥\",8,\"皯皰皳皵\",9,\"盀ç›ç›ƒå•Šé˜¿åŸƒæŒ¨å“Žå”‰å“€çš‘癌蔼矮艾ç¢çˆ±éš˜éžæ°¨å®‰ä¿ºæŒ‰æš—å²¸èƒºæ¡ˆè‚®æ˜‚ç›Žå‡¹æ•–ç†¬ç¿±è¢„å‚²å¥¥æ‡Šæ¾³èŠæŒæ‰’åå§ç¬†å…«ç–¤å·´æ‹”è·‹é¶æŠŠè€™å霸罢爸白æŸç™¾æ‘†ä½°è´¥æ‹œç¨—æ–‘çæ¬æ‰³èˆ¬é¢æ¿ç‰ˆæ‰®æ‹Œä¼´ç“£åŠåŠžç»Šé‚¦å¸®æ¢†æ¦œè†€ç»‘æ£’ç£…èšŒé•‘å‚谤苞胞包褒剥\"],[\"b140\",\"盄盇盉盋盌盓盕盙盚盜ç›ç›žç› \",4,\"盦\",7,\"盰盳盵盶盷盺盻盽盿眀眂眃眅眆眊県眎\",10,\"眛眜çœçœžçœ¡çœ£çœ¤çœ¥çœ§çœªçœ«\"],[\"b180\",\"眬眮眰\",4,\"眹眻眽眾眿ç‚ç„ç…ç†çˆ\",7,\"ç’\",7,\"çœè–„雹ä¿å ¡é¥±å®æŠ±æŠ¥æš´è±¹é²çˆ†æ¯ç¢‘悲å‘北辈背è´é’¡å€ç‹ˆå¤‡æƒ«ç„™è¢«å¥”è‹¯æœ¬ç¬¨å´©ç»·ç”æ³µè¹¦è¿¸é€¼é¼»æ¯”鄙笔彼碧蓖蔽毕毙毖å¸åº‡ç—¹é—æ•弊必辟å£è‡‚é¿é™›éžè¾¹ç¼–è´¬æ‰ä¾¿å˜åžè¾¨è¾©è¾«éæ ‡å½ªè†˜è¡¨é³–æ†‹åˆ«ç˜ªå½¬æ–Œæ¿’æ»¨å®¾æ‘ˆå…µå†°æŸ„ä¸™ç§‰é¥¼ç‚³\"],[\"b240\",\"ççžçŸç ç¤ç§ç©çªç\",11,\"çºç»ç¼çžçž‚瞃瞆\",5,\"çžçžçž“\",11,\"瞡瞣瞤瞦瞨瞫çžçž®çž¯çž±çž²çž´çž¶\",4],[\"b280\",\"瞼瞾矀\",12,\"矎\",8,\"矘矙矚çŸ\",4,\"çŸ¤ç—…å¹¶çŽ»è æ’拨钵波åšå‹ƒæé“‚箔伯帛舶脖膊渤泊驳æ•åœå“ºè¡¥åŸ ä¸å¸ƒæ¥ç°¿éƒ¨æ€–æ“¦çŒœè£ææ‰è´¢ç¬è¸©é‡‡å½©èœè”¡é¤å‚èš•æ®‹æƒæƒ¨ç¿è‹èˆ±ä»“æ²§è—æ“糙槽曹è‰åŽ•ç–ä¾§å†Œæµ‹å±‚è¹æ’å‰èŒ¬èŒ¶æŸ¥ç¢´æ½å¯Ÿå²”å·®è¯§æ‹†æŸ´è±ºæ€æŽºè‰é¦‹è°—ç¼ é“²äº§é˜é¢¤æ˜ŒçŒ–\"],[\"b340\",\"çŸ¦çŸ¨çŸªçŸ¯çŸ°çŸ±çŸ²çŸ´çŸµçŸ·çŸ¹çŸºçŸ»çŸ¼ç ƒ\",5,\"ç Šç ‹ç Žç ç ç “ç •ç ™ç ›ç žç ç ¡ç ¢ç ¤ç ¨ç ªç «ç ®ç ¯ç ±ç ²ç ³ç µç ¶ç ½ç ¿ç¡ç¡‚硃硄硆硈硉硊硋ç¡ç¡ç¡‘硓硔硘硙硚\"],[\"b380\",\"硛硜硞\",11,\"硯\",7,\"硸硹硺硻硽\",6,\"场å°å¸¸é•¿å¿è‚ 厂敞畅唱倡超抄钞æœå˜²æ½®å·¢åµç‚’车扯撤掣彻澈郴臣辰尘晨忱沉陈è¶è¡¬æ’‘称城橙æˆå‘ˆä¹˜ç¨‹æƒ©æ¾„诚承逞骋秤åƒç—´æŒåŒ™æ± è¿Ÿå¼›é©°è€»é½¿ä¾ˆå°ºèµ¤ç¿…æ–¥ç‚½å……å†²è™«å´‡å® æŠ½é…¬ç•´è¸Œç¨ æ„ç¹ä»‡ç»¸çž…丑è‡åˆå‡ºæ©±åŽ¨èº‡é”„é›æ»é™¤æ¥š\"],[\"b440\",\"碄碅碆碈碊碋ç¢ç¢ç¢’碔碕碖碙ç¢ç¢žç¢ 碢碤碦碨\",7,\"碵碶碷碸確碻碼碽碿磀磂磃磄磆磇磈磌ç£ç£Žç£ç£‘磒磓磖磗磘磚\",9],[\"b480\",\"磤磥磦磧磩磪磫ç£\",4,\"磳磵磶磸磹磻\",5,\"礂礃礄礆\",6,\"础储矗æè§¦å¤„æ£å·ç©¿æ¤½ä¼ 船喘串疮窗幢床闯创å¹ç‚Šæ¶é”¤åž‚æ˜¥æ¤¿é†‡å”‡æ·³çº¯è ¢æˆ³ç»°ç–µèŒ¨ç£é›Œè¾žæ…ˆç“·è¯æ¤åˆºèµæ¬¡èªè‘±å›±åŒ†ä»Žä¸›å‡‘粗醋簇促蹿篡窜摧崔催脆ç˜ç²¹æ·¬ç¿ æ‘å˜å¯¸ç£‹æ’®æ“措挫错æè¾¾ç”瘩打大呆æ¹å‚£æˆ´å¸¦æ®†ä»£è´·è¢‹å¾…逮\"],[\"b540\",\"ç¤\",5,\"礔\",9,\"礟\",4,\"礥\",14,\"礵\",4,\"礽礿祂祃祄祅祇祊\",8,\"祔祕祘祙祡祣\"],[\"b580\",\"祤祦祩祪祫祬祮祰\",6,\"祹祻\",4,\"禂禃禆禇禈禉禋禌ç¦ç¦Žç¦ç¦‘ç¦’æ€ è€½æ‹…ä¸¹å•éƒ¸æŽ¸èƒ†æ—¦æ°®ä½†æƒ®æ·¡è¯žå¼¹è›‹å½“æŒ¡å…šè¡æ¡£åˆ€æ£è¹ˆå€’岛祷导到稻悼é“盗德得的蹬ç¯ç™»ç‰çžªå‡³é‚“å ¤ä½Žæ»´è¿ªæ•Œç¬›ç‹„æ¶¤ç¿Ÿå«¡æŠµåº•åœ°è’‚ç¬¬å¸å¼Ÿé€’ç¼”é¢ æŽ‚æ»‡ç¢˜ç‚¹å…¸é›åž«ç”µä½ƒç”¸åº—æƒ¦å¥ æ·€æ®¿ç¢‰å¼é›•å‡‹åˆæŽ‰åŠé’“调跌爹碟è¶è¿è°å \"],[\"b640\",\"禓\",6,\"禛\",11,\"禨\",10,\"禴\",4,\"禼禿秂秄秅秇秈秊秌秎ç§ç§ç§“秔秖秗秙\",5,\"ç§ ç§¡ç§¢ç§¥ç§¨ç§ª\"],[\"b680\",\"秬秮秱\",6,\"秹秺秼秾秿ç¨ç¨„稅稇稈稉稊稌ç¨\",4,\"稕稖稘稙稛稜ä¸ç›¯å®é’‰é¡¶é¼Žé”å®šè®¢ä¸¢ä¸œå†¬è‘£æ‡‚åŠ¨æ ‹ä¾—æ«å†»æ´žå…œæŠ–æ–—é™¡è±†é€—ç—˜éƒ½ç£æ¯’çŠŠç‹¬è¯»å µç¹èµŒæœé•€è‚šåº¦æ¸¡å¦’端çŸé”»æ®µæ–ç¼Žå †å…‘é˜Ÿå¯¹å¢©å¨è¹²æ•¦é¡¿å›¤é’ç›¾éæŽ‡å“†å¤šå¤ºåž›èº²æœµè·ºèˆµå‰æƒ°å •蛾峨鹅俄é¢è®¹å¨¥æ¶åŽ„æ‰¼é鄂饿æ©è€Œå„¿è€³å°”饵洱二\"],[\"b740\",\"ç¨ç¨Ÿç¨¡ç¨¢ç¨¤\",14,\"稴稵稶稸稺稾穀\",5,\"穇\",9,\"ç©’\",4,\"穘\",16],[\"b780\",\"ç©©\",6,\"穱穲穳穵穻穼穽穾窂窅窇窉窊窋窌窎çªçªçª“窔窙窚窛窞窡窢贰å‘罚çä¼ä¹é˜€æ³•ç藩帆番翻樊矾钒ç¹å‡¡çƒ¦åè¿”èŒƒè´©çŠ¯é¥æ³›åŠèŠ³æ–¹è‚ªæˆ¿é˜²å¦¨ä»¿è®¿çººæ”¾è²éžå•¡é£žè‚¥åŒªè¯½å è‚ºåºŸæ²¸è´¹èŠ¬é…šå©æ°›åˆ†çº·åŸç„šæ±¾ç²‰å¥‹ä»½å¿¿æ„¤ç²ªä¸°å°æž«èœ‚峰锋风疯烽逢冯ç¼è®½å¥‰å‡¤ä½›å¦å¤«æ•·è‚¤åµæ‰¶æ‹‚è¾å¹…氟符ä¼ä¿˜æœ\"],[\"b840\",\"窣窤窧窩窪窫窮\",4,\"窴\",10,\"ç«€\",10,\"竌\",9,\"竗竘竚竛竜ç«ç«¡ç«¢ç«¤ç«§\",5,\"竮竰竱竲竳\"],[\"b880\",\"ç«´\",4,\"竻竼竾笀ç¬ç¬‚笅笇笉笌ç¬ç¬Žç¬ç¬’笓笖笗笘笚笜ç¬ç¬Ÿç¬¡ç¬¢ç¬£ç¬§ç¬©ç¬æµ®æ¶ªç¦è¢±å¼—甫抚辅俯釜斧脯腑府è…赴副覆赋å¤å‚…付阜父腹负富讣附妇缚å’å™¶å˜Žè¯¥æ”¹æ¦‚é’™ç›–æº‰å¹²ç”˜æ†æŸ‘ç«¿è‚赶感秆敢赣冈刚钢缸肛纲岗港æ 篙皋高è†ç¾”糕æžé•ç¨¿å‘Šå“¥æŒææˆˆé¸½èƒ³ç–™å‰²é©è‘›æ ¼è›¤é˜éš”铬个å„ç»™æ ¹è·Ÿè€•æ›´åºšç¾¹\"],[\"b940\",\"笯笰笲笴笵笶笷笹笻笽笿\",5,\"ç†çˆçŠççŽç“ç•ç—ç™çœçžçŸç¡ç£\",10,\"ç¯ç°ç³ç´ç¶ç¸çºç¼ç½ç¿ç®ç®‚箃箄箆\",6,\"箎ç®\"],[\"b980\",\"ç®‘ç®’ç®“ç®–ç®˜ç®™ç®šç®›ç®žç®Ÿç® ç®£ç®¤ç®¥ç®®ç®¯ç®°ç®²ç®³ç®µç®¶ç®·ç®¹\",7,\"篂篃範埂耿梗工攻功æé¾šä¾›èº¬å…¬å®«å¼“巩汞拱贡共钩勾沟苟狗垢构è´å¤Ÿè¾œè‡å’•ç®ä¼°æ²½å¤å§‘鼓å¤è›Šéª¨è°·è‚¡æ•…顾固雇刮瓜å‰å¯¡æŒ‚è¤‚ä¹–æ‹æ€ªæ£ºå…³å®˜å† è§‚ç®¡é¦†ç½æƒ¯çŒè´¯å…‰å¹¿é€›ç‘°è§„åœç¡…归龟闺轨鬼诡癸桂柜跪贵刽辊滚æ£é”…éƒå›½æžœè£¹è¿‡å“ˆ\"],[\"ba40\",\"篅篈築篊篋ç¯ç¯Žç¯ç¯ç¯’篔\",4,\"ç¯›ç¯œç¯žç¯Ÿç¯ ç¯¢ç¯£ç¯¤ç¯§ç¯¨ç¯©ç¯«ç¯¬ç¯ç¯¯ç¯°ç¯²\",4,\"篸篹篺篻篽篿\",7,\"簈簉簊ç°ç°Žç°\",5,\"簗簘簙\"],[\"ba80\",\"ç°š\",4,\"ç° \",5,\"簨簩簫\",12,\"ç°¹\",5,\"ç±‚éª¸å©æµ·æ°¦äº¥å®³éª‡é…£æ†¨é‚¯éŸ©å«æ¶µå¯’å‡½å–Šç½•ç¿°æ’¼ææ—±æ†¾æ‚焊汗汉夯æèˆªå£•嚎豪毫éƒå¥½è€—å·æµ©å‘µå–è·èæ ¸ç¦¾å’Œä½•åˆç›’貉阂河涸赫è¤é¹¤è´ºå˜¿é»‘ç—•å¾ˆç‹ æ¨å“¼äº¨æ¨ªè¡¡æ’轰哄烘虹鸿洪å®å¼˜çº¢å–‰ä¾¯çŒ´å¼åŽšå€™åŽå‘¼ä¹Žå¿½ç‘šå£¶è‘«èƒ¡è´ç‹ç³Šæ¹–\"],[\"bb40\",\"籃\",9,\"籎\",36,\"ç±µ\",5,\"ç±¾\",9],[\"bb80\",\"粈粊\",6,\"ç²“ç²”ç²–ç²™ç²šç²›ç² ç²¡ç²£ç²¦ç²§ç²¨ç²©ç²«ç²¬ç²ç²¯ç²°ç²´\",4,\"粺粻弧虎唬护互沪户花哗åŽçŒ¾æ»‘ç”»åˆ’åŒ–è¯æ§å¾Šæ€€æ·®åæ¬¢çŽ¯æ¡“è¿˜ç¼“æ¢æ‚£å”¤ç—ªè±¢ç„•æ¶£å®¦å¹»è’æ…Œé»„磺è—簧皇凰惶煌晃幌æè°Žç°æŒ¥è¾‰å¾½æ¢è›”å›žæ¯æ‚”æ…§å‰æƒ æ™¦è´¿ç§½ä¼šçƒ©æ±‡è®³è¯²ç»˜è¤æ˜å©šé‚æµ‘æ··è±æ´»ä¼™ç«èŽ·æˆ–æƒ‘éœè´§ç¥¸å‡»åœ¾åŸºæœºç•¸ç¨½ç§¯ç®•\"],[\"bc40\",\"粿糀糂糃糄糆糉糋糎\",6,\"糘糚糛ç³ç³žç³¡\",6,\"糩\",5,\"ç³°\",7,\"糹糺糼\",13,\"ç´‹\",5],[\"bc80\",\"ç´‘\",14,\"紡紣紤紥紦紨紩紪紬ç´ç´®ç´°\",6,\"è‚Œé¥¥è¿¹æ¿€è®¥é¸¡å§¬ç»©ç¼‰å‰æžæ£˜è¾‘ç±é›†åŠæ€¥ç–¾æ±²å³å«‰çº§æŒ¤å‡ 脊己蓟技冀å£ä¼Žç¥å‰‚æ‚¸æµŽå¯„å¯‚è®¡è®°æ—¢å¿Œé™…å¦“ç»§çºªå˜‰æž·å¤¹ä½³å®¶åŠ èšé¢Šè´¾ç”²é’¾å‡ç¨¼ä»·æž¶é©¾å«æ¼ç›‘åšå°–笺间煎兼肩艰奸缄茧检柬碱硷拣æ¡ç®€ä¿å‰ªå‡è槛鉴践贱è§é”®ç®ä»¶\"],[\"bd40\",\"ç´·\",54,\"絯\",7],[\"bd80\",\"絸\",32,\"å¥èˆ°å‰‘é¥¯æ¸æº…æ¶§å»ºåƒµå§œå°†æµ†æ±Ÿç–†è’‹æ¡¨å¥–è®²åŒ é…±é™è•‰æ¤’ç¤ç„¦èƒ¶äº¤éƒŠæµ‡éª„娇嚼æ…铰矫侥脚狡角饺缴绞剿教酵轿较å«çª–ææŽ¥çš†ç§¸è¡—é˜¶æˆªåŠ«èŠ‚æ¡”æ°æ·ç«ç«æ´ç»“è§£å§æˆ’è—‰èŠ¥ç•Œå€Ÿä»‹ç–¥è¯«å±Šå·¾ç‹æ–¤é‡‘ä»Šæ´¥è¥Ÿç´§é”¦ä»…è°¨è¿›é³æ™‹ç¦è¿‘烬浸\"],[\"be40\",\"ç¶™\",12,\"ç¶§\",6,\"綯\",42],[\"be80\",\"ç·š\",32,\"尽劲è†å…¢èŒŽç›æ™¶é²¸äº¬æƒŠç²¾ç²³ç»äº•è¦æ™¯é¢ˆé™å¢ƒæ•¬é•œå¾„ç—‰é–竟竞净炯窘æªç©¶çº 玖éŸä¹…ç¸ä¹é…’åŽ©æ•‘æ—§è‡¼èˆ…å’Žå°±ç–šéž æ‹˜ç‹™ç–½å±…é©¹èŠå±€å’€çŸ©ä¸¾æ²®èšæ‹’æ®å·¨å…·è·è¸žé”¯ä¿±å¥æƒ§ç‚¬å‰§æé¹ƒå¨Ÿå€¦çœ·å·ç»¢æ’…攫抉掘倔爵觉决诀ç»å‡èŒé’§å†›å›å³»\"],[\"bf40\",\"ç·»\",62],[\"bf80\",\"縺縼\",4,\"繂\",4,\"繈\",21,\"俊竣浚郡éªå–€å’–å¡å’¯å¼€æ©æ¥·å‡¯æ…¨åˆŠå ªå‹˜åŽç çœ‹åº·æ…·ç³ æ‰›æŠ—äº¢ç‚•è€ƒæ‹·çƒ¤é å·è‹›æŸ¯æ£µç£•é¢—ç§‘å£³å’³å¯æ¸´å…‹åˆ»å®¢è¯¾è‚¯å•ƒåž¦æ³å‘å空æå”æŽ§æŠ å£æ‰£å¯‡æž¯å“窟苦酷库裤夸垮挎跨胯å—ç·ä¾©å¿«å®½æ¬¾åŒ¡ç狂框矿眶旷况äºç›”岿窥葵奎éå‚€\"],[\"c040\",\"繞\",35,\"纃\",23,\"纜çºçºž\"],[\"c080\",\"纮纴纻纼绖绤绬绹缊ç¼ç¼žç¼·ç¼¹ç¼»\",6,\"罃罆\",9,\"ç½’ç½“é¦ˆæ„§æºƒå¤æ˜†æ†å›°æ‹¬æ‰©å»“阔垃拉喇蜡腊辣啦莱æ¥èµ–è“å©ªæ æ‹¦ç¯®é˜‘兰澜谰æ½è§ˆæ‡’ç¼†çƒ‚æ»¥ç…æ¦”狼廊郎朗浪æžåŠ³ç‰¢è€ä½¬å§¥é…ªçƒ™æ¶å‹’ä¹é›·é•蕾磊累儡垒擂肋类泪棱楞冷厘梨çŠé»Žç¯±ç‹¸ç¦»æ¼“ç†æŽé‡Œé²¤ç¤¼èމè”åæ —ä¸½åŽ‰åŠ±ç ¾åŽ†åˆ©å‚ˆä¾‹ä¿\"],[\"c140\",\"罖罙罛罜ç½ç½žç½ ç½£\",4,\"罫罬ç½ç½¯ç½°ç½³ç½µç½¶ç½·ç½¸ç½ºç½»ç½¼ç½½ç½¿ç¾€ç¾‚\",7,\"羋ç¾ç¾\",4,\"羕\",4,\"ç¾›ç¾œç¾ ç¾¢ç¾£ç¾¥ç¾¦ç¾¨\",6,\"ç¾±\"],[\"c180\",\"ç¾³\",4,\"羺羻羾翀翂翃翄翆翇翈翉翋ç¿ç¿\",4,\"ç¿–ç¿—ç¿™\",5,\"翢翣痢立粒沥隶力璃哩俩è”莲连镰廉怜涟帘敛脸链æ‹ç‚¼ç»ƒç²®å‡‰æ¢ç²±è‰¯ä¸¤è¾†é‡æ™¾äº®è°…æ’©èŠåƒšç–—ç‡Žå¯¥è¾½æ½¦äº†æ’‚é•£å»–æ–™åˆ—è£‚çƒˆåŠ£çŒŽç³æž—磷霖临邻鳞淋凛èµå拎玲è±é›¶é¾„铃伶羚凌çµé™µå²é¢†å¦ä»¤æºœç‰æ¦´ç¡«é¦ç•™åˆ˜ç˜¤æµæŸ³å…é¾™è‹å’™ç¬¼çª¿\"],[\"c240\",\"翤翧翨翪翫翬ç¿ç¿¯ç¿²ç¿´\",6,\"翽翾翿耂耇耈耉耊耎è€è€‘耓耚耛è€è€žè€Ÿè€¡è€£è€¤è€«\",5,\"耲耴耹耺耼耾è€èè„è…è‡èˆè‰èŽèèè‘è“è•è–è—\"],[\"c280\",\"è™è›\",13,\"è«\",5,\"è²\",11,\"隆垄拢陇楼娄æ‚篓æ¼é™‹èЦå¢é¢…åºç‚‰æŽ³å¤è™é²éº“碌露路赂鹿潞禄录陆戮驴å•é“ä¾£æ—…å±¥å±¡ç¼•è™‘æ°¯å¾‹çŽ‡æ»¤ç»¿å³¦æŒ›åªæ»¦åµä¹±æŽ 略抡轮伦仑沦纶论èèžºç½—é€»é”£ç®©éª¡è£¸è½æ´›éª†ç»œå¦ˆéº»çŽ›ç 蚂马骂嘛å—埋买麦å–迈脉瞒馒蛮满蔓曼慢漫\"],[\"c340\",\"è¾è‚肂肅肈肊è‚\",5,\"肔肕肗肙肞肣肦肧肨肬肰肳肵肶肸肹肻胅胇\",4,\"èƒ\",6,\"èƒ˜èƒŸèƒ èƒ¢èƒ£èƒ¦èƒ®èƒµèƒ·èƒ¹èƒ»èƒ¾èƒ¿è„€è„脃脄脅脇脈脋\"],[\"c380\",\"脌脕脗脙脛脜è„脟\",12,\"è„脮脰脳脴脵脷脹\",4,\"脿谩芒茫盲氓忙莽猫茅锚毛矛铆å¯èŒ‚å†’å¸½è²Œè´¸ä¹ˆçŽ«æžšæ¢…é…¶éœ‰ç…¤æ²¡çœ‰åª’é•æ¯ç¾Žæ˜§å¯å¦¹åªšé—¨é—·ä»¬èŒè’™æª¬ç›Ÿé”°çŒ›æ¢¦åŸçœ¯é†šé¡ç³œè¿·è°œå¼¥ç±³ç§˜è§…æ³Œèœœå¯†å¹‚æ£‰çœ ç»µå†•å…勉娩缅é¢è‹—æçž„è—ç§’æ¸ºåº™å¦™è”‘çæ°‘æŠ¿çš¿æ•æ‚¯é—½æ˜ŽèžŸé¸£é“å命谬摸\"],[\"c440\",\"è…€\",5,\"腇腉è…è…Žè…腒腖腗腘腛\",4,\"腡腢腣腤腦腨腪腫腬腯腲腳腵腶腷腸è†è†ƒ\",4,\"膉膋膌è†è†Žè†è†’\",5,\"膙膚膞\",4,\"膤膥\"],[\"c480\",\"膧膩膫\",7,\"膴\",5,\"膼膽膾膿臄臅臇臈臉臋è‡\",6,\"æ‘¹è˜‘æ¨¡è†œç£¨æ‘©é”æŠ¹æœ«èŽ«å¢¨é»˜æ²«æ¼ å¯žé™Œè°‹ç‰ŸæŸæ‹‡ç‰¡äº©å§†æ¯å¢“暮幕募慕木目ç¦ç‰§ç©†æ‹¿å“ªå‘é’ é‚£å¨œçº³æ°–ä¹ƒå¥¶è€å¥ˆå—ç”·éš¾å›ŠæŒ è„‘æ¼é—¹æ·–å‘¢é¦å†…å«©èƒ½å¦®éœ“å€ªæ³¥å°¼æ‹Ÿä½ åŒ¿è…»é€†æººè”«æ‹ˆå¹´ç¢¾æ’µæ»å¿µå¨˜é…¿é¸Ÿå°¿æè‚å½å•®é•Šé•æ¶…æ‚¨æŸ ç‹žå‡å®\"],[\"c540\",\"臔\",14,\"臤臥臦臨臩臫臮\",4,\"臵\",5,\"臽臿舃與\",4,\"舎èˆèˆ‘舓舕\",5,\"èˆèˆ 舤舥舦舧舩舮舲舺舼舽舿\"],[\"c580\",\"艀è‰è‰‚艃艅艆艈艊艌è‰è‰Žè‰\",7,\"艙艛艜è‰è‰žè‰ \",7,\"艩拧泞牛æ‰é’®çº½è„“浓农弄奴努怒女暖è™ç–ŸæŒªæ‡¦ç³¯è¯ºå“¦æ¬§é¸¥æ®´è—•å‘•å¶æ²¤å•ªè¶´çˆ¬å¸•æ€•ç¶æ‹æŽ’牌徘湃派攀潘盘ç£ç›¼ç•”判å›ä¹“庞æ—耪胖抛咆刨炮è¢è·‘泡呸胚培裴赔陪é…ä½©æ²›å–·ç›†ç °æŠ¨çƒ¹æ¾Žå½è“¬æ£šç¡¼ç¯·è†¨æœ‹é¹æ§ç¢°å¯ç ’éœ¹æ‰¹æŠ«åŠˆçµæ¯—\"],[\"c640\",\"艪艫艬è‰è‰±è‰µè‰¶è‰·è‰¸è‰»è‰¼èŠ€èŠèŠƒèŠ…èŠ†èŠ‡èŠ‰èŠŒèŠèŠ“èŠ”èŠ•èŠ–èŠšèŠ›èŠžèŠ èŠ¢èŠ£èŠ§èŠ²èŠµèŠ¶èŠºèŠ»èŠ¼èŠ¿è‹€è‹‚è‹ƒè‹…è‹†è‹‰è‹è‹–苙苚è‹è‹¢è‹§è‹¨è‹©è‹ªè‹¬è‹è‹®è‹°è‹²è‹³è‹µè‹¶è‹¸\"],[\"c680\",\"苺苼\",4,\"茊茋èŒèŒèŒ’茓茖茘茙èŒ\",9,\"茩茪茮茰茲茷茻茽啤脾疲皮匹痞僻å±è¬ç¯‡å片骗飘漂瓢票撇瞥拼频贫å“è˜ä¹’åªè‹¹èå¹³å‡ç“¶è¯„å±å¡æ³¼é¢‡å©†ç ´é„迫粕剖扑铺仆莆葡è©è’²åŸ”朴圃普浦谱æ›ç€‘æœŸæ¬ºæ –æˆšå¦»ä¸ƒå‡„æ¼†æŸ’æ²å…¶æ£‹å¥‡æ§ç•¦å´Žè„齿——祈ç¥éª‘起岂乞ä¼å¯å¥‘ç Œå™¨æ°”è¿„å¼ƒæ±½æ³£è®«æŽ\"],[\"c740\",\"茾茿èè‚è„è…èˆèŠ\",4,\"è“è•\",4,\"èè¢è°\",6,\"è¹èºè¾\",6,\"莇莈莊莋莌èŽèŽèŽèŽ‘èŽ”èŽ•èŽ–èŽ—èŽ™èŽšèŽèŽŸèŽ¡\",6,\"莬èŽèŽ®\"],[\"c780\",\"莯莵莻莾莿è‚èƒè„è†èˆè‰è‹èèŽèè‘è’è“è•è—è™èšè›èžè¢è£è¤è¦è§è¨è«è¬èæ°æ´½ç‰µæ‰¦é’Žé“…åƒè¿ç¾ä»Ÿè°¦ä¹¾é»”钱钳剿½œé£æµ…è°´å ‘åµŒæ¬ æ‰æžªå‘›è…”羌墙蔷强抢橇锹敲悄桥瞧乔侨巧鞘撬翘å³ä¿çªåˆ‡èŒ„且怯窃钦侵亲秦ç´å‹¤èŠ¹æ“’ç¦½å¯æ²é’è½»æ°¢å€¾å¿æ¸…擎晴氰情顷请庆ç¼ç©·ç§‹ä¸˜é‚±çƒæ±‚å›šé…‹æ³…è¶‹åŒºè›†æ›²èº¯å±ˆé©±æ¸ \"],[\"c840\",\"è®è¯è³\",4,\"èºè»è¼è¾è¿è€è‚è…è‡èˆè‰èŠèè’\",5,\"è™èšè›èž\",5,\"è©\",7,\"è²\",5,\"è¹èºè»è¾\",7,\"葇葈葉\"],[\"c880\",\"葊\",6,\"è‘’\",4,\"葘è‘è‘žè‘Ÿè‘ è‘¢è‘¤\",4,\"葪葮葯葰葲葴葷葹葻葼å–娶龋趣去圈颧æƒé†›æ³‰å…¨ç—Šæ‹³çŠ¬åˆ¸åŠç¼ºç‚”瘸å´é¹Šæ¦·ç¡®é›€è£™ç¾¤ç„¶ç‡ƒå†‰æŸ“瓤壤攘嚷让饶扰绕惹çƒå£¬ä»äººå¿éŸ§ä»»è®¤åˆƒå¦Šçº«æ‰”仿—¥æˆŽèŒ¸è“‰è£èžç†”æº¶å®¹ç»’å†—æ‰æŸ”è‚‰èŒ¹è •å„’åºå¦‚辱乳æ±å…¥è¤¥è½¯é˜®è•Šç‘žé”闰润若弱撒洒è¨è…®é³ƒå¡žèµ›ä¸‰å\"],[\"c940\",\"葽\",4,\"蒃蒄蒅蒆蒊è’è’\",7,\"蒘蒚蒛è’è’žè’Ÿè’ è’¢\",12,\"蒰蒱蒳蒵蒶蒷蒻蒼蒾蓀蓂蓃蓅蓆蓇蓈蓋蓌蓎è“蓒蓔蓕蓗\"],[\"c980\",\"蓘\",4,\"蓞蓡蓢蓤蓧\",4,\"è“蓮蓯蓱\",10,\"蓽蓾蔀è”蔂伞散桑嗓丧æ”éªšæ‰«å«‚ç‘Ÿè‰²æ¶©æ£®åƒ§èŽŽç ‚æ€åˆ¹æ²™çº±å‚»å•¥ç…žç›æ™’çŠè‹«æ‰å±±åˆ ç…½è¡«é—ªé™•æ“…èµ¡è†³å–„æ±•æ‰‡ç¼®å¢’ä¼¤å•†èµæ™Œä¸Šå°šè£³æ¢¢æŽç¨çƒ§èŠå‹ºéŸ¶å°‘哨邵ç»å¥¢èµŠè›‡èˆŒèˆèµ¦æ‘„å°„æ…‘æ¶‰ç¤¾è®¾ç ·ç”³å‘»ä¼¸èº«æ·±å¨ ç»…ç¥žæ²ˆå®¡å©¶ç”šè‚¾æ…Žæ¸—å£°ç”Ÿç”¥ç‰²å‡ç»³\"],[\"ca40\",\"蔃\",8,\"è”蔎è”è”蔒蔔蔕蔖蔘蔙蔛蔜è”è”žè” è”¢\",8,\"è”\",9,\"蔾\",4,\"蕄蕅蕆蕇蕋\",10],[\"ca80\",\"蕗蕘蕚蕛蕜è•蕟\",4,\"蕥蕦蕧蕩\",8,\"蕳蕵蕶蕷蕸蕼蕽蕿薀è–çœç››å‰©èƒœåœ£å¸ˆå¤±ç‹®æ–½æ¹¿è¯—尸虱å石拾时什食蚀实识å²çŸ¢ä½¿å±Žé©¶å§‹å¼ç¤ºå£«ä¸–柿事æ‹èª“é€åŠ¿æ˜¯å—œå™¬é€‚ä»•ä¾é‡Šé¥°æ°å¸‚æƒå®¤è§†è¯•收手首守寿授售å—瘦兽蔬枢梳殊抒输å”舒淑ç–书赎å°ç†Ÿè–¯æš‘曙署蜀é»é¼ å±žæœ¯è¿°æ ‘æŸæˆç«–墅庶数漱\"],[\"cb40\",\"薂薃薆薈\",6,\"è–\",10,\"è–\",6,\"薥薦薧薩薫薬è–è–±\",5,\"薸薺\",6,\"è—‚\",6,\"è—Š\",4,\"è—‘è—’\"],[\"cb80\",\"藔藖\",5,\"è—\",6,\"藥藦藧藨藪\",14,\"æ•åˆ·è€æ‘”è¡°ç”©å¸…æ “æ‹´éœœåŒçˆ½è°æ°´ç¡ç¨Žå®çž¬é¡ºèˆœè¯´ç¡•æœ”çƒæ–¯æ’•嘶æ€ç§å¸ä¸æ»è‚†å¯ºå—£å››ä¼ºä¼¼é¥²å·³æ¾è€¸æ€‚颂é€å®‹è®¼è¯µæœè‰˜æ“žå—½è‹é…¥ä¿—ç´ é€Ÿç²Ÿåƒ³å¡‘æº¯å®¿è¯‰è‚ƒé…¸è’œç®—è™½éš‹éšç»¥é«“碎å²ç©—é‚éš§ç¥Ÿå™æŸç¬‹è“‘æ¢å”†ç¼©çç´¢é”æ‰€å¡Œä»–它她塔\"],[\"cc40\",\"藹藺藼藽藾蘀\",4,\"蘆\",10,\"蘒蘓蘔蘕蘗\",15,\"蘨蘪\",13,\"蘹蘺蘻蘽蘾蘿虀\"],[\"cc80\",\"è™\",11,\"虒虓處\",4,\"虛虜è™è™Ÿè™ 虡虣\",7,\"çæŒžè¹‹è¸èƒŽè‹”æŠ¬å°æ³°é…žå¤ªæ€æ±°åæ‘Šè´ªç˜«æ»©å›æª€ç—°æ½è°è°ˆå¦æ¯¯è¢’碳探å¹ç‚汤塘æªå ‚æ£ è†›å”ç³–å€˜èººæ·Œè¶Ÿçƒ«æŽæ¶›æ»”ç»¦è„æ¡ƒé€ƒæ·˜é™¶è®¨å¥—特藤腾疼誊梯剔踢锑æé¢˜è¹„å•¼ä½“æ›¿åšæƒ•涕剃屉天添填田甜æ¬èˆ”腆挑æ¡è¿¢çœºè·³è´´é“帖厅å¬çƒƒ\"],[\"cd40\",\"è™è™¯è™°è™²\",6,\"蚃\",6,\"蚎\",4,\"蚔蚖\",5,\"èšž\",4,\"蚥蚦蚫èšèš®èš²èš³èš·èš¸èš¹èš»\",4,\"è›è›‚蛃蛅蛈蛌è›è›’蛓蛕蛖蛗蛚蛜\"],[\"cd80\",\"è›è› 蛡蛢蛣蛥蛦蛧蛨蛪蛫蛬蛯蛵蛶蛷蛺蛻蛼蛽蛿èœèœ„蜅蜆蜋蜌蜎èœèœèœ‘蜔蜖汀廷åœäºåºæŒºè‰‡é€šæ¡é…®çž³åŒé“œå½¤ç«¥æ¡¶æ…ç’ç»Ÿç—›å·æŠ•å¤´é€å‡¸ç§ƒçªå›¾å¾’é€”æ¶‚å± åœŸåå…”æ¹å›¢æŽ¨é¢“腿蜕褪退åžå±¯è‡€æ‹–托脱鸵陀驮驼æ¤å¦¥æ‹“唾挖哇蛙洼娃瓦袜æªå¤–豌弯湾玩顽丸烷完碗挽晚皖惋宛婉万腕汪王亡枉网往旺望忘妄å¨\"],[\"ce40\",\"蜙蜛èœèœŸèœ 蜤蜦蜧蜨蜪蜫蜬èœèœ¯èœ°èœ²èœ³èœµèœ¶èœ¸èœ¹èœºèœ¼èœ½è€\",6,\"èŠè‹èèèè‘è’è”è•è–è˜èš\",5,\"è¡è¢è¦\",7,\"è¯è±è²è³èµ\"],[\"ce80\",\"è·è¸è¹èºè¿èž€èžèž„螆螇螉螊螌螎\",4,\"螔螕螖螘\",6,\"èž \",4,\"å·å¾®å±éŸ¦è¿æ¡…围唯惟为æ½ç»´è‹‡èŽå§”伟伪尾纬未蔚味ç•胃喂é使¸è°“尉慰å«ç˜Ÿæ¸©èšŠæ–‡é—»çº¹å»ç¨³ç´Šé—®å—¡ç¿ç“®æŒèœ—æ¶¡çªæˆ‘æ–¡å§æ¡æ²ƒå·«å‘œé’¨ä¹Œæ±¡è¯¬å±‹æ— 芜梧å¾å´æ¯‹æ¦äº”æ‚åˆèˆžä¼ä¾®åžæˆŠé›¾æ™¤ç‰©å‹¿åŠ¡æ‚Ÿè¯¯æ˜”ç†™æžè¥¿ç¡’矽晰嘻å¸é”¡ç‰º\"],[\"cf40\",\"螥螦螧螩螪螮螰螱螲螴螶螷螸螹螻螼螾螿èŸ\",4,\"蟇蟈蟉蟌\",4,\"蟔\",6,\"蟜èŸèŸžèŸŸèŸ¡èŸ¢èŸ£èŸ¤èŸ¦èŸ§èŸ¨èŸ©èŸ«èŸ¬èŸèŸ¯\",9],[\"cf80\",\"èŸºèŸ»èŸ¼èŸ½èŸ¿è €è è ‚è „\",5,\"è ‹\",7,\"è ”è —è ˜è ™è šè œ\",4,\"è £ç¨€æ¯å¸Œæ‚‰è†å¤•惜熄烯溪æ±çŠ€æª„è¢å¸ä¹ 媳喜铣洗系隙æˆç»†çžŽè™¾åŒ£éœžè¾–æš‡å³¡ä¾ ç‹ä¸‹åަå¤å“掀锨先仙鲜纤咸贤衔舷闲涎弦嫌显险现献县腺馅羡宪陷é™çº¿ç›¸åŽ¢é•¶é¦™ç®±è¥„æ¹˜ä¹¡ç¿”ç¥¥è¯¦æƒ³å“享项巷橡åƒå‘象è§ç¡éœ„削哮嚣销消宵淆晓\"],[\"d040\",\"è ¤\",13,\"è ³\",5,\"è ºè »è ½è ¾è ¿è¡è¡‚衃衆\",5,\"衎\",5,\"衕衖衘衚\",6,\"衦衧衪è¡è¡¯è¡±è¡³è¡´è¡µè¡¶è¡¸è¡¹è¡º\"],[\"d080\",\"衻衼袀袃袆袇袉袊袌袎è¢è¢è¢‘袓袔袕袗\",4,\"è¢\",4,\"袣袥\",5,\"å°åæ ¡è‚–å•¸ç¬‘æ•ˆæ¥”äº›æ‡èŽéž‹å挟æºé‚ªæ–œèƒè°å†™æ¢°å¸èŸ¹æ‡ˆæ³„æ³»è°¢å±‘è–ªèŠ¯é”Œæ¬£è¾›æ–°å¿»å¿ƒä¿¡è¡…æ˜Ÿè…¥çŒ©æƒºå…´åˆ‘åž‹å½¢é‚¢è¡Œé†’å¹¸ææ€§å§“兄凶胸匈汹雄熊休修羞朽嗅锈秀袖绣墟戌需虚嘘须å¾è®¸è“„酗噿—åºç•œæ¤çµ®å©¿ç»ªç»è½©å–§å®£æ‚¬æ—‹çŽ„\"],[\"d140\",\"袬袮袯袰袲\",4,\"袸袹袺袻袽袾袿裀裃裄裇裈裊裋裌è£è£è£è£‘裓裖裗裚\",4,\"è£ è£¡è£¦è£§è£©\",6,\"裲裵裶裷裺裻製裿褀è¤è¤ƒ\",5],[\"d180\",\"褉褋\",4,\"褑褔\",4,\"褜\",4,\"褢褣褤褦褧褨褩褬è¤è¤®è¤¯è¤±è¤²è¤³è¤µè¤·é€‰ç™£çœ©ç»šé´è–›å¦ç©´é›ªè¡€å‹‹ç†å¾ªæ—¬è¯¢å¯»é©¯å·¡æ®‰æ±›è®è®¯é€Šè¿…压押鸦é¸å‘€ä¸«èŠ½ç‰™èšœå´–è¡™æ¶¯é›…å“‘äºšè®¶ç„‰å’½é˜‰çƒŸæ·¹ç›ä¸¥ç ”èœ’å²©å»¶è¨€é¢œé˜Žç‚Žæ²¿å¥„æŽ©çœ¼è¡æ¼”è‰³å °ç‡•åŽŒç šé›å”å½¦ç„°å®´è°šéªŒæ®ƒå¤®é¸¯ç§§æ¨æ‰¬ä½¯ç–¡ç¾Šæ´‹é˜³æ°§ä»°ç—’å…»æ ·æ¼¾é‚€è…°å¦–ç‘¶\"],[\"d240\",\"褸\",8,\"襂襃襅\",24,\"è¥ \",5,\"襧\",19,\"襼\"],[\"d280\",\"襽襾覀覂覄覅覇\",26,\"摇尧é¥çª‘谣姚咬舀è¯è¦è€€æ¤°å™Žè€¶çˆ·é‡Žå†¶ä¹Ÿé¡µæŽ–ä¸šå¶æ›³è…‹å¤œæ¶²ä¸€å£¹åŒ»æ–铱ä¾ä¼Šè¡£é¢å¤·é—ç§»ä»ªèƒ°ç–‘æ²‚å®œå§¨å½æ¤…èšå€šå·²ä¹™çŸ£ä»¥è‰ºæŠ‘æ˜“é‚‘å±¹äº¿å½¹è‡†é€¸è‚„ç–«äº¦è£”æ„æ¯…忆义益溢诣议谊译异翼翌绎茵è«å› 殷音阴姻åŸé“¶æ·«å¯…饮尹引éš\"],[\"d340\",\"覢\",30,\"觃è§è§“觔觕觗觘觙觛è§è§Ÿè§ 觡觢觤觧觨觩觪觬è§è§®è§°è§±è§²è§´\",6],[\"d380\",\"è§»\",4,\"è¨\",5,\"計\",21,\"å°è‹±æ¨±å©´é¹°åº”缨莹è¤è¥è§è‡è¿Žèµ¢ç›ˆå½±é¢–ç¡¬æ˜ å“Ÿæ‹¥ä½£è‡ƒç—ˆåº¸é›è¸Šè›¹å’泳涌永æ¿å‹‡ç”¨å¹½ä¼˜æ‚ 忧尤由邮铀犹油游酉有å‹å³ä½‘釉诱åˆå¹¼è¿‚æ·¤äºŽç›‚æ¦†è™žæ„šèˆ†ä½™ä¿žé€¾é±¼æ„‰æ¸æ¸”隅予娱雨与屿禹宇è¯ç¾½çŽ‰åŸŸèŠ‹éƒåé‡å–»å³ªå¾¡æ„ˆæ¬²ç‹±è‚²èª‰\"],[\"d440\",\"訞\",31,\"訿\",8,\"詉\",21],[\"d480\",\"詟\",25,\"詺\",6,\"浴寓裕预豫é©é¸³æ¸Šå†¤å…ƒåž£è¢åŽŸæ´è¾•å›å‘˜åœ†çŒ¿æºç¼˜è¿œè‹‘愿怨院曰约越跃钥岳粤月悦阅耘云郧匀陨å…è¿è•´é…晕韵å•åŒç ¸æ‚æ ½å“‰ç¾å®°è½½å†åœ¨å’±æ”’暂赞赃è„葬é糟凿藻枣早澡蚤èºå™ªé€ çš‚ç¶ç‡¥è´£æ‹©åˆ™æ³½è´¼æ€Žå¢žæ†Žæ›¾èµ 扎喳渣æœè½§\"],[\"d540\",\"èª\",7,\"誋\",7,\"誔\",46],[\"d580\",\"諃\",32,\"é“¡é—¸çœ¨æ …æ¦¨å’‹ä¹ç‚¸è¯ˆæ‘˜æ–‹å®…çª„å€ºå¯¨çž»æ¯¡è©¹ç²˜æ²¾ç›æ–©è¾—å´å±•è˜¸æ ˆå æˆ˜ç«™æ¹›ç»½æ¨Ÿç« å½°æ¼³å¼ æŽŒæ¶¨æ–丈å¸è´¦ä»—èƒ€ç˜´éšœæ‹›æ˜æ‰¾æ²¼èµµç…§ç½©å…†è‚‡å¬é®æŠ˜å“²è›°è¾™è€…é”—è”—è¿™æµ™çæ–ŸçœŸç”„ç §è‡»è´žé’ˆä¾¦æž•ç–¹è¯Šéœ‡æŒ¯é•‡é˜µè’¸æŒ£çå¾ç‹°äº‰æ€”æ•´æ‹¯æ£æ”¿\"],[\"d640\",\"諤\",34,\"謈\",27],[\"d680\",\"謤謥謧\",30,\"帧症郑è¯èŠæžæ”¯å±èœ˜çŸ¥è‚¢è„‚æ±ä¹‹ç»‡èŒç›´æ¤æ®–æ‰§å€¼ä¾„å€æŒ‡æ¢è¶¾åªæ—¨çº¸å¿—挚掷至致置帜峙制智秩稚质炙痔滞治窒ä¸ç›…å¿ é’Ÿè¡·ç»ˆç§è‚¿é‡ä»²ä¼—èˆŸå‘¨å·žæ´²è¯Œç²¥è½´è‚˜å¸šå’’çš±å®™æ˜¼éª¤ç æ ªè››æœ±çŒªè¯¸è¯›é€ç«¹çƒ›ç…®æ‹„瞩嘱主著柱助蛀贮铸ç‘\"],[\"d740\",\"è†\",31,\"è§\",4,\"è\",25],[\"d780\",\"讇\",24,\"讬讱讻诇è¯è¯ªè°‰è°žä½æ³¨ç¥é©»æŠ“çˆªæ‹½ä¸“ç –è½¬æ’°èµšç¯†æ¡©åº„è£…å¦†æ’žå£®çŠ¶æ¤Žé”¥è¿½èµ˜å ç¼€è°†å‡†æ‰æ‹™å“桌ç¢èŒé…Œå•„ç€ç¼æµŠå…¹å’¨èµ„姿滋淄åœç´«ä»”籽滓å自æ¸å—é¬ƒæ£•è¸ªå®—ç»¼æ€»çºµé‚¹èµ°å¥æç§Ÿè¶³å’æ—ç¥–è¯…é˜»ç»„é’»çº‚å˜´é†‰æœ€ç½ªå°Šéµæ˜¨å·¦ä½æŸžåšä½œå座\"],[\"d840\",\"è°¸\",8,\"豂豃豄豅豈豊豋è±\",7,\"豖豗豘豙豛\",5,\"è±£\",6,\"豬\",6,\"豴豵豶豷豻\",6,\"貃貄貆貇\"],[\"d880\",\"貈貋è²\",6,\"貕貖貗貙\",20,\"äºä¸Œå…€ä¸å»¿å…丕亘丞鬲å¬å™©ä¸¨ç¦ºä¸¿åŒ•乇å¤çˆ»å®æ°å›Ÿèƒ¤é¦—毓ç¾é¼—丶亟é¼ä¹œä¹©äº“芈å›å•¬å˜ä»„åŽåŽåŽ£åŽ¥åŽ®é¥èµåŒšåµåŒ¦åŒ®åŒ¾èµœå¦å£åˆ‚刈刎åˆåˆ³åˆ¿å‰€å‰Œå‰žå‰¡å‰œè’¯å‰½åŠ‚åŠåŠåŠ“å†‚ç½”äº»ä»ƒä»‰ä»‚ä»¨ä»¡ä»«ä»žä¼›ä»³ä¼¢ä½¤ä»µä¼¥ä¼§ä¼‰ä¼«ä½žä½§æ”¸ä½šä½\"],[\"d940\",\"è²®\",62],[\"d980\",\"è³\",32,\"佟佗伲伽佶佴侑侉侃ä¾ä½¾ä½»ä¾ªä½¼ä¾¬ä¾”俦俨俪俅俚俣俜俑俟俸倩åŒä¿³å€¬å€å€®å€ä¿¾å€œå€Œå€¥å€¨å¾åƒå•åˆåŽå¬å»å‚¥å‚§å‚©å‚ºåƒ–儆åƒåƒ¬åƒ¦åƒ®å„‡å„‹ä»æ°½ä½˜ä½¥ä¿Žé¾ 汆籴兮巽黉馘å†å¤”勹åŒè¨‡åŒå‡«å¤™å…•äº å…–äº³è¡®è¢¤äºµè„”è£’ç¦€å¬´è ƒç¾¸å†«å†±å†½å†¼\"],[\"da40\",\"è´Ž\",14,\"è´ èµ‘èµ’èµ—èµŸèµ¥èµ¨èµ©èµªèµ¬èµ®èµ¯èµ±èµ²èµ¸\",8,\"趂趃趆趇趈趉趌\",4,\"è¶’è¶“è¶•\",9,\"è¶ è¶¡\"],[\"da80\",\"趢趤\",12,\"趲趶趷趹趻趽跀è·è·‚跅跇跈跉跊è·è·è·’è·“è·”å‡‡å†–å†¢å†¥è® è®¦è®§è®ªè®´è®µè®·è¯‚è¯ƒè¯‹è¯è¯Žè¯’è¯“è¯”è¯–è¯˜è¯™è¯œè¯Ÿè¯ è¯¤è¯¨è¯©è¯®è¯°è¯³è¯¶è¯¹è¯¼è¯¿è°€è°‚è°„è°‡è°Œè°è°‘谒谔谕谖谙谛谘è°è°Ÿè° 谡谥谧谪谫谮谯谲谳谵谶å©åºé˜é˜¢é˜¡é˜±é˜ªé˜½é˜¼é™‚陉陔陟陧陬陲陴隈éšéš—éš°é‚—é‚›é‚邙邬邡邴邳邶邺\"],[\"db40\",\"è·•è·˜è·™è·œè· è·¡è·¢è·¥è·¦è·§è·©è·è·®è·°è·±è·²è·´è·¶è·¼è·¾\",6,\"踆踇踈踋è¸è¸Žè¸è¸‘踒踓踕\",7,\"è¸ è¸¡è¸¤\",4,\"踫è¸è¸°è¸²è¸³è¸´è¸¶è¸·è¸¸è¸»è¸¼è¸¾\"],[\"db80\",\"踿蹃蹅蹆蹌\",4,\"蹓\",5,\"蹚\",11,\"蹧蹨蹪蹫蹮蹱邸邰éƒéƒ…邾éƒéƒ„郇郓郦郢郜郗郛郫郯郾鄄鄢鄞鄣鄱鄯鄹酃酆åˆå¥‚劢劬åŠåŠ¾å“¿å‹å‹–å‹°åŸç‡®çŸå»´å‡µå‡¼é¬¯å޶å¼ç•šå·¯åŒåž©åž¡å¡¾å¢¼å£…壑圩圬圪圳圹圮圯åœåœ»å‚å©åž…å«åž†å¼å»å¨åå¶å³åžåž¤åžŒåž²åŸåž§åž´åž“åž åŸ•åŸ˜åŸšåŸ™åŸ’åž¸åŸ´åŸ¯åŸ¸åŸ¤åŸ\"],[\"dc40\",\"蹳蹵蹷\",4,\"蹽蹾躀躂躃躄躆躈\",6,\"躑躒躓躕\",6,\"èºèºŸ\",11,\"èºèº®èº°èº±èº³\",6,\"躻\",7],[\"dc80\",\"軃\",10,\"è»\",21,\"å ‹å 埽åŸå €å žå ™å¡„å 塥塬å¢å¢‰å¢šå¢€é¦¨é¼™æ‡¿è‰¹è‰½è‰¿èŠèŠŠèŠ¨èŠ„èŠŽèŠ‘èŠ—èŠ™èŠ«èŠ¸èŠ¾èŠ°è‹ˆè‹Šè‹£èŠ˜èŠ·èŠ®è‹‹è‹Œè‹èŠ©èŠ´èŠ¡èŠªèŠŸè‹„è‹ŽèŠ¤è‹¡èŒ‰è‹·è‹¤èŒèŒ‡è‹œè‹´è‹’è‹˜èŒŒè‹»è‹“èŒ‘èŒšèŒ†èŒ”èŒ•è‹ è‹•èŒœè‘è›èœèŒˆèŽ’èŒ¼èŒ´èŒ±èŽ›èžèŒ¯èè‡èƒèŸè€èŒ—è èŒèŒºèŒ³è¦è¥\"],[\"dd40\",\"軥\",62],[\"dd80\",\"輤\",32,\"è¨èŒ›è©è¬èªèè®èްè¸èŽ³èŽ´èŽ èŽªèŽ“èŽœèŽ…è¼èŽ¶èŽ©è½èޏè»èŽ˜èŽžèŽ¨èŽºèŽ¼èèè¥è˜å ‡è˜è‹èè½è–èœè¸è‘è†è”èŸèèƒè¸è¹èªè…è€è¦è°è¡è‘œè‘‘葚葙葳蒇蒈葺蒉葸è¼è‘†è‘©è‘¶è’Œè’Žè±è‘è“è“è“è“¦è’½è““è“Šè’¿è’ºè“ è’¡è’¹è’´è’—è“¥è“£è”Œç”蔸蓰蔹蔟蔺\"],[\"de40\",\"è½…\",32,\"轪辀辌辒è¾è¾ 辡辢辤辥辦辧辪辬è¾è¾®è¾¯è¾²è¾³è¾´è¾µè¾·è¾¸è¾ºè¾»è¾¼è¾¿è¿€è¿ƒè¿†\"],[\"de80\",\"迉\",4,\"è¿è¿’è¿–è¿—è¿šè¿ è¿¡è¿£è¿§è¿¬è¿¯è¿±è¿²è¿´è¿µè¿¶è¿ºè¿»è¿¼è¿¾è¿¿é€‡é€ˆé€Œé€Žé€“é€•é€˜è•–è”»è“¿è“¼è•™è•ˆè•¨è•¤è•žè•ºçž¢è•ƒè•²è•»è–¤è–¨è–‡è–蕹薮薜薅薹薷薰藓è—藜藿蘧蘅蘩蘖蘼廾弈夼å¥è€·å¥•奚奘åŒå°¢å°¥å°¬å°´æ‰Œæ‰ªæŠŸæŠ»æ‹Šæ‹šæ‹—æ‹®æŒ¢æ‹¶æŒ¹æ‹æƒæŽæ¶æ±æºæŽŽæŽ´ææŽ¬æŽŠæ©æŽ®æŽ¼æ²æ¸æ æ¿æ„æžæŽæ‘’æ†æŽ¾æ‘…æ‘æ‹æ›æ æŒæ¦æ¡æ‘žæ’„æ‘æ’–\"],[\"df40\",\"這逜連逤逥逧\",5,\"逰\",4,\"逷逹逺逽逿é€éƒé…é†éˆ\",4,\"éŽé”é•é–é™éšéœ\",5,\"é¤é¦é§é©éªé«é¬é¯\",4,\"é¶\",6,\"é¾é‚\"],[\"df80\",\"還邅邆邇邉邊邌\",4,\"é‚’é‚”é‚–é‚˜é‚šé‚œé‚žé‚Ÿé‚ é‚¤é‚¥é‚§é‚¨é‚©é‚«é‚é‚²é‚·é‚¼é‚½é‚¿éƒ€æ‘ºæ’·æ’¸æ’™æ’ºæ“€æ“æ“—擤擢攉攥攮弋忒甙弑åŸå±å½å©å¨å»å’å–å†å‘‹å‘’呓呔呖呃å¡å‘—å‘™å£å²å’‚咔呷呱呤咚咛咄呶呦å’å“å’哂咴哒咧咦哓哔呲咣哕咻咿哌哙哚哜咩咪咤å“å“å“žå”›å“§å” å“½å””å“³å”¢å”£å”唑唧唪啧å–喵啉å•å•啕唿å•唼\"],[\"e040\",\"郂郃郆郈郉郋郌éƒéƒ’éƒ”éƒ•éƒ–éƒ˜éƒ™éƒšéƒžéƒŸéƒ éƒ£éƒ¤éƒ¥éƒ©éƒªéƒ¬éƒ®éƒ°éƒ±éƒ²éƒ³éƒµéƒ¶éƒ·éƒ¹éƒºéƒ»éƒ¼éƒ¿é„€é„鄃鄅\",19,\"鄚鄛鄜\"],[\"e080\",\"é„é„Ÿé„ é„¡é„¤\",10,\"鄰鄲\",6,\"鄺\",8,\"酄唷啖啵啶啷唳唰啜喋嗒喃喱喹喈å–喟啾嗖喑啻嗟喽喾喔喙嗪嗷嗉嘟嗑嗫嗬嗔嗦å—嗄嗯嗥嗲嗳嗌å—嗨嗵嗤辔嘞嘈嘌å˜å˜¤å˜£å—¾å˜€å˜§å˜å™˜å˜¹å™—嘬å™å™¢å™™å™œå™Œå™”嚆噤噱噫噻噼嚅嚓嚯囔囗å›å›¡å›µå›«å›¹å›¿åœ„圊圉圜å¸å¸™å¸”帑帱帻帼\"],[\"e140\",\"é……é…‡é…ˆé…‘é…“é…”é…•é…–é…˜é…™é…›é…œé…Ÿé… é…¦é…§é…¨é…«é…酳酺酻酼醀\",4,\"醆醈醊醎é†é†“\",6,\"醜\",5,\"醤\",5,\"醫醬醰醱醲醳醶醷醸醹醻\"],[\"e180\",\"醼\",10,\"釈釋é‡é‡’\",9,\"é‡\",8,\"帷幄幔幛幞幡岌屺å²å²å²–岈岘岙岑岚岜岵岢岽岬岫岱岣å³å²·å³„峒峤峋峥崂崃崧崦崮崤崞崆崛嵘崾崴崽嵬嵛嵯åµåµ«åµ‹åµŠåµ©åµ´å¶‚å¶™å¶è±³å¶·å·…彳彷徂徇徉後徕徙徜徨å¾å¾µå¾¼è¡¢å½¡çŠçŠ°çŠ´çŠ·çŠ¸ç‹ƒç‹ç‹Žç‹ç‹’狨狯狩狲狴狷çŒç‹³çŒƒç‹º\"],[\"e240\",\"釦\",62],[\"e280\",\"鈥\",32,\"狻猗猓猡猊猞çŒçŒ•猢猹猥猬猸猱ççç—ç ç¬ç¯ç¾èˆ›å¤¥é£§å¤¤å¤‚饣饧\",5,\"饴饷饽馀馄馇馊é¦é¦é¦‘é¦“é¦”é¦•åº€åº‘åº‹åº–åº¥åº åº¹åºµåº¾åº³èµ“å»’å»‘å»›å»¨å»ªè†ºå¿„å¿‰å¿–å¿æ€ƒå¿®æ€„忡忤忾怅怆忪å¿å¿¸æ€™æ€µæ€¦æ€›æ€æ€æ€©æ€«æ€Šæ€¿æ€¡æ¸æ¹æ»æºæ‚\"],[\"e340\",\"鉆\",45,\"鉵\",16],[\"e380\",\"銆\",7,\"éŠ\",24,\"æªæ½æ‚–æ‚šæ‚æ‚æ‚ƒæ‚’æ‚Œæ‚›æƒ¬æ‚»æ‚±æƒæƒ˜æƒ†æƒšæ‚´æ„ 愦愕愣惴愀愎愫慊慵憬憔憧憷懔懵å¿éš³é—©é—«é—±é—³é—µé—¶é—¼é—¾é˜ƒé˜„阆阈阊阋阌é˜é˜é˜’é˜•é˜–é˜—é˜™é˜šä¸¬çˆ¿æˆ•æ°µæ±”æ±œæ±Šæ²£æ²…æ²æ²”æ²Œæ±¨æ±©æ±´æ±¶æ²†æ²©æ³æ³”æ²æ³·æ³¸æ³±æ³—æ²²æ³ æ³–æ³ºæ³«æ³®æ²±æ³“æ³¯æ³¾\"],[\"e440\",\"銨\",5,\"銯\",24,\"鋉\",31],[\"e480\",\"é‹©\",32,\"æ´¹æ´§æ´Œæµƒæµˆæ´‡æ´„æ´™æ´Žæ´«æµæ´®æ´µæ´šæµæµ’æµ”æ´³æ¶‘æµ¯æ¶žæ¶ æµžæ¶“æ¶”æµœæµ æµ¼æµ£æ¸šæ·‡æ·…æ·žæ¸Žæ¶¿æ· æ¸‘æ·¦æ·æ·™æ¸–æ¶«æ¸Œæ¶®æ¸«æ¹®æ¹Žæ¹«æº²æ¹Ÿæº†æ¹“æ¹”æ¸²æ¸¥æ¹„æ»Ÿæº±æº˜æ» æ¼æ»¢æº¥æº§æº½æº»æº·æ»—æº´æ»æºæ»‚æºŸæ½¢æ½†æ½‡æ¼¤æ¼•æ»¹æ¼¯æ¼¶æ½‹æ½´æ¼ªæ¼‰æ¼©æ¾‰æ¾æ¾Œæ½¸æ½²æ½¼æ½ºæ¿‘\"],[\"e540\",\"錊\",51,\"錿\",10],[\"e580\",\"éŠ\",31,\"髿¿‰æ¾§æ¾¹æ¾¶æ¿‚æ¿¡æ¿®æ¿žæ¿ æ¿¯ç€šç€£ç€›ç€¹ç€µççžå®€å®„宕宓宥宸甯骞æ´å¯¤å¯®è¤°å¯°è¹‡è¬‡è¾¶è¿“迕迥迮迤迩迦迳迨逅逄逋逦逑é€é€–逡逵逶é€é€¯é„é‘é’éé¨é˜é¢é›æš¹é´é½é‚‚邈邃邋å½å½—彖彘尻咫å±å±™å±å±£å±¦ç¾¼å¼ªå¼©å¼è‰´å¼¼é¬»å±®å¦å¦ƒå¦å¦©å¦ªå¦£\"],[\"e640\",\"é¬\",34,\"éŽ\",27],[\"e680\",\"鎬\",29,\"é‹éŒé妗姊妫妞妤姒妲妯姗妾娅娆å§å¨ˆå§£å§˜å§¹å¨Œå¨‰å¨²å¨´å¨‘å¨£å¨“å©€å©§å©Šå©•å¨¼å©¢å©µèƒ¬åªªåª›å©·å©ºåª¾å««åª²å«’å«”åª¸å« å«£å«±å«–å«¦å«˜å«œå¬‰å¬—å¬–å¬²å¬·å€å°•å°œåšå¥å³å‘å“å¢é©µé©·é©¸é©ºé©¿é©½éª€éªéª…骈骊éªéª’骓骖骘骛骜éªéªŸéª 骢骣骥骧纟纡纣纥纨纩\"],[\"e740\",\"éŽ\",7,\"é—\",54],[\"e780\",\"éŽ\",32,\"çºçº°çº¾ç»€ç»ç»‚绉绋绌ç»ç»”ç»—ç»›ç» ç»¡ç»¨ç»«ç»®ç»¯ç»±ç»²ç¼ç»¶ç»ºç»»ç»¾ç¼ç¼‚缃缇缈缋缌ç¼ç¼‘缒缗缙缜缛缟缡\",6,\"缪缫缬ç¼ç¼¯\",4,\"缵幺畿巛甾邕玎玑玮玢玟çç‚ç‘玷玳ç€ç‰çˆç¥ç™é¡¼çŠç©ç§çžçŽºç²ççªç‘›ç¦ç¥ç¨ç°ç®ç¬\"],[\"e840\",\"é¯\",14,\"é¿\",43,\"鑬é‘鑮鑯\"],[\"e880\",\"é‘°\",20,\"钑钖钘铇é“é““é“”é“šé“¦é“»é”œé” ç›çšç‘瑜瑗瑕瑙瑷ç‘瑾璜璎璀ç’璇璋璞璨璩ç’ç’§ç“’ç’ºéŸªéŸ«éŸ¬æŒæ“æžæˆæ©æž¥æž‡æªæ³æž˜æž§æµæž¨æžžæžæž‹æ·æ¼æŸ°æ ‰æŸ˜æ ŠæŸ©æž°æ ŒæŸ™æžµæŸšæž³æŸæ €æŸƒæž¸æŸ¢æ ŽæŸæŸ½æ ²æ ³æ¡ æ¡¡æ¡Žæ¡¢æ¡„æ¡¤æ¢ƒæ æ¡•æ¡¦æ¡æ¡§æ¡€æ ¾æ¡Šæ¡‰æ ©æ¢µæ¢æ¡´æ¡·æ¢“æ¡«æ£‚æ¥®æ£¼æ¤Ÿæ¤ æ£¹\"],[\"e940\",\"é”§é”³é”½é•ƒé•ˆé•‹é••é•šé• é•®é•´é•µé•·\",7,\"é–€\",42],[\"e980\",\"é–«\",32,\"æ¤¤æ£°æ¤‹æ¤æ¥—æ££æ¤æ¥±æ¤¹æ¥ æ¥‚æ¥æ¦„æ¥«æ¦€æ¦˜æ¥¸æ¤´æ§Œæ¦‡æ¦ˆæ§Žæ¦‰æ¥¦æ¥£æ¥¹æ¦›æ¦§æ¦»æ¦«æ¦æ§”æ¦±æ§æ§Šæ§Ÿæ¦•æ§ æ¦æ§¿æ¨¯æ§æ¨—æ¨˜æ©¥æ§²æ©„æ¨¾æª æ©æ©›æ¨µæªŽæ©¹æ¨½æ¨¨æ©˜æ©¼æª‘æªæª©æª—æª«çŒ·ç’æ®æ®‚æ®‡æ®„æ®’æ®“æ®æ®šæ®›æ®¡æ®ªè½«è½è½±è½²è½³è½µè½¶è½¸è½·è½¹è½ºè½¼è½¾è¾è¾‚辄辇辋\"],[\"ea40\",\"é—Œ\",27,\"é—¬é—¿é˜‡é˜“é˜˜é˜›é˜žé˜ é˜£\",6,\"阫阬é˜é˜¯é˜°é˜·é˜¸é˜¹é˜ºé˜¾é™é™ƒé™Šé™Žé™é™‘陒陓陖陗\"],[\"ea80\",\"陘陙陚陜é™é™žé™ 陣陥陦陫é™\",4,\"陳陸\",12,\"隇隉隊è¾è¾Žè¾è¾˜è¾šè»Žæˆ‹æˆ—戛戟戢戡戥戤戬臧瓯瓴瓿ç”ç”‘ç”“æ”´æ—®æ—¯æ—°æ˜Šæ˜™æ²æ˜ƒæ˜•æ˜€ç‚…æ›·æ˜æ˜´æ˜±æ˜¶æ˜µè€†æ™Ÿæ™”æ™æ™æ™–æ™¡æ™—æ™·æš„æšŒæš§æšæš¾æ››æ›œæ›¦æ›©è´²è´³è´¶è´»è´½èµ€èµ…赆赈赉赇èµèµ•赙觇觊觋觌觎è§è§è§‘牮犟ç‰ç‰¦ç‰¯ç‰¾ç‰¿çŠ„çŠ‹çŠçŠçŠ’æŒˆæŒ²æŽ°\"],[\"eb40\",\"隌階隑隒隓隕隖隚際éš\",9,\"隨\",7,\"隱隲隴隵隷隸隺隻隿雂雃雈雊雋é›é›‘雓雔雖\",9,\"雡\",6,\"雫\"],[\"eb80\",\"雬é›é›®é›°é›±é›²é›´é›µé›¸é›ºé›»é›¼é›½é›¿éœ‚霃霅霊霋霌éœéœ‘霒霔霕霗\",4,\"éœéœŸéœ æ¿æ“˜è€„æ¯ªæ¯³æ¯½æ¯µæ¯¹æ°…æ°‡æ°†æ°æ°•氘氙氚氡氩氤氪氲攵敕敫ç‰ç‰’牖爰虢刖肟肜肓肼朊肽肱肫è‚肴肷胧胨胩胪胛胂胄胙èƒèƒ—æœèƒèƒ«èƒ±èƒ´èƒè„è„Žèƒ²èƒ¼æœ•è„’è±šè„¶è„žè„¬è„˜è„²è…ˆè…Œè…“è…´è…™è…šè…±è… è…©è…¼è…½è…è…§å¡åªµè†ˆè†‚膑滕膣膪臌朦臊膻\"],[\"ec40\",\"霡\",8,\"霫霬霮霯霱霳\",4,\"霺霻霼霽霿\",18,\"é”é•é—é˜éšéœééŸé£é¤é¦é§é¨éª\",7],[\"ec80\",\"é²éµé·\",4,\"é½\",7,\"鞆\",4,\"鞌鞎éžéžéž“鞕鞖鞗鞙\",4,\"è‡è†¦æ¬¤æ¬·æ¬¹æƒæ†æ™é£‘飒飓飕飙飚殳彀毂觳æ–齑斓於旆旄旃旌旎旒旖炀炜炖ç‚炻烀炷炫炱烨烊ç„ç„“ç„–ç„¯ç„±ç…³ç…œç…¨ç……ç…²ç…Šç…¸ç…ºç†˜ç†³ç†µç†¨ç† ç‡ ç‡”ç‡§ç‡¹çˆçˆ¨ç¬ç„˜ç…¦ç†¹æˆ¾æˆ½æ‰ƒæ‰ˆæ‰‰ç¤»ç¥€ç¥†ç¥‰ç¥›ç¥œç¥“ç¥šç¥¢ç¥—ç¥ ç¥¯ç¥§ç¥ºç¦…ç¦Šç¦šç¦§ç¦³å¿‘å¿\"],[\"ed40\",\"鞞鞟鞡鞢鞤\",6,\"鞬鞮鞰鞱鞳鞵\",46],[\"ed80\",\"韤韥韨韮\",4,\"韴韷\",23,\"æ€¼ææšæ§ææ™æ£æ‚«æ„†æ„æ…æ†©æ†æ‡‹æ‡‘æˆ†è‚€è¿æ²“æ³¶æ·¼çŸ¶çŸ¸ç €ç ‰ç —ç ˜ç ‘æ–«ç ç œç ç ¹ç ºç »ç Ÿç ¼ç ¥ç ¬ç £ç ©ç¡Žç¡ç¡–ç¡—ç ¦ç¡ç¡‡ç¡Œç¡ªç¢›ç¢“碚碇碜碡碣碲碹碥磔磙磉磬磲礅磴礓礤礞礴龛黹黻黼盱眄çœç›¹çœ‡çœˆçœšçœ¢çœ™çœçœ¦çœµçœ¸çç‘ç‡çƒçšç¨\"],[\"ee40\",\"é \",62],[\"ee80\",\"顎\",32,\"ç¢ç¥ç¿çžç½çž€çžŒçž‘çžŸçž çž°çžµçž½ç”ºç•€ç•Žç•‹ç•ˆç•›ç•²ç•¹ç–ƒç½˜ç½¡ç½Ÿè©ˆç½¨ç½´ç½±ç½¹ç¾ç½¾ç›ç›¥è ²é’…钆钇钋钊钌é’é’é’钔钗钕钚钛钜钣钤钫钪é’钬钯钰钲钴钶\",4,\"钼钽钿铄铈\",6,\"é“é“‘é“’é“•é“–é“—é“™é“˜é“›é“žé“Ÿé“ é“¢é“¤é“¥é“§é“¨é“ª\"],[\"ef40\",\"顯\",5,\"颋颎颒颕颙颣風\",37,\"é£é£é£”飖飗飛飜é£é£ \",4],[\"ef80\",\"飥飦飩\",30,\"铩铫铮铯铳铴铵铷铹铼铽铿锃锂锆锇锉锊é”锎é”é”’\",4,\"锘锛é”锞锟锢锪锫锩锬锱锲锴锶锷锸锼锾锿镂锵镄镅镆镉镌镎é•镒镓镔镖镗镘镙镛镞镟é•镡镢镤\",8,\"镯镱镲镳锺矧矬雉秕ç§ç§£ç§«ç¨†åµ‡ç¨ƒç¨‚稞稔\"],[\"f040\",\"餈\",4,\"餎é¤é¤‘\",28,\"餯\",26],[\"f080\",\"饊\",9,\"饖\",12,\"饤饦饳饸饹饻饾馂馃馉稹稷穑é»é¦¥ç©°çšˆçšŽçš“çš™çš¤ç“žç“ ç”¬é¸ é¸¢é¸¨\",4,\"鸲鸱鸶鸸鸷鸹鸺鸾é¹é¹‚鹄鹆鹇鹈鹉鹋鹌鹎鹑鹕鹗鹚鹛鹜鹞鹣鹦\",6,\"é¹±é¹é¹³ç–’ç–”ç––ç– ç–疬疣疳疴疸痄疱疰痃痂痖ç—痣痨痦痤痫痧瘃痱痼痿ç˜ç˜€ç˜…瘌瘗瘊瘥瘘瘕瘙\"],[\"f140\",\"馌馎馚\",10,\"馦馧馩\",47],[\"f180\",\"é§™\",32,\"ç˜›ç˜¼ç˜¢ç˜ ç™€ç˜ç˜°ç˜¿ç˜µç™ƒç˜¾ç˜³ç™ç™žç™”ç™œç™–ç™«ç™¯ç¿Šç«¦ç©¸ç©¹çª€çª†çªˆçª•çª¦çª çª¬çª¨çªçª³è¡¤è¡©è¡²è¡½è¡¿è¢‚袢裆袷袼裉裢裎裣裥裱褚裼裨裾裰褡褙褓褛褊褴褫褶è¥è¥¦è¥»ç–‹èƒ¥çš²çš´çŸœè€’è€”è€–è€œè€ è€¢è€¥è€¦è€§è€©è€¨è€±è€‹è€µèƒè†èè’è©è±è¦ƒé¡¸é¢€é¢ƒ\"],[\"f240\",\"駺\",62],[\"f280\",\"騹\",32,\"颉颌é¢é¢é¢”颚颛颞颟颡颢颥颦è™è™”虬虮虿虺虼虻蚨èšèš‹èš¬èšèš§èš£èšªèš“蚩蚶蛄蚵蛎蚰蚺蚱蚯蛉è›èš´è›©è›±è›²è›è›³è›èœ“蛞蛴蛟蛘蛑蜃蜇蛸蜈蜊èœèœ‰èœ£èœ»èœžèœ¥èœ®èœšèœ¾èˆèœ´èœ±èœ©èœ·èœ¿èž‚蜢è½è¾è»è è°èŒè®èž‹è“è£è¼è¤è™è¥èž“螯螨蟒\"],[\"f340\",\"驚\",17,\"驲骃骉éªéªŽéª”骕骙骦骩\",6,\"骲骳骴骵骹骻骽骾骿髃髄髆\",4,\"é«é«Žé«é«é«’體髕髖髗髙髚髛髜\"],[\"f380\",\"é«é«žé« 髢髣髤髥髧髨髩髪髬髮髰\",8,\"髺髼\",6,\"鬄鬅鬆蟆螈螅èžèž—èžƒèž«èŸ¥èž¬èžµèž³èŸ‹èŸ“èž½èŸ‘èŸ€èŸŠèŸ›èŸªèŸ èŸ®è –è “èŸ¾è Šè ›è ¡è ¹è ¼ç¼¶ç½‚ç½„ç½…èˆç«ºç«½ç¬ˆç¬ƒç¬„笕笊笫ç¬ç‡ç¬¸ç¬ªç¬™ç¬®ç¬±ç¬ 笥笤笳笾笞ç˜çšç…çµçŒçç ç®ç»ç¢ç²ç±ç®ç®¦ç®§ç®¸ç®¬ç®ç®¨ç®…箪箜箢箫箴篑ç¯ç¯Œç¯ç¯šç¯¥ç¯¦ç¯ªç°Œç¯¾ç¯¼ç°ç°–ç°‹\"],[\"f440\",\"鬇鬉\",5,\"é¬é¬‘鬒鬔\",10,\"é¬ é¬¡é¬¢é¬¤\",10,\"鬰鬱鬳\",7,\"鬽鬾鬿é€é†éŠé‹éŒéŽéé’é“é•\",5],[\"f480\",\"é›\",32,\"簟簪簦簸ç±ç±€è‡¾èˆèˆ‚舄臬衄舡舢舣èˆèˆ¯èˆ¨èˆ«èˆ¸èˆ»èˆ³èˆ´èˆ¾è‰„艉艋è‰è‰šè‰Ÿè‰¨è¡¾è¢…袈裘裟襞ç¾ç¾Ÿç¾§ç¾¯ç¾°ç¾²ç±¼æ•‰ç²‘ç²ç²œç²žç²¢ç²²ç²¼ç²½ç³ç³‡ç³Œç³ç³ˆç³…糗糨艮暨羿翎翕翥翡翦翩翮翳糸絷綦綮繇纛麸麴赳趄趔趑趱赧èµè±‡è±‰é…Šé…é…Žé…é…¤\"],[\"f540\",\"é¼\",62],[\"f580\",\"é®»\",32,\"酢酡酰酩酯酽酾酲酴酹醌醅é†é†é†‘醢醣醪é†é†®é†¯é†µé†´é†ºè±•鹾趸跫踅蹙蹩趵趿趼趺跄跖跗跚跞跎è·è·›è·†è·¬è··è·¸è·£è·¹è·»è·¤è¸‰è·½è¸”è¸è¸Ÿè¸¬è¸®è¸£è¸¯è¸ºè¹€è¸¹è¸µè¸½è¸±è¹‰è¹è¹‚蹑蹒蹊蹰蹶蹼蹯蹴躅èºèº”èºèºœèºžè±¸è²‚貊貅貘貔斛觖觞觚觜\"],[\"f640\",\"鯜\",62],[\"f680\",\"é°›\",32,\"觥觫觯訾謦é“雩雳雯霆éœéœˆéœéœŽéœªéœéœ°éœ¾é¾€é¾ƒé¾…\",5,\"龌黾鼋é¼éš¹éš¼éš½é›Žé›’çž¿é› éŠŽéŠ®é‹ˆéŒ¾éªéŠéŽé¾é‘«é±¿é²‚鲅鲆鲇鲈稣鲋鲎é²é²‘鲒鲔鲕鲚鲛鲞\",5,\"é²¥\",4,\"鲫é²é²®é²°\",7,\"鲺鲻鲼鲽鳄鳅鳆鳇鳊鳋\"],[\"f740\",\"é°¼\",62],[\"f780\",\"鱻鱽鱾鲀鲃鲄鲉鲊鲌é²é²“鲖鲗鲘鲙é²é²ªé²¬é²¯é²¹é²¾\",4,\"é³ˆé³‰é³‘é³’é³šé³›é³ é³¡é³Œ\",4,\"鳓鳔鳕鳗鳘鳙鳜é³é³Ÿé³¢é¼éž…鞑鞒鞔鞯鞫鞣鞲鞴骱骰骷鹘骶骺骼é«é«€é«…髂髋髌髑é…éƒé‡é‰éˆéé‘飨é¤é¤®é¥•饔髟髡髦髯髫髻é«é«¹é¬ˆé¬é¬“鬟鬣麽麾縻麂麇麈麋麒é–éºéºŸé»›é»œé»é» 黟黢黩黧黥黪黯鼢鼬鼯鼹鼷鼽鼾齄\"],[\"f840\",\"é³£\",62],[\"f880\",\"é´¢\",32],[\"f940\",\"鵃\",62],[\"f980\",\"é¶‚\",32],[\"fa40\",\"é¶£\",62],[\"fa80\",\"é·¢\",32],[\"fb40\",\"鸃\",27,\"鸤鸧鸮鸰鸴鸻鸼鹀é¹é¹é¹’鹓鹔鹖鹙é¹é¹Ÿé¹ 鹡鹢鹥鹮鹯鹲鹴\",9,\"麀\"],[\"fb80\",\"éºéºƒéº„麅麆麉麊麌\",5,\"麔\",8,\"éºžéº \",5,\"麧麨麩麪\"],[\"fc40\",\"麫\",8,\"麵麶麷麹麺麼麿\",4,\"黅黆黇黈黊黋黌é»é»’黓黕黖黗黙黚點黡黣黤黦黨黫黬é»é»®é»°\",8,\"黺黽黿\",6],[\"fc80\",\"鼆\",4,\"鼌é¼é¼‘鼒鼔鼕鼖鼘鼚\",5,\"鼡鼣\",8,\"é¼é¼®é¼°é¼±\"],[\"fd40\",\"é¼²\",4,\"鼸鼺鼼鼿\",4,\"é½…\",10,\"é½’\",38],[\"fd80\",\"é½¹\",5,\"é¾é¾‚é¾\",11,\"龜é¾é¾žé¾¡\",4,\"郎凉秊裏隣\"],[\"fe40\",\"兀ï¨ï¨Žï¨ï¨‘ï¨“ï¨”ï¨˜ï¨Ÿï¨ ï¨¡ï¨£ï¨¤ï¨§ï¨¨ï¨©\"]]"); /***/ }), -/* 877 */ +/* 885 */ /***/ (function(module) { module.exports = JSON.parse("[[\"a140\",\"\",62],[\"a180\",\"î”…\",32],[\"a240\",\"\",62],[\"a280\",\"î•¥\",32],[\"a2ab\",\"î¦\",5],[\"a2e3\",\"€î\"],[\"a2ef\",\"î®î¯\"],[\"a2fd\",\"î°î±\"],[\"a340\",\"î–†\",62],[\"a380\",\"î—…\",31,\" \"],[\"a440\",\"î—¦\",62],[\"a480\",\"\",32],[\"a4f4\",\"î²\",10],[\"a540\",\"\",62],[\"a580\",\"îš…\",32],[\"a5f7\",\"î½\",7],[\"a640\",\"\",62],[\"a680\",\"\",32],[\"a6b9\",\"îž…\",7],[\"a6d9\",\"îž\",6],[\"a6ec\",\"\"],[\"a6f3\",\"îž–\"],[\"a6f6\",\"îž—\",8],[\"a740\",\"\",62],[\"a780\",\"î…\",32],[\"a7c2\",\"îž \",14],[\"a7f2\",\"\",12],[\"a896\",\"îž¼\",10],[\"a8bc\",\"\"],[\"a8bf\",\"ǹ\"],[\"a8c1\",\"\"],[\"a8ea\",\"îŸ\",20],[\"a958\",\"\"],[\"a95b\",\"\"],[\"a95d\",\"\"],[\"a989\",\"〾⿰\",11],[\"a997\",\"\",12],[\"a9f0\",\"î \",14],[\"aaa1\",\"\",93],[\"aba1\",\"îž\",93],[\"aca1\",\"\",93],[\"ada1\",\"\",93],[\"aea1\",\"î…¸\",93],[\"afa1\",\"\",93],[\"d7fa\",\"î \",4],[\"f8a1\",\"\",93],[\"f9a1\",\"\",93],[\"faa1\",\"î‹°\",93],[\"fba1\",\"îŽ\",93],[\"fca1\",\"\",93],[\"fda1\",\"îŠ\",93],[\"fe50\",\"âºî –î —î ˜âº„ã‘³ã‘‡âºˆâº‹î žã–žã˜šã˜ŽâºŒâº—ã¥®ã¤˜î ¦ã§ã§Ÿã©³ã§î «î ¬ãŽã±®ã³ âº§î ±î ²âºªä–ä…Ÿâº®äŒ·âº³âº¶âº·î »äŽ±äŽ¬âº»ä䓖䙡䙌\"],[\"fe80\",\"䜣䜩ä¼äžâ»Šä¥‡ä¥ºä¥½ä¦‚ä¦ƒä¦…ä¦†ä¦Ÿä¦›ä¦·ä¦¶î¡”î¡•ä²£ä²Ÿä² ä²¡ä±·ä²¢ä´“\",6,\"䶮\",93]]"); /***/ }), -/* 878 */ +/* 886 */ /***/ (function(module) { module.exports = JSON.parse("{\"uChars\":[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],\"gbChars\":[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189000]}"); /***/ }), -/* 879 */ +/* 887 */ /***/ (function(module) { module.exports = JSON.parse("[[\"0\",\"\\u0000\",127],[\"8141\",\"갂갃갅갆갋\",4,\"갘갞갟갡갢갣갥\",6,\"갮갲갳갴\"],[\"8161\",\"갵갶갷갺갻갽갾갿ê±\",9,\"걌걎\",5,\"걕\"],[\"8181\",\"걖걗걙걚걛ê±\",18,\"걲걳걵걶걹걻\",4,\"겂겇겈ê²ê²Žê²ê²‘겒겓겕\",6,\"겞겢\",5,\"겫ê²ê²®ê²±\",6,\"겺겾겿곀곂곃곅곆곇곉곊곋ê³\",7,\"곖곘\",7,\"곢곣곥곦곩곫ê³ê³®ê³²ê³´ê³·\",4,\"곾곿ê´ê´‚괃괅괇\",4,\"ê´Žê´ê´’ê´“\"],[\"8241\",\"괔괕괖괗괙괚괛ê´ê´žê´Ÿê´¡\",7,\"괪괫괮\",5],[\"8261\",\"괶괷괹괺괻괽\",6,\"굆굈굊\",5,\"굑굒굓굕굖굗\"],[\"8281\",\"êµ™\",7,\"굢굤\",7,\"굮굯굱굲굷굸굹굺굾궀궃\",4,\"ê¶Šê¶‹ê¶ê¶Žê¶ê¶‘\",10,\"ê¶ž\",5,\"ê¶¥\",17,\"궸\",7,\"귂귃귅귆귇귉\",6,\"ê·’ê·”\",7,\"ê·ê·žê·Ÿê·¡ê·¢ê·£ê·¥\",18],[\"8341\",\"귺귻귽귾긂\",5,\"긊긌긎\",5,\"긕\",7],[\"8361\",\"ê¸\",18,\"긲긳긵긶긹긻긼\"],[\"8381\",\"긽긾긿깂깄깇깈깉깋ê¹ê¹‘깒깓깕깗\",4,\"깞깢깣깤깦깧깪깫ê¹ê¹®ê¹¯ê¹±\",6,\"깺깾\",5,\"꺆\",5,\"êº\",46,\"꺿ê»ê»‚껃껅\",6,\"껎껒\",5,\"껚껛ê»\",8],[\"8441\",\"껦껧껩껪껬껮\",5,\"껵껶껷껹껺껻껽\",8],[\"8461\",\"꼆꼉꼊꼋꼌꼎ê¼ê¼‘\",18],[\"8481\",\"꼤\",7,\"꼮꼯꼱꼳꼵\",6,\"꼾꽀꽄꽅꽆꽇꽊\",5,\"꽑\",10,\"꽞\",5,\"꽦\",18,\"꽺\",5,\"ê¾ê¾‚꾃꾅꾆꾇꾉\",6,\"꾒꾓꾔꾖\",5,\"ê¾\",26,\"꾺꾻꾽꾾\"],[\"8541\",\"꾿ê¿\",5,\"꿊꿌ê¿\",4,\"ê¿•\",6,\"ê¿\",4],[\"8561\",\"ê¿¢\",5,\"꿪\",5,\"꿲꿳꿵꿶꿷꿹\",6,\"뀂뀃\"],[\"8581\",\"뀅\",6,\"ë€ë€Žë€ë€‘뀒뀓뀕\",6,\"뀞\",9,\"뀩\",26,\"ë†ë‡ë‰ë‹ëëëë‘ë’ë–ë˜ëšë›ëœëž\",29,\"ë¾ë¿ë‚낂낃낅\",6,\"낎ë‚ë‚’\",5,\"ë‚›ë‚낞낣낤\"],[\"8641\",\"낥낦낧낪낰낲낶낷낹낺낻낽\",6,\"냆냊\",5,\"냒\"],[\"8661\",\"냓냕냖냗냙\",6,\"냡냢냣냤냦\",10],[\"8681\",\"냱\",22,\"넊ë„넎ë„넑넔넕넖넗넚넞\",4,\"넦넧넩넪넫ë„\",6,\"넶넺\",5,\"녂녃녅녆녇녉\",6,\"녒녓녖녗녙녚녛ë…ë…žë…Ÿë…¡\",22,\"녺녻녽녾녿ë†ë†ƒ\",4,\"놊놌놎ë†ë†ë†‘놕놖놗놙놚놛ë†\"],[\"8741\",\"놞\",9,\"놩\",15],[\"8761\",\"놹\",18,\"ë‡ë‡Žë‡ë‡‘뇒뇓뇕\"],[\"8781\",\"뇖\",5,\"ë‡žë‡ \",7,\"뇪뇫ë‡ë‡®ë‡¯ë‡±\",7,\"뇺뇼뇾\",5,\"눆눇눉눊ëˆ\",6,\"눖눘눚\",5,\"눡\",18,\"눵\",6,\"눽\",26,\"뉙뉚뉛ë‰ë‰žë‰Ÿë‰¡\",6,\"뉪\",4],[\"8841\",\"뉯\",4,\"뉶\",5,\"뉽\",6,\"늆늇늈늊\",4],[\"8861\",\"ëŠëŠ’ëŠ“ëŠ•ëŠ–ëŠ—ëŠ›\",4,\"늢늤늧늨늩늫ëŠëŠ®ëŠ¯ëŠ±ëŠ²ëŠ³ëŠµëŠ¶ëŠ·\"],[\"8881\",\"늸\",15,\"닊닋ë‹ë‹Žë‹ë‹‘ë‹“\",4,\"ë‹šë‹œë‹žë‹Ÿë‹ ë‹¡ë‹£ë‹§ë‹©ë‹ªë‹°ë‹±ë‹²ë‹¶ë‹¼ë‹½ë‹¾ëŒ‚ëŒƒëŒ…ëŒ†ëŒ‡ëŒ‰\",6,\"댒댖\",5,\"ëŒ\",54,\"ë—ë™ëšëë ë¡ë¢ë£\"],[\"8941\",\"ë¦ë¨ëªë¬ëë¯ë²ë³ëµë¶ë·ë¹\",6,\"뎂뎆\",5,\"ëŽ\"],[\"8961\",\"뎎ëŽëŽ‘ëŽ’ëŽ“ëŽ•\",10,\"뎢\",5,\"뎩뎪뎫ëŽ\"],[\"8981\",\"뎮\",21,\"ë†ë‡ë‰ëŠëëë‘ë’ë“ë–ë˜ëšëœëžëŸë¡ë¢ë£ë¥ë¦ë§ë©\",18,\"ë½\",18,\"ë‘\",6,\"ë™ëšë›ëëžëŸë¡\",6,\"ëªë¬\",7,\"ëµ\",15],[\"8a41\",\"ë‘…\",10,\"ë‘’ë‘“ë‘•ë‘–ë‘—ë‘™\",6,\"둢둤둦\"],[\"8a61\",\"ë‘§\",4,\"ë‘\",18,\"ë’ë’‚\"],[\"8a81\",\"ë’ƒ\",4,\"ë’‰\",19,\"ë’ž\",5,\"뒥뒦뒧뒩뒪뒫ë’\",7,\"뒶뒸뒺\",5,\"ë“듂듃듅듆듇듉\",6,\"듑듒듓듔듖\",5,\"듞듟듡듢듥듧\",4,\"듮듰듲\",5,\"듹\",26,\"딖딗딙딚ë”\"],[\"8b41\",\"딞\",5,\"딦딫\",4,\"딲딳딵딶딷딹\",6,\"땂땆\"],[\"8b61\",\"땇땈땉땊땎ë•ë•‘ë•’ë•“ë••\",6,\"땞땢\",8],[\"8b81\",\"ë•«\",52,\"떢떣떥떦떧떩떬ë–떮떯떲떶\",4,\"떾떿ë—뗂뗃뗅\",6,\"ë—Žë—’\",5,\"ë—™\",18,\"ë—\",18],[\"8c41\",\"똀\",15,\"똒똓똕똖똗똙\",4],[\"8c61\",\"똞\",6,\"똦\",5,\"ë˜\",6,\"똵\",5],[\"8c81\",\"똻\",12,\"뙉\",26,\"뙥뙦뙧뙩\",50,\"뚞뚟뚡뚢뚣뚥\",5,\"ëšëš®ëš¯ëš°ëš²\",16],[\"8d41\",\"뛃\",16,\"뛕\",8],[\"8d61\",\"뛞\",17,\"뛱뛲뛳뛵뛶뛷뛹뛺\"],[\"8d81\",\"ë›»\",4,\"뜂뜃뜄뜆\",33,\"뜪뜫ëœëœ®ëœ±\",6,\"뜺뜼\",7,\"ë…ë†ë‡ë‰ëŠë‹ë\",6,\"ë–\",9,\"ë¡ë¢ë£ë¥ë¦ë§ë©\",6,\"ë²ë´ë¶\",5,\"ë¾ë¿ëžëž‚랃랅\",6,\"랎랓랔랕랚랛ëžëžž\"],[\"8e41\",\"랟랡\",6,\"랪랮\",5,\"ëž¶ëž·ëž¹\",8],[\"8e61\",\"럂\",4,\"럈럊\",19],[\"8e81\",\"럞\",13,\"럮럯럱럲럳럵\",6,\"ëŸ¾ë ‚\",4,\"ë Šë ‹ë ë Žë ë ‘\",6,\"ë šë œë ž\",5,\"ë ¦ë §ë ©ë ªë «ë \",6,\"ë ¶ë º\",5,\"ë¡ë¡‚롃롅\",11,\"ë¡’ë¡”\",7,\"롞롟롡롢롣롥\",6,\"롮롰롲\",5,\"롹롺롻롽\",7],[\"8f41\",\"뢅\",7,\"뢎\",17],[\"8f61\",\"ë¢ \",7,\"뢩\",6,\"뢱뢲뢳뢵뢶뢷뢹\",4],[\"8f81\",\"뢾뢿룂룄룆\",5,\"ë£ë£Žë£ë£‘룒룓룕\",7,\"ë£žë£ ë£¢\",5,\"룪룫ë£ë£®ë£¯ë£±\",6,\"룺룼룾\",5,\"뤅\",18,\"뤙\",6,\"뤡\",26,\"뤾뤿ë¥ë¥‚륃륅\",6,\"ë¥ë¥Žë¥ë¥’\",5],[\"9041\",\"륚륛ë¥ë¥žë¥Ÿë¥¡\",6,\"륪륬륮\",5,\"륶륷륹륺륻륽\"],[\"9061\",\"륾\",5,\"릆릈릋릌ë¦\",15],[\"9081\",\"릟\",12,\"릮릯릱릲릳릵\",6,\"릾맀맂\",5,\"ë§Šë§‹ë§ë§“\",4,\"ë§šë§œë§Ÿë§ ë§¢ë§¦ë§§ë§©ë§ªë§«ë§\",6,\"ë§¶ë§»\",4,\"먂\",5,\"먉\",11,\"먖\",33,\"먺먻먽먾먿ë©ë©ƒë©„멅멆\"],[\"9141\",\"멇멊멌ë©ë©ë©‘멒멖멗멙멚멛ë©\",6,\"멦멪\",5],[\"9161\",\"멲멳멵멶멷멹\",9,\"몆몈몉몊몋ëª\",5],[\"9181\",\"몓\",20,\"몪ëªëª®ëª¯ëª±ëª³\",4,\"몺몼몾\",5,\"뫅뫆뫇뫉\",14,\"뫚\",33,\"뫽뫾뫿ë¬ë¬‚묃묅\",7,\"묎ë¬ë¬’\",5,\"묙묚묛ë¬ë¬žë¬Ÿë¬¡\",6],[\"9241\",\"묨묪묬\",7,\"묷묹묺묿\",4,\"ë†ëˆëŠë‹ëŒëŽë‘ë’\"],[\"9261\",\"ë“ë•ë–ë—ë™\",7,\"ë¢ë¤\",7,\"ë\",4],[\"9281\",\"ë²\",21,\"뮉뮊뮋ë®ë®Žë®ë®‘\",18,\"뮥뮦뮧뮩뮪뮫ë®\",6,\"뮵뮶뮸\",7,\"ë¯ë¯‚믃믅믆믇믉\",6,\"믑믒믔\",35,\"믺믻믽믾ë°\"],[\"9341\",\"ë°ƒ\",4,\"ë°Šë°Žë°ë°’ë°“ë°™ë°šë° ë°¡ë°¢ë°£ë°¦ë°¨ë°ªë°«ë°¬ë°®ë°¯ë°²ë°³ë°µ\"],[\"9361\",\"ë°¶ë°·ë°¹\",6,\"뱂뱆뱇뱈뱊뱋뱎ë±ë±‘\",8],[\"9381\",\"뱚뱛뱜뱞\",37,\"벆벇벉벊ë²ë²\",4,\"벖벘벛\",4,\"벢벣벥벦벩\",6,\"벲벶\",5,\"벾벿ë³ë³‚볃볅\",7,\"볎볒볓볔볖볗볙볚볛ë³\",22,\"볷볹볺볻볽\"],[\"9441\",\"ë³¾\",5,\"봆봈봊\",5,\"ë´‘ë´’ë´“ë´•\",8],[\"9461\",\"ë´ž\",5,\"ë´¥\",6,\"ë´\",12],[\"9481\",\"ë´º\",5,\"ëµ\",6,\"뵊뵋ëµëµŽëµëµ‘\",6,\"뵚\",9,\"뵥뵦뵧뵩\",22,\"붂붃붅붆붋\",4,\"붒붔붖붗붘붛ë¶\",6,\"ë¶¥\",10,\"ë¶±\",6,\"ë¶¹\",24],[\"9541\",\"뷒뷓뷖뷗뷙뷚뷛ë·\",11,\"ë·ª\",5,\"ë·±\"],[\"9561\",\"뷲뷳뷵뷶뷷뷹\",6,\"ë¸ë¸‚븄븆\",5,\"븎ë¸ë¸‘븒븓\"],[\"9581\",\"븕\",6,\"ë¸žë¸ \",35,\"빆빇빉빊빋ë¹ë¹\",4,\"빖빘빜ë¹ë¹žë¹Ÿë¹¢ë¹£ë¹¥ë¹¦ë¹§ë¹©ë¹«\",4,\"빲빶\",4,\"빾빿ëºëº‚뺃뺅\",6,\"뺎뺒\",5,\"뺚\",13,\"뺩\",14],[\"9641\",\"뺸\",23,\"뻒뻓\"],[\"9661\",\"뻕뻖뻙\",6,\"뻡뻢뻦\",5,\"ë»\",8],[\"9681\",\"ë»¶\",10,\"뼂\",5,\"뼊\",13,\"뼚뼞\",33,\"뽂뽃뽅뽆뽇뽉\",6,\"뽒뽓뽔뽖\",44],[\"9741\",\"뾃\",16,\"뾕\",8],[\"9761\",\"뾞\",17,\"ë¾±\",7],[\"9781\",\"ë¾¹\",11,\"뿆\",5,\"뿎ë¿ë¿‘ë¿’ë¿“ë¿•\",6,\"ë¿ë¿žë¿ ë¿¢\",89,\"쀽쀾쀿\"],[\"9841\",\"ì€\",16,\"ì’\",5,\"ì™ìšì›\"],[\"9861\",\"ììžìŸì¡\",6,\"ìª\",15],[\"9881\",\"ìº\",21,\"ì‚’ì‚“ì‚•ì‚–ì‚—ì‚™\",6,\"삢삤삦\",5,\"삮삱삲삷\",4,\"삾샂샃샄샆샇샊샋ìƒìƒŽìƒìƒ‘\",6,\"샚샞\",5,\"샦샧샩샪샫ìƒ\",6,\"샶샸샺\",5,\"ì„섂섃섅섆섇섉\",6,\"섑섒섓섔섖\",5,\"섡섢섥섨섩섪섫섮\"],[\"9941\",\"섲섳섴섵섷섺섻섽섾섿ì…\",6,\"ì…Šì…Ž\",5,\"ì…–ì…—\"],[\"9961\",\"셙셚셛ì…\",6,\"셦셪\",5,\"셱셲셳셵셶셷셹셺셻\"],[\"9981\",\"ì…¼\",8,\"솆\",5,\"ì†ì†‘솒솓솕솗\",4,\"ì†žì† ì†¢ì†£ì†¤ì†¦ì†§ì†ªì†«ì†ì†®ì†¯ì†±\",11,\"솾\",5,\"쇅쇆쇇쇉쇊쇋ì‡\",6,\"쇕쇖쇙\",6,\"쇡쇢쇣쇥쇦쇧쇩\",6,\"쇲쇴\",7,\"쇾쇿ìˆìˆ‚숃숅\",6,\"숎ìˆìˆ’\",5,\"숚숛ìˆìˆžìˆ¡ìˆ¢ìˆ£\"],[\"9a41\",\"숤숥숦숧숪숬숮숰숳숵\",16],[\"9a61\",\"쉆쉇쉉\",6,\"쉒쉓쉕쉖쉗쉙\",6,\"쉡쉢쉣쉤쉦\"],[\"9a81\",\"쉧\",4,\"쉮쉯쉱쉲쉳쉵\",6,\"쉾슀슂\",5,\"슊\",5,\"슑\",6,\"슙슚슜슞\",5,\"슦슧슩슪슫슮\",5,\"슶슸슺\",33,\"싞싟싡싢싥\",5,\"싮싰싲싳싴싵싷싺싽싾싿ìŒ\",6,\"쌊쌋쌎ìŒ\"],[\"9b41\",\"ìŒìŒ‘쌒쌖쌗쌙쌚쌛ìŒ\",6,\"쌦쌧쌪\",8],[\"9b61\",\"쌳\",17,\"ì†\",7],[\"9b81\",\"ìŽ\",25,\"ìªì«ìì®ì¯ì±ì³\",4,\"ìºì»ì¾\",5,\"쎅쎆쎇쎉쎊쎋ìŽ\",50,\"ì\",22,\"ìš\"],[\"9c41\",\"ì›ììžì¡ì£\",4,\"ìªì«ì¬ì®\",5,\"ì¶ì·ì¹\",5],[\"9c61\",\"ì¿\",8,\"ì‰\",6,\"ì‘\",9],[\"9c81\",\"ì›\",8,\"ì¥\",6,\"ìì®ì¯ì±ì²ì³ìµ\",6,\"ì¾\",9,\"쑉\",26,\"쑦쑧쑩쑪쑫ì‘\",6,\"쑶쑷쑸쑺\",5,\"ì’\",18,\"ì’•\",6,\"ì’\",12],[\"9d41\",\"ì’ª\",13,\"쒹쒺쒻쒽\",8],[\"9d61\",\"쓆\",25],[\"9d81\",\"ì“ \",8,\"쓪\",5,\"쓲쓳쓵쓶쓷쓹쓻쓼쓽쓾씂\",9,\"ì”씎ì”씑씒씓씕\",6,\"ì”\",10,\"씪씫ì”씮씯씱\",6,\"씺씼씾\",5,\"앆앇앋ì•ì•앑앒앖앚앛앜앟앢앣앥앦앧앩\",6,\"앲앶\",5,\"앾앿ì–얂얃얅얆얈얉얊얋얎ì–ì–’ì–“ì–”\"],[\"9e41\",\"얖얙얚얛ì–ì–žì–Ÿì–¡\",7,\"ì–ª\",9,\"ì–¶\"],[\"9e61\",\"얷얺얿\",4,\"ì—‹ì—ì—ì—’ì—“ì—•ì—–ì——ì—™\",6,\"엢엤엦엧\"],[\"9e81\",\"엨엩엪엫엯엱엲엳엵엸엹엺엻옂옃옄옉옊옋ì˜ì˜Žì˜ì˜‘\",6,\"옚ì˜\",6,\"옦옧옩옪옫옯옱옲옶옸옺옼옽옾옿왂왃왅왆왇왉\",6,\"ì™’ì™–\",5,\"왞왟왡\",10,\"ì™ì™®ì™°ì™²\",5,\"왺왻왽왾왿ìš\",6,\"욊욌욎\",5,\"욖욗욙욚욛ìš\",6,\"욦\"],[\"9f41\",\"욨욪\",5,\"욲욳욵욶욷욻\",4,\"웂웄웆\",5,\"웎\"],[\"9f61\",\"ì›ì›‘웒웓웕\",6,\"웞웟웢\",5,\"웪웫ì›ì›®ì›¯ì›±ì›²\"],[\"9f81\",\"웳\",4,\"웺웻웼웾\",5,\"윆윇윉윊윋ìœ\",6,\"윖윘윚\",5,\"윢윣윥윦윧윩\",6,\"윲윴윶윸윹윺윻윾윿ìì‚ìƒì…\",4,\"ì‹ìŽìì™ìšì›ììžìŸì¡\",6,\"ì©ìªì¬\",7,\"ì¶ì·ì¹ìºì»ì¿ìž€ìžìž‚잆잋잌ìžìžìž’잓잕잙잛\",4,\"잢잧\",4,\"잮잯잱잲잳잵잶잷\"],[\"a041\",\"잸잹잺잻잾쟂\",5,\"쟊쟋ìŸìŸìŸ‘\",6,\"쟙쟚쟛쟜\"],[\"a061\",\"쟞\",5,\"쟥쟦쟧쟩쟪쟫ìŸ\",13],[\"a081\",\"쟻\",4,\"ì ‚ì ƒì …ì †ì ‡ì ‰ì ‹\",4,\"ì ’ì ”ì —\",4,\"ì žì Ÿì ¡ì ¢ì £ì ¥\",6,\"ì ®ì °ì ²\",5,\"ì ¹ì ºì »ì ½ì ¾ì ¿ì¡\",6,\"졊졋졎\",5,\"ì¡•\",26,\"졲졳졵졶졷졹졻\",4,\"좂좄좈좉좊좎\",5,\"좕\",7,\"ì¢žì¢ ì¢¢ì¢£ì¢¤\"],[\"a141\",\"좥좦좧좩\",18,\"좾좿죀ì£\"],[\"a161\",\"죂죃죅죆죇죉죊죋ì£\",6,\"죖죘죚\",5,\"죢죣죥\"],[\"a181\",\"죦\",14,\"죶\",5,\"죾죿ì¤ì¤‚줃줇\",4,\"줎 ã€ã€‚·‥…¨〃Â―∥\∼‘’“â€ã€”〕〈\",9,\"Â±Ã—Ã·â‰ â‰¤â‰¥âˆžâˆ´Â°â€²â€³â„ƒâ„«ï¿ ï¿¡ï¿¥â™‚â™€âˆ âŠ¥âŒ’âˆ‚âˆ‡â‰¡â‰’Â§â€»â˜†â˜…â—‹â—◎◇◆□■△▲▽▼→â†â†‘↓↔〓≪≫√∽âˆâˆµâˆ«âˆ¬âˆˆâˆ‹âŠ†âŠ‡âŠ‚âŠƒâˆªâˆ©âˆ§âˆ¨ï¿¢\"],[\"a241\",\"ì¤ì¤’\",5,\"줙\",18],[\"a261\",\"ì¤\",6,\"줵\",18],[\"a281\",\"쥈\",7,\"쥒쥓쥕쥖쥗쥙\",6,\"쥢쥤\",7,\"ì¥ì¥®ì¥¯â‡’⇔∀∃´~ˇ˘Ë˚˙¸˛¡¿Ë∮∑âˆÂ¤â„‰â€°â—◀▷▶♤♠♡♥♧♣⊙◈▣â—◑▒▤▥▨▧▦▩♨â˜â˜Žâ˜œâ˜žÂ¶â€ ‡↕↗↙↖↘â™â™©â™ªâ™¬ã‰¿ãˆœâ„–ã‡â„¢ã‚ã˜â„¡â‚¬Â®\"],[\"a341\",\"쥱쥲쥳쥵\",6,\"쥽\",10,\"즊즋ì¦ì¦Žì¦\"],[\"a361\",\"즑\",6,\"즚즜즞\",16],[\"a381\",\"즯\",16,\"짂짃짅짆짉짋\",4,\"짒짔짗짘짛ï¼\",58,\"₩]\",32,\"ï¿£\"],[\"a441\",\"짞짟짡짣짥짦짨짩짪짫짮짲\",5,\"짺짻짽짾짿ì¨ì¨‚쨃쨄\"],[\"a461\",\"쨅쨆쨇쨊쨎\",5,\"쨕쨖쨗쨙\",12],[\"a481\",\"쨦쨧쨨쨪\",28,\"ㄱ\",93],[\"a541\",\"쩇\",4,\"쩎ì©ì©‘ì©’ì©“ì©•\",6,\"쩞쩢\",5,\"쩩쩪\"],[\"a561\",\"ì©«\",17,\"쩾\",5,\"쪅쪆\"],[\"a581\",\"쪇\",16,\"쪙\",14,\"â…°\",9],[\"a5b0\",\"â… \",9],[\"a5c1\",\"Α\",16,\"Σ\",6],[\"a5e1\",\"α\",16,\"σ\",6],[\"a641\",\"쪨\",19,\"쪾쪿ì«ì«‚쫃쫅\"],[\"a661\",\"쫆\",5,\"쫎ì«ì«’쫔쫕쫖쫗쫚\",5,\"ì«¡\",6],[\"a681\",\"쫨쫩쫪쫫ì«\",6,\"쫵\",18,\"쬉쬊─│┌â”┘└├┬┤┴┼â”┃â”┓┛┗┣┳┫┻╋┠┯┨┷┿â”┰┥┸╂┒┑┚┙┖┕┎â”┞┟┡┢┦┧┩┪â”┮┱┲┵┶┹┺┽┾╀â•╃\",7],[\"a741\",\"쬋\",4,\"쬑쬒쬓쬕쬖쬗쬙\",6,\"쬢\",7],[\"a761\",\"쬪\",22,\"ì‚ìƒì„\"],[\"a781\",\"ì…ì†ì‡ìŠì‹ììŽìì‘\",6,\"ìšì›ìœìž\",5,\"ì¥\",7,\"㎕㎖㎗ℓ㎘ã„㎣㎤㎥㎦㎙\",9,\"ãŠãŽãŽŽãŽã㎈㎉ãˆãŽ§ãŽ¨ãŽ°\",9,\"㎀\",4,\"㎺\",5,\"ãŽ\",4,\"Ωã€ã㎊㎋㎌ã–ã…ãŽãŽ®ãŽ¯ã›ãŽ©ãŽªãŽ«ãŽ¬ããã“ãƒã‰ãœã†\"],[\"a841\",\"ì\",10,\"ìº\",14],[\"a861\",\"쮉\",18,\"ì®\",6],[\"a881\",\"쮤\",19,\"쮹\",11,\"ÆÃªĦ\"],[\"a8a6\",\"IJ\"],[\"a8a8\",\"Ä¿ÅØŒºÞŦŊ\"],[\"a8b1\",\"㉠\",27,\"â“\",25,\"â‘ \",14,\"½⅓⅔¼¾⅛⅜â…â…ž\"],[\"a941\",\"쯅\",14,\"쯕\",10],[\"a961\",\"ì¯ ì¯¡ì¯¢ì¯£ì¯¥ì¯¦ì¯¨ì¯ª\",18],[\"a981\",\"쯽\",14,\"ì°Žì°ì°‘ì°’ì°“ì°•\",6,\"ì°žì°Ÿì° ì°£ì°¤Ã¦Ä‘Ã°Ä§Ä±Ä³Ä¸Å€Å‚Ã¸Å“ÃŸÃ¾Å§Å‹Å‰ãˆ€\",27,\"â’œ\",25,\"â‘´\",14,\"¹²³â´â¿â‚₂₃₄\"],[\"aa41\",\"찥찦찪찫ì°ì°¯ì°±\",6,\"찺찿\",4,\"챆챇챉챊챋ì±ì±Ž\"],[\"aa61\",\"ì±\",4,\"챖챚\",5,\"챡챢챣챥챧챩\",6,\"챱챲\"],[\"aa81\",\"챳챴챶\",29,\"ã\",82],[\"ab41\",\"첔첕첖첗첚첛ì²ì²žì²Ÿì²¡\",6,\"첪첮\",5,\"ì²¶ì²·ì²¹\"],[\"ab61\",\"첺첻첽\",6,\"쳆쳈쳊\",5,\"쳑쳒쳓쳕\",5],[\"ab81\",\"ì³›\",8,\"ì³¥\",6,\"ì³ì³®ì³¯ì³±\",12,\"ã‚¡\",85],[\"ac41\",\"쳾쳿촀촂\",5,\"ì´Šì´‹ì´ì´Žì´ì´‘\",6,\"ì´šì´œì´žì´Ÿì´ \"],[\"ac61\",\"촡촢촣촥촦촧촩촪촫ì´\",11,\"ì´º\",4],[\"ac81\",\"ì´¿\",28,\"ìµìµžìµŸÐ\",5,\"ÐЖ\",25],[\"acd1\",\"а\",5,\"ёж\",25],[\"ad41\",\"쵡쵢쵣쵥\",6,\"쵮쵰쵲\",5,\"ìµ¹\",7],[\"ad61\",\"ì¶\",6,\"춉\",10,\"춖춗춙춚춛ì¶ì¶žì¶Ÿ\"],[\"ad81\",\"ì¶ ì¶¡ì¶¢ì¶£ì¶¦ì¶¨ì¶ª\",5,\"ì¶±\",18,\"ì·…\"],[\"ae41\",\"ì·†\",5,\"ì·ì·Žì·ì·‘\",16],[\"ae61\",\"ì·¢\",5,\"췩췪췫ì·ì·®ì·¯ì·±\",6,\"췺췼췾\",4],[\"ae81\",\"츃츅츆츇츉츊츋ì¸\",6,\"츕츖츗츘츚\",5,\"츢츣츥츦츧츩츪츫\"],[\"af41\",\"츬ì¸ì¸®ì¸¯ì¸²ì¸´ì¸¶\",19],[\"af61\",\"칊\",13,\"칚칛ì¹ì¹žì¹¢\",5,\"칪칬\"],[\"af81\",\"ì¹®\",5,\"칶칷칹칺칻칽\",6,\"캆캈캊\",5,\"캒캓캕캖캗캙\"],[\"b041\",\"캚\",5,\"캢캦\",5,\"캮\",12],[\"b061\",\"캻\",5,\"컂\",19],[\"b081\",\"ì»–\",13,\"컦컧컩컪ì»\",6,\"컶컺\",5,\"ê°€ê°ê°„갇갈갉갊ê°\",7,\"ê°™\",4,\"ê° ê°¤ê°¬ê°ê°¯ê°°ê°±ê°¸ê°¹ê°¼ê±€ê±‹ê±ê±”걘걜거걱건걷걸걺검ê²ê²ƒê²„겅겆겉겊겋게ê²ê²”겜ê²ê²Ÿê² 겡겨격겪견겯결겸겹겻겼경ê³ê³„ê³ˆê³Œê³•ê³—ê³ ê³¡ê³¤ê³§ê³¨ê³ªê³¬ê³¯ê³°ê³±ê³³ê³µê³¶ê³¼ê³½ê´€ê´„ê´†\"],[\"b141\",\"켂켃켅켆켇켉\",6,\"켒켔켖\",5,\"ì¼ì¼žì¼Ÿì¼¡ì¼¢ì¼£\"],[\"b161\",\"ì¼¥\",6,\"켮켲\",5,\"ì¼¹\",11],[\"b181\",\"ì½…\",14,\"콖콗콙콚콛ì½\",6,\"콦콨콪콫콬괌ê´ê´ê´‘ê´˜ê´œê´ ê´©ê´¬ê´ê´´ê´µê´¸ê´¼êµ„굅굇굉êµêµ”굘굡굣구êµêµ°êµ³êµ´êµµêµ¶êµ»êµ¼êµ½êµ¿ê¶ê¶‚궈궉권ê¶ê¶œê¶ê¶¤ê¶·ê·€ê·ê·„ê·ˆê·ê·‘ê·“ê·œê· ê·¤ê·¸ê·¹ê·¼ê·¿ê¸€ê¸ê¸ˆê¸‰ê¸‹ê¸ê¸”기긱긴긷길긺김ê¹ê¹ƒê¹…깆깊까ê¹ê¹Žê¹ê¹”깖깜ê¹ê¹Ÿê¹ 깡깥깨깩깬깰깸\"],[\"b241\",\"ì½ì½®ì½¯ì½²ì½³ì½µì½¶ì½·ì½¹\",6,\"ì¾ì¾‚쾃쾄쾆\",5,\"ì¾\"],[\"b261\",\"쾎\",18,\"ì¾¢\",5,\"쾩\"],[\"b281\",\"쾪\",5,\"ì¾±\",18,\"ì¿…\",6,\"깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌ê»ê»ê»ê»‘께껙껜껨껫ê»ê»´ê»¸ê»¼ê¼‡ê¼ˆê¼ê¼ê¼¬ê¼ê¼°ê¼²ê¼´ê¼¼ê¼½ê¼¿ê½ê½‚꽃꽈꽉ê½ê½œê½ê½¤ê½¥ê½¹ê¾€ê¾„꾈ê¾ê¾‘꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋ê¿ê¿Žê¿”꿜꿨꿩꿰꿱꿴꿸뀀ë€ë€„뀌ë€ë€”뀜ë€ë€¨ë„ë…ëˆëŠëŒëŽë“ë”ë•ë—ë™\"],[\"b341\",\"쿌\",19,\"쿢쿣쿥쿦쿧쿩\"],[\"b361\",\"쿪\",5,\"쿲쿴쿶\",5,\"쿽쿾쿿í€í€‚퀃퀅\",5],[\"b381\",\"퀋\",5,\"퀒\",5,\"퀙\",19,\"ëë¼ë½ë‚€ë‚„낌ë‚ë‚ë‚‘ë‚˜ë‚™ë‚šë‚œë‚Ÿë‚ ë‚¡ë‚¢ë‚¨ë‚©ë‚«\",4,\"낱낳내낵낸낼냄냅냇냈냉ëƒëƒ‘ëƒ”ëƒ˜ëƒ ëƒ¥ë„ˆë„‰ë„‹ë„Œë„넒넓넘넙넛넜ë„넣네넥넨넬넴넵넷넸넹녀ë…ë…„ë…ˆë…ë…‘ë…”ë…•ë…˜ë…œë… ë…¸ë…¹ë…¼ë†€ë†‚ë†ˆë†‰ë†‹ë†ë†’놓놔놘놜놨뇌ë‡ë‡”뇜ë‡\"],[\"b441\",\"퀮\",5,\"퀶퀷퀹퀺퀻퀽\",6,\"í†íˆíŠ\",5],[\"b461\",\"í‘í’í“í•í–í—í™\",6,\"í¡\",10,\"í®í¯\"],[\"b481\",\"í±í²í³íµ\",6,\"í¾í¿í‚€í‚‚\",18,\"ë‡Ÿë‡¨ë‡©ë‡¬ë‡°ë‡¹ë‡»ë‡½ëˆ„ëˆ…ëˆˆëˆ‹ëˆŒëˆ”ëˆ•ëˆ—ëˆ™ëˆ ëˆ´ëˆ¼ë‰˜ë‰œë‰ ë‰¨ë‰©ë‰´ë‰µë‰¼ëŠ„ëŠ…ëŠ‰ëŠëŠ‘ëŠ”ëŠ˜ëŠ™ëŠšëŠ ëŠ¡ëŠ£ëŠ¥ëŠ¦ëŠªëŠ¬ëŠ°ëŠ´ë‹ˆë‹‰ë‹Œë‹ë‹’님닙닛ë‹ë‹¢ë‹¤ë‹¥ë‹¦ë‹¨ë‹«\",4,\"닳담답닷\",4,\"닿대ëŒëŒ„댈ëŒëŒ‘댓댔댕댜ë”ë•ë–ë˜ë›ëœëžëŸë¤ë¥\"],[\"b541\",\"í‚•\",14,\"킦킧킩킪킫í‚\",5],[\"b561\",\"킳킶킸킺\",5,\"탂탃탅탆탇탊\",5,\"탒탖\",4],[\"b581\",\"탛탞탟탡탢탣탥\",6,\"탮탲\",5,\"탹\",11,\"ë§ë©ë«ë®ë°ë±ë´ë¸ëŽ€ëŽëŽƒëŽ„ëŽ…ëŽŒëŽëŽ”ëŽ ëŽ¡ëŽ¨ëŽ¬ë„ë…ëˆë‹ëŒëŽëë”ë•ë—ë™ë›ëë ë¤ë¨ë¼ëë˜ëœë ë¨ë©ë«ë´ë‘ë‘‘ë‘”ë‘˜ë‘ ë‘¡ë‘£ë‘¥ë‘¬ë’€ë’ˆë’뒤뒨뒬뒵뒷뒹듀듄듈ë“듕드ë“ë“ ë“£ë“¤ë“¦ë“¬ë“듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸\"],[\"b641\",\"í„…\",7,\"턎\",17],[\"b661\",\"í„ \",15,\"턲턳턵턶턷턹턻턼턽턾\"],[\"b681\",\"í„¿í…‚í…†\",5,\"í…Ží…í…‘í…’í…“í…•\",6,\"í…ží… í…¢\",5,\"텩텪텫í…ë•€ë•땃땄땅땋때ë•ë•땔땜ë•ë•Ÿë• ë•¡ë– ë–¡ë–¤ë–¨ë–ªë–«ë–°ë–±ë–³ë–´ë–µë–»ë–¼ë–½ë—€ë—„ë—Œë—ë—ë—뗑뗘뗬ë˜ë˜‘똔똘똥똬똴뙈뙤뙨뚜ëšëš 뚤뚫뚬뚱뛔뛰뛴뛸뜀ëœëœ…뜨뜩뜬뜯뜰뜸뜹뜻ë„ëˆëŒë”ë•ë ë¤ë¨ë°ë±ë³ëµë¼ë½ëž€ëž„람ëžëžëžëž‘ëž’ëž–ëž—\"],[\"b741\",\"í…®\",13,\"í…½\",6,\"톅톆톇톉톊\"],[\"b761\",\"톋\",20,\"톢톣톥톦톧\"],[\"b781\",\"톩\",6,\"톲톴톶톷톸톹톻톽톾톿í‡\",14,\"ëž˜ëž™ëžœëž ëž¨ëž©ëž«ëž¬ëžëž´ëžµëž¸ëŸ‡ëŸ‰ëŸ¬ëŸëŸ°ëŸ´ëŸ¼ëŸ½ëŸ¿ë €ë ë ‡ë ˆë ‰ë Œë ë ˜ë ™ë ›ë ë ¤ë ¥ë ¨ë ¬ë ´ë µë ·ë ¸ë ¹ë¡€ë¡„ë¡‘ë¡“ë¡œë¡ë¡ 롤롬ë¡ë¡¯ë¡±ë¡¸ë¡¼ë¢ë¢¨ë¢°ë¢´ë¢¸ë£€ë£ë£ƒë£…료ë£ë£”ë£ë£Ÿë£¡ë£¨ë£©ë£¬ë£°ë£¸ë£¹ë£»ë£½ë¤„ë¤˜ë¤ ë¤¼ë¤½ë¥€ë¥„ë¥Œë¥ë¥‘ë¥˜ë¥™ë¥œë¥ ë¥¨ë¥©\"],[\"b841\",\"í‡\",7,\"퇙\",17],[\"b861\",\"퇫\",8,\"퇵퇶퇷퇹\",13],[\"b881\",\"툈툊\",5,\"툑\",24,\"륫ë¥ë¥´ë¥µë¥¸ë¥¼ë¦„릅릇릉릊ë¦ë¦Žë¦¬ë¦ë¦°ë¦´ë¦¼ë¦½ë¦¿ë§ë§ˆë§‰ë§Œë§Ž\",4,\"맘맙맛ë§ë§žë§¡ë§£ë§¤ë§¥ë§¨ë§¬ë§´ë§µë§·ë§¸ë§¹ë§ºë¨€ë¨ë¨ˆë¨•머먹먼멀멂멈멉멋ë©ë©Žë©“메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼\"],[\"b941\",\"툪툫툮툯툱툲툳툵\",6,\"툾퉀퉂\",5,\"퉉퉊퉋퉌\"],[\"b961\",\"í‰\",14,\"í‰\",6,\"퉥퉦퉧퉨\"],[\"b981\",\"퉩\",22,\"튂튃튅튆튇튉튊튋튌묀묄ë¬ë¬ë¬‘ë¬˜ë¬œë¬ ë¬©ë¬«ë¬´ë¬µë¬¶ë¬¸ë¬»ë¬¼ë¬½ë¬¾ë„ë…ë‡ë‰ëëëë”ë˜ë¡ë£ë¬ë®ˆë®Œë®ë®¤ë®¨ë®¬ë®´ë®·ë¯€ë¯„믈ë¯ë¯“미믹민믿밀밂밈밉밋밌ë°ë°ë°‘ë°”\",4,\"ë°›\",4,\"밤밥밧방ë°ë°°ë°±ë°´ë°¸ë±€ë±ë±ƒë±„뱅뱉뱌ë±ë±ë±ë²„벅번벋벌벎범법벗\"],[\"ba41\",\"íŠíŠŽíŠíŠ’íŠ“íŠ”íŠ–\",5,\"íŠíŠžíŠŸíŠ¡íŠ¢íŠ£íŠ¥\",6,\"íŠ\"],[\"ba61\",\"튮튯튰튲\",5,\"튺튻튽튾í‹í‹ƒ\",4,\"틊틌\",5],[\"ba81\",\"틒틓틕틖틗틙틚틛í‹\",6,\"틦\",9,\"í‹²í‹³í‹µí‹¶í‹·í‹¹í‹ºë²™ë²šë² ë²¡ë²¤ë²§ë²¨ë²°ë²±ë²³ë²´ë²µë²¼ë²½ë³€ë³„ë³ë³ë³ë³‘볕볘볜보복볶본볼봄봅봇봉ë´ë´”봤봬뵀뵈뵉뵌ëµëµ˜ëµ™ëµ¤ëµ¨ë¶€ë¶ë¶„붇불붉붊ë¶ë¶‘붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브ë¸ë¸ë¸”븜ë¸ë¸Ÿë¹„ë¹…ë¹ˆë¹Œë¹Žë¹”ë¹•ë¹—ë¹™ë¹šë¹›ë¹ ë¹¡ë¹¤\"],[\"bb41\",\"í‹»\",4,\"팂팄팆\",5,\"íŒíŒ‘팒팓팕팗\",4,\"팞팢팣\"],[\"bb61\",\"팤팦팧팪팫íŒíŒ®íŒ¯íŒ±\",6,\"팺팾\",5,\"í†í‡íˆí‰\"],[\"bb81\",\"íŠ\",31,\"빨빪빰빱빳빴빵빻빼빽뺀뺄뺌ëºëºëºëº‘뺘뺙뺨ë»ë»‘ë»”ë»—ë»˜ë» ë»£ë»¤ë»¥ë»¬ë¼ë¼ˆë¼‰ë¼˜ë¼™ë¼›ë¼œë¼ë½€ë½ë½„뽈ë½ë½‘뽕뾔뾰뿅뿌ë¿ë¿ë¿”뿜뿟뿡쀼ì‘ì˜ìœì ì¨ì©ì‚ì‚‘ì‚”ì‚˜ì‚ ì‚¡ì‚£ì‚¥ì‚¬ì‚삯산삳살삵삶삼삽삿샀ìƒìƒ…새색샌ìƒìƒ˜ìƒ™ìƒ›ìƒœìƒìƒ¤\"],[\"bc41\",\"íª\",17,\"í¾í¿íŽíŽ‚íŽƒíŽ…íŽ†íŽ‡\"],[\"bc61\",\"펈펉펊펋펎펒\",5,\"펚펛íŽíŽžíŽŸíŽ¡\",6,\"펪펬펮\"],[\"bc81\",\"펯\",4,\"펵펶펷펹펺펻펽\",6,\"í†í‡íŠ\",5,\"í‘\",5,\"샥샨샬샴샵샷샹섀섄섈ì„섕서\",4,\"섣설섦섧섬ì„섯섰성섶세섹센셀셈셉셋셌ì…셔셕션셜셤셥셧셨셩셰셴셸솅소ì†ì†Žì†ì†”솖솜ì†ì†Ÿì†¡ì†¥ì†¨ì†©ì†¬ì†°ì†½ì‡„ì‡ˆì‡Œì‡”ì‡—ì‡˜ì‡ ì‡¤ì‡¨ì‡°ì‡±ì‡³ì‡¼ì‡½ìˆ€ìˆ„ìˆŒìˆìˆìˆ‘ìˆ˜ìˆ™ìˆœìˆŸìˆ ìˆ¨ìˆ©ìˆ«ìˆ\"],[\"bd41\",\"í—í™\",7,\"í¢í¤\",7,\"í®í¯í±í²í³íµí¶í·\"],[\"bd61\",\"í¸í¹íºí»í¾í€í‚\",5,\"í‰\",13],[\"bd81\",\"í—\",5,\"íž\",25,\"숯숱숲숴쉈ì‰ì‰‘ì‰”ì‰˜ì‰ ì‰¥ì‰¬ì‰ì‰°ì‰´ì‰¼ì‰½ì‰¿ìŠìŠˆìŠ‰ìŠìŠ˜ìŠ›ìŠìŠ¤ìŠ¥ìŠ¨ìŠ¬ìŠìŠ´ìŠµìŠ·ìŠ¹ì‹œì‹ì‹ 싣실싫심ì‹ì‹¯ì‹±ì‹¶ì‹¸ì‹¹ì‹»ì‹¼ìŒ€ìŒˆìŒ‰ìŒŒìŒìŒ“쌔쌕쌘쌜쌤쌥쌨쌩ì…ì¨ì©ì¬ì°ì²ì¸ì¹ì¼ì½ìŽ„ìŽˆìŽŒì€ì˜ì™ìœìŸì ì¢ì¨ì©ìì´ìµì¸ìˆìì¤ì¬ì°\"],[\"be41\",\"í¸\",7,\"í‘푂푃푅\",14],[\"be61\",\"í‘”\",7,\"í‘푞푟푡푢푣푥\",7,\"푮푰푱푲\"],[\"be81\",\"푳\",4,\"푺푻푽푾í’í’ƒ\",4,\"풊풌풎\",5,\"í’•\",8,\"ì´ì¼ì½ì‘ˆì‘¤ì‘¥ì‘¨ì‘¬ì‘´ì‘µì‘¹ì’€ì’”쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀ì”씌ì”씔씜씨씩씬씰씸씹씻씽아악안앉않알ì•앎앓암압앗았앙ì•ì•žì• ì•¡ì•¤ì•¨ì•°ì•±ì•³ì•´ì•µì•¼ì•½ì–€ì–„ì–‡ì–Œì–ì–ì–‘ì–•ì–—ì–˜ì–œì– ì–©ì–´ì–µì–¸ì–¹ì–»ì–¼ì–½ì–¾ì—„\",6,\"엌엎\"],[\"bf41\",\"í’ž\",10,\"í’ª\",14],[\"bf61\",\"í’¹\",18,\"í“퓎í“í“‘í“’í““í“•\"],[\"bf81\",\"í“–\",5,\"í“í“ží“ \",7,\"퓩퓪퓫í“퓮퓯퓱\",6,\"퓹퓺퓼ì—ì—‘ì—”ì—˜ì— ì—¡ì—£ì—¥ì—¬ì—엮연열엶엷염\",5,\"옅옆옇예옌ì˜ì˜˜ì˜™ì˜›ì˜œì˜¤ì˜¥ì˜¨ì˜¬ì˜ì˜®ì˜°ì˜³ì˜´ì˜µì˜·ì˜¹ì˜»ì™€ì™ì™„왈ì™ì™‘왓왔왕왜ì™ì™ 왬왯왱외왹왼욀욈욉욋ìšìš”욕욘욜욤욥욧용우욱운울욹욺움ì›ì›ƒì›…워ì›ì›ì›”웜ì›ì› 웡웨\"],[\"c041\",\"퓾\",5,\"픅픆픇픉픊픋í”\",6,\"픖픘\",5],[\"c061\",\"픞\",25],[\"c081\",\"픸픹픺픻픾픿í•핂핃핅\",6,\"핎í•í•’\",5,\"핚핛í•í•ží•Ÿí•¡í•¢í•£ì›©ì›¬ì›°ì›¸ì›¹ì›½ìœ„ìœ…ìœˆìœŒìœ”ìœ•ìœ—ìœ™ìœ ìœ¡ìœ¤ìœ¨ìœ°ìœ±ìœ³ìœµìœ·ìœ¼ìœ½ì€ì„ìŠìŒììì‘\",7,\"ìœì ì¨ì«ì´ìµì¸ì¼ì½ì¾ìžƒìž„입잇있잉잊잎ìžìž‘ìž”ìž–ìž—ìž˜ìžšìž ìž¡ìž£ìž¤ìž¥ìž¦ìž¬ìžìž°ìž´ìž¼ìž½ìž¿ìŸ€ìŸìŸˆìŸ‰ìŸŒìŸŽìŸìŸ˜ìŸìŸ¤ìŸ¨ìŸ¬ì €ì ì „ì ˆì Š\"],[\"c141\",\"핤핦핧핪핬핮\",5,\"핶핷핹핺핻핽\",6,\"햆햊햋\"],[\"c161\",\"í–Œí–í–Ží–í–‘\",19,\"햦햧\"],[\"c181\",\"í–¨\",31,\"ì ì ‘ì “ì •ì –ì œì ì ì ¤ì ¬ì ì ¯ì ±ì ¸ì ¼ì¡€ì¡ˆì¡‰ì¡Œì¡ì¡”조족존졸졺좀ì¢ì¢ƒì¢…좆좇좋좌ì¢ì¢”ì¢ì¢Ÿì¢¡ì¢¨ì¢¼ì¢½ì£„ì£ˆì£Œì£”ì£•ì£—ì£™ì£ ì£¡ì£¤ì£µì£¼ì£½ì¤€ì¤„ì¤…ì¤†ì¤Œì¤ì¤ì¤‘줘줬줴ì¥ì¥‘ì¥”ì¥˜ì¥ ì¥¡ì¥£ì¥¬ì¥°ì¥´ì¥¼ì¦ˆì¦‰ì¦Œì¦ì¦˜ì¦™ì¦›ì¦ì§€ì§ì§„짇질짊ì§ì§‘ì§“\"],[\"c241\",\"í—Ší—‹í—í—Ží—í—‘í—“\",4,\"헚헜헞\",5,\"헦헧헩헪헫í—í—®\"],[\"c261\",\"í—¯\",4,\"헶헸헺\",5,\"혂혃혅혆혇혉\",6,\"혒\"],[\"c281\",\"혖\",5,\"í˜í˜ží˜Ÿí˜¡í˜¢í˜£í˜¥\",7,\"혮\",9,\"혺혻징짖짙짚짜ì§ì§ 짢짤짧짬ì§ì§¯ì§°ì§±ì§¸ì§¹ì§¼ì¨€ì¨ˆì¨‰ì¨‹ì¨Œì¨ì¨”쨘쨩쩌ì©ì©ì©”쩜ì©ì©Ÿì© 쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌ì«ì«ì«‘ì«“ì«˜ì«™ì« ì«¬ì«´ì¬ˆì¬ì¬”ì¬˜ì¬ ì¬¡ììˆì‰ìŒìì˜ì™ìì¤ì¸ì¹ì®œì®¸ì¯”쯤쯧쯩찌ì°ì°ì°”ì°œì°ì°¡ì°¢ì°§ì°¨ì°©ì°¬ì°®ì°°ì°¸ì°¹ì°»\"],[\"c341\",\"혽혾혿í™í™‚홃홄홆홇홊홌홎í™í™í™’홓홖홗홙홚홛í™\",4],[\"c361\",\"홢\",4,\"홨홪\",5,\"홲홳홵\",11],[\"c381\",\"íšíš‚횄횆\",5,\"횎íšíš‘횒횓횕\",7,\"íšžíš íš¢\",5,\"íš©íšªì°¼ì°½ì°¾ì±„ì±…ì±ˆì±Œì±”ì±•ì±—ì±˜ì±™ì± ì±¤ì±¦ì±¨ì±°ì±µì²˜ì²™ì²œì² ì²¨ì²©ì²«ì²¬ì²ì²´ì²µì²¸ì²¼ì³„쳅쳇쳉ì³ì³”쳤쳬쳰ì´ì´ˆì´‰ì´Œì´ì´˜ì´™ì´›ì´ì´¤ì´¨ì´¬ì´¹ìµœìµ 쵤쵬ìµìµ¯ìµ±ìµ¸ì¶ˆì¶”축춘출춤춥춧충춰췄췌ì·ì·¨ì·¬ì·°ì·¸ì·¹ì·»ì·½ì¸„ì¸ˆì¸Œì¸”ì¸™ì¸ ì¸¡ì¸¤ì¸¨ì¸°ì¸±ì¸³ì¸µ\"],[\"c441\",\"íš«íšíš®íš¯íš±\",7,\"횺횼\",7,\"훆훇훉훊훋\"],[\"c461\",\"í›í›Ží›í›í›’훓훕훖훘훚\",5,\"훡훢훣훥훦훧훩\",4],[\"c481\",\"훮훯훱훲훳훴훶\",5,\"훾훿íœíœ‚휃휅\",11,\"íœ’íœ“íœ”ì¹˜ì¹™ì¹œì¹Ÿì¹ ì¹¡ì¹¨ì¹©ì¹«ì¹ì¹´ì¹µì¹¸ì¹¼ìº„캅캇캉ìºìº‘ìº”ìº˜ìº ìº¡ìº£ìº¤ìº¥ìº¬ìºì»ì»¤ì»¥ì»¨ì»«ì»¬ì»´ì»µì»·ì»¸ì»¹ì¼€ì¼ì¼„켈ì¼ì¼‘ì¼“ì¼•ì¼œì¼ ì¼¤ì¼¬ì¼ì¼¯ì¼°ì¼±ì¼¸ì½”ì½•ì½˜ì½œì½¤ì½¥ì½§ì½©ì½°ì½±ì½´ì½¸ì¾€ì¾…ì¾Œì¾¡ì¾¨ì¾°ì¿„ì¿ ì¿¡ì¿¤ì¿¨ì¿°ì¿±ì¿³ì¿µì¿¼í€€í€„í€‘í€˜í€í€´í€µí€¸í€¼\"],[\"c541\",\"휕휖휗휚휛íœíœžíœŸíœ¡\",6,\"휪휬휮\",5,\"휶휷휹\"],[\"c561\",\"휺휻휽\",6,\"í…í†íˆíŠ\",5,\"í’í“í•íš\",4],[\"c581\",\"íŸí¢í¤í¦í§í¨íªí«íí®í¯í±í²í³íµ\",6,\"í¾í¿íž€íž‚\",5,\"힊힋í„í…í‡í‰íí”í˜í í¬íí°í´í¼í½í‚키킥킨킬킴킵킷킹타íƒíƒ„탈탉íƒíƒ‘탓탔탕태íƒíƒ 탤탬íƒíƒ¯íƒ°íƒ±íƒ¸í„터턱턴털턺텀í…텃텄텅테í…í…텔템í…í…Ÿí…¡í…¨í…¬í…¼í†„í†ˆí† í†¡í†¤í†¨í†°í†±í†³í†µí†ºí†¼í‡€í‡˜í‡´í‡¸íˆ‡íˆ‰íˆíˆ¬íˆíˆ°íˆ´íˆ¼íˆ½íˆ¿í‰í‰ˆí‰œ\"],[\"c641\",\"ížížŽížíž‘\",6,\"힚힜힞\",5],[\"c6a1\",\"퉤튀íŠíŠ„íŠˆíŠíŠ‘íŠ•íŠœíŠ íŠ¤íŠ¬íŠ±íŠ¸íŠ¹íŠ¼íŠ¿í‹€í‹‚í‹ˆí‹‰í‹‹í‹”í‹˜í‹œí‹¤í‹¥í‹°í‹±í‹´í‹¸íŒ€íŒíŒƒíŒ…파íŒíŒŽíŒíŒ”팖팜íŒíŒŸíŒ 팡팥패팩팬팰팸팹팻팼팽í„í…í¼í½íŽ€íŽ„íŽŒíŽíŽíŽíŽ‘íŽ˜íŽ™íŽœíŽ íŽ¨íŽ©íŽ«íŽíŽ´íŽ¸íŽ¼í„í…íˆí‰íí˜í¡í£í¬íí°í´í¼í½í¿í\"],[\"c7a1\",\"íˆíí‘€í‘„í‘œí‘ í‘¤í‘푯푸푹푼푿풀풂품풉풋í’풔풩퓌í“퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌í•í•í•‘í•˜í•™í•œí• í•¥í•¨í•©í•«í•해핵핸핼햄햅햇했행í–향허헉헌í—헒험헙헛í—헤헥헨헬헴헵헷헹혀í˜í˜„혈í˜í˜‘í˜“í˜”í˜•í˜œí˜ \"],[\"c8a1\",\"혤í˜í˜¸í˜¹í˜¼í™€í™…홈홉홋í™í™‘화확환활홧황홰홱홴횃횅회íšíšíš”íšíšŸíš¡íš¨íš¬íš°íš¹íš»í›„í›…í›ˆí›Œí›‘í›”í›—í›™í› í›¤í›¨í›°í›µí›¼í›½íœ€íœ„íœ‘íœ˜íœ™íœœíœ íœ¨íœ©íœ«íœíœ´íœµíœ¸íœ¼í„í‡í‰íí‘í”í–í—í˜í™í í¡í£í¥í©í¬í°í´í¼í½ížížˆíž‰ížŒížíž˜íž™íž›íž\"],[\"caa1\",\"伽佳å‡åƒ¹åŠ å¯å‘µå“¥å˜‰å«å®¶æš‡æž¶æž·æŸ¯æŒç‚痂稼苛茄街袈訶賈è·è»»è¿¦é§•刻å´å„æªæ…¤æ®¼çè„šè¦ºè§’é–£ä¾ƒåˆŠå¢¾å¥¸å§¦å¹²å¹¹æ‡‡æ€æ†æŸ¬æ¡¿æ¾—癎看磵稈竿簡è‚è‰®è‰±è««é–“ä¹«å–æ›·æ¸´ç¢£ç«è‘›è¤èŽéž¨å‹˜åŽå ªåµŒæ„Ÿæ†¾æˆ¡æ•¢æŸ‘橄減甘疳監瞰紺邯鑑鑒龕\"],[\"cba1\",\"åŒ£å²¬ç”²èƒ›é‰€é–˜å‰›å ˆå§œå²¡å´—åº·å¼ºå½Šæ…·æ±Ÿç•ºç–†ç³ çµ³ç¶±ç¾Œè…”èˆ¡è–‘è¥è¬›é‹¼é™é±‡ä»‹ä»·å€‹å‡±å¡æ„·æ„¾æ…¨æ”¹æ§ªæ¼‘疥皆盖箇芥蓋豈鎧開喀客å‘ï¤ç²³ç¾¹é†µå€¨åŽ»å±…å·¨æ‹’æ®æ“šæ“§æ¸ ç‚¬ç¥›è·è¸žï¤‚é½é‰…鋸乾件å¥å·¾å»ºæ„†æ¥—腱虔蹇éµé¨«ä¹žå‚‘æ°æ¡€å„‰åŠåŠ’æª¢\"],[\"cca1\",\"çž¼éˆé»”åŠ«æ€¯è¿²åˆæ†©ææ“Šæ ¼æª„æ¿€è†ˆè¦¡éš”å …ç‰½çŠ¬ç”„çµ¹ç¹è‚©è¦‹è´é£éµ‘抉決潔çµç¼ºè¨£å…¼æ…Šç®è¬™é‰—鎌京俓倞傾儆å‹å‹å¿å°å¢ƒåºšå¾‘慶憬擎敬景暻更梗涇炅烱璟璥瓊痙硬磬竟競絅經耕耿脛莖è¦è¼•逕é¡é ƒé ¸é©šé¯¨ä¿‚å•“å ºå¥‘å£å±†æ‚¸æˆ’桂械\"],[\"cda1\",\"棨溪界癸磎稽系繫繼計誡谿階鷄å¤å©å‘Šå‘±å›ºå§‘å¤å°»åº«æ‹·æ”·æ•…æ•²æš æž¯æ§æ²½ç—¼çšç¾ç¨¿ç¾”考股è†è‹¦è‹½è°è—è ±è¢´èª¥ï¤ƒè¾œéŒ®é›‡é¡§é«˜é¼“å“æ–›æ›²æ¢ç©€è°·éµ å›°å¤å´‘æ˜†æ¢±æ£æ»¾ç¨è¢žé¯¤æ±¨ï¤„骨供公共功å”å·¥æææ‹±æŽ§æ”»ç™ç©ºèš£è²¢éžä¸²å¯¡æˆˆæžœç“œ\"],[\"cea1\",\"ç§‘è“誇課跨éŽé‹é¡†å»“槨藿éƒï¤…å† å®˜å¯¬æ…£æ£ºæ¬¾çŒç¯ç“˜ç®¡ç½è…è§€è²«é—œé¤¨åˆ®ææ‹¬é€‚ä¾Šå…‰åŒ¡å£™å»£æ› æ´¸ç‚šç‹‚ç–çèƒ±é‘›å¦æŽ›ç½«ä¹–å‚€å¡Šå£žæ€ªæ„§æ‹æ§éå®ç´˜è‚±è½Ÿäº¤åƒ‘å’¬å–¬å¬Œå¶ å·§æ”ªæ•Žæ ¡æ©‹ç‹¡çšŽçŸ¯çµžç¿¹è† è•Žè›Ÿè¼ƒè½ŽéƒŠé¤ƒé©•é®«ä¸˜ä¹…ä¹ä»‡ä¿±å…·å‹¾\"],[\"cfa1\",\"å€å£å¥å’Žå˜”åµåž¢å¯‡å¶‡å»æ‡¼æ‹˜æ•‘æž¸æŸ©æ§‹ææ¯†æ¯¬æ±‚æºç¸ç‹—玖çƒçž¿çŸ©ç©¶çµ¿è€‰è‡¼èˆ…舊苟衢謳購軀逑邱鉤銶駒驅鳩鷗龜國局èŠéž 鞫麴å›çª˜ç¾¤è£™è»éƒ¡å €å±ˆæŽ˜çªŸå®®å¼“穹窮芎躬倦券勸å·åœˆæ‹³æ²æ¬Šæ·ƒçœ·åŽ¥ç—蕨蹶闕机櫃潰è©è»Œé¥‹ï¤†æ™·æ¸è²´\"],[\"d0a1\",\"鬼龜å«åœå¥Žæ†æ§»çªç¡…窺竅糾葵è¦èµ³é€µé–¨å‹»å‡ç•‡ç èŒéˆžï¤ˆæ©˜å…‹å‰‹åŠ‡æˆŸæ£˜æ¥µéš™åƒ…åŠ¤å‹¤æ‡ƒæ–¤æ ¹æ§¿ç‘¾ç‹èйè«è¦²è¬¹è¿‘饉契今妗擒昑檎ç´ç¦ç¦½èŠ©è¡¾è¡¿è¥Ÿï¤ŠéŒ¦ä¼‹åŠæ€¥æ‰±æ±²ç´šçµ¦äº˜å…¢çŸœè‚¯ä¼ä¼Žå…¶å†€å—œå™¨åœ»åŸºåŸ¼å¤”奇妓寄å²å´Žå·±å¹¾å¿ŒæŠ€æ——æ—£\"],[\"d1a1\",\"æœžæœŸæžæ£‹æ£„機欺氣汽沂淇玘ç¦çªç’‚璣畸畿ç¢ç£¯ç¥ç¥‡ç¥ˆç¥ºç®•紀綺羈耆è€è‚Œè¨˜è豈起錡錤飢饑騎é¨é©¥éº’ç·Šä½¶å‰æ‹®æ¡”é‡‘å–«å„ºï¤‹ï¤Œå¨œæ‡¦ï¤æ‹æ‹¿ï¤Ž\",5,\"那樂\",4,\"諾酪駱亂卵暖ï¤ç…–ï¤žï¤Ÿé›£ï¤ ææºå—ï¤¡æžæ¥ 湳濫男藍襤拉\"],[\"d2a1\",\"ç´ï¤¦ï¤§è¡²å›Šå¨˜ï¤¨\",4,\"乃ï¤å…§å¥ˆæŸ°è€ï¤®å¥³å¹´æ’šç§Šå¿µæ¬æ‹ˆæ»å¯§å¯—努勞奴弩怒擄櫓爐瑙盧\",5,\"駑魯\",10,\"濃籠聾膿農惱牢磊腦賂雷尿壘\",7,\"嫩訥æ»ç´ï¥’\",5,\"能菱陵尼泥匿溺多茶\"],[\"d3a1\",\"丹亶但單團壇彖斷旦檀段æ¹çŸç«¯ç°žç·žè›‹è¢’鄲雿’»æ¾¾çºç–¸é”啖忆ºæ“”æ›‡æ·¡æ¹›æ½æ¾¹ç—°èƒè†½è•覃談èšéŒŸæ²“ç•“ç”è¸éå”å ‚å¡˜å¹¢æˆ‡æ’žæ£ ç•¶ç³–èž³é»¨ä»£åžˆå®å¤§å°å²±å¸¶å¾…æˆ´æ“¡çŽ³è‡ºè¢‹è²¸éšŠé»›å®…å¾·æ‚³å€’åˆ€åˆ°åœ–å µå¡—å°Žå± å³¶å¶‹åº¦å¾’æ‚¼æŒ‘æŽ‰æ—æ¡ƒ\"],[\"d4a1\",\"棹櫂淘渡滔濤燾盜ç¹ç¦±ç¨»è„覩è³è·³è¹ˆé€ƒé€”é“都é陶韜毒瀆牘犢ç¨ç£ç¦¿ç¯¤çº›è®€å¢©æƒ‡æ•¦æ—½æš¾æ²Œç„žç‡‰è±šé “ä¹çªä»å†¬å‡å‹•åŒæ†§æ±æ¡æ£Ÿæ´žæ½¼ç–¼çž³ç«¥èƒ´è‘£éŠ…å…œæ–—æœæž“痘竇è³ï¥šè±†é€—é 屯臀芚éé¯éˆå¾—å¶æ©™ç‡ˆç™»ç‰è—¤è¬„鄧騰喇懶拏癩羅\"],[\"d5a1\",\"蘿螺裸é‚樂洛烙çžçµ¡è½ï¥é…ªé§±ï¥žäº‚嵿¬„欒瀾爛è˜é¸žå‰Œè¾£åµæ“¥æ”¬æ¬–濫籃纜è—è¥¤è¦½æ‹‰è‡˜è Ÿå»Šæœ—æµªç‹¼ç…瑯螂郞來å´å¾ èŠå†·æŽ ç•¥äº®å€†å…©å‡‰æ¢æ¨‘粮粱糧良諒輛é‡ä¾¶å„·å‹µå‘‚å»¬æ…®æˆ¾æ—…æ«šæ¿¾ç¤ªè—œè £é–驢驪麗黎力曆æ·ç€ç¤«è½¢é‚æ†æˆ€æ”£æ¼£\"],[\"d6a1\",\"煉璉練è¯è“®è¼¦é€£éŠå†½åˆ—劣洌烈裂廉斂殮濂簾çµä»¤ä¼¶å›¹ï¥Ÿå²ºå¶ºæ€œç޲ç¬ç¾šç¿Žè†é€žéˆ´é›¶éˆé ˜é½¡ä¾‹æ¾§ç¦®é†´éš·å‹žï¥ 撈擄櫓潞瀘çˆç›§è€è˜†è™œè·¯è¼…露é¯é·ºé¹µç¢Œç¥¿ç¶ è‰éŒ„鹿麓論壟弄朧瀧ç“ç± è¾å„¡ç€¨ç‰¢ç£Šè³‚賚賴雷了僚寮廖料燎療çžèŠè“¼\"],[\"d7a1\",\"é¼é¬§é¾å£˜å©å±¢æ¨“æ·šæ¼ç˜»ç´¯ç¸·è”žè¤¸é¤é™‹åŠ‰æ—’æŸ³æ¦´æµæºœç€ç‰ç‘ ç•™ç˜¤ç¡«è¬¬é¡žå…æˆ®é™¸ä¾–å€«å´™æ·ªç¶¸è¼ªå¾‹æ…„æ —ï¥¡éš†å‹’è‚‹å‡œå‡Œæ¥žç¨œç¶¾è±é™µä¿šåˆ©åŽ˜åå”Žå±¥æ‚§æŽæ¢¨æµ¬çŠç‹¸ç†ç’ƒï¥¢ç—¢ç±¬ç½¹ç¾¸èމè£è£¡é‡Œé‡é›¢é¯‰åæ½¾ç‡ç’˜è—ºèºªéš£é±—麟林淋ç³è‡¨éœ–ç ¬\"],[\"d8a1\",\"ç«‹ç¬ ç²’æ‘©ç‘ªç—²ç¢¼ç£¨é¦¬é”éº»å¯žå¹•æ¼ è†œèŽ«é‚ˆä¸‡å娩巒彎慢挽晩曼滿漫ç£çžžè¬è”“è »è¼“é¥…é°»å”œæŠ¹æœ«æ²«èŒ‰è¥ªéºäº¡å¦„å¿˜å¿™æœ›ç¶²ç½”èŠ’èŒ«èŽ½è¼žé‚™åŸ‹å¦¹åª’å¯æ˜§æžšæ¢…æ¯ç…¤ç½µè²·è³£é‚é…è„ˆè²Šé™Œé©€éº¥åŸæ°“猛盲盟èŒå†ªè¦“å…å†•å‹‰æ£‰æ²”çœ„çœ ç¶¿ç·¬é¢éºµæ»…\"],[\"d9a1\",\"蔑冥åå‘½æ˜Žæšæ¤§æºŸçš¿çž‘èŒ—è“‚èžŸé…©éŠ˜é³´è¢‚ä¾®å†’å‹Ÿå§†å¸½æ…•æ‘¸æ‘¹æš®æŸæ¨¡æ¯æ¯›ç‰Ÿç‰¡ç‘眸矛耗芼茅謀謨貌木æ²ç‰§ç›®ç¦ç©†é¶©æ¿æ²’夢朦蒙å¯å¢“å¦™å»Ÿææ˜´æ³æ¸ºçŒ«ç«—è‹—éŒ¨å‹™å·«æ†®æ‡‹æˆŠæ‹‡æ’«æ— æ¥™æ¦æ¯‹ç„¡ç·ç•繆舞茂蕪誣貿霧鵡墨默們刎å»å•æ–‡\"],[\"daa1\",\"æ±¶ç´Šç´‹èžèšŠé–€é›¯å‹¿æ²•物味媚尾嵋彌微未梶楣渼湄眉米美薇謎迷é¡é»´å²·æ‚¶æ„æ†«æ•æ—»æ—¼æ°‘泯玟ç‰ç·¡é–”密蜜è¬å‰åšæ‹ææ’²æœ´æ¨¸æ³Šç€ç’žç®”粕縛膊舶薄迫雹é§ä¼´åŠå囿‹Œæ¬æ”€æ–‘槃泮潘ç畔瘢盤盼ç£ç£»ç¤¬çµ†èˆ¬èŸ è¿”é ’é£¯å‹ƒæ‹”æ’¥æ¸¤æ½‘\"],[\"dba1\",\"發跋醱鉢髮éƒå€£å‚åŠå¦¨å°¨å¹‡å½·æˆ¿æ”¾æ–¹æ—昉枋榜滂磅紡肪膀舫芳蒡蚌訪謗邦防é¾å€ä¿³ï¥£åŸ¹å¾˜æ‹œæŽ’æ¯æ¹ƒç„™ç›ƒèƒŒèƒšè£´è£µè¤™è³ 輩é…é™ªä¼¯ä½°å¸›æŸæ ¢ç™½ç™¾é„幡樊煩燔番磻ç¹è•ƒè—©é£œä¼ç罰閥凡帆梵氾汎泛犯範范法çºåƒ»åŠˆå£æ“˜æª—ç’§ç™–\"],[\"dca1\",\"碧蘗闢霹便åžå¼è®Šè¾¨è¾¯é‚Šåˆ¥çž¥é±‰é¼ˆä¸™å€‚兵屛幷昞昺柄棅炳ç”病秉ç«è¼§é¤ 騈ä¿å ¡å ±å¯¶æ™®æ¥æ´‘湺潽ç¤ç”«è©è£œè¤“èœè¼”ä¼åƒ•åŒåœå®“復æœç¦è…¹èŒ¯è””複覆輹輻馥鰒本乶俸奉å°å³¯å³°æ§æ£’烽熢ç«ç¸«è“¬èœ‚逢鋒鳳ä¸ä»˜ä¿¯å‚…剖副å¦å’åŸ å¤«å©¦\"],[\"dda1\",\"åšåµå¯Œåºœï¥¦æ‰¶æ•·æ–§æµ®æº¥çˆ¶ç¬¦ç°¿ç¼¶è…è…‘è†šè‰€èŠ™èŽ©è¨ƒè² è³¦è³»èµ´è¶ºéƒ¨é‡œé˜œé™„é§™é³§åŒ—åˆ†å©å™´å¢³å¥”å¥®å¿¿æ†¤æ‰®æ˜æ±¾ç„šç›†ç²‰ç³žç´›èЬè³é›°ï¥§ä½›å¼—彿拂崩朋棚硼繃鵬丕備匕匪å‘å¦ƒå©¢åº‡æ‚²æ†Šæ‰‰æ‰¹æ–æž‡æ¦§æ¯”毖毗毘沸泌çµç—ºç ’碑秕秘粃緋翡肥\"],[\"dea1\",\"脾臂è²èœšè£¨èª¹è¬è²»é„™éžé£›é¼»åš¬å¬ªå½¬æ–Œæª³æ®¯æµœæ¿±ç€•ç‰çŽè²§è³“é »æ†‘æ°·è˜é¨ä¹äº‹äº›ä»•伺似使俟僿å²å¸å”†å—£å››å£«å¥¢å¨‘å¯«å¯ºå°„å·³å¸«å¾™æ€æ¨æ–œæ–¯æŸ¶æŸ»æ¢æ»æ²™æ³—渣瀉ç…ç ‚ç¤¾ç¥€ç¥ ç§ç¯©ç´—絲肆èˆèŽŽè“‘è›‡è£Ÿè©è©žè¬è³œèµ¦è¾é‚ªé£¼é§Ÿéºå‰Šï¥©æœ”索\"],[\"dfa1\",\"傘刪山散汕çŠç”£ç–ç®—è’œé…¸éœ°ä¹·æ’’æ®ºç…žè–©ä¸‰ï¥«æ‰æ£®æ¸—èŠŸè”˜è¡«æ·æ¾éˆ’颯上傷åƒå„Ÿå•†å–ªå˜—å€å°™å³ å¸¸åºŠåº å»‚æƒ³æ¡‘æ©¡æ¹˜çˆ½ç‰€ç‹€ç›¸ç¥¥ç®±ç¿”è£³è§´è©³è±¡è³žéœœå¡žç’½è³½å—‡ï¥¬ç©¡ç´¢è‰²ç‰²ç”Ÿç”¥ï¥ç¬™å¢…壻嶼åºåº¶å¾æ•æŠ’æ¿æ•æš‘æ›™æ›¸æ –æ£²çŠ€ç‘žç®çµ®ç·–ç½²\"],[\"e0a1\",\"胥舒薯西誓é€é‹¤é»é¼ 夕å¥å¸æƒœæ˜”æ™³æžæ±æ·…潟石碩蓆釋錫仙僊先善嬋宣扇敾旋渲煽ç瑄璇璿癬禪線繕羨腺膳船蘚蟬詵跣é¸éŠ‘é¥é¥é®®å¨å±‘楔泄洩渫舌薛褻è¨èªªé›ªé½§å‰¡æš¹æ®²çº–蟾è´é–ƒé™æ”æ¶‰ç‡®ï¥®åŸŽå§“å®¬æ€§æƒºæˆæ˜Ÿæ™ŸçŒ©ç¹ç››çœç¬\"],[\"e1a1\",\"è–è²è…¥èª é†’ä¸–å‹¢æ²æ´—稅笹細說貰å¬å˜¯å¡‘宵å°å°‘å·¢æ‰€æŽƒæ”æ˜æ¢³æ²¼æ¶ˆæº¯ç€Ÿç‚¤ç‡’甦ç–ç–Žç˜™ç¬‘ç¯ ç°«ç´ ç´¹è”¬è•蘇訴é€é¡é‚µéŠ·éŸ¶é¨·ä¿—å±¬æŸæ¶‘粟續謖贖速å«å·½æè“€éœé£¡çŽ‡å®‹æ‚šæ¾æ·žè¨Ÿèª¦é€é Œåˆ·ï¥°ç‘碎鎖衰釗修å—嗽囚垂壽嫂守岫峀帥æ„\"],[\"e2a1\",\"æˆæ‰‹æŽˆæœæ”¶æ•¸æ¨¹æ®Šæ°´æ´™æ¼±ç‡§ç‹©ç¸ç‡ç’²ç˜¦ç¡ç§€ç©—竪粹ç¶ç¶¬ç¹¡ç¾žè„©èŒ±è’蓚藪袖誰è®è¼¸é‚é‚ƒé…¬éŠ–éŠ¹éš‹éš§éš¨é›–éœ€é ˆé¦–é«“é¬šå”塾夙å°å®¿æ·‘潚熟ç¡ç’¹è‚…è½å·¡å¾‡å¾ªæ‚æ—¬æ ’æ¥¯æ©“æ®‰æ´µæ·³ç£ç›¾çž¬ç純脣舜è€è“´è•£è©¢è«„é†‡éŒžé †é¦´æˆŒè¡“è¿°é‰¥å´‡å´§\"],[\"e3a1\",\"嵩瑟è†è¨æ¿•拾習褶襲丞乘僧å‹å‡æ‰¿æ˜‡ç¹©è …陞ä¾åŒ™å˜¶å§‹åª¤å°¸å±Žå±å¸‚å¼‘æƒæ–½æ˜¯æ™‚枾柴猜矢示翅蒔è“è¦–è©¦è©©è«¡è±•è±ºåŸ´å¯”å¼æ¯æ‹æ¤æ®–湜熄篒è•è˜è»¾é£Ÿé£¾ä¼¸ä¾ä¿¡å‘»å¨ 宸愼新晨燼申神紳腎臣莘薪藎蜃訊身辛辰迅失室實悉審尋心æ²\"],[\"e4a1\",\"沈深瀋甚芯諶什å拾雙æ°äºžä¿„兒啞娥峨我牙芽莪蛾衙è¨é˜¿é›…餓鴉éµå Šå²³å¶½å¹„æƒ¡æ„•æ¡æ¨‚渥鄂é”顎é°é½·å®‰å²¸æŒ‰æ™æ¡ˆçœ¼é›éžé¡”鮟斡è¬è»‹é–¼å”µå²©å·–庵暗癌è´é—‡å£“æŠ¼ç‹Žé´¨ä»°å¤®æ€æ˜»æ®ƒç§§é´¦åŽ“å“€åŸƒå´–æ„›æ›–æ¶¯ç¢è‰¾éš˜é„厄扼掖液縊腋é¡\"],[\"e5a1\",\"æ«»ç½Œé¶¯é¸šä¹Ÿå€»å†¶å¤œæƒ¹æ¶æ¤°çˆºè€¶ï¥´é‡Žå¼±ï¥µï¥¶ç´„若葯蒻藥èºï¥·ä½¯ï¥¸ï¥¹å£¤åƒæ™æšæ”˜æ•暘梁楊樣洋ç€ç…¬ç—’ç˜ç¦³ç©°ï¥»ç¾Šï¥¼è¥„諒讓釀陽量養圄御於æ¼ç˜€ç¦¦èªžé¦éšé½¬å„„憶抑æªè‡†åƒå °å½¦ç„‰è¨€è«ºå¼è˜–俺儼嚴奄掩淹嶪æ¥å††äºˆä½™ï¥¿ï¦€ï¦å¦‚廬\"],[\"e6a1\",\"ï¦ƒæŸæ±ï¦„璵礖礪與艅茹輿è½ï¦†é¤˜ï¦‡ï¦ˆï¦‰äº¦ï¦ŠåŸŸå½¹æ˜“曆歷疫繹è¯ï¦é€†é©›åš¥å §å§¸å¨Ÿå®´ï¦Žå»¶ï¦ï¦ææŒ»ï¦‘椽沇沿涎涓淵演漣烟然煙煉燃燕璉ç¡ç¡¯ï¦•çµç·£ï¦–縯聯è¡è»Ÿï¦˜ï¦™ï¦šé‰›ï¦›é³¶ï¦œï¦ï¦žæ‚…æ¶…ï¦Ÿç†±ï¦ ï¦¡é–±åŽï¦¢ï¦£ï¦¤æŸ“殮炎焰ç°è‰¶è‹’\"],[\"e7a1\",\"簾閻髥鹽曄獵ç‡è‘‰ï¦¨ï¦©å¡‹ï¦ªï¦«å¶¸å½±ï¦¬æ˜ æšŽæ¥¹æ¦®æ°¸æ³³æ¸¶æ½æ¿šç€›ç€¯ç…營ç°ï¦ç‘›ï¦®ç“”ç›ˆç©Žçº“ï¦¯ï¦°è‹±è© è¿Žï¦±éˆï¦²éœ™ï¦³ï¦´ä¹‚å€ªï¦µåˆˆå¡æ›³æ±æ¿ŠçŒŠç¿ç©¢èŠ®è—蘂禮裔詣è½è±«ï¦·éŠ³ï¦¸éœ“é 五ä¼ä¿‰å‚²åˆå¾å³å—šå¡¢å¢ºå¥§å¨›å¯¤æ‚Ÿï¦¹æ‡Šæ•–旿晤梧汚澳\"],[\"e8a1\",\"çƒç†¬ç’ç½èœˆèª¤é°²é¼‡å±‹æ²ƒç„玉鈺溫瑥瘟穩縕蘊兀壅æ“瓮甕癰ç¿é‚•é›é¥”渦瓦窩窪臥蛙è¸è¨›å©‰å®Œå®›æ¢¡æ¤€æµ£çŽ©ç“ç¬ç¢—ç·©ç¿«è„˜è…•èŽžè±Œé˜®é ‘æ›°å¾€æ—ºæž‰æ±ªçŽ‹å€å¨ƒæªçŸ®å¤–嵬å·çŒ¥ç•ï¦ºï¦»åƒ¥å‡¹å ¯å¤å¦–å§šå¯¥ï¦¼ï¦½å¶¢æ‹—æ–æ’“擾料曜樂橈燎燿瑤ï§\"],[\"e9a1\",\"窈窯繇繞耀腰蓼蟯è¦è¬ é™ï§ƒé‚€é¥’慾欲浴縟褥辱俑å‚冗勇埇墉容庸慂榕涌湧溶熔瑢用甬è³èŒ¸è“‰è¸ŠéŽ”éžï§„于佑å¶å„ªåˆå‹å³å®‡å¯“尤愚憂旴牛玗瑀盂ç¥ç¦‘禹紆羽芋藕虞迂é‡éƒµé‡ªéš…é›¨é›©å‹–å½§æ—æ˜±æ ¯ç…œç¨¶éƒé Šäº‘暈橒殞æ¾ç†‰è€˜èŠ¸è•“\"],[\"eaa1\",\"é‹éš•雲韻蔚鬱äºç†Šé›„å…ƒåŽŸå“¡åœ“åœ’åž£åª›å«„å¯ƒæ€¨æ„¿æ´æ²…洹湲æºçˆ°çŒ¿ç‘—è‹‘è¢è½…é 阮院願鴛月越鉞ä½å‰åƒžå±åœå§”å¨å°‰æ…°æšæ¸çˆ²ç‘‹ç·¯èƒƒèŽè‘¦è”¿èŸè¡›è¤˜è¬‚é•韋é乳侑儒兪劉唯喩åºå®¥å¹¼å¹½åº¾æ‚ æƒŸæ„ˆæ„‰æ„æ”¸æœ‰ï§ˆæŸ”柚柳楡楢油洧流游溜\"],[\"eba1\",\"濡猶猷琉瑜由ï§ç™’ï§Žï§ç¶è‡¾è¸è£•誘諛è«è¸°è¹‚éŠé€¾éºé…‰é‡‰é®ï§ï§‘å ‰ï§’æ¯“è‚‰è‚²ï§“ï§”å…奫尹崙淪潤玧胤贇輪鈗é–ï§˜ï§™ï§šï§›è¿æˆŽç€œçµ¨èžï§œåž æ©æ…‡æ®·èª¾éŠ€éš±ä¹™åŸæ·«è”é™°éŸ³é£®æ–æ³£é‚‘凿‡‰è†ºé·¹ä¾å€šå„€å®œæ„懿擬椅毅疑矣義艤è–蟻衣誼\"],[\"eca1\",\"è°é†«äºŒä»¥ä¼Šï§ï§žå¤·å§¨ï§Ÿå·²å¼›å½›æ€¡ï§ 李梨泥爾ç¥ï§¤ç•°ç—痢移罹而耳肄苡è‘裏裡貽貳邇里離飴餌匿溺瀷益翊翌翼謚人ä»åˆƒå°ï§å’½å› å§»å¯…å¼•å¿æ¹®ï§®ï§¯çµªèŒµï§°èš“èªï§±éé·ï§²ï§³ä¸€ä½šä½¾å£¹æ—¥æº¢é€¸éŽ°é¦¹ä»»å£¬å¦Šå§™æï§´ï§µç¨”ï§¶è賃入å„\"],[\"eda1\",\"立笠粒ä»å‰©å•芿仔刺咨姉姿åå—åœæ£æ…ˆæ»‹ç‚™ç…®çŽ†ç“·ç–µç£ç´«è€…自茨蔗藉諮資雌作勺嚼斫昨ç¼ç‚¸çˆµç¶½èŠé…Œé›€éµ²å±æ£§æ®˜æ½ºç›žå²‘æš«æ½›ç®´ç°ªè ¶é›œä¸ˆä»—åŒ å ´å¢»å£¯å¥¬å°‡å¸³åº„å¼µæŽŒæš²æ–æ¨Ÿæª£æ¬Œæ¼¿ç‰†ï§ºçç’‹ç« ç²§è…¸è‡Ÿè‡§èŽŠè‘¬è”£è–”è—è£è´“醬長\"],[\"eea1\",\"éšœå†å“‰åœ¨å®°æ‰ææ ½æ¢“渽滓ç½ç¸¡è£è²¡è¼‰é½‹é½Žçˆç®è«éŒšä½‡ä½Žå„²å’€å§åº•æŠµæµæ¥®æ¨—沮渚狙猪疽箸紵苧è¹è‘—藷詛貯躇這邸雎齟勣åŠå«¡å¯‚摘敵滴狄炙的ç©ç¬›ç±ç¸¾ç¿Ÿè»è¬«è³Šèµ¤è·¡è¹Ÿè¿ªè¿¹é©é‘佃佺傳全典å‰å‰ªå¡¡å¡¼å¥ å°ˆå±•å»›æ‚›æˆ°æ “æ®¿æ°ˆæ¾±\"],[\"efa1\",\"ç…Žç 田甸畑癲çŒç®‹ç®ç¯†çºè©®è¼¾è½‰éˆ¿éŠ“éŒ¢é«é›»é¡šé¡«é¤žåˆ‡æˆªæŠ˜æµ™ç™¤ç«Šç¯€çµ¶å 岾店漸点粘霑鮎點接摺è¶ä¸äº•äºåœåµå‘ˆå§ƒå®šå¹€åºå»·å¾æƒ…æŒºæ”¿æ•´æ—Œæ™¶æ™¸æŸ¾æ¥¨æª‰æ£æ±€æ·€æ·¨æ¸Ÿæ¹žç€žç‚¡çŽŽç½ç”ºç›ç¢‡ç¦Žç¨‹ç©½ç²¾ç¶Žè‰‡è¨‚諪貞é„é…Šé‡˜é‰¦é‹ŒéŒ éœ†é–\"],[\"f0a1\",\"éœé ‚é¼Žåˆ¶åŠ‘å•¼å ¤å¸å¼Ÿæ‚Œææ¢¯æ¿Ÿç¥ç¬¬è‡è–ºè£½è«¸è¹„é†é™¤éš›éœ½é¡Œé½Šä¿Žå…†å‡‹åŠ©å˜²å¼”å½«æŽªæ“æ—©æ™æ›ºæ›¹æœæ¢æ£—æ§½æ¼•æ½®ç…§ç‡¥çˆªç’ªçœºç¥–ç¥šç§Ÿç¨ çª•ç²—ç³Ÿçµ„ç¹°è‚‡è—»èš¤è©”èª¿è¶™èºé€ é釣阻雕鳥æ—簇足éƒå˜å°Šå’æ‹™çŒå€§å®—從悰慫棕淙ç®ç¨®çµ‚綜縱腫\"],[\"f1a1\",\"踪踵é¾é˜ä½å左座挫罪主ä½ä¾åšå§èƒ„呪周嗾å¥å®™å·žå»šæ™æœ±æŸ±æ ªæ³¨æ´²æ¹Šæ¾ç‚·ç 疇籌紂紬綢舟蛛註誅走躊輳週酎酒鑄é§ç«¹ç²¥ä¿Šå„å‡†åŸˆå¯¯å³»æ™™æ¨½æµšæº–æ¿¬ç„Œç•¯ç«£è ¢é€¡éµé›‹é§¿èŒä¸ä»²è¡†é‡å½æ«›æ¥«æ±è‘ºå¢žæ†Žæ›¾æ‹¯çƒç”‘症繒蒸è‰è´ˆä¹‹åª\"],[\"f2a1\",\"咫地å€å¿—æŒæŒ‡æ‘¯æ”¯æ—¨æ™ºæžæž³æ¢æ± æ²šæ¼¬çŸ¥ç ¥ç¥‰ç¥—ç´™è‚¢è„‚è‡³èŠèŠ·èœ˜èªŒï§¼è´„è¶¾é²ç›´ç¨™ç¨·ç¹”è·å”‡å—”å¡µæŒ¯æ¢æ™‰æ™‹æ¡æ¦›æ®„津溱ç瑨璡畛疹盡眞瞋秦縉ç¸è‡»è”¯è¢—診賑軫辰進éŽé™£é™³éœ‡ä¾„å±å§ªå«‰å¸™æ¡Žç“†ç–¾ç§©çª’膣è›è³ªè·Œè¿æ–Ÿæœ•什執潗ç·è¼¯\"],[\"f3a1\",\"é¶é›†å¾µæ‡²æ¾„且侘借å‰å—Ÿåµ¯å·®æ¬¡æ¤ç£‹ç®šï§¾è¹‰è»Šé®æ‰æ¾ç€çª„錯鑿齪撰澯燦璨瓚竄簒纂粲纘讚贊鑽é¤é¥Œåˆ¹å¯Ÿæ“¦æœç´®åƒåƒå¡¹æ…˜æ…™æ‡ºæ–¬ç«™è®’è®–å€‰å€¡å‰µå”±å¨¼å» å½°æ„´æ•žæ˜Œæ˜¶æš¢æ§æ»„漲猖瘡窓脹艙è–è’¼å‚µåŸ°å¯€å¯¨å½©æŽ¡ç ¦ç¶µèœè”¡é‡‡é‡µå†ŠæŸµç–\"],[\"f4a1\",\"è²¬å‡„å¦»æ‚½è™•å€œï§¿å‰”å°ºæ…½æˆšæ‹“æ“²æ–¥æ»Œç˜ è„Šè¹ é™Ÿéš»ä»Ÿåƒå–˜å¤©å·æ“…泉淺玔穿舛薦賤è¸é·é‡§é—¡é˜¡éŸ†å‡¸å“²å–†å¾¹æ’¤æ¾ˆç¶´è¼Ÿè½éµåƒ‰å°–æ²¾æ·»ç”›çž»ç°½ç±¤è©¹è«‚å žå¦¾å¸–æ·ç‰’ç–Šç«è«œè²¼è¼’廳晴淸è½èè«‹é‘é¯–ï¨€å‰ƒæ›¿æ¶•æ»¯ç· è«¦é€®éžé«”åˆå‰¿å“¨æ†”抄招梢\"],[\"f5a1\",\"椒楚樵炒焦ç¡ç¤ç¤Žç§’ç¨è‚–艸苕è‰è•‰è²‚超酢醋醮促囑ç‡çŸ—蜀觸寸忖æ‘邨å¢å¡šå¯µæ‚¤æ†æ‘ 總è°è”¥éŠƒæ’®å‚¬å´”æœ€å¢œæŠ½æŽ¨æ¤Žæ¥¸æ¨žæ¹«çšºç§‹èŠ»è©è«è¶¨è¿½é„’酋醜éŒéŒ˜éŽšé››é¨¶é°ä¸‘畜ç¥ç«ºç‘ç¯‰ç¸®è“„è¹™è¹´è»¸é€æ˜¥æ¤¿ç‘ƒå‡ºæœ®é»œå……å¿ æ²–èŸ²è¡è¡·æ‚´è†µèƒ\"],[\"f6a1\",\"è´…å–å¹å˜´å¨¶å°±ç‚Šç¿ èšè„†è‡è¶£é†‰é©Ÿé·²å´ä»„åŽ æƒ»æ¸¬å±¤ä¾ˆå€¤å—¤å³™å¹Ÿæ¥æ¢”治淄熾痔痴癡稚穉緇緻置致蚩輜雉馳齒則勅é£è¦ªä¸ƒæŸ’漆侵寢枕沈浸ç›ç §é‡é¼èŸ„秤稱快他咤唾墮妥惰打拖朶楕舵陀馱é§å€¬å“å•„å¼ï¨æ‰˜ï¨‚æ“¢æ™«æŸæ¿æ¿¯ç¢ç¸è¨—\"],[\"f7a1\",\"é¸å‘‘嘆å¦å½ˆæ†šæŽç˜ç‚ç¶»èª•å¥ªè„«æŽ¢çœˆè€½è²ªå¡”ææ¦»å®•帑湯糖蕩兌å°å¤ªæ€ 態殆汰泰笞胎苔跆邰颱宅擇澤撑攄兎å土討慟桶洞痛ç’çµ±é€šå †æ§Œè…¿è¤ªé€€é ¹å¸å¥—妬投é€é¬ªæ…特闖å¡å©†å·´æŠŠæ’æ“ºæ·æ³¢æ´¾çˆ¬ç¶ç ´ç½·èŠè·›é —åˆ¤å‚æ¿ç‰ˆç“£è²©è¾¦éˆ‘\"],[\"f8a1\",\"é˜ªå…«åæŒä½©å”„æ‚–æ•—æ²›æµ¿ç‰Œç‹½ç¨—è¦‡è²å½æ¾Žçƒ¹è†¨æ„Žä¾¿åæ‰ç‰‡ç¯‡ç·¨ç¿©ééžé¨™è²¶åªå¹³æž°èè©•å 嬖幣廢弊斃肺蔽閉陛佈包åŒåŒå’†å“ºåœƒå¸ƒæ€–抛抱æ•ï¨†æ³¡æµ¦ç–±ç ²èƒžè„¯è‹žè‘¡è’²è¢è¤’逋鋪飽鮑幅暴æ›ç€‘çˆ†ï¨‡ä¿µå‰½å½ªæ…“æ“æ¨™æ¼‚瓢票表豹飇飄驃\"],[\"f9a1\",\"å“稟楓諷豊風馮彼披疲皮被é¿é™‚匹弼必泌çŒç•¢ç–‹ç†è‹¾é¦ä¹é€¼ä¸‹ä½•厦å¤å»ˆæ˜°æ²³ç‘•è·è¦è³€é霞鰕壑å¸è™è¬”é¶´å¯’æ¨æ‚旱汗漢澣瀚罕翰閑閒é™éŸ“割轄函å«å’¸å•£å–Šæª»æ¶µç·˜è‰¦éŠœé™·é¹¹åˆå“ˆç›’è›¤é–¤é—”é™œäº¢ä¼‰å§®å«¦å··æ’æŠ—ææ¡æ²†æ¸¯ç¼¸è‚›èˆª\"],[\"faa1\",\"ï¨ˆï¨‰é …äº¥å•咳垓奚å©å®³æ‡ˆæ¥·æµ·ç€£èŸ¹è§£è©²è«§é‚‚é§éª¸åŠ¾æ ¸å€–å¹¸æè‡è¡Œäº«å‘åš®ç¦é„•響餉饗香噓墟虛許憲櫶ç»è»’æ‡éšªé©—奕爀赫é©ä¿”峴弦懸晛泫炫玄玹ç¾çœ©ç絃絢縣舷衒見賢鉉顯å‘ç©´è¡€é å«Œä¿ å”夾峽挾浹狹脅脇莢é‹é °äº¨å…„刑型\"],[\"fba1\",\"形泂滎瀅ç炯熒ç©ç‘©èŠèž¢è¡¡é€ˆé‚¢éŽ£é¦¨å…®å½—æƒ æ…§æš³è•™è¹Šé†¯éž‹ä¹Žäº’å‘¼å£•å£ºå¥½å²µå¼§æˆ¶æ‰ˆæ˜Šæ™§æ¯«æµ©æ·æ¹–æ»¸æ¾”æ¿ æ¿©çç‹ç¥ç‘šç“ 皓祜糊縞胡芦葫蒿虎號è´è·è±ªéŽ¬é €é¡¥æƒ‘æˆ–é…·å©šæ˜æ··æ¸¾ç¿é‚忽惚ç¬å“„弘汞泓洪烘紅虹訌鴻化和嬅樺ç«ç•µ\"],[\"fca1\",\"ç¦ç¦¾èбè¯è©±è貨é´ï¨‹æ“´æ”«ç¢ºç¢»ç©«ä¸¸å–šå¥å®¦å¹»æ‚£æ›æ¡æ™¥æ¡“渙煥環紈還驩鰥活滑猾è±é—Šå‡°å¹Œå¾¨ææƒ¶æ„°æ…Œæ™ƒæ™„æ¦¥æ³æ¹Ÿæ»‰æ½¢ç…Œç’œçš‡ç¯ç°§è’è—é‘éšé»ƒåŒ¯å›žå»»å¾Šæ¢æ‚”懷晦會檜淮澮ç°çªç¹ªè†¾èŒ´è›”誨賄劃ç²å®–æ©«é„å“®åš†åæ•ˆæ–…æ›‰æ¢Ÿæ¶æ·†\"],[\"fda1\",\"爻肴酵é©ä¾¯å€™åŽšåŽå¼å–‰å—…帿後朽煦ç逅勛勳塤壎焄ç†ç‡»è–°è¨“暈薨喧暄煊è±å‰å–™æ¯å½™å¾½æ®æš‰ç…‡è«±è¼éº¾ä¼‘æºçƒ‹ç•¦è™§æ¤èŽé·¸å…‡å‡¶åŒˆæ´¶èƒ¸é»‘昕欣炘痕åƒå±¹ç´‡è¨–æ¬ æ¬½æ†å¸æ°æ´½ç¿•興僖凞喜噫å›å§¬å¬‰å¸Œæ†™æ†˜æˆ±æ™žæ›¦ç†™ç†¹ç†ºçŠ§ç¦§ç¨€ç¾²è©°\"]]"); /***/ }), -/* 880 */ +/* 888 */ /***/ (function(module) { module.exports = JSON.parse("[[\"0\",\"\\u0000\",127],[\"a140\",\" ,ã€ã€‚.‧;:?ï¼ï¸°â€¦â€¥ï¹ï¹‘﹒·﹔﹕﹖﹗|–︱—︳╴︴ï¹ï¼ˆï¼‰ï¸µï¸¶ï½›ï½ï¸·ï¸¸ã€”〕︹︺ã€ã€‘︻︼《》︽︾〈〉︿﹀「ã€ï¹ï¹‚『ã€ï¹ƒï¹„﹙﹚\"],[\"a1a1\",\"﹛﹜ï¹ï¹žâ€˜â€™â€œâ€ã€ã€žâ€µâ€²ï¼ƒï¼†ï¼Šâ€»Â§ã€ƒâ—‹â—△▲◎☆★◇◆□■▽▼㊣℅¯ ̄_Ë﹉﹊ï¹ï¹Žï¹‹ï¹Œï¹Ÿï¹ ﹡+ï¼Ã—÷±√<>ï¼â‰¦â‰§â‰ ∞≒≡﹢\",4,\"~∩∪⊥∠∟⊿ã’ã‘∫∮∵∴♀♂⊕⊙↑↓â†â†’↖↗↙↘∥∣ï¼\"],[\"a240\",\"ï¼¼âˆ•ï¹¨ï¼„ï¿¥ã€’ï¿ ï¿¡ï¼…ï¼ â„ƒâ„‰ï¹©ï¹ªï¹«ã•㎜ãŽãŽžãŽãŽ¡ãŽŽãŽã„°兙兛兞å…兡兣嗧瓩糎â–\",7,\"â–â–Žâ–▌▋▊▉┼┴┬┤├▔─│▕┌â”└┘â•\"],[\"a2a1\",\"╮╰╯â•╞╪╡◢◣◥◤╱╲╳ï¼\",9,\"â… \",9,\"〡\",8,\"åå„å…A\",25,\"ï½\",21],[\"a340\",\"wxyzΑ\",16,\"Σ\",6,\"α\",16,\"σ\",6,\"ã„…\",10],[\"a3a1\",\"ã„\",25,\"˙ˉˊˇˋ\"],[\"a3e1\",\"€\"],[\"a440\",\"一乙ä¸ä¸ƒä¹ƒä¹äº†äºŒäººå„¿å…¥å…«å‡ 刀åˆåŠ›åŒ•ååœåˆä¸‰ä¸‹ä¸ˆä¸Šä¸«ä¸¸å‡¡ä¹…么也乞于亡兀刃勺åƒå‰å£åœŸå£«å¤•大女åå‘å“寸å°å°¢å°¸å±±å·å·¥å·±å·²å·³å·¾å¹²å»¾å¼‹å¼“æ‰\"],[\"a4a1\",\"丑ä¸ä¸ä¸ä¸°ä¸¹ä¹‹å°¹äºˆäº‘井互五亢ä»ä»€ä»ƒä»†ä»‡ä»ä»Šä»‹ä»„å…ƒå…å…§å…兮公冗凶分切刈勻勾勿化匹åˆå‡å…åžåŽ„å‹åŠå壬天夫太å¤å”å°‘å°¤å°ºå±¯å·´å¹»å»¿å¼”å¼•å¿ƒæˆˆæˆ¶æ‰‹æ‰Žæ”¯æ–‡æ–—æ–¤æ–¹æ—¥æ›°æœˆæœ¨æ¬ æ¢æ¹æ¯‹æ¯”æ¯›æ°æ°´ç«çˆªçˆ¶çˆ»ç‰‡ç‰™ç‰›çŠ¬çŽ‹ä¸™\"],[\"a540\",\"世丕且丘主ä¹ä¹ä¹Žä»¥ä»˜ä»”ä»•ä»–ä»—ä»£ä»¤ä»™ä»žå……å…„å†‰å†Šå†¬å‡¹å‡ºå‡¸åˆŠåŠ åŠŸåŒ…åŒ†åŒ—åŒä»ŸåŠå‰å¡å å¯å®åŽ»å¯å¤å³å¬å®å©å¨å¼å¸åµå«å¦åªå²å±å°å¥åå»å››å›šå¤–\"],[\"a5a1\",\"央失奴奶å•它尼巨巧左市布平幼å¼å¼˜å¼—å¿…æˆŠæ‰“æ‰”æ‰’æ‰‘æ–¥æ—¦æœ®æœ¬æœªæœ«æœæ£æ¯æ°‘æ°æ°¸æ±æ±€æ°¾çŠ¯çŽ„çŽ‰ç“œç“¦ç”˜ç”Ÿç”¨ç”©ç”°ç”±ç”²ç”³ç–‹ç™½çš®çš¿ç›®çŸ›çŸ¢çŸ³ç¤ºç¦¾ç©´ç«‹ä¸žä¸Ÿä¹’ä¹“ä¹©äº™äº¤äº¦äº¥ä»¿ä¼‰ä¼™ä¼Šä¼•ä¼ä¼ä¼‘ä¼ä»²ä»¶ä»»ä»°ä»³ä»½ä¼ä¼‹å…‰å…‡å…†å…ˆå…¨\"],[\"a640\",\"å…±å†å†°åˆ—åˆ‘åˆ’åˆŽåˆ–åŠ£åŒˆåŒ¡åŒ å°å±å‰ååŒåŠååå‹å„å‘ååˆåƒåŽå†å’å› å›žå›åœ³åœ°åœ¨åœåœ¬åœ¯åœ©å¤™å¤šå¤·å¤¸å¦„奸妃好她如å¦å—å˜å®‡å®ˆå®…安寺尖屹州帆并年\"],[\"a6a1\",\"å¼å¼›å¿™å¿–æˆŽæˆŒæˆæˆæ‰£æ‰›æ‰˜æ”¶æ—©æ—¨æ—¬æ—æ›²æ›³æœ‰æœ½æœ´æœ±æœµæ¬¡æ¤æ»æ°–æ±æ±—æ±™æ±Ÿæ± æ±æ±•æ±¡æ±›æ±æ±Žç°ç‰Ÿç‰ç™¾ç«¹ç±³ç³¸ç¼¶ç¾Šç¾½è€è€ƒè€Œè€’耳è¿è‚‰è‚‹è‚Œè‡£è‡ªè‡³è‡¼èˆŒèˆ›èˆŸè‰®è‰²è‰¾è™«è¡€è¡Œè¡£è¥¿é˜¡ä¸²äº¨ä½ä½ä½‡ä½—佞伴佛何估ä½ä½‘伽伺伸佃佔似但佣\"],[\"a740\",\"ä½œä½ ä¼¯ä½Žä¼¶ä½™ä½ä½ˆä½šå…Œå…‹å…兵冶冷別判利刪刨劫助努劬匣å³åµåååžå¾å¦å‘Žå§å‘†å‘ƒå³å‘ˆå‘‚å›å©å‘Šå¹å»å¸å®åµå¶å å¼å‘€å±å«åŸå¬å›ªå›°å›¤å›«åŠå‘å€å\"],[\"a7a1\",\"å‡åŽåœ¾åå圻壯夾å¦å¦’妨妞妣妙妖å¦å¦¤å¦“妊妥ååœåšå›å®Œå®‹å®å°¬å±€å±å°¿å°¾å²å²‘岔岌巫希åºåº‡åºŠå»·å¼„弟彤形彷役忘忌志å¿å¿±å¿«å¿¸å¿ªæˆ’æˆ‘æŠ„æŠ—æŠ–æŠ€æ‰¶æŠ‰æ‰æŠŠæ‰¼æ‰¾æ‰¹æ‰³æŠ’æ‰¯æŠ˜æ‰®æŠ•æŠ“æŠ‘æŠ†æ”¹æ”»æ”¸æ—±æ›´æŸæŽæææ‘æœæ–æžæ‰æ†æ \"],[\"a840\",\"æ“æ—æ¥æ¯æ±‚æ±žæ²™æ²æ²ˆæ²‰æ²…æ²›æ±ªæ±ºæ²æ±°æ²Œæ±¨æ²–æ²’æ±½æ²ƒæ±²æ±¾æ±´æ²†æ±¶æ²æ²”沘沂ç¶ç¼ç½ç¸ç‰¢ç‰¡ç‰ 狄狂玖甬甫男甸皂盯矣ç§ç§€ç¦¿ç©¶ç³»ç½•è‚–è‚“è‚肘肛肚育良芒\"],[\"a8a1\",\"芋èŠè¦‹è§’言谷豆豕è²èµ¤èµ°è¶³èº«è»Šè¾›è¾°è¿‚迆迅迄巡邑邢邪邦那酉釆里防阮阱阪阬並乖乳事些亞享京佯ä¾ä¾ä½³ä½¿ä½¬ä¾›ä¾‹ä¾†ä¾ƒä½°ä½µä¾ˆä½©ä½»ä¾–ä½¾ä¾ä¾‘佺兔兒兕兩具其典冽函刻券刷刺到刮制å‰åŠ¾åŠ»å’å”å“å‘å¦å·å¸å¹å–å”å—味呵\"],[\"a940\",\"咖呸咕咀呻呷咄咒咆呼å’呱呶和咚呢周咋命咎固垃å·åªå©å¡å¦å¤å¼å¤œå¥‰å¥‡å¥ˆå¥„奔妾妻委妹妮姑姆å§å§å§‹å§“姊妯妳姒姅åŸå¤å£å®—定官宜宙宛尚屈居\"],[\"a9a1\",\"屆岷岡岸岩岫岱岳帘帚帖帕帛帑幸庚店府底庖延弦弧弩往å¾å½¿å½¼å¿å¿ å¿½å¿µå¿¿æ€æ€”æ€¯æ€µæ€–æ€ªæ€•æ€¡æ€§æ€©æ€«æ€›æˆ–æˆ•æˆ¿æˆ¾æ‰€æ‰¿æ‹‰æ‹Œæ‹„æŠ¿æ‹‚æŠ¹æ‹’æ‹›æŠ«æ‹“æ‹”æ‹‹æ‹ˆæŠ¨æŠ½æŠ¼æ‹æ‹™æ‹‡æ‹æŠµæ‹šæŠ±æ‹˜æ‹–æ‹—æ‹†æŠ¬æ‹Žæ”¾æ–§æ–¼æ—ºæ˜”æ˜“æ˜Œæ˜†æ˜‚æ˜Žæ˜€æ˜æ˜•昊\"],[\"aa40\",\"æ˜‡æœæœ‹ææž‹æž•æ±æžœæ³æ·æž‡æžæž—æ¯æ°æ¿æž‰æ¾æžæµæžšæž“æ¼æªæ²æ¬£æ¦æ§æ¿æ°“æ°›æ³£æ³¨æ³³æ²±æ³Œæ³¥æ²³æ²½æ²¾æ²¼æ³¢æ²«æ³•æ³“æ²¸æ³„æ²¹æ³æ²®æ³—æ³…æ³±æ²¿æ²»æ³¡æ³›æ³Šæ²¬æ³¯æ³œæ³–æ³ \"],[\"aaa1\",\"炕炎炒炊炙爬çˆçˆ¸ç‰ˆç‰§ç‰©ç‹€ç‹Žç‹™ç‹—ç‹çŽ©çŽ¨çŽŸçŽ«çŽ¥ç”½ç–疙疚的盂盲直知矽社祀ç¥ç§‰ç§ˆç©ºç©¹ç«ºç³¾ç½”羌羋者肺肥肢肱股肫肩肴肪肯臥臾èˆèгèŠèŠ™èŠèŠ½èŠŸèŠ¹èŠ±èŠ¬èŠ¥èŠ¯èŠ¸èŠ£èŠ°èŠ¾èŠ·è™Žè™±åˆè¡¨è»‹è¿Žè¿”近邵邸邱邶采金長門阜陀阿阻附\"],[\"ab40\",\"陂隹雨é’éžäºŸäºäº®ä¿¡ä¾µä¾¯ä¾¿ä¿ ä¿‘ä¿ä¿ä¿ƒä¾¶ä¿˜ä¿Ÿä¿Šä¿—ä¾®ä¿ä¿„ä¿‚ä¿šä¿Žä¿žä¾·å…—å†’å†‘å† å‰Žå‰ƒå‰Šå‰å‰Œå‰‹å‰‡å‹‡å‹‰å‹ƒå‹åŒå—å»åŽšå›å’¬å“€å’¨å“Žå“‰å’¸å’¦å’³å“‡å“‚咽咪å“\"],[\"aba1\",\"å“„å“ˆå’¯å’«å’±å’»å’©å’§å’¿å›¿åž‚åž‹åž åž£åž¢åŸŽåž®åž“å¥•å¥‘å¥å¥Žå¥å§œå§˜å§¿å§£å§¨å¨ƒå§¥å§ªå§šå§¦å¨å§»å©å®£å®¦å®¤å®¢å®¥å°å±Žå±å±å±‹å³™å³’å··å¸å¸¥å¸Ÿå¹½åº 度建弈å¼å½¥å¾ˆå¾…å¾Šå¾‹å¾‡å¾Œå¾‰æ€’æ€æ€ æ€¥æ€Žæ€¨ææ°æ¨æ¢æ†æƒæ¬æ«æªæ¤æ‰æ‹œæŒ–æŒ‰æ‹¼æ‹æŒæ‹®æ‹½æŒ‡æ‹±æ‹·\"],[\"ac40\",\"æ‹¯æ‹¬æ‹¾æ‹´æŒ‘æŒ‚æ”¿æ•…æ–«æ–½æ—¢æ˜¥æ˜æ˜ æ˜§æ˜¯æ˜Ÿæ˜¨æ˜±æ˜¤æ›·æŸ¿æŸ“æŸ±æŸ”æŸæŸ¬æž¶æž¯æŸµæŸ©æŸ¯æŸ„æŸ‘æž´æŸšæŸ¥æž¸æŸæŸžæŸ³æž°æŸ™æŸ¢æŸæŸ’æªæ®ƒæ®†æ®µæ¯’æ¯—æ°Ÿæ³‰æ´‹æ´²æ´ªæµæ´¥æ´Œæ´±æ´žæ´—\"],[\"aca1\",\"活洽派洶洛泵洹洧洸洩洮洵洎洫炫為炳炬炯ç‚ç‚¸ç‚®ç‚¤çˆ°ç‰²ç‰¯ç‰´ç‹©ç‹ ç‹¡çŽ·çŠçŽ»çŽ²çç€çŽ³ç”šç”ç•界畎畋疫疤疥疢疣癸皆皇皈盈盆盃盅çœç›¹ç›¸çœ‰çœ‹ç›¾ç›¼çœ‡çŸœç ‚ç ”ç Œç 祆祉祈祇禹禺科秒秋穿çªç«¿ç«½ç±½ç´‚紅紀紉紇約紆缸美羿耄\"],[\"ad40\",\"è€è€è€‘耶胖胥胚胃胄背胡胛胎胞胤èƒè‡´èˆ¢è‹§èŒƒèŒ…苣苛苦茄若茂茉苒苗英èŒè‹œè‹”苑苞苓苟苯茆è™è™¹è™»è™ºè¡è¡«è¦è§”è¨ˆè¨‚è¨ƒè²žè² èµ´èµ³è¶´è»è»Œè¿°è¿¦è¿¢è¿ªè¿¥\"],[\"ada1\",\"è¿è¿«è¿¤è¿¨éƒŠéƒŽéƒéƒƒé…‹é…Šé‡é–‚é™é™‹é™Œé™é¢é©éŸ‹éŸéŸ³é 風飛食首香乘亳倌å€å€£ä¿¯å€¦å€¥ä¿¸å€©å€–倆值借倚倒們俺倀倔倨俱倡個候倘俳修å€å€ªä¿¾å€«å€‰å…¼å†¤å†¥å†¢å‡å‡Œå‡†å‡‹å‰–剜剔剛å‰åŒªå¿åŽŸåŽåŸå“¨å”å”唷哼哥哲唆哺唔哩å“員唉哮哪\"],[\"ae40\",\"哦唧唇哽å”åœƒåœ„åŸ‚åŸ”åŸ‹åŸƒå ‰å¤å¥—å¥˜å¥šå¨‘å¨˜å¨œå¨Ÿå¨›å¨“å§¬å¨ å¨£å¨©å¨¥å¨Œå¨‰å«å±˜å®°å®³å®¶å®´å®®å®µå®¹å®¸å°„屑展å±å³å³½å³»å³ªå³¨å³°å³¶å´å³´å·®å¸å¸«åº«åºåº§å¼±å¾’徑徿™\"],[\"aea1\",\"æ£æ¥ææ•ææ©æ¯æ‚„æ‚Ÿæ‚šæ‚æ‚”æ‚Œæ‚…æ‚–æ‰‡æ‹³æŒˆæ‹¿æŽæŒ¾æŒ¯æ•æ‚æ†ææ‰æŒºææŒ½æŒªæŒ«æŒ¨ææŒæ•ˆæ•‰æ–™æ—æ—…æ™‚æ™‰æ™æ™ƒæ™’æ™Œæ™…æ™æ›¸æœ”æœ•æœ—æ ¡æ ¸æ¡ˆæ¡†æ¡“æ ¹æ¡‚æ¡”æ ©æ¢³æ —æ¡Œæ¡‘æ ½æŸ´æ¡æ¡€æ ¼æ¡ƒæ ªæ¡…æ “æ ˜æ¡æ®Šæ®‰æ®·æ°£æ°§æ°¨æ°¦æ°¤æ³°æµªæ¶•消涇浦浸海浙涓\"],[\"af40\",\"浬涉浮浚浴浩涌涊浹涅浥涔烊烘烤烙烈çƒçˆ¹ç‰¹ç‹¼ç‹¹ç‹½ç‹¸ç‹·çކçç‰ç®ç çªçžç•”ç•畜畚留疾病症疲疳疽疼疹痂疸皋皰益ç›ç›Žçœ©çœŸçœ çœ¨çŸ©ç °ç §ç ¸ç ç ´ç ·\"],[\"afa1\",\"ç ¥ç ç ç Ÿç ²ç¥•ç¥ç¥ 祟祖神ç¥ç¥—ç¥šç§¤ç§£ç§§ç§Ÿç§¦ç§©ç§˜çª„çªˆç«™ç¬†ç¬‘ç²‰ç´¡ç´—ç´‹ç´Šç´ ç´¢ç´”ç´ç´•ç´šç´œç´ç´™ç´›ç¼ºç½Ÿç¾”ç¿…ç¿è€†è€˜è€•耙耗耽耿胱脂胰脅èƒèƒ´è„†èƒ¸èƒ³è„ˆèƒ½è„Šèƒ¼èƒ¯è‡è‡¬èˆ€èˆèˆªèˆ«èˆ¨èˆ¬èŠ»èŒ«è’è”èŠèŒ¸èè‰èŒµèŒ´è茲茹茶茗è€èŒ±èŒ¨èƒ\"],[\"b040\",\"虔蚊蚪蚓蚤蚩蚌蚣蚜衰衷è¢è¢‚衽衹記è¨è¨Žè¨Œè¨•訊託訓訖è¨è¨‘豈豺豹財貢起躬軒軔è»è¾±é€é€†è¿·é€€è¿ºè¿´é€ƒè¿½é€…迸邕郡éƒéƒ¢é…’é…酌釘é‡é‡—釜釙閃院陣陡\"],[\"b0a1\",\"é™›é™é™¤é™˜é™žéš»é£¢é¦¬éª¨é«˜é¬¥é¬²é¬¼ä¹¾åºå½åœå‡åƒåŒåšå‰å¥å¶åŽå•åµå´å·åå€å¯å兜冕凰剪副勒務勘動åŒåŒåŒ™åŒ¿å€åŒ¾åƒæ›¼å•†å•ªå•¦å•„啞啡啃啊唱啖å•啕唯啤唸售啜唬啣唳å•å•—åœˆåœ‹åœ‰åŸŸå …å Šå †åŸ åŸ¤åŸºå ‚å µåŸ·åŸ¹å¤ å¥¢å¨¶å©å©‰å©¦å©ªå©€\"],[\"b140\",\"娼婢婚婆婊å°å¯‡å¯…å¯„å¯‚å®¿å¯†å°‰å°ˆå°‡å± å±œå±å´‡å´†å´Žå´›å´–å´¢å´‘å´©å´”å´™å´¤å´§å´—å·¢å¸¸å¸¶å¸³å¸·åº·åº¸åº¶åºµåº¾å¼µå¼·å½—å½¬å½©å½«å¾—å¾™å¾žå¾˜å¾¡å¾ å¾œæ¿æ‚£æ‚‰æ‚ 您惋悴惦悽\"],[\"b1a1\",\"æƒ…æ‚»æ‚µæƒœæ‚¼æƒ˜æƒ•æƒ†æƒŸæ‚¸æƒšæƒ‡æˆšæˆ›æ‰ˆæŽ æŽ§æ²æŽ–æŽ¢æŽ¥æ·æ§æŽ˜æŽªæ±æŽ©æŽ‰æŽƒæŽ›æ«æŽ¨æŽ„æŽˆæŽ™æŽ¡æŽ¬æŽ’æŽæŽ€æ»æ©æ¨æºæ•æ•–æ•‘æ•™æ•—å•Ÿæ•æ•˜æ••æ•”æ–œæ–›æ–¬æ—æ—‹æ—Œæ—Žæ™æ™šæ™¤æ™¨æ™¦æ™žæ›¹å‹—æœ›æ¢æ¢¯æ¢¢æ¢“æ¢µæ¡¿æ¡¶æ¢±æ¢§æ¢—æ¢°æ¢ƒæ£„æ¢æ¢†æ¢…æ¢”æ¢æ¢¨æ¢Ÿæ¢¡æ¢‚欲殺\"],[\"b240\",\"毫毬氫涎涼淳淙液淡淌淤添淺清淇淋涯淑涮淞淹涸混淵淅淒渚涵淚淫淘淪深淮淨淆淄涪淬涿淦烹焉焊烽烯爽牽çŠçŒœçŒ›çŒ–猓猙率ç…çŠçƒç†ç¾çç“ ç“¶\"],[\"b2a1\",\"瓷甜產略畦畢異ç–痔痕疵痊ç—皎盔盒盛眷眾眼眶眸眺硫硃硎祥票ç¥ç§»çª’çª•ç¬ ç¬¨ç¬›ç¬¬ç¬¦ç¬™ç¬žç¬®ç²’ç²—ç²•çµ†çµƒçµ±ç´®ç´¹ç´¼çµ€ç´°ç´³çµ„ç´¯çµ‚ç´²ç´±ç¼½ç¾žç¾šç¿Œç¿Žç¿’è€œèŠè†è„¯è„–脣脫脩脰脤舂舵舷舶船莎莞莘è¸èŽ¢èŽ–èŽ½èŽ«èŽ’èŽŠèŽ“èŽ‰èŽ è·è»è¼\"],[\"b340\",\"莆莧處彪蛇蛀蚶蛄蚵蛆蛋蚱蚯蛉術袞袈被袒袖è¢è¢‹è¦“è¦è¨ªè¨è¨£è¨¥è¨±è¨è¨Ÿè¨›è¨¢è±‰è±šè²©è²¬è²«è²¨è²ªè²§èµ§èµ¦è¶¾è¶ºè»›è»Ÿé€™é€é€šé€—連速é€é€é€•é€žé€ é€é€¢é€–逛途\"],[\"b3a1\",\"部éƒéƒ½é…—野釵釦釣釧é‡é‡©é–‰é™ªé™µé™³é™¸é™°é™´é™¶é™·é™¬é›€é›ªé›©ç« ç«Ÿé ‚é ƒéšé³¥é¹µé¹¿éº¥éº»å‚¢å‚傅備傑傀傖傘傚最凱割剴創剩勞å‹å‹›åšåŽ¥å•»å–€å–§å•¼å–Šå–喘喂喜喪喔喇喋喃喳單喟唾喲喚喻喬喱啾喉喫喙åœå ¯å ªå ´å ¤å °å ±å ¡å å å£¹å£ºå¥ \"],[\"b440\",\"婷媚婿媒媛媧å³å±å¯’富寓å¯å°Šå°‹å°±åµŒåµå´´åµ‡å·½å¹…帽幀幃幾廊å»å»‚廄弼å½å¾©å¾ªå¾¨æƒ‘æƒ¡æ‚²æ‚¶æƒ æ„œæ„£æƒºæ„•æƒ°æƒ»æƒ´æ…¨æƒ±æ„Žæƒ¶æ„‰æ„€æ„’æˆŸæ‰‰æŽ£æŽŒææ€æ©æ‰æ†æ\"],[\"b4a1\",\"æ’æ£ææ¡æ–ææ®æ¶æ´æªæ›æ‘’æšæ¹æ•žæ•¦æ•¢æ•£æ–‘æ–æ–¯æ™®æ™°æ™´æ™¶æ™¯æš‘æ™ºæ™¾æ™·æ›¾æ›¿æœŸæœæ£ºæ£•æ£ æ£˜æ£—æ¤…æ£Ÿæ£µæ£®æ£§æ£¹æ£’æ£²æ££æ£‹æ£æ¤æ¤’æ¤Žæ£‰æ£šæ¥®æ£»æ¬¾æ¬ºæ¬½æ®˜æ®–æ®¼æ¯¯æ°®æ°¯æ°¬æ¸¯æ¸¸æ¹”æ¸¡æ¸²æ¹§æ¹Šæ¸ æ¸¥æ¸£æ¸›æ¹›æ¹˜æ¸¤æ¹–æ¹®æ¸æ¸¦æ¹¯æ¸´æ¹æ¸ºæ¸¬æ¹ƒæ¸æ¸¾æ»‹\"],[\"b540\",\"溉渙湎湣湄湲湩湟焙焚焦焰無然煮焜牌犄犀猶猥猴猩çºçªç³ç¢ç¥çµç¶ç´ç¯ç›ç¦ç¨ç”¥ç”¦ç•«ç•ªç—¢ç—›ç—£ç—™ç—˜ç—žç— 登發皖皓皴盜ççŸç¡ç¡¬ç¡¯ç¨ç¨ˆç¨‹ç¨…稀窘\"],[\"b5a1\",\"窗窖童竣ç‰ç–ç†çç’ç”çç‹çç‘粟粥絞çµçµ¨çµ•紫絮絲絡給絢絰絳善翔翕耋è’肅腕腔腋腑腎脹腆脾腌腓腴舒舜è©èƒè¸èè è…è‹èè¯è±è´è‘—èŠè°èŒèŒè½è²èŠè¸èŽè„èœè‡è”èŸè™›è›Ÿè›™è›è›”蛛蛤è›è›žè¡—è£è£‚è¢±è¦ƒè¦–è¨»è© è©•è©žè¨¼è©\"],[\"b640\",\"詔詛è©è©†è¨´è¨ºè¨¶è©–象貂貯貼貳貽è³è²»è³€è²´è²·è²¶è²¿è²¸è¶Šè¶…è¶è·Žè·è·‹è·šè·‘跌跛跆軻軸軼辜逮逵週逸進逶鄂郵鄉郾酣酥é‡éˆ”鈕鈣鈉鈞éˆéˆéˆ‡éˆ‘é–”é–é–‹é–‘\"],[\"b6a1\",\"間閒閎隊階隋陽隅隆éšé™²éš„é›é›…é›„é›†é›‡é›¯é›²éŸŒé …é †é ˆé£§é£ªé£¯é£©é£²é£é¦®é¦é»ƒé»é»‘亂å‚債傲傳僅傾催傷傻傯僇剿剷剽募勦勤勢勣匯嗟嗨嗓嗦嗎嗜嗇嗑嗣嗤嗯嗚嗡嗅嗆嗥嗉園圓塞塑塘塗塚塔填塌å¡å¡Šå¡¢å¡’塋奧å«å«‰å«Œåª¾åª½åª¼\"],[\"b740\",\"åª³å«‚åª²åµ©åµ¯å¹Œå¹¹å»‰å»ˆå¼’å½™å¾¬å¾®æ„šæ„æ…ˆæ„Ÿæƒ³æ„›æƒ¹æ„æ„ˆæ…Žæ…Œæ…„æ…æ„¾æ„´æ„§æ„æ„†æ„·æˆ¡æˆ¢æ“æ¾æžæªææ½æ¬ææœæ”ææ¶æ–æ—æ†æ•¬æ–Ÿæ–°æš—æš‰æš‡æšˆæš–æš„æš˜æšæœƒæ¦”æ¥\"],[\"b7a1\",\"æ¥šæ¥·æ¥ æ¥”æ¥µæ¤°æ¦‚æ¥Šæ¥¨æ¥«æ¥žæ¥“æ¥¹æ¦†æ¥æ¥£æ¥›æ‡æ²æ¯€æ®¿æ¯“æ¯½æº¢æº¯æ»“æº¶æ»‚æºæºæ»‡æ»…溥溘溼溺溫滑準溜滄滔溪溧溴煎煙煩煤煉照煜煬煦煌煥煞煆煨煖爺牒猷ç…猿猾瑯瑚瑕瑟瑞ç‘ç¿ç‘™ç‘›ç‘œç•¶ç•¸ç˜€ç—°ç˜ç—²ç—±ç—ºç—¿ç—´ç—³ç›žç›Ÿç›ç«ç¦çžç£\"],[\"b840\",\"ç¹çªç¬çœç¥ç¨ç¢çŸ®ç¢Žç¢°ç¢—碘碌碉硼碑碓硿祺祿ç¦è¬ç¦½ç¨œç¨šç¨ ç¨”ç¨Ÿç¨žçªŸçª ç·ç¯€ç ç®ç§ç²±ç²³ç²µç¶“絹綑ç¶ç¶çµ›ç½®ç½©ç½ªç½²ç¾©ç¾¨ç¾¤è–è˜è‚†è‚„腱腰腸腥腮腳腫\"],[\"b8a1\",\"腹腺腦舅艇蒂葷è½è±è‘µè‘¦è‘«è‘‰è‘¬è‘›è¼èµè‘¡è‘£è‘©è‘葆虞虜號蛹蜓蜈蜇蜀蛾蛻蜂蜃蜆蜊衙裟裔裙補裘è£è£¡è£Šè£•è£’è¦œè§£è©«è©²è©³è©¦è©©è©°èª‡è©¼è©£èª è©±èª…è©è©¢è©®è©¬è©¹è©»è¨¾è©¨è±¢è²Šè²‰è³Šè³‡è³ˆè³„貲賃賂賅跡跟跨路跳跺跪跤跦躲較載軾輊\"],[\"b940\",\"辟農é‹éŠé“é‚é”逼é•éé‡ééŽéé‘逾é鄒鄗酬酪酩釉鈷鉗鈸鈽鉀鈾鉛鉋鉤鉑鈴鉉é‰é‰…鈹鈿鉚閘隘隔隕é›é›‹é›‰é›Šé›·é›»é›¹é›¶é–é´é¶é é ‘é “é Šé ’é Œé£¼é£´\"],[\"b9a1\",\"é£½é£¾é¦³é¦±é¦´é«¡é³©éº‚é¼Žé¼“é¼ åƒ§åƒ®åƒ¥åƒ–åƒåƒšåƒ•åƒåƒ‘僱僎僩兢凳劃劂匱åŽå—¾å˜€å˜›å˜—嗽嘔嘆嘉å˜å˜Žå—·å˜–嘟嘈å˜å—¶åœ˜åœ–塵塾境墓墊塹墅塽壽夥夢夤奪奩嫡嫦嫩嫗嫖嫘嫣åµå¯žå¯§å¯¡å¯¥å¯¦å¯¨å¯¢å¯¤å¯Ÿå°å±¢å¶„嶇幛幣幕幗幔廓廖弊彆彰徹慇\"],[\"ba40\",\"æ„¿æ…‹æ…·æ…¢æ…£æ…Ÿæ…šæ…˜æ…µæˆªæ’‡æ‘˜æ‘”æ’¤æ‘¸æ‘Ÿæ‘ºæ‘‘æ‘§æ´æ‘æ‘»æ•²æ–¡æ——æ—–æš¢æš¨æšæ¦œæ¦¨æ¦•æ§æ¦®æ§“æ§‹æ¦›æ¦·æ¦»æ¦«æ¦´æ§æ§æ¦æ§Œæ¦¦æ§ƒæ¦£æ‰æŒæ°³æ¼³æ¼”æ»¾æ¼“æ»´æ¼©æ¼¾æ¼ æ¼¬æ¼æ¼‚æ¼¢\"],[\"baa1\",\"æ»¿æ»¯æ¼†æ¼±æ¼¸æ¼²æ¼£æ¼•æ¼«æ¼¯æ¾ˆæ¼ªæ»¬æ¼æ»²æ»Œæ»·ç†”熙煽熊熄熒爾犒犖ç„ç瑤瑣瑪瑰ç‘甄疑瘧ç˜ç˜‹ç˜‰ç˜“盡監瞄ç½ç¿ç¡ç£ç¢Ÿç¢§ç¢³ç¢©ç¢£ç¦Žç¦ç¦ç¨®ç¨±çªªçª©ç«ç«¯ç®¡ç®•箋çµç®—ç®ç®”ç®ç®¸ç®‡ç®„ç²¹ç²½ç²¾ç¶»ç¶°ç¶œç¶½ç¶¾ç¶ ç·Šç¶´ç¶²ç¶±ç¶ºç¶¢ç¶¿ç¶µç¶¸ç¶ç·’緇綬\"],[\"bb40\",\"ç½°ç¿ ç¿¡ç¿Ÿèžèšè‚‡è…膀è†è†ˆè†Šè…¿è†‚臧臺與舔舞艋蓉蒿蓆蓄蒙蒞蒲蒜蓋蒸蓀蓓è’蒼蓑蓊蜿蜜蜻蜢蜥蜴蜘è•蜷蜩裳褂裴裹裸製裨褚裯誦誌語誣èªèª¡èª“誤\"],[\"bba1\",\"說誥誨誘誑誚誧豪è²è²Œè³“賑賒赫趙趕跼輔輒輕輓辣é é˜éœé£é™éžé¢éé›é„™é„˜é„žé…µé…¸é…·é…´é‰¸éŠ€éŠ…éŠ˜éŠ–é‰»éŠ“éŠœéŠ¨é‰¼éŠ‘é–¡é–¨é–©é–£é–¥é–¤éš™éšœéš›é›Œé›’éœ€é¼éž…éŸ¶é —é ˜é¢¯é¢±é¤ƒé¤…é¤Œé¤‰é§éª¯éª°é«¦éé‚鳴鳶鳳麼鼻齊億儀僻僵價儂儈儉儅凜\"],[\"bc40\",\"劇劈劉åŠåŠŠå‹°åŽ²å˜®å˜»å˜¹å˜²å˜¿å˜´å˜©å™“å™Žå™—å™´å˜¶å˜¯å˜°å¢€å¢Ÿå¢žå¢³å¢œå¢®å¢©å¢¦å¥å¬‰å«»å¬‹å«µå¬Œå¬ˆå¯®å¯¬å¯©å¯«å±¤å±¥å¶å¶”幢幟幡廢廚廟å»å»£å» å½ˆå½±å¾·å¾µæ…¶æ…§æ…®æ…æ…•憂\"],[\"bca1\",\"æ…¼æ…°æ…«æ…¾æ†§æ†æ†«æ†Žæ†¬æ†šæ†¤æ†”æ†®æˆ®æ‘©æ‘¯æ‘¹æ’žæ’²æ’ˆæ’æ’°æ’¥æ’“æ’•æ’©æ’’æ’®æ’æ’«æ’šæ’¬æ’™æ’¢æ’³æ•µæ•·æ•¸æš®æš«æš´æš±æ¨£æ¨Ÿæ§¨æ¨æ¨žæ¨™æ§½æ¨¡æ¨“æ¨Šæ§³æ¨‚æ¨…æ§æ¨‘ææŽæ®¤æ¯…æ¯†æ¼¿æ½¼æ¾„æ½‘æ½¦æ½”æ¾†æ½æ½›æ½¸æ½®æ¾Žæ½ºæ½°æ½¤æ¾—æ½˜æ»•æ½¯æ½ æ½Ÿç†Ÿç†¬ç†±ç†¨ç‰–çŠ›çŽç—ç‘©ç’‹ç’ƒ\"],[\"bd40\",\"ç‘¾ç’€ç•¿ç˜ ç˜©ç˜Ÿç˜¤ç˜¦ç˜¡ç˜¢çššçšºç›¤çžŽçž‡çžŒçž‘çž‹ç£‹ç£…ç¢ºç£Šç¢¾ç£•ç¢¼ç£ç¨¿ç¨¼ç©€ç¨½ç¨·ç¨»çª¯çª®ç®ç®±ç¯„箴篆篇ç¯ç® ç¯Œç³Šç· ç·´ç·¯ç·»ç·˜ç·¬ç·ç·¨ç·£ç·šç·žç·©ç¶žç·™ç·²ç·¹ç½µç½·ç¾¯\"],[\"bda1\",\"翩耦膛膜è†è† 膚膘蔗蔽蔚蓮蔬è”蔓蔑蔣蔡蔔蓬蔥蓿蔆螂è´è¶è è¦è¸è¨è™è—èŒè“è¡›è¡è¤è¤‡è¤’褓褕褊誼諒談諄誕請諸課諉諂調誰論è«èª¶èª¹è«›è±Œè±Žè±¬è³ 賞賦賤賬è³è³¢è³£è³œè³ªè³¡èµè¶Ÿè¶£è¸«è¸è¸è¸¢è¸è¸©è¸Ÿè¸¡è¸žèººè¼è¼›è¼Ÿè¼©è¼¦è¼ªè¼œè¼ž\"],[\"be40\",\"è¼¥é©é®é¨éé·é„°é„鄧鄱醇醉醋醃鋅銻銷鋪銬鋤é‹éŠ³éŠ¼é‹’é‹‡é‹°éŠ²é–閱霄霆震霉é éžéž‹éžé ¡é «é œé¢³é¤Šé¤“餒餘é§é§é§Ÿé§›é§‘駕駒駙骷髮髯鬧é…é„é·é¯é´†é´‰\"],[\"bea1\",\"鴃麩麾黎墨齒儒儘儔å„儕冀冪å‡åŠ‘åŠ“å‹³å™™å™«å™¹å™©å™¤å™¸å™ªå™¨å™¥å™±å™¯å™¬å™¢å™¶å£å¢¾å£‡å£…奮å¬å¬´å¸å¯°å°Žå½Šæ†²æ†‘æ†©æ†Šæ‡æ†¶æ†¾æ‡Šæ‡ˆæˆ°æ“…æ“æ“‹æ’»æ’¼æ“šæ“„æ“‡æ“‚æ“æ’¿æ“’æ“”æ’¾æ•´æ›†æ›‰æš¹æ›„æ›‡æš¸æ¨½æ¨¸æ¨ºæ©™æ©«æ©˜æ¨¹æ©„æ©¢æ©¡æ©‹æ©‡æ¨µæ©Ÿæ©ˆæ™æ·æ°…濂澱澡\"],[\"bf40\",\"æ¿ƒæ¾¤æ¿æ¾§æ¾³æ¿€æ¾¹æ¾¶æ¾¦æ¾ 澴熾燉ç‡ç‡’燈燕熹燎燙燜燃燄ç¨ç’œç’£ç’˜ç’Ÿç’žç“¢ç”Œç”ç˜´ç˜¸ç˜ºç›§ç›¥çž çžžçžŸçž¥ç£¨ç£šç£¬ç£§ç¦¦ç©ç©Žç©†ç©Œç©‹çªºç¯™ç°‘築篤篛篡篩篦糕糖縊\"],[\"bfa1\",\"縑縈縛縣縞ç¸ç¸‰ç¸ç½¹ç¾²ç¿°ç¿±ç¿®è€¨è†³è†©è†¨è‡»èˆˆè‰˜è‰™è•Šè•™è•ˆè•¨è•©è•ƒè•‰è•蕪蕞螃螟螞螢èžè¡¡è¤ªè¤²è¤¥è¤«è¤¡è¦ªè¦¦è«¦è«ºè««è«±è¬€è«œè«§è«®è«¾è¬è¬‚è«·è«è«³è«¶è«¼è±«è±è²“賴蹄踱踴蹂踹踵輻輯輸輳辨辦éµé´é¸é²é¼éºé„´é†’éŒ éŒ¶é‹¸éŒ³éŒ¯éŒ¢é‹¼éŒ«éŒ„éŒš\"],[\"c040\",\"éŒéŒ¦éŒ¡éŒ•錮錙閻隧隨險雕霎霑霖éœéœ“éœé›éœé¦éž˜é °é ¸é »é ·é é ¹é ¤é¤é¤¨é¤žé¤›é¤¡é¤šé§é§¢é§±éª¸éª¼é«»é«é¬¨é®‘鴕鴣鴦鴨鴒鴛默黔é¾é¾œå„ªå„Ÿå„¡å„²å‹µåšŽåš€åšåš…嚇\"],[\"c0a1\",\"åšå£•壓壑壎嬰嬪嬤åºå°·å±¨å¶¼å¶ºå¶½å¶¸å¹«å½Œå¾½æ‡‰æ‡‚æ‡‡æ‡¦æ‡‹æˆ²æˆ´æ“Žæ“Šæ“˜æ“ æ“°æ“¦æ“¬æ“±æ“¢æ“æ–‚æ–ƒæ›™æ›–æª€æª”æª„æª¢æªœæ«›æª£æ©¾æª—æªæª æœæ®®æ¯šæ°ˆæ¿˜æ¿±æ¿Ÿæ¿ 濛濤濫濯澀濬濡濩濕濮濰燧營燮燦燥ç‡ç‡¬ç‡´ç‡ 爵牆ç°ç²ç’©ç’°ç’¦ç’¨ç™†ç™‚癌盪瞳瞪瞰瞬\"],[\"c140\",\"çž§çžçŸ¯ç£·ç£ºç£´ç£¯ç¤ç¦§ç¦ªç©—窿簇ç°ç¯¾ç¯·ç°Œç¯ ç³ ç³œç³žç³¢ç³Ÿç³™ç³ç¸®ç¸¾ç¹†ç¸·ç¸²ç¹ƒç¸«ç¸½ç¸±ç¹…ç¹ç¸´ç¸¹ç¹ˆç¸µç¸¿ç¸¯ç½„翳翼è±è²è°è¯è³è‡†è‡ƒè†ºè‡‚臀膿膽臉膾臨舉艱薪\"],[\"c1a1\",\"è–„è•¾è–œè–‘è–”è–¯è–›è–‡è–¨è–Šè™§èŸ€èŸ‘èž³èŸ’èŸ†èž«èž»èžºèŸˆèŸ‹è¤»è¤¶è¥„è¤¸è¤½è¦¬è¬Žè¬—è¬™è¬›è¬Šè¬ è¬è¬„è¬è±è°¿è±³è³ºè³½è³¼è³¸è³»è¶¨è¹‰è¹‹è¹ˆè¹Šè½„輾轂轅輿é¿é½é‚„é‚邂邀鄹醣醞醜é鎂錨éµéŠé¥é‹éŒ˜é¾é¬é›é°éšé”é—Šé—‹é—Œé—ˆé—†éš±éš¸é›–éœœéœžéž éŸ“é¡†é¢¶é¤µé¨\"],[\"c240\",\"駿鮮鮫鮪é®é´»é´¿éº‹é»é»žé»œé»é»›é¼¾é½‹å¢åš•åš®å£™å£˜å¬¸å½æ‡£æˆ³æ“´æ“²æ“¾æ”†æ“ºæ“»æ“·æ–·æ›œæœ¦æª³æª¬æ«ƒæª»æª¸æ«‚æª®æª¯æŸæ¸æ®¯ç€‰ç€‹æ¿¾ç€†æ¿ºç€‘ç€ç‡»ç‡¼ç‡¾ç‡¸ç·çµç’§ç’¿ç”•癖癘\"],[\"c2a1\",\"ç™’çž½çž¿çž»çž¼ç¤Žç¦®ç©¡ç©¢ç© ç«„ç«…ç°«ç°§ç°ªç°žç°£ç°¡ç³§ç¹”ç¹•ç¹žç¹šç¹¡ç¹’ç¹™ç½ˆç¿¹ç¿»è·è¶è‡è‡èˆŠè—è–©è—è—è—‰è–°è–ºè–¹è–¦èŸ¯èŸ¬èŸ²èŸ è¦†è¦²è§´è¬¨è¬¹è¬¬è¬«è±è´…蹙蹣蹦蹤蹟蹕軀轉è½é‚‡é‚ƒé‚ˆé†«é†¬é‡éŽ”éŽŠéŽ–éŽ¢éŽ³éŽ®éŽ¬éŽ°éŽ˜éŽšéŽ—é—”é—–é—闕離雜雙雛雞霤鞣鞦\"],[\"c340\",\"éžéŸ¹é¡é¡é¡Œé¡Žé¡“颺餾餿餽餮馥騎é«é¬ƒé¬†ééŽé鯊鯉鯽鯈鯀鵑éµéµ é» é¼•é¼¬å„³åš¥å£žå£Ÿå£¢å¯µé¾å»¬æ‡²æ‡·æ‡¶æ‡µæ”€æ”æ› æ›æ«¥æ«æ«šæ«“瀛瀟瀨瀚ç€ç€•瀘爆çˆç‰˜çŠ¢ç¸\"],[\"c3a1\",\"çºç’½ç“Šç“£ç–‡ç–†ç™Ÿç™¡çŸ‡ç¤™ç¦±ç©«ç©©ç°¾ç°¿ç°¸ç°½ç°·ç±€ç¹«ç¹ç¹¹ç¹©ç¹ªç¾…繳羶羹羸臘藩è—è—ªè—•è—¤è—¥è—·èŸ»è …è èŸ¹èŸ¾è¥ è¥Ÿè¥–è¥žèèœè˜è‰èšèŽèè†è™è´ˆè´Šè¹¼è¹²èº‡è¹¶è¹¬è¹ºè¹´è½”轎è¾é‚Šé‚‹é†±é†®é¡é‘éŸéƒéˆéœéé–é¢éé˜é¤é—é¨é—œéš´é›£éœªéœ§é¡éŸœéŸ»é¡ž\"],[\"c440\",\"願顛颼饅饉騖騙é¬é¯¨é¯§é¯–鯛鶉鵡鵲鵪鵬麒麗麓麴勸嚨嚷嚶嚴嚼壤å€åƒå½å¯¶å·‰æ‡¸æ‡ºæ”˜æ””攙曦朧櫬瀾瀰瀲çˆç»ç“癢癥礦礪礬礫竇競籌籃ç±ç³¯ç³°è¾®ç¹½ç¹¼\"],[\"c4a1\",\"çº‚ç½Œè€€è‡šè‰¦è—»è—¹è˜‘è—ºè˜†è˜‹è˜‡è˜Šè ”è •è¥¤è¦ºè§¸è°è¬è¦è¯èŸè«è´è´èº‰èºèº…躂醴釋é˜éƒé½é—¡éœ°é£„饒饑馨騫騰騷騵鰓é°é¹¹éºµé»¨é¼¯é½Ÿé½£é½¡å„·å„¸å›å›€å›‚夔屬巿‡¼æ‡¾æ”攜斕曩櫻欄櫺殲çŒçˆ›çŠ§ç“–ç“”ç™©çŸ“ç±çºçºŒç¾¼è˜—è˜è˜šè £è ¢è ¡è Ÿè¥ªè¥¬è¦½è´\"],[\"c540\",\"è·è½è´“躊èºèº‹è½Ÿè¾¯é†ºé®é³éµéºé¸é²é«é—¢éœ¸éœ¹éœ²éŸ¿é¡§é¡¥é¥—驅驃驀騾é«é”é‘é°é°¥é¶¯é¶´é·‚鶸éºé»¯é¼™é½œé½¦é½§å„¼å„»å›ˆå›Šå›‰å¿å·”巒彎懿攤權æ¡ç‘ç˜çŽ€ç“¤ç–Šç™®ç™¬\"],[\"c5a1\",\"ç¦³ç± ç±Ÿè¾è½è‡Ÿè¥²è¥¯è§¼è®€è´–贗躑躓轡酈鑄鑑鑒霽霾韃éŸé¡«é¥•é©•é©é«’鬚鱉鰱鰾鰻鷓鷗鼴齬齪龔囌巖戀攣攫攪曬æ¬ç“šç«Šç±¤ç±£ç±¥çº“çº–çº”è‡¢è˜¸è˜¿è ±è®Šé‚é‚é‘£é‘ é‘¤é¨é¡¯é¥œé©šé©›é©—髓體髑鱔鱗鱖鷥麟黴囑壩攬çžç™±ç™²çŸ—ç½ç¾ˆè ¶è ¹è¡¢è®“è®’\"],[\"c640\",\"讖艷贛釀鑪é‚éˆé„韆顰驟鬢é˜é±Ÿé·¹é·ºé¹¼é¹½é¼‡é½·é½²å»³æ¬–ç£ç±¬ç±®è »è§€èº¡é‡é‘²é‘°é¡±é¥žé«–鬣黌ç¤çŸšè®šé‘·éŸ‰é©¢é©¥çºœè®œèºªé‡…鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲\"],[\"c940\",\"乂乜凵匚厂万丌乇äºå›—兀屮彳ä¸å†‡ä¸Žä¸®äº“仂仉仈冘勼å¬åŽ¹åœ å¤ƒå¤¬å°å·¿æ—¡æ®³æ¯Œæ°”爿丱丼仨仜仩仡ä»ä»šåˆŒåŒœåŒåœ¢åœ£å¤—夯å®å®„å°’å°»å±´å±³å¸„åº€åº‚å¿‰æˆ‰æ‰æ°•\"],[\"c9a1\",\"氶汃氿氻犮犰玊禸肊阞伎优伬仵伔仱伀价伈ä¼ä¼‚伅伢伓伄仴伒冱刓刉åˆåŠ¦åŒ¢åŒŸå厊å‡å›¡å›Ÿåœ®åœªåœ´å¤¼å¦€å¥¼å¦…奻奾奷奿å–å°•å°¥å±¼å±ºå±»å±¾å·Ÿå¹µåº„å¼‚å¼šå½´å¿•å¿”å¿æ‰œæ‰žæ‰¤æ‰¡æ‰¦æ‰¢æ‰™æ‰ æ‰šæ‰¥æ—¯æ—®æœ¾æœ¹æœ¸æœ»æœºæœ¿æœ¼æœ³æ°˜æ±†æ±’æ±œæ±æ±Šæ±”汋\"],[\"ca40\",\"汌ç±ç‰žçŠ´çŠµçŽŽç”ªç™¿ç©µç½‘è‰¸è‰¼èŠ€è‰½è‰¿è™è¥¾é‚™é‚—é‚˜é‚›é‚”é˜¢é˜¤é˜ é˜£ä½–ä¼»ä½¢ä½‰ä½“ä½¤ä¼¾ä½§ä½’ä½Ÿä½ä½˜ä¼ä¼³ä¼¿ä½¡å†å†¹åˆœåˆžåˆ¡åŠåŠ®åŒ‰å£å²åŽŽåŽå°å·åªå‘”å‘…å™åœå¥å˜\"],[\"caa1\",\"å½å‘å‘å¨å¤å‘‡å›®å›§å›¥åå…åŒå‰å‹å’å¤†å¥€å¦¦å¦˜å¦ å¦—å¦Žå¦¢å¦å¦å¦§å¦¡å®Žå®’尨尪å²å²å²ˆå²‹å²‰å²’å²Šå²†å²“å²•å· å¸Šå¸Žåº‹åº‰åºŒåºˆåºå¼…å¼å½¸å½¶å¿’å¿‘å¿å¿å¿¨å¿®å¿³å¿¡å¿¤å¿£å¿ºå¿¯å¿·å¿»æ€€å¿´æˆºæŠƒæŠŒæŠŽæŠæŠ”æŠ‡æ‰±æ‰»æ‰ºæ‰°æŠæŠˆæ‰·æ‰½æ‰²æ‰´æ”·æ—°æ—´æ—³æ—²æ—µæ…æ‡\"],[\"cb40\",\"æ™æ•æŒæˆæææšæ‹æ¯æ°™æ°šæ±¸æ±§æ±«æ²„æ²‹æ²æ±±æ±¯æ±©æ²šæ±æ²‡æ²•沜汦汳汥汻沎ç´çºç‰£çŠ¿çŠ½ç‹ƒç‹†ç‹çŠºç‹…çŽ•çŽ—çŽ“çŽ”çŽ’ç”ºç”¹ç–”ç–•çšç¤½è€´è‚•è‚™è‚肒肜èŠèŠèŠ…èŠŽèŠ‘èŠ“\"],[\"cba1\",\"èŠŠèŠƒèŠ„è±¸è¿‰è¾¿é‚Ÿé‚¡é‚¥é‚žé‚§é‚ é˜°é˜¨é˜¯é˜ä¸³ä¾˜ä½¼ä¾…佽侀侇佶佴侉侄佷佌侗佪侚佹ä¾ä½¸ä¾ä¾œä¾”侞侒侂侕佫佮冞冼冾刵刲刳剆刱劼匊匋匼厒厔咇呿å’咑咂咈呫呺呾呥呬呴呦å’å‘¯å‘¡å‘ å’˜å‘£å‘§å‘¤å›·å›¹å¯å²åå«å±å°å¶åž€åµå»å³å´å¢\"],[\"cc40\",\"å¨å½å¤Œå¥…妵妺å§å§Žå¦²å§Œå§å¦¶å¦¼å§ƒå§–妱妽姀姈妴姇å¢å¥å®“å®•å±„å±‡å²®å²¤å² å²µå²¯å²¨å²¬å²Ÿå²£å²å²¢å²ªå²§å²å²¥å²¶å²°å²¦å¸—å¸”å¸™å¼¨å¼¢å¼£å¼¤å½”å¾‚å½¾å½½å¿žå¿¥æ€æ€¦æ€™æ€²æ€‹\"],[\"cca1\",\"æ€´æ€Šæ€—æ€³æ€šæ€žæ€¬æ€¢æ€æ€æ€®æ€“æ€‘æ€Œæ€‰æ€œæˆ”æˆ½æŠæŠ´æ‹‘æŠ¾æŠªæŠ¶æ‹ŠæŠ®æŠ³æŠ¯æŠ»æŠ©æŠ°æŠ¸æ”½æ–¨æ–»æ˜‰æ—¼æ˜„æ˜’æ˜ˆæ—»æ˜ƒæ˜‹æ˜æ˜…æ—½æ˜‘æ˜æ›¶æœŠæž…æ¬æžŽæž’æ¶æ»æž˜æž†æž„æ´æžæžŒæºæžŸæž‘æž™æžƒæ½æžæ¸æ¹æž”æ¬¥æ®€æ¾æ¯žæ°æ²“æ³¬æ³«æ³®æ³™æ²¶æ³”æ²æ³§æ²·æ³æ³‚æ²ºæ³ƒæ³†æ³æ³²\"],[\"cd40\",\"æ³’æ³æ²´æ²Šæ²æ²€æ³žæ³€æ´°æ³æ³‡æ²°æ³¹æ³æ³©æ³‘炔炘炅炓炆炄炑炖炂炚炃牪狖狋狘狉狜狒狔狚狌狑玤玡çŽçŽ¦çŽ¢çŽ çŽ¬çŽç“瓨甿畀甾疌疘皯盳盱盰盵矸矼矹矻矺\"],[\"cda1\",\"矷祂礿秅穸穻竻籵糽耵è‚肮肣肸肵è‚èˆ èŠ è‹€èŠ«èŠšèŠ˜èŠ›èŠµèŠ§èŠ®èŠ¼èŠžèŠºèŠ´èŠ¨èŠ¡èŠ©è‹‚èŠ¤è‹ƒèŠ¶èŠ¢è™°è™¯è™è™®è±–è¿’è¿‹è¿“è¿è¿–迕迗邲邴邯邳邰阹阽阼阺陃ä¿ä¿…俓侲俉俋ä¿ä¿”俜俙侻侳俛俇俖侺俀侹俬剄剉勀勂匽å¼åŽ—åŽ–åŽ™åŽ˜å’ºå’¡å’å’¥å“\"],[\"ce40\",\"哃èŒå’·å’®å“–å’¶å“…å“†å’ å‘°å’¼å’¢å’¾å‘²å“žå’°åžµåžžåžŸåž¤åžŒåž—åžåž›åž”垘åžåž™åž¥åžšåž•壴å¤å¥“姡姞姮娀姱å§å§ºå§½å§¼å§¶å§¤å§²å§·å§›å§©å§³å§µå§ 姾姴å§å®¨å±Œå³å³˜å³Œå³—峋峛\"],[\"cea1\",\"峞峚峉峇峊峖峓峔å³å³ˆå³†å³Žå³Ÿå³¸å·¹å¸¡å¸¢å¸£å¸ å¸¤åº°åº¤åº¢åº›åº£åº¥å¼‡å¼®å½–å¾†æ€·æ€¹æ”æ²æžæ…æ“æ‡æ‰æ›æŒæ€æ‚æŸæ€¤æ„æ˜æ¦æ®æ‰‚æ‰ƒæ‹æŒæŒ‹æ‹µæŒŽæŒƒæ‹«æ‹¹æŒæŒŒæ‹¸æ‹¶æŒ€æŒ“æŒ”æ‹ºæŒ•æ‹»æ‹°æ•æ•ƒæ–ªæ–¿æ˜¶æ˜¡æ˜²æ˜µæ˜œæ˜¦æ˜¢æ˜³æ˜«æ˜ºæ˜æ˜´æ˜¹æ˜®æœæœæŸæŸ²æŸˆæžº\"],[\"cf40\",\"æŸœæž»æŸ¸æŸ˜æŸ€æž·æŸ…æŸ«æŸ¤æŸŸæžµæŸæž³æŸ·æŸ¶æŸ®æŸ£æŸ‚æž¹æŸŽæŸ§æŸ°æž²æŸ¼æŸ†æŸæŸŒæž®æŸ¦æŸ›æŸºæŸ‰æŸŠæŸƒæŸªæŸ‹æ¬¨æ®‚æ®„æ®¶æ¯–æ¯˜æ¯ æ° æ°¡æ´¨æ´´æ´æ´Ÿæ´¼æ´¿æ´’æ´Šæ³šæ´³æ´„æ´™æ´ºæ´šæ´‘æ´€æ´æµ‚\"],[\"cfa1\",\"æ´æ´˜æ´·æ´ƒæ´æµ€æ´‡æ´ 洬洈洢洉æ´ç‚·ç‚Ÿç‚¾ç‚±ç‚°ç‚¡ç‚´ç‚µç‚©ç‰ç‰‰ç‰Šç‰¬ç‰°ç‰³ç‰®ç‹Šç‹¤ç‹¨ç‹«ç‹Ÿç‹ªç‹¦ç‹£çŽ…çŒç‚çˆç…玹玶玵玴ç«çŽ¿ç‡ç޾çƒç†çޏç‹ç“¬ç“®ç”®ç•‡ç•ˆç–§ç–ªç™¹ç›„çœˆçœƒçœ„çœ…çœŠç›·ç›»ç›ºçŸ§çŸ¨ç †ç ‘ç ’ç …ç ç ç Žç ‰ç ƒç “ç¥Šç¥Œç¥‹ç¥…ç¥„ç§•ç§ç§ç§–秎窀\"],[\"d040\",\"穾竑笀ç¬ç±ºç±¸ç±¹ç±¿ç²€ç²ç´ƒç´ˆç´ç½˜ç¾‘ç¾ç¾¾è€‡è€Žè€è€”è€·èƒ˜èƒ‡èƒ èƒ‘èƒˆèƒ‚èƒèƒ…胣胙胜胊胕胉èƒèƒ—胦èƒè‡¿èˆ¡èŠ”è‹™è‹¾è‹¹èŒ‡è‹¨èŒ€è‹•èŒºè‹«è‹–è‹´è‹¬è‹¡è‹²è‹µèŒŒè‹»è‹¶è‹°è‹ª\"],[\"d0a1\",\"è‹¤è‹ è‹ºè‹³è‹è™·è™´è™¼è™³è¡è¡Žè¡§è¡ªè¡©è§“è¨„è¨‡èµ²è¿£è¿¡è¿®è¿ éƒ±é‚½é‚¿éƒ•éƒ…é‚¾éƒ‡éƒ‹éƒˆé‡”é‡“é™”é™é™‘é™“é™Šé™Žå€žå€…å€‡å€“å€¢å€°å€›ä¿µä¿´å€³å€·å€¬ä¿¶ä¿·å€—å€œå€ å€§å€µå€¯å€±å€Žå…šå†”å†“å‡Šå‡„å‡…å‡ˆå‡Žå‰¡å‰šå‰’å‰žå‰Ÿå‰•å‰¢å‹åŒŽåŽžå”¦å“¢å”—å”’å“§å“³å“¤å”šå“¿å”„å”ˆå“«å”‘å”…å“±\"],[\"d140\",\"å”Šå“»å“·å“¸å“ å”Žå”ƒå”‹åœåœ‚åŸŒå ²åŸ•åŸ’åžºåŸ†åž½åž¼åž¸åž¶åž¿åŸ‡åŸåž¹åŸå¤Žå¥Šå¨™å¨–å¨å¨®å¨•å¨å¨—娊娞娳å¬å®§å®å®¬å°ƒå±–å±”å³¬å³¿å³®å³±å³·å´€å³¹å¸©å¸¨åº¨åº®åºªåº¬å¼³å¼°å½§ææšæ§\"],[\"d1a1\",\"ææ‚¢æ‚ˆæ‚€æ‚’æ‚æ‚æ‚ƒæ‚•æ‚›æ‚—æ‚‡æ‚œæ‚Žæˆ™æ‰†æ‹²æŒæ–æŒ¬æ„æ…æŒ¶æƒæ¤æŒ¹æ‹æŠæŒ¼æŒ©ææŒ´æ˜æ”æ™æŒæ‡æŒ³æšæ‘æŒ¸æ—æ€æˆæ•Šæ•†æ—†æ—ƒæ—„æ—‚æ™Šæ™Ÿæ™‡æ™‘æœ’æœ“æ Ÿæ šæ¡‰æ ²æ ³æ »æ¡‹æ¡æ –æ ±æ œæ µæ «æ æ ¯æ¡Žæ¡„æ ´æ æ ’æ ”æ ¦æ ¨æ ®æ¡æ ºæ ¥æ æ¬¬æ¬¯æ¬æ¬±æ¬´æè‚‚殈毦毤\"],[\"d240\",\"æ¯¨æ¯£æ¯¢æ¯§æ°¥æµºæµ£æµ¤æµ¶æ´æµ¡æ¶’æµ˜æµ¢æµæµ¯æ¶‘æ¶æ·¯æµ¿æ¶†æµžæµ§æµ 涗浰浼浟涂涘洯浨涋浾涀涄洖涃浻浽浵æ¶çƒœçƒ“烑çƒçƒ‹ç¼¹çƒ¢çƒ—çƒ’çƒžçƒ çƒ”çƒçƒ…烆烇烚烎烡牂牸\"],[\"d2a1\",\"牷牶猀狺狴狾狶狳狻çŒç“ç™ç¥ç–玼ç§ç£ç©çœç’ç›ç”ççšç—ç˜ç¨ç“žç“Ÿç“´ç“µç”¡ç•›ç•Ÿç–°ç—疻痄痀疿疶疺皊盉çœçœ›çœçœ“çœ’çœ£çœ‘çœ•çœ™çœšçœ¢çœ§ç £ç ¬ç ¢ç µç ¯ç ¨ç ®ç «ç ¡ç ©ç ³ç ªç ±ç¥”ç¥›ç¥ç¥œç¥“ç¥’ç¥‘ç§«ç§¬ç§ ç§®ç§ç§ªç§œç§žç§çª†çª‰çª…窋窌窊窇竘ç¬\"],[\"d340\",\"笄笓笅ç¬ç¬ˆç¬Šç¬Žç¬‰ç¬’粄粑粊粌粈ç²ç²…ç´žç´ç´‘紎紘紖紓紟紒ç´ç´Œç½œç½¡ç½žç½ ç½ç½›ç¾–羒翃翂翀耖耾耹胺胲胹胵è„胻脀èˆèˆ¯èˆ¥èŒ³èŒè„茙è‘茥è–茿è茦茜茢\"],[\"d3a1\",\"è‚èŽèŒ›èŒªèŒˆèŒ¼èèŒ–èŒ¤èŒ èŒ·èŒ¯èŒ©è‡è…èŒè“茞茬è‹èŒ§èˆè™“虒蚢蚨蚖èšèš‘蚞蚇蚗蚆蚋蚚蚅蚥蚙蚡蚧蚕蚘蚎èšèšèš”衃衄è¡è¡µè¡¶è¡²è¢€è¡±è¡¿è¡¯è¢ƒè¡¾è¡´è¡¼è¨’è±‡è±—è±»è²¤è²£èµ¶èµ¸è¶µè¶·è¶¶è»‘è»“è¿¾è¿µé€‚è¿¿è¿»é€„è¿¼è¿¶éƒ–éƒ éƒ™éƒšéƒ£éƒŸéƒ¥éƒ˜éƒ›éƒ—éƒœéƒ¤é…\"],[\"d440\",\"é…Žé…釕釢釚陜陟隼飣髟鬯乿å°åªå¡åžå å“å‹åå²åˆååå›åŠå¢å€•å…åŸå©å«å£å¤å†å€å®å³å—å‘å‡å‰«å‰å‰¬å‰®å‹–å‹“åŒåŽœå•µå•¶å”¼å•å•唴唪啑啢唶唵唰啒啅\"],[\"d4a1\",\"唌唲啥啎唹啈å”å”»å•€å•‹åœŠåœ‡åŸ»å ”åŸ¢åŸ¶åŸœåŸ´å €åŸåŸ½å ˆåŸ¸å ‹åŸ³åŸå ‡åŸ®åŸ£åŸ²åŸ¥åŸ¬åŸ¡å ŽåŸ¼å 埧å å ŒåŸ±åŸ©åŸ°å å „å¥œå© å©˜å©•å©§å©žå¨¸å¨µå©å©å©Ÿå©¥å©¬å©“婤婗婃å©å©’婄婛婈媎娾å©å¨¹å©Œå©°å©©å©‡å©‘婖婂婜å²å®å¯å¯€å±™å´žå´‹å´å´šå´ 崌崨å´å´¦å´¥å´\"],[\"d540\",\"å´°å´’å´£å´Ÿå´®å¸¾å¸´åº±åº´åº¹åº²åº³å¼¶å¼¸å¾›å¾–å¾Ÿæ‚Šæ‚æ‚†æ‚¾æ‚°æ‚ºæƒ“æƒ”æƒæƒ¤æƒ™æƒæƒˆæ‚±æƒ›æ‚·æƒŠæ‚¿æƒƒæƒæƒ€æŒ²æ¥æŽŠæŽ‚æ½æŽ½æŽžæŽæŽæŽ—æŽ«æŽŽæ¯æŽ‡æŽæ®æŽ¯æµæŽœææŽ®æ¼æŽ¤æŒ»æŽŸ\"],[\"d5a1\",\"æ¸æŽ…æŽæŽ‘æŽæ°æ•“æ—æ™¥æ™¡æ™›æ™™æ™œæ™¢æœ˜æ¡¹æ¢‡æ¢æ¢œæ¡æ¡®æ¢®æ¢«æ¥–æ¡¯æ¢£æ¢¬æ¢©æ¡µæ¡´æ¢²æ¢æ¡·æ¢’æ¡¼æ¡«æ¡²æ¢ªæ¢€æ¡±æ¡¾æ¢›æ¢–æ¢‹æ¢ æ¢‰æ¢¤æ¡¸æ¡»æ¢‘æ¢Œæ¢Šæ¡½æ¬¶æ¬³æ¬·æ¬¸æ®‘æ®æ®æ®Žæ®Œæ°ªæ·€æ¶«æ¶´æ¶³æ¹´æ¶¬æ·©æ·¢æ¶·æ·¶æ·”æ¸€æ·ˆæ· æ·Ÿæ·–æ¶¾æ·¥æ·œæ·æ·›æ·´æ·Šæ¶½æ·æ·°æ¶ºæ·•æ·‚æ·æ·‰\"],[\"d640\",\"æ·æ·²æ·“æ·½æ·—æ·æ·£æ¶»çƒºç„烷焗烴焌烰焄烳ç„烼烿焆焓焀烸烶焋焂焎牾牻牼牿çŒçŒ—猇猑猘猊猈狿çŒçŒžçŽˆç¶ç¸çµç„çç½ç‡ç€çºç¼ç¿çŒç‹ç´çˆç•¤ç•£ç—Žç—’ç—\"],[\"d6a1\",\"痋痌痑ç—çšçš‰ç›“眹眯çœçœ±çœ²çœ´çœ³çœ½çœ¥çœ»çœµç¡ˆç¡’硉ç¡ç¡Šç¡Œç ¦ç¡…ç¡ç¥¤ç¥§ç¥©ç¥ªç¥£ç¥«ç¥¡ç¦»ç§ºç§¸ç§¶ç§·çªçª”çªç¬µç‡ç¬´ç¬¥ç¬°ç¬¢ç¬¤ç¬³ç¬˜ç¬ªç¬ç¬±ç¬«ç¬ç¬¯ç¬²ç¬¸ç¬šç¬£ç²”粘粖粣紵紽紸紶紺絅紬紩çµçµ‡ç´¾ç´¿çµŠç´»ç´¨ç½£ç¾•羜ç¾ç¾›ç¿Šç¿‹ç¿ç¿ç¿‘翇ç¿ç¿‰è€Ÿ\"],[\"d740\",\"耞耛è‡èƒèˆè„˜è„¥è„™è„›è„脟脬脞脡脕脧è„脢舑舸舳舺舴舲艴èŽèŽ£èŽ¨èŽèºè³èޤè´èŽèŽèŽ•èŽ™èµèŽ”èŽ©è½èŽƒèŽŒèŽèŽ›èŽªèŽ‹è¾èŽ¥èŽ¯èŽˆèŽ—èŽ°è¿èŽ¦èŽ‡èŽ®è¶èŽšè™™è™–èš¿èš·\"],[\"d7a1\",\"蛂è›è›…蚺蚰蛈蚹蚳蚸蛌蚴蚻蚼蛃蚽蚾衒袉袕袨袢袪袚袑袡袟袘袧袙袛袗袤袬袌袓袎覂觖觙觕訰訧訬訞谹谻豜è±è±½è²¥èµ½èµ»èµ¹è¶¼è·‚趹趿è·è»˜è»žè»è»œè»—è» è»¡é€¤é€‹é€‘é€œé€Œé€¡éƒ¯éƒªéƒ°éƒ´éƒ²éƒ³éƒ”éƒ«éƒ¬éƒ©é…–é…˜é…šé…“é…•é‡¬é‡´é‡±é‡³é‡¸é‡¤é‡¹é‡ª\"],[\"d840\",\"釫釷釨釮镺閆閈陼é™é™«é™±é™¯éš¿éªé „飥馗傛傕傔傞傋傣傃傌傎å‚å¨å‚œå‚’傂傇兟凔匒匑厤厧喑喨喥å–啷噅喢喓喈å–å–µå–å–£å–’å–¤å•½å–Œå–¦å•¿å–•å–¡å–ŽåœŒå ©å ·\"],[\"d8a1\",\"å ™å žå §å £å ¨åŸµå¡ˆå ¥å œå ›å ³å ¿å ¶å ®å ¹å ¸å å ¬å »å¥¡åª¯åª”åªŸå©ºåª¢åªžå©¸åª¦å©¼åª¥åª¬åª•åª®å¨·åª„åªŠåª—åªƒåª‹åª©å©»å©½åªŒåªœåªåª“åªå¯ªå¯å¯‹å¯”寑寊寎尌尰崷嵃嵫åµåµ‹å´¿å´µåµ‘嵎嵕崳崺嵒崽崱嵙嵂崹嵉崸崼崲崶嵀嵅幄å¹å½˜å¾¦å¾¥å¾«æƒ‰æ‚¹æƒŒæƒ¢æƒŽæƒ„æ„”\"],[\"d940\",\"æƒ²æ„Šæ„–æ„…æƒµæ„“æƒ¸æƒ¼æƒ¾æƒæ„ƒæ„˜æ„æ„æƒ¿æ„„æ„‹æ‰ŠæŽ”æŽ±æŽ°æŽæ¥æ¨æ¯æƒæ’æ³æŠæ æ¶æ•æ²æµæ‘¡æŸæŽ¾ææœæ„æ˜æ“æ‚æ‡æŒæ‹æˆæ°æ—æ™æ”²æ•§æ•ªæ•¤æ•œæ•¨æ•¥æ–Œæ–æ–žæ–®æ—æ—’\"],[\"d9a1\",\"æ™¼æ™¬æ™»æš€æ™±æ™¹æ™ªæ™²æœæ¤Œæ£“æ¤„æ£œæ¤ªæ£¬æ£ªæ£±æ¤æ£–æ£·æ£«æ£¤æ£¶æ¤“æ¤æ£³æ£¡æ¤‡æ£Œæ¤ˆæ¥°æ¢´æ¤‘æ£¯æ£†æ¤”æ£¸æ£æ£½æ£¼æ£¨æ¤‹æ¤Šæ¤—æ£Žæ£ˆæ£æ£žæ£¦æ£´æ£‘æ¤†æ£”æ£©æ¤•æ¤¥æ£‡æ¬¹æ¬»æ¬¿æ¬¼æ®”æ®—æ®™æ®•æ®½æ¯°æ¯²æ¯³æ°°æ·¼æ¹†æ¹‡æ¸Ÿæ¹‰æºˆæ¸¼æ¸½æ¹…æ¹¢æ¸«æ¸¿æ¹æ¹æ¹³æ¸œæ¸³æ¹‹æ¹€æ¹‘渻渃渮湞\"],[\"da40\",\"æ¹¨æ¹œæ¹¡æ¸±æ¸¨æ¹ æ¹±æ¹«æ¸¹æ¸¢æ¸°æ¹“æ¹¥æ¸§æ¹¸æ¹¤æ¹·æ¹•æ¹¹æ¹’æ¹¦æ¸µæ¸¶æ¹šç„ ç„žç„¯çƒ»ç„®ç„±ç„£ç„¥ç„¢ç„²ç„Ÿç„¨ç„ºç„›ç‰‹ç‰šçŠˆçŠ‰çŠ†çŠ…çŠ‹çŒ’çŒ‹çŒ°çŒ¢çŒ±çŒ³çŒ§çŒ²çŒçŒ¦çŒ£çŒµçŒŒç®ç¬ç°ç«ç–\"],[\"daa1\",\"çšç¡çç±ç¤ç£çç©ç ç²ç“»ç”¯ç•¯ç•¬ç—§ç—šç—¡ç—¦ç—痟痤痗皕皒盚ç†ç‡ç„çç…çŠçŽç‹çŒçŸžçŸ¬ç¡ 硤硥硜ç¡ç¡±ç¡ªç¡®ç¡°ç¡©ç¡¨ç¡žç¡¢ç¥´ç¥³ç¥²ç¥°ç¨‚稊稃稌稄窙竦竤çŠç¬»ç„çˆçŒçŽç€ç˜ç…粢粞粨粡絘絯絣絓絖絧絪çµçµçµœçµ«çµ’絔絩絑絟絎缾缿罥\"],[\"db40\",\"ç½¦ç¾¢ç¾ ç¾¡ç¿—è‘èè胾胔腃腊腒è…腇脽è…脺臦臮臷臸臹舄舼舽舿艵茻èè¹è£è€è¨è’è§è¤è¼è¶èè†èˆè«è£èŽ¿èèè¥è˜è¿è¡è‹èŽè–èµè‰è‰èèžè‘è†è‚è³\"],[\"dba1\",\"è•èºè‡è‘èªè“èƒè¬è®è„è»è—è¢è›è›è¾è›˜è›¢è›¦è›“蛣蛚蛪è›è›«è›œè›¬è›©è›—蛨蛑衈衖衕袺裗袹袸裀袾袶袼袷袽袲è¤è£‰è¦•覘覗è§è§šè§›è©Žè©è¨¹è©™è©€è©—詘詄詅詒詈詑詊詌è©è±Ÿè²è²€è²ºè²¾è²°è²¹è²µè¶„趀趉跘跓è·è·‡è·–è·œè·è·•跙跈跗跅軯軷軺\"],[\"dc40\",\"軹軦軮軥軵軧軨軶軫軱軬軴軩é€é€´é€¯é„†é„¬é„„郿郼鄈郹郻é„é„€é„‡é„…é„ƒé…¡é…¤é…Ÿé…¢é… éˆéˆŠéˆ¥éˆƒéˆšéˆ¦éˆéˆŒéˆ€éˆ’釿釽鈆鈄鈧鈂鈜鈤鈙鈗鈅鈖镻é–é–Œé–隇陾隈\"],[\"dca1\",\"隉隃隀雂雈雃雱雰é¬é°é®é ‡é¢©é£«é³¦é»¹äºƒäº„亶傽傿僆傮僄僊傴僈僂傰åƒå‚ºå‚±åƒ‹åƒ‰å‚¶å‚¸å‡—剺剸剻剼嗃嗛嗌å—å—‹å—Šå—嗀嗔嗄嗩喿嗒å–å—嗕嗢嗖嗈嗲å—嗙嗂圔塓塨塤å¡å¡å¡‰å¡¯å¡•塎å¡å¡™å¡¥å¡›å ½å¡£å¡±å£¼å«‡å«„嫋媺媸媱媵媰媿嫈媻嫆\"],[\"dd40\",\"媷嫀嫊媴媶å«åª¹åªå¯–寘寙尟尳嵱嵣嵊嵥嵲嵬嵞嵨嵧嵢巰å¹å¹Žå¹Šå¹å¹‹å»…å»Œå»†å»‹å»‡å½€å¾¯å¾æƒ·æ…‰æ…Šæ„«æ……æ„¶æ„²æ„®æ…†æ„¯æ…æ„©æ…€æˆ é…¨æˆ£æˆ¥æˆ¤æ…æ±æ«ææ’æ‰æ æ¤\"],[\"dda1\",\"æ³æ‘ƒæŸæ•æ˜æ¹æ·æ¢æ£æŒæ¦æ°æ¨æ‘æµæ¯æŠæšæ‘€æ¥æ§æ‹æ§æ›æ®æ¡æŽæ•¯æ–’æ—“æš†æšŒæš•æšæš‹æšŠæš™æš”æ™¸æœ æ¥¦æ¥Ÿæ¤¸æ¥Žæ¥¢æ¥±æ¤¿æ¥…æ¥ªæ¤¹æ¥‚æ¥—æ¥™æ¥ºæ¥ˆæ¥‰æ¤µæ¥¬æ¤³æ¤½æ¥¥æ£°æ¥¸æ¤´æ¥©æ¥€æ¥¯æ¥„æ¥¶æ¥˜æ¥æ¥´æ¥Œæ¤»æ¥‹æ¤·æ¥œæ¥æ¥‘æ¤²æ¥’æ¤¯æ¥»æ¤¼æ†æ…æƒæ‚æˆææ®›ï¨æ¯»æ¯¼\"],[\"de40\",\"æ¯¹æ¯·æ¯¸æº›æ»–æ»ˆæºæ»€æºŸæº“æº”æº æº±æº¹æ»†æ»’æº½æ»æºžæ»‰æº·æº°æ»æº¦æ»æº²æº¾æ»ƒæ»œæ»˜æº™æº’æºŽæºæº¤æº¡æº¿æº³æ»æ»Šæº—æº®æº£ç…‡ç…”ç…’ç…£ç… ç…ç…煢煲煸煪煡煂煘煃煋煰煟ç…ç…“\"],[\"dea1\",\"ç…„ç…ç…šç‰çŠçŠŒçŠ‘çŠçŠŽçŒ¼ç‚猻猺ç€çŠç‰ç‘„瑊瑋瑒瑑瑗瑀ç‘ç‘瑎瑂瑆ç‘瑔瓡瓿瓾瓽ç”畹畷榃痯ç˜ç˜ƒç—·ç—¾ç—¼ç—¹ç—¸ç˜ç—»ç—¶ç—痵痽皙皵ç›ç•çŸç ç’ç–çšç©ç§ç”ç™ççŸ ç¢‡ç¢šç¢”ç¢ç¢„碕碅碆碡碃硹碙碀碖硻祼禂祽祹稑稘稙稒稗稕稢稓\"],[\"df40\",\"稛ç¨çª£çª¢çªžç««ç¦ç¤çç´ç©ç²ç¥ç³ç±ç°ç¡ç¸ç¶ç£ç²²ç²´ç²¯ç¶ˆç¶†ç¶€ç¶çµ¿ç¶…絺綎絻綃絼綌綔綄絽綒ç½ç½«ç½§ç½¨ç½¬ç¾¦ç¾¥ç¾§ç¿›ç¿œè€¡è…¤è… 腷腜腩腛腢腲朡腞腶腧腯\"],[\"dfa1\",\"è…„è…¡èˆè‰‰è‰„艀艂艅蓱è¿è‘–葶葹è’è’葥葑葀蒆葧è°è‘葽葚葙葴葳è‘蔇葞è·èºè´è‘ºè‘ƒè‘¸è²è‘…è©è™è‘‹è¯è‘‚è葟葰è¹è‘Žè‘Œè‘’葯蓅蒎è»è‘‡è¶è³è‘¨è‘¾è‘„è«è‘ 葔葮è‘蜋蜄蛷蜌蛺蛖蛵è蛸蜎蜉èœè›¶èœèœ…裖裋è£è£Žè£žè£›è£šè£Œè£è¦…覛觟觥觤\"],[\"e040\",\"è§¡è§ è§¢è§œè§¦è©¶èª†è©¿è©¡è¨¿è©·èª‚èª„è©µèªƒèªè©´è©ºè°¼è±‹è±Šè±¥è±¤è±¦è²†è²„貅賌赨赩趑趌趎è¶è¶è¶“è¶”è¶è¶’è·°è· è·¬è·±è·®è·è·©è·£è·¢è·§è·²è·«è·´è¼†è»¿è¼è¼€è¼…輇輈輂輋é’逿\"],[\"e0a1\",\"é„é‰é€½é„é„é„鄑鄖鄔鄋鄎酮酯鉈鉒鈰鈺鉦鈳鉥鉞銃鈮鉊鉆é‰é‰¬é‰é‰ 鉧鉯鈶鉡鉰鈱鉔鉣é‰é‰²é‰Žé‰“鉌鉖鈲閟閜閞閛隒隓隑隗雎雺雽雸雵é³é·é¸é²é é é Žé¢¬é£¶é£¹é¦¯é¦²é¦°é¦µéªéª«é›é³ªé³é³§éº€é»½åƒ¦åƒ”僗僨僳僛僪åƒåƒ¤åƒ“åƒ¬åƒ°åƒ¯åƒ£åƒ \"],[\"e140\",\"凘劀åŠå‹©å‹«åŒ°åŽ¬å˜§å˜•å˜Œå˜’å—¼å˜å˜œå˜å˜“嘂嗺å˜å˜„嗿嗹墉塼å¢å¢˜å¢†å¢å¡¿å¡´å¢‹å¡ºå¢‡å¢‘墎塶墂墈塻墔å¢å£¾å¥«å«œå«®å«¥å«•嫪嫚å«å««å«³å«¢å« 嫛嫬嫞å«å«™å«¨å«Ÿå·å¯ \"],[\"e1a1\",\"寣屣嶂嶀嵽嶆嵺å¶åµ·å¶Šå¶‰å¶ˆåµ¾åµ¼å¶åµ¹åµ¿å¹˜å¹™å¹“å»˜å»‘å»—å»Žå»œå»•å»™å»’å»”å½„å½ƒå½¯å¾¶æ„¬æ„¨æ…æ…žæ…±æ…³æ…’æ…“æ…²æ…¬æ†€æ…´æ…”æ…ºæ…›æ…¥æ„»æ…ªæ…¡æ…–æˆ©æˆ§æˆ«æ«æ‘æ‘›æ‘æ‘´æ‘¶æ‘²æ‘³æ‘½æ‘µæ‘¦æ’¦æ‘Žæ’‚æ‘žæ‘œæ‘‹æ‘“æ‘ æ‘æ‘¿æ¿æ‘¬æ‘«æ‘™æ‘¥æ‘·æ•³æ– æš¡æš æšŸæœ…æœ„æœ¢æ¦±æ¦¶æ§‰\"],[\"e240\",\"æ¦ æ§Žæ¦–æ¦°æ¦¬æ¦¼æ¦‘æ¦™æ¦Žæ¦§æ¦æ¦©æ¦¾æ¦¯æ¦¿æ§„æ¦½æ¦¤æ§”æ¦¹æ§Šæ¦šæ§æ¦³æ¦“æ¦ªæ¦¡æ¦žæ§™æ¦—æ¦æ§‚æ¦µæ¦¥æ§†æŠææ‹æ®žæ®Ÿæ® æ¯ƒæ¯„æ¯¾æ»Žæ»µæ»±æ¼ƒæ¼¥æ»¸æ¼·æ»»æ¼®æ¼‰æ½Žæ¼™æ¼šæ¼§æ¼˜æ¼»æ¼’æ»æ¼Š\"],[\"e2a1\",\"æ¼¶æ½³æ»¹æ»®æ¼æ½€æ¼°æ¼¼æ¼µæ»«æ¼‡æ¼Žæ½ƒæ¼…æ»½æ»¶æ¼¹æ¼œæ»¼æ¼ºæ¼Ÿæ¼æ¼žæ¼ˆæ¼¡ç†‡ç†ç†‰ç†€ç†…熂ç†ç…»ç††ç†ç†—牄牓犗犕犓çƒçç‘çŒç‘¢ç‘³ç‘±ç‘µç‘²ç‘§ç‘®ç”€ç”‚甃畽ç–瘖瘈瘌瘕瘑瘊瘔皸çžç¼çž…çž‚ç®çž€ç¯ç¾çžƒç¢²ç¢ªç¢´ç¢ç¢¨ç¡¾ç¢«ç¢žç¢¥ç¢ 碬碢碤禘禊禋禖禕禔禓\"],[\"e340\",\"禗禈禒ç¦ç¨«ç©Šç¨°ç¨¯ç¨¨ç¨¦çª¨çª«çª¬ç«®ç®ˆç®œç®Šç®‘ç®ç®–ç®ç®Œç®›ç®Žç®…箘劄箙箤箂粻粿粼粺綧綷緂綣綪ç·ç·€ç·…ç¶ç·Žç·„緆緋緌綯綹綖綼綟綦綮綩綡緉罳翢翣翥翞\"],[\"e3a1\",\"耤èèœè†‰è††è†ƒè†‡è†è†Œè†‹èˆ•蒗蒤蒡蒟蒺蓎蓂蒬蒮蒫蒹蒴è“è“蒪蒚蒱è“è’蒧蒻蒢蒔蓇蓌蒛蒩蒯蒨蓖蒘蒶è“è’ è“—è“”è“’è“›è’°è’‘è™¡èœ³èœ£èœ¨è«è€èœ®èœžèœ¡èœ™èœ›èƒèœ¬è蜾è†èœ 蜲蜪èœèœ¼èœ’蜺蜱蜵è‚蜦蜧蜸蜤蜚蜰蜑裷裧裱裲裺裾裮裼裶裻\"],[\"e440\",\"裰裬裫è¦è¦¡è¦Ÿè¦žè§©è§«è§¨èª«èª™èª‹èª’èªèª–谽豨豩賕è³è³—趖踉踂跿è¸è·½è¸Šè¸ƒè¸‡è¸†è¸…跾踀踄è¼è¼‘輎è¼é„£é„œé„ 鄢鄟é„é„šé„¤é„¡é„›é…ºé…²é…¹é…³éŠ¥éŠ¤é‰¶éŠ›é‰ºéŠ éŠ”éŠªéŠ\"],[\"e4a1\",\"銦銚銫鉹銗鉿銣鋮銎銂銕銢鉽銈銡銊銆銌銙銧鉾銇銩éŠéŠ‹éˆéšžéš¡é›¿é˜é½éºé¾éžƒéž€éž‚é»éž„éžé¿éŸŽéŸé –é¢é¢®é¤‚餀餇é¦é¦œé§ƒé¦¹é¦»é¦ºé§‚馽駇骱髣髧鬾鬿é é¡éŸé³±é³²é³µéº§åƒ¿å„ƒå„°åƒ¸å„†å„‡åƒ¶åƒ¾å„‹å„Œåƒ½å„ŠåŠ‹åŠŒå‹±å‹¯å™ˆå™‚å™Œå˜µå™å™Šå™‰å™†å™˜\"],[\"e540\",\"噚噀嘳嘽嘬嘾嘸嘪嘺圚墫å¢å¢±å¢ 墣墯墬墥墡壿嫿嫴嫽嫷嫶嬃嫸嬂嫹å¬å¬‡å¬…å¬å±§å¶™å¶—å¶Ÿå¶’å¶¢å¶“å¶•å¶ å¶œå¶¡å¶šå¶žå¹©å¹å¹ 幜緳廛廞廡彉徲憋憃慹憱憰憢憉\"],[\"e5a1\",\"æ†›æ†“æ†¯æ†æ†Ÿæ†’æ†ªæ†¡æ†æ…¦æ†³æˆæ‘®æ‘°æ’–æ’ æ’…æ’—æ’œæ’æ’‹æ’Šæ’Œæ’£æ’Ÿæ‘¨æ’±æ’˜æ•¶æ•ºæ•¹æ•»æ–²æ–³æšµæš°æš©æš²æš·æšªæš¯æ¨€æ¨†æ¨—æ§¥æ§¸æ¨•æ§±æ§¤æ¨ æ§¿æ§¬æ§¢æ¨›æ¨æ§¾æ¨§æ§²æ§®æ¨”æ§·æ§§æ©€æ¨ˆæ§¦æ§»æ¨æ§¼æ§«æ¨‰æ¨„æ¨˜æ¨¥æ¨æ§¶æ¨¦æ¨‡æ§´æ¨–æ‘æ®¥æ®£æ®¢æ®¦æ°æ°€æ¯¿æ°‚æ½æ¼¦æ½¾æ¾‡æ¿†æ¾’\"],[\"e640\",\"æ¾æ¾‰æ¾Œæ½¢æ½æ¾…æ½šæ¾–æ½¶æ½¬æ¾‚æ½•æ½²æ½’æ½æ½—æ¾”æ¾“æ½æ¼€æ½¡æ½«æ½½æ½§æ¾æ½“æ¾‹æ½©æ½¿æ¾•æ½£æ½·æ½ªæ½»ç†²ç†¯ç†›ç†°ç† ç†šç†©ç†µç†ç†¥ç†žç†¤ç†¡ç†ªç†œç†§ç†³çŠ˜çŠšç˜ç’çžçŸç çç›ç¡çšç™\"],[\"e6a1\",\"ç¢ç’‡ç’‰ç’Šç’†ç’瑽璅璈瑼瑹甈甇畾瘥瘞瘙ç˜ç˜œç˜£ç˜šç˜¨ç˜›çšœçšçšžçš›çžçžçž‰çžˆç£ç¢»ç£ç£Œç£‘ç£Žç£”ç£ˆç£ƒç£„ç£‰ç¦šç¦¡ç¦ ç¦œç¦¢ç¦›æ¶ç¨¹çª²çª´çª³ç®·ç¯‹ç®¾ç®¬ç¯Žç®¯ç®¹ç¯Šç®µç³…糈糌糋緷緛緪緧緗緡縃緺緦緶緱緰緮緟罶羬羰ç¾ç¿ç¿«ç¿ªç¿¬ç¿¦ç¿¨è¤è§è†£è†Ÿ\"],[\"e740\",\"膞膕膢膙膗舖è‰è‰“艒è‰è‰Žè‰‘蔤蔻è”蔀蔩蔎蔉è”蔟蔊蔧蔜蓻蔫蓺蔈蔌蓴蔪蓲蔕蓷蓫蓳蓼蔒蓪蓩蔖蓾蔨è”è”®è”‚è“½è”žè“¶è”±è”¦è“§è“¨è“°è“¯è“¹è”˜è” è”°è”‹è”™è”¯è™¢\"],[\"e7a1\",\"è–è£è¤è·èŸ¡è³è˜è”è›è’è¡èšè‘èžèèªèèŽèŸèè¯è¬èºè®èœè¥èè»èµè¢è§è©è¡šè¤…褌褔褋褗褘褙褆褖褑褎褉覢覤覣è§è§°è§¬è«è«†èª¸è«“諑諔諕誻諗誾諀諅諘諃誺誽諙谾è±è²è³¥è³Ÿè³™è³¨è³šè³è³§è¶ è¶œè¶¡è¶›è¸ è¸£è¸¥è¸¤è¸®è¸•è¸›è¸–è¸‘è¸™è¸¦è¸§\"],[\"e840\",\"è¸”è¸’è¸˜è¸“è¸œè¸—è¸šè¼¬è¼¤è¼˜è¼šè¼ è¼£è¼–è¼—é³é°é¯é§é«é„¯é„«é„©é„ªé„²é„¦é„®é†…醆醊é†é†‚醄醀é‹é‹ƒé‹„鋀鋙銶é‹é‹±é‹Ÿé‹˜é‹©é‹—é‹é‹Œé‹¯é‹‚鋨鋊鋈鋎鋦é‹é‹•é‹‰é‹ é‹žé‹§é‹‘é‹“\"],[\"e8a1\",\"銵鋡鋆銴镼閬閫閮閰隤隢雓霅霈霂éšéžŠéžŽéžˆéŸéŸé žé é ¦é ©é ¨é é ›é §é¢²é¤ˆé£ºé¤‘é¤”é¤–é¤—é¤•é§œé§é§é§“駔駎駉駖駘駋駗駌骳髬髫髳髲髱é†éƒé§é´é±é¦é¶éµé°é¨é¤é¬é³¼é³ºé³½é³¿é³·é´‡é´€é³¹é³»é´ˆé´…鴄麃黓é¼é¼å„œå„“儗儚儑凞匴å¡å™°å™ å™®\"],[\"e940\",\"噳噦噣å™å™²å™žå™·åœœåœ›å£ˆå¢½å£‰å¢¿å¢ºå£‚墼壆嬗嬙嬛嬡嬔嬓å¬å¬–å¬¨å¬šå¬ å¬žå¯¯å¶¬å¶±å¶©å¶§å¶µå¶°å¶®å¶ªå¶¨å¶²å¶å¶¯å¶´å¹§å¹¨å¹¦å¹¯å»©å»§å»¦å»¨å»¥å½‹å¾¼æ†æ†¨æ†–æ‡…æ†´æ‡†æ‡æ‡Œæ†º\"],[\"e9a1\",\"æ†¿æ†¸æ†Œæ“—æ“–æ“æ“æ“‰æ’½æ’‰æ“ƒæ“›æ“³æ“™æ”³æ•¿æ•¼æ–¢æ›ˆæš¾æ›€æ›Šæ›‹æ›æš½æš»æšºæ›Œæœ£æ¨´æ©¦æ©‰æ©§æ¨²æ©¨æ¨¾æ©æ©æ©¶æ©›æ©‘æ¨¨æ©šæ¨»æ¨¿æ©æ©ªæ©¤æ©æ©æ©”æ©¯æ©©æ© æ¨¼æ©žæ©–æ©•æ©æ©Žæ©†æ•æ”æ–æ®§æ®ªæ®«æ¯ˆæ¯‡æ°„æ°ƒæ°†æ¾æ¿‹æ¾£æ¿‡æ¾¼æ¿Žæ¿ˆæ½žæ¿„æ¾½æ¾žæ¿Šæ¾¨ç€„æ¾¥æ¾®æ¾ºæ¾¬æ¾ªæ¿æ¾¿æ¾¸\"],[\"ea40\",\"æ¾¢æ¿‰æ¾«æ¿æ¾¯æ¾²æ¾°ç‡…燂熿熸燖燀ç‡ç‡‹ç‡”燊燇ç‡ç†½ç‡˜ç†¼ç‡†ç‡šç‡›çŠçŠžç©ç¦ç§ç¬ç¥ç«çªç‘¿ç’šç’ 璔璒璕璡甋疀瘯ç˜ç˜±ç˜½ç˜³ç˜¼ç˜µç˜²ç˜°çš»ç›¦çžšçžçž¡çžœçž›çž¢çž£çž•çž™\"],[\"eaa1\",\"çž—ç£ç£©ç£¥ç£ªç£žç££ç£›ç£¡ç£¢ç£ç£Ÿç£ 禤穄穈穇窶窸窵窱窷篞篣篧ç¯ç¯•篥篚篨篹篔篪篢篜篫篘篟糒糔糗ç³ç³‘ç¸’ç¸¡ç¸—ç¸Œç¸Ÿç¸ ç¸“ç¸Žç¸œç¸•ç¸šç¸¢ç¸‹ç¸ç¸–ç¸ç¸”縥縤罃罻罼罺羱翯耪耩è¬è†±è†¦è†®è†¹è†µè†«è†°è†¬è†´è†²è†·è†§è‡²è‰•艖艗蕖蕅蕫è•蕓蕡蕘\"],[\"eb40\",\"蕀蕆蕤è•è•¢è•„è•‘è•‡è•£è”¾è•›è•±è•Žè•®è•µè••è•§è• è–Œè•¦è•蕔蕥蕬虣虥虤螛èžèž—螓螒螈èžèž–螘è¹èž‡èž£èž…èžèž‘èžèž„螔螜螚螉褞褦褰è¤è¤®è¤§è¤±è¤¢è¤©è¤£è¤¯è¤¬è¤Ÿè§±è« \"],[\"eba1\",\"諢諲諴諵è«è¬”諤諟諰諈諞諡諨諿諯諻貑貒è²è³µè³®è³±è³°è³³èµ¬èµ®è¶¥è¶§è¸³è¸¾è¸¸è¹€è¹…踶踼踽è¹è¸°è¸¿èº½è¼¶è¼®è¼µè¼²è¼¹è¼·è¼´é¶é¹é»é‚†éƒºé„³é„µé„¶é†“é†é†‘é†é†éŒ§éŒžéŒˆéŒŸéŒ†éŒéºéŒ¸éŒ¼éŒ›éŒ£éŒ’éŒé†éŒéŒŽéŒé‹‹éŒé‹ºéŒ¥éŒ“鋹鋷錴錂錤鋿錩錹錵錪錔錌\"],[\"ec40\",\"錋鋾錉錀鋻錖閼é—閾閹閺閶閿閵閽隩雔霋霒éœéž™éž—éž”éŸ°éŸ¸é µé ¯é ²é¤¤é¤Ÿé¤§é¤©é¦žé§®é§¬é§¥é§¤é§°é§£é§ªé§©é§§éª¹éª¿éª´éª»é«¶é«ºé«¹é«·é¬³é®€é®…é®‡é¼é¾é»é®‚鮓鮒é®éºé®•\"],[\"eca1\",\"é½é®ˆé´¥é´—é´ é´žé´”é´©é´é´˜é´¢é´é´™é´Ÿéºˆéº†éº‡éº®éºé»•é»–é»ºé¼’é¼½å„¦å„¥å„¢å„¤å„ å„©å‹´åš“åšŒåšåš†åš„嚃噾嚂噿åšå£–壔å£å£’å¬å¬¥å¬²å¬£å¬¬å¬§å¬¦å¬¯å¬®å»å¯±å¯²å¶·å¹¬å¹ªå¾¾å¾»æ‡ƒæ†µæ†¼æ‡§æ‡ æ‡¥æ‡¤æ‡¨æ‡žæ“¯æ“©æ“£æ“«æ“¤æ“¨æ–æ–€æ–¶æ—šæ›’æªæª–æªæª¥æª‰æªŸæª›æª¡æªžæª‡æª“檎\"],[\"ed40\",\"æª•æªƒæª¨æª¤æª‘æ©¿æª¦æªšæª…æªŒæª’æ›æ®æ°‰æ¿Œæ¾©æ¿´æ¿”æ¿£æ¿œæ¿æ¿§æ¿¦æ¿žæ¿²æ¿æ¿¢æ¿¨ç‡¡ç‡±ç‡¨ç‡²ç‡¤ç‡°ç‡¢ç³ç®ç¯ç’—璲璫ç’ç’ªç’璱璥璯ç”甑甒ç”疄癃癈癉癇皤盩瞵瞫瞲瞷瞶\"],[\"eda1\",\"瞴瞱瞨矰磳磽礂磻磼磲礅磹磾礄禫禨穜穛穖穘穔穚窾竀ç«ç°…ç°ç¯²ç°€ç¯¿ç¯»ç°Žç¯´ç°‹ç¯³ç°‚簉簃ç°ç¯¸ç¯½ç°†ç¯°ç¯±ç°ç°Šç³¨ç¸ç¸¼ç¹‚縳顈縸縪繉繀繇縩繌縰縻縶繄縺罅罿罾罽翴翲耬膻臄臌臊臅臇膼臩艛艚艜薃薀è–è–§è–•è– è–‹è–£è•»è–¤è–šè–ž\"],[\"ee40\",\"蕷蕼薉薡蕺蕸蕗薎薖薆è–è–™è–è–薢薂薈薅蕹蕶薘è–薟虨螾螪èžèŸ…螰螬螹螵螼螮蟉蟃蟂蟌螷螯蟄蟊螴螶螿螸螽蟞螲褵褳褼褾è¥è¥’褷襂è¦è¦¯è¦®è§²è§³è¬ž\"],[\"eea1\",\"謘謖謑謅謋謢è¬è¬’謕謇è¬è¬ˆè¬†è¬œè¬“謚è±è±°è±²è±±è±¯è²•貔賹赯蹎è¹è¹“è¹è¹Œè¹‡è½ƒè½€é‚…é¾é„¸é†šé†¢é†›é†™é†Ÿé†¡é†é† 鎡鎃鎯é¤é–é‡é¼é˜éœé¶é‰éé‘é ééŽéŒéªé¹é—é•é’éé±é·é»é¡éžé£é§éŽ€éŽé™é—‡é—€é—‰é—ƒé—…é–·éš®éš°éš¬éœ éœŸéœ˜éœéœ™éžšéž¡éžœ\"],[\"ef40\",\"éžžéžéŸ•韔韱é¡é¡„顊顉顅顃餥餫餬餪餳餲餯é¤é¤±é¤°é¦˜é¦£é¦¡é¨‚駺駴駷駹駸駶駻駽駾駼騃骾髾髽é¬é«¼éˆé®šé®¨é®žé®›é®¦é®¡é®¥é®¤é®†é®¢é® 鮯鴳éµéµ§é´¶é´®é´¯é´±é´¸é´°\"],[\"efa1\",\"鵅鵂鵃鴾鴷鵀鴽翵é´éºŠéº‰éºéº°é»ˆé»šé»»é»¿é¼¤é¼£é¼¢é½”é¾ å„±å„儮嚘嚜嚗嚚åšåš™å¥°å¬¼å±©å±ªå·€å¹å¹®æ‡˜æ‡Ÿæ‡æ‡®æ‡±æ‡ªæ‡°æ‡«æ‡–æ‡©æ“¿æ”„æ“½æ“¸æ”æ”ƒæ“¼æ–”æ—›æ›šæ››æ›˜æ«…æª¹æª½æ«¡æ«†æªºæª¶æª·æ«‡æª´æªæžæ¯‰æ°‹ç€‡ç€Œç€ç€ç€…瀔瀎濿瀀濻瀦濼濷瀊çˆç‡¿ç‡¹çˆƒç‡½ç¶\"],[\"f040\",\"璸瓀璵ç“璾璶璻瓂甔甓癜癤癙ç™ç™“癗癚皦皽盬矂瞺磿礌礓礔礉ç¤ç¤’礑ç¦ç¦¬ç©Ÿç°œç°©ç°™ç° ç°Ÿç°ç°ç°¦ç°¨ç°¢ç°¥ç°°ç¹œç¹ç¹–ç¹£ç¹˜ç¹¢ç¹Ÿç¹‘ç¹ ç¹—ç¹“ç¾µç¾³ç¿·ç¿¸èµè‡‘臒\"],[\"f0a1\",\"è‡è‰Ÿè‰žè–´è—†è—€è—ƒè—‚薳薵薽藇藄薿藋藎藈藅薱薶藒蘤薸薷薾虩蟧蟦蟢蟛蟫蟪蟥蟟蟳蟤蟔蟜蟓èŸèŸ˜èŸ£èž¤èŸ—蟙è 蟴蟨èŸè¥“襋è¥è¥Œè¥†è¥è¥‘襉謪謧謣謳謰謵è‡è¬¯è¬¼è¬¾è¬±è¬¥è¬·è¬¦è¬¶è¬®è¬¤è¬»è¬½è¬ºè±‚è±µè²™è²˜è²—è³¾è´„è´‚è´€è¹œè¹¢è¹ è¹—è¹–è¹žè¹¥è¹§\"],[\"f140\",\"蹛蹚蹡è¹è¹©è¹”轆轇轈轋鄨鄺鄻鄾醨醥醧醯醪鎵鎌鎒鎷鎛éŽéŽ‰éŽ§éŽŽéŽªéŽžéŽ¦éŽ•éŽˆéŽ™éŽŸéŽéŽ±éŽ‘éŽ²éŽ¤éŽ¨éŽ´éŽ£éŽ¥é—’é—“é—‘éš³é›—é›šå·‚é›Ÿé›˜é›éœ£éœ¢éœ¥éž¬éž®éž¨éž«éž¤éžª\"],[\"f1a1\",\"鞢鞥韗韙韖韘韺é¡é¡‘顒颸é¥é¤¼é¤ºé¨é¨‹é¨‰é¨é¨„騑騊騅騇騆髀髜鬈鬄鬅鬩鬵éŠéŒé‹é¯‡é¯†é¯ƒé®¿é¯é®µé®¸é¯“鮶鯄鮹鮽鵜鵓éµéµŠéµ›éµ‹éµ™éµ–鵌鵗鵒鵔鵟鵘鵚麎麌黟é¼é¼€é¼–鼥鼫鼪鼩鼨齌齕儴儵劖勷厴嚫åšåš¦åš§åšªåš¬å£šå£å£›å¤’嬽嬾嬿巃幰\"],[\"f240\",\"å¾¿æ‡»æ”‡æ”æ”æ”‰æ”Œæ”Žæ–„æ—žæ—æ›žæ«§æ« æ«Œæ«‘æ«™æ«‹æ«Ÿæ«œæ«æ««æ«æ«æ«žæ æ®°æ°Œç€™ç€§ç€ ç€–ç€«ç€¡ç€¢ç€£ç€©ç€—ç€¤ç€œç€ªçˆŒçˆŠçˆ‡çˆ‚çˆ…çŠ¥çŠ¦çŠ¤çŠ£çŠ¡ç“‹ç“…ç’·ç“ƒç”–ç™ çŸ‰çŸŠçŸ„çŸ±ç¤ç¤›\"],[\"f2a1\",\"礡礜礗礞禰穧穨簳簼簹簬簻糬糪繶繵繸繰繷繯繺繲繴繨罋罊羃羆羷翽翾è¸è‡—臕艤艡艣藫藱è—è—™è—¡è—¨è—šè——è—¬è—²è—¸è—˜è—Ÿè—£è—œè—‘è—°è—¦è—¯è—žè—¢è €èŸºè ƒèŸ¶èŸ·è ‰è Œè ‹è †èŸ¼è ˆèŸ¿è Šè ‚è¥¢è¥šè¥›è¥—è¥¡è¥œè¥˜è¥è¥™è¦ˆè¦·è¦¶è§¶èèˆèŠè€è“è–è”è‹è•\"],[\"f340\",\"è‘è‚è’è—豃豷豶貚贆贇贉趬趪è¶è¶«è¹è¹¸è¹³è¹ªè¹¯è¹»è»‚轒轑è½è½è½“辴酀鄿醰é†éžé‡éé‚éšéé¹é¬éŒé™éŽ©é¦éŠé”é®é£é•é„éŽé€é’é§é•½é—šé—›é›¡éœ©éœ«éœ¬éœ¨éœ¦\"],[\"f3a1\",\"鞳鞷鞶éŸéŸžéŸŸé¡œé¡™é¡é¡—颿颽颻颾饈饇饃馦馧騚騕騥é¨é¨¤é¨›é¨¢é¨ é¨§é¨£é¨žé¨œé¨”é«‚é¬‹é¬Šé¬Žé¬Œé¬·é¯ªé¯«é¯ é¯žé¯¤é¯¦é¯¢é¯°é¯”é¯—é¯¬é¯œé¯™é¯¥é¯•é¯¡é¯šéµ·é¶é¶Šé¶„鶈鵱鶀鵸鶆鶋鶌鵽鵫鵴鵵鵰鵩鶅鵳鵻鶂鵯鵹鵿鶇鵨麔麑黀黼é¼é½€é½é½é½–齗齘匷嚲\"],[\"f440\",\"嚵嚳壣å…å·†å·‡å»®å»¯å¿€å¿æ‡¹æ”—攖攕攓旟曨曣曤櫳櫰櫪櫨櫹櫱櫮櫯瀼瀵瀯瀷瀴瀱ç‚瀸瀿瀺瀹ç€ç€»ç€³ç爓爔犨ç½ç¼ç’ºçš«çšªçš¾ç›çŸŒçŸŽçŸçŸçŸ²ç¤¥ç¤£ç¤§ç¤¨ç¤¤ç¤©\"],[\"f4a1\",\"禲穮穬ç©ç«·ç±‰ç±ˆç±Šç±‡ç±…糮繻繾çºçº€ç¾ºç¿¿è¹è‡›è‡™èˆ‹è‰¨è‰©è˜¢è—¿è˜è—¾è˜›è˜€è—¶è˜„è˜‰è˜…è˜Œè—½è ™è è ‘è —è “è –è¥£è¥¦è¦¹è§·è èªèè¨è£è¥è§è趮躆躈躄轙轖轗轕轘轚é‚é…ƒé…醷醵醲醳é‹é“é»é éé”é¾é•éé¨é™ééµé€é·é‡éŽé–é’éºé‰é¸éŠé¿\"],[\"f540\",\"é¼éŒé¶é‘é†é—žé— é—Ÿéœ®éœ¯éž¹éž»éŸ½éŸ¾é¡ é¡¢é¡£é¡Ÿé£é£‚é¥é¥Žé¥™é¥Œé¥‹é¥“騲騴騱騬騪騶騩騮騸é¨é«‡é«Šé«†é¬é¬’鬑鰋鰈鯷鰅鰒鯸鱀鰇鰎鰆鰗鰔鰉鶟鶙鶤é¶é¶’鶘é¶é¶›\"],[\"f5a1\",\"é¶ é¶”é¶œé¶ªé¶—é¶¡é¶šé¶¢é¶¨é¶žé¶£é¶¿é¶©é¶–é¶¦é¶§éº™éº›éºšé»¥é»¤é»§é»¦é¼°é¼®é½›é½ é½žé½é½™é¾‘儺儹劘劗囃嚽嚾åˆå‡å·‹å·å»±æ‡½æ”›æ¬‚櫼欃櫸欀çƒç„çŠçˆç‰ç…ç†çˆçˆšçˆ™ç¾ç”—癪çŸç¤ç¤±ç¤¯ç±”籓糲纊纇纈纋纆çºç½ç¾»è€°è‡è˜˜è˜ªè˜¦è˜Ÿè˜£è˜œè˜™è˜§è˜®è˜¡è˜ 蘩蘞蘥\"],[\"f640\",\"è ©è è ›è è ¤è œè «è¡Šè¥è¥©è¥®è¥«è§ºè¹è¸è…èºè»è´è´”趯躎躌轞轛è½é…†é…„酅醹é¿é»é¶é©é½é¼é°é¹éªé·é¬é‘€é±é—¥é—¤é—£éœµéœºéž¿éŸ¡é¡¤é£‰é£†é£€é¥˜é¥–騹騽驆驄驂é©é¨º\"],[\"f6a1\",\"騿é«é¬•鬗鬘鬖鬺é’é°«é°é°œé°¬é°£é°¨é°©é°¤é°¡é¶·é¶¶é¶¼é·é·‡é·Šé·é¶¾é·…鷃鶻鶵鷎鶹鶺鶬鷈鶱é¶é·Œé¶³é·é¶²é¹ºéºœé»«é»®é»é¼›é¼˜é¼šé¼±é½Žé½¥é½¤é¾’亹囆囅囋奱å‹åŒå·•å·‘å»²æ”¡æ” æ”¦æ”¢æ¬‹æ¬ˆæ¬‰æ°ç•ç–ç—ç’爞爟犩ç¿ç“˜ç“•瓙瓗ç™çšç¤µç¦´ç©°ç©±ç±—籜籙籛籚\"],[\"f740\",\"糴糱纑ç½ç¾‡è‡žè‰«è˜´è˜µè˜³è˜¬è˜²è˜¶è ¬è ¨è ¦è ªè ¥è¥±è¦¿è¦¾è§»è¾è®„讂讆讅è¿è´•躕躔躚躒èºèº–èº—è½ è½¢é…‡é‘Œé‘鑊鑋é‘鑇鑅鑈鑉鑆霿韣顪顩飋饔饛驎驓驔驌é©é©ˆé©Š\"],[\"f7a1\",\"驉驒é©é«é¬™é¬«é¬»é–é•鱆鱈鰿鱄鰹鰳é±é°¼é°·é°´é°²é°½é°¶é·›é·’é·žé·šé·‹é·é·œé·‘鷟鷩鷙鷘鷖鷵鷕é·éº¶é»°é¼µé¼³é¼²é½‚齫龕龢儽劙壨壧奲åå·˜è ¯å½æˆæˆƒæˆ„æ”©æ”¥æ––æ›«æ¬‘æ¬’æ¬æ¯Šç›çšçˆ¢çŽ‚çŽçŽƒç™°çŸ”ç±§ç±¦çº•è‰¬è˜ºè™€è˜¹è˜¼è˜±è˜»è˜¾è °è ²è ®è ³è¥¶è¥´è¥³è§¾\"],[\"f840\",\"讌讎讋讈豅贙躘轤轣醼鑢鑕é‘é‘—é‘žéŸ„éŸ…é €é©–é©™é¬žé¬Ÿé¬ é±’é±˜é±é±Šé±é±‹é±•鱙鱌鱎鷻鷷鷯鷣鷫鷸鷤鷶鷡鷮鷦鷲鷰鷢鷬鷴鷳鷨é·é»‚é»é»²é»³é¼†é¼œé¼¸é¼·é¼¶é½ƒé½\"],[\"f8a1\",\"齱齰齮齯囓å›åŽå±æ”æ›æ›®æ¬“çŸç¡çç 爣瓛瓥矕礸禷禶籪纗羉è‰è™ƒè ¸è ·è µè¡‹è®”è®•èºžèºŸèº èºé†¾é†½é‡‚鑫鑨鑩雥é†éƒé‡éŸ‡éŸ¥é©žé«•é™é±£é±§é±¦é±¢é±žé± 鸂鷾鸇鸃鸆鸅鸀é¸é¸‰é·¿é·½é¸„éº é¼žé½†é½´é½µé½¶å›”æ”®æ–¸æ¬˜æ¬™æ¬—æ¬šç¢çˆ¦çŠªçŸ˜çŸ™ç¤¹ç±©ç±«ç³¶çºš\"],[\"f940\",\"çº˜çº›çº™è‡ è‡¡è™†è™‡è™ˆè¥¹è¥ºè¥¼è¥»è§¿è®˜è®™èº¥èº¤èº£é‘®é‘鑯鑱鑳é‰é¡²é¥Ÿé±¨é±®é±é¸‹é¸é¸é¸é¸’鸑麡黵鼉齇齸齻齺齹圞ç¦ç±¯è ¼è¶²èº¦é‡ƒé‘´é‘¸é‘¶é‘µé© 鱴鱳鱱鱵鸔鸓黶鼊\"],[\"f9a1\",\"龤ç¨ç¥ç³·è™ªè ¾è ½è ¿è®žè²œèº©è»‰é‹é¡³é¡´é£Œé¥¡é¦«é©¤é©¦é©§é¬¤é¸•鸗齈戇欞爧虌躨钂钀é’驩驨鬮鸙爩虋讟钃鱹麷癵驫鱺é¸ç©çªéº¤é½¾é½‰é¾˜ç¢éйè£å¢»æ’粧嫺╔╦╗╠╬╣╚╩â•╒╤╕╞╪╡╘╧╛╓╥╖╟╫╢╙╨╜║â•â•╮╰╯▓\"]]"); /***/ }), -/* 881 */ +/* 889 */ /***/ (function(module) { module.exports = JSON.parse("[[\"8740\",\"ä°ä°²ä˜ƒä–¦ä•¸ð§‰§äµ·ä–³ð§²±ä³¢ð§³…㮕䜶ä„䱇䱀𤊿𣘗ð§’𦺋𧃒䱗ðª‘ä䗚䲅𧱬䴇䪤䚡𦬣爥𥩔𡩣𣸆𣽡æ™å›»\"],[\"8767\",\"ç¶•å¤ð¨®¹ã·´éœ´ð§¯¯å¯›ð¡µžåª¤ã˜¥ð©º°å«‘å®·å³¼æ®è–“ð©¥…ç‘¡ç’㡵𡵓𣚞𦀡㻬\"],[\"87a1\",\"𥣞㫵竼龗𤅡ð¨¤ð£‡ªð ªŠð£‰žäŒŠè’„é¾–é¯ä¤°è˜“墖éŠéˆ˜ç§ç¨²æ™ 権è¢ç‘Œç¯…枂稬å‰é†ã“¦ç„ð¥¶¹ç“†é¿‡åž³ä¤¯å‘Œä„±ð£šŽå ˜ç©²ð§¥è®äš®ð¦ºˆä†ð¥¶™ç®®ð¢’¼é¿ˆð¢“𢓉𢓌鿉蔄𣖻䂴鿊䓡𪷿æ‹ç®é¿‹\"],[\"8840\",\"㇀\",4,\"𠄌㇅𠃑ð ƒã‡†ã‡‡ð ƒ‹ð¡¿¨ã‡ˆð ƒŠã‡‰ã‡Šã‡‹ã‡Œð „Žã‡ã‡ŽÄ€ÃÇÀĒÉĚÈŌÓǑÒ࿿Ê̄Ế࿿Ê̌ỀÊÄáǎà ɑēéěèīÃÇìÅóǒòūúǔùǖǘǚ\"],[\"88a1\",\"ǜü࿿ê̄ế࿿ê̌á»ÃªÉ¡âšâ›\"],[\"8940\",\"𪎩𡅅\"],[\"8943\",\"攊\"],[\"8946\",\"丽æ»éµŽé‡Ÿ\"],[\"894c\",\"𧜵撑会伨侨兖兴农凤务动医åŽå‘å˜å›¢å£°å¤„备夲头å¦å®žå®Ÿå²šåº†æ€»æ–‰æŸ¾æ „桥济炼电纤纬纺织ç»ç»Ÿç¼†ç¼·è‰ºè‹è¯è§†è®¾è¯¢è½¦è½§è½®\"],[\"89a1\",\"ç‘ç³¼ç·æ¥†ç«‰åˆ§\"],[\"89ab\",\"醌碸酞肼\"],[\"89b0\",\"贋胶𠧧\"],[\"89b5\",\"肟黇ä³é·‰é¸Œä°¾ð©·¶ð§€Žé¸Šðª„³ã—\"],[\"89c1\",\"溚舾甙\"],[\"89c5\",\"䤑马éªé¾™ç¦‡ð¨‘¬ð¡·Šð —𢫦两äºäº€äº‡äº¿ä»«ä¼·ã‘Œä¾½ã¹ˆå€ƒå‚ˆã‘½ã’“㒥円夅凛凼刅争剹åŠåŒ§ã—‡åŽ©ã•‘åŽ°ã•“å‚å£ã•㕲ãšå’“咣咴咹å“哯唘唣唨㖘唿㖥㖿嗗㗅\"],[\"8a40\",\"𧶄唥\"],[\"8a43\",\"𠱂𠴕𥄫å–𢳆㧬ð 蹆𤶸𩓥ä“𨂾çºð¢°¸ã¨´äŸ•ð¨…𦧲𤷪æ“𠵼𠾴𠳕𡃴æ’蹾𠺖𠰋𠽤𢲩𨉖𤓓\"],[\"8a64\",\"𠵆ð©©ð¨ƒ©äŸ´ð¤º§ð¢³‚骲㩧𩗴ã¿ã”†ð¥‹‡ð©Ÿ”ð§£ˆð¢µ„éµ®é •\"],[\"8a76\",\"ä™ð¦‚¥æ’´å“£ð¢µŒð¢¯Šð¡·ã§»ð¡¯\"],[\"8aa1\",\"𦛚𦜖𧦠擪ð¥’𠱃蹨𢆡ð¨Œð œ±\"],[\"8aac\",\"ä ‹ð †©ã¿ºå¡³ð¢¶\"],[\"8ab2\",\"𤗈𠓼𦂗𠽌𠶖啹䂻䎺\"],[\"8abb\",\"䪴𢩦ð¡‚膪飵𠶜æ¹ã§¾ð¢µè·€å𡿑¼ã¹ƒ\"],[\"8ac9\",\"ðª˜ð ¸‰ð¢«ð¢³‰\"],[\"8ace\",\"𡃈𣧂㦒㨆𨊛㕸𥹉𢃇噒𠼱𢲲𩜠㒼氽𤸻\"],[\"8adf\",\"𧕴𢺋𢈈𪙛ð¨³ð ¹ºð °´ð¦ œç¾“ð¡ƒð¢ ƒð¢¤¹ã—»ð¥‡£ð ºŒð ¾ð ºªã¾“𠼰𠵇ð¡…𠹌\"],[\"8af6\",\"𠺫𠮩𠵈𡃀𡄽㿹𢚖æ²ð ¾\"],[\"8b40\",\"ð£´ð§˜¹ð¢¯Žð µ¾ð µ¿ð¢±‘𢱕㨘𠺘𡃇𠼮𪘲ð¦ð¨³’𨶙𨳊閪哌苄喹\"],[\"8b55\",\"𩻃鰦骶ð§žð¢·®ç…€è…胬尜𦕲脴㞗åŸð¨‚½é†¶ð »ºð ¸ð ¹·ð »»ã—𤷫㘉𠳖嚯𢞵𡃉ð ¸ð ¹¸ð¡¸ð¡…ˆð¨ˆ‡ð¡‘•ð ¹¹ð¤¹ð¢¶¤å©”ð¡€ð¡€žð¡ƒµð¡ƒ¶åžœð ¸‘\"],[\"8ba1\",\"ð§š”ð¨‹ð ¾µð ¹»ð¥…¾ãœƒð ¾¶ð¡†€ð¥‹˜ðªŠ½ð¤§šð¡ ºð¤…·ð¨‰¼å¢™å‰¨ã˜šð¥œ½ç®²å¨ä €ä¬¬é¼§ä§§é°Ÿé®ð¥´ð£„½å—»ã—²åš‰ä¸¨å¤‚ð¡¯ð¯¡¸é‘ð ‚†ä¹›äº»ã”¾å°£å½‘å¿„ã£ºæ‰Œæ”µæºæ°µæ°ºç¬çˆ«ä¸¬çŠð¤£©ç½’礻糹罓𦉪ã“\"],[\"8bde\",\"ð¦‹è€‚肀𦘒𦥑å衤è§ð§¢²è® è´é’…镸长门ð¨¸éŸ¦é¡µé£Žé£žé¥£ð© 鱼鸟黄æ¯ï¤‡ä¸·ð ‚‡é˜æˆ·é’¢\"],[\"8c40\",\"倻淾𩱳龦㷉è¢ð¤…Žç·å³µä¬ ð¥‡ã•™ð¥´°æ„¢ð¨¨²è¾§é‡¶ç†‘朙玺ð£Šðª„‡ã²‹ð¡¦€ä¬ç£¤ç‚冮ð¨œä€‰æ©£ðªŠºäˆ£è˜ð ©¯ç¨ªð©¥‡ð¨«ªé•ç匤ð¢¾é´ç›™ð¨§£é¾§çŸäº£ä¿°å‚¼ä¸¯ä¼—龨å´ç¶‹å¢’å£ð¡¶¶åº’庙忂𢜒斋\"],[\"8ca1\",\"ð£¹æ¤™æ©ƒð£±£æ³¿\"],[\"8ca7\",\"爀𤔅玌㻛𤨓嬕璹讃𥲤𥚕窓篬糃繬苸薗龩è¢é¾ªèº¹é¾«è¿è•Ÿé§ 鈡龬𨶹ð¡¿ä±äŠ¢å¨š\"],[\"8cc9\",\"顨æ«ä‰¶åœ½\"],[\"8cce\",\"藖𤥻芿ð§„ä²ð¦µ´åµ»ð¦¬•𦾾é¾é¾®å®–龯曧繛湗秊㶈䓃𣉖𢞖䎚䔶\"],[\"8ce6\",\"峕𣬚諹屸㴒𣕑嵸龲煗䕘𤃬𡸣䱷㥸㑊𠆤ð¦±è«Œä¾´ð ˆ¹å¦¿è…¬é¡–𩣺弻\"],[\"8d40\",\"𠮟\"],[\"8d42\",\"ð¢‡ð¨¥ä„‚äš»ð©¹ã¼‡é¾³ðª†µäƒ¸ãŸ–䛷𦱆䅼𨚲ð§¿ä•㣔𥒚䕡䔛䶉䱻䵶䗪㿈ð¤¬ã™¡ä“žä’½ä‡å´¾åµˆåµ–ã·¼ã 嶤嶹ã ã ¸å¹‚åº½å¼¥å¾ƒã¤ˆã¤”ã¤¿ã¥æƒ—愽峥㦉憷憹æ‡ã¦¸æˆ¬æŠæ‹¥æŒ˜ã§¸åš±\"],[\"8da1\",\"ã¨ƒæ¢æ»æ‡æ‘šã©‹æ“€å´•å˜¡é¾Ÿãª—æ–†ãª½æ—¿æ™“ã«²æš’ã¬¢æœ–ã‚æž¤æ €ã˜æ¡Šæ¢„ã²ã±ã»æ¤‰æ¥ƒç‰œæ¥¤æ¦Ÿæ¦…ã®¼æ§–ã¯æ©¥æ©´æ©±æª‚ã¯¬æª™ã¯²æª«æªµæ«”æ«¶æ®æ¯æ¯ªæ±µæ²ªã³‹æ´‚洆洦æ¶ã³¯æ¶¤æ¶±æ¸•æ¸˜æ¸©æº†ð¨§€æº»æ»¢æ»šé½¿æ»¨æ»©æ¼¤æ¼´ãµ†ð£½æ¾æ¾¾ãµªãµµç†·å²™ã¶Šç€¬ã¶‘çç”ç¯ç¿ç‚‰ð Œ¥ä㗱𠻘\"],[\"8e40\",\"𣻗垾𦻓焾𥟠㙎榢𨯩å´ç©‰ð¥£¡ð©“™ç©¥ç©½ð¥¦¬çª»çª°ç«‚竃燑ð¦’䇊竚ç«ç«ªä‡¯å’²ð¥°ç¬‹ç•笩𥌎𥳾箢ç¯èŽœð¥®´ð¦±¿ç¯è¡ç®’箸𥴠ã¶ð¥±¥è’’篺簆簵ð¥³ç±„粃𤢂粦晽𤕸糉糇糦籴糳糵糎\"],[\"8ea1\",\"ç¹§ä”𦹄çµð¦»–ç’綉綫焵綳緒ð¤—𦀩緤㴓緵𡟹緥ð¨ç¸ð¦„¡ð¦…šç¹®çº’䌫鑬縧罀ç½ç½‡ç¤¶ð¦‹é§¡ç¾—ð¦‘羣𡙡ð ¨ä•œð£¦ä”ƒð¨Œºç¿ºð¦’‰è€…耈è€è€¨è€¯ðª‚‡ð¦³ƒè€»è€¼è¡ð¢œ”䦉𦘦𣷣𦛨朥肧𨩈脇脚墰𢛶汿𦒘𤾸擧𡒊舘𡡞橓𤩥𤪕䑺舩ð ¬ð¦©’𣵾俹𡓽蓢è¢ð¦¬Šð¤¦§ð£”°ð¡³ð£·¸èŠªæ¤›ð¯¦”ä‡›\"],[\"8f40\",\"è•‹è‹èŒšð ¸–𡞴ã›ð£…½ð£•šè‰»è‹¢èŒ˜ð£º‹ð¦¶£ð¦¬…𦮗𣗎㶿èŒå—¬èŽ…ä”‹ð¦¶¥èŽ¬èè“㑾𦻔橗蕚㒖𦹂𢻯葘𥯤葱㷓䓤檧葊𣲵祘蒨𦮖𦹷𦹃蓞èèŽ‘ä’ è’“è“¤ð¥²‘ä‰€ð¥³€ä•ƒè”´å«²ð¦º™ä”§è•³ä”–æž¿è˜–\"],[\"8fa1\",\"𨘥𨘻è—𧂈蘂𡖂ð§ƒð¯¦²ä•ªè˜¨ã™ˆð¡¢¢å·ð§Žšè™¾è±ðªƒ¸èŸ®ð¢°§èž±èŸšè 噡虬桖ä˜è¡…衆𧗠𣶹𧗤衞袜䙛袴袵æè£…ç·ð§œè¦‡è¦Šè¦¦è¦©è¦§è¦¼ð¨¨¥è§§ð§¤¤ð§ª½èªœçž“釾èªð§©™ç«©ð§¬ºð£¾äœ“𧬸煼謌謟ð¥°ð¥•¥è¬¿èŒè誩𤩺è®è®›èª¯ð¡›Ÿä˜•è¡è²›ð§µ”ð§¶ð¯§”㜥𧵓賖𧶘𧶽贒贃ð¡¤è³›çœè´‘𤳉ã»èµ·\"],[\"9040\",\"趩𨀂𡀔𤦊ã¼ð¨†¼ð§„Œç«§èºèº¶è»ƒé‹”è¼™è¼ð¨¥ð¨’辥錃𪊟ð ©è¾³ä¤ªð¨§žð¨”½ð£¶»å»¸ð£‰¢è¿¹ðª€”𨚼ð¨”𢌥㦀𦻗逷𨔼𧪾é¡ð¨•¬ð¨˜‹é‚¨ð¨œ“郄𨛦邮都酧㫰醩釄粬𨤳𡺉鈎沟é‰é‰¢ð¥–¹éŠ¹ð¨«†ð£²›ð¨¬Œð¥—›\"],[\"90a1\",\"𠴱錬é«ð¨«¡ð¨¯«ç‚嫃𨫢𨫥䥥鉄𨯬𨰹𨯿é³é‘›èº¼é–…é–¦é¦é– 濶䊹𢙺𨛘𡉼𣸮䧟氜陻隖䅬隣𦻕懚隶磵𨫠隽åŒä¦¡ð¦²¸ð ‰´ð¦ð©‚¯ð©ƒ¥ð¤«‘𡤕𣌊霱虂霶ä¨ä”½ä–…𤫩çµå霛éœð©‡•é—åŠð©‡«éŸé¥åƒð£‚·ð£‚¼éž‰éžŸéž±éž¾éŸ€éŸ’éŸ ð¥‘¬éŸ®çœð©³éŸ¿éŸµð©ð§¥ºä«‘é ´é ³é¡‹é¡¦ã¬Žð§…µãµ‘ð ˜°ð¤…œ\"],[\"9140\",\"𥜆飊颷飈飇䫿𦴧𡛓喰飡飦飬é¸é¤¹ð¤¨©ä²ð©¡—𩤅駵騌騻é¨é©˜ð¥œ¥ã›„ð©‚±ð©¯•é« é«¢ð©¬…é«´ä°Žé¬”é¬ð¨˜€å€´é¬´ð¦¦¨ã£ƒð£½éé€ð©´¾å©…𡡣鮎𤉋鰂鯿鰌𩹨鷔𩾷𪆒𪆫𪃡𪄣𪇟鵾鶃𪄴鸎梈\"],[\"91a1\",\"鷄𢅛𪆓𪈠𡤻𪈳鴹𪂹𪊴éºéº•麞麢䴴麪麯ð¤¤é»ã ã§¥ã´ä¼²ãž¾ð¨°«é¼‚鼈䮖é¤ð¦¶¢é¼—鼖鼹嚟嚊齅馸𩂋韲葿齢齩竜龎爖䮾𤥵𤦻煷𤧸ð¤ˆð¤©‘玞𨯚𡣺禟𨥾𨸶é©é³ð¨©„鋬éŽé‹ð¨¥¬ð¤’¹çˆ—㻫ç²ç©ƒçƒð¤‘³ð¤¸ç…¾ð¡Ÿ¯ç‚£ð¡¢¾ð£–™ã»‡ð¡¢…ð¥¯ð¡Ÿ¸ãœ¢ð¡›»ð¡ ¹ã›¡ð¡´ð¡£‘𥽋㜣𡛀å›ð¤¨¥ð¡¾ð¡Š¨\"],[\"9240\",\"ð¡†ð¡’¶è”ƒð£š¦è”ƒè‘•𤦔𧅥𣸱𥕜𣻻ð§’䓴𣛮ð©¦ð¦¼¦æŸ¹ãœ³ã°•㷧塬𡤢æ ä—𣜿𤃡𤂋ð¤„𦰡哋嚞𦚱嚒𠿟𠮨ð ¸é†ð¨¬“鎜仸儫㠙ð¤¶äº¼ð ‘¥ð ¿ä½‹ä¾Šð¥™‘婨𠆫ð ‹ã¦™ð ŒŠð ”ãµä¼©ð ‹€ð¨º³ð ‰µè«šð ˆŒäº˜\"],[\"92a1\",\"åƒå„侢伃𤨎𣺊佂倮å¬å‚俌俥å˜åƒ¼å…™å…›å…å…žæ¹¶ð£–•ð£¸¹ð£º¿æµ²ð¡¢„ð£º‰å†¨å‡ƒð — ä“𠒣𠒒𠒑赺𨪜𠜎剙劤𠡳勡é®ä™ºç†Œð¤ŽŒð ° 𤦬𡃤槑ð ¸ç‘¹ã»žç’™ç”瑖玘䮎𤪼ð¤‚åã–„çˆð¤ƒ‰å–´ð …å“𠯆åœé‰é›´é¦åŸåžå¿ã˜¾å£‹åª™ð¨©†ð¡›ºð¡¯ð¡œå¨¬å¦¸éŠå©¾å«å¨’𥥆𡧳𡡡𤊕㛵洅瑃娡𥺃\"],[\"9340\",\"åªð¨¯—ð “é 璌𡌃焅䥲éˆð¨§»éŽ½ãž å°žå²žå¹žå¹ˆð¡¦–ð¡¥¼ð£«®å»å𡤃𡤄ãœð¡¢ ã›ð¡›¾ã›“脪𨩇𡶺𣑲𨦨弌弎𡤧𡞫婫𡜻å„è˜”ð§—½è¡ æ¾ð¢¡ 𢘫忛㺸𢖯𢖾𩂈𦽳懀𠀾ð †ð¢˜›æ†™æ†˜æµð¢²›ð¢´‡ð¤›”ð©…\"],[\"93a1\",\"摱𤙥ð¢ªã¨©ð¢¬¢ð£‘𩣪𢹸挷𪑛撶挱æ‘ð¤§£ð¢µ§æŠ¤ð¢²¡æ»æ•«æ¥²ã¯´ð£‚Žð£Šð¤¦‰ð£Š«å”ð£‹ ð¡£™ð©¿æ›Žð£Š‰ð£†³ã« ä†ð¥–„𨬢ð¥–𡛼𥕛ð¥¥ç£®ð£„ƒð¡ ªð£ˆ´ã‘¤ð£ˆð£†‚𤋉暎𦴤晫䮓昰𧡰𡷫晣𣋒𣋡昞𥡲㣑𣠺𣞼㮙𣞢ð£¾ç“ã®–æžð¤˜ªæ¢¶æ žã¯„檾㡣𣟕𤒇樳橒櫉欅𡤒攑梘橌㯗橺æ—ð£¿€ð£²šéŽ é‹²ð¨¯ªð¨«‹\"],[\"9440\",\"éŠ‰ð¨€žð¨§œé‘§æ¶¥æ¼‹ð¤§¬æµ§ð£½¿ã¶æ¸„𤀼娽渊塇洤硂焻𤌚𤉶烱ç‰çŠ‡çŠ”ð¤žð¤œ¥å…¹ð¤ª¤ð —«ç‘ºð£»¸ð£™Ÿð¤©Šð¤¤—𥿡㼆㺱𤫟𨰣𣼵悧㻳瓌ç¼éއç·ä’Ÿð¦·ªä•‘疃㽣𤳙𤴆㽘畕癳𪗆㬙瑨𨫌𤦫𤦎㫻\"],[\"94a1\",\"ã·ð¤©Žã»¿ð¤§…𤣳釺圲é‚𨫣𡡤僟𥈡𥇧ç¸ð£ˆ²çœŽçœç»ð¤š—ð£žã©žð¤£°ç¸ç’›ãº¿ð¤ªºð¤«‡äƒˆð¤ª–𦆮錇ð¥–ç žç¢ç¢ˆç£’ç祙ð§ð¥›£ä„Žç¦›è’–禥æ¨ð£»ºç¨ºç§´ä…®ð¡›¦ä„²éˆµç§±ð µŒð¤¦Œð Š™ð£¶ºð¡®ã–—啫㕰㚪𠇔ð °ç«¢å©™ð¢›µð¥ª¯ð¥ªœå¨ð ‰›ç£°å¨ªð¥¯†ç«¾ä‡¹ç±ç±äˆ‘𥮳𥺼𥺦ç³ð¤§¹ð¡ž°ç²Žç±¼ç²®æª²ç·œç¸‡ç·“罎𦉡\"],[\"9540\",\"𦅜ð§ˆç¶—𥺂䉪ð¦µð ¤–柖ð Žð£—埄ð¦’ð¦¸ð¤¥¢ç¿ç¬§ð ¬ð¥«©ð¥µƒç¬Œð¥¸Žé§¦è™…驣樜ð£¿ã§¢ð¤§·ð¦–騟𦖠蒀𧄧𦳑䓪脷ä‚胆脉腂𦞴飃𦩂艢艥𦩑葓𦶧è˜ð§ˆ›åª†ä…¿ð¡¡€å¬«ð¡¢¡å«¤ð¡£˜èš 蜨ð£¶è ð§¢å¨‚\"],[\"95a1\",\"衮佅袇袿裦襥è¥ð¥šƒè¥”𧞅𧞄𨯵𨯙𨮜𨧹ãºè’£ä›µä›ãŸ²è¨½è¨œð©‘ˆå½éˆ«ð¤Š„旔焩烄𡡅éµè²Ÿè³©ð§·œå¦šçŸƒå§°ä®ã›”踪躧𤰉輰轊䋴汘澻𢌡䢛潹溋𡟚鯩㚵𤤯邻邗啱䤆醻é„𨩋ä¢ð¨«¼é§ð¨°ð¨°»è“¥è¨«é–™é–§é–—閖𨴴瑅㻂𤣿𤩂ð¤ªã»§ð£ˆ¥éšð¨»§ð¨¹¦ð¨¹¥ã»Œð¤§ð¤©¸ð£¿®ç’瑫㻼éð©‚°\"],[\"9640\",\"桇ä¨ð©‚“𥟟éé¨ð¨¦‰ð¨°¦ð¨¬¯ð¦Ž¾éŠºå¬‘è©ä¤¼ç¹ð¤ˆ›éž›é±é¤¸ð ¼¦å·ð¨¯…ð¤ª²é Ÿð©“šé‹¶ð©——é‡¥ä“€ð¨ð¤©§ð¨¤é£œð¨©…㼀鈪䤥è”餻é¥ð§¬†ã·½é¦›ä¯é¦ªé©œð¨¥ð¥£ˆæªé¨¡å«¾é¨¯ð©£±ä®ð©¥ˆé¦¼ä®½ä®—é½å¡²ð¡Œ‚å ¢ð¤¦¸\"],[\"96a1\",\"𡓨硄𢜟𣶸棅㵽鑘㤧æ…ð¢žð¢¥«æ„‡é±é±“鱻鰵é°é¿é¯ð©¸é®Ÿðª‡µðªƒ¾é´¡ä²®ð¤„„鸘䲰鴌𪆴ðªƒðªƒ³ð©¤¯é¶¥è’½ð¦¸’𦿟𦮂藼䔳𦶤𦺄𦷰è 藮𦸀𣟗ð¦¤ç§¢ð£–œð£™€ä¤ð¤§žãµ¢é›éоéˆð Š¿ç¢¹é‰·é‘俤㑀é¤ð¥•ç ½ç¡”ç¢¶ç¡‹ð¡—𣇉ð¤¥ãššä½²æ¿šæ¿™ç€žç€žå”𤆵垻壳垊鴖埗焴㒯𤆬燫𦱀𤾗嬨𡞵𨩉\"],[\"9740\",\"愌嫎娋䊼𤒈㜬ä»ð¨§¼éŽ»éŽ¸ð¡£–ð ¼è‘²ð¦³€ð¡“𤋺𢰦ð¤å¦”𣶷ð¦ç¶¨ð¦…›ð¦‚¤ð¤¦¹ð¤¦‹ð¨§ºé‹¥ç¢ã»©ç’´ð¨£ð¡¢Ÿã»¡ð¤ª³æ«˜ç³ç»ã»–𤨾𤪔𡟙𤩦𠎧ð¡¤ð¤§¥ç‘ˆð¤¤–炥𤥶銄ç¦éŸð “¾éŒ±ð¨«Žð¨¨–鎆𨯧𥗕䤵𨪂煫\"],[\"97a1\",\"𤥃𠳿嚤𠘚𠯫𠲸唂秄𡟺緾𡛂ð¤©ð¡¡’ä”®é㜊𨫀ð¤¦å¦°ð¡¢¿ð¡¢ƒð§’„媡㛢𣵛㚰鉟婹ð¨ªð¡¡¢é´ã³ð ª´äª–㦊僴㵩㵌𡎜煵䋻𨈘æ¸ð©ƒ¤ä“«æµ—ð§¹ç§æ²¯ã³–ð£¿ð£¸æ¸‚漌㵯ð µç•‘㚼㓈䚀㻚䡱姄鉮䤾è½ð¨°œð¦¯€å ’埈㛖𡑒烾ð¤¢ð¤©±ð¢¿£ð¡Š°ð¢Ž½æ¢¹æ¥§ð¡Ž˜ð£“¥ð§¯´ð£›Ÿð¨ªƒð£Ÿ–ð£ºð¤²Ÿæ¨šð£šð¦²·è¾ä“Ÿä“Ž\"],[\"9840\",\"𦴦𦵑𦲂𦿞漗𧄉茽𡜺è𦲀ð§“𡟛妉媂𡞳婡婱𡤅𤇼ãœå§¯ð¡œ¼ã›‡ç†ŽéŽæššð¤Š¥å©®å¨«ð¤Š“樫𣻹𧜶𤑛𤋊ç„𤉙𨧡侰𦴨峂𤓎ð§¹ð¤Ž½æ¨Œð¤‰–𡌄炦焳ð¤©ã¶¥æ³Ÿð¯ ¥ð¤©ç¹¥å§«å´¯ã·³å½œð¤©ð¡ŸŸç¶¤è¦\"],[\"98a1\",\"咅𣫺𣌀𠈔å¾ð £•𠘙㿥𡾞𪊶瀃𩅛嵰çŽç³“𨩙ð© 俈翧ç‹çŒð§«´çŒ¸çŒ¹ð¥›¶ççˆãº©ð§¬˜é¬ç‡µð¤£²ç¡è‡¶ã»ŠçœŒã»‘沢国ç™çžçŸã»¢ã»°ã»´ã»ºç““㼎㽓畂ç•畲ç–㽼痈痜㿀ç™ã¿—癴㿜発𤽜熈嘣覀塩ä€çƒä€¹æ¡ä…㗛瞘äªä¯å±žçž¾çŸ‹å£²ç ˜ç‚¹ç œä‚¨ç ¹ç¡‡ç¡‘ç¡¦è‘ˆð¥”µç¤³æ ƒç¤²ä„ƒ\"],[\"9940\",\"䄉禑禙辻稆込䅧窑䆲窼艹䇄ç«ç«›ä‡ä¸¡ç¢ç¬ç»ç°’ç°›ä‰ ä‰ºç±»ç²œäŠŒç²¸äŠ”ç³è¾“烀ð ³ç·ç·”ç·ç·½ç¾®ç¾´çŠŸäŽ—è€ è€¥ç¬¹è€®è€±è”ã·Œåž´ç‚ è‚·èƒ©äè„ŒçŒªè„Žè„’ç• è„”ä㬹腖腙腚\"],[\"99a1\",\"ä“å ºè…¼è†„ä¥è†“ä膥埯è‡è‡¤è‰”ä’芦艶苊苘苿䒰è—险榊è…烵葤惣蒈䔄蒾蓡蓸è”è”¸è•’ä”»è•¯è•°è— ä•·è™²èš’èš²è›¯é™…èž‹ä˜†ä˜—è¢®è£¿è¤¤è¥‡è¦‘ð§¥§è¨©è¨¸èª”èª´è±‘è³”è³²è´œäž˜å¡Ÿè·ƒäŸä»®è¸ºå—˜å”è¹±å—µèº°ä ·è»Žè»¢è»¤è»è»²è¾·è¿è¿Šè¿Œé€³é§„ä¢é£ 鈓䤞鈨鉘鉫銱銮銿\"],[\"9a40\",\"鋣鋫鋳鋴鋽éƒéŽ„éŽä¥…䥑麿é—åŒééé¾ä¥ªé‘”鑹é”é–¢ä¦§é—´é˜³ä§¥æž ä¨¤é€ä¨µéž²éŸ‚噔䫤惨颹䬙飱塄餎餙冴餜餷饂é¥é¥¢ä°é§…ä®é¨¼é¬çªƒé©é®é¯é¯±é¯´ä±é° ã¯ð¡¯‚鵉鰺\"],[\"9aa1\",\"黾å™é¶“é¶½é·€é·¼é“¶è¾¶é¹»éº¬éº±éº½é»†é“œé»¢é»±é»¸ç«ˆé½„ð ‚”ð Š·ð Ž æ¤šé“ƒå¦¬ð “—å¡€é“㞹𠗕𠘕𠙶𡚺å—煳𠫂ð «ð ®¿å‘ªð¯ »ð ¯‹å’žð ¯»ð °»ð ±“𠱥𠱼惧ð ²å™ºð ²µð ³ð ³ð µ¯ð ¶²ð ·ˆæ¥•鰯螥𠸄𠸎𠻗ð ¾ð ¼ð ¹³å° 𠾼帋ð¡œð¡ð¡¶æœžð¡»ð¡‚ˆð¡‚–㙇𡂿𡃓𡄯𡄻å¤è’ð¡‹£ð¡µð¡Œ¶è®ð¡•·ð¡˜™ð¡Ÿƒð¡Ÿ‡ä¹¸ç‚»ð¡ 𡥪\"],[\"9b40\",\"ð¡¨ð¡©…ð¡°ªð¡±°ð¡²¬ð¡»ˆæ‹ƒð¡»•ð¡¼•ç†˜æ¡•ð¢…æ§©ã›ˆð¢‰¼ð¢—ð¢ºð¢œªð¢¡±ð¢¥è‹½ð¢¥§ð¢¦“ð¢«•è¦¥ð¢«¨è¾ ð¢¬Žéž¸ð¢¬¿é¡‡éª½ð¢±Œ\"],[\"9b62\",\"𢲈𢲷𥯨𢴈𢴒𢶷𢶕𢹂𢽴𢿌𣀳ð£¦ð£ŒŸð£žå¾±æ™ˆæš¿ð§©¹ð£•§ð£—³çˆð¤¦ºçŸ—𣘚𣜖纇ð †å¢µæœŽ\"],[\"9ba1\",\"椘𣪧𧙗𥿢𣸑𣺹𧗾𢂚ä£äª¸ð¤„™ð¨ªšð¤‹®ð¤Œð¤€»ð¤Œ´ð¤Ž–𤩅𠗊凒𠘑妟𡺨㮾𣳿ð¤„𤓖垈𤙴㦛𤜯𨗨𩧉ã¢ð¢‡ƒèžð¨Žé§–𤠒𤣻𤨕爉𤫀𠱸奥𤺥𤾆ð ¹è»šð¥€¬åŠåœ¿ç…±ð¥Š™ð¥™ð£½Šð¤ª§å–¼ð¥‘†ð¥‘®ð¦’釔㑳𥔿𧘲𥕞䜘𥕢𥕦𥟇𤤿ð¥¡å¦ã“»ð£Œæƒžð¥¤ƒä¼ð¨¥ˆð¥ª®ð¥®‰ð¥°†ð¡¶åž¡ç…‘澶𦄂𧰒é–𦆲𤾚è¢ð¦‚𦑊\"],[\"9c40\",\"嵛𦯷輶𦒄𡤜諪𤧶𦒈𣿯𦔒䯀𦖿𦚵𢜛鑥𥟡憕娧ð¯£ä¾»åš¹ð¤”¡ð¦›¼ä¹ªð¤¤´é™–æ¶ð¦²½ã˜˜è¥·ð¦ž™ð¦¡®ð¦‘𦡞營𦣇ç‚𩃀𠨑𦤦鄄𦤹穅鷰𦧺騦ð¦¨ã™Ÿð¦‘©ð €¡ç¦ƒð¦¨´ð¦›å´¬ð£”™èð¦®ä›ð¦²¤ç”»è¡¥ð¦¶®å¢¶\"],[\"9ca1\",\"㜜ð¢–ð§‹ð§‡ã±”𧊀𧊅éŠð¢…ºð§Š‹éŒ°ð§‹¦ð¤§æ°¹é’Ÿð§‘ð »¸è §è£µð¢¤¦ð¨‘³ð¡ž±æº¸ð¤¨ªð¡ 㦤㚹å°ç§£ä”¿æš¶ð©²ð©¢¤è¥ƒð§ŸŒð§¡˜å›–䃟𡘊㦡𣜯𨃨ð¡…ç†è¦ð§§ð©†¨å©§ä²·ð§‚¯ð¨¦«ð§§½ð§¨Šð§¬‹ð§µ¦ð¤…ºçƒç¥¾ð¨€‰æ¾µðª‹Ÿæ¨ƒð¨Œ˜åŽ¢ð¦¸‡éŽ¿æ ¶é𨅯𨀣𦦵ð¡ð£ˆ¯ð¨ˆå¶…ð¨°°ð¨‚ƒåœ•é £ð¨¥‰å¶«ð¤¦ˆæ–¾æ§•å’𤪥ð£¾ã°‘朶ð¨‚𨃴𨄮𡾡ð¨…\"],[\"9d40\",\"𨆉𨆯𨈚𨌆𨌯𨎊㗊𨑨𨚪䣺æ¦ð¨¥–ç ˆé‰•ð¨¦¸ä²ð¨§§äŸð¨§¨ð¨†ð¨¯”姸𨰉輋𨿅𩃬ç‘ð©„𩄼㷷𩅞𤫊è¿çŠåš‹ð©“§ð©—©ð©–°ð©–¸ð©œ²ð©£‘𩥉𩥪𩧃𩨨𩬎𩵚𩶛纟𩻸𩼣䲤镇𪊓熢𪋿䶑递𪗋䶜𠲜达å—\"],[\"9da1\",\"辺𢒰边𤪓䔉繿潖檱仪㓤𨬬ð§¢ãœºèº€ð¡Ÿµð¨€¤ð¨¬ð¨®™ð§¨¾ð¦š¯ã·«ð§™•𣲷𥘵𥥖亚ð¥ºð¦‰˜åš¿ð ¹è¸Žåð£ºˆð¤²žæžæ‹ð¡Ÿ¶ð¡¡»æ”°å˜ð¥±Šåšð¥Œ‘㷆𩶘䱽嘢嘞罉𥻘奵𣵀è°ä¸œð ¿ªð µ‰ð£šºè„—鵞贘瘻鱅癎瞹é…å²è…ˆè‹·å˜¥è„²è˜è‚½å—ªç¥¢å™ƒå–ð ºã—Žå˜…嗱曱𨋢ã˜ç”´å—°å–ºå’—啲ð ±ð ²–å»ð¥…ˆð ¹¶ð¢±¢\"],[\"9e40\",\"ð º¢éº«çµšå—žð¡µæŠéå’”è³ç‡¶é…¶æ¼æŽ¹æ¾å•©ð¢ƒé±²ð¢º³å†šã“Ÿð ¶§å†§å‘唞唓癦è¸ð¦¢Šç–±è‚¶è „螆裇膶èœð¡ƒä“¬çŒ„𤜆å®èŒ‹ð¦¢“噻𢛴𧴯𤆣𧵳ð¦»ð§Š¶é…°ð¡‡™éˆˆð£³¼ðªš©ð º¬ð »¹ç‰¦ð¡²¢äŽð¤¿‚𧿹𠿫䃺\"],[\"9ea1\",\"鱿”Ÿð¢¶ 䣳𤟠𩵼𠿬𠸊æ¢ð§–£ð ¿\"],[\"9ead\",\"ð¦ˆð¡†‡ç†£çºŽéµä¸šä¸„ã•·å¬æ²²å§ãš¬ã§œå½ãš¥ð¤˜˜å¢šð¤®èˆå‘‹åžªð¥ª•ð ¥¹\"],[\"9ec5\",\"㩒𢑥ç´ð©º¬ä´‰é¯ð£³¾ð©¼°ä±›ð¤¾©ð©–žð©¿žè‘œð£¶¶ð§Š²ð¦ž³ð£œ 挮紥𣻷𣸬㨪逈勌㹴㙺䗩𠒎癀嫰𠺶硺𧼮墧䂿噼鮋嵴癔ðª´éº…䳡痹㟻愙𣃚ð¤²\"],[\"9ef5\",\"å™ð¡Š©åž§ð¤¥£ð©¸†åˆ´ð§‚®ã–汊鵼\"],[\"9f40\",\"籖鬹埞ð¡¬å±“æ““ð©“𦌵𧅤èšð ´¨ð¦´¢ð¤«¢ð µ±\"],[\"9f4f\",\"凾ð¡¼å¶Žéœƒð¡·‘éºéŒç¬Ÿé¬‚峑箣扨挵髿ç¯é¬ªç±¾é¬®ç±‚ç²†é°•ç¯¼é¬‰é¼—é°›ð¤¤¾é½šå•³å¯ƒä¿½éº˜ä¿²å‰ ã¸†å‹‘å§å–妷帒韈鶫轜呩鞴饀鞺匬愰\"],[\"9fa1\",\"椬åšé°Šé´‚䰻陿¦€å‚¦ç•†ð¡é§šå‰³\"],[\"9fae\",\"é…™éšé…œ\"],[\"9fb2\",\"酑𨺗æ¿ð¦´£æ«Šå˜‘醎畺抅ð ¼ç籰𥰡𣳽\"],[\"9fc1\",\"𤤙盖é®ä¸ªð ³”莾衂\"],[\"9fc9\",\"届槀åƒåºåˆŸå·µä»Žæ°±ð ‡²ä¼¹å’œå“šåŠšè¶‚ã—¾å¼Œã—³\"],[\"9fdb\",\"æ’é…¼é¾¥é®—é ®é¢´éªºéº¨éº„ç…ºç¬”\"],[\"9fe7\",\"æ¯ºè ˜ç½¸\"],[\"9feb\",\"å˜ ðª™Šè¹·é½“\"],[\"9ff0\",\"è·”è¹é¸œè¸æŠ‚ð¨½è¸¨è¹µç«“𤩷稾磘泪詧瘇\"],[\"a040\",\"𨩚鼦泎蟖痃𪊲硓咢贌狢ç±è¬çŒ‚ç“±è³«ð¤ª»è˜¯å¾ºè¢ ä’·\"],[\"a055\",\"𡠻𦸅\"],[\"a058\",\"詾𢔛\"],[\"a05b\",\"惽癧髗鵄é®é®èŸµ\"],[\"a063\",\"è 賷猬霡鮰㗖犲䰇籑饊𦅙慙䰄麖慽\"],[\"a073\",\"åŸæ…¯æŠ¦æˆ¹æ‹Žã©œæ‡¢åŽªð£µæ¤æ ‚ã—’\"],[\"a0a1\",\"嵗𨯂迚𨸹\"],[\"a0a6\",\"僙𡵆礆匲阸𠼻ä¥\"],[\"a0ae\",\"矾\"],[\"a0b0\",\"糂𥼚糚ç¨è¦è£çµç”…瓲覔舚朌è¢ð§’†è›ç“°è„ƒçœ¤è¦‰ð¦ŸŒç•“𦻑螩蟎臈螌詉è²èƒçœ«ç“¸è“šã˜µæ¦²è¶¦\"],[\"a0d4\",\"覩瑨涹èŸð¤€‘瓧㷛煶悤憜㳑煢æ·\"],[\"a0e2\",\"ç½±ð¨¬ç‰æƒ©ä¾åˆ 㰘𣳇𥻗𧙖𥔱𡥄𡋾𩤃𦷜ð§‚å³ð¦†ð¨¨ð£™·ð ƒ®ð¦¡†ð¤¼Žä•¢å¬Ÿð¦Œé½éº¦ð¦‰«\"],[\"a3c0\",\"â€\",31,\"â¡\"],[\"c6a1\",\"â‘ \",9,\"â‘´\",9,\"â…°\",9,\"ä¸¶ä¸¿äº…äº å†‚å†–å†«å‹¹åŒ¸å©åŽ¶å¤Šå®€å·›â¼³å¹¿å»´å½å½¡æ”´æ— 疒癶辵隶¨ˆヽヾã‚ゞ〃ä»ã€…〆〇ー[]✽ã\",23],[\"c740\",\"ã™\",58,\"ァアィイ\"],[\"c7a1\",\"ã‚¥\",81,\"Ð\",5,\"ÐЖ\",4],[\"c840\",\"Л\",26,\"ёж\",25,\"⇧↸↹ã‡ð ƒŒä¹šð ‚Šåˆ‚ä’‘\"],[\"c8a1\",\"龰冈龱𧘇\"],[\"c8cd\",\"¬¦'"㈱№℡゛゜⺀⺄⺆⺇⺈⺊⺌âºâº•⺜âºâº¥âº§âºªâº¬âº®âº¶âº¼âº¾â»†â»Šâ»Œâ»â»â»–⻗⻞⻣\"],[\"c8f5\",\"ʃÉɛɔɵœøŋʊɪ\"],[\"f9fe\",\"ï¿\"],[\"fa40\",\"𠕇鋛𠗟𣿅蕌䊵ç¯å†µã™‰ð¤¥‚𨧤é„ð¡§›è‹®ð£³ˆç ¼æ„æ‹Ÿð¤¤³ð¨¦ªð Š ð¦®³ð¡Œ…ä¾«ð¢“倈𦴩𧪄𣘀𤪱𢔓倩ð ¾å¾¤ð Ž€ð ‡æ»›ð Ÿå½å„㑺儎顬ãƒè–ð¤¦¤ð ’‡å… ð£Ž´å…ªð ¯¿ð¢ƒ¼ð ‹¥ð¢”°ð –Žð£ˆ³ð¡¦ƒå®‚è½ð –³ð£²™å†²å†¸\"],[\"faa1\",\"鴴凉å‡å‡‘㳜凓𤪦决凢å‚å‡è椾ð£œå½»åˆ‹åˆ¦åˆ¼åŠµå‰—åŠ”åŠ¹å‹…ç°•è•‚å‹ è˜ð¦¬“包𨫞啉滙𣾀𠥔𣿬匳å„ð ¯¢æ³‹ð¡œ¦æ ›ç•æŠãºªã£Œð¡›¨ç‡ä’¢åå´ð¨š«å¾å¿ð¡––ð¡˜“çŸ¦åŽ“ð¨ª›åŽ åŽ«åŽ®çŽ§ð¥²ã½™çŽœåå…æ±‰ä¹‰åŸ¾å™ãª«ð ®å 𣿫𢶣å¶ð ±·å“ç¹å”«æ™—æµ›å‘ð¦“ð µ´å•å’咤䞦ð¡œð »ã¶´ð µ\"],[\"fb40\",\"𨦼𢚘啇ä³å¯ç—å–†å–©å˜…ð¡£—ð¤€ºä•’ð¤µæš³ð¡‚´å˜·æ›ð£ŠŠæš¤æšå™å™ç£±å›±éž‡å¾åœ€å›¯å›ð¨¦ã˜£ð¡‰å†ð¤†¥æ±®ç‚‹å‚㚱𦱾埦ð¡–å ƒð¡‘”ð¤£å ¦ð¤¯µå¡œå¢ªã•¡å£ 壜𡈼壻寿åƒðª…𤉸é“㖡够梦㛃湙\"],[\"fba1\",\"𡘾娤啓𡚒蔅姉𠵎ð¦²ð¦´ªð¡Ÿœå§™ð¡Ÿ»ð¡ž²ð¦¶¦æµ±ð¡ ¨ð¡›•姹𦹅媫婣㛦𤦩婷㜈媖瑥嫓𦾡𢕔㶅𡤑㜲𡚸広å‹å¶æ–ˆå¼ð§¨Žä€„ä¡ð ˆ„å¯•æ… ð¡¨´ð¥§Œð –¥å¯³å®ä´å°…ð¡„å°“çŽå°”𡲥𦬨屉ä£å²…峩峯嶋𡷹𡸷å´å´˜åµ†ð¡º¤å²ºå·—苼ã ð¤¤ð¢‰ð¢…³èŠ‡ã ¶ã¯‚å¸®æªŠå¹µå¹ºð¤’¼ð ³“åŽ¦äº·å»åލð¡±å¸‰å»´ð¨’‚\"],[\"fc40\",\"å»¹å»»ã¢ å»¼æ ¾é›å¼ð ‡ð¯¢”㫞䢮𡌺强𦢈ð¢å½˜ð¢‘±å½£éž½ð¦¹®å½²é€ð¨¨¶å¾§å¶¶ãµŸð¥‰ð¡½ªð§ƒ¸ð¢™¨é‡–𠊞𨨩怱暅𡡷㥣㷇㘹åžð¢ž´ç¥±ã¹€æ‚žæ‚¤æ‚³ð¤¦‚ð¤¦ð§©“ç’¤åƒ¡åª æ…¤è¤æ…‚慈𦻒æ†å‡´ð ™–憇宪𣾷\"],[\"fca1\",\"𢡟懓ð¨®ð©¥æ‡ã¤²ð¢¦€ð¢£æ€£æ…œæ”žæŽ‹ð „˜æ‹…ð¡°æ‹•ð¢¸æ¬ð¤§Ÿã¨—æ¸æ¸ð¡ŽŽð¡Ÿ¼æ’æ¾Šð¢¸¶é ”ð¤‚Œð¥œæ“¡æ“¥é‘»ã©¦æºã©—æ•æ¼–ð¤¨¨ð¤¨£æ–…æ•æ•Ÿð£¾æ–µð¤¥€ä¬·æ—‘äƒ˜ð¡ ©æ— æ—£å¿Ÿð£€æ˜˜ð£‡·ð£‡¸æ™„ð£†¤ð£†¥æ™‹ð ¹µæ™§ð¥‡¦æ™³æ™´ð¡¸½ð£ˆ±ð¨—´ð£‡ˆð¥Œ“çŸ…ð¢£·é¦¤æœ‚ð¤Žœð¤¨¡ã¬«æ§ºð£Ÿ‚æžæ§æ¢ð¤‡ð©ƒæŸ—ä“©æ ¢æ¹éˆ¼æ ð£¦ð¦¶ æ¡\"],[\"fd40\",\"ð£‘¯æ§¡æ¨‹ð¨«Ÿæ¥³æ£ƒð£—æ¤æ¤€ã´²ã¨ð£˜¼ã®€æž¬æ¥¡ð¨©Šä‹¼æ¤¶æ¦˜ã®¡ð ‰è£å‚槹𣙙𢄪橅𣜃æªã¯³æž±æ«ˆð©†œã°æ¬ð ¤£æƒžæ¬µæ´ð¢Ÿæºµð£«›ð Žµð¡¥˜ã€å¡ð£šæ¯¡ð£»¼æ¯œæ°·ð¢’‹ð¤£±ð¦‘汚舦汹𣶼䓅𣶽𤆤𤤌𤤀\"],[\"fda1\",\"ð£³‰ã›¥ã³«ð ´²é®ƒð£‡¹ð¢’‘ç¾æ ·ð¦´¥ð¦¶¡ð¦·«æ¶–浜湼漄𤥿𤂅𦹲蔳𦽴凇沜æ¸è®ð¨¬¡æ¸¯ð£¸¯ç‘“𣾂秌æ¹åª‘ð£‹æ¿¸ãœæ¾ð£¸°æ»ºð¡’—ð¤€½ä••é°æ½„潜㵎潴𩅰㴻澟𤅄濓𤂑𤅕𤀹𣿰𣾴𤄿凟𤅖𤅗𤅀ð¦‡ç‹ç¾ç‚§ç‚烌烕烖烟䄄㷨熴熖𤉷焫煅媈煊煮岜ð¤¥ç…é¢ð¤‹ç„¬ð¤‘šð¤¨§ð¤¨¢ç†ºð¨¯¨ç‚½çˆŽ\"],[\"fe40\",\"鑂爕夑鑃爤éð¥˜…çˆ®ç‰€ð¤¥´æ¢½ç‰•ç‰—ã¹•ð£„æ 漽犂猪猫𤠣𨠫ä£ð¨ „猨献ç玪𠰺𦨮ç‰ç‘‰ð¤‡¢ð¡›§ð¤¨¤æ˜£ã›…𤦷ð¤¦ð¤§»ç·ç•椃𤨦ç¹ð —ƒã»—瑜ð¢¢ç‘ 𨺲瑇ç¤ç‘¶èŽ¹ç‘¬ãœ°ç‘´é±æ¨¬ç’‚䥓𤪌\"],[\"fea1\",\"𤅟𤩹ð¨®å†ð¨°ƒð¡¢žç“ˆð¡¦ˆç”Žç“©ç”žð¨»™ð¡©‹å¯—𨺬鎅ç•畊畧畮𤾂㼄𤴓疎ç‘疞疴瘂瘬癑ç™ç™¯ç™¶ð¦µçšè‡¯ãŸ¸ð¦¤‘𦤎皡皥皷盌𦾟葢ð¥‚ð¥…½ð¡¸œçœžçœ¦ç€æ’¯ð¥ˆ ç˜ð£Š¬çž¯ð¨¥¤ð¨¥¨ð¡›çŸ´ç ‰ð¡¶ð¤¨’棊碯磇磓隥礮𥗠磗礴碱𧘌辸袄𨬫𦂃𢘜禆褀椂禀𥡗ç¦ð§¬¹ç¤¼ç¦©æ¸ªð§„¦ãº¨ç§†ð©„ç§”\"]]"); /***/ }), -/* 882 */ +/* 890 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -146883,7 +143945,7 @@ IconvLiteDecoderStream.prototype.collect = function(cb) { /***/ }), -/* 883 */ +/* 891 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -147107,7 +144169,7 @@ module.exports = function (iconv) { /***/ }), -/* 884 */ +/* 892 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -147183,7 +144245,7 @@ function unpipe(stream) { /***/ }), -/* 885 */ +/* 893 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -147267,10 +144329,10 @@ module.exports = (jsonString, options = {}) => { /***/ }), -/* 886 */ +/* 894 */ /***/ (function(module, exports, __webpack_require__) { -var createRange = __webpack_require__(887); +var createRange = __webpack_require__(895); /** * Creates an array of numbers (positive and/or negative) progressing from @@ -147319,12 +144381,12 @@ module.exports = range; /***/ }), -/* 887 */ +/* 895 */ /***/ (function(module, exports, __webpack_require__) { -var baseRange = __webpack_require__(888), - isIterateeCall = __webpack_require__(754), - toFinite = __webpack_require__(643); +var baseRange = __webpack_require__(896), + isIterateeCall = __webpack_require__(763), + toFinite = __webpack_require__(694); /** * Creates a `_.range` or `_.rangeRight` function. @@ -147355,7 +144417,7 @@ module.exports = createRange; /***/ }), -/* 888 */ +/* 896 */ /***/ (function(module, exports) { /* Built-in method references for those with the same name as other `lodash` methods. */ @@ -147389,743 +144451,606 @@ module.exports = baseRange; /***/ }), -/* 889 */ +/* 897 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _add_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(890); +/* harmony import */ var _add_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(898); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "add", function() { return _add_index_js__WEBPACK_IMPORTED_MODULE_0__["default"]; }); -/* harmony import */ var _addBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(896); +/* harmony import */ var _addBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(904); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addBusinessDays", function() { return _addBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_1__["default"]; }); -/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(891); +/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(899); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addDays", function() { return _addDays_index_js__WEBPACK_IMPORTED_MODULE_2__["default"]; }); -/* harmony import */ var _addHours_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(900); +/* harmony import */ var _addHours_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(908); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addHours", function() { return _addHours_index_js__WEBPACK_IMPORTED_MODULE_3__["default"]; }); -/* harmony import */ var _addISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(902); +/* harmony import */ var _addISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(910); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addISOWeekYears", function() { return _addISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_4__["default"]; }); -/* harmony import */ var _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(901); +/* harmony import */ var _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(909); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addMilliseconds", function() { return _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_5__["default"]; }); -/* harmony import */ var _addMinutes_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(911); +/* harmony import */ var _addMinutes_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(919); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addMinutes", function() { return _addMinutes_index_js__WEBPACK_IMPORTED_MODULE_6__["default"]; }); -/* harmony import */ var _addMonths_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(895); +/* harmony import */ var _addMonths_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(903); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addMonths", function() { return _addMonths_index_js__WEBPACK_IMPORTED_MODULE_7__["default"]; }); -/* harmony import */ var _addQuarters_index_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(912); +/* harmony import */ var _addQuarters_index_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(920); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addQuarters", function() { return _addQuarters_index_js__WEBPACK_IMPORTED_MODULE_8__["default"]; }); -/* harmony import */ var _addSeconds_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(913); +/* harmony import */ var _addSeconds_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(921); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addSeconds", function() { return _addSeconds_index_js__WEBPACK_IMPORTED_MODULE_9__["default"]; }); -/* harmony import */ var _addWeeks_index_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(914); +/* harmony import */ var _addWeeks_index_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(922); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addWeeks", function() { return _addWeeks_index_js__WEBPACK_IMPORTED_MODULE_10__["default"]; }); -/* harmony import */ var _addYears_index_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(915); +/* harmony import */ var _addYears_index_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(923); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "addYears", function() { return _addYears_index_js__WEBPACK_IMPORTED_MODULE_11__["default"]; }); -/* harmony import */ var _areIntervalsOverlapping_index_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(916); +/* harmony import */ var _areIntervalsOverlapping_index_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(924); /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "areIntervalsOverlapping", function() { return _areIntervalsOverlapping_index_js__WEBPACK_IMPORTED_MODULE_12__["default"]; }); -/* harmony import */ var _clamp_index_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(917); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "clamp", function() { return _clamp_index_js__WEBPACK_IMPORTED_MODULE_13__["default"]; }); - -/* harmony import */ var _closestIndexTo_index_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(920); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "closestIndexTo", function() { return _closestIndexTo_index_js__WEBPACK_IMPORTED_MODULE_14__["default"]; }); - -/* harmony import */ var _closestTo_index_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(921); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "closestTo", function() { return _closestTo_index_js__WEBPACK_IMPORTED_MODULE_15__["default"]; }); - -/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(922); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "compareAsc", function() { return _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_16__["default"]; }); - -/* harmony import */ var _compareDesc_index_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(923); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "compareDesc", function() { return _compareDesc_index_js__WEBPACK_IMPORTED_MODULE_17__["default"]; }); - -/* harmony import */ var _daysToWeeks_index_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(924); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "daysToWeeks", function() { return _daysToWeeks_index_js__WEBPACK_IMPORTED_MODULE_18__["default"]; }); - -/* harmony import */ var _differenceInBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(926); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInBusinessDays", function() { return _differenceInBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_19__["default"]; }); - -/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(908); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarDays", function() { return _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_20__["default"]; }); - -/* harmony import */ var _differenceInCalendarISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(930); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarISOWeekYears", function() { return _differenceInCalendarISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_21__["default"]; }); - -/* harmony import */ var _differenceInCalendarISOWeeks_index_js__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(931); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarISOWeeks", function() { return _differenceInCalendarISOWeeks_index_js__WEBPACK_IMPORTED_MODULE_22__["default"]; }); - -/* harmony import */ var _differenceInCalendarMonths_index_js__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(932); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarMonths", function() { return _differenceInCalendarMonths_index_js__WEBPACK_IMPORTED_MODULE_23__["default"]; }); - -/* harmony import */ var _differenceInCalendarQuarters_index_js__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(933); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarQuarters", function() { return _differenceInCalendarQuarters_index_js__WEBPACK_IMPORTED_MODULE_24__["default"]; }); - -/* harmony import */ var _differenceInCalendarWeeks_index_js__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(935); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarWeeks", function() { return _differenceInCalendarWeeks_index_js__WEBPACK_IMPORTED_MODULE_25__["default"]; }); - -/* harmony import */ var _differenceInCalendarYears_index_js__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(936); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarYears", function() { return _differenceInCalendarYears_index_js__WEBPACK_IMPORTED_MODULE_26__["default"]; }); - -/* harmony import */ var _differenceInDays_index_js__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(937); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInDays", function() { return _differenceInDays_index_js__WEBPACK_IMPORTED_MODULE_27__["default"]; }); - -/* harmony import */ var _differenceInHours_index_js__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(938); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInHours", function() { return _differenceInHours_index_js__WEBPACK_IMPORTED_MODULE_28__["default"]; }); - -/* harmony import */ var _differenceInISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(941); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInISOWeekYears", function() { return _differenceInISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_29__["default"]; }); - -/* harmony import */ var _differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(939); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInMilliseconds", function() { return _differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_30__["default"]; }); - -/* harmony import */ var _differenceInMinutes_index_js__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(943); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInMinutes", function() { return _differenceInMinutes_index_js__WEBPACK_IMPORTED_MODULE_31__["default"]; }); - -/* harmony import */ var _differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(944); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInMonths", function() { return _differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_32__["default"]; }); - -/* harmony import */ var _differenceInQuarters_index_js__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(948); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInQuarters", function() { return _differenceInQuarters_index_js__WEBPACK_IMPORTED_MODULE_33__["default"]; }); - -/* harmony import */ var _differenceInSeconds_index_js__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(949); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInSeconds", function() { return _differenceInSeconds_index_js__WEBPACK_IMPORTED_MODULE_34__["default"]; }); - -/* harmony import */ var _differenceInWeeks_index_js__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(950); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInWeeks", function() { return _differenceInWeeks_index_js__WEBPACK_IMPORTED_MODULE_35__["default"]; }); - -/* harmony import */ var _differenceInYears_index_js__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(951); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInYears", function() { return _differenceInYears_index_js__WEBPACK_IMPORTED_MODULE_36__["default"]; }); - -/* harmony import */ var _eachDayOfInterval_index_js__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(952); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachDayOfInterval", function() { return _eachDayOfInterval_index_js__WEBPACK_IMPORTED_MODULE_37__["default"]; }); - -/* harmony import */ var _eachHourOfInterval_index_js__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(953); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachHourOfInterval", function() { return _eachHourOfInterval_index_js__WEBPACK_IMPORTED_MODULE_38__["default"]; }); - -/* harmony import */ var _eachMinuteOfInterval_index_js__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(954); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachMinuteOfInterval", function() { return _eachMinuteOfInterval_index_js__WEBPACK_IMPORTED_MODULE_39__["default"]; }); - -/* harmony import */ var _eachMonthOfInterval_index_js__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(956); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachMonthOfInterval", function() { return _eachMonthOfInterval_index_js__WEBPACK_IMPORTED_MODULE_40__["default"]; }); - -/* harmony import */ var _eachQuarterOfInterval_index_js__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(957); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachQuarterOfInterval", function() { return _eachQuarterOfInterval_index_js__WEBPACK_IMPORTED_MODULE_41__["default"]; }); - -/* harmony import */ var _eachWeekOfInterval_index_js__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(959); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachWeekOfInterval", function() { return _eachWeekOfInterval_index_js__WEBPACK_IMPORTED_MODULE_42__["default"]; }); +/* harmony import */ var _closestIndexTo_index_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(925); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "closestIndexTo", function() { return _closestIndexTo_index_js__WEBPACK_IMPORTED_MODULE_13__["default"]; }); -/* harmony import */ var _eachWeekendOfInterval_index_js__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(960); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachWeekendOfInterval", function() { return _eachWeekendOfInterval_index_js__WEBPACK_IMPORTED_MODULE_43__["default"]; }); +/* harmony import */ var _closestTo_index_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(926); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "closestTo", function() { return _closestTo_index_js__WEBPACK_IMPORTED_MODULE_14__["default"]; }); -/* harmony import */ var _eachWeekendOfMonth_index_js__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(961); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachWeekendOfMonth", function() { return _eachWeekendOfMonth_index_js__WEBPACK_IMPORTED_MODULE_44__["default"]; }); +/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(927); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "compareAsc", function() { return _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_15__["default"]; }); -/* harmony import */ var _eachWeekendOfYear_index_js__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(963); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachWeekendOfYear", function() { return _eachWeekendOfYear_index_js__WEBPACK_IMPORTED_MODULE_45__["default"]; }); +/* harmony import */ var _compareDesc_index_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(928); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "compareDesc", function() { return _compareDesc_index_js__WEBPACK_IMPORTED_MODULE_16__["default"]; }); -/* harmony import */ var _eachYearOfInterval_index_js__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(966); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachYearOfInterval", function() { return _eachYearOfInterval_index_js__WEBPACK_IMPORTED_MODULE_46__["default"]; }); +/* harmony import */ var _differenceInBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(929); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInBusinessDays", function() { return _differenceInBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_17__["default"]; }); -/* harmony import */ var _endOfDay_index_js__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(946); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfDay", function() { return _endOfDay_index_js__WEBPACK_IMPORTED_MODULE_47__["default"]; }); +/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(916); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarDays", function() { return _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_18__["default"]; }); -/* harmony import */ var _endOfDecade_index_js__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(967); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfDecade", function() { return _endOfDecade_index_js__WEBPACK_IMPORTED_MODULE_48__["default"]; }); +/* harmony import */ var _differenceInCalendarISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(932); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarISOWeekYears", function() { return _differenceInCalendarISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_19__["default"]; }); -/* harmony import */ var _endOfHour_index_js__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(968); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfHour", function() { return _endOfHour_index_js__WEBPACK_IMPORTED_MODULE_49__["default"]; }); +/* harmony import */ var _differenceInCalendarISOWeeks_index_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(933); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarISOWeeks", function() { return _differenceInCalendarISOWeeks_index_js__WEBPACK_IMPORTED_MODULE_20__["default"]; }); -/* harmony import */ var _endOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(969); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfISOWeek", function() { return _endOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_50__["default"]; }); +/* harmony import */ var _differenceInCalendarMonths_index_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(934); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarMonths", function() { return _differenceInCalendarMonths_index_js__WEBPACK_IMPORTED_MODULE_21__["default"]; }); -/* harmony import */ var _endOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(971); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfISOWeekYear", function() { return _endOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_51__["default"]; }); +/* harmony import */ var _differenceInCalendarQuarters_index_js__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(935); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarQuarters", function() { return _differenceInCalendarQuarters_index_js__WEBPACK_IMPORTED_MODULE_22__["default"]; }); -/* harmony import */ var _endOfMinute_index_js__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(972); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfMinute", function() { return _endOfMinute_index_js__WEBPACK_IMPORTED_MODULE_52__["default"]; }); +/* harmony import */ var _differenceInCalendarWeeks_index_js__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(937); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarWeeks", function() { return _differenceInCalendarWeeks_index_js__WEBPACK_IMPORTED_MODULE_23__["default"]; }); -/* harmony import */ var _endOfMonth_index_js__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(947); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfMonth", function() { return _endOfMonth_index_js__WEBPACK_IMPORTED_MODULE_53__["default"]; }); +/* harmony import */ var _differenceInCalendarYears_index_js__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(938); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInCalendarYears", function() { return _differenceInCalendarYears_index_js__WEBPACK_IMPORTED_MODULE_24__["default"]; }); -/* harmony import */ var _endOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(973); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfQuarter", function() { return _endOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_54__["default"]; }); +/* harmony import */ var _differenceInDays_index_js__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(939); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInDays", function() { return _differenceInDays_index_js__WEBPACK_IMPORTED_MODULE_25__["default"]; }); -/* harmony import */ var _endOfSecond_index_js__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(974); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfSecond", function() { return _endOfSecond_index_js__WEBPACK_IMPORTED_MODULE_55__["default"]; }); +/* harmony import */ var _differenceInHours_index_js__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(940); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInHours", function() { return _differenceInHours_index_js__WEBPACK_IMPORTED_MODULE_26__["default"]; }); -/* harmony import */ var _endOfToday_index_js__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(975); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfToday", function() { return _endOfToday_index_js__WEBPACK_IMPORTED_MODULE_56__["default"]; }); +/* harmony import */ var _differenceInISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(942); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInISOWeekYears", function() { return _differenceInISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_27__["default"]; }); -/* harmony import */ var _endOfTomorrow_index_js__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(976); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfTomorrow", function() { return _endOfTomorrow_index_js__WEBPACK_IMPORTED_MODULE_57__["default"]; }); +/* harmony import */ var _differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(941); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInMilliseconds", function() { return _differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_28__["default"]; }); -/* harmony import */ var _endOfWeek_index_js__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(970); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfWeek", function() { return _endOfWeek_index_js__WEBPACK_IMPORTED_MODULE_58__["default"]; }); +/* harmony import */ var _differenceInMinutes_index_js__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(944); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInMinutes", function() { return _differenceInMinutes_index_js__WEBPACK_IMPORTED_MODULE_29__["default"]; }); -/* harmony import */ var _endOfYear_index_js__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(965); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfYear", function() { return _endOfYear_index_js__WEBPACK_IMPORTED_MODULE_59__["default"]; }); +/* harmony import */ var _differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(945); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInMonths", function() { return _differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_30__["default"]; }); -/* harmony import */ var _endOfYesterday_index_js__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(977); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfYesterday", function() { return _endOfYesterday_index_js__WEBPACK_IMPORTED_MODULE_60__["default"]; }); +/* harmony import */ var _differenceInQuarters_index_js__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(949); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInQuarters", function() { return _differenceInQuarters_index_js__WEBPACK_IMPORTED_MODULE_31__["default"]; }); -/* harmony import */ var _format_index_js__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(978); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "format", function() { return _format_index_js__WEBPACK_IMPORTED_MODULE_61__["default"]; }); +/* harmony import */ var _differenceInSeconds_index_js__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(950); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInSeconds", function() { return _differenceInSeconds_index_js__WEBPACK_IMPORTED_MODULE_32__["default"]; }); -/* harmony import */ var _formatDistance_index_js__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(1004); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatDistance", function() { return _formatDistance_index_js__WEBPACK_IMPORTED_MODULE_62__["default"]; }); +/* harmony import */ var _differenceInWeeks_index_js__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(951); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInWeeks", function() { return _differenceInWeeks_index_js__WEBPACK_IMPORTED_MODULE_33__["default"]; }); -/* harmony import */ var _formatDistanceStrict_index_js__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(1007); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatDistanceStrict", function() { return _formatDistanceStrict_index_js__WEBPACK_IMPORTED_MODULE_63__["default"]; }); +/* harmony import */ var _differenceInYears_index_js__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(952); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "differenceInYears", function() { return _differenceInYears_index_js__WEBPACK_IMPORTED_MODULE_34__["default"]; }); -/* harmony import */ var _formatDistanceToNow_index_js__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(1008); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatDistanceToNow", function() { return _formatDistanceToNow_index_js__WEBPACK_IMPORTED_MODULE_64__["default"]; }); +/* harmony import */ var _eachDayOfInterval_index_js__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(953); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachDayOfInterval", function() { return _eachDayOfInterval_index_js__WEBPACK_IMPORTED_MODULE_35__["default"]; }); -/* harmony import */ var _formatDistanceToNowStrict_index_js__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(1009); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatDistanceToNowStrict", function() { return _formatDistanceToNowStrict_index_js__WEBPACK_IMPORTED_MODULE_65__["default"]; }); +/* harmony import */ var _eachHourOfInterval_index_js__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(954); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachHourOfInterval", function() { return _eachHourOfInterval_index_js__WEBPACK_IMPORTED_MODULE_36__["default"]; }); -/* harmony import */ var _formatDuration_index_js__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(1010); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatDuration", function() { return _formatDuration_index_js__WEBPACK_IMPORTED_MODULE_66__["default"]; }); +/* harmony import */ var _eachMonthOfInterval_index_js__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(955); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachMonthOfInterval", function() { return _eachMonthOfInterval_index_js__WEBPACK_IMPORTED_MODULE_37__["default"]; }); -/* harmony import */ var _formatISO_index_js__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(1011); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatISO", function() { return _formatISO_index_js__WEBPACK_IMPORTED_MODULE_67__["default"]; }); +/* harmony import */ var _eachQuarterOfInterval_index_js__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(956); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachQuarterOfInterval", function() { return _eachQuarterOfInterval_index_js__WEBPACK_IMPORTED_MODULE_38__["default"]; }); -/* harmony import */ var _formatISO9075_index_js__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(1012); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatISO9075", function() { return _formatISO9075_index_js__WEBPACK_IMPORTED_MODULE_68__["default"]; }); +/* harmony import */ var _eachWeekOfInterval_index_js__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(958); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachWeekOfInterval", function() { return _eachWeekOfInterval_index_js__WEBPACK_IMPORTED_MODULE_39__["default"]; }); -/* harmony import */ var _formatISODuration_index_js__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(1013); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatISODuration", function() { return _formatISODuration_index_js__WEBPACK_IMPORTED_MODULE_69__["default"]; }); +/* harmony import */ var _eachWeekendOfInterval_index_js__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(959); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachWeekendOfInterval", function() { return _eachWeekendOfInterval_index_js__WEBPACK_IMPORTED_MODULE_40__["default"]; }); -/* harmony import */ var _formatRFC3339_index_js__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(1014); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatRFC3339", function() { return _formatRFC3339_index_js__WEBPACK_IMPORTED_MODULE_70__["default"]; }); +/* harmony import */ var _eachWeekendOfMonth_index_js__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(960); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachWeekendOfMonth", function() { return _eachWeekendOfMonth_index_js__WEBPACK_IMPORTED_MODULE_41__["default"]; }); -/* harmony import */ var _formatRFC7231_index_js__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(1015); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatRFC7231", function() { return _formatRFC7231_index_js__WEBPACK_IMPORTED_MODULE_71__["default"]; }); +/* harmony import */ var _eachWeekendOfYear_index_js__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(962); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachWeekendOfYear", function() { return _eachWeekendOfYear_index_js__WEBPACK_IMPORTED_MODULE_42__["default"]; }); -/* harmony import */ var _formatRelative_index_js__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(1016); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatRelative", function() { return _formatRelative_index_js__WEBPACK_IMPORTED_MODULE_72__["default"]; }); +/* harmony import */ var _eachYearOfInterval_index_js__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(965); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "eachYearOfInterval", function() { return _eachYearOfInterval_index_js__WEBPACK_IMPORTED_MODULE_43__["default"]; }); -/* harmony import */ var _fromUnixTime_index_js__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(1017); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fromUnixTime", function() { return _fromUnixTime_index_js__WEBPACK_IMPORTED_MODULE_73__["default"]; }); +/* harmony import */ var _endOfDay_index_js__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(947); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfDay", function() { return _endOfDay_index_js__WEBPACK_IMPORTED_MODULE_44__["default"]; }); -/* harmony import */ var _getDate_index_js__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(1018); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDate", function() { return _getDate_index_js__WEBPACK_IMPORTED_MODULE_74__["default"]; }); +/* harmony import */ var _endOfDecade_index_js__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(966); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfDecade", function() { return _endOfDecade_index_js__WEBPACK_IMPORTED_MODULE_45__["default"]; }); -/* harmony import */ var _getDay_index_js__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(1019); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDay", function() { return _getDay_index_js__WEBPACK_IMPORTED_MODULE_75__["default"]; }); +/* harmony import */ var _endOfHour_index_js__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(967); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfHour", function() { return _endOfHour_index_js__WEBPACK_IMPORTED_MODULE_46__["default"]; }); -/* harmony import */ var _getDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(1020); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDayOfYear", function() { return _getDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_76__["default"]; }); +/* harmony import */ var _endOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(968); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfISOWeek", function() { return _endOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_47__["default"]; }); -/* harmony import */ var _getDaysInMonth_index_js__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(1021); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDaysInMonth", function() { return _getDaysInMonth_index_js__WEBPACK_IMPORTED_MODULE_77__["default"]; }); +/* harmony import */ var _endOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(970); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfISOWeekYear", function() { return _endOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_48__["default"]; }); -/* harmony import */ var _getDaysInYear_index_js__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(1022); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDaysInYear", function() { return _getDaysInYear_index_js__WEBPACK_IMPORTED_MODULE_78__["default"]; }); +/* harmony import */ var _endOfMinute_index_js__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(971); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfMinute", function() { return _endOfMinute_index_js__WEBPACK_IMPORTED_MODULE_49__["default"]; }); -/* harmony import */ var _getDecade_index_js__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(1024); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDecade", function() { return _getDecade_index_js__WEBPACK_IMPORTED_MODULE_79__["default"]; }); +/* harmony import */ var _endOfMonth_index_js__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(948); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfMonth", function() { return _endOfMonth_index_js__WEBPACK_IMPORTED_MODULE_50__["default"]; }); -/* harmony import */ var _getHours_index_js__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(1025); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getHours", function() { return _getHours_index_js__WEBPACK_IMPORTED_MODULE_80__["default"]; }); +/* harmony import */ var _endOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(972); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfQuarter", function() { return _endOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_51__["default"]; }); -/* harmony import */ var _getISODay_index_js__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(1026); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getISODay", function() { return _getISODay_index_js__WEBPACK_IMPORTED_MODULE_81__["default"]; }); +/* harmony import */ var _endOfSecond_index_js__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(973); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfSecond", function() { return _endOfSecond_index_js__WEBPACK_IMPORTED_MODULE_52__["default"]; }); -/* harmony import */ var _getISOWeek_index_js__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(1027); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getISOWeek", function() { return _getISOWeek_index_js__WEBPACK_IMPORTED_MODULE_82__["default"]; }); +/* harmony import */ var _endOfToday_index_js__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(974); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfToday", function() { return _endOfToday_index_js__WEBPACK_IMPORTED_MODULE_53__["default"]; }); -/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(903); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getISOWeekYear", function() { return _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_83__["default"]; }); +/* harmony import */ var _endOfTomorrow_index_js__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(975); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfTomorrow", function() { return _endOfTomorrow_index_js__WEBPACK_IMPORTED_MODULE_54__["default"]; }); -/* harmony import */ var _getISOWeeksInYear_index_js__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(1028); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getISOWeeksInYear", function() { return _getISOWeeksInYear_index_js__WEBPACK_IMPORTED_MODULE_84__["default"]; }); +/* harmony import */ var _endOfWeek_index_js__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(969); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfWeek", function() { return _endOfWeek_index_js__WEBPACK_IMPORTED_MODULE_55__["default"]; }); -/* harmony import */ var _getMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(1029); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getMilliseconds", function() { return _getMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_85__["default"]; }); +/* harmony import */ var _endOfYear_index_js__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(964); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfYear", function() { return _endOfYear_index_js__WEBPACK_IMPORTED_MODULE_56__["default"]; }); -/* harmony import */ var _getMinutes_index_js__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(1030); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getMinutes", function() { return _getMinutes_index_js__WEBPACK_IMPORTED_MODULE_86__["default"]; }); +/* harmony import */ var _endOfYesterday_index_js__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(976); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "endOfYesterday", function() { return _endOfYesterday_index_js__WEBPACK_IMPORTED_MODULE_57__["default"]; }); -/* harmony import */ var _getMonth_index_js__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(1031); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getMonth", function() { return _getMonth_index_js__WEBPACK_IMPORTED_MODULE_87__["default"]; }); +/* harmony import */ var _format_index_js__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(977); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "format", function() { return _format_index_js__WEBPACK_IMPORTED_MODULE_58__["default"]; }); -/* harmony import */ var _getOverlappingDaysInIntervals_index_js__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(1032); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getOverlappingDaysInIntervals", function() { return _getOverlappingDaysInIntervals_index_js__WEBPACK_IMPORTED_MODULE_88__["default"]; }); +/* harmony import */ var _formatDistance_index_js__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(1003); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatDistance", function() { return _formatDistance_index_js__WEBPACK_IMPORTED_MODULE_59__["default"]; }); -/* harmony import */ var _getQuarter_index_js__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(934); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getQuarter", function() { return _getQuarter_index_js__WEBPACK_IMPORTED_MODULE_89__["default"]; }); +/* harmony import */ var _formatDistanceStrict_index_js__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(1006); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatDistanceStrict", function() { return _formatDistanceStrict_index_js__WEBPACK_IMPORTED_MODULE_60__["default"]; }); -/* harmony import */ var _getSeconds_index_js__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(1033); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getSeconds", function() { return _getSeconds_index_js__WEBPACK_IMPORTED_MODULE_90__["default"]; }); +/* harmony import */ var _formatDistanceToNow_index_js__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(1007); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatDistanceToNow", function() { return _formatDistanceToNow_index_js__WEBPACK_IMPORTED_MODULE_61__["default"]; }); -/* harmony import */ var _getTime_index_js__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(1034); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getTime", function() { return _getTime_index_js__WEBPACK_IMPORTED_MODULE_91__["default"]; }); +/* harmony import */ var _formatDistanceToNowStrict_index_js__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(1008); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatDistanceToNowStrict", function() { return _formatDistanceToNowStrict_index_js__WEBPACK_IMPORTED_MODULE_62__["default"]; }); -/* harmony import */ var _getUnixTime_index_js__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(1035); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getUnixTime", function() { return _getUnixTime_index_js__WEBPACK_IMPORTED_MODULE_92__["default"]; }); +/* harmony import */ var _formatDuration_index_js__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(1009); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatDuration", function() { return _formatDuration_index_js__WEBPACK_IMPORTED_MODULE_63__["default"]; }); -/* harmony import */ var _getWeek_index_js__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(1036); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getWeek", function() { return _getWeek_index_js__WEBPACK_IMPORTED_MODULE_93__["default"]; }); +/* harmony import */ var _formatISO_index_js__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(1010); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatISO", function() { return _formatISO_index_js__WEBPACK_IMPORTED_MODULE_64__["default"]; }); -/* harmony import */ var _getWeekOfMonth_index_js__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(1039); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getWeekOfMonth", function() { return _getWeekOfMonth_index_js__WEBPACK_IMPORTED_MODULE_94__["default"]; }); +/* harmony import */ var _formatISO9075_index_js__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(1011); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatISO9075", function() { return _formatISO9075_index_js__WEBPACK_IMPORTED_MODULE_65__["default"]; }); -/* harmony import */ var _getWeekYear_index_js__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(1038); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getWeekYear", function() { return _getWeekYear_index_js__WEBPACK_IMPORTED_MODULE_95__["default"]; }); +/* harmony import */ var _formatISODuration_index_js__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(1012); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatISODuration", function() { return _formatISODuration_index_js__WEBPACK_IMPORTED_MODULE_66__["default"]; }); -/* harmony import */ var _getWeeksInMonth_index_js__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(1040); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getWeeksInMonth", function() { return _getWeeksInMonth_index_js__WEBPACK_IMPORTED_MODULE_96__["default"]; }); +/* harmony import */ var _formatRFC3339_index_js__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(1013); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatRFC3339", function() { return _formatRFC3339_index_js__WEBPACK_IMPORTED_MODULE_67__["default"]; }); -/* harmony import */ var _getYear_index_js__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(1042); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getYear", function() { return _getYear_index_js__WEBPACK_IMPORTED_MODULE_97__["default"]; }); +/* harmony import */ var _formatRFC7231_index_js__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(1014); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatRFC7231", function() { return _formatRFC7231_index_js__WEBPACK_IMPORTED_MODULE_68__["default"]; }); -/* harmony import */ var _hoursToMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(1043); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hoursToMilliseconds", function() { return _hoursToMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_98__["default"]; }); +/* harmony import */ var _formatRelative_index_js__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(1015); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "formatRelative", function() { return _formatRelative_index_js__WEBPACK_IMPORTED_MODULE_69__["default"]; }); -/* harmony import */ var _hoursToMinutes_index_js__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(1044); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hoursToMinutes", function() { return _hoursToMinutes_index_js__WEBPACK_IMPORTED_MODULE_99__["default"]; }); +/* harmony import */ var _fromUnixTime_index_js__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(1016); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "fromUnixTime", function() { return _fromUnixTime_index_js__WEBPACK_IMPORTED_MODULE_70__["default"]; }); -/* harmony import */ var _hoursToSeconds_index_js__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(1045); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hoursToSeconds", function() { return _hoursToSeconds_index_js__WEBPACK_IMPORTED_MODULE_100__["default"]; }); +/* harmony import */ var _getDate_index_js__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(1017); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDate", function() { return _getDate_index_js__WEBPACK_IMPORTED_MODULE_71__["default"]; }); -/* harmony import */ var _intervalToDuration_index_js__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(1046); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "intervalToDuration", function() { return _intervalToDuration_index_js__WEBPACK_IMPORTED_MODULE_101__["default"]; }); +/* harmony import */ var _getDay_index_js__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(1018); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDay", function() { return _getDay_index_js__WEBPACK_IMPORTED_MODULE_72__["default"]; }); -/* harmony import */ var _intlFormat_index_js__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(1050); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "intlFormat", function() { return _intlFormat_index_js__WEBPACK_IMPORTED_MODULE_102__["default"]; }); +/* harmony import */ var _getDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(1019); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDayOfYear", function() { return _getDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_73__["default"]; }); -/* harmony import */ var _isAfter_index_js__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(1051); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isAfter", function() { return _isAfter_index_js__WEBPACK_IMPORTED_MODULE_103__["default"]; }); +/* harmony import */ var _getDaysInMonth_index_js__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(1020); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDaysInMonth", function() { return _getDaysInMonth_index_js__WEBPACK_IMPORTED_MODULE_74__["default"]; }); -/* harmony import */ var _isBefore_index_js__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(1052); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isBefore", function() { return _isBefore_index_js__WEBPACK_IMPORTED_MODULE_104__["default"]; }); +/* harmony import */ var _getDaysInYear_index_js__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(1021); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDaysInYear", function() { return _getDaysInYear_index_js__WEBPACK_IMPORTED_MODULE_75__["default"]; }); -/* harmony import */ var _isDate_index_js__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(928); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isDate", function() { return _isDate_index_js__WEBPACK_IMPORTED_MODULE_105__["default"]; }); +/* harmony import */ var _getDecade_index_js__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(1023); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getDecade", function() { return _getDecade_index_js__WEBPACK_IMPORTED_MODULE_76__["default"]; }); -/* harmony import */ var _isEqual_index_js__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(1053); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isEqual", function() { return _isEqual_index_js__WEBPACK_IMPORTED_MODULE_106__["default"]; }); +/* harmony import */ var _getHours_index_js__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(1024); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getHours", function() { return _getHours_index_js__WEBPACK_IMPORTED_MODULE_77__["default"]; }); -/* harmony import */ var _isExists_index_js__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(1054); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isExists", function() { return _isExists_index_js__WEBPACK_IMPORTED_MODULE_107__["default"]; }); +/* harmony import */ var _getISODay_index_js__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(1025); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getISODay", function() { return _getISODay_index_js__WEBPACK_IMPORTED_MODULE_78__["default"]; }); -/* harmony import */ var _isFirstDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(1055); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isFirstDayOfMonth", function() { return _isFirstDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_108__["default"]; }); +/* harmony import */ var _getISOWeek_index_js__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(1026); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getISOWeek", function() { return _getISOWeek_index_js__WEBPACK_IMPORTED_MODULE_79__["default"]; }); -/* harmony import */ var _isFriday_index_js__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(1056); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isFriday", function() { return _isFriday_index_js__WEBPACK_IMPORTED_MODULE_109__["default"]; }); +/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(911); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getISOWeekYear", function() { return _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_80__["default"]; }); -/* harmony import */ var _isFuture_index_js__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(1057); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isFuture", function() { return _isFuture_index_js__WEBPACK_IMPORTED_MODULE_110__["default"]; }); +/* harmony import */ var _getISOWeeksInYear_index_js__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(1027); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getISOWeeksInYear", function() { return _getISOWeeksInYear_index_js__WEBPACK_IMPORTED_MODULE_81__["default"]; }); -/* harmony import */ var _isLastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(945); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isLastDayOfMonth", function() { return _isLastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_111__["default"]; }); +/* harmony import */ var _getMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(1028); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getMilliseconds", function() { return _getMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_82__["default"]; }); -/* harmony import */ var _isLeapYear_index_js__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(1023); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isLeapYear", function() { return _isLeapYear_index_js__WEBPACK_IMPORTED_MODULE_112__["default"]; }); +/* harmony import */ var _getMinutes_index_js__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(1029); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getMinutes", function() { return _getMinutes_index_js__WEBPACK_IMPORTED_MODULE_83__["default"]; }); -/* harmony import */ var _isMatch_index_js__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(1058); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isMatch", function() { return _isMatch_index_js__WEBPACK_IMPORTED_MODULE_113__["default"]; }); +/* harmony import */ var _getMonth_index_js__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(1030); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getMonth", function() { return _getMonth_index_js__WEBPACK_IMPORTED_MODULE_84__["default"]; }); -/* harmony import */ var _isMonday_index_js__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(1065); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isMonday", function() { return _isMonday_index_js__WEBPACK_IMPORTED_MODULE_114__["default"]; }); +/* harmony import */ var _getOverlappingDaysInIntervals_index_js__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(1031); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getOverlappingDaysInIntervals", function() { return _getOverlappingDaysInIntervals_index_js__WEBPACK_IMPORTED_MODULE_85__["default"]; }); -/* harmony import */ var _isPast_index_js__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(1066); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isPast", function() { return _isPast_index_js__WEBPACK_IMPORTED_MODULE_115__["default"]; }); +/* harmony import */ var _getQuarter_index_js__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(936); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getQuarter", function() { return _getQuarter_index_js__WEBPACK_IMPORTED_MODULE_86__["default"]; }); -/* harmony import */ var _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(929); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameDay", function() { return _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_116__["default"]; }); +/* harmony import */ var _getSeconds_index_js__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(1032); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getSeconds", function() { return _getSeconds_index_js__WEBPACK_IMPORTED_MODULE_87__["default"]; }); -/* harmony import */ var _isSameHour_index_js__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(1067); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameHour", function() { return _isSameHour_index_js__WEBPACK_IMPORTED_MODULE_117__["default"]; }); +/* harmony import */ var _getTime_index_js__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(1033); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getTime", function() { return _getTime_index_js__WEBPACK_IMPORTED_MODULE_88__["default"]; }); -/* harmony import */ var _isSameISOWeek_index_js__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(1069); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameISOWeek", function() { return _isSameISOWeek_index_js__WEBPACK_IMPORTED_MODULE_118__["default"]; }); +/* harmony import */ var _getUnixTime_index_js__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(1034); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getUnixTime", function() { return _getUnixTime_index_js__WEBPACK_IMPORTED_MODULE_89__["default"]; }); -/* harmony import */ var _isSameISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(1071); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameISOWeekYear", function() { return _isSameISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_119__["default"]; }); +/* harmony import */ var _getWeek_index_js__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(1035); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getWeek", function() { return _getWeek_index_js__WEBPACK_IMPORTED_MODULE_90__["default"]; }); -/* harmony import */ var _isSameMinute_index_js__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(1072); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameMinute", function() { return _isSameMinute_index_js__WEBPACK_IMPORTED_MODULE_120__["default"]; }); +/* harmony import */ var _getWeekOfMonth_index_js__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(1038); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getWeekOfMonth", function() { return _getWeekOfMonth_index_js__WEBPACK_IMPORTED_MODULE_91__["default"]; }); -/* harmony import */ var _isSameMonth_index_js__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(1073); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameMonth", function() { return _isSameMonth_index_js__WEBPACK_IMPORTED_MODULE_121__["default"]; }); +/* harmony import */ var _getWeekYear_index_js__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(1037); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getWeekYear", function() { return _getWeekYear_index_js__WEBPACK_IMPORTED_MODULE_92__["default"]; }); -/* harmony import */ var _isSameQuarter_index_js__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(1074); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameQuarter", function() { return _isSameQuarter_index_js__WEBPACK_IMPORTED_MODULE_122__["default"]; }); +/* harmony import */ var _getWeeksInMonth_index_js__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(1039); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getWeeksInMonth", function() { return _getWeeksInMonth_index_js__WEBPACK_IMPORTED_MODULE_93__["default"]; }); -/* harmony import */ var _isSameSecond_index_js__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(1075); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameSecond", function() { return _isSameSecond_index_js__WEBPACK_IMPORTED_MODULE_123__["default"]; }); +/* harmony import */ var _getYear_index_js__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(1041); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getYear", function() { return _getYear_index_js__WEBPACK_IMPORTED_MODULE_94__["default"]; }); -/* harmony import */ var _isSameWeek_index_js__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(1070); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameWeek", function() { return _isSameWeek_index_js__WEBPACK_IMPORTED_MODULE_124__["default"]; }); +/* harmony import */ var _intervalToDuration_index_js__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(1042); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "intervalToDuration", function() { return _intervalToDuration_index_js__WEBPACK_IMPORTED_MODULE_95__["default"]; }); -/* harmony import */ var _isSameYear_index_js__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(1077); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameYear", function() { return _isSameYear_index_js__WEBPACK_IMPORTED_MODULE_125__["default"]; }); +/* harmony import */ var _isAfter_index_js__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(1046); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isAfter", function() { return _isAfter_index_js__WEBPACK_IMPORTED_MODULE_96__["default"]; }); -/* harmony import */ var _isSaturday_index_js__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(899); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSaturday", function() { return _isSaturday_index_js__WEBPACK_IMPORTED_MODULE_126__["default"]; }); +/* harmony import */ var _isBefore_index_js__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(1047); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isBefore", function() { return _isBefore_index_js__WEBPACK_IMPORTED_MODULE_97__["default"]; }); -/* harmony import */ var _isSunday_index_js__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(898); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSunday", function() { return _isSunday_index_js__WEBPACK_IMPORTED_MODULE_127__["default"]; }); +/* harmony import */ var _isDate_index_js__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(1048); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isDate", function() { return _isDate_index_js__WEBPACK_IMPORTED_MODULE_98__["default"]; }); -/* harmony import */ var _isThisHour_index_js__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(1078); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisHour", function() { return _isThisHour_index_js__WEBPACK_IMPORTED_MODULE_128__["default"]; }); +/* harmony import */ var _isEqual_index_js__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(1049); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isEqual", function() { return _isEqual_index_js__WEBPACK_IMPORTED_MODULE_99__["default"]; }); -/* harmony import */ var _isThisISOWeek_index_js__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(1079); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisISOWeek", function() { return _isThisISOWeek_index_js__WEBPACK_IMPORTED_MODULE_129__["default"]; }); +/* harmony import */ var _isExists_index_js__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(1050); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isExists", function() { return _isExists_index_js__WEBPACK_IMPORTED_MODULE_100__["default"]; }); -/* harmony import */ var _isThisMinute_index_js__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(1080); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisMinute", function() { return _isThisMinute_index_js__WEBPACK_IMPORTED_MODULE_130__["default"]; }); +/* harmony import */ var _isFirstDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(1051); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isFirstDayOfMonth", function() { return _isFirstDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_101__["default"]; }); -/* harmony import */ var _isThisMonth_index_js__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(1081); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisMonth", function() { return _isThisMonth_index_js__WEBPACK_IMPORTED_MODULE_131__["default"]; }); +/* harmony import */ var _isFriday_index_js__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(1052); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isFriday", function() { return _isFriday_index_js__WEBPACK_IMPORTED_MODULE_102__["default"]; }); -/* harmony import */ var _isThisQuarter_index_js__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(1082); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisQuarter", function() { return _isThisQuarter_index_js__WEBPACK_IMPORTED_MODULE_132__["default"]; }); +/* harmony import */ var _isFuture_index_js__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(1053); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isFuture", function() { return _isFuture_index_js__WEBPACK_IMPORTED_MODULE_103__["default"]; }); -/* harmony import */ var _isThisSecond_index_js__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(1083); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisSecond", function() { return _isThisSecond_index_js__WEBPACK_IMPORTED_MODULE_133__["default"]; }); +/* harmony import */ var _isLastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(946); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isLastDayOfMonth", function() { return _isLastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_104__["default"]; }); -/* harmony import */ var _isThisWeek_index_js__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(1084); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisWeek", function() { return _isThisWeek_index_js__WEBPACK_IMPORTED_MODULE_134__["default"]; }); +/* harmony import */ var _isLeapYear_index_js__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(1022); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isLeapYear", function() { return _isLeapYear_index_js__WEBPACK_IMPORTED_MODULE_105__["default"]; }); -/* harmony import */ var _isThisYear_index_js__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(1085); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisYear", function() { return _isThisYear_index_js__WEBPACK_IMPORTED_MODULE_135__["default"]; }); +/* harmony import */ var _isMatch_index_js__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(1054); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isMatch", function() { return _isMatch_index_js__WEBPACK_IMPORTED_MODULE_106__["default"]; }); -/* harmony import */ var _isThursday_index_js__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(1086); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThursday", function() { return _isThursday_index_js__WEBPACK_IMPORTED_MODULE_136__["default"]; }); +/* harmony import */ var _isMonday_index_js__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(1061); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isMonday", function() { return _isMonday_index_js__WEBPACK_IMPORTED_MODULE_107__["default"]; }); -/* harmony import */ var _isToday_index_js__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(1087); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isToday", function() { return _isToday_index_js__WEBPACK_IMPORTED_MODULE_137__["default"]; }); +/* harmony import */ var _isPast_index_js__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(1062); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isPast", function() { return _isPast_index_js__WEBPACK_IMPORTED_MODULE_108__["default"]; }); -/* harmony import */ var _isTomorrow_index_js__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(1088); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isTomorrow", function() { return _isTomorrow_index_js__WEBPACK_IMPORTED_MODULE_138__["default"]; }); +/* harmony import */ var _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(931); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameDay", function() { return _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_109__["default"]; }); -/* harmony import */ var _isTuesday_index_js__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(1089); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isTuesday", function() { return _isTuesday_index_js__WEBPACK_IMPORTED_MODULE_139__["default"]; }); +/* harmony import */ var _isSameHour_index_js__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(1063); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameHour", function() { return _isSameHour_index_js__WEBPACK_IMPORTED_MODULE_110__["default"]; }); -/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(927); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isValid", function() { return _isValid_index_js__WEBPACK_IMPORTED_MODULE_140__["default"]; }); +/* harmony import */ var _isSameISOWeek_index_js__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(1065); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameISOWeek", function() { return _isSameISOWeek_index_js__WEBPACK_IMPORTED_MODULE_111__["default"]; }); -/* harmony import */ var _isWednesday_index_js__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(1090); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isWednesday", function() { return _isWednesday_index_js__WEBPACK_IMPORTED_MODULE_141__["default"]; }); +/* harmony import */ var _isSameISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(1067); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameISOWeekYear", function() { return _isSameISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_112__["default"]; }); -/* harmony import */ var _isWeekend_index_js__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(897); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isWeekend", function() { return _isWeekend_index_js__WEBPACK_IMPORTED_MODULE_142__["default"]; }); +/* harmony import */ var _isSameMinute_index_js__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(1068); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameMinute", function() { return _isSameMinute_index_js__WEBPACK_IMPORTED_MODULE_113__["default"]; }); -/* harmony import */ var _isWithinInterval_index_js__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(1091); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isWithinInterval", function() { return _isWithinInterval_index_js__WEBPACK_IMPORTED_MODULE_143__["default"]; }); +/* harmony import */ var _isSameMonth_index_js__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(1070); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameMonth", function() { return _isSameMonth_index_js__WEBPACK_IMPORTED_MODULE_114__["default"]; }); -/* harmony import */ var _isYesterday_index_js__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(1092); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isYesterday", function() { return _isYesterday_index_js__WEBPACK_IMPORTED_MODULE_144__["default"]; }); +/* harmony import */ var _isSameQuarter_index_js__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(1071); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameQuarter", function() { return _isSameQuarter_index_js__WEBPACK_IMPORTED_MODULE_115__["default"]; }); -/* harmony import */ var _lastDayOfDecade_index_js__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(1093); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfDecade", function() { return _lastDayOfDecade_index_js__WEBPACK_IMPORTED_MODULE_145__["default"]; }); +/* harmony import */ var _isSameSecond_index_js__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(1072); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameSecond", function() { return _isSameSecond_index_js__WEBPACK_IMPORTED_MODULE_116__["default"]; }); -/* harmony import */ var _lastDayOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(1094); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfISOWeek", function() { return _lastDayOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_146__["default"]; }); +/* harmony import */ var _isSameWeek_index_js__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(1066); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameWeek", function() { return _isSameWeek_index_js__WEBPACK_IMPORTED_MODULE_117__["default"]; }); -/* harmony import */ var _lastDayOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(1096); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfISOWeekYear", function() { return _lastDayOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_147__["default"]; }); +/* harmony import */ var _isSameYear_index_js__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(1074); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSameYear", function() { return _isSameYear_index_js__WEBPACK_IMPORTED_MODULE_118__["default"]; }); -/* harmony import */ var _lastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(1041); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfMonth", function() { return _lastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_148__["default"]; }); +/* harmony import */ var _isSaturday_index_js__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(907); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSaturday", function() { return _isSaturday_index_js__WEBPACK_IMPORTED_MODULE_119__["default"]; }); -/* harmony import */ var _lastDayOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(1097); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfQuarter", function() { return _lastDayOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_149__["default"]; }); +/* harmony import */ var _isSunday_index_js__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(906); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isSunday", function() { return _isSunday_index_js__WEBPACK_IMPORTED_MODULE_120__["default"]; }); -/* harmony import */ var _lastDayOfWeek_index_js__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(1095); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfWeek", function() { return _lastDayOfWeek_index_js__WEBPACK_IMPORTED_MODULE_150__["default"]; }); +/* harmony import */ var _isThisHour_index_js__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(1075); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisHour", function() { return _isThisHour_index_js__WEBPACK_IMPORTED_MODULE_121__["default"]; }); -/* harmony import */ var _lastDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(1098); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfYear", function() { return _lastDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_151__["default"]; }); +/* harmony import */ var _isThisISOWeek_index_js__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(1076); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisISOWeek", function() { return _isThisISOWeek_index_js__WEBPACK_IMPORTED_MODULE_122__["default"]; }); -/* harmony import */ var _lightFormat_index_js__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(1099); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lightFormat", function() { return _lightFormat_index_js__WEBPACK_IMPORTED_MODULE_152__["default"]; }); +/* harmony import */ var _isThisMinute_index_js__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(1077); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisMinute", function() { return _isThisMinute_index_js__WEBPACK_IMPORTED_MODULE_123__["default"]; }); -/* harmony import */ var _max_index_js__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(918); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "max", function() { return _max_index_js__WEBPACK_IMPORTED_MODULE_153__["default"]; }); +/* harmony import */ var _isThisMonth_index_js__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(1078); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisMonth", function() { return _isThisMonth_index_js__WEBPACK_IMPORTED_MODULE_124__["default"]; }); -/* harmony import */ var _milliseconds_index_js__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(1100); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "milliseconds", function() { return _milliseconds_index_js__WEBPACK_IMPORTED_MODULE_154__["default"]; }); +/* harmony import */ var _isThisQuarter_index_js__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(1079); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisQuarter", function() { return _isThisQuarter_index_js__WEBPACK_IMPORTED_MODULE_125__["default"]; }); -/* harmony import */ var _millisecondsToHours_index_js__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(1101); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "millisecondsToHours", function() { return _millisecondsToHours_index_js__WEBPACK_IMPORTED_MODULE_155__["default"]; }); +/* harmony import */ var _isThisSecond_index_js__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(1080); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisSecond", function() { return _isThisSecond_index_js__WEBPACK_IMPORTED_MODULE_126__["default"]; }); -/* harmony import */ var _millisecondsToMinutes_index_js__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(1102); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "millisecondsToMinutes", function() { return _millisecondsToMinutes_index_js__WEBPACK_IMPORTED_MODULE_156__["default"]; }); +/* harmony import */ var _isThisWeek_index_js__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(1081); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisWeek", function() { return _isThisWeek_index_js__WEBPACK_IMPORTED_MODULE_127__["default"]; }); -/* harmony import */ var _millisecondsToSeconds_index_js__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(1103); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "millisecondsToSeconds", function() { return _millisecondsToSeconds_index_js__WEBPACK_IMPORTED_MODULE_157__["default"]; }); +/* harmony import */ var _isThisYear_index_js__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(1082); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThisYear", function() { return _isThisYear_index_js__WEBPACK_IMPORTED_MODULE_128__["default"]; }); -/* harmony import */ var _min_index_js__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(919); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "min", function() { return _min_index_js__WEBPACK_IMPORTED_MODULE_158__["default"]; }); +/* harmony import */ var _isThursday_index_js__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(1083); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isThursday", function() { return _isThursday_index_js__WEBPACK_IMPORTED_MODULE_129__["default"]; }); -/* harmony import */ var _minutesToHours_index_js__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(1104); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "minutesToHours", function() { return _minutesToHours_index_js__WEBPACK_IMPORTED_MODULE_159__["default"]; }); +/* harmony import */ var _isToday_index_js__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(1084); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isToday", function() { return _isToday_index_js__WEBPACK_IMPORTED_MODULE_130__["default"]; }); -/* harmony import */ var _minutesToMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(1105); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "minutesToMilliseconds", function() { return _minutesToMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_160__["default"]; }); +/* harmony import */ var _isTomorrow_index_js__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(1085); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isTomorrow", function() { return _isTomorrow_index_js__WEBPACK_IMPORTED_MODULE_131__["default"]; }); -/* harmony import */ var _minutesToSeconds_index_js__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(1106); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "minutesToSeconds", function() { return _minutesToSeconds_index_js__WEBPACK_IMPORTED_MODULE_161__["default"]; }); +/* harmony import */ var _isTuesday_index_js__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(1086); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isTuesday", function() { return _isTuesday_index_js__WEBPACK_IMPORTED_MODULE_132__["default"]; }); -/* harmony import */ var _monthsToQuarters_index_js__WEBPACK_IMPORTED_MODULE_162__ = __webpack_require__(1107); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "monthsToQuarters", function() { return _monthsToQuarters_index_js__WEBPACK_IMPORTED_MODULE_162__["default"]; }); +/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(930); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isValid", function() { return _isValid_index_js__WEBPACK_IMPORTED_MODULE_133__["default"]; }); -/* harmony import */ var _monthsToYears_index_js__WEBPACK_IMPORTED_MODULE_163__ = __webpack_require__(1108); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "monthsToYears", function() { return _monthsToYears_index_js__WEBPACK_IMPORTED_MODULE_163__["default"]; }); +/* harmony import */ var _isWednesday_index_js__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(1087); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isWednesday", function() { return _isWednesday_index_js__WEBPACK_IMPORTED_MODULE_134__["default"]; }); -/* harmony import */ var _nextDay_index_js__WEBPACK_IMPORTED_MODULE_164__ = __webpack_require__(1109); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "nextDay", function() { return _nextDay_index_js__WEBPACK_IMPORTED_MODULE_164__["default"]; }); +/* harmony import */ var _isWeekend_index_js__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(905); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isWeekend", function() { return _isWeekend_index_js__WEBPACK_IMPORTED_MODULE_135__["default"]; }); -/* harmony import */ var _nextFriday_index_js__WEBPACK_IMPORTED_MODULE_165__ = __webpack_require__(1110); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "nextFriday", function() { return _nextFriday_index_js__WEBPACK_IMPORTED_MODULE_165__["default"]; }); +/* harmony import */ var _isWithinInterval_index_js__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(1088); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isWithinInterval", function() { return _isWithinInterval_index_js__WEBPACK_IMPORTED_MODULE_136__["default"]; }); -/* harmony import */ var _nextMonday_index_js__WEBPACK_IMPORTED_MODULE_166__ = __webpack_require__(1111); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "nextMonday", function() { return _nextMonday_index_js__WEBPACK_IMPORTED_MODULE_166__["default"]; }); +/* harmony import */ var _isYesterday_index_js__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(1089); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isYesterday", function() { return _isYesterday_index_js__WEBPACK_IMPORTED_MODULE_137__["default"]; }); -/* harmony import */ var _nextSaturday_index_js__WEBPACK_IMPORTED_MODULE_167__ = __webpack_require__(1112); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "nextSaturday", function() { return _nextSaturday_index_js__WEBPACK_IMPORTED_MODULE_167__["default"]; }); +/* harmony import */ var _lastDayOfDecade_index_js__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(1090); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfDecade", function() { return _lastDayOfDecade_index_js__WEBPACK_IMPORTED_MODULE_138__["default"]; }); -/* harmony import */ var _nextSunday_index_js__WEBPACK_IMPORTED_MODULE_168__ = __webpack_require__(1113); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "nextSunday", function() { return _nextSunday_index_js__WEBPACK_IMPORTED_MODULE_168__["default"]; }); +/* harmony import */ var _lastDayOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(1091); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfISOWeek", function() { return _lastDayOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_139__["default"]; }); -/* harmony import */ var _nextThursday_index_js__WEBPACK_IMPORTED_MODULE_169__ = __webpack_require__(1114); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "nextThursday", function() { return _nextThursday_index_js__WEBPACK_IMPORTED_MODULE_169__["default"]; }); +/* harmony import */ var _lastDayOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(1093); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfISOWeekYear", function() { return _lastDayOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_140__["default"]; }); -/* harmony import */ var _nextTuesday_index_js__WEBPACK_IMPORTED_MODULE_170__ = __webpack_require__(1115); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "nextTuesday", function() { return _nextTuesday_index_js__WEBPACK_IMPORTED_MODULE_170__["default"]; }); +/* harmony import */ var _lastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(1040); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfMonth", function() { return _lastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_141__["default"]; }); -/* harmony import */ var _nextWednesday_index_js__WEBPACK_IMPORTED_MODULE_171__ = __webpack_require__(1116); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "nextWednesday", function() { return _nextWednesday_index_js__WEBPACK_IMPORTED_MODULE_171__["default"]; }); +/* harmony import */ var _lastDayOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(1094); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfQuarter", function() { return _lastDayOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_142__["default"]; }); -/* harmony import */ var _parse_index_js__WEBPACK_IMPORTED_MODULE_172__ = __webpack_require__(1059); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "parse", function() { return _parse_index_js__WEBPACK_IMPORTED_MODULE_172__["default"]; }); +/* harmony import */ var _lastDayOfWeek_index_js__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(1092); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfWeek", function() { return _lastDayOfWeek_index_js__WEBPACK_IMPORTED_MODULE_143__["default"]; }); -/* harmony import */ var _parseISO_index_js__WEBPACK_IMPORTED_MODULE_173__ = __webpack_require__(1117); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "parseISO", function() { return _parseISO_index_js__WEBPACK_IMPORTED_MODULE_173__["default"]; }); +/* harmony import */ var _lastDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(1095); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lastDayOfYear", function() { return _lastDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_144__["default"]; }); -/* harmony import */ var _parseJSON_index_js__WEBPACK_IMPORTED_MODULE_174__ = __webpack_require__(1118); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "parseJSON", function() { return _parseJSON_index_js__WEBPACK_IMPORTED_MODULE_174__["default"]; }); +/* harmony import */ var _lightFormat_index_js__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(1096); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lightFormat", function() { return _lightFormat_index_js__WEBPACK_IMPORTED_MODULE_145__["default"]; }); -/* harmony import */ var _previousDay_index_js__WEBPACK_IMPORTED_MODULE_175__ = __webpack_require__(1119); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "previousDay", function() { return _previousDay_index_js__WEBPACK_IMPORTED_MODULE_175__["default"]; }); +/* harmony import */ var _max_index_js__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(1097); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "max", function() { return _max_index_js__WEBPACK_IMPORTED_MODULE_146__["default"]; }); -/* harmony import */ var _previousFriday_index_js__WEBPACK_IMPORTED_MODULE_176__ = __webpack_require__(1120); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "previousFriday", function() { return _previousFriday_index_js__WEBPACK_IMPORTED_MODULE_176__["default"]; }); +/* harmony import */ var _milliseconds_index_js__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(1098); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "milliseconds", function() { return _milliseconds_index_js__WEBPACK_IMPORTED_MODULE_147__["default"]; }); -/* harmony import */ var _previousMonday_index_js__WEBPACK_IMPORTED_MODULE_177__ = __webpack_require__(1121); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "previousMonday", function() { return _previousMonday_index_js__WEBPACK_IMPORTED_MODULE_177__["default"]; }); +/* harmony import */ var _min_index_js__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(1099); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "min", function() { return _min_index_js__WEBPACK_IMPORTED_MODULE_148__["default"]; }); -/* harmony import */ var _previousSaturday_index_js__WEBPACK_IMPORTED_MODULE_178__ = __webpack_require__(1122); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "previousSaturday", function() { return _previousSaturday_index_js__WEBPACK_IMPORTED_MODULE_178__["default"]; }); +/* harmony import */ var _parse_index_js__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(1055); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "parse", function() { return _parse_index_js__WEBPACK_IMPORTED_MODULE_149__["default"]; }); -/* harmony import */ var _previousSunday_index_js__WEBPACK_IMPORTED_MODULE_179__ = __webpack_require__(1123); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "previousSunday", function() { return _previousSunday_index_js__WEBPACK_IMPORTED_MODULE_179__["default"]; }); +/* harmony import */ var _parseISO_index_js__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(1100); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "parseISO", function() { return _parseISO_index_js__WEBPACK_IMPORTED_MODULE_150__["default"]; }); -/* harmony import */ var _previousThursday_index_js__WEBPACK_IMPORTED_MODULE_180__ = __webpack_require__(1124); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "previousThursday", function() { return _previousThursday_index_js__WEBPACK_IMPORTED_MODULE_180__["default"]; }); +/* harmony import */ var _parseJSON_index_js__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(1101); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "parseJSON", function() { return _parseJSON_index_js__WEBPACK_IMPORTED_MODULE_151__["default"]; }); -/* harmony import */ var _previousTuesday_index_js__WEBPACK_IMPORTED_MODULE_181__ = __webpack_require__(1125); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "previousTuesday", function() { return _previousTuesday_index_js__WEBPACK_IMPORTED_MODULE_181__["default"]; }); +/* harmony import */ var _roundToNearestMinutes_index_js__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(1102); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "roundToNearestMinutes", function() { return _roundToNearestMinutes_index_js__WEBPACK_IMPORTED_MODULE_152__["default"]; }); -/* harmony import */ var _previousWednesday_index_js__WEBPACK_IMPORTED_MODULE_182__ = __webpack_require__(1126); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "previousWednesday", function() { return _previousWednesday_index_js__WEBPACK_IMPORTED_MODULE_182__["default"]; }); +/* harmony import */ var _set_index_js__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(1103); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "set", function() { return _set_index_js__WEBPACK_IMPORTED_MODULE_153__["default"]; }); -/* harmony import */ var _quartersToMonths_index_js__WEBPACK_IMPORTED_MODULE_183__ = __webpack_require__(1127); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "quartersToMonths", function() { return _quartersToMonths_index_js__WEBPACK_IMPORTED_MODULE_183__["default"]; }); +/* harmony import */ var _setDate_index_js__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(1105); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setDate", function() { return _setDate_index_js__WEBPACK_IMPORTED_MODULE_154__["default"]; }); -/* harmony import */ var _quartersToYears_index_js__WEBPACK_IMPORTED_MODULE_184__ = __webpack_require__(1128); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "quartersToYears", function() { return _quartersToYears_index_js__WEBPACK_IMPORTED_MODULE_184__["default"]; }); +/* harmony import */ var _setDay_index_js__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(1106); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setDay", function() { return _setDay_index_js__WEBPACK_IMPORTED_MODULE_155__["default"]; }); -/* harmony import */ var _roundToNearestMinutes_index_js__WEBPACK_IMPORTED_MODULE_185__ = __webpack_require__(1129); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "roundToNearestMinutes", function() { return _roundToNearestMinutes_index_js__WEBPACK_IMPORTED_MODULE_185__["default"]; }); +/* harmony import */ var _setDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(1107); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setDayOfYear", function() { return _setDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_156__["default"]; }); -/* harmony import */ var _secondsToHours_index_js__WEBPACK_IMPORTED_MODULE_186__ = __webpack_require__(1130); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "secondsToHours", function() { return _secondsToHours_index_js__WEBPACK_IMPORTED_MODULE_186__["default"]; }); +/* harmony import */ var _setHours_index_js__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(1108); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setHours", function() { return _setHours_index_js__WEBPACK_IMPORTED_MODULE_157__["default"]; }); -/* harmony import */ var _secondsToMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_187__ = __webpack_require__(1131); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "secondsToMilliseconds", function() { return _secondsToMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_187__["default"]; }); +/* harmony import */ var _setISODay_index_js__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(1109); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setISODay", function() { return _setISODay_index_js__WEBPACK_IMPORTED_MODULE_158__["default"]; }); -/* harmony import */ var _secondsToMinutes_index_js__WEBPACK_IMPORTED_MODULE_188__ = __webpack_require__(1132); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "secondsToMinutes", function() { return _secondsToMinutes_index_js__WEBPACK_IMPORTED_MODULE_188__["default"]; }); +/* harmony import */ var _setISOWeek_index_js__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(1110); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setISOWeek", function() { return _setISOWeek_index_js__WEBPACK_IMPORTED_MODULE_159__["default"]; }); -/* harmony import */ var _set_index_js__WEBPACK_IMPORTED_MODULE_189__ = __webpack_require__(1133); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "set", function() { return _set_index_js__WEBPACK_IMPORTED_MODULE_189__["default"]; }); +/* harmony import */ var _setISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(914); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setISOWeekYear", function() { return _setISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_160__["default"]; }); -/* harmony import */ var _setDate_index_js__WEBPACK_IMPORTED_MODULE_190__ = __webpack_require__(1135); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setDate", function() { return _setDate_index_js__WEBPACK_IMPORTED_MODULE_190__["default"]; }); +/* harmony import */ var _setMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(1111); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setMilliseconds", function() { return _setMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_161__["default"]; }); -/* harmony import */ var _setDay_index_js__WEBPACK_IMPORTED_MODULE_191__ = __webpack_require__(1136); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setDay", function() { return _setDay_index_js__WEBPACK_IMPORTED_MODULE_191__["default"]; }); +/* harmony import */ var _setMinutes_index_js__WEBPACK_IMPORTED_MODULE_162__ = __webpack_require__(1112); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setMinutes", function() { return _setMinutes_index_js__WEBPACK_IMPORTED_MODULE_162__["default"]; }); -/* harmony import */ var _setDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_192__ = __webpack_require__(1137); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setDayOfYear", function() { return _setDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_192__["default"]; }); +/* harmony import */ var _setMonth_index_js__WEBPACK_IMPORTED_MODULE_163__ = __webpack_require__(1104); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setMonth", function() { return _setMonth_index_js__WEBPACK_IMPORTED_MODULE_163__["default"]; }); -/* harmony import */ var _setHours_index_js__WEBPACK_IMPORTED_MODULE_193__ = __webpack_require__(1138); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setHours", function() { return _setHours_index_js__WEBPACK_IMPORTED_MODULE_193__["default"]; }); +/* harmony import */ var _setQuarter_index_js__WEBPACK_IMPORTED_MODULE_164__ = __webpack_require__(1113); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setQuarter", function() { return _setQuarter_index_js__WEBPACK_IMPORTED_MODULE_164__["default"]; }); -/* harmony import */ var _setISODay_index_js__WEBPACK_IMPORTED_MODULE_194__ = __webpack_require__(1139); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setISODay", function() { return _setISODay_index_js__WEBPACK_IMPORTED_MODULE_194__["default"]; }); +/* harmony import */ var _setSeconds_index_js__WEBPACK_IMPORTED_MODULE_165__ = __webpack_require__(1114); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setSeconds", function() { return _setSeconds_index_js__WEBPACK_IMPORTED_MODULE_165__["default"]; }); -/* harmony import */ var _setISOWeek_index_js__WEBPACK_IMPORTED_MODULE_195__ = __webpack_require__(1140); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setISOWeek", function() { return _setISOWeek_index_js__WEBPACK_IMPORTED_MODULE_195__["default"]; }); +/* harmony import */ var _setWeek_index_js__WEBPACK_IMPORTED_MODULE_166__ = __webpack_require__(1115); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setWeek", function() { return _setWeek_index_js__WEBPACK_IMPORTED_MODULE_166__["default"]; }); -/* harmony import */ var _setISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_196__ = __webpack_require__(906); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setISOWeekYear", function() { return _setISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_196__["default"]; }); +/* harmony import */ var _setWeekYear_index_js__WEBPACK_IMPORTED_MODULE_167__ = __webpack_require__(1116); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setWeekYear", function() { return _setWeekYear_index_js__WEBPACK_IMPORTED_MODULE_167__["default"]; }); -/* harmony import */ var _setMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_197__ = __webpack_require__(1141); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setMilliseconds", function() { return _setMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_197__["default"]; }); +/* harmony import */ var _setYear_index_js__WEBPACK_IMPORTED_MODULE_168__ = __webpack_require__(1117); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setYear", function() { return _setYear_index_js__WEBPACK_IMPORTED_MODULE_168__["default"]; }); -/* harmony import */ var _setMinutes_index_js__WEBPACK_IMPORTED_MODULE_198__ = __webpack_require__(1142); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setMinutes", function() { return _setMinutes_index_js__WEBPACK_IMPORTED_MODULE_198__["default"]; }); +/* harmony import */ var _startOfDay_index_js__WEBPACK_IMPORTED_MODULE_169__ = __webpack_require__(918); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfDay", function() { return _startOfDay_index_js__WEBPACK_IMPORTED_MODULE_169__["default"]; }); -/* harmony import */ var _setMonth_index_js__WEBPACK_IMPORTED_MODULE_199__ = __webpack_require__(1134); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setMonth", function() { return _setMonth_index_js__WEBPACK_IMPORTED_MODULE_199__["default"]; }); +/* harmony import */ var _startOfDecade_index_js__WEBPACK_IMPORTED_MODULE_170__ = __webpack_require__(1118); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfDecade", function() { return _startOfDecade_index_js__WEBPACK_IMPORTED_MODULE_170__["default"]; }); -/* harmony import */ var _setQuarter_index_js__WEBPACK_IMPORTED_MODULE_200__ = __webpack_require__(1143); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setQuarter", function() { return _setQuarter_index_js__WEBPACK_IMPORTED_MODULE_200__["default"]; }); +/* harmony import */ var _startOfHour_index_js__WEBPACK_IMPORTED_MODULE_171__ = __webpack_require__(1064); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfHour", function() { return _startOfHour_index_js__WEBPACK_IMPORTED_MODULE_171__["default"]; }); -/* harmony import */ var _setSeconds_index_js__WEBPACK_IMPORTED_MODULE_201__ = __webpack_require__(1144); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setSeconds", function() { return _setSeconds_index_js__WEBPACK_IMPORTED_MODULE_201__["default"]; }); +/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_172__ = __webpack_require__(912); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfISOWeek", function() { return _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_172__["default"]; }); -/* harmony import */ var _setWeek_index_js__WEBPACK_IMPORTED_MODULE_202__ = __webpack_require__(1145); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setWeek", function() { return _setWeek_index_js__WEBPACK_IMPORTED_MODULE_202__["default"]; }); +/* harmony import */ var _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_173__ = __webpack_require__(915); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfISOWeekYear", function() { return _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_173__["default"]; }); -/* harmony import */ var _setWeekYear_index_js__WEBPACK_IMPORTED_MODULE_203__ = __webpack_require__(1146); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setWeekYear", function() { return _setWeekYear_index_js__WEBPACK_IMPORTED_MODULE_203__["default"]; }); +/* harmony import */ var _startOfMinute_index_js__WEBPACK_IMPORTED_MODULE_174__ = __webpack_require__(1069); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfMinute", function() { return _startOfMinute_index_js__WEBPACK_IMPORTED_MODULE_174__["default"]; }); -/* harmony import */ var _setYear_index_js__WEBPACK_IMPORTED_MODULE_204__ = __webpack_require__(1147); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "setYear", function() { return _setYear_index_js__WEBPACK_IMPORTED_MODULE_204__["default"]; }); +/* harmony import */ var _startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_175__ = __webpack_require__(961); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfMonth", function() { return _startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_175__["default"]; }); -/* harmony import */ var _startOfDay_index_js__WEBPACK_IMPORTED_MODULE_205__ = __webpack_require__(910); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfDay", function() { return _startOfDay_index_js__WEBPACK_IMPORTED_MODULE_205__["default"]; }); +/* harmony import */ var _startOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_176__ = __webpack_require__(957); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfQuarter", function() { return _startOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_176__["default"]; }); -/* harmony import */ var _startOfDecade_index_js__WEBPACK_IMPORTED_MODULE_206__ = __webpack_require__(1148); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfDecade", function() { return _startOfDecade_index_js__WEBPACK_IMPORTED_MODULE_206__["default"]; }); +/* harmony import */ var _startOfSecond_index_js__WEBPACK_IMPORTED_MODULE_177__ = __webpack_require__(1073); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfSecond", function() { return _startOfSecond_index_js__WEBPACK_IMPORTED_MODULE_177__["default"]; }); -/* harmony import */ var _startOfHour_index_js__WEBPACK_IMPORTED_MODULE_207__ = __webpack_require__(1068); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfHour", function() { return _startOfHour_index_js__WEBPACK_IMPORTED_MODULE_207__["default"]; }); +/* harmony import */ var _startOfToday_index_js__WEBPACK_IMPORTED_MODULE_178__ = __webpack_require__(1119); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfToday", function() { return _startOfToday_index_js__WEBPACK_IMPORTED_MODULE_178__["default"]; }); -/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_208__ = __webpack_require__(904); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfISOWeek", function() { return _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_208__["default"]; }); +/* harmony import */ var _startOfTomorrow_index_js__WEBPACK_IMPORTED_MODULE_179__ = __webpack_require__(1120); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfTomorrow", function() { return _startOfTomorrow_index_js__WEBPACK_IMPORTED_MODULE_179__["default"]; }); -/* harmony import */ var _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_209__ = __webpack_require__(907); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfISOWeekYear", function() { return _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_209__["default"]; }); +/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_180__ = __webpack_require__(913); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfWeek", function() { return _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_180__["default"]; }); -/* harmony import */ var _startOfMinute_index_js__WEBPACK_IMPORTED_MODULE_210__ = __webpack_require__(955); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfMinute", function() { return _startOfMinute_index_js__WEBPACK_IMPORTED_MODULE_210__["default"]; }); +/* harmony import */ var _startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_181__ = __webpack_require__(1036); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfWeekYear", function() { return _startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_181__["default"]; }); -/* harmony import */ var _startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_211__ = __webpack_require__(962); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfMonth", function() { return _startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_211__["default"]; }); +/* harmony import */ var _startOfYear_index_js__WEBPACK_IMPORTED_MODULE_182__ = __webpack_require__(963); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfYear", function() { return _startOfYear_index_js__WEBPACK_IMPORTED_MODULE_182__["default"]; }); -/* harmony import */ var _startOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_212__ = __webpack_require__(958); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfQuarter", function() { return _startOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_212__["default"]; }); +/* harmony import */ var _startOfYesterday_index_js__WEBPACK_IMPORTED_MODULE_183__ = __webpack_require__(1121); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfYesterday", function() { return _startOfYesterday_index_js__WEBPACK_IMPORTED_MODULE_183__["default"]; }); -/* harmony import */ var _startOfSecond_index_js__WEBPACK_IMPORTED_MODULE_213__ = __webpack_require__(1076); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfSecond", function() { return _startOfSecond_index_js__WEBPACK_IMPORTED_MODULE_213__["default"]; }); +/* harmony import */ var _sub_index_js__WEBPACK_IMPORTED_MODULE_184__ = __webpack_require__(1043); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "sub", function() { return _sub_index_js__WEBPACK_IMPORTED_MODULE_184__["default"]; }); -/* harmony import */ var _startOfToday_index_js__WEBPACK_IMPORTED_MODULE_214__ = __webpack_require__(1149); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfToday", function() { return _startOfToday_index_js__WEBPACK_IMPORTED_MODULE_214__["default"]; }); +/* harmony import */ var _subBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_185__ = __webpack_require__(1122); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subBusinessDays", function() { return _subBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_185__["default"]; }); -/* harmony import */ var _startOfTomorrow_index_js__WEBPACK_IMPORTED_MODULE_215__ = __webpack_require__(1150); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfTomorrow", function() { return _startOfTomorrow_index_js__WEBPACK_IMPORTED_MODULE_215__["default"]; }); +/* harmony import */ var _subDays_index_js__WEBPACK_IMPORTED_MODULE_186__ = __webpack_require__(1044); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subDays", function() { return _subDays_index_js__WEBPACK_IMPORTED_MODULE_186__["default"]; }); -/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_216__ = __webpack_require__(905); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfWeek", function() { return _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_216__["default"]; }); +/* harmony import */ var _subHours_index_js__WEBPACK_IMPORTED_MODULE_187__ = __webpack_require__(1123); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subHours", function() { return _subHours_index_js__WEBPACK_IMPORTED_MODULE_187__["default"]; }); -/* harmony import */ var _startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_217__ = __webpack_require__(1037); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfWeekYear", function() { return _startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_217__["default"]; }); +/* harmony import */ var _subISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_188__ = __webpack_require__(943); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subISOWeekYears", function() { return _subISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_188__["default"]; }); -/* harmony import */ var _startOfYear_index_js__WEBPACK_IMPORTED_MODULE_218__ = __webpack_require__(964); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfYear", function() { return _startOfYear_index_js__WEBPACK_IMPORTED_MODULE_218__["default"]; }); +/* harmony import */ var _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_189__ = __webpack_require__(988); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subMilliseconds", function() { return _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_189__["default"]; }); -/* harmony import */ var _startOfYesterday_index_js__WEBPACK_IMPORTED_MODULE_219__ = __webpack_require__(1151); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "startOfYesterday", function() { return _startOfYesterday_index_js__WEBPACK_IMPORTED_MODULE_219__["default"]; }); +/* harmony import */ var _subMinutes_index_js__WEBPACK_IMPORTED_MODULE_190__ = __webpack_require__(1124); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subMinutes", function() { return _subMinutes_index_js__WEBPACK_IMPORTED_MODULE_190__["default"]; }); -/* harmony import */ var _sub_index_js__WEBPACK_IMPORTED_MODULE_220__ = __webpack_require__(1047); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "sub", function() { return _sub_index_js__WEBPACK_IMPORTED_MODULE_220__["default"]; }); +/* harmony import */ var _subMonths_index_js__WEBPACK_IMPORTED_MODULE_191__ = __webpack_require__(1045); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subMonths", function() { return _subMonths_index_js__WEBPACK_IMPORTED_MODULE_191__["default"]; }); -/* harmony import */ var _subBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_221__ = __webpack_require__(1152); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subBusinessDays", function() { return _subBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_221__["default"]; }); +/* harmony import */ var _subQuarters_index_js__WEBPACK_IMPORTED_MODULE_192__ = __webpack_require__(1125); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subQuarters", function() { return _subQuarters_index_js__WEBPACK_IMPORTED_MODULE_192__["default"]; }); -/* harmony import */ var _subDays_index_js__WEBPACK_IMPORTED_MODULE_222__ = __webpack_require__(1048); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subDays", function() { return _subDays_index_js__WEBPACK_IMPORTED_MODULE_222__["default"]; }); +/* harmony import */ var _subSeconds_index_js__WEBPACK_IMPORTED_MODULE_193__ = __webpack_require__(1126); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subSeconds", function() { return _subSeconds_index_js__WEBPACK_IMPORTED_MODULE_193__["default"]; }); -/* harmony import */ var _subHours_index_js__WEBPACK_IMPORTED_MODULE_223__ = __webpack_require__(1153); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subHours", function() { return _subHours_index_js__WEBPACK_IMPORTED_MODULE_223__["default"]; }); +/* harmony import */ var _subWeeks_index_js__WEBPACK_IMPORTED_MODULE_194__ = __webpack_require__(1127); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subWeeks", function() { return _subWeeks_index_js__WEBPACK_IMPORTED_MODULE_194__["default"]; }); -/* harmony import */ var _subISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_224__ = __webpack_require__(942); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subISOWeekYears", function() { return _subISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_224__["default"]; }); +/* harmony import */ var _subYears_index_js__WEBPACK_IMPORTED_MODULE_195__ = __webpack_require__(1128); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subYears", function() { return _subYears_index_js__WEBPACK_IMPORTED_MODULE_195__["default"]; }); -/* harmony import */ var _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_225__ = __webpack_require__(989); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subMilliseconds", function() { return _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_225__["default"]; }); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_196__ = __webpack_require__(901); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "toDate", function() { return _toDate_index_js__WEBPACK_IMPORTED_MODULE_196__["default"]; }); -/* harmony import */ var _subMinutes_index_js__WEBPACK_IMPORTED_MODULE_226__ = __webpack_require__(1154); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subMinutes", function() { return _subMinutes_index_js__WEBPACK_IMPORTED_MODULE_226__["default"]; }); +/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_197__ = __webpack_require__(1129); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "maxTime", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_197__["maxTime"]; }); -/* harmony import */ var _subMonths_index_js__WEBPACK_IMPORTED_MODULE_227__ = __webpack_require__(1049); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subMonths", function() { return _subMonths_index_js__WEBPACK_IMPORTED_MODULE_227__["default"]; }); - -/* harmony import */ var _subQuarters_index_js__WEBPACK_IMPORTED_MODULE_228__ = __webpack_require__(1155); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subQuarters", function() { return _subQuarters_index_js__WEBPACK_IMPORTED_MODULE_228__["default"]; }); - -/* harmony import */ var _subSeconds_index_js__WEBPACK_IMPORTED_MODULE_229__ = __webpack_require__(1156); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subSeconds", function() { return _subSeconds_index_js__WEBPACK_IMPORTED_MODULE_229__["default"]; }); - -/* harmony import */ var _subWeeks_index_js__WEBPACK_IMPORTED_MODULE_230__ = __webpack_require__(1157); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subWeeks", function() { return _subWeeks_index_js__WEBPACK_IMPORTED_MODULE_230__["default"]; }); - -/* harmony import */ var _subYears_index_js__WEBPACK_IMPORTED_MODULE_231__ = __webpack_require__(1158); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "subYears", function() { return _subYears_index_js__WEBPACK_IMPORTED_MODULE_231__["default"]; }); - -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_232__ = __webpack_require__(893); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "toDate", function() { return _toDate_index_js__WEBPACK_IMPORTED_MODULE_232__["default"]; }); - -/* harmony import */ var _weeksToDays_index_js__WEBPACK_IMPORTED_MODULE_233__ = __webpack_require__(1159); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "weeksToDays", function() { return _weeksToDays_index_js__WEBPACK_IMPORTED_MODULE_233__["default"]; }); - -/* harmony import */ var _yearsToMonths_index_js__WEBPACK_IMPORTED_MODULE_234__ = __webpack_require__(1160); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "yearsToMonths", function() { return _yearsToMonths_index_js__WEBPACK_IMPORTED_MODULE_234__["default"]; }); - -/* harmony import */ var _yearsToQuarters_index_js__WEBPACK_IMPORTED_MODULE_235__ = __webpack_require__(1161); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "yearsToQuarters", function() { return _yearsToQuarters_index_js__WEBPACK_IMPORTED_MODULE_235__["default"]; }); - -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_236__ = __webpack_require__(925); -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "daysInWeek", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["daysInWeek"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "maxTime", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["maxTime"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "millisecondsInMinute", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["millisecondsInMinute"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "millisecondsInHour", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["millisecondsInHour"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "millisecondsInSecond", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["millisecondsInSecond"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "minTime", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["minTime"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "minutesInHour", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["minutesInHour"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "monthsInQuarter", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["monthsInQuarter"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "monthsInYear", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["monthsInYear"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "quartersInYear", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["quartersInYear"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "secondsInHour", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["secondsInHour"]; }); - -/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "secondsInMinute", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_236__["secondsInMinute"]; }); +/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "minTime", function() { return _constants_index_js__WEBPACK_IMPORTED_MODULE_197__["minTime"]; }); // This file is generated automatically by `scripts/build/indices.js`. Please, don't change it. @@ -148306,45 +145231,6 @@ __webpack_require__.r(__webpack_exports__); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -148367,17 +145253,17 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/* 890 */ +/* 898 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return add; }); -/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(891); -/* harmony import */ var _addMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(895); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(892); +/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(899); +/* harmony import */ var _addMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(903); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(900); @@ -148399,7 +145285,7 @@ __webpack_require__.r(__webpack_exports__); * |----------------|------------------------------------| * | years | Amount of years to be added | * | months | Amount of months to be added | - * | weeks | Amount of weeks to be added | + * | weeks | Amount of weeks to be added | * | days | Amount of days to be added | * | hours | Amount of hours to be added | * | minutes | Amount of minutes to be added | @@ -148426,13 +145312,13 @@ __webpack_require__.r(__webpack_exports__); function add(dirtyDate, duration) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(2, arguments); if (!duration || typeof duration !== 'object') return new Date(NaN); - var years = duration.years ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.years) : 0; - var months = duration.months ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.months) : 0; - var weeks = duration.weeks ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.weeks) : 0; - var days = duration.days ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.days) : 0; - var hours = duration.hours ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.hours) : 0; - var minutes = duration.minutes ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.minutes) : 0; - var seconds = duration.seconds ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.seconds) : 0; // Add years and months + var years = 'years' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.years) : 0; + var months = 'months' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.months) : 0; + var weeks = 'weeks' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.weeks) : 0; + var days = 'days' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.days) : 0; + var hours = 'hours' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.hours) : 0; + var minutes = 'minutes' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.minutes) : 0; + var seconds = 'seconds' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.seconds) : 0; // Add years and months var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dirtyDate); var dateWithMonths = months || years ? Object(_addMonths_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, months + years * 12) : date; // Add weeks and days @@ -148447,15 +145333,15 @@ function add(dirtyDate, duration) { } /***/ }), -/* 891 */ +/* 899 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addDays; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -148473,8 +145359,8 @@ __webpack_require__.r(__webpack_exports__); * * @param {Date|Number} date - the date to be changed * @param {Number} amount - the amount of days to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. - * @returns {Date} - the new date with the days added - * @throws {TypeError} - 2 arguments required + * @returns {Date} the new date with the days added + * @throws {TypeError} 2 arguments required * * @example * // Add 10 days to 1 September 2014: @@ -148501,7 +145387,7 @@ function addDays(dirtyDate, dirtyAmount) { } /***/ }), -/* 892 */ +/* 900 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -148522,13 +145408,13 @@ function toInteger(dirtyNumber) { } /***/ }), -/* 893 */ +/* 901 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return toDate; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(902); /** * @name toDate @@ -148583,7 +145469,7 @@ function toDate(argument) { } /***/ }), -/* 894 */ +/* 902 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -148596,15 +145482,15 @@ function requiredArgs(required, args) { } /***/ }), -/* 895 */ +/* 903 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addMonths; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -148646,7 +145532,7 @@ function addMonths(dirtyDate, dirtyAmount) { } var dayOfMonth = date.getDate(); // The JS Date object supports date math by accepting out-of-bounds values for - // month, day, etc. For example, new Date(2020, 0, 0) returns 31 Dec 2019 and + // month, day, etc. For example, new Date(2020, 1, 0) returns 31 Dec 2019 and // new Date(2020, 13, 1) returns 1 Feb 2021. This is *almost* the behavior we // want except that dates will wrap around the end of a month, meaning that // new Date(2020, 13, 31) will return 3 Mar 2021 not 28 Feb 2021 as desired. So @@ -148676,18 +145562,18 @@ function addMonths(dirtyDate, dirtyAmount) { } /***/ }), -/* 896 */ +/* 904 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addBusinessDays; }); -/* harmony import */ var _isWeekend_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(897); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); -/* harmony import */ var _isSunday_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(898); -/* harmony import */ var _isSaturday_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(899); +/* harmony import */ var _isWeekend_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(905); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); +/* harmony import */ var _isSunday_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(906); +/* harmony import */ var _isSaturday_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(907); @@ -148747,14 +145633,14 @@ function addBusinessDays(dirtyDate, dirtyAmount) { } /***/ }), -/* 897 */ +/* 905 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isWeekend; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -148775,7 +145661,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Does 5 October 2014 fall on a weekend? - * const result = isWeekend(new Date(2014, 9, 5)) + * var result = isWeekend(new Date(2014, 9, 5)) * //=> true */ @@ -148787,14 +145673,14 @@ function isWeekend(dirtyDate) { } /***/ }), -/* 898 */ +/* 906 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSunday; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -148825,14 +145711,14 @@ function isSunday(dirtyDate) { } /***/ }), -/* 899 */ +/* 907 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSaturday; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -148863,15 +145749,15 @@ function isSaturday(dirtyDate) { } /***/ }), -/* 900 */ +/* 908 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addHours; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(909); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -148906,15 +145792,15 @@ function addHours(dirtyDate, dirtyAmount) { } /***/ }), -/* 901 */ +/* 909 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addMilliseconds; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -148949,16 +145835,16 @@ function addMilliseconds(dirtyDate, dirtyAmount) { } /***/ }), -/* 902 */ +/* 910 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addISOWeekYears; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(903); -/* harmony import */ var _setISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(906); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(911); +/* harmony import */ var _setISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(914); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -149000,15 +145886,15 @@ function addISOWeekYears(dirtyDate, dirtyAmount) { } /***/ }), -/* 903 */ +/* 911 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getISOWeekYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(904); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(912); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -149065,14 +145951,14 @@ function getISOWeekYear(dirtyDate) { } /***/ }), -/* 904 */ +/* 912 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfISOWeek; }); -/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(905); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(913); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -149108,15 +145994,15 @@ function startOfISOWeek(dirtyDate) { } /***/ }), -/* 905 */ +/* 913 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfWeek; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -149143,12 +146029,12 @@ __webpack_require__.r(__webpack_exports__); * * @example * // The start of a week for 2 September 2014 11:55:00: - * const result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0)) + * var result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0)) * //=> Sun Aug 31 2014 00:00:00 * * @example * // If the week starts on Monday, the start of the week for 2 September 2014 11:55:00: - * const result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 }) + * var result = startOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 }) * //=> Mon Sep 01 2014 00:00:00 */ @@ -149173,17 +146059,17 @@ function startOfWeek(dirtyDate, dirtyOptions) { } /***/ }), -/* 906 */ +/* 914 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setISOWeekYear; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(907); -/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(908); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(915); +/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(916); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(902); @@ -149216,7 +146102,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Set ISO week-numbering year 2007 to 29 December 2008: - * const result = setISOWeekYear(new Date(2008, 11, 29), 2007) + * var result = setISOWeekYear(new Date(2008, 11, 29), 2007) * //=> Mon Jan 01 2007 00:00:00 */ @@ -149234,15 +146120,15 @@ function setISOWeekYear(dirtyDate, dirtyISOWeekYear) { } /***/ }), -/* 907 */ +/* 915 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfISOWeekYear; }); -/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(903); -/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(904); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(911); +/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(912); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -149283,15 +146169,15 @@ function startOfISOWeekYear(dirtyDate) { } /***/ }), -/* 908 */ +/* 916 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInCalendarDays; }); -/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(909); -/* harmony import */ var _startOfDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(910); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(917); +/* harmony import */ var _startOfDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(918); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -149317,14 +146203,14 @@ var MILLISECONDS_IN_DAY = 86400000; * @example * // How many calendar days are between * // 2 July 2011 23:00:00 and 2 July 2012 00:00:00? - * const result = differenceInCalendarDays( + * var result = differenceInCalendarDays( * new Date(2012, 6, 2, 0, 0), * new Date(2011, 6, 2, 23, 0) * ) * //=> 366 * // How many calendar days are between * // 2 July 2011 23:59:00 and 3 July 2011 00:01:00? - * const result = differenceInCalendarDays( + * var result = differenceInCalendarDays( * new Date(2011, 6, 3, 0, 1), * new Date(2011, 6, 2, 23, 59) * ) @@ -149344,12 +146230,17 @@ function differenceInCalendarDays(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 909 */ +/* 917 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getTimezoneOffsetInMilliseconds; }); +var MILLISECONDS_IN_MINUTE = 60000; + +function getDateMillisecondsPart(date) { + return date.getTime() % MILLISECONDS_IN_MINUTE; +} /** * Google Chrome as of 67.0.3396.87 introduced timezones with offset that includes seconds. * They usually appear for dates that denote time before the timezones were introduced @@ -149361,21 +146252,26 @@ __webpack_require__.r(__webpack_exports__); * * This function returns the timezone offset in milliseconds that takes seconds in account. */ -function getTimezoneOffsetInMilliseconds(date) { - var utcDate = new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds())); - utcDate.setUTCFullYear(date.getFullYear()); - return date.getTime() - utcDate.getTime(); + + +function getTimezoneOffsetInMilliseconds(dirtyDate) { + var date = new Date(dirtyDate.getTime()); + var baseTimezoneOffset = Math.ceil(date.getTimezoneOffset()); + date.setSeconds(0, 0); + var hasNegativeUTCOffset = baseTimezoneOffset > 0; + var millisecondsPartOfTimezoneOffset = hasNegativeUTCOffset ? (MILLISECONDS_IN_MINUTE + getDateMillisecondsPart(date)) % MILLISECONDS_IN_MINUTE : getDateMillisecondsPart(date); + return baseTimezoneOffset * MILLISECONDS_IN_MINUTE + millisecondsPartOfTimezoneOffset; } /***/ }), -/* 910 */ +/* 918 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfDay; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -149409,15 +146305,15 @@ function startOfDay(dirtyDate) { } /***/ }), -/* 911 */ +/* 919 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addMinutes; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(909); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -149452,15 +146348,15 @@ function addMinutes(dirtyDate, dirtyAmount) { } /***/ }), -/* 912 */ +/* 920 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addQuarters; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(895); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(903); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -149495,15 +146391,15 @@ function addQuarters(dirtyDate, dirtyAmount) { } /***/ }), -/* 913 */ +/* 921 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addSeconds; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(909); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -149537,15 +146433,15 @@ function addSeconds(dirtyDate, dirtyAmount) { } /***/ }), -/* 914 */ +/* 922 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addWeeks; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(891); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(899); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -149580,15 +146476,15 @@ function addWeeks(dirtyDate, dirtyAmount) { } /***/ }), -/* 915 */ +/* 923 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return addYears; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(895); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(903); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -149622,14 +146518,14 @@ function addYears(dirtyDate, dirtyAmount) { } /***/ }), -/* 916 */ +/* 924 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return areIntervalsOverlapping; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -149674,8 +146570,8 @@ __webpack_require__.r(__webpack_exports__); * ) * ``` * - * @param {Interval} intervalLeft - the first interval to compare. See [Interval]{@link https://date-fns.org/docs/Interval} - * @param {Interval} intervalRight - the second interval to compare. See [Interval]{@link https://date-fns.org/docs/Interval} + * @param {Interval} intervalLeft - the first interval to compare. See [Interval]{@link docs/types/Interval} + * @param {Interval} intervalRight - the second interval to compare. See [Interval]{@link docs/types/Interval} * @param {Object} [options] - the object with options * @param {Boolean} [options.inclusive=false] - whether the comparison is inclusive or not * @returns {Boolean} whether the time intervals are overlapping @@ -149746,211 +146642,14 @@ function areIntervalsOverlapping(dirtyIntervalLeft, dirtyIntervalRight) { } /***/ }), -/* 917 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return clamp; }); -/* harmony import */ var _max_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(918); -/* harmony import */ var _min_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(919); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); - - - -/** - * @name clamp - * @category Interval Helpers - * @summary Return a date bounded by the start and the end of the given interval - * - * @description - * Clamps a date to the lower bound with the start of the interval and the upper - * bound with the end of the interval. - * - * - When the date is less than the start of the interval, the start is returned. - * - When the date is greater than the end of the interval, the end is returned. - * - Otherwise the date is returned. - * - * @example - * // What is Mar, 21, 2021 bounded to an interval starting at Mar, 22, 2021 and ending at Apr, 01, 2021 - * const result = clamp(new Date(2021, 2, 21), { - * start: new Date(2021, 2, 22), - * end: new Date(2021, 3, 1), - * }) - * //=> Mon Mar 22 2021 00:00:00 - * - * @param {Date | Number} date - the date to be bounded - * @param {Interval} interval - the interval to bound to - * @returns {Date} the date bounded by the start and the end of the interval - * @throws {TypeError} 2 arguments required - */ - -function clamp(date, _ref) { - var start = _ref.start, - end = _ref.end; - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(2, arguments); - return Object(_min_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])([Object(_max_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])([date, start]), end]); -} - -/***/ }), -/* 918 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return max; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); - - -/** - * @name max - * @category Common Helpers - * @summary Return the latest of the given dates. - * - * @description - * Return the latest of the given dates. - * - * ### v2.0.0 breaking changes: - * - * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). - * - * - `max` function now accepts an array of dates rather than spread arguments. - * - * ```javascript - * // Before v2.0.0 - * var date1 = new Date(1989, 6, 10) - * var date2 = new Date(1987, 1, 11) - * var maxDate = max(date1, date2) - * - * // v2.0.0 onward: - * var dates = [new Date(1989, 6, 10), new Date(1987, 1, 11)] - * var maxDate = max(dates) - * ``` - * - * @param {Date[]|Number[]} datesArray - the dates to compare - * @returns {Date} the latest of the dates - * @throws {TypeError} 1 argument required - * - * @example - * // Which of these dates is the latest? - * var result = max([ - * new Date(1989, 6, 10), - * new Date(1987, 1, 11), - * new Date(1995, 6, 2), - * new Date(1990, 0, 1) - * ]) - * //=> Sun Jul 02 1995 00:00:00 - */ - -function max(dirtyDatesArray) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(1, arguments); - var datesArray; // `dirtyDatesArray` is Array, Set or Map, or object with custom `forEach` method - - if (dirtyDatesArray && typeof dirtyDatesArray.forEach === 'function') { - datesArray = dirtyDatesArray; // If `dirtyDatesArray` is Array-like Object, convert to Array. - } else if (typeof dirtyDatesArray === 'object' && dirtyDatesArray !== null) { - datesArray = Array.prototype.slice.call(dirtyDatesArray); - } else { - // `dirtyDatesArray` is non-iterable, return Invalid Date - return new Date(NaN); - } - - var result; - datesArray.forEach(function (dirtyDate) { - var currentDate = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate); - - if (result === undefined || result < currentDate || isNaN(Number(currentDate))) { - result = currentDate; - } - }); - return result || new Date(NaN); -} - -/***/ }), -/* 919 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return min; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); - - -/** - * @name min - * @category Common Helpers - * @summary Returns the earliest of the given dates. - * - * @description - * Returns the earliest of the given dates. - * - * ### v2.0.0 breaking changes: - * - * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). - * - * - `min` function now accepts an array of dates rather than spread arguments. - * - * ```javascript - * // Before v2.0.0 - * const date1 = new Date(1989, 6, 10) - * const date2 = new Date(1987, 1, 11) - * const minDate = min(date1, date2) - * - * // v2.0.0 onward: - * const dates = [new Date(1989, 6, 10), new Date(1987, 1, 11)] - * const minDate = min(dates) - * ``` - * - * @param {Date[]|Number[]} datesArray - the dates to compare - * @returns {Date} - the earliest of the dates - * @throws {TypeError} 1 argument required - * - * @example - * // Which of these dates is the earliest? - * const result = min([ - * new Date(1989, 6, 10), - * new Date(1987, 1, 11), - * new Date(1995, 6, 2), - * new Date(1990, 0, 1) - * ]) - * //=> Wed Feb 11 1987 00:00:00 - */ - -function min(dirtyDatesArray) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(1, arguments); - var datesArray; // `dirtyDatesArray` is Array, Set or Map, or object with custom `forEach` method - - if (dirtyDatesArray && typeof dirtyDatesArray.forEach === 'function') { - datesArray = dirtyDatesArray; // If `dirtyDatesArray` is Array-like Object, convert to Array. - } else if (typeof dirtyDatesArray === 'object' && dirtyDatesArray !== null) { - datesArray = Array.prototype.slice.call(dirtyDatesArray); - } else { - // `dirtyDatesArray` is non-iterable, return Invalid Date - return new Date(NaN); - } - - var result; - datesArray.forEach(function (dirtyDate) { - var currentDate = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate); - - if (result === undefined || result > currentDate || isNaN(currentDate.getDate())) { - result = currentDate; - } - }); - return result || new Date(NaN); -} - -/***/ }), -/* 920 */ +/* 925 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return closestIndexTo; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -150026,14 +146725,14 @@ function closestIndexTo(dirtyDateToCompare, dirtyDatesArray) { } /***/ }), -/* 921 */ +/* 926 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return closestTo; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -150107,14 +146806,14 @@ function closestTo(dirtyDateToCompare, dirtyDatesArray) { } /***/ }), -/* 922 */ +/* 927 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return compareAsc; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -150170,14 +146869,14 @@ function compareAsc(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 923 */ +/* 928 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return compareDesc; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -150233,199 +146932,20 @@ function compareDesc(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 924 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return daysToWeeks; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name daysToWeeks - * @category Conversion Helpers - * @summary Convert days to weeks. - * - * @description - * Convert a number of days to a full number of weeks. - * - * @param {number} days - number of days to be converted - * - * @returns {number} the number of days converted in weeks - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 14 days to weeks: - * const result = daysToWeeks(14) - * //=> 2 - * - * @example - * // It uses floor rounding: - * const result = daysToWeeks(13) - * //=> 1 - */ - -function daysToWeeks(days) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var weeks = days / _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["daysInWeek"]; - return Math.floor(weeks); -} - -/***/ }), -/* 925 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "daysInWeek", function() { return daysInWeek; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "maxTime", function() { return maxTime; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "millisecondsInMinute", function() { return millisecondsInMinute; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "millisecondsInHour", function() { return millisecondsInHour; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "millisecondsInSecond", function() { return millisecondsInSecond; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "minTime", function() { return minTime; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "minutesInHour", function() { return minutesInHour; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "monthsInQuarter", function() { return monthsInQuarter; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "monthsInYear", function() { return monthsInYear; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "quartersInYear", function() { return quartersInYear; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "secondsInHour", function() { return secondsInHour; }); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "secondsInMinute", function() { return secondsInMinute; }); -/** - * Days in 1 week. - * - * @name daysInWeek - * @constant - * @type {number} - * @default - */ -var daysInWeek = 7; -/** - * Maximum allowed time. - * - * @name maxTime - * @constant - * @type {number} - * @default - */ - -var maxTime = Math.pow(10, 8) * 24 * 60 * 60 * 1000; -/** - * Milliseconds in 1 minute - * - * @name millisecondsInMinute - * @constant - * @type {number} - * @default - */ - -var millisecondsInMinute = 60000; -/** - * Milliseconds in 1 hour - * - * @name millisecondsInHour - * @constant - * @type {number} - * @default - */ - -var millisecondsInHour = 3600000; -/** - * Milliseconds in 1 second - * - * @name millisecondsInSecond - * @constant - * @type {number} - * @default - */ - -var millisecondsInSecond = 1000; -/** - * Minimum allowed time. - * - * @name minTime - * @constant - * @type {number} - * @default - */ - -var minTime = -maxTime; -/** - * Minutes in 1 hour - * - * @name minutesInHour - * @constant - * @type {number} - * @default - */ - -var minutesInHour = 60; -/** - * Months in 1 quarter - * - * @name monthsInQuarter - * @constant - * @type {number} - * @default - */ - -var monthsInQuarter = 3; -/** - * Months in 1 year - * - * @name monthsInYear - * @constant - * @type {number} - * @default - */ - -var monthsInYear = 12; -/** - * Quarters in 1 year - * - * @name quartersInYear - * @constant - * @type {number} - * @default - */ - -var quartersInYear = 4; -/** - * Seconds in 1 hour - * - * @name secondsInHour - * @constant - * @type {number} - * @default - */ - -var secondsInHour = 3600; -/** - * Seconds in 1 minute - * - * @name secondsInMinute - * @constant - * @type {number} - * @default - */ - -var secondsInMinute = 60; - -/***/ }), -/* 926 */ +/* 929 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInBusinessDays; }); -/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(927); -/* harmony import */ var _isWeekend_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(897); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); -/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(908); -/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(891); -/* harmony import */ var _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(929); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(894); +/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(930); +/* harmony import */ var _isWeekend_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(905); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(901); +/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(916); +/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(899); +/* harmony import */ var _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(931); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(902); @@ -150464,7 +146984,7 @@ function differenceInBusinessDays(dirtyDateLeft, dirtyDateRight) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_7__["default"])(2, arguments); var dateLeft = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dirtyDateLeft); var dateRight = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dirtyDateRight); - if (!Object(_isValid_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateLeft) || !Object(_isValid_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateRight)) return NaN; + if (!Object(_isValid_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateLeft) || !Object(_isValid_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateRight)) return new Date(NaN); var calendarDifference = Object(_differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(dateLeft, dateRight); var sign = calendarDifference < 0 ? -1 : 1; var weeks = Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_6__["default"])(calendarDifference / 7); @@ -150481,16 +147001,14 @@ function differenceInBusinessDays(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 927 */ +/* 930 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isValid; }); -/* harmony import */ var _isDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(928); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); - +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -150537,91 +147055,35 @@ __webpack_require__.r(__webpack_exports__); * * @example * // For the valid date: - * const result = isValid(new Date(2014, 1, 31)) + * var result = isValid(new Date(2014, 1, 31)) * //=> true * * @example * // For the value, convertable into a date: - * const result = isValid(1393804800000) + * var result = isValid(1393804800000) * //=> true * * @example * // For the invalid date: - * const result = isValid(new Date('')) + * var result = isValid(new Date('')) * //=> false */ function isValid(dirtyDate) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(1, arguments); - - if (!Object(_isDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate) && typeof dirtyDate !== 'number') { - return false; - } - - var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dirtyDate); - return !isNaN(Number(date)); -} - -/***/ }), -/* 928 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isDate; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); - -/** - * @name isDate - * @category Common Helpers - * @summary Is the given value a date? - * - * @description - * Returns true if the given value is an instance of Date. The function works for dates transferred across iframes. - * - * ### v2.0.0 breaking changes: - * - * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). - * - * @param {*} value - the value to check - * @returns {boolean} true if the given value is a date - * @throws {TypeError} 1 arguments required - * - * @example - * // For a valid date: - * const result = isDate(new Date()) - * //=> true - * - * @example - * // For an invalid date: - * const result = isDate(new Date(NaN)) - * //=> true - * - * @example - * // For some value: - * const result = isDate('2014-02-31') - * //=> false - * - * @example - * // For an object: - * const result = isDate({}) - * //=> false - */ - -function isDate(value) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return value instanceof Date || typeof value === 'object' && Object.prototype.toString.call(value) === '[object Date]'; + Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(1, arguments); + var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate); + return !isNaN(date); } /***/ }), -/* 929 */ +/* 931 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSameDay; }); -/* harmony import */ var _startOfDay_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(910); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _startOfDay_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(918); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -150655,14 +147117,14 @@ function isSameDay(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 930 */ +/* 932 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInCalendarISOWeekYears; }); -/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(903); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(911); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -150691,7 +147153,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // How many calendar ISO week-numbering years are 1 January 2010 and 1 January 2012? - * const result = differenceInCalendarISOWeekYears( + * var result = differenceInCalendarISOWeekYears( * new Date(2012, 0, 1), * new Date(2010, 0, 1) * ) @@ -150704,15 +147166,15 @@ function differenceInCalendarISOWeekYears(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 931 */ +/* 933 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInCalendarISOWeeks; }); -/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(909); -/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(904); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(917); +/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(912); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -150738,7 +147200,7 @@ var MILLISECONDS_IN_WEEK = 604800000; * * @example * // How many calendar ISO weeks are between 6 July 2014 and 21 July 2014? - * const result = differenceInCalendarISOWeeks( + * var result = differenceInCalendarISOWeeks( * new Date(2014, 6, 21), * new Date(2014, 6, 6) * ) @@ -150758,14 +147220,14 @@ function differenceInCalendarISOWeeks(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 932 */ +/* 934 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInCalendarMonths; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -150804,15 +147266,15 @@ function differenceInCalendarMonths(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 933 */ +/* 935 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInCalendarQuarters; }); -/* harmony import */ var _getQuarter_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(934); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _getQuarter_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(936); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -150852,14 +147314,14 @@ function differenceInCalendarQuarters(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 934 */ +/* 936 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getQuarter; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -150892,15 +147354,15 @@ function getQuarter(dirtyDate) { } /***/ }), -/* 935 */ +/* 937 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInCalendarWeeks; }); -/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(905); -/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(909); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(913); +/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(917); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -150928,7 +147390,7 @@ var MILLISECONDS_IN_WEEK = 604800000; * * @example * // How many calendar weeks are between 5 July 2014 and 20 July 2014? - * const result = differenceInCalendarWeeks( + * var result = differenceInCalendarWeeks( * new Date(2014, 6, 20), * new Date(2014, 6, 5) * ) @@ -150937,7 +147399,7 @@ var MILLISECONDS_IN_WEEK = 604800000; * @example * // If the week starts on Monday, * // how many calendar weeks are between 5 July 2014 and 20 July 2014? - * const result = differenceInCalendarWeeks( + * var result = differenceInCalendarWeeks( * new Date(2014, 6, 20), * new Date(2014, 6, 5), * { weekStartsOn: 1 } @@ -150958,14 +147420,14 @@ function differenceInCalendarWeeks(dirtyDateLeft, dirtyDateRight, dirtyOptions) } /***/ }), -/* 936 */ +/* 938 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInCalendarYears; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -150987,7 +147449,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // How many calendar years are between 31 December 2013 and 11 February 2015? - * const result = differenceInCalendarYears( + * var result = differenceInCalendarYears( * new Date(2015, 1, 11), * new Date(2013, 11, 31) * ) @@ -151002,15 +147464,15 @@ function differenceInCalendarYears(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 937 */ +/* 939 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInDays; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(908); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(916); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); // Like `compareAsc` but uses local time not UTC, which is needed @@ -151058,14 +147520,14 @@ function compareLocalAsc(dateLeft, dateRight) { * @example * // How many full days are between * // 2 July 2011 23:00:00 and 2 July 2012 00:00:00? - * const result = differenceInDays( + * var result = differenceInDays( * new Date(2012, 6, 2, 0, 0), * new Date(2011, 6, 2, 23, 0) * ) * //=> 365 * // How many full days are between * // 2 July 2011 23:59:00 and 3 July 2011 00:01:00? - * const result = differenceInDays( + * var result = differenceInDays( * new Date(2011, 6, 3, 0, 1), * new Date(2011, 6, 2, 23, 59) * ) @@ -151076,7 +147538,7 @@ function compareLocalAsc(dateLeft, dateRight) { * // result will always be 92 days, even in * // time zones where DST starts and the * // period has only 92*24-1 hours. - * const result = differenceInDays( + * var result = differenceInDays( * new Date(2020, 5, 1), * new Date(2020, 2, 1) * ) @@ -151093,27 +147555,24 @@ function differenceInDays(dirtyDateLeft, dirtyDateRight) { dateLeft.setDate(dateLeft.getDate() - sign * difference); // Math.abs(diff in full days - diff in calendar days) === 1 if last calendar day is not full // If so, result must be decreased by 1 in absolute value - var isLastDayNotFull = Number(compareLocalAsc(dateLeft, dateRight) === -sign); + var isLastDayNotFull = compareLocalAsc(dateLeft, dateRight) === -sign; var result = sign * (difference - isLastDayNotFull); // Prevent negative zero return result === 0 ? 0 : result; } /***/ }), -/* 938 */ +/* 940 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInHours; }); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(925); -/* harmony import */ var _differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(939); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); -/* harmony import */ var _lib_roundingMethods_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(940); - - +/* harmony import */ var _differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(941); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); +var MILLISECONDS_IN_HOUR = 3600000; /** * @name differenceInHours * @category Hour Helpers @@ -151128,35 +147587,33 @@ __webpack_require__.r(__webpack_exports__); * * @param {Date|Number} dateLeft - the later date * @param {Date|Number} dateRight - the earlier date - * @param {Object} [options] - an object with options. - * @param {String} [options.roundingMethod='trunc'] - a rounding method (`ceil`, `floor`, `round` or `trunc`) * @returns {Number} the number of hours * @throws {TypeError} 2 arguments required * * @example * // How many hours are between 2 July 2014 06:50:00 and 2 July 2014 19:00:00? - * const result = differenceInHours( + * var result = differenceInHours( * new Date(2014, 6, 2, 19, 0), * new Date(2014, 6, 2, 6, 50) * ) * //=> 12 */ -function differenceInHours(dateLeft, dateRight, options) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(2, arguments); - var diff = Object(_differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dateLeft, dateRight) / _constants_index_js__WEBPACK_IMPORTED_MODULE_0__["millisecondsInHour"]; - return Object(_lib_roundingMethods_index_js__WEBPACK_IMPORTED_MODULE_3__["getRoundingMethod"])(options === null || options === void 0 ? void 0 : options.roundingMethod)(diff); +function differenceInHours(dirtyDateLeft, dirtyDateRight) { + Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(2, arguments); + var diff = Object(_differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateLeft, dirtyDateRight) / MILLISECONDS_IN_HOUR; + return diff > 0 ? Math.floor(diff) : Math.ceil(diff); } /***/ }), -/* 939 */ +/* 941 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInMilliseconds; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -151179,51 +147636,32 @@ __webpack_require__.r(__webpack_exports__); * @example * // How many milliseconds are between * // 2 July 2014 12:30:20.600 and 2 July 2014 12:30:21.700? - * const result = differenceInMilliseconds( + * var result = differenceInMilliseconds( * new Date(2014, 6, 2, 12, 30, 21, 700), * new Date(2014, 6, 2, 12, 30, 20, 600) * ) * //=> 1100 */ -function differenceInMilliseconds(dateLeft, dateRight) { +function differenceInMilliseconds(dirtyDateLeft, dirtyDateRight) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(2, arguments); - return Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateLeft).getTime() - Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateRight).getTime(); -} - -/***/ }), -/* 940 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getRoundingMethod", function() { return getRoundingMethod; }); -var roundingMap = { - ceil: Math.ceil, - round: Math.round, - floor: Math.floor, - trunc: function (value) { - return value < 0 ? Math.ceil(value) : Math.floor(value); - } // Math.trunc is not supported by IE - -}; -var defaultRoundingMethod = 'trunc'; -function getRoundingMethod(method) { - return method ? roundingMap[method] : roundingMap[defaultRoundingMethod]; + var dateLeft = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateLeft); + var dateRight = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateRight); + return dateLeft.getTime() - dateRight.getTime(); } /***/ }), -/* 941 */ +/* 942 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInISOWeekYears; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _differenceInCalendarISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(930); -/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(922); -/* harmony import */ var _subISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(942); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _differenceInCalendarISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(932); +/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(927); +/* harmony import */ var _subISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(943); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(902); @@ -151272,22 +147710,22 @@ function differenceInISOWeekYears(dirtyDateLeft, dirtyDateRight) { // if last calendar ISO year is not full // If so, result must be decreased by 1 in absolute value - var isLastISOWeekYearNotFull = Number(Object(_compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dateLeft, dateRight) === -sign); + var isLastISOWeekYearNotFull = Object(_compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dateLeft, dateRight) === -sign; var result = sign * (difference - isLastISOWeekYearNotFull); // Prevent negative zero return result === 0 ? 0 : result; } /***/ }), -/* 942 */ +/* 943 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subISOWeekYears; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addISOWeekYears_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(910); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -151328,20 +147766,17 @@ function subISOWeekYears(dirtyDate, dirtyAmount) { } /***/ }), -/* 943 */ +/* 944 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInMinutes; }); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(925); -/* harmony import */ var _differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(939); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); -/* harmony import */ var _lib_roundingMethods_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(940); - - +/* harmony import */ var _differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(941); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); +var MILLISECONDS_IN_MINUTE = 60000; /** * @name differenceInMinutes * @category Minute Helpers @@ -151356,46 +147791,44 @@ __webpack_require__.r(__webpack_exports__); * * @param {Date|Number} dateLeft - the later date * @param {Date|Number} dateRight - the earlier date - * @param {Object} [options] - an object with options. - * @param {String} [options.roundingMethod='trunc'] - a rounding method (`ceil`, `floor`, `round` or `trunc`) * @returns {Number} the number of minutes * @throws {TypeError} 2 arguments required * * @example * // How many minutes are between 2 July 2014 12:07:59 and 2 July 2014 12:20:00? - * const result = differenceInMinutes( + * var result = differenceInMinutes( * new Date(2014, 6, 2, 12, 20, 0), * new Date(2014, 6, 2, 12, 7, 59) * ) * //=> 12 * * @example - * // How many minutes are between 10:01:59 and 10:00:00 - * const result = differenceInMinutes( + * // How many minutes are from 10:01:59 to 10:00:00 + * var result = differenceInMinutes( * new Date(2000, 0, 1, 10, 0, 0), * new Date(2000, 0, 1, 10, 1, 59) * ) * //=> -1 */ -function differenceInMinutes(dateLeft, dateRight, options) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(2, arguments); - var diff = Object(_differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dateLeft, dateRight) / _constants_index_js__WEBPACK_IMPORTED_MODULE_0__["millisecondsInMinute"]; - return Object(_lib_roundingMethods_index_js__WEBPACK_IMPORTED_MODULE_3__["getRoundingMethod"])(options === null || options === void 0 ? void 0 : options.roundingMethod)(diff); +function differenceInMinutes(dirtyDateLeft, dirtyDateRight) { + Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(2, arguments); + var diff = Object(_differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateLeft, dirtyDateRight) / MILLISECONDS_IN_MINUTE; + return diff > 0 ? Math.floor(diff) : Math.ceil(diff); } /***/ }), -/* 944 */ +/* 945 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInMonths; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _differenceInCalendarMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(932); -/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(922); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); -/* harmony import */ var _isLastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(945); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _differenceInCalendarMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(934); +/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(927); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); +/* harmony import */ var _isLastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(946); @@ -151407,7 +147840,7 @@ __webpack_require__.r(__webpack_exports__); * @summary Get the number of full months between the given dates. * * @description - * Get the number of full months between the given dates using trunc as a default rounding method. + * Get the number of full months between the given dates. * * ### v2.0.0 breaking changes: * @@ -151420,7 +147853,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // How many full months are between 31 January 2014 and 1 September 2014? - * const result = differenceInMonths(new Date(2014, 8, 1), new Date(2014, 0, 31)) + * var result = differenceInMonths(new Date(2014, 8, 1), new Date(2014, 0, 31)) * //=> 7 */ @@ -151429,45 +147862,38 @@ function differenceInMonths(dirtyDateLeft, dirtyDateRight) { var dateLeft = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateLeft); var dateRight = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateRight); var sign = Object(_compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dateLeft, dateRight); - var difference = Math.abs(Object(_differenceInCalendarMonths_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dateLeft, dateRight)); - var result; // Check for the difference of less than month - - if (difference < 1) { - result = 0; - } else { - if (dateLeft.getMonth() === 1 && dateLeft.getDate() > 27) { - // This will check if the date is end of Feb and assign a higher end of month date - // to compare it with Jan - dateLeft.setDate(30); - } + var difference = Math.abs(Object(_differenceInCalendarMonths_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dateLeft, dateRight)); // This will check if the date is end of Feb and assign a higher end of month date + // to compare it with Jan - dateLeft.setMonth(dateLeft.getMonth() - sign * difference); // Math.abs(diff in full months - diff in calendar months) === 1 if last calendar month is not full - // If so, result must be decreased by 1 in absolute value + if (dateLeft.getMonth() === 1 && dateLeft.getDate() > 27) { + dateLeft.setDate(30); + } - var isLastMonthNotFull = Object(_compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dateLeft, dateRight) === -sign; // Check for cases of one full calendar month + dateLeft.setMonth(dateLeft.getMonth() - sign * difference); // Math.abs(diff in full months - diff in calendar months) === 1 if last calendar month is not full + // If so, result must be decreased by 1 in absolute value - if (Object(_isLastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateLeft)) && difference === 1 && Object(_compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dirtyDateLeft, dateRight) === 1) { - isLastMonthNotFull = false; - } + var isLastMonthNotFull = Object(_compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dateLeft, dateRight) === -sign; // Check for cases of one full calendar month - result = sign * (difference - Number(isLastMonthNotFull)); - } // Prevent negative zero + if (Object(_isLastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateLeft)) && difference === 1 && Object(_compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dirtyDateLeft, dateRight) === 1) { + isLastMonthNotFull = false; + } + var result = sign * (difference - isLastMonthNotFull); // Prevent negative zero return result === 0 ? 0 : result; } /***/ }), -/* 945 */ +/* 946 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isLastDayOfMonth; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _endOfDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(946); -/* harmony import */ var _endOfMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(947); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _endOfDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(947); +/* harmony import */ var _endOfMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(948); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -151501,14 +147927,14 @@ function isLastDayOfMonth(dirtyDate) { } /***/ }), -/* 946 */ +/* 947 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfDay; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -151542,14 +147968,14 @@ function endOfDay(dirtyDate) { } /***/ }), -/* 947 */ +/* 948 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfMonth; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -151585,25 +148011,23 @@ function endOfMonth(dirtyDate) { } /***/ }), -/* 948 */ +/* 949 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInQuarters; }); -/* harmony import */ var _differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(944); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); -/* harmony import */ var _lib_roundingMethods_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(940); - +/* harmony import */ var _differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(945); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** * @name differenceInQuarters * @category Quarter Helpers - * @summary Get the number of quarters between the given dates. + * @summary Get the number of full quarters between the given dates. * * @description - * Get the number of quarters between the given dates. + * Get the number of full quarters between the given dates. * * ### v2.0.0 breaking changes: * @@ -151611,34 +148035,30 @@ __webpack_require__.r(__webpack_exports__); * * @param {Date|Number} dateLeft - the later date * @param {Date|Number} dateRight - the earlier date - * @param {Object} [options] - an object with options. - * @param {String} [options.roundingMethod='trunc'] - a rounding method (`ceil`, `floor`, `round` or `trunc`) * @returns {Number} the number of full quarters * @throws {TypeError} 2 arguments required * * @example * // How many full quarters are between 31 December 2013 and 2 July 2014? - * const result = differenceInQuarters(new Date(2014, 6, 2), new Date(2013, 11, 31)) + * var result = differenceInQuarters(new Date(2014, 6, 2), new Date(2013, 11, 31)) * //=> 2 */ -function differenceInQuarters(dateLeft, dateRight, options) { +function differenceInQuarters(dirtyDateLeft, dirtyDateRight) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(2, arguments); - var diff = Object(_differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateLeft, dateRight) / 3; - return Object(_lib_roundingMethods_index_js__WEBPACK_IMPORTED_MODULE_2__["getRoundingMethod"])(options === null || options === void 0 ? void 0 : options.roundingMethod)(diff); + var diff = Object(_differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateLeft, dirtyDateRight) / 3; + return diff > 0 ? Math.floor(diff) : Math.ceil(diff); } /***/ }), -/* 949 */ +/* 950 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInSeconds; }); -/* harmony import */ var _differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(939); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); -/* harmony import */ var _lib_roundingMethods_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(940); - +/* harmony import */ var _differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(941); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -151655,38 +148075,34 @@ __webpack_require__.r(__webpack_exports__); * * @param {Date|Number} dateLeft - the later date * @param {Date|Number} dateRight - the earlier date - * @param {Object} [options] - an object with options. - * @param {String} [options.roundingMethod='trunc'] - a rounding method (`ceil`, `floor`, `round` or `trunc`) * @returns {Number} the number of seconds * @throws {TypeError} 2 arguments required * * @example * // How many seconds are between * // 2 July 2014 12:30:07.999 and 2 July 2014 12:30:20.000? - * const result = differenceInSeconds( + * var result = differenceInSeconds( * new Date(2014, 6, 2, 12, 30, 20, 0), * new Date(2014, 6, 2, 12, 30, 7, 999) * ) * //=> 12 */ -function differenceInSeconds(dateLeft, dateRight, options) { +function differenceInSeconds(dirtyDateLeft, dirtyDateRight) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(2, arguments); - var diff = Object(_differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateLeft, dateRight) / 1000; - return Object(_lib_roundingMethods_index_js__WEBPACK_IMPORTED_MODULE_2__["getRoundingMethod"])(options === null || options === void 0 ? void 0 : options.roundingMethod)(diff); + var diff = Object(_differenceInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateLeft, dirtyDateRight) / 1000; + return diff > 0 ? Math.floor(diff) : Math.ceil(diff); } /***/ }), -/* 950 */ +/* 951 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInWeeks; }); -/* harmony import */ var _differenceInDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(937); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); -/* harmony import */ var _lib_roundingMethods_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(940); - +/* harmony import */ var _differenceInDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(939); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -151696,7 +148112,7 @@ __webpack_require__.r(__webpack_exports__); * * @description * Get the number of full weeks between two dates. Fractional weeks are - * truncated towards zero by default. + * truncated towards zero. * * One "full week" is the distance between a local time in one day to the same * local time 7 days earlier or later. A full week can sometimes be less than @@ -151712,14 +148128,12 @@ __webpack_require__.r(__webpack_exports__); * * @param {Date|Number} dateLeft - the later date * @param {Date|Number} dateRight - the earlier date - * @param {Object} [options] - an object with options. - * @param {String} [options.roundingMethod='trunc'] - a rounding method (`ceil`, `floor`, `round` or `trunc`) * @returns {Number} the number of full weeks * @throws {TypeError} 2 arguments required * * @example * // How many full weeks are between 5 July 2014 and 20 July 2014? - * const result = differenceInWeeks(new Date(2014, 6, 20), new Date(2014, 6, 5)) + * var result = differenceInWeeks(new Date(2014, 6, 20), new Date(2014, 6, 5)) * //=> 2 * * // How many full weeks are between @@ -151728,30 +148142,30 @@ __webpack_require__.r(__webpack_exports__); * // result will always be 8 weeks (54 days), * // even if DST starts and the period has * // only 54*24-1 hours. - * const result = differenceInWeeks( + * var result = differenceInWeeks( * new Date(2020, 5, 1), * new Date(2020, 2, 6) * ) * //=> 8 */ -function differenceInWeeks(dateLeft, dateRight, options) { +function differenceInWeeks(dirtyDateLeft, dirtyDateRight) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(2, arguments); - var diff = Object(_differenceInDays_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateLeft, dateRight) / 7; - return Object(_lib_roundingMethods_index_js__WEBPACK_IMPORTED_MODULE_2__["getRoundingMethod"])(options === null || options === void 0 ? void 0 : options.roundingMethod)(diff); + var diff = Object(_differenceInDays_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateLeft, dirtyDateRight) / 7; + return diff > 0 ? Math.floor(diff) : Math.ceil(diff); } /***/ }), -/* 951 */ +/* 952 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return differenceInYears; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _differenceInCalendarYears_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(936); -/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(922); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _differenceInCalendarYears_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(938); +/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(927); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -151775,7 +148189,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // How many full years are between 31 December 2013 and 11 February 2015? - * const result = differenceInYears(new Date(2015, 1, 11), new Date(2013, 11, 31)) + * var result = differenceInYears(new Date(2015, 1, 11), new Date(2013, 11, 31)) * //=> 1 */ @@ -151787,25 +148201,25 @@ function differenceInYears(dirtyDateLeft, dirtyDateRight) { var difference = Math.abs(Object(_differenceInCalendarYears_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dateLeft, dateRight)); // Set both dates to a valid leap year for accurate comparison when dealing // with leap days - dateLeft.setFullYear(1584); - dateRight.setFullYear(1584); // Math.abs(diff in full years - diff in calendar years) === 1 if last calendar year is not full + dateLeft.setFullYear('1584'); + dateRight.setFullYear('1584'); // Math.abs(diff in full years - diff in calendar years) === 1 if last calendar year is not full // If so, result must be decreased by 1 in absolute value var isLastYearNotFull = Object(_compareAsc_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dateLeft, dateRight) === -sign; - var result = sign * (difference - Number(isLastYearNotFull)); // Prevent negative zero + var result = sign * (difference - isLastYearNotFull); // Prevent negative zero return result === 0 ? 0 : result; } /***/ }), -/* 952 */ +/* 953 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return eachDayOfInterval; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -151846,7 +148260,7 @@ __webpack_require__.r(__webpack_exports__); * ) * ``` * - * @param {Interval} interval - the interval. See [Interval]{@link https://date-fns.org/docs/Interval} + * @param {Interval} interval - the interval. See [Interval]{@link docs/types/Interval} * @param {Object} [options] - an object with options. * @param {Number} [options.step=1] - the step to increment by. The value should be more than 1. * @returns {Date[]} the array with starts of days from the day of the interval start to the day of the interval end @@ -151897,15 +148311,15 @@ function eachDayOfInterval(dirtyInterval, options) { } /***/ }), -/* 953 */ +/* 954 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return eachHourOfInterval; }); -/* harmony import */ var _addHours_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _addHours_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(908); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -151918,7 +148332,7 @@ __webpack_require__.r(__webpack_exports__); * @description * Return the array of hours within the specified time interval. * - * @param {Interval} interval - the interval. See [Interval]{@link https://date-fns.org/docs/Interval} + * @param {Interval} interval - the interval. See [Interval]{@link docs/types/Interval} * @param {Object} [options] - an object with options. * @param {Number} [options.step=1] - the step to increment by. The value should be more than 1. * @returns {Date[]} the array with starts of hours from the hour of the interval start to the hour of the interval end @@ -151928,7 +148342,7 @@ __webpack_require__.r(__webpack_exports__); * @throws {RangeError} Date in interval cannot be `Invalid Date` * * @example - * // Each hour between 6 October 2014, 12:00 and 6 October 2014, 15:00 + * // Each hour between 6 October 2014, 12:00 and 10 October 2014, 15:00 * var result = eachHourOfInterval({ * start: new Date(2014, 9, 6, 12), * end: new Date(2014, 9, 6, 15) @@ -151966,126 +148380,15 @@ function eachHourOfInterval(dirtyInterval, options) { return dates; } -/***/ }), -/* 954 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return eachMinuteOfInterval; }); -/* harmony import */ var _addMinutes_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(911); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _startOfMinute_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(955); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); - - - - - -/** - * @name eachMinuteOfInterval - * @category Interval Helpers - * @summary Return the array of minutes within the specified time interval. - * - * @description - * Returns the array of minutes within the specified time interval. - * - * @param {Interval} interval - the interval. See [Interval]{@link https://date-fns.org/docs/Interval} - * @param {Object} [options] - an object with options. - * @param {Number} [options.step=1] - the step to increment by. The starts of minutes from the hour of the interval start to the hour of the interval end - * @throws {TypeError} 1 argument requie value should be more than 1. - * @returns {Date[]} the array withred - * @throws {RangeError} `options.step` must be a number equal or greater than 1 - * @throws {RangeError} The start of an interval cannot be after its end - * @throws {RangeError} Date in interval cannot be `Invalid Date` - * - * @example - * // Each minute between 14 October 2020, 13:00 and 14 October 2020, 13:03 - * const result = eachMinuteOfInterval({ - * start: new Date(2014, 9, 14, 13), - * end: new Date(2014, 9, 14, 13, 3) - * }) - * //=> [ - * // Wed Oct 14 2014 13:00:00, - * // Wed Oct 14 2014 13:01:00, - * // Wed Oct 14 2014 13:02:00, - * // Wed Oct 14 2014 13:03:00 - * // ] - */ -function eachMinuteOfInterval(interval, options) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(1, arguments); - var startDate = Object(_startOfMinute_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(interval.start)); - var endDate = Object(_startOfMinute_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(interval.end)); - var startTime = startDate.getTime(); - var endTime = endDate.getTime(); - - if (startTime >= endTime) { - throw new RangeError('Invalid interval'); - } - - var dates = []; - var currentDate = startDate; - var step = options && 'step' in options ? Number(options.step) : 1; - if (step < 1 || isNaN(step)) throw new RangeError('`options.step` must be a number equal or greater than 1'); - - while (currentDate.getTime() <= endTime) { - dates.push(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(currentDate)); - currentDate = Object(_addMinutes_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(currentDate, step); - } - - return dates; -} - /***/ }), /* 955 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfMinute; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); - - -/** - * @name startOfMinute - * @category Minute Helpers - * @summary Return the start of a minute for the given date. - * - * @description - * Return the start of a minute for the given date. - * The result will be in the local timezone. - * - * ### v2.0.0 breaking changes: - * - * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). - * - * @param {Date|Number} date - the original date - * @returns {Date} the start of a minute - * @throws {TypeError} 1 argument required - * - * @example - * // The start of a minute for 1 December 2014 22:15:45.400: - * const result = startOfMinute(new Date(2014, 11, 1, 22, 15, 45, 400)) - * //=> Mon Dec 01 2014 22:15:00 - */ - -function startOfMinute(dirtyDate) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(1, arguments); - var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate); - date.setSeconds(0, 0); - return date; -} - -/***/ }), -/* 956 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return eachMonthOfInterval; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -152096,7 +148399,7 @@ __webpack_require__.r(__webpack_exports__); * @description * Return the array of months within the specified time interval. * - * @param {Interval} interval - the interval. See [Interval]{@link https://date-fns.org/docs/Interval} + * @param {Interval} interval - the interval. See [Interval]{@link docs/types/Interval} * @returns {Date[]} the array with starts of months from the month of the interval start to the month of the interval end * @throws {TypeError} 1 argument required * @throws {RangeError} The start of an interval cannot be after its end @@ -152144,16 +148447,16 @@ function eachMonthOfInterval(dirtyInterval) { } /***/ }), -/* 957 */ +/* 956 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return eachQuarterOfInterval; }); -/* harmony import */ var _addQuarters_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(912); -/* harmony import */ var _startOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(958); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _addQuarters_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(920); +/* harmony import */ var _startOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(957); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -152166,7 +148469,7 @@ __webpack_require__.r(__webpack_exports__); * @description * Return the array of quarters within the specified time interval. * - * @param {Interval} interval - the interval. See [Interval]{@link https://date-fns.org/docs/Interval} + * @param {Interval} interval - the interval. See [Interval]{@link docs/types/Interval} * @returns {Date[]} the array with starts of quarters from the quarter of the interval start to the quarter of the interval end * @throws {TypeError} 1 argument required * @throws {RangeError} The start of an interval cannot be after its end @@ -152211,14 +148514,14 @@ function eachQuarterOfInterval(dirtyInterval) { } /***/ }), -/* 958 */ +/* 957 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfQuarter; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -152255,16 +148558,16 @@ function startOfQuarter(dirtyDate) { } /***/ }), -/* 959 */ +/* 958 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return eachWeekOfInterval; }); -/* harmony import */ var _addWeeks_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(914); -/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(905); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _addWeeks_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(922); +/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(913); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -152281,7 +148584,7 @@ __webpack_require__.r(__webpack_exports__); * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * - * @param {Interval} interval - the interval. See [Interval]{@link https://date-fns.org/docs/Interval} + * @param {Interval} interval - the interval. See [Interval]{@link docs/types/Interval} * @param {Object} [options] - an object with options. * @param {Locale} [options.locale=defaultLocale] - the locale object. See [Locale]{@link https://date-fns.org/docs/Locale} * @param {0|1|2|3|4|5|6} [options.weekStartsOn=0] - the index of the first day of the week (0 - Sunday) @@ -152340,16 +148643,16 @@ function eachWeekOfInterval(dirtyInterval, options) { } /***/ }), -/* 960 */ +/* 959 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return eachWeekendOfInterval; }); -/* harmony import */ var _eachDayOfInterval_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(952); -/* harmony import */ var _isSunday_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(898); -/* harmony import */ var _isWeekend_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(897); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _eachDayOfInterval_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(953); +/* harmony import */ var _isSunday_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(906); +/* harmony import */ var _isWeekend_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(905); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -152362,7 +148665,7 @@ __webpack_require__.r(__webpack_exports__); * @description * Get all the Saturdays and Sundays in the given date interval. * - * @param {Interval} interval - the given interval. See [Interval]{@link https://date-fns.org/docs/Interval} + * @param {Interval} interval - the given interval. See [Interval]{@link docs/types/Interval} * @returns {Date[]} an array containing all the Saturdays and Sundays * @throws {TypeError} 1 argument required * @throws {RangeError} The start of an interval cannot be after its end @@ -152401,16 +148704,16 @@ function eachWeekendOfInterval(interval) { } /***/ }), -/* 961 */ +/* 960 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return eachWeekendOfMonth; }); -/* harmony import */ var _eachWeekendOfInterval_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(960); -/* harmony import */ var _startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(962); -/* harmony import */ var _endOfMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(947); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _eachWeekendOfInterval_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(959); +/* harmony import */ var _startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(961); +/* harmony import */ var _endOfMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(948); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -152455,14 +148758,14 @@ function eachWeekendOfMonth(dirtyDate) { } /***/ }), -/* 962 */ +/* 961 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfMonth; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -152497,16 +148800,16 @@ function startOfMonth(dirtyDate) { } /***/ }), -/* 963 */ +/* 962 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return eachWeekendOfYear; }); -/* harmony import */ var _eachWeekendOfInterval_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(960); -/* harmony import */ var _startOfYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(964); -/* harmony import */ var _endOfYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(965); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _eachWeekendOfInterval_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(959); +/* harmony import */ var _startOfYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(963); +/* harmony import */ var _endOfYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(964); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -152548,14 +148851,14 @@ function eachWeekendOfYear(dirtyDate) { } /***/ }), -/* 964 */ +/* 963 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -152591,14 +148894,14 @@ function startOfYear(dirtyDate) { } /***/ }), -/* 965 */ +/* 964 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -152634,14 +148937,14 @@ function endOfYear(dirtyDate) { } /***/ }), -/* 966 */ +/* 965 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return eachYearOfInterval; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -152652,7 +148955,7 @@ __webpack_require__.r(__webpack_exports__); * @description * Return the array of yearly timestamps within the specified time interval. * - * @param {Interval} interval - the interval. See [Interval]{@link https://date-fns.org/docs/Interval} + * @param {Interval} interval - the interval. See [Interval]{@link docs/types/Interval} * @returns {Date[]} the array with starts of yearly timestamps from the month of the interval start to the month of the interval end * @throws {TypeError} 1 argument required * @throws {RangeError} The start of an interval cannot be after its end @@ -152660,7 +148963,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Each year between 6 February 2014 and 10 August 2017: - * const result = eachYearOfInterval({ + * var result = eachYearOfInterval({ * start: new Date(2014, 1, 6), * end: new Date(2017, 7, 10) * }) @@ -152697,14 +149000,14 @@ function eachYearOfInterval(dirtyInterval) { } /***/ }), -/* 967 */ +/* 966 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfDecade; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -152743,14 +149046,14 @@ function endOfDecade(dirtyDate) { } /***/ }), -/* 968 */ +/* 967 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfHour; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -152784,14 +149087,14 @@ function endOfHour(dirtyDate) { } /***/ }), -/* 969 */ +/* 968 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfISOWeek; }); -/* harmony import */ var _endOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(970); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _endOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(969); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -152827,15 +149130,15 @@ function endOfISOWeek(dirtyDate) { } /***/ }), -/* 970 */ +/* 969 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfWeek; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -152892,15 +149195,15 @@ function endOfWeek(dirtyDate, dirtyOptions) { } /***/ }), -/* 971 */ +/* 970 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfISOWeekYear; }); -/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(903); -/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(904); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(911); +/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(912); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -152947,14 +149250,14 @@ function endOfISOWeekYear(dirtyDate) { } /***/ }), -/* 972 */ +/* 971 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfMinute; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -152988,14 +149291,14 @@ function endOfMinute(dirtyDate) { } /***/ }), -/* 973 */ +/* 972 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfQuarter; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -153032,14 +149335,14 @@ function endOfQuarter(dirtyDate) { } /***/ }), -/* 974 */ +/* 973 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfSecond; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -153073,13 +149376,13 @@ function endOfSecond(dirtyDate) { } /***/ }), -/* 975 */ +/* 974 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return endOfToday; }); -/* harmony import */ var _endOfDay_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(946); +/* harmony import */ var _endOfDay_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(947); /** * @name endOfToday @@ -153110,7 +149413,7 @@ function endOfToday() { } /***/ }), -/* 976 */ +/* 975 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -153151,7 +149454,7 @@ function endOfTomorrow() { } /***/ }), -/* 977 */ +/* 976 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -153192,22 +149495,22 @@ function endOfYesterday() { } /***/ }), -/* 978 */ +/* 977 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return format; }); -/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(927); -/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(979); -/* harmony import */ var _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(989); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(893); -/* harmony import */ var _lib_format_formatters_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(990); -/* harmony import */ var _lib_format_longFormatters_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(1002); -/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(909); -/* harmony import */ var _lib_protectedTokens_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(1003); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(894); +/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(930); +/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(978); +/* harmony import */ var _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(988); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(901); +/* harmony import */ var _lib_format_formatters_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(989); +/* harmony import */ var _lib_format_longFormatters_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(1001); +/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(917); +/* harmony import */ var _lib_protectedTokens_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(1002); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(902); @@ -153324,28 +149627,28 @@ var unescapedLatinCharacterRegExp = /[a-zA-Z]/; * | Day of week (formatting) | E..EEE | Mon, Tue, Wed, ..., Sun | | * | | EEEE | Monday, Tuesday, ..., Sunday | 2 | * | | EEEEE | M, T, W, T, F, S, S | | - * | | EEEEEE | Mo, Tu, We, Th, Fr, Sa, Su | | + * | | EEEEEE | Mo, Tu, We, Th, Fr, Su, Sa | | * | ISO day of week (formatting) | i | 1, 2, 3, ..., 7 | 7 | * | | io | 1st, 2nd, ..., 7th | 7 | * | | ii | 01, 02, ..., 07 | 7 | * | | iii | Mon, Tue, Wed, ..., Sun | 7 | * | | iiii | Monday, Tuesday, ..., Sunday | 2,7 | * | | iiiii | M, T, W, T, F, S, S | 7 | - * | | iiiiii | Mo, Tu, We, Th, Fr, Sa, Su | 7 | + * | | iiiiii | Mo, Tu, We, Th, Fr, Su, Sa | 7 | * | Local day of week (formatting) | e | 2, 3, 4, ..., 1 | | * | | eo | 2nd, 3rd, ..., 1st | 7 | * | | ee | 02, 03, ..., 01 | | * | | eee | Mon, Tue, Wed, ..., Sun | | * | | eeee | Monday, Tuesday, ..., Sunday | 2 | * | | eeeee | M, T, W, T, F, S, S | | - * | | eeeeee | Mo, Tu, We, Th, Fr, Sa, Su | | + * | | eeeeee | Mo, Tu, We, Th, Fr, Su, Sa | | * | Local day of week (stand-alone) | c | 2, 3, 4, ..., 1 | | * | | co | 2nd, 3rd, ..., 1st | 7 | * | | cc | 02, 03, ..., 01 | | * | | ccc | Mon, Tue, Wed, ..., Sun | | * | | cccc | Monday, Tuesday, ..., Sunday | 2 | * | | ccccc | M, T, W, T, F, S, S | | - * | | cccccc | Mo, Tu, We, Th, Fr, Sa, Su | | + * | | cccccc | Mo, Tu, We, Th, Fr, Su, Sa | | * | AM, PM | a..aa | AM, PM | | * | | aaa | am, pm | | * | | aaaa | a.m., p.m. | 2 | @@ -153377,7 +149680,7 @@ var unescapedLatinCharacterRegExp = /[a-zA-Z]/; * | | ss | 00, 01, ..., 59 | | * | Fraction of second | S | 0, 1, ..., 9 | | * | | SS | 00, 01, ..., 99 | | - * | | SSS | 000, 001, ..., 999 | | + * | | SSS | 000, 0001, ..., 999 | | * | | SSSS | ... | 3 | * | Timezone (ISO-8601 w/ Z) | X | -08, +0530, Z | | * | | XX | -0800, +0530, Z | | @@ -153643,17 +149946,16 @@ function cleanEscapedString(input) { } /***/ }), -/* 979 */ +/* 978 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _lib_formatDistance_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(980); -/* harmony import */ var _lib_formatLong_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(981); -/* harmony import */ var _lib_formatRelative_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(983); -/* harmony import */ var _lib_localize_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(984); -/* harmony import */ var _lib_match_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(986); - +/* harmony import */ var _lib_formatDistance_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(979); +/* harmony import */ var _lib_formatLong_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(980); +/* harmony import */ var _lib_formatRelative_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(982); +/* harmony import */ var _lib_localize_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(983); +/* harmony import */ var _lib_match_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(985); @@ -153668,6 +149970,7 @@ __webpack_require__.r(__webpack_exports__); * @author Sasha Koss [@kossnocorp]{@link https://github.com/kossnocorp} * @author Lesha Koss [@leshakoss]{@link https://github.com/leshakoss} */ + var locale = { code: 'en-US', formatDistance: _lib_formatDistance_index_js__WEBPACK_IMPORTED_MODULE_0__["default"], @@ -153685,11 +149988,12 @@ var locale = { /* harmony default export */ __webpack_exports__["default"] = (locale); /***/ }), -/* 980 */ +/* 979 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatDistance; }); var formatDistanceLocale = { lessThanXSeconds: { one: 'less than a second', @@ -153753,21 +150057,20 @@ var formatDistanceLocale = { other: 'almost {{count}} years' } }; - -var formatDistance = function (token, count, options) { +function formatDistance(token, count, options) { + options = options || {}; var result; - var tokenValue = formatDistanceLocale[token]; - if (typeof tokenValue === 'string') { - result = tokenValue; + if (typeof formatDistanceLocale[token] === 'string') { + result = formatDistanceLocale[token]; } else if (count === 1) { - result = tokenValue.one; + result = formatDistanceLocale[token].one; } else { - result = tokenValue.other.replace('{{count}}', count.toString()); + result = formatDistanceLocale[token].other.replace('{{count}}', count); } - if (options !== null && options !== void 0 && options.addSuffix) { - if (options.comparison && options.comparison > 0) { + if (options.addSuffix) { + if (options.comparison > 0) { return 'in ' + result; } else { return result + ' ago'; @@ -153775,17 +150078,15 @@ var formatDistance = function (token, count, options) { } return result; -}; - -/* harmony default export */ __webpack_exports__["default"] = (formatDistance); +} /***/ }), -/* 981 */ +/* 980 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _lib_buildFormatLongFn_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(982); +/* harmony import */ var _lib_buildFormatLongFn_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(981); var dateFormats = { full: 'EEEE, MMMM do, y', @@ -153822,16 +150123,15 @@ var formatLong = { /* harmony default export */ __webpack_exports__["default"] = (formatLong); /***/ }), -/* 982 */ +/* 981 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return buildFormatLongFn; }); function buildFormatLongFn(args) { - return function () { - var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - // TODO: Remove String() + return function (dirtyOptions) { + var options = dirtyOptions || {}; var width = options.width ? String(options.width) : args.defaultWidth; var format = args.formats[width] || args.formats[args.defaultWidth]; return format; @@ -153839,11 +150139,12 @@ function buildFormatLongFn(args) { } /***/ }), -/* 983 */ +/* 982 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatRelative; }); var formatRelativeLocale = { lastWeek: "'last' eeee 'at' p", yesterday: "'yesterday at' p", @@ -153852,20 +150153,17 @@ var formatRelativeLocale = { nextWeek: "eeee 'at' p", other: 'P' }; - -var formatRelative = function (token, _date, _baseDate, _options) { +function formatRelative(token, _date, _baseDate, _options) { return formatRelativeLocale[token]; -}; - -/* harmony default export */ __webpack_exports__["default"] = (formatRelative); +} /***/ }), -/* 984 */ +/* 983 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _lib_buildLocalizeFn_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(985); +/* harmony import */ var _lib_buildLocalizeFn_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(984); var eraValues = { narrow: ['B', 'A'], @@ -153875,12 +150173,12 @@ var eraValues = { var quarterValues = { narrow: ['1', '2', '3', '4'], abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'], - wide: ['1st quarter', '2nd quarter', '3rd quarter', '4th quarter'] -}; // Note: in English, the names of days of the week and months are capitalized. -// If you are making a new locale based on this one, check if the same is true for the language you're working on. -// Generally, formatted dates should look like they are in the middle of a sentence, -// e.g. in Spanish language the weekdays and months should be in the lowercase. + wide: ['1st quarter', '2nd quarter', '3rd quarter', '4th quarter'] // Note: in English, the names of days of the week and months are capitalized. + // If you are making a new locale based on this one, check if the same is true for the language you're working on. + // Generally, formatted dates should look like they are in the middle of a sentence, + // e.g. in Spanish language the weekdays and months should be in the lowercase. +}; var monthValues = { narrow: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'], abbreviated: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], @@ -153957,13 +150255,16 @@ var formattingDayPeriodValues = { } }; -var ordinalNumber = function (dirtyNumber, _options) { +function ordinalNumber(dirtyNumber, _dirtyOptions) { var number = Number(dirtyNumber); // If ordinal numbers depend on context, for example, // if they are different for different grammatical genders, - // use `options.unit`. + // use `options.unit`: // - // `unit` can be 'year', 'quarter', 'month', 'week', 'date', 'dayOfYear', - // 'day', 'hour', 'minute', 'second'. + // var options = dirtyOptions || {} + // var unit = String(options.unit) + // + // where `unit` can be 'year', 'quarter', 'month', 'week', 'date', 'dayOfYear', + // 'day', 'hour', 'minute', 'second' var rem100 = number % 100; @@ -153981,7 +150282,7 @@ var ordinalNumber = function (dirtyNumber, _options) { } return number + 'th'; -}; +} var localize = { ordinalNumber: ordinalNumber, @@ -153993,7 +150294,7 @@ var localize = { values: quarterValues, defaultWidth: 'wide', argumentCallback: function (quarter) { - return quarter - 1; + return Number(quarter) - 1; } }), month: Object(_lib_buildLocalizeFn_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])({ @@ -154014,7 +150315,7 @@ var localize = { /* harmony default export */ __webpack_exports__["default"] = (localize); /***/ }), -/* 985 */ +/* 984 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -154038,20 +150339,19 @@ function buildLocalizeFn(args) { valuesArray = args.values[_width] || args.values[_defaultWidth]; } - var index = args.argumentCallback ? args.argumentCallback(dirtyIndex) : dirtyIndex; // @ts-ignore: For some reason TypeScript just don't want to match it, no matter how hard we try. I challange you to try to remove it! - + var index = args.argumentCallback ? args.argumentCallback(dirtyIndex) : dirtyIndex; return valuesArray[index]; }; } /***/ }), -/* 986 */ +/* 985 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(987); -/* harmony import */ var _lib_buildMatchPatternFn_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(988); +/* harmony import */ var _lib_buildMatchPatternFn_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(986); +/* harmony import */ var _lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(987); var matchOrdinalNumberPattern = /^(\d+)(th|st|nd|rd)?/i; @@ -154108,20 +150408,20 @@ var parseDayPeriodPatterns = { } }; var match = { - ordinalNumber: Object(_lib_buildMatchPatternFn_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])({ + ordinalNumber: Object(_lib_buildMatchPatternFn_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])({ matchPattern: matchOrdinalNumberPattern, parsePattern: parseOrdinalNumberPattern, valueCallback: function (value) { return parseInt(value, 10); } }), - era: Object(_lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])({ + era: Object(_lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])({ matchPatterns: matchEraPatterns, defaultMatchWidth: 'wide', parsePatterns: parseEraPatterns, defaultParseWidth: 'any' }), - quarter: Object(_lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])({ + quarter: Object(_lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])({ matchPatterns: matchQuarterPatterns, defaultMatchWidth: 'wide', parsePatterns: parseQuarterPatterns, @@ -154130,19 +150430,19 @@ var match = { return index + 1; } }), - month: Object(_lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])({ + month: Object(_lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])({ matchPatterns: matchMonthPatterns, defaultMatchWidth: 'wide', parsePatterns: parseMonthPatterns, defaultParseWidth: 'any' }), - day: Object(_lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])({ + day: Object(_lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])({ matchPatterns: matchDayPatterns, defaultMatchWidth: 'wide', parsePatterns: parseDayPatterns, defaultParseWidth: 'any' }), - dayPeriod: Object(_lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])({ + dayPeriod: Object(_lib_buildMatchFn_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])({ matchPatterns: matchDayPeriodPatterns, defaultMatchWidth: 'any', parsePatterns: parseDayPeriodPatterns, @@ -154151,6 +150451,39 @@ var match = { }; /* harmony default export */ __webpack_exports__["default"] = (match); +/***/ }), +/* 986 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return buildMatchPatternFn; }); +function buildMatchPatternFn(args) { + return function (dirtyString, dirtyOptions) { + var string = String(dirtyString); + var options = dirtyOptions || {}; + var matchResult = string.match(args.matchPattern); + + if (!matchResult) { + return null; + } + + var matchedString = matchResult[0]; + var parseResult = string.match(args.parsePattern); + + if (!parseResult) { + return null; + } + + var value = args.valueCallback ? args.valueCallback(parseResult[0]) : parseResult[0]; + value = options.valueCallback ? options.valueCallback(value) : value; + return { + value: value, + rest: string.slice(matchedString.length) + }; + }; +} + /***/ }), /* 987 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { @@ -154159,8 +150492,9 @@ var match = { __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return buildMatchFn; }); function buildMatchFn(args) { - return function (string) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + return function (dirtyString, dirtyOptions) { + var string = String(dirtyString); + var options = dirtyOptions || {}; var width = options.width; var matchPattern = width && args.matchPatterns[width] || args.matchPatterns[args.defaultMatchWidth]; var matchResult = string.match(matchPattern); @@ -154171,18 +150505,23 @@ function buildMatchFn(args) { var matchedString = matchResult[0]; var parsePatterns = width && args.parsePatterns[width] || args.parsePatterns[args.defaultParseWidth]; - var key = Array.isArray(parsePatterns) ? findIndex(parsePatterns, function (pattern) { - return pattern.test(matchedString); - }) : findKey(parsePatterns, function (pattern) { - return pattern.test(matchedString); - }); var value; - value = args.valueCallback ? args.valueCallback(key) : key; + + if (Object.prototype.toString.call(parsePatterns) === '[object Array]') { + value = findIndex(parsePatterns, function (pattern) { + return pattern.test(matchedString); + }); + } else { + value = findKey(parsePatterns, function (pattern) { + return pattern.test(matchedString); + }); + } + + value = args.valueCallback ? args.valueCallback(value) : value; value = options.valueCallback ? options.valueCallback(value) : value; - var rest = string.slice(matchedString.length); return { value: value, - rest: rest + rest: string.slice(matchedString.length) }; }; } @@ -154193,8 +150532,6 @@ function findKey(object, predicate) { return key; } } - - return undefined; } function findIndex(array, predicate) { @@ -154203,45 +150540,18 @@ function findIndex(array, predicate) { return key; } } - - return undefined; } /***/ }), /* 988 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return buildMatchPatternFn; }); -function buildMatchPatternFn(args) { - return function (string) { - var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - var matchResult = string.match(args.matchPattern); - if (!matchResult) return null; - var matchedString = matchResult[0]; - var parseResult = string.match(args.parsePattern); - if (!parseResult) return null; - var value = args.valueCallback ? args.valueCallback(parseResult[0]) : parseResult[0]; - value = options.valueCallback ? options.valueCallback(value) : value; - var rest = string.slice(matchedString.length); - return { - value: value, - rest: rest - }; - }; -} - -/***/ }), -/* 989 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subMilliseconds; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(909); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -154275,18 +150585,18 @@ function subMilliseconds(dirtyDate, dirtyAmount) { } /***/ }), -/* 990 */ +/* 989 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _lightFormatters_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(991); -/* harmony import */ var _lib_getUTCDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(993); -/* harmony import */ var _lib_getUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(994); -/* harmony import */ var _lib_getUTCISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(997); -/* harmony import */ var _lib_getUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(998); -/* harmony import */ var _lib_getUTCWeekYear_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(1001); -/* harmony import */ var _addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(992); +/* harmony import */ var _lightFormatters_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(990); +/* harmony import */ var _lib_getUTCDayOfYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(992); +/* harmony import */ var _lib_getUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(993); +/* harmony import */ var _lib_getUTCISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(996); +/* harmony import */ var _lib_getUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(997); +/* harmony import */ var _lib_getUTCWeekYear_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(1000); +/* harmony import */ var _addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(991); @@ -154303,53 +150613,53 @@ var dayPeriodEnum = { afternoon: 'afternoon', evening: 'evening', night: 'night' -}; -/* - * | | Unit | | Unit | - * |-----|--------------------------------|-----|--------------------------------| - * | a | AM, PM | A* | Milliseconds in day | - * | b | AM, PM, noon, midnight | B | Flexible day period | - * | c | Stand-alone local day of week | C* | Localized hour w/ day period | - * | d | Day of month | D | Day of year | - * | e | Local day of week | E | Day of week | - * | f | | F* | Day of week in month | - * | g* | Modified Julian day | G | Era | - * | h | Hour [1-12] | H | Hour [0-23] | - * | i! | ISO day of week | I! | ISO week of year | - * | j* | Localized hour w/ day period | J* | Localized hour w/o day period | - * | k | Hour [1-24] | K | Hour [0-11] | - * | l* | (deprecated) | L | Stand-alone month | - * | m | Minute | M | Month | - * | n | | N | | - * | o! | Ordinal number modifier | O | Timezone (GMT) | - * | p! | Long localized time | P! | Long localized date | - * | q | Stand-alone quarter | Q | Quarter | - * | r* | Related Gregorian year | R! | ISO week-numbering year | - * | s | Second | S | Fraction of second | - * | t! | Seconds timestamp | T! | Milliseconds timestamp | - * | u | Extended year | U* | Cyclic year | - * | v* | Timezone (generic non-locat.) | V* | Timezone (location) | - * | w | Local week of year | W* | Week of month | - * | x | Timezone (ISO-8601 w/o Z) | X | Timezone (ISO-8601) | - * | y | Year (abs) | Y | Local week-numbering year | - * | z | Timezone (specific non-locat.) | Z* | Timezone (aliases) | - * - * Letters marked by * are not implemented but reserved by Unicode standard. - * - * Letters marked by ! are non-standard, but implemented by date-fns: - * - `o` modifies the previous token to turn it into an ordinal (see `format` docs) - * - `i` is ISO day of week. For `i` and `ii` is returns numeric ISO week days, - * i.e. 7 for Sunday, 1 for Monday, etc. - * - `I` is ISO week of year, as opposed to `w` which is local week of year. - * - `R` is ISO week-numbering year, as opposed to `Y` which is local week-numbering year. - * `R` is supposed to be used in conjunction with `I` and `i` - * for universal ISO week-numbering date, whereas - * `Y` is supposed to be used in conjunction with `w` and `e` - * for week-numbering date specific to the locale. - * - `P` is long localized date format - * - `p` is long localized time format - */ + /* + * | | Unit | | Unit | + * |-----|--------------------------------|-----|--------------------------------| + * | a | AM, PM | A* | Milliseconds in day | + * | b | AM, PM, noon, midnight | B | Flexible day period | + * | c | Stand-alone local day of week | C* | Localized hour w/ day period | + * | d | Day of month | D | Day of year | + * | e | Local day of week | E | Day of week | + * | f | | F* | Day of week in month | + * | g* | Modified Julian day | G | Era | + * | h | Hour [1-12] | H | Hour [0-23] | + * | i! | ISO day of week | I! | ISO week of year | + * | j* | Localized hour w/ day period | J* | Localized hour w/o day period | + * | k | Hour [1-24] | K | Hour [0-11] | + * | l* | (deprecated) | L | Stand-alone month | + * | m | Minute | M | Month | + * | n | | N | | + * | o! | Ordinal number modifier | O | Timezone (GMT) | + * | p! | Long localized time | P! | Long localized date | + * | q | Stand-alone quarter | Q | Quarter | + * | r* | Related Gregorian year | R! | ISO week-numbering year | + * | s | Second | S | Fraction of second | + * | t! | Seconds timestamp | T! | Milliseconds timestamp | + * | u | Extended year | U* | Cyclic year | + * | v* | Timezone (generic non-locat.) | V* | Timezone (location) | + * | w | Local week of year | W* | Week of month | + * | x | Timezone (ISO-8601 w/o Z) | X | Timezone (ISO-8601) | + * | y | Year (abs) | Y | Local week-numbering year | + * | z | Timezone (specific non-locat.) | Z* | Timezone (aliases) | + * + * Letters marked by * are not implemented but reserved by Unicode standard. + * + * Letters marked by ! are non-standard, but implemented by date-fns: + * - `o` modifies the previous token to turn it into an ordinal (see `format` docs) + * - `i` is ISO day of week. For `i` and `ii` is returns numeric ISO week days, + * i.e. 7 for Sunday, 1 for Monday, etc. + * - `I` is ISO week of year, as opposed to `w` which is local week of year. + * - `R` is ISO week-numbering year, as opposed to `Y` which is local week-numbering year. + * `R` is supposed to be used in conjunction with `I` and `i` + * for universal ISO week-numbering date, whereas + * `Y` is supposed to be used in conjunction with `w` and `e` + * for week-numbering date specific to the locale. + * - `P` is long localized date format + * - `p` is long localized time format + */ +}; var formatters = { // Era G: function (date, token, localize) { @@ -155155,12 +151465,12 @@ function formatTimezone(offset, dirtyDelimiter) { /* harmony default export */ __webpack_exports__["default"] = (formatters); /***/ }), -/* 991 */ +/* 990 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(992); +/* harmony import */ var _addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(991); /* * | | Unit | | Unit | @@ -155247,7 +151557,7 @@ var formatters = { /* harmony default export */ __webpack_exports__["default"] = (formatters); /***/ }), -/* 992 */ +/* 991 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -155265,14 +151575,14 @@ function addLeadingZeros(number, targetLength) { } /***/ }), -/* 993 */ +/* 992 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getUTCDayOfYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); var MILLISECONDS_IN_DAY = 86400000; // This function will be a part of public API when UTC function will be implemented. @@ -155290,16 +151600,16 @@ function getUTCDayOfYear(dirtyDate) { } /***/ }), -/* 994 */ +/* 993 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getUTCISOWeek; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _startOfUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(995); -/* harmony import */ var _startOfUTCISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(996); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _startOfUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(994); +/* harmony import */ var _startOfUTCISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(995); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -155318,14 +151628,14 @@ function getUTCISOWeek(dirtyDate) { } /***/ }), -/* 995 */ +/* 994 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfUTCISOWeek; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); // This function will be a part of public API when UTC function will be implemented. // See issue: https://github.com/date-fns/date-fns/issues/376 @@ -155342,15 +151652,15 @@ function startOfUTCISOWeek(dirtyDate) { } /***/ }), -/* 996 */ +/* 995 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfUTCISOWeekYear; }); -/* harmony import */ var _getUTCISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(997); -/* harmony import */ var _startOfUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(995); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _getUTCISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(996); +/* harmony import */ var _startOfUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(994); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); // This function will be a part of public API when UTC function will be implemented. @@ -155367,15 +151677,15 @@ function startOfUTCISOWeekYear(dirtyDate) { } /***/ }), -/* 997 */ +/* 996 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getUTCISOWeekYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _startOfUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(995); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _startOfUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(994); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); // This function will be a part of public API when UTC function will be implemented. @@ -155404,16 +151714,16 @@ function getUTCISOWeekYear(dirtyDate) { } /***/ }), -/* 998 */ +/* 997 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getUTCWeek; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _startOfUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(999); -/* harmony import */ var _startOfUTCWeekYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1000); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _startOfUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(998); +/* harmony import */ var _startOfUTCWeekYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(999); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -155432,15 +151742,15 @@ function getUTCWeek(dirtyDate, options) { } /***/ }), -/* 999 */ +/* 998 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfUTCWeek; }); -/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); // This function will be a part of public API when UTC function will be implemented. @@ -155467,16 +151777,16 @@ function startOfUTCWeek(dirtyDate, dirtyOptions) { } /***/ }), -/* 1000 */ +/* 999 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfUTCWeekYear; }); -/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _getUTCWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1001); -/* harmony import */ var _startOfUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(999); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _getUTCWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1000); +/* harmony import */ var _startOfUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(998); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -155499,16 +151809,16 @@ function startOfUTCWeekYear(dirtyDate, dirtyOptions) { } /***/ }), -/* 1001 */ +/* 1000 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getUTCWeekYear; }); -/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _startOfUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(999); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _startOfUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(998); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -155548,7 +151858,7 @@ function getUTCWeekYear(dirtyDate, dirtyOptions) { } /***/ }), -/* 1002 */ +/* 1001 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -155651,7 +151961,7 @@ var longFormatters = { /* harmony default export */ __webpack_exports__["default"] = (longFormatters); /***/ }), -/* 1003 */ +/* 1002 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -155680,20 +151990,20 @@ function throwProtectedError(token, format, input) { } /***/ }), -/* 1004 */ +/* 1003 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatDistance; }); -/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(922); -/* harmony import */ var _differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(944); -/* harmony import */ var _differenceInSeconds_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(949); -/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(979); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(893); -/* harmony import */ var _lib_cloneObject_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(1005); -/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(909); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(894); +/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(927); +/* harmony import */ var _differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(945); +/* harmony import */ var _differenceInSeconds_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(950); +/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(978); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(901); +/* harmony import */ var _lib_cloneObject_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(1004); +/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(917); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(902); @@ -155785,13 +152095,13 @@ var MINUTES_IN_TWO_MONTHS = 86400; * * @example * // What is the distance between 2 July 2014 and 1 January 2015? - * const result = formatDistance(new Date(2014, 6, 2), new Date(2015, 0, 1)) + * var result = formatDistance(new Date(2014, 6, 2), new Date(2015, 0, 1)) * //=> '6 months' * * @example * // What is the distance between 1 January 2015 00:00:15 * // and 1 January 2015 00:00:00, including seconds? - * const result = formatDistance( + * var result = formatDistance( * new Date(2015, 0, 1, 0, 0, 15), * new Date(2015, 0, 1, 0, 0, 0), * { includeSeconds: true } @@ -155801,7 +152111,7 @@ var MINUTES_IN_TWO_MONTHS = 86400; * @example * // What is the distance from 1 January 2016 * // to 1 January 2015, with a suffix? - * const result = formatDistance(new Date(2015, 0, 1), new Date(2016, 0, 1), { + * var result = formatDistance(new Date(2015, 0, 1), new Date(2016, 0, 1), { * addSuffix: true * }) * //=> 'about 1 year ago' @@ -155809,15 +152119,15 @@ var MINUTES_IN_TWO_MONTHS = 86400; * @example * // What is the distance between 1 August 2016 and 1 January 2015 in Esperanto? * import { eoLocale } from 'date-fns/locale/eo' - * const result = formatDistance(new Date(2016, 7, 1), new Date(2015, 0, 1), { + * var result = formatDistance(new Date(2016, 7, 1), new Date(2015, 0, 1), { * locale: eoLocale * }) * //=> 'pli ol 1 jaro' */ -function formatDistance(dirtyDate, dirtyBaseDate) { - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; +function formatDistance(dirtyDate, dirtyBaseDate, dirtyOptions) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_7__["default"])(2, arguments); + var options = dirtyOptions || {}; var locale = options.locale || _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_3__["default"]; if (!locale.formatDistance) { @@ -155909,20 +152219,20 @@ function formatDistance(dirtyDate, dirtyBaseDate) { } /***/ }), -/* 1005 */ +/* 1004 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return cloneObject; }); -/* harmony import */ var _assign_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1006); +/* harmony import */ var _assign_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1005); function cloneObject(dirtyObject) { return Object(_assign_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])({}, dirtyObject); } /***/ }), -/* 1006 */ +/* 1005 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -155936,7 +152246,7 @@ function assign(target, dirtyObject) { dirtyObject = dirtyObject || {}; for (var property in dirtyObject) { - if (Object.prototype.hasOwnProperty.call(dirtyObject, property)) { + if (dirtyObject.hasOwnProperty(property)) { target[property] = dirtyObject[property]; } } @@ -155945,28 +152255,29 @@ function assign(target, dirtyObject) { } /***/ }), -/* 1007 */ +/* 1006 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatDistanceStrict; }); -/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(909); -/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(922); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); -/* harmony import */ var _lib_cloneObject_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(1005); -/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(979); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(894); +/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(917); +/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(927); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(901); +/* harmony import */ var _differenceInSeconds_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(950); +/* harmony import */ var _lib_cloneObject_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(1004); +/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(978); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(902); -var MILLISECONDS_IN_MINUTE = 1000 * 60; -var MINUTES_IN_DAY = 60 * 24; -var MINUTES_IN_MONTH = MINUTES_IN_DAY * 30; -var MINUTES_IN_YEAR = MINUTES_IN_DAY * 365; + +var MINUTES_IN_DAY = 1440; +var MINUTES_IN_MONTH = 43200; +var MINUTES_IN_YEAR = 525600; /** * @name formatDistanceStrict * @category Common Helpers @@ -156072,13 +152383,13 @@ var MINUTES_IN_YEAR = MINUTES_IN_DAY * 365; * * @example * // What is the distance between 2 July 2014 and 1 January 2015? - * const result = formatDistanceStrict(new Date(2014, 6, 2), new Date(2015, 0, 2)) + * var result = formatDistanceStrict(new Date(2014, 6, 2), new Date(2015, 0, 2)) * //=> '6 months' * * @example * // What is the distance between 1 January 2015 00:00:15 * // and 1 January 2015 00:00:00? - * const result = formatDistanceStrict( + * var result = formatDistanceStrict( * new Date(2015, 0, 1, 0, 0, 15), * new Date(2015, 0, 1, 0, 0, 0) * ) @@ -156087,7 +152398,7 @@ var MINUTES_IN_YEAR = MINUTES_IN_DAY * 365; * @example * // What is the distance from 1 January 2016 * // to 1 January 2015, with a suffix? - * const result = formatDistanceStrict(new Date(2015, 0, 1), new Date(2016, 0, 1), { + * var result = formatDistanceStrict(new Date(2015, 0, 1), new Date(2016, 0, 1), { * addSuffix: true * }) * //=> '1 year ago' @@ -156095,7 +152406,7 @@ var MINUTES_IN_YEAR = MINUTES_IN_DAY * 365; * @example * // What is the distance from 1 January 2016 * // to 1 January 2015, in minutes? - * const result = formatDistanceStrict(new Date(2016, 0, 1), new Date(2015, 0, 1), { + * var result = formatDistanceStrict(new Date(2016, 0, 1), new Date(2015, 0, 1), { * unit: 'minute' * }) * //=> '525600 minutes' @@ -156103,7 +152414,7 @@ var MINUTES_IN_YEAR = MINUTES_IN_DAY * 365; * @example * // What is the distance from 1 January 2015 * // to 28 January 2015, in months, rounded up? - * const result = formatDistanceStrict(new Date(2015, 0, 28), new Date(2015, 0, 1), { + * var result = formatDistanceStrict(new Date(2015, 0, 28), new Date(2015, 0, 1), { * unit: 'month', * roundingMethod: 'ceil' * }) @@ -156112,16 +152423,16 @@ var MINUTES_IN_YEAR = MINUTES_IN_DAY * 365; * @example * // What is the distance between 1 August 2016 and 1 January 2015 in Esperanto? * import { eoLocale } from 'date-fns/locale/eo' - * const result = formatDistanceStrict(new Date(2016, 7, 1), new Date(2015, 0, 1), { + * var result = formatDistanceStrict(new Date(2016, 7, 1), new Date(2015, 0, 1), { * locale: eoLocale * }) * //=> '1 jaro' */ -function formatDistanceStrict(dirtyDate, dirtyBaseDate) { - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_5__["default"])(2, arguments); - var locale = options.locale || _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_4__["default"]; +function formatDistanceStrict(dirtyDate, dirtyBaseDate, dirtyOptions) { + Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_6__["default"])(2, arguments); + var options = dirtyOptions || {}; + var locale = options.locale || _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_5__["default"]; if (!locale.formatDistance) { throw new RangeError('locale must contain localize.formatDistance property'); @@ -156133,7 +152444,7 @@ function formatDistanceStrict(dirtyDate, dirtyBaseDate) { throw new RangeError('Invalid time value'); } - var localizeOptions = Object(_lib_cloneObject_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(options); + var localizeOptions = Object(_lib_cloneObject_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(options); localizeOptions.addSuffix = Boolean(options.addSuffix); localizeOptions.comparison = comparison; var dateLeft; @@ -156160,12 +152471,9 @@ function formatDistanceStrict(dirtyDate, dirtyBaseDate) { throw new RangeError("roundingMethod must be 'floor', 'ceil' or 'round'"); } - var milliseconds = dateRight.getTime() - dateLeft.getTime(); - var minutes = milliseconds / MILLISECONDS_IN_MINUTE; - var timezoneOffset = Object(_lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateRight) - Object(_lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateLeft); // Use DST-normalized difference in minutes for years, months and days; - // use regular difference in minutes for hours, minutes and seconds. - - var dstNormalizedMinutes = (milliseconds - timezoneOffset) / MILLISECONDS_IN_MINUTE; + var seconds = Object(_differenceInSeconds_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(dateRight, dateLeft); + var offsetInSeconds = (Object(_lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateRight) - Object(_lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateLeft)) / 1000; + var minutes = roundingMethodFn((seconds - offsetInSeconds) / 60); var unit; if (options.unit == null) { @@ -156175,9 +152483,9 @@ function formatDistanceStrict(dirtyDate, dirtyBaseDate) { unit = 'minute'; } else if (minutes < MINUTES_IN_DAY) { unit = 'hour'; - } else if (dstNormalizedMinutes < MINUTES_IN_MONTH) { + } else if (minutes < MINUTES_IN_MONTH) { unit = 'day'; - } else if (dstNormalizedMinutes < MINUTES_IN_YEAR) { + } else if (minutes < MINUTES_IN_YEAR) { unit = 'month'; } else { unit = 'year'; @@ -156188,22 +152496,20 @@ function formatDistanceStrict(dirtyDate, dirtyBaseDate) { if (unit === 'second') { - var seconds = roundingMethodFn(milliseconds / 1000); return locale.formatDistance('xSeconds', seconds, localizeOptions); // 1 up to 60 mins } else if (unit === 'minute') { - var roundedMinutes = roundingMethodFn(minutes); - return locale.formatDistance('xMinutes', roundedMinutes, localizeOptions); // 1 up to 24 hours + return locale.formatDistance('xMinutes', minutes, localizeOptions); // 1 up to 24 hours } else if (unit === 'hour') { var hours = roundingMethodFn(minutes / 60); return locale.formatDistance('xHours', hours, localizeOptions); // 1 up to 30 days } else if (unit === 'day') { - var days = roundingMethodFn(dstNormalizedMinutes / MINUTES_IN_DAY); + var days = roundingMethodFn(minutes / MINUTES_IN_DAY); return locale.formatDistance('xDays', days, localizeOptions); // 1 up to 12 months } else if (unit === 'month') { - var months = roundingMethodFn(dstNormalizedMinutes / MINUTES_IN_MONTH); - return months === 12 && options.unit !== 'month' ? locale.formatDistance('xYears', 1, localizeOptions) : locale.formatDistance('xMonths', months, localizeOptions); // 1 year up to max Date + var months = roundingMethodFn(minutes / MINUTES_IN_MONTH); + return locale.formatDistance('xMonths', months, localizeOptions); // 1 year up to max Date } else if (unit === 'year') { - var years = roundingMethodFn(dstNormalizedMinutes / MINUTES_IN_YEAR); + var years = roundingMethodFn(minutes / MINUTES_IN_YEAR); return locale.formatDistance('xYears', years, localizeOptions); } @@ -156211,14 +152517,14 @@ function formatDistanceStrict(dirtyDate, dirtyBaseDate) { } /***/ }), -/* 1008 */ +/* 1007 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatDistanceToNow; }); -/* harmony import */ var _formatDistance_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1004); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _formatDistance_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1003); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -156333,14 +152639,14 @@ function formatDistanceToNow(dirtyDate, dirtyOptions) { } /***/ }), -/* 1009 */ +/* 1008 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatDistanceToNowStrict; }); -/* harmony import */ var _formatDistanceStrict_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1007); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _formatDistanceStrict_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1006); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -156424,13 +152730,13 @@ function formatDistanceToNowStrict(dirtyDate, dirtyOptions) { } /***/ }), -/* 1010 */ +/* 1009 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatDuration; }); -/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(979); +/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(978); var defaultFormat = ['years', 'months', 'weeks', 'days', 'hours', 'minutes', 'seconds']; /** @@ -156488,7 +152794,7 @@ var defaultFormat = ['years', 'months', 'weeks', 'days', 'hours', 'minutes', 'se * // Customize the zeros presence * formatDuration({ years: 0, months: 9 }) * //=> '9 months' - * formatDuration({ years: 0, months: 9 }, { zero: true }) + * formatDuration({ years: 0, months: 9 }, null, { zero: true }) * //=> '0 years 9 months' * * @example @@ -156497,15 +152803,17 @@ var defaultFormat = ['years', 'months', 'weeks', 'days', 'hours', 'minutes', 'se * //=> '2 years, 9 months, 3 weeks' */ -function formatDuration(duration, options) { +function formatDuration(duration) { + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + if (arguments.length < 1) { throw new TypeError("1 argument required, but only ".concat(arguments.length, " present")); } - var format = (options === null || options === void 0 ? void 0 : options.format) || defaultFormat; - var locale = (options === null || options === void 0 ? void 0 : options.locale) || _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_0__["default"]; - var zero = (options === null || options === void 0 ? void 0 : options.zero) || false; - var delimiter = (options === null || options === void 0 ? void 0 : options.delimiter) || ' '; + var format = options.format || defaultFormat; + var locale = options.locale || _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_0__["default"]; + var zero = options.zero || false; + var delimiter = options.delimiter || ' '; var result = format.reduce(function (acc, unit) { var token = "x".concat(unit.replace(/(^.)/, function (m) { return m.toUpperCase(); @@ -156517,15 +152825,15 @@ function formatDuration(duration, options) { } /***/ }), -/* 1011 */ +/* 1010 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatISO; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(927); -/* harmony import */ var _lib_addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(992); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(930); +/* harmony import */ var _lib_addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(991); @@ -156635,15 +152943,15 @@ function formatISO(dirtyDate, dirtyOptions) { } /***/ }), -/* 1012 */ +/* 1011 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatISO9075; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(927); -/* harmony import */ var _lib_addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(992); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(930); +/* harmony import */ var _lib_addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(991); @@ -156736,13 +153044,13 @@ function formatISO9075(dirtyDate, dirtyOptions) { } /***/ }), -/* 1013 */ +/* 1012 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatISODuration; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(902); /** * @name formatISODuration @@ -156760,7 +153068,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Format the given duration as ISO 8601 string - * const result = formatISODuration({ + * formatISODuration({ * years: 39, * months: 2, * days: 20, @@ -156790,17 +153098,16 @@ function formatISODuration(duration) { } /***/ }), -/* 1014 */ +/* 1013 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatRFC3339; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(927); -/* harmony import */ var _lib_addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(992); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(892); - +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(930); +/* harmony import */ var _lib_addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(991); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(900); @@ -156836,6 +153143,7 @@ __webpack_require__.r(__webpack_exports__); * const result = formatRFC3339(new Date(2019, 8, 18, 19, 0, 52, 234), { fractionDigits: 3 }) * //=> '2019-09-18T19:00:52.234Z' */ + function formatRFC3339(dirtyDate, dirtyOptions) { if (arguments.length < 1) { throw new TypeError("1 arguments required, but only ".concat(arguments.length, " present")); @@ -156847,10 +153155,8 @@ function formatRFC3339(dirtyDate, dirtyOptions) { throw new RangeError('Invalid time value'); } - var _ref = dirtyOptions || {}, - _ref$fractionDigits = _ref.fractionDigits, - fractionDigits = _ref$fractionDigits === void 0 ? 0 : _ref$fractionDigits; // Test if fractionDigits is between 0 and 3 _and_ is not NaN - + var options = dirtyOptions || {}; + var fractionDigits = options.fractionDigits == null ? 0 : Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(options.fractionDigits); // Test if fractionDigits is between 0 and 3 _and_ is not NaN if (!(fractionDigits >= 0 && fractionDigits <= 3)) { throw new RangeError('fractionDigits must be between 0 and 3 inclusively'); @@ -156888,15 +153194,15 @@ function formatRFC3339(dirtyDate, dirtyOptions) { } /***/ }), -/* 1015 */ +/* 1014 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatRFC7231; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(927); -/* harmony import */ var _lib_addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(992); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(930); +/* harmony import */ var _lib_addLeadingZeros_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(991); @@ -156945,20 +153251,19 @@ function formatRFC7231(dirtyDate) { } /***/ }), -/* 1016 */ +/* 1015 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return formatRelative; }); -/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(908); -/* harmony import */ var _format_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(978); -/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(979); -/* harmony import */ var _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(989); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(893); -/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(909); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(894); - +/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(916); +/* harmony import */ var _format_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(977); +/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(978); +/* harmony import */ var _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(988); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(901); +/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(917); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(902); @@ -157000,22 +153305,14 @@ __webpack_require__.r(__webpack_exports__); * @throws {RangeError} `options.locale` must contain `localize` property * @throws {RangeError} `options.locale` must contain `formatLong` property * @throws {RangeError} `options.locale` must contain `formatRelative` property - * - * @example - * // Represent the date of 6 days ago in words relative to the given base date. In this example, today is Wednesday - * const result = formatRelative(addDays(new Date(), -6), new Date()) - * //=> "last Thursday at 12:45 AM" */ + function formatRelative(dirtyDate, dirtyBaseDate, dirtyOptions) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_6__["default"])(2, arguments); var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(dirtyDate); var baseDate = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(dirtyBaseDate); - - var _ref = dirtyOptions || {}, - _ref$locale = _ref.locale, - locale = _ref$locale === void 0 ? _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_2__["default"] : _ref$locale, - _ref$weekStartsOn = _ref.weekStartsOn, - weekStartsOn = _ref$weekStartsOn === void 0 ? 0 : _ref$weekStartsOn; + var options = dirtyOptions || {}; + var locale = options.locale || _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_2__["default"]; if (!locale.localize) { throw new RangeError('locale must contain localize property'); @@ -157055,26 +153352,20 @@ function formatRelative(dirtyDate, dirtyBaseDate, dirtyOptions) { var utcDate = Object(_subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(date, Object(_lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_5__["default"])(date)); var utcBaseDate = Object(_subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(baseDate, Object(_lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_5__["default"])(baseDate)); - var formatStr = locale.formatRelative(token, utcDate, utcBaseDate, { - locale: locale, - weekStartsOn: weekStartsOn - }); - return Object(_format_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, formatStr, { - locale: locale, - weekStartsOn: weekStartsOn - }); + var formatStr = locale.formatRelative(token, utcDate, utcBaseDate, options); + return Object(_format_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, formatStr, options); } /***/ }), -/* 1017 */ +/* 1016 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return fromUnixTime; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -157084,19 +153375,19 @@ __webpack_require__.r(__webpack_exports__); * @summary Create a date from a Unix timestamp. * * @description - * Create a date from a Unix timestamp (in seconds). Decimal values will be discarded. + * Create a date from a Unix timestamp. * * ### v2.0.0 breaking changes: * * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * - * @param {Number} unixTime - the given Unix timestamp (in seconds) + * @param {Number} unixTime - the given Unix timestamp * @returns {Date} the date * @throws {TypeError} 1 argument required * * @example * // Create the date 29 February 2012 11:45:05: - * const result = fromUnixTime(1330515905) + * var result = fromUnixTime(1330515905) * //=> Wed Feb 29 2012 11:45:05 */ @@ -157107,14 +153398,14 @@ function fromUnixTime(dirtyUnixTime) { } /***/ }), -/* 1018 */ +/* 1017 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getDate; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157147,14 +153438,14 @@ function getDate(dirtyDate) { } /***/ }), -/* 1019 */ +/* 1018 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getDay; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157187,16 +153478,16 @@ function getDay(dirtyDate) { } /***/ }), -/* 1020 */ +/* 1019 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getDayOfYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _startOfYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(964); -/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(908); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _startOfYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(963); +/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(916); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -157232,14 +153523,14 @@ function getDayOfYear(dirtyDate) { } /***/ }), -/* 1021 */ +/* 1020 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getDaysInMonth; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157276,15 +153567,15 @@ function getDaysInMonth(dirtyDate) { } /***/ }), -/* 1022 */ +/* 1021 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getDaysInYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _isLeapYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1023); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _isLeapYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1022); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -157322,14 +153613,14 @@ function getDaysInYear(dirtyDate) { } /***/ }), -/* 1023 */ +/* 1022 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isLeapYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157362,14 +153653,14 @@ function isLeapYear(dirtyDate) { } /***/ }), -/* 1024 */ +/* 1023 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getDecade; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157403,14 +153694,14 @@ function getDecade(dirtyDate) { } /***/ }), -/* 1025 */ +/* 1024 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getHours; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157443,14 +153734,14 @@ function getHours(dirtyDate) { } /***/ }), -/* 1026 */ +/* 1025 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getISODay; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157491,16 +153782,16 @@ function getISODay(dirtyDate) { } /***/ }), -/* 1027 */ +/* 1026 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getISOWeek; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(904); -/* harmony import */ var _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(907); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(912); +/* harmony import */ var _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(915); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -157541,15 +153832,15 @@ function getISOWeek(dirtyDate) { } /***/ }), -/* 1028 */ +/* 1027 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getISOWeeksInYear; }); -/* harmony import */ var _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(907); -/* harmony import */ var _addWeeks_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(914); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(915); +/* harmony import */ var _addWeeks_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(922); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -157590,14 +153881,14 @@ function getISOWeeksInYear(dirtyDate) { } /***/ }), -/* 1029 */ +/* 1028 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getMilliseconds; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157630,14 +153921,14 @@ function getMilliseconds(dirtyDate) { } /***/ }), -/* 1030 */ +/* 1029 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getMinutes; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157670,14 +153961,14 @@ function getMinutes(dirtyDate) { } /***/ }), -/* 1031 */ +/* 1030 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getMonth; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157710,14 +154001,14 @@ function getMonth(dirtyDate) { } /***/ }), -/* 1032 */ +/* 1031 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getOverlappingDaysInIntervals; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); var MILLISECONDS_IN_DAY = 24 * 60 * 60 * 1000; @@ -157813,14 +154104,14 @@ function getOverlappingDaysInIntervals(dirtyIntervalLeft, dirtyIntervalRight) { } /***/ }), -/* 1033 */ +/* 1032 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getSeconds; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157853,14 +154144,14 @@ function getSeconds(dirtyDate) { } /***/ }), -/* 1034 */ +/* 1033 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getTime; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157893,14 +154184,14 @@ function getTime(dirtyDate) { } /***/ }), -/* 1035 */ +/* 1034 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getUnixTime; }); -/* harmony import */ var _getTime_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1034); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _getTime_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1033); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -157931,16 +154222,16 @@ function getUnixTime(dirtyDate) { } /***/ }), -/* 1036 */ +/* 1035 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getWeek; }); -/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(905); -/* harmony import */ var _startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1037); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(913); +/* harmony import */ var _startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1036); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -157976,13 +154267,13 @@ var MILLISECONDS_IN_WEEK = 604800000; * * @example * // Which week of the local week numbering year is 2 January 2005 with default options? - * const result = getISOWeek(new Date(2005, 0, 2)) + * var result = getISOWeek(new Date(2005, 0, 2)) * //=> 2 * * // Which week of the local week numbering year is 2 January 2005, * // if Monday is the first day of the week, * // and the first week of the year always contains 4 January? - * const result = getISOWeek(new Date(2005, 0, 2), { + * var result = getISOWeek(new Date(2005, 0, 2), { * weekStartsOn: 1, * firstWeekContainsDate: 4 * }) @@ -158000,17 +154291,16 @@ function getWeek(dirtyDate, options) { } /***/ }), -/* 1037 */ +/* 1036 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfWeekYear; }); -/* harmony import */ var _getWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1038); -/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(905); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); - +/* harmony import */ var _getWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1037); +/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(913); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -158045,19 +154335,20 @@ __webpack_require__.r(__webpack_exports__); * * @example * // The start of an a week-numbering year for 2 July 2005 with default settings: - * const result = startOfWeekYear(new Date(2005, 6, 2)) + * var result = startOfWeekYear(new Date(2005, 6, 2)) * //=> Sun Dec 26 2004 00:00:00 * * @example * // The start of a week-numbering year for 2 July 2005 * // if Monday is the first day of week * // and 4 January is always in the first week of the year: - * const result = startOfWeekYear(new Date(2005, 6, 2), { + * var result = startOfWeekYear(new Date(2005, 6, 2), { * weekStartsOn: 1, * firstWeekContainsDate: 4 * }) * //=> Mon Jan 03 2005 00:00:00 */ + function startOfWeekYear(dirtyDate, dirtyOptions) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(1, arguments); var options = dirtyOptions || {}; @@ -158074,17 +154365,16 @@ function startOfWeekYear(dirtyDate, dirtyOptions) { } /***/ }), -/* 1038 */ +/* 1037 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getWeekYear; }); -/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(905); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); - +/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(913); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -158119,28 +154409,29 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Which week numbering year is 26 December 2004 with the default settings? - * const result = getWeekYear(new Date(2004, 11, 26)) + * var result = getWeekYear(new Date(2004, 11, 26)) * //=> 2005 * * @example * // Which week numbering year is 26 December 2004 if week starts on Saturday? - * const result = getWeekYear(new Date(2004, 11, 26), { weekStartsOn: 6 }) + * var result = getWeekYear(new Date(2004, 11, 26), { weekStartsOn: 6 }) * //=> 2004 * * @example * // Which week numbering year is 26 December 2004 if the first week contains 4 January? - * const result = getWeekYear(new Date(2004, 11, 26), { firstWeekContainsDate: 4 }) + * var result = getWeekYear(new Date(2004, 11, 26), { firstWeekContainsDate: 4 }) * //=> 2004 */ -function getWeekYear(dirtyDate, options) { - var _options$locale, _options$locale$optio; +function getWeekYear(dirtyDate, dirtyOptions) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(1, arguments); var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dirtyDate); var year = date.getFullYear(); - var localeFirstWeekContainsDate = options === null || options === void 0 ? void 0 : (_options$locale = options.locale) === null || _options$locale === void 0 ? void 0 : (_options$locale$optio = _options$locale.options) === null || _options$locale$optio === void 0 ? void 0 : _options$locale$optio.firstWeekContainsDate; + var options = dirtyOptions || {}; + var locale = options.locale; + var localeFirstWeekContainsDate = locale && locale.options && locale.options.firstWeekContainsDate; var defaultFirstWeekContainsDate = localeFirstWeekContainsDate == null ? 1 : Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(localeFirstWeekContainsDate); - var firstWeekContainsDate = (options === null || options === void 0 ? void 0 : options.firstWeekContainsDate) == null ? defaultFirstWeekContainsDate : Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(options.firstWeekContainsDate); // Test if weekStartsOn is between 1 and 7 _and_ is not NaN + var firstWeekContainsDate = options.firstWeekContainsDate == null ? defaultFirstWeekContainsDate : Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(options.firstWeekContainsDate); // Test if weekStartsOn is between 1 and 7 _and_ is not NaN if (!(firstWeekContainsDate >= 1 && firstWeekContainsDate <= 7)) { throw new RangeError('firstWeekContainsDate must be between 1 and 7 inclusively'); @@ -158149,11 +154440,11 @@ function getWeekYear(dirtyDate, options) { var firstWeekOfNextYear = new Date(0); firstWeekOfNextYear.setFullYear(year + 1, 0, firstWeekContainsDate); firstWeekOfNextYear.setHours(0, 0, 0, 0); - var startOfNextYear = Object(_startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(firstWeekOfNextYear, options); + var startOfNextYear = Object(_startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(firstWeekOfNextYear, dirtyOptions); var firstWeekOfThisYear = new Date(0); firstWeekOfThisYear.setFullYear(year, 0, firstWeekContainsDate); firstWeekOfThisYear.setHours(0, 0, 0, 0); - var startOfThisYear = Object(_startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(firstWeekOfThisYear, options); + var startOfThisYear = Object(_startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(firstWeekOfThisYear, dirtyOptions); if (date.getTime() >= startOfNextYear.getTime()) { return year + 1; @@ -158165,17 +154456,17 @@ function getWeekYear(dirtyDate, options) { } /***/ }), -/* 1039 */ +/* 1038 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getWeekOfMonth; }); -/* harmony import */ var _getDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1018); -/* harmony import */ var _getDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1019); -/* harmony import */ var _startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(962); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(894); +/* harmony import */ var _getDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1017); +/* harmony import */ var _getDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1018); +/* harmony import */ var _startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(961); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(902); @@ -158245,17 +154536,16 @@ function getWeekOfMonth(date, dirtyOptions) { } /***/ }), -/* 1040 */ +/* 1039 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getWeeksInMonth; }); -/* harmony import */ var _differenceInCalendarWeeks_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(935); -/* harmony import */ var _lastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1041); -/* harmony import */ var _startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(962); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); - +/* harmony import */ var _differenceInCalendarWeeks_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(937); +/* harmony import */ var _lastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1040); +/* harmony import */ var _startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(961); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -158282,29 +154572,30 @@ __webpack_require__.r(__webpack_exports__); * * @example * // How many calendar weeks does February 2015 span? - * const result = getWeeksInMonth(new Date(2015, 1, 8)) + * var result = getWeeksInMonth(new Date(2015, 1, 8)) * //=> 4 * * @example * // If the week starts on Monday, * // how many calendar weeks does July 2017 span? - * const result = getWeeksInMonth(new Date(2017, 6, 5), { weekStartsOn: 1 }) + * var result = getWeeksInMonth(new Date(2017, 6, 5), { weekStartsOn: 1 }) * //=> 6 */ + function getWeeksInMonth(date, options) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(1, arguments); return Object(_differenceInCalendarWeeks_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(Object(_lastDayOfMonth_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date), Object(_startOfMonth_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(date), options) + 1; } /***/ }), -/* 1041 */ +/* 1040 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return lastDayOfMonth; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -158340,14 +154631,14 @@ function lastDayOfMonth(dirtyDate) { } /***/ }), -/* 1042 */ +/* 1041 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return getYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -158380,128 +154671,23 @@ function getYear(dirtyDate) { } /***/ }), -/* 1043 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return hoursToMilliseconds; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name hoursToMilliseconds - * @category Conversion Helpers - * @summary Convert hours to milliseconds. - * - * @description - * Convert a number of hours to a full number of milliseconds. - * - * @param {number} hours - number of hours to be converted - * - * @returns {number} the number of hours converted to milliseconds - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 2 hours to milliseconds: - * const result = hoursToMilliseconds(2) - * //=> 7200000 - */ - -function hoursToMilliseconds(hours) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Math.floor(hours * _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["millisecondsInHour"]); -} - -/***/ }), -/* 1044 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return hoursToMinutes; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name hoursToMinutes - * @category Conversion Helpers - * @summary Convert hours to minutes. - * - * @description - * Convert a number of hours to a full number of minutes. - * - * @param {number} hours - number of hours to be converted - * - * @returns {number} the number of hours converted in minutes - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 2 hours to minutes: - * const result = hoursToMinutes(2) - * //=> 120 - */ - -function hoursToMinutes(hours) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Math.floor(hours * _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["minutesInHour"]); -} - -/***/ }), -/* 1045 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return hoursToSeconds; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name hoursToSeconds - * @category Conversion Helpers - * @summary Convert hours to seconds. - * - * @description - * Convert a number of hours to a full number of seconds. - * - * @param {number} hours - number of hours to be converted - * - * @returns {number} the number of hours converted in seconds - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 2 hours to seconds: - * const result = hoursToSeconds(2) - * //=> 7200 - */ - -function hoursToSeconds(hours) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Math.floor(hours * _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["secondsInHour"]); -} - -/***/ }), -/* 1046 */ +/* 1042 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return intervalToDuration; }); -/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(922); -/* harmony import */ var _differenceInYears_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(951); -/* harmony import */ var _differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(944); -/* harmony import */ var _differenceInDays_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(937); -/* harmony import */ var _differenceInHours_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(938); -/* harmony import */ var _differenceInMinutes_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(943); -/* harmony import */ var _differenceInSeconds_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(949); -/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(927); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(894); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(893); -/* harmony import */ var _sub_index_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(1047); +/* harmony import */ var _compareAsc_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(927); +/* harmony import */ var _differenceInYears_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(952); +/* harmony import */ var _differenceInMonths_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(945); +/* harmony import */ var _differenceInDays_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(939); +/* harmony import */ var _differenceInHours_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(940); +/* harmony import */ var _differenceInMinutes_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(944); +/* harmony import */ var _differenceInSeconds_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(950); +/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(930); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(902); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(901); +/* harmony import */ var _sub_index_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(1043); @@ -158586,16 +154772,18 @@ function intervalToDuration(_ref) { } /***/ }), -/* 1047 */ +/* 1043 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return sub; }); -/* harmony import */ var _subDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1048); -/* harmony import */ var _subMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1049); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(892); +/* harmony import */ var _subDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1044); +/* harmony import */ var _subMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1045); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(900); + @@ -158640,18 +154828,18 @@ __webpack_require__.r(__webpack_exports__); * //=> Mon Sep 1 2014 10:19:50 */ -function sub(date, duration) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(2, arguments); +function sub(dirtyDate, duration) { + Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(2, arguments); if (!duration || typeof duration !== 'object') return new Date(NaN); - var years = duration.years ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(duration.years) : 0; - var months = duration.months ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(duration.months) : 0; - var weeks = duration.weeks ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(duration.weeks) : 0; - var days = duration.days ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(duration.days) : 0; - var hours = duration.hours ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(duration.hours) : 0; - var minutes = duration.minutes ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(duration.minutes) : 0; - var seconds = duration.seconds ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(duration.seconds) : 0; // Subtract years and months + var years = 'years' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.years) : 0; + var months = 'months' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.months) : 0; + var weeks = 'weeks' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.weeks) : 0; + var days = 'days' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.days) : 0; + var hours = 'hours' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.hours) : 0; + var minutes = 'minutes' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.minutes) : 0; + var seconds = 'seconds' in duration ? Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(duration.seconds) : 0; // Subtract years and months - var dateWithoutMonths = Object(_subMonths_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, months + years * 12); // Subtract weeks and days + var dateWithoutMonths = Object(_subMonths_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dirtyDate), months + years * 12); // Subtract weeks and days var dateWithoutDays = Object(_subDays_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateWithoutMonths, days + weeks * 7); // Subtract hours, minutes and seconds @@ -158663,15 +154851,15 @@ function sub(date, duration) { } /***/ }), -/* 1048 */ +/* 1044 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subDays; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(891); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(899); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -158705,15 +154893,15 @@ function subDays(dirtyDate, dirtyAmount) { } /***/ }), -/* 1049 */ +/* 1045 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subMonths; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(895); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addMonths_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(903); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -158747,113 +154935,14 @@ function subMonths(dirtyDate, dirtyAmount) { } /***/ }), -/* 1050 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return intlFormat; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); - - -/** - * @name intlFormat - * @category Common Helpers - * @summary Format the date with Intl.DateTimeFormat (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat). - * - * @description - * Return the formatted date string in the given format. - * The method uses [`Intl.DateTimeFormat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat) inside. - * formatOptions are the same as [`Intl.DateTimeFormat` options](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat#using_options) - * - * > âš ï¸ Please note that before Node version 13.0.0, only the locale data for en-US is available by default. - * - * @param {Date|Number} argument - the original date. - * @param {Object} [formatOptions] - an object with options. - * @param {'lookup'|'best fit'} [formatOptions.localeMatcher='best fit'] - locale selection algorithm. - * @param {'narrow'|'short'|'long'} [formatOptions.weekday] - representation the days of the week. - * @param {'narrow'|'short'|'long'} [formatOptions.era] - representation of eras. - * @param {'numeric'|'2-digit'} [formatOptions.year] - representation of years. - * @param {'numeric'|'2-digit'|'narrow'|'short'|'long'} [formatOptions.month='numeric'] - representation of month. - * @param {'numeric'|'2-digit'} [formatOptions.day='numeric'] - representation of day. - * @param {'numeric'|'2-digit'} [formatOptions.hour='numeric'] - representation of hours. - * @param {'numeric'|'2-digit'} [formatOptions.minute] - representation of minutes. - * @param {'numeric'|'2-digit'} [formatOptions.second] - representation of seconds. - * @param {'short'|'long'} [formatOptions.timeZoneName] - representation of names of time zones. - * @param {'basic'|'best fit'} [formatOptions.formatMatcher='best fit'] - format selection algorithm. - * @param {Boolean} [formatOptions.hour12] - determines whether to use 12-hour time format. - * @param {String} [formatOptions.timeZone] - the time zone to use. - * @param {Object} [localeOptions] - an object with locale. - * @param {String|String[]} [localeOptions.locale] - the locale code - * @returns {String} the formatted date string. - * @throws {TypeError} 1 argument required. - * @throws {RangeError} `date` must not be Invalid Date - * - * @example - * // Represent 10 October 2019 in German. - * // Convert the date with format's options and locale's options. - * const result = intlFormat(new Date(2019, 9, 4, 12, 30, 13, 456), { - * weekday: 'long', - * year: 'numeric', - * month: 'long', - * day: 'numeric', - * }, { - * locale: 'de-DE', - * }) - * //=> Freitag, 4. Oktober 2019 - * - * @example - * // Represent 10 October 2019. - * // Convert the date with format's options. - * const result = intlFormat.default(new Date(2019, 9, 4, 12, 30, 13, 456), { - * year: 'numeric', - * month: 'numeric', - * day: 'numeric', - * hour: 'numeric', - * }) - * //=> 10/4/2019, 12 PM - * - * @example - * // Represent 10 October 2019 in Korean. - * // Convert the date with locale's options. - * const result = intlFormat(new Date(2019, 9, 4, 12, 30, 13, 456), { - * locale: 'ko-KR', - * }) - * //=> 2019. 10. 4. - * - * @example - * // Represent 10 October 2019 in middle-endian format: - * const result = intlFormat(new Date(2019, 9, 4, 12, 30, 13, 456)) - * //=> 10/4/2019 - */ -function intlFormat(date, formatOrLocale, localeOptions) { - var _localeOptions; - - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var formatOptions; - - if (isFormatOptions(formatOrLocale)) { - formatOptions = formatOrLocale; - } else { - localeOptions = formatOrLocale; - } - - return new Intl.DateTimeFormat((_localeOptions = localeOptions) === null || _localeOptions === void 0 ? void 0 : _localeOptions.locale, formatOptions).format(date); -} - -function isFormatOptions(opts) { - return opts !== undefined && !('locale' in opts); -} - -/***/ }), -/* 1051 */ +/* 1046 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isAfter; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -158887,14 +154976,14 @@ function isAfter(dirtyDate, dirtyDateToCompare) { } /***/ }), -/* 1052 */ +/* 1047 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isBefore; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -158928,14 +155017,65 @@ function isBefore(dirtyDate, dirtyDateToCompare) { } /***/ }), -/* 1053 */ +/* 1048 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isDate; }); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(902); + +/** + * @name isDate + * @category Common Helpers + * @summary Is the given value a date? + * + * @description + * Returns true if the given value is an instance of Date. The function works for dates transferred across iframes. + * + * ### v2.0.0 breaking changes: + * + * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). + * + * @param {*} value - the value to check + * @returns {boolean} true if the given value is a date + * @throws {TypeError} 1 arguments required + * + * @example + * // For a valid date: + * var result = isDate(new Date()) + * //=> true + * + * @example + * // For an invalid date: + * var result = isDate(new Date(NaN)) + * //=> true + * + * @example + * // For some value: + * var result = isDate('2014-02-31') + * //=> false + * + * @example + * // For an object: + * var result = isDate({}) + * //=> false + */ + +function isDate(value) { + Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); + return value instanceof Date || typeof value === 'object' && Object.prototype.toString.call(value) === '[object Date]'; +} + +/***/ }), +/* 1049 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isEqual; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -158972,7 +155112,7 @@ function isEqual(dirtyLeftDate, dirtyRightDate) { } /***/ }), -/* 1054 */ +/* 1050 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -159012,14 +155152,14 @@ function isExists(year, month, day) { } /***/ }), -/* 1055 */ +/* 1051 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isFirstDayOfMonth; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -159050,14 +155190,14 @@ function isFirstDayOfMonth(dirtyDate) { } /***/ }), -/* 1056 */ +/* 1052 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isFriday; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -159088,14 +155228,14 @@ function isFriday(dirtyDate) { } /***/ }), -/* 1057 */ +/* 1053 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isFuture; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -159130,16 +155270,15 @@ function isFuture(dirtyDate) { } /***/ }), -/* 1058 */ +/* 1054 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isMatch; }); -/* harmony import */ var _parse_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1059); -/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(927); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); - +/* harmony import */ var _parse_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1055); +/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(930); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -159241,28 +155380,28 @@ __webpack_require__.r(__webpack_exports__); * | Day of week (formatting) | 90 | E..EEE | Mon, Tue, Wed, ..., Su | | * | | | EEEE | Monday, Tuesday, ..., Sunday | 2 | * | | | EEEEE | M, T, W, T, F, S, S | | - * | | | EEEEEE | Mo, Tu, We, Th, Fr, Sa, Su | | + * | | | EEEEEE | Mo, Tu, We, Th, Fr, Su, Sa | | * | ISO day of week (formatting) | 90 | i | 1, 2, 3, ..., 7 | 5 | * | | | io | 1st, 2nd, ..., 7th | 5 | * | | | ii | 01, 02, ..., 07 | 5 | * | | | iii | Mon, Tue, Wed, ..., Su | 5 | * | | | iiii | Monday, Tuesday, ..., Sunday | 2,5 | * | | | iiiii | M, T, W, T, F, S, S | 5 | - * | | | iiiiii | Mo, Tu, We, Th, Fr, Sa, Su | 5 | + * | | | iiiiii | Mo, Tu, We, Th, Fr, Su, Sa | 5 | * | Local day of week (formatting) | 90 | e | 2, 3, 4, ..., 1 | | * | | | eo | 2nd, 3rd, ..., 1st | 5 | * | | | ee | 02, 03, ..., 01 | | * | | | eee | Mon, Tue, Wed, ..., Su | | * | | | eeee | Monday, Tuesday, ..., Sunday | 2 | * | | | eeeee | M, T, W, T, F, S, S | | - * | | | eeeeee | Mo, Tu, We, Th, Fr, Sa, Su | | + * | | | eeeeee | Mo, Tu, We, Th, Fr, Su, Sa | | * | Local day of week (stand-alone) | 90 | c | 2, 3, 4, ..., 1 | | * | | | co | 2nd, 3rd, ..., 1st | 5 | * | | | cc | 02, 03, ..., 01 | | * | | | ccc | Mon, Tue, Wed, ..., Su | | * | | | cccc | Monday, Tuesday, ..., Sunday | 2 | * | | | ccccc | M, T, W, T, F, S, S | | - * | | | cccccc | Mo, Tu, We, Th, Fr, Sa, Su | | + * | | | cccccc | Mo, Tu, We, Th, Fr, Su, Sa | | * | AM, PM | 80 | a..aaa | AM, PM | | * | | | aaaa | a.m., p.m. | 2 | * | | | aaaaa | a, p | | @@ -159435,28 +155574,29 @@ __webpack_require__.r(__webpack_exports__); * }) * //=> true */ -function isMatch(dateString, formatString, options) { + +function isMatch(dateString, formatString, dirtyOptions) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(2, arguments); - return Object(_isValid_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(Object(_parse_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateString, formatString, new Date(), options)); + return Object(_isValid_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(Object(_parse_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dateString, formatString, new Date(), dirtyOptions)); } /***/ }), -/* 1059 */ +/* 1055 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return parse; }); -/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(979); -/* harmony import */ var _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(989); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); -/* harmony import */ var _lib_assign_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(1006); -/* harmony import */ var _lib_format_longFormatters_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(1002); -/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(909); -/* harmony import */ var _lib_protectedTokens_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(1003); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(892); -/* harmony import */ var _lib_parsers_index_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(1060); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(894); +/* harmony import */ var _locale_en_US_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(978); +/* harmony import */ var _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(988); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(901); +/* harmony import */ var _lib_assign_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(1005); +/* harmony import */ var _lib_format_longFormatters_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(1001); +/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(917); +/* harmony import */ var _lib_protectedTokens_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(1002); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(900); +/* harmony import */ var _lib_parsers_index_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(1056); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(902); @@ -159584,28 +155724,28 @@ var unescapedLatinCharacterRegExp = /[a-zA-Z]/; * | Day of week (formatting) | 90 | E..EEE | Mon, Tue, Wed, ..., Sun | | * | | | EEEE | Monday, Tuesday, ..., Sunday | 2 | * | | | EEEEE | M, T, W, T, F, S, S | | - * | | | EEEEEE | Mo, Tu, We, Th, Fr, Sa, Su | | + * | | | EEEEEE | Mo, Tu, We, Th, Fr, Su, Sa | | * | ISO day of week (formatting) | 90 | i | 1, 2, 3, ..., 7 | 5 | * | | | io | 1st, 2nd, ..., 7th | 5 | * | | | ii | 01, 02, ..., 07 | 5 | * | | | iii | Mon, Tue, Wed, ..., Sun | 5 | * | | | iiii | Monday, Tuesday, ..., Sunday | 2,5 | * | | | iiiii | M, T, W, T, F, S, S | 5 | - * | | | iiiiii | Mo, Tu, We, Th, Fr, Sa, Su | 5 | + * | | | iiiiii | Mo, Tu, We, Th, Fr, Su, Sa | 5 | * | Local day of week (formatting) | 90 | e | 2, 3, 4, ..., 1 | | * | | | eo | 2nd, 3rd, ..., 1st | 5 | * | | | ee | 02, 03, ..., 01 | | * | | | eee | Mon, Tue, Wed, ..., Sun | | * | | | eeee | Monday, Tuesday, ..., Sunday | 2 | * | | | eeeee | M, T, W, T, F, S, S | | - * | | | eeeeee | Mo, Tu, We, Th, Fr, Sa, Su | | + * | | | eeeeee | Mo, Tu, We, Th, Fr, Su, Sa | | * | Local day of week (stand-alone) | 90 | c | 2, 3, 4, ..., 1 | | * | | | co | 2nd, 3rd, ..., 1st | 5 | * | | | cc | 02, 03, ..., 01 | | * | | | ccc | Mon, Tue, Wed, ..., Sun | | * | | | cccc | Monday, Tuesday, ..., Sunday | 2 | * | | | ccccc | M, T, W, T, F, S, S | | - * | | | cccccc | Mo, Tu, We, Th, Fr, Sa, Su | | + * | | | cccccc | Mo, Tu, We, Th, Fr, Su, Sa | | * | AM, PM | 80 | a..aaa | AM, PM | | * | | | aaaa | a.m., p.m. | 2 | * | | | aaaaa | a, p | | @@ -159844,9 +155984,9 @@ function parse(dirtyDateString, dirtyFormatString, dirtyReferenceDate, dirtyOpti var subFnOptions = { firstWeekContainsDate: firstWeekContainsDate, weekStartsOn: weekStartsOn, - locale: locale - }; // If timezone isn't specified, it will be set to the system timezone + locale: locale // If timezone isn't specified, it will be set to the system timezone + }; var setters = [{ priority: TIMEZONE_UNIT_PRIORITY, subPriority: -1, @@ -160010,18 +156150,18 @@ function cleanEscapedString(input) { } /***/ }), -/* 1060 */ +/* 1056 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _lib_getUTCWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1001); -/* harmony import */ var _lib_setUTCDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1061); -/* harmony import */ var _lib_setUTCISODay_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1062); -/* harmony import */ var _lib_setUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(1063); -/* harmony import */ var _lib_setUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(1064); -/* harmony import */ var _lib_startOfUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(995); -/* harmony import */ var _lib_startOfUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(999); +/* harmony import */ var _lib_getUTCWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1000); +/* harmony import */ var _lib_setUTCDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1057); +/* harmony import */ var _lib_setUTCISODay_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1058); +/* harmony import */ var _lib_setUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(1059); +/* harmony import */ var _lib_setUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(1060); +/* harmony import */ var _lib_startOfUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(994); +/* harmony import */ var _lib_startOfUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(998); @@ -161527,15 +157667,15 @@ var parsers = { /* harmony default export */ __webpack_exports__["default"] = (parsers); /***/ }), -/* 1061 */ +/* 1057 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setUTCDay; }); -/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); // This function will be a part of public API when UTC function will be implemented. @@ -161564,15 +157704,15 @@ function setUTCDay(dirtyDate, dirtyDay, dirtyOptions) { } /***/ }), -/* 1062 */ +/* 1058 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setUTCISODay; }); -/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); // This function will be a part of public API when UTC function will be implemented. @@ -161597,16 +157737,16 @@ function setUTCISODay(dirtyDate, dirtyDay) { } /***/ }), -/* 1063 */ +/* 1059 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setUTCISOWeek; }); -/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _getUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(994); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _getUTCISOWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(993); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -161623,16 +157763,16 @@ function setUTCISOWeek(dirtyDate, dirtyISOWeek) { } /***/ }), -/* 1064 */ +/* 1060 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setUTCWeek; }); -/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _getUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(998); -/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _getUTCWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(997); +/* harmony import */ var _requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -161649,14 +157789,14 @@ function setUTCWeek(dirtyDate, dirtyWeek, options) { } /***/ }), -/* 1065 */ +/* 1061 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isMonday; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -161681,20 +157821,20 @@ __webpack_require__.r(__webpack_exports__); * //=> true */ -function isMonday(date) { +function isMonday(dirtyDate) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(1, arguments); - return Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(date).getDay() === 1; + return Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate).getDay() === 1; } /***/ }), -/* 1066 */ +/* 1062 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isPast; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -161729,14 +157869,14 @@ function isPast(dirtyDate) { } /***/ }), -/* 1067 */ +/* 1063 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSameHour; }); -/* harmony import */ var _startOfHour_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1068); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _startOfHour_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1064); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -161770,14 +157910,14 @@ function isSameHour(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 1068 */ +/* 1064 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfHour; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -161811,14 +157951,14 @@ function startOfHour(dirtyDate) { } /***/ }), -/* 1069 */ +/* 1065 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSameISOWeek; }); -/* harmony import */ var _isSameWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1070); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _isSameWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1066); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -161854,15 +157994,14 @@ function isSameISOWeek(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 1070 */ +/* 1066 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSameWeek; }); -/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(905); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); - +/* harmony import */ var _startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(913); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -161899,6 +158038,7 @@ __webpack_require__.r(__webpack_exports__); * }) * //=> false */ + function isSameWeek(dirtyDateLeft, dirtyDateRight, dirtyOptions) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(2, arguments); var dateLeftStartOfWeek = Object(_startOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDateLeft, dirtyOptions); @@ -161907,14 +158047,14 @@ function isSameWeek(dirtyDateLeft, dirtyDateRight, dirtyOptions) { } /***/ }), -/* 1071 */ +/* 1067 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSameISOWeekYear; }); -/* harmony import */ var _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(907); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _startOfISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(915); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -161955,14 +158095,14 @@ function isSameISOWeekYear(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 1072 */ +/* 1068 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSameMinute; }); -/* harmony import */ var _startOfMinute_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(955); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _startOfMinute_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1069); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162000,14 +158140,55 @@ function isSameMinute(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 1073 */ +/* 1069 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfMinute; }); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); + + +/** + * @name startOfMinute + * @category Minute Helpers + * @summary Return the start of a minute for the given date. + * + * @description + * Return the start of a minute for the given date. + * The result will be in the local timezone. + * + * ### v2.0.0 breaking changes: + * + * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). + * + * @param {Date|Number} date - the original date + * @returns {Date} the start of a minute + * @throws {TypeError} 1 argument required + * + * @example + * // The start of a minute for 1 December 2014 22:15:45.400: + * const result = startOfMinute(new Date(2014, 11, 1, 22, 15, 45, 400)) + * //=> Mon Dec 01 2014 22:15:00 + */ + +function startOfMinute(dirtyDate) { + Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(1, arguments); + var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate); + date.setSeconds(0, 0); + return date; +} + +/***/ }), +/* 1070 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSameMonth; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162041,14 +158222,14 @@ function isSameMonth(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 1074 */ +/* 1071 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSameQuarter; }); -/* harmony import */ var _startOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(958); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _startOfQuarter_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(957); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162082,14 +158263,14 @@ function isSameQuarter(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 1075 */ +/* 1072 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSameSecond; }); -/* harmony import */ var _startOfSecond_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1076); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _startOfSecond_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1073); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162127,14 +158308,14 @@ function isSameSecond(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 1076 */ +/* 1073 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfSecond; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162168,14 +158349,14 @@ function startOfSecond(dirtyDate) { } /***/ }), -/* 1077 */ +/* 1074 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isSameYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162209,14 +158390,14 @@ function isSameYear(dirtyDateLeft, dirtyDateRight) { } /***/ }), -/* 1078 */ +/* 1075 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isThisHour; }); -/* harmony import */ var _isSameHour_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1067); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _isSameHour_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1063); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162252,14 +158433,14 @@ function isThisHour(dirtyDate) { } /***/ }), -/* 1079 */ +/* 1076 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isThisISOWeek; }); -/* harmony import */ var _isSameISOWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1069); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _isSameISOWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1065); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162296,14 +158477,14 @@ function isThisISOWeek(dirtyDate) { } /***/ }), -/* 1080 */ +/* 1077 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isThisMinute; }); -/* harmony import */ var _isSameMinute_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1072); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _isSameMinute_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1068); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162339,14 +158520,14 @@ function isThisMinute(dirtyDate) { } /***/ }), -/* 1081 */ +/* 1078 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isThisMonth; }); -/* harmony import */ var _isSameMonth_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1073); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _isSameMonth_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1070); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162381,14 +158562,14 @@ function isThisMonth(dirtyDate) { } /***/ }), -/* 1082 */ +/* 1079 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isThisQuarter; }); -/* harmony import */ var _isSameQuarter_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1074); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _isSameQuarter_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1071); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162423,14 +158604,14 @@ function isThisQuarter(dirtyDate) { } /***/ }), -/* 1083 */ +/* 1080 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isThisSecond; }); -/* harmony import */ var _isSameSecond_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1075); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _isSameSecond_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1072); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162466,15 +158647,14 @@ function isThisSecond(dirtyDate) { } /***/ }), -/* 1084 */ +/* 1081 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isThisWeek; }); -/* harmony import */ var _isSameWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1070); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); - +/* harmony import */ var _isSameWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1066); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162512,20 +158692,21 @@ __webpack_require__.r(__webpack_exports__); * var result = isThisWeek(new Date(2014, 8, 21), { weekStartsOn: 1 }) * //=> false */ + function isThisWeek(dirtyDate, options) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(1, arguments); return Object(_isSameWeek_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate, Date.now(), options); } /***/ }), -/* 1085 */ +/* 1082 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isThisYear; }); -/* harmony import */ var _isSameYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1077); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _isSameYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1074); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162560,14 +158741,14 @@ function isThisYear(dirtyDate) { } /***/ }), -/* 1086 */ +/* 1083 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isThursday; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162598,14 +158779,14 @@ function isThursday(dirtyDate) { } /***/ }), -/* 1087 */ +/* 1084 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isToday; }); -/* harmony import */ var _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(929); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(931); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162640,15 +158821,15 @@ function isToday(dirtyDate) { } /***/ }), -/* 1088 */ +/* 1085 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isTomorrow; }); -/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(891); -/* harmony import */ var _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(929); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(899); +/* harmony import */ var _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(931); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -162684,14 +158865,14 @@ function isTomorrow(dirtyDate) { } /***/ }), -/* 1089 */ +/* 1086 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isTuesday; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162722,14 +158903,14 @@ function isTuesday(dirtyDate) { } /***/ }), -/* 1090 */ +/* 1087 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isWednesday; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162750,7 +158931,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Is 24 September 2014 Wednesday? - * const result = isWednesday(new Date(2014, 8, 24)) + * var result = isWednesday(new Date(2014, 8, 24)) * //=> true */ @@ -162760,15 +158941,14 @@ function isWednesday(dirtyDate) { } /***/ }), -/* 1091 */ +/* 1088 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isWithinInterval; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); - +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162844,8 +159024,10 @@ __webpack_require__.r(__webpack_exports__); * // For date equal to interval end: * isWithinInterval(date, { start: date, end }) // => true */ -function isWithinInterval(dirtyDate, interval) { + +function isWithinInterval(dirtyDate, dirtyInterval) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(2, arguments); + var interval = dirtyInterval || {}; var time = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate).getTime(); var startTime = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(interval.start).getTime(); var endTime = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(interval.end).getTime(); // Throw an exception if start date is after end date or if any date is `Invalid Date` @@ -162858,15 +159040,15 @@ function isWithinInterval(dirtyDate, interval) { } /***/ }), -/* 1092 */ +/* 1089 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return isYesterday; }); -/* harmony import */ var _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(929); -/* harmony import */ var _subDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1048); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _isSameDay_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(931); +/* harmony import */ var _subDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1044); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -162902,14 +159084,14 @@ function isYesterday(dirtyDate) { } /***/ }), -/* 1093 */ +/* 1090 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return lastDayOfDecade; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162945,14 +159127,14 @@ function lastDayOfDecade(dirtyDate) { } /***/ }), -/* 1094 */ +/* 1091 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return lastDayOfISOWeek; }); -/* harmony import */ var _lastDayOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1095); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _lastDayOfWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1092); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -162988,16 +159170,15 @@ function lastDayOfISOWeek(dirtyDate) { } /***/ }), -/* 1095 */ +/* 1092 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return lastDayOfWeek; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); - +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -163032,6 +159213,7 @@ __webpack_require__.r(__webpack_exports__); * var result = lastDayOfWeek(new Date(2014, 8, 2, 11, 55, 0), { weekStartsOn: 1 }) * //=> Sun Sep 07 2014 00:00:00 */ + function lastDayOfWeek(dirtyDate, dirtyOptions) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(1, arguments); var options = dirtyOptions || {}; @@ -163053,15 +159235,15 @@ function lastDayOfWeek(dirtyDate, dirtyOptions) { } /***/ }), -/* 1096 */ +/* 1093 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return lastDayOfISOWeekYear; }); -/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(903); -/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(904); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _getISOWeekYear_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(911); +/* harmony import */ var _startOfISOWeek_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(912); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -163108,14 +159290,14 @@ function lastDayOfISOWeekYear(dirtyDate) { } /***/ }), -/* 1097 */ +/* 1094 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return lastDayOfQuarter; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -163155,14 +159337,14 @@ function lastDayOfQuarter(dirtyDate) { } /***/ }), -/* 1098 */ +/* 1095 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return lastDayOfYear; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -163198,18 +159380,18 @@ function lastDayOfYear(dirtyDate) { } /***/ }), -/* 1099 */ +/* 1096 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return lightFormat; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_format_lightFormatters_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(991); -/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(909); -/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(927); -/* harmony import */ var _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(989); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_format_lightFormatters_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(990); +/* harmony import */ var _lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(917); +/* harmony import */ var _isValid_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(930); +/* harmony import */ var _subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(988); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(902); @@ -163281,12 +159463,13 @@ var unescapedLatinCharacterRegExp = /[a-zA-Z]/; * @throws {RangeError} format string contains an unescaped latin alphabet character * * @example - * const result = lightFormat(new Date(2014, 1, 11), 'yyyy-MM-dd') + * var result = lightFormat(new Date(2014, 1, 11), 'yyyy-MM-dd') * //=> '2014-02-11' */ -function lightFormat(dirtyDate, formatStr) { +function lightFormat(dirtyDate, dirtyFormatStr) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_5__["default"])(2, arguments); + var formatStr = String(dirtyFormatStr); var originalDate = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate); if (!Object(_isValid_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(originalDate)) { @@ -163298,10 +159481,7 @@ function lightFormat(dirtyDate, formatStr) { var timezoneOffset = Object(_lib_getTimezoneOffsetInMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(originalDate); var utcDate = Object(_subMilliseconds_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(originalDate, timezoneOffset); - var tokens = formatStr.match(formattingTokensRegExp); // The only case when formattingTokensRegExp doesn't match the string is when it's empty - - if (!tokens) return ''; - var result = tokens.map(function (substring) { + var result = formatStr.match(formattingTokensRegExp).map(function (substring) { // Replace two single quote characters with one single quote character if (substring === "''") { return "'"; @@ -163316,7 +159496,7 @@ function lightFormat(dirtyDate, formatStr) { var formatter = _lib_format_lightFormatters_index_js__WEBPACK_IMPORTED_MODULE_1__["default"][firstCharacter]; if (formatter) { - return formatter(utcDate, substring); + return formatter(utcDate, substring, null, {}); } if (firstCharacter.match(unescapedLatinCharacterRegExp)) { @@ -163329,42 +159509,110 @@ function lightFormat(dirtyDate, formatStr) { } function cleanEscapedString(input) { - var matches = input.match(escapedStringRegExp); + return input.match(escapedStringRegExp)[1].replace(doubleQuoteRegExp, "'"); +} + +/***/ }), +/* 1097 */ +/***/ (function(module, __webpack_exports__, __webpack_require__) { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return max; }); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); + + +/** + * @name max + * @category Common Helpers + * @summary Return the latest of the given dates. + * + * @description + * Return the latest of the given dates. + * + * ### v2.0.0 breaking changes: + * + * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). + * + * - `max` function now accepts an array of dates rather than spread arguments. + * + * ```javascript + * // Before v2.0.0 + * var date1 = new Date(1989, 6, 10) + * var date2 = new Date(1987, 1, 11) + * var maxDate = max(date1, date2) + * + * // v2.0.0 onward: + * var dates = [new Date(1989, 6, 10), new Date(1987, 1, 11)] + * var maxDate = max(dates) + * ``` + * + * @param {Date[]|Number[]} datesArray - the dates to compare + * @returns {Date} the latest of the dates + * @throws {TypeError} 1 argument required + * + * @example + * // Which of these dates is the latest? + * var result = max([ + * new Date(1989, 6, 10), + * new Date(1987, 1, 11), + * new Date(1995, 6, 2), + * new Date(1990, 0, 1) + * ]) + * //=> Sun Jul 02 1995 00:00:00 + */ + +function max(dirtyDatesArray) { + Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(1, arguments); + var datesArray; // `dirtyDatesArray` is Array, Set or Map, or object with custom `forEach` method - if (!matches) { - return input; + if (dirtyDatesArray && typeof dirtyDatesArray.forEach === 'function') { + datesArray = dirtyDatesArray; // If `dirtyDatesArray` is Array-like Object, convert to Array. + } else if (typeof dirtyDatesArray === 'object' && dirtyDatesArray !== null) { + datesArray = Array.prototype.slice.call(dirtyDatesArray); + } else { + // `dirtyDatesArray` is non-iterable, return Invalid Date + return new Date(NaN); } - return matches[1].replace(doubleQuoteRegExp, "'"); + var result; + datesArray.forEach(function (dirtyDate) { + var currentDate = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate); + + if (result === undefined || result < currentDate || isNaN(currentDate)) { + result = currentDate; + } + }); + return result || new Date(NaN); } /***/ }), -/* 1100 */ +/* 1098 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return milliseconds; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(902); // Leap year occures every 4 years, except for years that are divisable by 100 and not divisable by 400. // 1 mean year = (365+1/4-1/100+1/400) days = 365.2425 days -var daysInYear = 365.2425; +var yearInDays = 365.2425; /** * @name milliseconds * @category Millisecond Helpers - * @summary - * Returns the number of milliseconds in the specified, years, months, weeks, days, hours, minutes and seconds. - * - * @description - * Returns the number of milliseconds in the specified, years, months, weeks, days, hours, minutes and seconds. + * @summary Returns the number of milliseconds in the specified, years, months, weeks, days, hours, minutes and seconds. * * One years equals 365.2425 days according to the formula: * * > Leap year occures every 4 years, except for years that are divisable by 100 and not divisable by 400. * > 1 mean year = (365+1/4-1/100+1/400) days = 365.2425 days * - * One month is a year divided by 12. + * One month is a year devided by 12. + * + * @description + * Returns the number of milliseconds in the specified, years, months, weeks, days, hours, minutes and seconds. * * @param {Duration} duration - the object with years, months, weeks, days, hours, minutes and seconds to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`. * @returns {number} the milliseconds @@ -163372,11 +159620,11 @@ var daysInYear = 365.2425; * * @example * // 1 year in milliseconds - * milliseconds({ years: 1 }) + * milliseconds({ year: 1 }) * //=> 31556952000 * * // 3 months in milliseconds - * milliseconds({ months: 3 }) + * milliseconds({ month: 3 }) * //=> 7889238000 */ @@ -163390,8 +159638,8 @@ function milliseconds(_ref) { seconds = _ref.seconds; Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); var totalDays = 0; - if (years) totalDays += years * daysInYear; - if (months) totalDays += months * (daysInYear / 12); + if (years) totalDays += years * yearInDays; + if (months) totalDays += months * (yearInDays / 12); if (weeks) totalDays += weeks * 7; if (days) totalDays += days; var totalSeconds = totalDays * 24 * 60 * 60; @@ -163402,625 +159650,89 @@ function milliseconds(_ref) { } /***/ }), -/* 1101 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return millisecondsToHours; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name millisecondsToHours - * @category Conversion Helpers - * @summary Convert milliseconds to hours. - * - * @description - * Convert a number of milliseconds to a full number of hours. - * - * @param {number} milliseconds - number of milliseconds to be converted - * - * @returns {number} the number of milliseconds converted in hours - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 7200000 milliseconds to hours: - * const result = millisecondsToHours(7200000) - * //=> 2 - * - * @example - * // It uses floor rounding: - * const result = millisecondsToHours(7199999) - * //=> 1 - */ - -function millisecondsToHours(milliseconds) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var hours = milliseconds / _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["millisecondsInHour"]; - return Math.floor(hours); -} - -/***/ }), -/* 1102 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return millisecondsToMinutes; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name millisecondsToMinutes - * @category Conversion Helpers - * @summary Convert milliseconds to minutes. - * - * @description - * Convert a number of milliseconds to a full number of minutes. - * - * @param {number} milliseconds - number of milliseconds to be converted. - * - * @returns {number} the number of milliseconds converted in minutes - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 60000 milliseconds to minutes: - * const result = millisecondsToMinutes(60000) - * //=> 1 - * - * @example - * // It uses floor rounding: - * const result = millisecondsToMinutes(119999) - * //=> 1 - */ - -function millisecondsToMinutes(milliseconds) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var minutes = milliseconds / _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["millisecondsInMinute"]; - return Math.floor(minutes); -} - -/***/ }), -/* 1103 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return millisecondsToSeconds; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name millisecondsToSeconds - * @category Conversion Helpers - * @summary Convert milliseconds to seconds. - * - * @description - * Convert a number of milliseconds to a full number of seconds. - * - * @param {number} milliseconds - number of milliseconds to be converted - * - * @returns {number} the number of milliseconds converted in seconds - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 1000 miliseconds to seconds: - * const result = millisecondsToSeconds(1000) - * //=> 1 - * - * @example - * // It uses floor rounding: - * const result = millisecondsToSeconds(1999) - * //=> 1 - */ - -function millisecondsToSeconds(milliseconds) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var seconds = milliseconds / _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["millisecondsInSecond"]; - return Math.floor(seconds); -} - -/***/ }), -/* 1104 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return minutesToHours; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name minutesToHours - * @category Conversion Helpers - * @summary Convert minutes to hours. - * - * @description - * Convert a number of minutes to a full number of hours. - * - * @param {number} minutes - number of minutes to be converted - * - * @returns {number} the number of minutes converted in hours - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 140 minutes to hours: - * const result = minutesToHours(120) - * //=> 2 - * - * @example - * // It uses floor rounding: - * const result = minutesToHours(179) - * //=> 2 - */ - -function minutesToHours(minutes) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var hours = minutes / _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["minutesInHour"]; - return Math.floor(hours); -} - -/***/ }), -/* 1105 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return minutesToMilliseconds; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name minutesToMilliseconds - * @category Conversion Helpers - * @summary Convert minutes to milliseconds. - * - * @description - * Convert a number of minutes to a full number of milliseconds. - * - * @param {number} minutes - number of minutes to be converted - * - * @returns {number} the number of minutes converted in milliseconds - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 2 minutes to milliseconds - * const result = minutesToMilliseconds(2) - * //=> 120000 - */ - -function minutesToMilliseconds(minutes) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Math.floor(minutes * _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["millisecondsInMinute"]); -} - -/***/ }), -/* 1106 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return minutesToSeconds; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name minutesToSeconds - * @category Conversion Helpers - * @summary Convert minutes to seconds. - * - * @description - * Convert a number of minutes to a full number of seconds. - * - * @param { number } minutes - number of minutes to be converted - * - * @returns {number} the number of minutes converted in seconds - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 2 minutes to seconds - * const result = minutesToSeconds(2) - * //=> 120 - */ - -function minutesToSeconds(minutes) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Math.floor(minutes * _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["secondsInMinute"]); -} - -/***/ }), -/* 1107 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return monthsToQuarters; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name monthsToQuarters - * @category Conversion Helpers - * @summary Convert number of months to quarters. - * - * @description - * Convert a number of months to a full number of quarters. - * - * @param {number} months - number of months to be converted. - * - * @returns {number} the number of months converted in quarters - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 6 months to quarters: - * const result = monthsToQuarters(6) - * //=> 2 - * - * @example - * // It uses floor rounding: - * const result = monthsToQuarters(7) - * //=> 2 - */ - -function monthsToQuarters(months) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var quarters = months / _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["monthsInQuarter"]; - return Math.floor(quarters); -} - -/***/ }), -/* 1108 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return monthsToYears; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name monthsToYears - * @category Conversion Helpers - * @summary Convert number of months to years. - * - * @description - * Convert a number of months to a full number of years. - * - * @param {number} months - number of months to be converted - * - * @returns {number} the number of months converted in years - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 36 months to years: - * const result = monthsToYears(36) - * //=> 3 - * - * // It uses floor rounding: - * const result = monthsToYears(40) - * //=> 3 - */ - -function monthsToYears(months) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var years = months / _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["monthsInYear"]; - return Math.floor(years); -} - -/***/ }), -/* 1109 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return nextDay; }); -/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(891); -/* harmony import */ var _getDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1019); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); - - - -/** - * @name nextDay - * @category Weekday Helpers - * @summary When is the next day of the week? - * - * @description - * When is the next day of the week? 0-6 the day of the week, 0 represents Sunday. - * - * @param {Date | number} date - the date to check - * @param {Day} day - day of the week - * @returns {Date} - the date is the next day of week - * @throws {TypeError} - 2 arguments required - * - * @example - * // When is the next Monday after Mar, 20, 2020? - * const result = nextDay(new Date(2020, 2, 20), 1) - * //=> Mon Mar 23 2020 00:00:00 - * - * @example - * // When is the next Tuesday after Mar, 21, 2020? - * const result = nextDay(new Date(2020, 2, 21), 2) - * //=> Tue Mar 24 2020 00:00:00 - */ - -function nextDay(date, day) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(2, arguments); - var delta = day - Object(_getDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date); - if (delta <= 0) delta += 7; - return Object(_addDays_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(date, delta); -} - -/***/ }), -/* 1110 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return nextFriday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1109); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); - - - -/** - * @name nextFriday - * @category Weekday Helpers - * @summary When is the next Friday? - * - * @description - * When is the next Friday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the next Friday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the next Friday after Mar, 22, 2020? - * const result = nextFriday(new Date(2020, 2, 22)) - * //=> Fri Mar 27 2020 00:00:00 - */ - -function nextFriday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(date), 5); -} - -/***/ }), -/* 1111 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return nextMonday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1109); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); - - - -/** - * @name nextMonday - * @category Weekday Helpers - * @summary When is the next Monday? - * - * @description - * When is the next Monday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the next Monday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the next Monday after Mar, 22, 2020? - * const result = nextMonday(new Date(2020, 2, 22)) - * //=> Mon Mar 23 2020 00:00:00 - */ - -function nextMonday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(date), 1); -} - -/***/ }), -/* 1112 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return nextSaturday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1109); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); - - - -/** - * @name nextSaturday - * @category Weekday Helpers - * @summary When is the next Saturday? - * - * @description - * When is the next Saturday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the next Saturday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the next Saturday after Mar, 22, 2020? - * const result = nextSaturday(new Date(2020, 2, 22)) - * //=> Sat Mar 28 2020 00:00:00 - */ - -function nextSaturday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(date), 6); -} - -/***/ }), -/* 1113 */ +/* 1099 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return nextSunday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1109); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); - +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return min; }); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** - * @name nextSunday - * @category Weekday Helpers - * @summary When is the next Sunday? + * @name min + * @category Common Helpers + * @summary Return the earliest of the given dates. * * @description - * When is the next Sunday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the next Sunday - * @throws {TypeError} 1 argument required + * Return the earliest of the given dates. * - * @example - * // When is the next Sunday after Mar, 22, 2020? - * const result = nextSunday(new Date(2020, 2, 22)) - * //=> Sun Mar 29 2020 00:00:00 - */ - -function nextSunday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(date), 0); -} - -/***/ }), -/* 1114 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return nextThursday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1109); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); - - - -/** - * @name nextThursday - * @category Weekday Helpers - * @summary When is the next Thursday? + * ### v2.0.0 breaking changes: * - * @description - * When is the next Thursday? + * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the next Thursday - * @throws {TypeError} 1 argument required + * - `min` function now accepts an array of dates rather than spread arguments. * - * @example - * // When is the next Thursday after Mar, 22, 2020? - * const result = nextThursday(new Date(2020, 2, 22)) - * //=> Thur Mar 26 2020 00:00:00 - */ - -function nextThursday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(date), 4); -} - -/***/ }), -/* 1115 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return nextTuesday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1109); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); - - - -/** - * @name nextTuesday - * @category Weekday Helpers - * @summary When is the next Tuesday? + * ```javascript + * // Before v2.0.0 + * var date1 = new Date(1989, 6, 10) + * var date2 = new Date(1987, 1, 11) + * var minDate = min(date1, date2) * - * @description - * When is the next Tuesday? + * // v2.0.0 onward: + * var dates = [new Date(1989, 6, 10), new Date(1987, 1, 11)] + * var minDate = min(dates) + * ``` * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the next Tuesday + * @param {Date[]|Number[]} datesArray - the dates to compare + * @returns {Date} the earliest of the dates * @throws {TypeError} 1 argument required * * @example - * // When is the next Tuesday after Mar, 22, 2020? - * const result = nextTuesday(new Date(2020, 2, 22)) - * //=> Tue Mar 24 2020 00:00:00 + * // Which of these dates is the earliest? + * var result = min([ + * new Date(1989, 6, 10), + * new Date(1987, 1, 11), + * new Date(1995, 6, 2), + * new Date(1990, 0, 1) + * ]) + * //=> Wed Feb 11 1987 00:00:00 */ -function nextTuesday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(date), 2); -} - -/***/ }), -/* 1116 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return nextWednesday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1109); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); - +function min(dirtyDatesArray) { + Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(1, arguments); + var datesArray; // `dirtyDatesArray` is Array, Set or Map, or object with custom `forEach` method + if (dirtyDatesArray && typeof dirtyDatesArray.forEach === 'function') { + datesArray = dirtyDatesArray; // If `dirtyDatesArray` is Array-like Object, convert to Array. + } else if (typeof dirtyDatesArray === 'object' && dirtyDatesArray !== null) { + datesArray = Array.prototype.slice.call(dirtyDatesArray); + } else { + // `dirtyDatesArray` is non-iterable, return Invalid Date + return new Date(NaN); + } -/** - * @name nextWednesday - * @category Weekday Helpers - * @summary When is the next Wednesday? - * - * @description - * When is the next Wednesday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the next Wednesday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the next Wednesday after Mar, 22, 2020? - * const result = nextWednesday(new Date(2020, 2, 22)) - * //=> Wed Mar 25 2020 00:00:00 - */ + var result; + datesArray.forEach(function (dirtyDate) { + var currentDate = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate); -function nextWednesday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_nextDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(date), 3); + if (result === undefined || result > currentDate || isNaN(currentDate)) { + result = currentDate; + } + }); + return result || new Date(NaN); } /***/ }), -/* 1117 */ +/* 1100 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return parseISO; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); var MILLISECONDS_IN_HOUR = 3600000; @@ -164142,9 +159854,8 @@ function parseISO(argument, dirtyOptions) { // Year values from 0 to 99 map to the years 1900 to 1999 // so set year explicitly with setFullYear. - var result = new Date(0); - result.setFullYear(dirtyDate.getUTCFullYear(), dirtyDate.getUTCMonth(), dirtyDate.getUTCDate()); - result.setHours(dirtyDate.getUTCHours(), dirtyDate.getUTCMinutes(), dirtyDate.getUTCSeconds(), dirtyDate.getUTCMilliseconds()); + var result = new Date(dirtyDate.getUTCFullYear(), dirtyDate.getUTCMonth(), dirtyDate.getUTCDate(), dirtyDate.getUTCHours(), dirtyDate.getUTCMinutes(), dirtyDate.getUTCSeconds(), dirtyDate.getUTCMilliseconds()); + result.setFullYear(dirtyDate.getUTCFullYear()); return result; } @@ -164314,14 +160025,14 @@ function validateTimezone(_hours, minutes) { } /***/ }), -/* 1118 */ +/* 1101 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return parseJSON; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -164340,7 +160051,6 @@ __webpack_require__.r(__webpack_exports__); * - `2000-03-15T05:20:10.123Z`: The output of `.toISOString()` and `JSON.stringify(new Date())` * - `2000-03-15T05:20:10Z`: Without milliseconds * - `2000-03-15T05:20:10+00:00`: With a zero offset, the default JSON encoded format in some other languages - * - `2000-03-15T05:20:10+05:45`: With a positive or negative offset, the default JSON encoded format in some other languages * - `2000-03-15T05:20:10+0000`: With a zero offset without a colon * - `2000-03-15T05:20:10`: Without a trailing 'Z' symbol * - `2000-03-15T05:20:10.1234567`: Up to 7 digits in milliseconds field. Only first 3 are taken into account since JS does not allow fractional milliseconds @@ -164363,11 +160073,10 @@ function parseJSON(argument) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(1, arguments); if (typeof argument === 'string') { - var parts = argument.match(/(\d{4})-(\d{2})-(\d{2})[T ](\d{2}):(\d{2}):(\d{2})(?:\.(\d{0,7}))?(?:Z|(.)(\d{2}):?(\d{2})?)?/); + var parts = argument.match(/(\d{4})-(\d{2})-(\d{2})[T ](\d{2}):(\d{2}):(\d{2})(?:\.(\d{0,7}))?(?:Z|\+00:?00)?/); if (parts) { - // Group 8 matches the sign - return new Date(Date.UTC(+parts[1], +parts[2] - 1, +parts[3], +parts[4] - (+parts[9] || 0) * (parts[8] == '-' ? -1 : 1), +parts[5] - (+parts[10] || 0) * (parts[8] == '-' ? -1 : 1), +parts[6], +((parts[7] || '0') + '00').substring(0, 3))); + return new Date(Date.UTC(+parts[1], parts[2] - 1, +parts[3], +parts[4], +parts[5], +parts[6], +((parts[7] || '0') + '00').substring(0, 3))); } return new Date(NaN); @@ -164377,372 +160086,14 @@ function parseJSON(argument) { } /***/ }), -/* 1119 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return previousDay; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _getDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1019); -/* harmony import */ var _subDays_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1048); - - - - -/** - * @name previousDay - * @category Weekday Helpers - * @summary When is the previous day of the week? - * - * @description - * When is the previous day of the week? 0-6 the day of the week, 0 represents Sunday. - * - * @param {Date | number} date - the date to check - * @param {number} day - day of the week - * @returns {Date} - the date is the previous day of week - * @throws {TypeError} - 2 arguments required - * - * @example - * // When is the previous Monday before Mar, 20, 2020? - * const result = previousDay(new Date(2020, 2, 20), 1) - * //=> Mon Mar 16 2020 00:00:00 - * - * @example - * // When is the previous Tuesday before Mar, 21, 2020? - * const result = previousDay(new Date(2020, 2, 21), 2) - * //=> Tue Mar 17 2020 00:00:00 - */ -function previousDay(date, day) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(2, arguments); - var delta = Object(_getDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date) - day; - if (delta <= 0) delta += 7; - return Object(_subDays_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(date, delta); -} - -/***/ }), -/* 1120 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return previousFriday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1119); - - -/** - * @name previousFriday - * @category Weekday Helpers - * @summary When is the previous Friday? - * - * @description - * When is the previous Friday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the previous Friday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the previous Friday before Jun, 19, 2021? - * const result = previousFriday(new Date(2021, 5, 19)) - * //=> Fri June 18 2021 00:00:00 - */ - -function previousFriday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, 5); -} - -/***/ }), -/* 1121 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return previousMonday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1119); - - -/** - * @name previousMonday - * @category Weekday Helpers - * @summary When is the previous Monday? - * - * @description - * When is the previous Monday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the previous Monday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the previous Monday before Jun, 18, 2021? - * const result = previousMonday(new Date(2021, 5, 18)) - * //=> Mon June 14 2021 00:00:00 - */ - -function previousMonday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, 1); -} - -/***/ }), -/* 1122 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return previousSaturday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1119); - - -/** - * @name previousSaturday - * @category Weekday Helpers - * @summary When is the previous Saturday? - * - * @description - * When is the previous Saturday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the previous Saturday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the previous Saturday before Jun, 20, 2021? - * const result = previousSaturday(new Date(2021, 5, 20)) - * //=> Sat June 19 2021 00:00:00 - */ - -function previousSaturday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, 6); -} - -/***/ }), -/* 1123 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return previousSunday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1119); - - -/** - * @name previousSunday - * @category Weekday Helpers - * @summary When is the previous Sunday? - * - * @description - * When is the previous Sunday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the previous Sunday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the previous Sunday before Jun, 21, 2021? - * const result = previousSunday(new Date(2021, 5, 21)) - * //=> Sun June 20 2021 00:00:00 - */ - -function previousSunday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, 0); -} - -/***/ }), -/* 1124 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return previousThursday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1119); - - -/** - * @name previousThursday - * @category Weekday Helpers - * @summary When is the previous Thursday? - * - * @description - * When is the previous Thursday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the previous Thursday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the previous Thursday before Jun, 18, 2021? - * const result = previousThursday(new Date(2021, 5, 18)) - * //=> Thu June 17 2021 00:00:00 - */ - -function previousThursday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, 4); -} - -/***/ }), -/* 1125 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return previousTuesday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1119); - - -/** - * @name previousTuesday - * @category Weekday Helpers - * @summary When is the previous Tuesday? - * - * @description - * When is the previous Tuesday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the previous Tuesday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the previous Tuesday before Jun, 18, 2021? - * const result = previousTuesday(new Date(2021, 5, 18)) - * //=> Tue June 15 2021 00:00:00 - */ - -function previousTuesday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, 2); -} - -/***/ }), -/* 1126 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return previousWednesday; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1119); - - -/** - * @name previousWednesday - * @category Weekday Helpers - * @summary When is the previous Wednesday? - * - * @description - * When is the previous Wednesday? - * - * @param {Date | number} date - the date to start counting from - * @returns {Date} the previous Wednesday - * @throws {TypeError} 1 argument required - * - * @example - * // When is the previous Wednesday before Jun, 18, 2021? - * const result = previousWednesday(new Date(2021, 5, 18)) - * //=> Wed June 16 2021 00:00:00 - */ - -function previousWednesday(date) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Object(_previousDay_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, 3); -} - -/***/ }), -/* 1127 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return quartersToMonths; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name quartersToMonths - * @category Conversion Helpers - * @summary Convert number of quarters to months. - * - * @description - * Convert a number of quarters to a full number of months. - * - * @param {number} quarters - number of quarters to be converted - * - * @returns {number} the number of quarters converted in months - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 2 quarters to months - * const result = quartersToMonths(2) - * //=> 6 - */ - -function quartersToMonths(quarters) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Math.floor(quarters * _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["monthsInQuarter"]); -} - -/***/ }), -/* 1128 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return quartersToYears; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name quartersToYears - * @category Conversion Helpers - * @summary Convert number of quarters to years. - * - * @description - * Convert a number of quarters to a full number of years. - * - * @param {number} quarters - number of quarters to be converted - * - * @returns {number} the number of quarters converted in years - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 8 quarters to years - * const result = quartersToYears(8) - * //=> 2 - * - * @example - * // It uses floor rounding: - * const result = quartersToYears(11) - * //=> 2 - */ - -function quartersToYears(quarters) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var years = quarters / _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["quartersInYear"]; - return Math.floor(years); -} - -/***/ }), -/* 1129 */ +/* 1102 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return roundToNearestMinutes; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(892); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(900); /** @@ -164799,134 +160150,16 @@ function roundToNearestMinutes(dirtyDate, options) { } /***/ }), -/* 1130 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return secondsToHours; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name secondsToHours - * @category Conversion Helpers - * @summary Convert seconds to hours. - * - * @description - * Convert a number of seconds to a full number of hours. - * - * @param {number} seconds - number of seconds to be converted - * - * @returns {number} the number of seconds converted in hours - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 7200 seconds into hours - * const result = secondsToHours(7200) - * //=> 2 - * - * @example - * // It uses floor rounding: - * const result = secondsToHours(7199) - * //=> 1 - */ - -function secondsToHours(seconds) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var hours = seconds / _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["secondsInHour"]; - return Math.floor(hours); -} - -/***/ }), -/* 1131 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return secondsToMilliseconds; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name secondsToMilliseconds - * @category Conversion Helpers - * @summary Convert seconds to milliseconds. - * - * @description - * Convert a number of seconds to a full number of milliseconds. - * - * @param {number} seconds - number of seconds to be converted - * - * @returns {number} the number of seconds converted in milliseconds - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 2 seconds into milliseconds - * const result = secondsToMilliseconds(2) - * //=> 2000 - */ - -function secondsToMilliseconds(seconds) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return seconds * _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["millisecondsInSecond"]; -} - -/***/ }), -/* 1132 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return secondsToMinutes; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name secondsToMinutes - * @category Conversion Helpers - * @summary Convert seconds to minutes. - * - * @description - * Convert a number of seconds to a full number of minutes. - * - * @param {number} seconds - number of seconds to be converted - * - * @returns {number} the number of seconds converted in minutes - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 120 seconds into minutes - * const result = secondsToMinutes(120) - * //=> 2 - * - * @example - * // It uses floor rounding: - * const result = secondsToMinutes(119) - * //=> 1 - */ - -function secondsToMinutes(seconds) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - var minutes = seconds / _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["secondsInMinute"]; - return Math.floor(minutes); -} - -/***/ }), -/* 1133 */ +/* 1103 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return set; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _setMonth_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1134); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); - +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _setMonth_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1104); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -164969,6 +160202,7 @@ __webpack_require__.r(__webpack_exports__); * var result = set(new Date(2014, 8, 1, 1, 23, 45), { hours: 12 }) * //=> Mon Sep 01 2014 12:23:45 */ + function set(dirtyDate, values) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(2, arguments); @@ -164978,7 +160212,7 @@ function set(dirtyDate, values) { var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyDate); // Check if date is Invalid Date because Date.prototype.setFullYear ignores the value of Invalid Date - if (isNaN(date.getTime())) { + if (isNaN(date)) { return new Date(NaN); } @@ -165014,16 +160248,16 @@ function set(dirtyDate, values) { } /***/ }), -/* 1134 */ +/* 1104 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setMonth; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _getDaysInMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1021); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _getDaysInMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1020); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -165047,7 +160281,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Set February to 1 September 2014: - * const result = setMonth(new Date(2014, 8, 1), 1) + * var result = setMonth(new Date(2014, 8, 1), 1) * //=> Sat Feb 01 2014 00:00:00 */ @@ -165068,15 +160302,15 @@ function setMonth(dirtyDate, dirtyMonth) { } /***/ }), -/* 1135 */ +/* 1105 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setDate; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -165112,17 +160346,16 @@ function setDate(dirtyDate, dirtyDayOfMonth) { } /***/ }), -/* 1136 */ +/* 1106 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setDay; }); -/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(891); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); - +/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(899); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -165158,6 +160391,7 @@ __webpack_require__.r(__webpack_exports__); * var result = setDay(new Date(2014, 8, 1), 0, { weekStartsOn: 1 }) * //=> Sun Sep 07 2014 00:00:00 */ + function setDay(dirtyDate, dirtyDay, dirtyOptions) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(2, arguments); var options = dirtyOptions || {}; @@ -165170,26 +160404,26 @@ function setDay(dirtyDate, dirtyDay, dirtyOptions) { throw new RangeError('weekStartsOn must be between 0 and 6 inclusively'); } - var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dirtyDate); + var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dirtyDate, options); var day = Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dirtyDay); var currentDay = date.getDay(); var remainder = day % 7; var dayIndex = (remainder + 7) % 7; var delta = 7 - weekStartsOn; var diff = day < 0 || day > 6 ? day - (currentDay + delta) % 7 : (dayIndex + delta) % 7 - (currentDay + delta) % 7; - return Object(_addDays_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(date, diff); + return Object(_addDays_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(date, diff, options); } /***/ }), -/* 1137 */ +/* 1107 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setDayOfYear; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -165226,15 +160460,15 @@ function setDayOfYear(dirtyDate, dirtyDayOfYear) { } /***/ }), -/* 1138 */ +/* 1108 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setHours; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -165270,17 +160504,17 @@ function setHours(dirtyDate, dirtyHours) { } /***/ }), -/* 1139 */ +/* 1109 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setISODay; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(891); -/* harmony import */ var _getISODay_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(1026); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _addDays_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(899); +/* harmony import */ var _getISODay_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(1025); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(902); @@ -165307,7 +160541,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Set Sunday to 1 September 2014: - * const result = setISODay(new Date(2014, 8, 1), 7) + * var result = setISODay(new Date(2014, 8, 1), 7) * //=> Sun Sep 07 2014 00:00:00 */ @@ -165321,16 +160555,16 @@ function setISODay(dirtyDate, dirtyDay) { } /***/ }), -/* 1140 */ +/* 1110 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setISOWeek; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _getISOWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1027); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _getISOWeek_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1026); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -165356,7 +160590,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Set the 53rd ISO week to 7 August 2004: - * const result = setISOWeek(new Date(2004, 7, 7), 53) + * var result = setISOWeek(new Date(2004, 7, 7), 53) * //=> Sat Jan 01 2005 00:00:00 */ @@ -165370,15 +160604,15 @@ function setISOWeek(dirtyDate, dirtyISOWeek) { } /***/ }), -/* 1141 */ +/* 1111 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setMilliseconds; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -165401,7 +160635,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Set 300 milliseconds to 1 September 2014 11:30:40.500: - * const result = setMilliseconds(new Date(2014, 8, 1, 11, 30, 40, 500), 300) + * var result = setMilliseconds(new Date(2014, 8, 1, 11, 30, 40, 500), 300) * //=> Mon Sep 01 2014 11:30:40.300 */ @@ -165414,15 +160648,15 @@ function setMilliseconds(dirtyDate, dirtyMilliseconds) { } /***/ }), -/* 1142 */ +/* 1112 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setMinutes; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -165445,7 +160679,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Set 45 minutes to 1 September 2014 11:30:40: - * const result = setMinutes(new Date(2014, 8, 1, 11, 30, 40), 45) + * var result = setMinutes(new Date(2014, 8, 1, 11, 30, 40), 45) * //=> Mon Sep 01 2014 11:45:40 */ @@ -165458,16 +160692,16 @@ function setMinutes(dirtyDate, dirtyMinutes) { } /***/ }), -/* 1143 */ +/* 1113 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setQuarter; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _setMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1134); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _setMonth_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(1104); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -165491,7 +160725,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Set the 2nd quarter to 2 July 2014: - * const result = setQuarter(new Date(2014, 6, 2), 2) + * var result = setQuarter(new Date(2014, 6, 2), 2) * //=> Wed Apr 02 2014 00:00:00 */ @@ -165505,15 +160739,15 @@ function setQuarter(dirtyDate, dirtyQuarter) { } /***/ }), -/* 1144 */ +/* 1114 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setSeconds; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -165536,7 +160770,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Set 45 seconds to 1 September 2014 11:30:40: - * const result = setSeconds(new Date(2014, 8, 1, 11, 30, 40), 45) + * var result = setSeconds(new Date(2014, 8, 1, 11, 30, 40), 45) * //=> Mon Sep 01 2014 11:30:45 */ @@ -165549,17 +160783,16 @@ function setSeconds(dirtyDate, dirtySeconds) { } /***/ }), -/* 1145 */ +/* 1115 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setWeek; }); -/* harmony import */ var _getWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1036); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(894); - +/* harmony import */ var _getWeek_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1035); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(902); @@ -165608,28 +160841,28 @@ __webpack_require__.r(__webpack_exports__); * }) * //=> Sun Jan 4 2004 00:00:00 */ -function setWeek(dirtyDate, dirtyWeek, options) { + +function setWeek(dirtyDate, dirtyWeek, dirtyOptions) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(2, arguments); var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dirtyDate); var week = Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dirtyWeek); - var diff = Object(_getWeek_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(date, options) - week; + var diff = Object(_getWeek_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(date, dirtyOptions) - week; date.setDate(date.getDate() - diff * 7); return date; } /***/ }), -/* 1146 */ +/* 1116 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setWeekYear; }); -/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(908); -/* harmony import */ var _startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1037); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(893); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(892); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(894); - +/* harmony import */ var _differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(916); +/* harmony import */ var _startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1036); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(901); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(900); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(902); @@ -165680,34 +160913,35 @@ __webpack_require__.r(__webpack_exports__); * }) * //=> Sat Jan 01 2005 00:00:00 */ -function setWeekYear(dirtyDate, dirtyWeekYear) { - var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + +function setWeekYear(dirtyDate, dirtyWeekYear, dirtyOptions) { Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_4__["default"])(2, arguments); + var options = dirtyOptions || {}; var locale = options.locale; var localeFirstWeekContainsDate = locale && locale.options && locale.options.firstWeekContainsDate; var defaultFirstWeekContainsDate = localeFirstWeekContainsDate == null ? 1 : Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(localeFirstWeekContainsDate); var firstWeekContainsDate = options.firstWeekContainsDate == null ? defaultFirstWeekContainsDate : Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(options.firstWeekContainsDate); var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_2__["default"])(dirtyDate); var weekYear = Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_3__["default"])(dirtyWeekYear); - var diff = Object(_differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(date, Object(_startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, options)); + var diff = Object(_differenceInCalendarDays_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(date, Object(_startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(date, dirtyOptions)); var firstWeek = new Date(0); firstWeek.setFullYear(weekYear, 0, firstWeekContainsDate); firstWeek.setHours(0, 0, 0, 0); - date = Object(_startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(firstWeek, options); + date = Object(_startOfWeekYear_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(firstWeek, dirtyOptions); date.setDate(date.getDate() + diff); return date; } /***/ }), -/* 1147 */ +/* 1117 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return setYear; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -165730,7 +160964,7 @@ __webpack_require__.r(__webpack_exports__); * * @example * // Set year 2013 to 1 September 2014: - * const result = setYear(new Date(2014, 8, 1), 2013) + * var result = setYear(new Date(2014, 8, 1), 2013) * //=> Sun Sep 01 2013 00:00:00 */ @@ -165739,7 +160973,7 @@ function setYear(dirtyDate, dirtyYear) { var date = Object(_toDate_index_js__WEBPACK_IMPORTED_MODULE_1__["default"])(dirtyDate); var year = Object(_lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(dirtyYear); // Check if date is Invalid Date because Date.prototype.setFullYear ignores the value of Invalid Date - if (isNaN(date.getTime())) { + if (isNaN(date)) { return new Date(NaN); } @@ -165748,14 +160982,14 @@ function setYear(dirtyDate, dirtyYear) { } /***/ }), -/* 1148 */ +/* 1118 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfDecade; }); -/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(893); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(894); +/* harmony import */ var _toDate_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(901); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(902); /** @@ -165791,13 +161025,13 @@ function startOfDecade(dirtyDate) { } /***/ }), -/* 1149 */ +/* 1119 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return startOfToday; }); -/* harmony import */ var _startOfDay_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(910); +/* harmony import */ var _startOfDay_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(918); /** * @name startOfToday @@ -165828,7 +161062,7 @@ function startOfToday() { } /***/ }), -/* 1150 */ +/* 1120 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -165869,7 +161103,7 @@ function startOfTomorrow() { } /***/ }), -/* 1151 */ +/* 1121 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; @@ -165910,15 +161144,15 @@ function startOfYesterday() { } /***/ }), -/* 1152 */ +/* 1122 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subBusinessDays; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(896); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addBusinessDays_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(904); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -165948,15 +161182,15 @@ function subBusinessDays(dirtyDate, dirtyAmount) { } /***/ }), -/* 1153 */ +/* 1123 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subHours; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addHours_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(900); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addHours_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(908); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -165990,15 +161224,15 @@ function subHours(dirtyDate, dirtyAmount) { } /***/ }), -/* 1154 */ +/* 1124 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subMinutes; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addMinutes_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(911); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addMinutes_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(919); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -166032,15 +161266,15 @@ function subMinutes(dirtyDate, dirtyAmount) { } /***/ }), -/* 1155 */ +/* 1125 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subQuarters; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addQuarters_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(912); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addQuarters_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(920); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -166074,15 +161308,15 @@ function subQuarters(dirtyDate, dirtyAmount) { } /***/ }), -/* 1156 */ +/* 1126 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subSeconds; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addSeconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(913); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addSeconds_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(921); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -166116,15 +161350,15 @@ function subSeconds(dirtyDate, dirtyAmount) { } /***/ }), -/* 1157 */ +/* 1127 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subWeeks; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addWeeks_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(914); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addWeeks_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(922); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -166158,15 +161392,15 @@ function subWeeks(dirtyDate, dirtyAmount) { } /***/ }), -/* 1158 */ +/* 1128 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return subYears; }); -/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(892); -/* harmony import */ var _addYears_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(915); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(894); +/* harmony import */ var _lib_toInteger_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(900); +/* harmony import */ var _addYears_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(923); +/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(902); @@ -166200,112 +161434,31 @@ function subYears(dirtyDate, dirtyAmount) { } /***/ }), -/* 1159 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return weeksToDays; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - -/** - * @name weeksToDays - * @category Conversion Helpers - * @summary Convert weeks to days. - * - * @description - * Convert a number of weeks to a full number of days. - * - * @param {number} weeks - number of weeks to be converted - * - * @returns {number} the number of weeks converted in days - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 2 weeks into days - * const result = weeksToDays(2) - * //=> 14 - */ - -function weeksToDays(weeks) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Math.floor(weeks * _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["daysInWeek"]); -} - -/***/ }), -/* 1160 */ +/* 1129 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return yearsToMonths; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "maxTime", function() { return maxTime; }); +/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "minTime", function() { return minTime; }); /** - * @name yearsToMonths - * @category Conversion Helpers - * @summary Convert years to months. - * - * @description - * Convert a number of years to a full number of months. - * - * @param {number} years - number of years to be converted - * - * @returns {number} the number of years converted in months - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 2 years into months - * const result = yearsToMonths(2) - * //=> 24 + * Maximum allowed time. + * @constant + * @type {number} + * @default */ - -function yearsToMonths(years) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Math.floor(years * _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["monthsInYear"]); -} - -/***/ }), -/* 1161 */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return yearsToQuarters; }); -/* harmony import */ var _lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(894); -/* harmony import */ var _constants_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(925); - - +var maxTime = Math.pow(10, 8) * 24 * 60 * 60 * 1000; /** - * @name yearsToQuarters - * @category Conversion Helpers - * @summary Convert years to quarters. - * - * @description - * Convert a number of years to a full number of quarters. - * - * @param {number} years - number of years to be converted - * - * @returns {number} the number of years converted in quarters - * @throws {TypeError} 1 argument required - * - * @example - * // Convert 2 years to quarters - * const result = yearsToQuarters(2) - * //=> 8 + * Minimum allowed time. + * @constant + * @type {number} + * @default */ -function yearsToQuarters(years) { - Object(_lib_requiredArgs_index_js__WEBPACK_IMPORTED_MODULE_0__["default"])(1, arguments); - return Math.floor(years * _constants_index_js__WEBPACK_IMPORTED_MODULE_1__["quartersInYear"]); -} +var minTime = -maxTime; /***/ }), -/* 1162 */ +/* 1130 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -166315,15 +161468,15 @@ function yearsToQuarters(years) { */ const { tokenizer -} = __webpack_require__(1163); +} = __webpack_require__(1131); const { createModel: createGlobalModel -} = __webpack_require__(1164); +} = __webpack_require__(1132); const { createModel: createLocalModel -} = __webpack_require__(1173); +} = __webpack_require__(1141); const logger = __webpack_require__(2); @@ -166337,12 +161490,13 @@ const log = logger.namespace('categorization'); * The local model is based on the user manual categorizations. * * Each model adds two properties to the transactions: - * The global model adds `cozyCategoryId` and `cozyCategoryProba` - * The local model adds `localCategoryId` and `localCategoryProba` + * * The global model adds `cozyCategoryId` and `cozyCategoryProba` + * * The local model adds `localCategoryId` and `localCategoryProba` * * In the end, each transaction can have up to four different categories. An application can use these categories to show the most significant for the user. See https://github.com/cozy/cozy-doctypes/blob/master/docs/io.cozy.bank.md#categories for more informations. * * @returns {object} an object with a `categorize` method + * * @example * const { BaseKonnector, createCategorizer } = require('cozy-konnector-libs') * @@ -166394,7 +161548,9 @@ async function createCategorizer() { * Initialize global and local models and categorize the given array of transactions * * @see {@link createCategorizer} for more informations about models initialization + * * @returns {object[]} the categorized transactions + * * @example * const { BaseKonnector, categorize } = require('cozy-konnector-libs') * @@ -166420,7 +161576,7 @@ module.exports = { }; /***/ }), -/* 1163 */ +/* 1131 */ /***/ (function(module, exports) { const DATE_TAG = ' tag_date '; @@ -166559,34 +161715,34 @@ module.exports = { }; /***/ }), -/* 1164 */ +/* 1132 */ /***/ (function(module, exports, __webpack_require__) { const { createModel -} = __webpack_require__(1165); +} = __webpack_require__(1133); module.exports = { createModel }; /***/ }), -/* 1165 */ +/* 1133 */ /***/ (function(module, exports, __webpack_require__) { const { fetchParameters -} = __webpack_require__(1166); +} = __webpack_require__(1134); const { createClassifier -} = __webpack_require__(1167); +} = __webpack_require__(1135); const { getLabelWithTags -} = __webpack_require__(1163); +} = __webpack_require__(1131); -const maxBy = __webpack_require__(1170); +const maxBy = __webpack_require__(1138); const logger = __webpack_require__(2); @@ -166627,10 +161783,10 @@ module.exports = { }; /***/ }), -/* 1166 */ +/* 1134 */ /***/ (function(module, exports, __webpack_require__) { -const cozyClient = __webpack_require__(485); +const cozyClient = __webpack_require__(487); async function fetchParameters() { const parameters = await cozyClient.fetchJSON('GET', '/remote/assets/bank_classifier_nb_and_voc'); @@ -166642,10 +161798,10 @@ module.exports = { }; /***/ }), -/* 1167 */ +/* 1135 */ /***/ (function(module, exports, __webpack_require__) { -const bayes = __webpack_require__(1168); +const bayes = __webpack_require__(1136); function createClassifier(parameters, options) { parameters.options = { ...parameters.options, @@ -166660,10 +161816,10 @@ module.exports = { }; /***/ }), -/* 1168 */ +/* 1136 */ /***/ (function(module, exports, __webpack_require__) { -const Decimal = __webpack_require__(1169).default; // handles arbitrary-precision arithmetics. +const Decimal = __webpack_require__(1137).default; // handles arbitrary-precision arithmetics. /* Expose our naive-bayes generator function @@ -167070,7 +162226,7 @@ Naivebayes.prototype.toJson = function() { /***/ }), -/* 1169 */ +/* 1137 */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; @@ -171920,12 +167076,12 @@ PI = new Decimal(PI); /***/ }), -/* 1170 */ +/* 1138 */ /***/ (function(module, exports, __webpack_require__) { -var baseExtremum = __webpack_require__(1171), - baseGt = __webpack_require__(1172), - baseIteratee = __webpack_require__(413); +var baseExtremum = __webpack_require__(1139), + baseGt = __webpack_require__(1140), + baseIteratee = __webpack_require__(415); /** * This method is like `_.max` except that it accepts `iteratee` which is @@ -171960,10 +167116,10 @@ module.exports = maxBy; /***/ }), -/* 1171 */ +/* 1139 */ /***/ (function(module, exports, __webpack_require__) { -var isSymbol = __webpack_require__(374); +var isSymbol = __webpack_require__(376); /** * The base implementation of methods like `_.max` and `_.min` which accepts a @@ -171998,7 +167154,7 @@ module.exports = baseExtremum; /***/ }), -/* 1172 */ +/* 1140 */ /***/ (function(module, exports) { /** @@ -172018,35 +167174,35 @@ module.exports = baseGt; /***/ }), -/* 1173 */ +/* 1141 */ /***/ (function(module, exports, __webpack_require__) { const { createModel -} = __webpack_require__(1174); +} = __webpack_require__(1142); module.exports = { createModel }; /***/ }), -/* 1174 */ +/* 1142 */ /***/ (function(module, exports, __webpack_require__) { const { createClassifier -} = __webpack_require__(1175); +} = __webpack_require__(1143); const { getLabelWithTags, tokenizer -} = __webpack_require__(1163); +} = __webpack_require__(1131); const { pctOfTokensInVoc -} = __webpack_require__(1220); +} = __webpack_require__(1400); -const maxBy = __webpack_require__(1170); +const maxBy = __webpack_require__(1138); const logger = __webpack_require__(2); @@ -172054,7 +167210,7 @@ const { LOCAL_MODEL_CATEG_FALLBACK, LOCAL_MODEL_PROBA_FALLBACK, LOCAL_MODEL_PCT_TOKENS_IN_VOC_THRESHOLD -} = __webpack_require__(1221); +} = __webpack_require__(1401); const log = logger.namespace('categorization/localModel/model'); @@ -172105,23 +167261,23 @@ module.exports = { }; /***/ }), -/* 1175 */ +/* 1143 */ /***/ (function(module, exports, __webpack_require__) { const { fetchTransactionsWithManualCat -} = __webpack_require__(1176); +} = __webpack_require__(1144); const { getUniqueCategories, getAlphaParameter -} = __webpack_require__(1220); +} = __webpack_require__(1400); -const bayes = __webpack_require__(1168); +const bayes = __webpack_require__(1136); const { getLabelWithTags -} = __webpack_require__(1163); +} = __webpack_require__(1131); const logger = __webpack_require__(2); @@ -172252,12 +167408,12 @@ module.exports = { }; /***/ }), -/* 1176 */ +/* 1144 */ /***/ (function(module, exports, __webpack_require__) { const { BankTransaction -} = __webpack_require__(1177); +} = __webpack_require__(1145); async function fetchTransactionsWithManualCat() { const transactionsWithManualCat = await BankTransaction.queryAll({ @@ -172273,23 +167429,23 @@ module.exports = { }; /***/ }), -/* 1177 */ +/* 1145 */ /***/ (function(module, exports, __webpack_require__) { -const Account = __webpack_require__(1178) -const AdministrativeProcedure = __webpack_require__(1186) -const Application = __webpack_require__(1196) -const Document = __webpack_require__(1179) -const BalanceHistory = __webpack_require__(1197) -const BankAccount = __webpack_require__(1198) -const BankingReconciliator = __webpack_require__(1203) -const BankTransaction = __webpack_require__(1204) -const BankAccountStats = __webpack_require__(1211) -const Contact = __webpack_require__(1187) -const CozyFile = __webpack_require__(1214) -const CozyFolder = __webpack_require__(1217) -const Group = __webpack_require__(1218) -const Permission = __webpack_require__(1219) +const Account = __webpack_require__(1146) +const AdministrativeProcedure = __webpack_require__(1346) +const Application = __webpack_require__(1356) +const Document = __webpack_require__(1147) +const BalanceHistory = __webpack_require__(1357) +const BankAccount = __webpack_require__(1358) +const BankingReconciliator = __webpack_require__(1371) +const BankTransaction = __webpack_require__(1372) +const BankAccountStats = __webpack_require__(1383) +const Contact = __webpack_require__(1347) +const CozyFile = __webpack_require__(1386) +const CozyFolder = __webpack_require__(1397) +const Group = __webpack_require__(1398) +const Permission = __webpack_require__(1399) module.exports = { Account, @@ -172311,12 +167467,12 @@ module.exports = { /***/ }), -/* 1178 */ +/* 1146 */ /***/ (function(module, exports, __webpack_require__) { -const Document = __webpack_require__(1179) -const pickBy = __webpack_require__(655) -const get = __webpack_require__(370) +const Document = __webpack_require__(1147) +const pickBy = __webpack_require__(1322) +const get = __webpack_require__(1318) const ACCOUNTS_DOCTYPE = 'io.cozy.accounts' @@ -172414,22 +167570,22 @@ module.exports = Account /***/ }), -/* 1179 */ +/* 1147 */ /***/ (function(module, exports, __webpack_require__) { -const omit = __webpack_require__(631) -const pick = __webpack_require__(671) -const size = __webpack_require__(783) -const omitBy = __webpack_require__(1180) -const isUndefined = __webpack_require__(76) -const fromPairs = __webpack_require__(557) -const pickBy = __webpack_require__(655) -const flatMap = __webpack_require__(1182) -const groupBy = __webpack_require__(729) -const sortBy = __webpack_require__(826) -const get = __webpack_require__(370) -const { parallelMap } = __webpack_require__(1184) -const CozyClient = __webpack_require__(531).default +const omit = __webpack_require__(1148) +const pick = __webpack_require__(1284) +const size = __webpack_require__(1291) +const omitBy = __webpack_require__(1298) +const isUndefined = __webpack_require__(1323) +const fromPairs = __webpack_require__(1324) +const pickBy = __webpack_require__(1322) +const flatMap = __webpack_require__(1325) +const groupBy = __webpack_require__(1333) +const sortBy = __webpack_require__(1337) +const get = __webpack_require__(1318) +const { parallelMap } = __webpack_require__(1344) +const CozyClient = __webpack_require__(533).default const log = __webpack_require__(2).namespace('Document') const querystring = __webpack_require__(104) @@ -172796,20 +167952,11 @@ class Document { return parallelMap( documents, - async doc => { + doc => { if (logProgress) { logProgress(doc) } - try { - const newDoc = await this.createOrUpdate(doc, createOrUpdateOptions) - return newDoc - } catch (e) { - if (options.onCreateOrUpdateError) { - return options.onCreateOrUpdateError(e, doc) - } else { - throw e - } - } + return this.createOrUpdate(doc, createOrUpdateOptions) }, concurrency ) @@ -173091,21207 +168238,22562 @@ Document.duplicateHandlingStrategies = { } } -module.exports = Document +module.exports = Document + + +/***/ }), +/* 1148 */ +/***/ (function(module, exports, __webpack_require__) { + +var arrayMap = __webpack_require__(1149), + baseClone = __webpack_require__(1150), + baseUnset = __webpack_require__(1257), + castPath = __webpack_require__(1258), + copyObject = __webpack_require__(1200), + customOmitClone = __webpack_require__(1271), + flatRest = __webpack_require__(1273), + getAllKeysIn = __webpack_require__(1237); + +/** Used to compose bitmasks for cloning. */ +var CLONE_DEEP_FLAG = 1, + CLONE_FLAT_FLAG = 2, + CLONE_SYMBOLS_FLAG = 4; + +/** + * The opposite of `_.pick`; this method creates an object composed of the + * own and inherited enumerable property paths of `object` that are not omitted. + * + * **Note:** This method is considerably slower than `_.pick`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to omit. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omit(object, ['a', 'c']); + * // => { 'b': '2' } + */ +var omit = flatRest(function(object, paths) { + var result = {}; + if (object == null) { + return result; + } + var isDeep = false; + paths = arrayMap(paths, function(path) { + path = castPath(path, object); + isDeep || (isDeep = path.length > 1); + return path; + }); + copyObject(object, getAllKeysIn(object), result); + if (isDeep) { + result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone); + } + var length = paths.length; + while (length--) { + baseUnset(result, paths[length]); + } + return result; +}); + +module.exports = omit; + + +/***/ }), +/* 1149 */ +/***/ (function(module, exports) { + +/** + * A specialized version of `_.map` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + */ +function arrayMap(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length, + result = Array(length); + + while (++index < length) { + result[index] = iteratee(array[index], index, array); + } + return result; +} + +module.exports = arrayMap; + + +/***/ }), +/* 1150 */ +/***/ (function(module, exports, __webpack_require__) { + +var Stack = __webpack_require__(1151), + arrayEach = __webpack_require__(1195), + assignValue = __webpack_require__(1196), + baseAssign = __webpack_require__(1199), + baseAssignIn = __webpack_require__(1221), + cloneBuffer = __webpack_require__(1225), + copyArray = __webpack_require__(1226), + copySymbols = __webpack_require__(1227), + copySymbolsIn = __webpack_require__(1231), + getAllKeys = __webpack_require__(1235), + getAllKeysIn = __webpack_require__(1237), + getTag = __webpack_require__(1238), + initCloneArray = __webpack_require__(1243), + initCloneByTag = __webpack_require__(1244), + initCloneObject = __webpack_require__(1251), + isArray = __webpack_require__(1207), + isBuffer = __webpack_require__(1208), + isMap = __webpack_require__(1253), + isObject = __webpack_require__(1175), + isSet = __webpack_require__(1255), + keys = __webpack_require__(1201); + +/** Used to compose bitmasks for cloning. */ +var CLONE_DEEP_FLAG = 1, + CLONE_FLAT_FLAG = 2, + CLONE_SYMBOLS_FLAG = 4; + +/** `Object#toString` result references. */ +var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + errorTag = '[object Error]', + funcTag = '[object Function]', + genTag = '[object GeneratorFunction]', + mapTag = '[object Map]', + numberTag = '[object Number]', + objectTag = '[object Object]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]', + weakMapTag = '[object WeakMap]'; + +var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; + +/** Used to identify `toStringTag` values supported by `_.clone`. */ +var cloneableTags = {}; +cloneableTags[argsTag] = cloneableTags[arrayTag] = +cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = +cloneableTags[boolTag] = cloneableTags[dateTag] = +cloneableTags[float32Tag] = cloneableTags[float64Tag] = +cloneableTags[int8Tag] = cloneableTags[int16Tag] = +cloneableTags[int32Tag] = cloneableTags[mapTag] = +cloneableTags[numberTag] = cloneableTags[objectTag] = +cloneableTags[regexpTag] = cloneableTags[setTag] = +cloneableTags[stringTag] = cloneableTags[symbolTag] = +cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = +cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; +cloneableTags[errorTag] = cloneableTags[funcTag] = +cloneableTags[weakMapTag] = false; + +/** + * The base implementation of `_.clone` and `_.cloneDeep` which tracks + * traversed objects. + * + * @private + * @param {*} value The value to clone. + * @param {boolean} bitmask The bitmask flags. + * 1 - Deep clone + * 2 - Flatten inherited properties + * 4 - Clone symbols + * @param {Function} [customizer] The function to customize cloning. + * @param {string} [key] The key of `value`. + * @param {Object} [object] The parent object of `value`. + * @param {Object} [stack] Tracks traversed objects and their clone counterparts. + * @returns {*} Returns the cloned value. + */ +function baseClone(value, bitmask, customizer, key, object, stack) { + var result, + isDeep = bitmask & CLONE_DEEP_FLAG, + isFlat = bitmask & CLONE_FLAT_FLAG, + isFull = bitmask & CLONE_SYMBOLS_FLAG; + + if (customizer) { + result = object ? customizer(value, key, object, stack) : customizer(value); + } + if (result !== undefined) { + return result; + } + if (!isObject(value)) { + return value; + } + var isArr = isArray(value); + if (isArr) { + result = initCloneArray(value); + if (!isDeep) { + return copyArray(value, result); + } + } else { + var tag = getTag(value), + isFunc = tag == funcTag || tag == genTag; + + if (isBuffer(value)) { + return cloneBuffer(value, isDeep); + } + if (tag == objectTag || tag == argsTag || (isFunc && !object)) { + result = (isFlat || isFunc) ? {} : initCloneObject(value); + if (!isDeep) { + return isFlat + ? copySymbolsIn(value, baseAssignIn(result, value)) + : copySymbols(value, baseAssign(result, value)); + } + } else { + if (!cloneableTags[tag]) { + return object ? value : {}; + } + result = initCloneByTag(value, tag, isDeep); + } + } + // Check for circular references and return its corresponding clone. + stack || (stack = new Stack); + var stacked = stack.get(value); + if (stacked) { + return stacked; + } + stack.set(value, result); + + if (isSet(value)) { + value.forEach(function(subValue) { + result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack)); + }); + } else if (isMap(value)) { + value.forEach(function(subValue, key) { + result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + } + + var keysFunc = isFull + ? (isFlat ? getAllKeysIn : getAllKeys) + : (isFlat ? keysIn : keys); + + var props = isArr ? undefined : keysFunc(value); + arrayEach(props || value, function(subValue, key) { + if (props) { + key = subValue; + subValue = value[key]; + } + // Recursively populate clone (susceptible to call stack limits). + assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack)); + }); + return result; +} + +module.exports = baseClone; + + +/***/ }), +/* 1151 */ +/***/ (function(module, exports, __webpack_require__) { + +var ListCache = __webpack_require__(1152), + stackClear = __webpack_require__(1160), + stackDelete = __webpack_require__(1161), + stackGet = __webpack_require__(1162), + stackHas = __webpack_require__(1163), + stackSet = __webpack_require__(1164); + +/** + * Creates a stack cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ +function Stack(entries) { + var data = this.__data__ = new ListCache(entries); + this.size = data.size; +} + +// Add methods to `Stack`. +Stack.prototype.clear = stackClear; +Stack.prototype['delete'] = stackDelete; +Stack.prototype.get = stackGet; +Stack.prototype.has = stackHas; +Stack.prototype.set = stackSet; + +module.exports = Stack; + + +/***/ }), +/* 1152 */ +/***/ (function(module, exports, __webpack_require__) { + +var listCacheClear = __webpack_require__(1153), + listCacheDelete = __webpack_require__(1154), + listCacheGet = __webpack_require__(1157), + listCacheHas = __webpack_require__(1158), + listCacheSet = __webpack_require__(1159); + +/** + * Creates an list cache object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ +function ListCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; + + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } +} + +// Add methods to `ListCache`. +ListCache.prototype.clear = listCacheClear; +ListCache.prototype['delete'] = listCacheDelete; +ListCache.prototype.get = listCacheGet; +ListCache.prototype.has = listCacheHas; +ListCache.prototype.set = listCacheSet; + +module.exports = ListCache; + + +/***/ }), +/* 1153 */ +/***/ (function(module, exports) { + +/** + * Removes all key-value entries from the list cache. + * + * @private + * @name clear + * @memberOf ListCache + */ +function listCacheClear() { + this.__data__ = []; + this.size = 0; +} + +module.exports = listCacheClear; + + +/***/ }), +/* 1154 */ +/***/ (function(module, exports, __webpack_require__) { + +var assocIndexOf = __webpack_require__(1155); + +/** Used for built-in method references. */ +var arrayProto = Array.prototype; + +/** Built-in value references. */ +var splice = arrayProto.splice; + +/** + * Removes `key` and its value from the list cache. + * + * @private + * @name delete + * @memberOf ListCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ +function listCacheDelete(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + return false; + } + var lastIndex = data.length - 1; + if (index == lastIndex) { + data.pop(); + } else { + splice.call(data, index, 1); + } + --this.size; + return true; +} + +module.exports = listCacheDelete; + + +/***/ }), +/* 1155 */ +/***/ (function(module, exports, __webpack_require__) { + +var eq = __webpack_require__(1156); + +/** + * Gets the index at which the `key` is found in `array` of key-value pairs. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} key The key to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + */ +function assocIndexOf(array, key) { + var length = array.length; + while (length--) { + if (eq(array[length][0], key)) { + return length; + } + } + return -1; +} + +module.exports = assocIndexOf; + + +/***/ }), +/* 1156 */ +/***/ (function(module, exports) { + +/** + * Performs a + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * comparison between two values to determine if they are equivalent. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'a': 1 }; + * var other = { 'a': 1 }; + * + * _.eq(object, object); + * // => true + * + * _.eq(object, other); + * // => false + * + * _.eq('a', 'a'); + * // => true + * + * _.eq('a', Object('a')); + * // => false + * + * _.eq(NaN, NaN); + * // => true + */ +function eq(value, other) { + return value === other || (value !== value && other !== other); +} + +module.exports = eq; + + +/***/ }), +/* 1157 */ +/***/ (function(module, exports, __webpack_require__) { + +var assocIndexOf = __webpack_require__(1155); + +/** + * Gets the list cache value for `key`. + * + * @private + * @name get + * @memberOf ListCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ +function listCacheGet(key) { + var data = this.__data__, + index = assocIndexOf(data, key); + + return index < 0 ? undefined : data[index][1]; +} + +module.exports = listCacheGet; + + +/***/ }), +/* 1158 */ +/***/ (function(module, exports, __webpack_require__) { + +var assocIndexOf = __webpack_require__(1155); + +/** + * Checks if a list cache value for `key` exists. + * + * @private + * @name has + * @memberOf ListCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ +function listCacheHas(key) { + return assocIndexOf(this.__data__, key) > -1; +} + +module.exports = listCacheHas; + + +/***/ }), +/* 1159 */ +/***/ (function(module, exports, __webpack_require__) { + +var assocIndexOf = __webpack_require__(1155); + +/** + * Sets the list cache `key` to `value`. + * + * @private + * @name set + * @memberOf ListCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the list cache instance. + */ +function listCacheSet(key, value) { + var data = this.__data__, + index = assocIndexOf(data, key); + + if (index < 0) { + ++this.size; + data.push([key, value]); + } else { + data[index][1] = value; + } + return this; +} + +module.exports = listCacheSet; + + +/***/ }), +/* 1160 */ +/***/ (function(module, exports, __webpack_require__) { + +var ListCache = __webpack_require__(1152); + +/** + * Removes all key-value entries from the stack. + * + * @private + * @name clear + * @memberOf Stack + */ +function stackClear() { + this.__data__ = new ListCache; + this.size = 0; +} + +module.exports = stackClear; + + +/***/ }), +/* 1161 */ +/***/ (function(module, exports) { + +/** + * Removes `key` and its value from the stack. + * + * @private + * @name delete + * @memberOf Stack + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ +function stackDelete(key) { + var data = this.__data__, + result = data['delete'](key); + + this.size = data.size; + return result; +} + +module.exports = stackDelete; + + +/***/ }), +/* 1162 */ +/***/ (function(module, exports) { + +/** + * Gets the stack value for `key`. + * + * @private + * @name get + * @memberOf Stack + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ +function stackGet(key) { + return this.__data__.get(key); +} + +module.exports = stackGet; + + +/***/ }), +/* 1163 */ +/***/ (function(module, exports) { + +/** + * Checks if a stack value for `key` exists. + * + * @private + * @name has + * @memberOf Stack + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ +function stackHas(key) { + return this.__data__.has(key); +} + +module.exports = stackHas; + + +/***/ }), +/* 1164 */ +/***/ (function(module, exports, __webpack_require__) { + +var ListCache = __webpack_require__(1152), + Map = __webpack_require__(1165), + MapCache = __webpack_require__(1180); + +/** Used as the size to enable large array optimizations. */ +var LARGE_ARRAY_SIZE = 200; + +/** + * Sets the stack `key` to `value`. + * + * @private + * @name set + * @memberOf Stack + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the stack cache instance. + */ +function stackSet(key, value) { + var data = this.__data__; + if (data instanceof ListCache) { + var pairs = data.__data__; + if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) { + pairs.push([key, value]); + this.size = ++data.size; + return this; + } + data = this.__data__ = new MapCache(pairs); + } + data.set(key, value); + this.size = data.size; + return this; +} + +module.exports = stackSet; + + +/***/ }), +/* 1165 */ +/***/ (function(module, exports, __webpack_require__) { + +var getNative = __webpack_require__(1166), + root = __webpack_require__(1171); + +/* Built-in method references that are verified to be native. */ +var Map = getNative(root, 'Map'); + +module.exports = Map; + + +/***/ }), +/* 1166 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseIsNative = __webpack_require__(1167), + getValue = __webpack_require__(1179); + +/** + * Gets the native function at `key` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the method to get. + * @returns {*} Returns the function if it's native, else `undefined`. + */ +function getNative(object, key) { + var value = getValue(object, key); + return baseIsNative(value) ? value : undefined; +} + +module.exports = getNative; + + +/***/ }), +/* 1167 */ +/***/ (function(module, exports, __webpack_require__) { + +var isFunction = __webpack_require__(1168), + isMasked = __webpack_require__(1176), + isObject = __webpack_require__(1175), + toSource = __webpack_require__(1178); + +/** + * Used to match `RegExp` + * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns). + */ +var reRegExpChar = /[\\^$.*+?()[\]{}|]/g; + +/** Used to detect host constructors (Safari). */ +var reIsHostCtor = /^\[object .+?Constructor\]$/; + +/** Used for built-in method references. */ +var funcProto = Function.prototype, + objectProto = Object.prototype; + +/** Used to resolve the decompiled source of functions. */ +var funcToString = funcProto.toString; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** Used to detect if a method is native. */ +var reIsNative = RegExp('^' + + funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&') + .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$' +); + +/** + * The base implementation of `_.isNative` without bad shim checks. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a native function, + * else `false`. + */ +function baseIsNative(value) { + if (!isObject(value) || isMasked(value)) { + return false; + } + var pattern = isFunction(value) ? reIsNative : reIsHostCtor; + return pattern.test(toSource(value)); +} + +module.exports = baseIsNative; /***/ }), -/* 1180 */ +/* 1168 */ /***/ (function(module, exports, __webpack_require__) { -var baseIteratee = __webpack_require__(413), - negate = __webpack_require__(1181), - pickBy = __webpack_require__(655); +var baseGetTag = __webpack_require__(1169), + isObject = __webpack_require__(1175); + +/** `Object#toString` result references. */ +var asyncTag = '[object AsyncFunction]', + funcTag = '[object Function]', + genTag = '[object GeneratorFunction]', + proxyTag = '[object Proxy]'; /** - * The opposite of `_.pickBy`; this method creates an object composed of - * the own and inherited enumerable string keyed properties of `object` that - * `predicate` doesn't return truthy for. The predicate is invoked with two - * arguments: (value, key). + * Checks if `value` is classified as a `Function` object. * * @static * @memberOf _ - * @since 4.0.0 - * @category Object - * @param {Object} object The source object. - * @param {Function} [predicate=_.identity] The function invoked per property. - * @returns {Object} Returns the new object. + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a function, else `false`. * @example * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * _.isFunction(_); + * // => true * - * _.omitBy(object, _.isNumber); - * // => { 'b': '2' } + * _.isFunction(/abc/); + * // => false */ -function omitBy(object, predicate) { - return pickBy(object, negate(baseIteratee(predicate))); +function isFunction(value) { + if (!isObject(value)) { + return false; + } + // The use of `Object#toString` avoids issues with the `typeof` operator + // in Safari 9 which returns 'object' for typed arrays and other constructors. + var tag = baseGetTag(value); + return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; } -module.exports = omitBy; +module.exports = isFunction; /***/ }), -/* 1181 */ -/***/ (function(module, exports) { +/* 1169 */ +/***/ (function(module, exports, __webpack_require__) { -/** Error message constants. */ -var FUNC_ERROR_TEXT = 'Expected a function'; +var Symbol = __webpack_require__(1170), + getRawTag = __webpack_require__(1173), + objectToString = __webpack_require__(1174); + +/** `Object#toString` result references. */ +var nullTag = '[object Null]', + undefinedTag = '[object Undefined]'; + +/** Built-in value references. */ +var symToStringTag = Symbol ? Symbol.toStringTag : undefined; /** - * Creates a function that negates the result of the predicate `func`. The - * `func` predicate is invoked with the `this` binding and arguments of the - * created function. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Function - * @param {Function} predicate The predicate to negate. - * @returns {Function} Returns the new negated function. - * @example - * - * function isEven(n) { - * return n % 2 == 0; - * } + * The base implementation of `getTag` without fallbacks for buggy environments. * - * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); - * // => [1, 3, 5] + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. */ -function negate(predicate) { - if (typeof predicate != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); +function baseGetTag(value) { + if (value == null) { + return value === undefined ? undefinedTag : nullTag; } - return function() { - var args = arguments; - switch (args.length) { - case 0: return !predicate.call(this); - case 1: return !predicate.call(this, args[0]); - case 2: return !predicate.call(this, args[0], args[1]); - case 3: return !predicate.call(this, args[0], args[1], args[2]); - } - return !predicate.apply(this, args); - }; + return (symToStringTag && symToStringTag in Object(value)) + ? getRawTag(value) + : objectToString(value); } -module.exports = negate; +module.exports = baseGetTag; /***/ }), -/* 1182 */ +/* 1170 */ +/***/ (function(module, exports, __webpack_require__) { + +var root = __webpack_require__(1171); + +/** Built-in value references. */ +var Symbol = root.Symbol; + +module.exports = Symbol; + + +/***/ }), +/* 1171 */ +/***/ (function(module, exports, __webpack_require__) { + +var freeGlobal = __webpack_require__(1172); + +/** Detect free variable `self`. */ +var freeSelf = typeof self == 'object' && self && self.Object === Object && self; + +/** Used as a reference to the global object. */ +var root = freeGlobal || freeSelf || Function('return this')(); + +module.exports = root; + + +/***/ }), +/* 1172 */ +/***/ (function(module, exports) { + +/** Detect free variable `global` from Node.js. */ +var freeGlobal = typeof global == 'object' && global && global.Object === Object && global; + +module.exports = freeGlobal; + + +/***/ }), +/* 1173 */ /***/ (function(module, exports, __webpack_require__) { -var baseFlatten = __webpack_require__(559), - map = __webpack_require__(1183); +var Symbol = __webpack_require__(1170); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; /** - * Creates a flattened array of values by running each element in `collection` - * thru `iteratee` and flattening the mapped results. The iteratee is invoked - * with three arguments: (value, index|key, collection). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Array} Returns the new flattened array. - * @example - * - * function duplicate(n) { - * return [n, n]; - * } + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ +var nativeObjectToString = objectProto.toString; + +/** Built-in value references. */ +var symToStringTag = Symbol ? Symbol.toStringTag : undefined; + +/** + * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values. * - * _.flatMap([1, 2], duplicate); - * // => [1, 1, 2, 2] + * @private + * @param {*} value The value to query. + * @returns {string} Returns the raw `toStringTag`. */ -function flatMap(collection, iteratee) { - return baseFlatten(map(collection, iteratee), 1); +function getRawTag(value) { + var isOwn = hasOwnProperty.call(value, symToStringTag), + tag = value[symToStringTag]; + + try { + value[symToStringTag] = undefined; + var unmasked = true; + } catch (e) {} + + var result = nativeObjectToString.call(value); + if (unmasked) { + if (isOwn) { + value[symToStringTag] = tag; + } else { + delete value[symToStringTag]; + } + } + return result; } -module.exports = flatMap; +module.exports = getRawTag; /***/ }), -/* 1183 */ -/***/ (function(module, exports, __webpack_require__) { +/* 1174 */ +/***/ (function(module, exports) { -var arrayMap = __webpack_require__(410), - baseIteratee = __webpack_require__(413), - baseMap = __webpack_require__(738), - isArray = __webpack_require__(75); +/** Used for built-in method references. */ +var objectProto = Object.prototype; /** - * Creates an array of values by running each element in `collection` thru - * `iteratee`. The iteratee is invoked with three arguments: - * (value, index|key, collection). - * - * Many lodash methods are guarded to work as iteratees for methods like - * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. + * Used to resolve the + * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring) + * of values. + */ +var nativeObjectToString = objectProto.toString; + +/** + * Converts `value` to a string using `Object.prototype.toString`. * - * The guarded methods are: - * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, - * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, - * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, - * `template`, `trim`, `trimEnd`, `trimStart`, and `words` + * @private + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + */ +function objectToString(value) { + return nativeObjectToString.call(value); +} + +module.exports = objectToString; + + +/***/ }), +/* 1175 */ +/***/ (function(module, exports) { + +/** + * Checks if `value` is the + * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types) + * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`) * * @static * @memberOf _ * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [iteratee=_.identity] The function invoked per iteration. - * @returns {Array} Returns the new mapped array. + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an object, else `false`. * @example * - * function square(n) { - * return n * n; - * } - * - * _.map([4, 8], square); - * // => [16, 64] + * _.isObject({}); + * // => true * - * _.map({ 'a': 4, 'b': 8 }, square); - * // => [16, 64] (iteration order is not guaranteed) + * _.isObject([1, 2, 3]); + * // => true * - * var users = [ - * { 'user': 'barney' }, - * { 'user': 'fred' } - * ]; + * _.isObject(_.noop); + * // => true * - * // The `_.property` iteratee shorthand. - * _.map(users, 'user'); - * // => ['barney', 'fred'] + * _.isObject(null); + * // => false */ -function map(collection, iteratee) { - var func = isArray(collection) ? arrayMap : baseMap; - return func(collection, baseIteratee(iteratee, 3)); +function isObject(value) { + var type = typeof value; + return value != null && (type == 'object' || type == 'function'); } -module.exports = map; +module.exports = isObject; /***/ }), -/* 1184 */ +/* 1176 */ /***/ (function(module, exports, __webpack_require__) { -const PromisePool = __webpack_require__(1185) +var coreJsData = __webpack_require__(1177); + +/** Used to detect methods masquerading as native. */ +var maskSrcKey = (function() { + var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || ''); + return uid ? ('Symbol(src)_1.' + uid) : ''; +}()); /** - * Like a map, executed in parallel via a promise pool + * Checks if `func` has its source masked. * - * @param {Array} arr Items to process - * @param {Function} fn Promise creator (will be passed each item) - * @param {Number} concurrency How many promise can be in flight at the same time - * @return {Promise} Resolved with the results of the promise, not necessary in order + * @private + * @param {Function} func The function to check. + * @returns {boolean} Returns `true` if `func` is masked, else `false`. */ -const parallelMap = (iterable, fn, concurrencyArg) => { - const concurrency = concurrencyArg || 30 - const res = [] - const pool = new PromisePool(function*() { - for (let item of iterable) { - yield fn(item).then(x => res.push(x)) - } - }, concurrency) - return pool.start().then(() => res) +function isMasked(func) { + return !!maskSrcKey && (maskSrcKey in func); } -module.exports = { - parallelMap -} +module.exports = isMasked; /***/ }), -/* 1185 */ +/* 1177 */ /***/ (function(module, exports, __webpack_require__) { -var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;(function (root, factory) { - /* istanbul ignore next */ - 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 {} -})(this, function () { - 'use strict' +var root = __webpack_require__(1171); - var EventTarget = function () { - this._listeners = {} - } +/** Used to detect overreaching core-js shims. */ +var coreJsData = root['__core-js_shared__']; - EventTarget.prototype.addEventListener = function (type, listener) { - this._listeners[type] = this._listeners[type] || [] - if (this._listeners[type].indexOf(listener) < 0) { - this._listeners[type].push(listener) - } - } +module.exports = coreJsData; - EventTarget.prototype.removeEventListener = function (type, listener) { - if (this._listeners[type]) { - var p = this._listeners[type].indexOf(listener) - if (p >= 0) { - this._listeners[type].splice(p, 1) - } - } - } - EventTarget.prototype.dispatchEvent = function (evt) { - if (this._listeners[evt.type] && this._listeners[evt.type].length) { - var listeners = this._listeners[evt.type].slice() - for (var i = 0, l = listeners.length; i < l; ++i) { - listeners[i].call(this, evt) - } - } - } +/***/ }), +/* 1178 */ +/***/ (function(module, exports) { - var isGenerator = function (func) { - return (typeof func.constructor === 'function' && - func.constructor.name === 'GeneratorFunction') - } +/** Used for built-in method references. */ +var funcProto = Function.prototype; - var functionToIterator = function (func) { - return { - next: function () { - var promise = func() - return promise ? {value: promise} : {done: true} - } - } - } +/** Used to resolve the decompiled source of functions. */ +var funcToString = funcProto.toString; - var promiseToIterator = function (promise) { - var called = false - return { - next: function () { - if (called) { - return {done: true} - } - called = true - return {value: promise} - } - } +/** + * Converts `func` to its source code. + * + * @private + * @param {Function} func The function to convert. + * @returns {string} Returns the source code. + */ +function toSource(func) { + if (func != null) { + try { + return funcToString.call(func); + } catch (e) {} + try { + return (func + ''); + } catch (e) {} } + return ''; +} - var toIterator = function (obj, Promise) { - var type = typeof obj - if (type === 'object') { - if (typeof obj.next === 'function') { - return obj - } - /* istanbul ignore else */ - if (typeof obj.then === 'function') { - return promiseToIterator(obj) - } - } - if (type === 'function') { - return isGenerator(obj) ? obj() : functionToIterator(obj) - } - return promiseToIterator(Promise.resolve(obj)) - } +module.exports = toSource; - var PromisePoolEvent = function (target, type, data) { - this.target = target - this.type = type - this.data = data - } - var PromisePool = function (source, concurrency, options) { - EventTarget.call(this) - if (typeof concurrency !== 'number' || - Math.floor(concurrency) !== concurrency || - concurrency < 1) { - throw new Error('Invalid concurrency') - } - this._concurrency = concurrency - this._options = options || {} - this._options.promise = this._options.promise || Promise - this._iterator = toIterator(source, this._options.promise) - this._done = false - this._size = 0 - this._promise = null - this._callbacks = null - } - PromisePool.prototype = new EventTarget() - PromisePool.prototype.constructor = PromisePool +/***/ }), +/* 1179 */ +/***/ (function(module, exports) { - PromisePool.prototype.concurrency = function (value) { - if (typeof value !== 'undefined') { - this._concurrency = value - if (this.active()) { - this._proceed() - } - } - return this._concurrency - } +/** + * Gets the value at `key` of `object`. + * + * @private + * @param {Object} [object] The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ +function getValue(object, key) { + return object == null ? undefined : object[key]; +} - PromisePool.prototype.size = function () { - return this._size - } +module.exports = getValue; - PromisePool.prototype.active = function () { - return !!this._promise - } - PromisePool.prototype.promise = function () { - return this._promise - } +/***/ }), +/* 1180 */ +/***/ (function(module, exports, __webpack_require__) { - PromisePool.prototype.start = function () { - var that = this - var Promise = this._options.promise - this._promise = new Promise(function (resolve, reject) { - that._callbacks = { - reject: reject, - resolve: resolve - } - that._proceed() - }) - return this._promise - } +var mapCacheClear = __webpack_require__(1181), + mapCacheDelete = __webpack_require__(1189), + mapCacheGet = __webpack_require__(1192), + mapCacheHas = __webpack_require__(1193), + mapCacheSet = __webpack_require__(1194); - PromisePool.prototype._fireEvent = function (type, data) { - this.dispatchEvent(new PromisePoolEvent(this, type, data)) - } +/** + * Creates a map cache object to store key-value pairs. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ +function MapCache(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; - PromisePool.prototype._settle = function (error) { - if (error) { - this._callbacks.reject(error) - } else { - this._callbacks.resolve() - } - this._promise = null - this._callbacks = null + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); } +} - PromisePool.prototype._onPooledPromiseFulfilled = function (promise, result) { - this._size-- - if (this.active()) { - this._fireEvent('fulfilled', { - promise: promise, - result: result - }) - this._proceed() - } - } +// Add methods to `MapCache`. +MapCache.prototype.clear = mapCacheClear; +MapCache.prototype['delete'] = mapCacheDelete; +MapCache.prototype.get = mapCacheGet; +MapCache.prototype.has = mapCacheHas; +MapCache.prototype.set = mapCacheSet; - PromisePool.prototype._onPooledPromiseRejected = function (promise, error) { - this._size-- - if (this.active()) { - this._fireEvent('rejected', { - promise: promise, - error: error - }) - this._settle(error || new Error('Unknown error')) - } - } +module.exports = MapCache; - PromisePool.prototype._trackPromise = function (promise) { - var that = this - promise - .then(function (result) { - that._onPooledPromiseFulfilled(promise, result) - }, function (error) { - that._onPooledPromiseRejected(promise, error) - })['catch'](function (err) { - that._settle(new Error('Promise processing failed: ' + err)) - }) - } - PromisePool.prototype._proceed = function () { - if (!this._done) { - var result = { done: false } - while (this._size < this._concurrency && - !(result = this._iterator.next()).done) { - this._size++ - this._trackPromise(result.value) - } - this._done = (result === null || !!result.done) - } - if (this._done && this._size === 0) { - this._settle() - } - } +/***/ }), +/* 1181 */ +/***/ (function(module, exports, __webpack_require__) { - PromisePool.PromisePoolEvent = PromisePoolEvent - // Legacy API - PromisePool.PromisePool = PromisePool +var Hash = __webpack_require__(1182), + ListCache = __webpack_require__(1152), + Map = __webpack_require__(1165); - return PromisePool -}) +/** + * Removes all key-value entries from the map. + * + * @private + * @name clear + * @memberOf MapCache + */ +function mapCacheClear() { + this.size = 0; + this.__data__ = { + 'hash': new Hash, + 'map': new (Map || ListCache), + 'string': new Hash + }; +} + +module.exports = mapCacheClear; /***/ }), -/* 1186 */ +/* 1182 */ /***/ (function(module, exports, __webpack_require__) { -const get = __webpack_require__(370) -const flatten = __webpack_require__(558) +var hashClear = __webpack_require__(1183), + hashDelete = __webpack_require__(1185), + hashGet = __webpack_require__(1186), + hashHas = __webpack_require__(1187), + hashSet = __webpack_require__(1188); -const Contact = __webpack_require__(1187) -const Document = __webpack_require__(1179) +/** + * Creates a hash object. + * + * @private + * @constructor + * @param {Array} [entries] The key-value pairs to cache. + */ +function Hash(entries) { + var index = -1, + length = entries == null ? 0 : entries.length; -class AdministrativeProcedure extends Document { - /** - * Returns personal data for the contact - * - * @param {Contact} contact - A contact - * @param {Array} fields - The list of fields to retrieve - * @return {Object} - the personal data - **/ - static getPersonalData(contact, fields) { - const mapping = { - firstname: { - path: 'name.givenName' - }, - lastname: { - path: 'name.familyName' - }, - address: { - getter: Contact.getPrimaryAddress - }, - email: { - getter: Contact.getPrimaryEmail - }, - phone: { - getter: Contact.getPrimaryPhone - } - } - let personalData = {} - fields.forEach(field => { - const contactField = get(mapping, field, field) - let value - if (contactField.getter) { - value = contactField.getter(contact) - } else { - const path = get(contactField, 'path', field) - value = get(contact, path) - } + this.clear(); + while (++index < length) { + var entry = entries[index]; + this.set(entry[0], entry[1]); + } +} - if (value !== undefined) { - personalData[field] = value - } - }) +// Add methods to `Hash`. +Hash.prototype.clear = hashClear; +Hash.prototype['delete'] = hashDelete; +Hash.prototype.get = hashGet; +Hash.prototype.has = hashHas; +Hash.prototype.set = hashSet; - return personalData - } - /** - * Method to generate a query based on a few rules given by the template - * @param {Object} docRules - * @param {Object} docRules.rules - * @param {int} docRules.count - */ - static async getFilesByRules(docRules) { - const { rules, count } = docRules - const cozyRules = { - trashed: false, - type: 'file', - ...rules - } - // Create an index in order to query and sort - await this.cozyClient - .collection('io.cozy.files') - .createIndex(['metadata.datetime', 'metadata.qualification']) - // Use the index - const files = await this.cozyClient - .collection('io.cozy.files') - .find(cozyRules, { - indexedFields: ['metadata.datetime', 'metadata.qualification'], - sort: [ - { - 'metadata.datetime': 'desc' - }, - { - 'metadata.qualification': 'desc' - } - ], - limit: count ? count : 1 - }) +module.exports = Hash; - return files - } - /** - * Returns a io.cozy.procedures.administratives object - * - * @param {object} data - The data we need for this type of procedure - * @param {ProcedureTemplate} template - The procedure's template - * @return {AdministrativeProcedure} the administrative procedure - */ - static create(data, template) { - const { documentsData, personalData, procedureData } = data - const files = Object.keys(documentsData).map(identifier => { - return documentsData[identifier].files.map(file => { - // TODO Remove this check. it has to be done before - if (file) - return { - _id: file.id, - _type: 'io.cozy.files', - templateDocumentId: identifier - } - }) - }) - return { - personalData, - procedureData, - submissionDate: new Date(), - templateId: template.type, - templateVersion: template.version, - relationships: { - files: { - data: flatten(files) - } - } - } - } +/***/ }), +/* 1183 */ +/***/ (function(module, exports, __webpack_require__) { - /** - * Returns json that represents the administative procedure - * - * @param {AdministrativeProcedure} - * @return {string} - the json that represents this procedure - * - */ - static createJson(administrativeProcedure) { - return JSON.stringify(administrativeProcedure) - } -} +var nativeCreate = __webpack_require__(1184); -AdministrativeProcedure.doctype = 'io.cozy.procedures.administratives' +/** + * Removes all key-value entries from the hash. + * + * @private + * @name clear + * @memberOf Hash + */ +function hashClear() { + this.__data__ = nativeCreate ? nativeCreate(null) : {}; + this.size = 0; +} -module.exports = AdministrativeProcedure +module.exports = hashClear; /***/ }), -/* 1187 */ +/* 1184 */ /***/ (function(module, exports, __webpack_require__) { -const PropTypes = __webpack_require__(1188) -const get = __webpack_require__(370) +var getNative = __webpack_require__(1166); -const log = __webpack_require__(1195) -const Document = __webpack_require__(1179) +/* Built-in method references that are verified to be native. */ +var nativeCreate = getNative(Object, 'create'); -const getPrimaryOrFirst = property => obj => { - if (!obj[property] || obj[property].length === 0) return '' - return obj[property].find(property => property.primary) || obj[property][0] -} +module.exports = nativeCreate; -const logDeprecated = methodName => - log( - 'warn', - `${methodName} from cozy-doctypes contact is deprecated, use cozy-client/models/contacts/${methodName} instead` - ) + +/***/ }), +/* 1185 */ +/***/ (function(module, exports) { /** - * Class representing the contact model. - * @extends Document + * Removes `key` and its value from the hash. + * + * @private + * @name delete + * @memberOf Hash + * @param {Object} hash The hash to modify. + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. */ -class Contact extends Document { - /** - * Returns true if candidate is a contact - * - * @param {Object} candidate - * @return {boolean} - whether the candidate is a contact - */ - static isContact(candidate) { - return candidate._type === Contact.doctype - } +function hashDelete(key) { + var result = this.has(key) && delete this.__data__[key]; + this.size -= result ? 1 : 0; + return result; +} - /** - * Returns the initials of the contact. - * - * @param {Contact|string} contact - A contact or a string - * @return {string} - the contact's initials - */ - static getInitials(contact) { - logDeprecated('getInitials') - if (typeof contact === 'string') { - log( - 'warn', - 'Passing a string to Contact.getInitials will be deprecated soon.' - ) - return contact[0].toUpperCase() - } +module.exports = hashDelete; - if (contact.name) { - return ['givenName', 'familyName'] - .map(part => get(contact, ['name', part, 0], '')) - .join('') - .toUpperCase() - } - const email = Contact.getPrimaryEmail(contact) - if (email) { - return email[0].toUpperCase() - } +/***/ }), +/* 1186 */ +/***/ (function(module, exports, __webpack_require__) { - log('warn', 'Contact has no name and no email.') - return '' - } +var nativeCreate = __webpack_require__(1184); - /** - * Returns the contact's main email - * - * @param {Contact} contact - A contact - * @return {string} - The contact's main email - */ - // TODO: sadly we have different versions of contacts' doctype to handle... - // A migration tool on the stack side is needed here - static getPrimaryEmail(contact) { - logDeprecated('getPrimaryEmail') - return Array.isArray(contact.email) - ? getPrimaryOrFirst('email')(contact).address - : contact.email - } +/** Used to stand-in for `undefined` hash values. */ +var HASH_UNDEFINED = '__lodash_hash_undefined__'; - /** - * Returns the contact's main cozy - * - * @param {Contact} contact - A contact - * @return {string} - The contact's main cozy - */ - static getPrimaryCozy(contact) { - logDeprecated('getPrimaryCozy') - return Array.isArray(contact.cozy) - ? getPrimaryOrFirst('cozy')(contact).url - : contact.url - } +/** Used for built-in method references. */ +var objectProto = Object.prototype; - /** - * Returns the contact's main phone number - * - * @param {Contact} contact - A contact - * @return {string} - The contact's main phone number - */ - static getPrimaryPhone(contact) { - logDeprecated('getPrimaryPhone') - return getPrimaryOrFirst('phone')(contact).number - } +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; - /** - * Returns the contact's main address - * - * @param {Contact} contact - A contact - * @return {string} - The contact's main address - */ - static getPrimaryAddress(contact) { - logDeprecated('getPrimaryAddress') - return getPrimaryOrFirst('address')(contact).formattedAddress +/** + * Gets the hash value for `key`. + * + * @private + * @name get + * @memberOf Hash + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ +function hashGet(key) { + var data = this.__data__; + if (nativeCreate) { + var result = data[key]; + return result === HASH_UNDEFINED ? undefined : result; } + return hasOwnProperty.call(data, key) ? data[key] : undefined; +} - /** - * Returns the contact's fullname - * - * @param {Contact} contact - A contact - * @return {string} - The contact's fullname - */ - static getFullname(contact) { - logDeprecated('getFullname') - if (contact.fullname) { - return contact.fullname - } else if (contact.name) { - return [ - 'namePrefix', - 'givenName', - 'additionalName', - 'familyName', - 'nameSuffix' - ] - .map(part => contact.name[part]) - .filter(part => part !== undefined) - .join(' ') - .trim() - } +module.exports = hashGet; - return undefined - } - /** - * Returns a display name for the contact - * - * @param {Contact} contact - A contact - * @return {string} - the contact's display name - **/ - static getDisplayName(contact) { - logDeprecated('getDisplayName') - return Contact.getFullname(contact) || Contact.getPrimaryEmail(contact) - } -} +/***/ }), +/* 1187 */ +/***/ (function(module, exports, __webpack_require__) { -const ContactShape = PropTypes.shape({ - _id: PropTypes.string.isRequired, - _type: PropTypes.string.isRequired, - fullname: PropTypes.string, - name: PropTypes.shape({ - givenName: PropTypes.string, - familyName: PropTypes.string, - additionalName: PropTypes.string, - namePrefix: PropTypes.string, - nameSuffix: PropTypes.string - }), - birthday: PropTypes.string, - note: PropTypes.string, - email: PropTypes.arrayOf( - PropTypes.shape({ - address: PropTypes.string.isRequired, - label: PropTypes.string, - type: PropTypes.string, - primary: PropTypes.bool - }) - ), - address: PropTypes.arrayOf( - PropTypes.shape({ - street: PropTypes.string, - pobox: PropTypes.string, - city: PropTypes.string, - region: PropTypes.string, - postcode: PropTypes.string, - country: PropTypes.string, - type: PropTypes.string, - primary: PropTypes.bool, - label: PropTypes.string, - formattedAddress: PropTypes.string - }) - ), - phone: PropTypes.arrayOf( - PropTypes.shape({ - number: PropTypes.string.isRequired, - type: PropTypes.string, - label: PropTypes.string, - primary: PropTypes.bool - }) - ), - cozy: PropTypes.arrayOf( - PropTypes.shape({ - url: PropTypes.string.isRequired, - label: PropTypes.string, - primary: PropTypes.bool - }) - ), - company: PropTypes.string, - jobTitle: PropTypes.string, - trashed: PropTypes.bool, - me: PropTypes.bool, - relationships: PropTypes.shape({ - accounts: PropTypes.shape({ - data: PropTypes.arrayOf( - PropTypes.shape({ - _id: PropTypes.string.isRequired, - _type: PropTypes.string.isRequired - }) - ) - }), - groups: PropTypes.shape({ - data: PropTypes.arrayOf( - PropTypes.shape({ - _id: PropTypes.string.isRequired, - _type: PropTypes.string.isRequired - }) - ) - }) - }) -}) +var nativeCreate = __webpack_require__(1184); -Contact.doctype = 'io.cozy.contacts' -Contact.propType = ContactShape +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; -module.exports = Contact +/** + * Checks if a hash value for `key` exists. + * + * @private + * @name has + * @memberOf Hash + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ +function hashHas(key) { + var data = this.__data__; + return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key); +} + +module.exports = hashHas; /***/ }), /* 1188 */ /***/ (function(module, exports, __webpack_require__) { +var nativeCreate = __webpack_require__(1184); + +/** Used to stand-in for `undefined` hash values. */ +var HASH_UNDEFINED = '__lodash_hash_undefined__'; + /** - * Copyright (c) 2013-present, Facebook, Inc. + * Sets the hash `key` to `value`. * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. + * @private + * @name set + * @memberOf Hash + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the hash instance. */ +function hashSet(key, value) { + var data = this.__data__; + this.size += this.has(key) ? 0 : 1; + data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value; + return this; +} -if (true) { - var ReactIs = __webpack_require__(1189); - - // By explicitly using `prop-types` you are opting into new development behavior. - // http://fb.me/prop-types-in-prod - var throwOnDirectAccess = true; - module.exports = __webpack_require__(1191)(ReactIs.isElement, throwOnDirectAccess); -} else {} +module.exports = hashSet; /***/ }), /* 1189 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - +var getMapData = __webpack_require__(1190); -if (false) {} else { - module.exports = __webpack_require__(1190); +/** + * Removes `key` and its value from the map. + * + * @private + * @name delete + * @memberOf MapCache + * @param {string} key The key of the value to remove. + * @returns {boolean} Returns `true` if the entry was removed, else `false`. + */ +function mapCacheDelete(key) { + var result = getMapData(this, key)['delete'](key); + this.size -= result ? 1 : 0; + return result; } +module.exports = mapCacheDelete; + /***/ }), /* 1190 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; -/** @license React v16.13.1 - * react-is.development.js - * - * Copyright (c) Facebook, Inc. and its affiliates. +var isKeyable = __webpack_require__(1191); + +/** + * Gets the data for `map`. * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. + * @private + * @param {Object} map The map to query. + * @param {string} key The reference key. + * @returns {*} Returns the map data. */ +function getMapData(map, key) { + var data = map.__data__; + return isKeyable(key) + ? data[typeof key == 'string' ? 'string' : 'hash'] + : data.map; +} +module.exports = getMapData; +/***/ }), +/* 1191 */ +/***/ (function(module, exports) { - -if (true) { - (function() { -'use strict'; - -// The Symbol used to tag the ReactElement-like types. If there is no native Symbol -// nor polyfill, then a plain number is used for performance. -var hasSymbol = typeof Symbol === 'function' && Symbol.for; -var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7; -var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca; -var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb; -var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc; -var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2; -var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd; -var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary -// (unstable) APIs that have been removed. Can we remove the symbols? - -var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf; -var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf; -var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0; -var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1; -var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8; -var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3; -var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4; -var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9; -var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5; -var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6; -var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7; - -function isValidElementType(type) { - return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill. - type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE); +/** + * Checks if `value` is suitable for use as unique object key. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is suitable, else `false`. + */ +function isKeyable(value) { + var type = typeof value; + return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean') + ? (value !== '__proto__') + : (value === null); } -function typeOf(object) { - if (typeof object === 'object' && object !== null) { - var $$typeof = object.$$typeof; - - switch ($$typeof) { - case REACT_ELEMENT_TYPE: - var type = object.type; - - switch (type) { - case REACT_ASYNC_MODE_TYPE: - case REACT_CONCURRENT_MODE_TYPE: - case REACT_FRAGMENT_TYPE: - case REACT_PROFILER_TYPE: - case REACT_STRICT_MODE_TYPE: - case REACT_SUSPENSE_TYPE: - return type; - - default: - var $$typeofType = type && type.$$typeof; +module.exports = isKeyable; - switch ($$typeofType) { - case REACT_CONTEXT_TYPE: - case REACT_FORWARD_REF_TYPE: - case REACT_LAZY_TYPE: - case REACT_MEMO_TYPE: - case REACT_PROVIDER_TYPE: - return $$typeofType; - default: - return $$typeof; - } +/***/ }), +/* 1192 */ +/***/ (function(module, exports, __webpack_require__) { - } +var getMapData = __webpack_require__(1190); - case REACT_PORTAL_TYPE: - return $$typeof; - } - } +/** + * Gets the map value for `key`. + * + * @private + * @name get + * @memberOf MapCache + * @param {string} key The key of the value to get. + * @returns {*} Returns the entry value. + */ +function mapCacheGet(key) { + return getMapData(this, key).get(key); +} - return undefined; -} // AsyncMode is deprecated along with isAsyncMode +module.exports = mapCacheGet; -var AsyncMode = REACT_ASYNC_MODE_TYPE; -var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE; -var ContextConsumer = REACT_CONTEXT_TYPE; -var ContextProvider = REACT_PROVIDER_TYPE; -var Element = REACT_ELEMENT_TYPE; -var ForwardRef = REACT_FORWARD_REF_TYPE; -var Fragment = REACT_FRAGMENT_TYPE; -var Lazy = REACT_LAZY_TYPE; -var Memo = REACT_MEMO_TYPE; -var Portal = REACT_PORTAL_TYPE; -var Profiler = REACT_PROFILER_TYPE; -var StrictMode = REACT_STRICT_MODE_TYPE; -var Suspense = REACT_SUSPENSE_TYPE; -var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated -function isAsyncMode(object) { - { - if (!hasWarnedAboutDeprecatedIsAsyncMode) { - hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint +/***/ }), +/* 1193 */ +/***/ (function(module, exports, __webpack_require__) { - console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.'); - } - } +var getMapData = __webpack_require__(1190); - return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE; -} -function isConcurrentMode(object) { - return typeOf(object) === REACT_CONCURRENT_MODE_TYPE; -} -function isContextConsumer(object) { - return typeOf(object) === REACT_CONTEXT_TYPE; -} -function isContextProvider(object) { - return typeOf(object) === REACT_PROVIDER_TYPE; -} -function isElement(object) { - return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; -} -function isForwardRef(object) { - return typeOf(object) === REACT_FORWARD_REF_TYPE; -} -function isFragment(object) { - return typeOf(object) === REACT_FRAGMENT_TYPE; -} -function isLazy(object) { - return typeOf(object) === REACT_LAZY_TYPE; -} -function isMemo(object) { - return typeOf(object) === REACT_MEMO_TYPE; -} -function isPortal(object) { - return typeOf(object) === REACT_PORTAL_TYPE; -} -function isProfiler(object) { - return typeOf(object) === REACT_PROFILER_TYPE; -} -function isStrictMode(object) { - return typeOf(object) === REACT_STRICT_MODE_TYPE; -} -function isSuspense(object) { - return typeOf(object) === REACT_SUSPENSE_TYPE; +/** + * Checks if a map value for `key` exists. + * + * @private + * @name has + * @memberOf MapCache + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ +function mapCacheHas(key) { + return getMapData(this, key).has(key); } -exports.AsyncMode = AsyncMode; -exports.ConcurrentMode = ConcurrentMode; -exports.ContextConsumer = ContextConsumer; -exports.ContextProvider = ContextProvider; -exports.Element = Element; -exports.ForwardRef = ForwardRef; -exports.Fragment = Fragment; -exports.Lazy = Lazy; -exports.Memo = Memo; -exports.Portal = Portal; -exports.Profiler = Profiler; -exports.StrictMode = StrictMode; -exports.Suspense = Suspense; -exports.isAsyncMode = isAsyncMode; -exports.isConcurrentMode = isConcurrentMode; -exports.isContextConsumer = isContextConsumer; -exports.isContextProvider = isContextProvider; -exports.isElement = isElement; -exports.isForwardRef = isForwardRef; -exports.isFragment = isFragment; -exports.isLazy = isLazy; -exports.isMemo = isMemo; -exports.isPortal = isPortal; -exports.isProfiler = isProfiler; -exports.isStrictMode = isStrictMode; -exports.isSuspense = isSuspense; -exports.isValidElementType = isValidElementType; -exports.typeOf = typeOf; - })(); -} +module.exports = mapCacheHas; /***/ }), -/* 1191 */ +/* 1194 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var getMapData = __webpack_require__(1190); + /** - * Copyright (c) 2013-present, Facebook, Inc. + * Sets the map `key` to `value`. * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. + * @private + * @name set + * @memberOf MapCache + * @param {string} key The key of the value to set. + * @param {*} value The value to set. + * @returns {Object} Returns the map cache instance. */ +function mapCacheSet(key, value) { + var data = getMapData(this, key), + size = data.size; + data.set(key, value); + this.size += data.size == size ? 0 : 1; + return this; +} +module.exports = mapCacheSet; -var ReactIs = __webpack_require__(1189); -var assign = __webpack_require__(1192); -var ReactPropTypesSecret = __webpack_require__(1193); -var checkPropTypes = __webpack_require__(1194); +/***/ }), +/* 1195 */ +/***/ (function(module, exports) { -var has = Function.call.bind(Object.prototype.hasOwnProperty); -var printWarning = function() {}; +/** + * A specialized version of `_.forEach` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns `array`. + */ +function arrayEach(array, iteratee) { + var index = -1, + length = array == null ? 0 : array.length; -if (true) { - printWarning = function(text) { - var message = 'Warning: ' + text; - if (typeof console !== 'undefined') { - console.error(message); + while (++index < length) { + if (iteratee(array[index], index, array) === false) { + break; } - try { - // --- Welcome to debugging React --- - // This error was thrown as a convenience so that you can use this stack - // to find the callsite that caused this warning to fire. - throw new Error(message); - } catch (x) {} - }; -} - -function emptyFunctionThatReturnsNull() { - return null; + } + return array; } -module.exports = function(isValidElement, throwOnDirectAccess) { - /* global Symbol */ - var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator; - var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec. +module.exports = arrayEach; - /** - * Returns the iterator method function contained on the iterable object. - * - * Be sure to invoke the function with the iterable as context: - * - * var iteratorFn = getIteratorFn(myIterable); - * if (iteratorFn) { - * var iterator = iteratorFn.call(myIterable); - * ... - * } - * - * @param {?object} maybeIterable - * @return {?function} - */ - function getIteratorFn(maybeIterable) { - var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]); - if (typeof iteratorFn === 'function') { - return iteratorFn; - } - } - /** - * Collection of methods that allow declaration and validation of props that are - * supplied to React components. Example usage: - * - * var Props = require('ReactPropTypes'); - * var MyArticle = React.createClass({ - * propTypes: { - * // An optional string prop named "description". - * description: Props.string, - * - * // A required enum prop named "category". - * category: Props.oneOf(['News','Photos']).isRequired, - * - * // A prop named "dialog" that requires an instance of Dialog. - * dialog: Props.instanceOf(Dialog).isRequired - * }, - * render: function() { ... } - * }); - * - * A more formal specification of how these methods are used: - * - * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...) - * decl := ReactPropTypes.{type}(.isRequired)? - * - * Each and every declaration produces a function with the same signature. This - * allows the creation of custom validation functions. For example: - * - * var MyLink = React.createClass({ - * propTypes: { - * // An optional string or URI prop named "href". - * href: function(props, propName, componentName) { - * var propValue = props[propName]; - * if (propValue != null && typeof propValue !== 'string' && - * !(propValue instanceof URI)) { - * return new Error( - * 'Expected a string or an URI for ' + propName + ' in ' + - * componentName - * ); - * } - * } - * }, - * render: function() {...} - * }); - * - * @internal - */ +/***/ }), +/* 1196 */ +/***/ (function(module, exports, __webpack_require__) { - var ANONYMOUS = '<<anonymous>>'; +var baseAssignValue = __webpack_require__(1197), + eq = __webpack_require__(1156); - // Important! - // Keep this list in sync with production version in `./factoryWithThrowingShims.js`. - var ReactPropTypes = { - array: createPrimitiveTypeChecker('array'), - bool: createPrimitiveTypeChecker('boolean'), - func: createPrimitiveTypeChecker('function'), - number: createPrimitiveTypeChecker('number'), - object: createPrimitiveTypeChecker('object'), - string: createPrimitiveTypeChecker('string'), - symbol: createPrimitiveTypeChecker('symbol'), +/** Used for built-in method references. */ +var objectProto = Object.prototype; - any: createAnyTypeChecker(), - arrayOf: createArrayOfTypeChecker, - element: createElementTypeChecker(), - elementType: createElementTypeTypeChecker(), - instanceOf: createInstanceTypeChecker, - node: createNodeChecker(), - objectOf: createObjectOfTypeChecker, - oneOf: createEnumTypeChecker, - oneOfType: createUnionTypeChecker, - shape: createShapeTypeChecker, - exact: createStrictShapeTypeChecker, - }; +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; - /** - * inlined Object.is polyfill to avoid requiring consumers ship their own - * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is - */ - /*eslint-disable no-self-compare*/ - function is(x, y) { - // SameValue algorithm - if (x === y) { - // Steps 1-5, 7-10 - // Steps 6.b-6.e: +0 != -0 - return x !== 0 || 1 / x === 1 / y; - } else { - // Step 6.a: NaN == NaN - return x !== x && y !== y; - } +/** + * Assigns `value` to `key` of `object` if the existing value is not equivalent + * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * for equality comparisons. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ +function assignValue(object, key, value) { + var objValue = object[key]; + if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); } - /*eslint-enable no-self-compare*/ +} - /** - * We use an Error-like object for backward compatibility as people may call - * PropTypes directly and inspect their output. However, we don't use real - * Errors anymore. We don't inspect their stack anyway, and creating them - * is prohibitively expensive if they are created too often, such as what - * happens in oneOfType() for any type before the one that matched. - */ - function PropTypeError(message) { - this.message = message; - this.stack = ''; - } - // Make `instanceof Error` still work for returned errors. - PropTypeError.prototype = Error.prototype; +module.exports = assignValue; - function createChainableTypeChecker(validate) { - if (true) { - var manualPropTypeCallCache = {}; - var manualPropTypeWarningCount = 0; - } - function checkType(isRequired, props, propName, componentName, location, propFullName, secret) { - componentName = componentName || ANONYMOUS; - propFullName = propFullName || propName; - if (secret !== ReactPropTypesSecret) { - if (throwOnDirectAccess) { - // New behavior only for users of `prop-types` package - var err = new Error( - 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' + - 'Use `PropTypes.checkPropTypes()` to call them. ' + - 'Read more at http://fb.me/use-check-prop-types' - ); - err.name = 'Invariant Violation'; - throw err; - } else if ( true && typeof console !== 'undefined') { - // Old behavior for people using React.PropTypes - var cacheKey = componentName + ':' + propName; - if ( - !manualPropTypeCallCache[cacheKey] && - // Avoid spamming the console because they are often not actionable except for lib authors - manualPropTypeWarningCount < 3 - ) { - printWarning( - 'You are manually calling a React.PropTypes validation ' + - 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' + - 'and will throw in the standalone `prop-types` package. ' + - 'You may be seeing this warning due to a third-party PropTypes ' + - 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.' - ); - manualPropTypeCallCache[cacheKey] = true; - manualPropTypeWarningCount++; - } - } - } - if (props[propName] == null) { - if (isRequired) { - if (props[propName] === null) { - return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.')); - } - return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.')); - } - return null; - } else { - return validate(props, propName, componentName, location, propFullName); - } - } +/***/ }), +/* 1197 */ +/***/ (function(module, exports, __webpack_require__) { - var chainedCheckType = checkType.bind(null, false); - chainedCheckType.isRequired = checkType.bind(null, true); +var defineProperty = __webpack_require__(1198); - return chainedCheckType; +/** + * The base implementation of `assignValue` and `assignMergeValue` without + * value checks. + * + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. + */ +function baseAssignValue(object, key, value) { + if (key == '__proto__' && defineProperty) { + defineProperty(object, key, { + 'configurable': true, + 'enumerable': true, + 'value': value, + 'writable': true + }); + } else { + object[key] = value; } +} - function createPrimitiveTypeChecker(expectedType) { - function validate(props, propName, componentName, location, propFullName, secret) { - var propValue = props[propName]; - var propType = getPropType(propValue); - if (propType !== expectedType) { - // `propValue` being instance of, say, date/regexp, pass the 'object' - // check, but we can offer a more precise error message here rather than - // 'of type `object`'. - var preciseType = getPreciseType(propValue); +module.exports = baseAssignValue; - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.')); - } - return null; - } - return createChainableTypeChecker(validate); - } - function createAnyTypeChecker() { - return createChainableTypeChecker(emptyFunctionThatReturnsNull); - } +/***/ }), +/* 1198 */ +/***/ (function(module, exports, __webpack_require__) { - function createArrayOfTypeChecker(typeChecker) { - function validate(props, propName, componentName, location, propFullName) { - if (typeof typeChecker !== 'function') { - return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.'); - } - var propValue = props[propName]; - if (!Array.isArray(propValue)) { - var propType = getPropType(propValue); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.')); - } - for (var i = 0; i < propValue.length; i++) { - var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret); - if (error instanceof Error) { - return error; - } - } - return null; - } - return createChainableTypeChecker(validate); - } +var getNative = __webpack_require__(1166); - function createElementTypeChecker() { - function validate(props, propName, componentName, location, propFullName) { - var propValue = props[propName]; - if (!isValidElement(propValue)) { - var propType = getPropType(propValue); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.')); - } - return null; - } - return createChainableTypeChecker(validate); - } +var defineProperty = (function() { + try { + var func = getNative(Object, 'defineProperty'); + func({}, '', {}); + return func; + } catch (e) {} +}()); - function createElementTypeTypeChecker() { - function validate(props, propName, componentName, location, propFullName) { - var propValue = props[propName]; - if (!ReactIs.isValidElementType(propValue)) { - var propType = getPropType(propValue); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.')); - } - return null; - } - return createChainableTypeChecker(validate); - } +module.exports = defineProperty; - function createInstanceTypeChecker(expectedClass) { - function validate(props, propName, componentName, location, propFullName) { - if (!(props[propName] instanceof expectedClass)) { - var expectedClassName = expectedClass.name || ANONYMOUS; - var actualClassName = getClassName(props[propName]); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.')); - } - return null; - } - return createChainableTypeChecker(validate); - } - function createEnumTypeChecker(expectedValues) { - if (!Array.isArray(expectedValues)) { - if (true) { - if (arguments.length > 1) { - printWarning( - 'Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' + - 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).' - ); - } else { - printWarning('Invalid argument supplied to oneOf, expected an array.'); - } - } - return emptyFunctionThatReturnsNull; - } +/***/ }), +/* 1199 */ +/***/ (function(module, exports, __webpack_require__) { - function validate(props, propName, componentName, location, propFullName) { - var propValue = props[propName]; - for (var i = 0; i < expectedValues.length; i++) { - if (is(propValue, expectedValues[i])) { - return null; - } - } +var copyObject = __webpack_require__(1200), + keys = __webpack_require__(1201); - var valuesString = JSON.stringify(expectedValues, function replacer(key, value) { - var type = getPreciseType(value); - if (type === 'symbol') { - return String(value); - } - return value; - }); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.')); - } - return createChainableTypeChecker(validate); - } +/** + * The base implementation of `_.assign` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ +function baseAssign(object, source) { + return object && copyObject(source, keys(source), object); +} - function createObjectOfTypeChecker(typeChecker) { - function validate(props, propName, componentName, location, propFullName) { - if (typeof typeChecker !== 'function') { - return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.'); - } - var propValue = props[propName]; - var propType = getPropType(propValue); - if (propType !== 'object') { - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.')); - } - for (var key in propValue) { - if (has(propValue, key)) { - var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret); - if (error instanceof Error) { - return error; - } - } - } - return null; - } - return createChainableTypeChecker(validate); - } +module.exports = baseAssign; - function createUnionTypeChecker(arrayOfTypeCheckers) { - if (!Array.isArray(arrayOfTypeCheckers)) { - true ? printWarning('Invalid argument supplied to oneOfType, expected an instance of array.') : undefined; - return emptyFunctionThatReturnsNull; - } - for (var i = 0; i < arrayOfTypeCheckers.length; i++) { - var checker = arrayOfTypeCheckers[i]; - if (typeof checker !== 'function') { - printWarning( - 'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' + - 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.' - ); - return emptyFunctionThatReturnsNull; - } - } +/***/ }), +/* 1200 */ +/***/ (function(module, exports, __webpack_require__) { - function validate(props, propName, componentName, location, propFullName) { - for (var i = 0; i < arrayOfTypeCheckers.length; i++) { - var checker = arrayOfTypeCheckers[i]; - if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret) == null) { - return null; - } - } +var assignValue = __webpack_require__(1196), + baseAssignValue = __webpack_require__(1197); - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`.')); - } - return createChainableTypeChecker(validate); - } +/** + * Copies properties of `source` to `object`. + * + * @private + * @param {Object} source The object to copy properties from. + * @param {Array} props The property identifiers to copy. + * @param {Object} [object={}] The object to copy properties to. + * @param {Function} [customizer] The function to customize copied values. + * @returns {Object} Returns `object`. + */ +function copyObject(source, props, object, customizer) { + var isNew = !object; + object || (object = {}); - function createNodeChecker() { - function validate(props, propName, componentName, location, propFullName) { - if (!isNode(props[propName])) { - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.')); - } - return null; - } - return createChainableTypeChecker(validate); - } + var index = -1, + length = props.length; - function createShapeTypeChecker(shapeTypes) { - function validate(props, propName, componentName, location, propFullName) { - var propValue = props[propName]; - var propType = getPropType(propValue); - if (propType !== 'object') { - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.')); - } - for (var key in shapeTypes) { - var checker = shapeTypes[key]; - if (!checker) { - continue; - } - var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret); - if (error) { - return error; - } - } - return null; - } - return createChainableTypeChecker(validate); - } + while (++index < length) { + var key = props[index]; - function createStrictShapeTypeChecker(shapeTypes) { - function validate(props, propName, componentName, location, propFullName) { - var propValue = props[propName]; - var propType = getPropType(propValue); - if (propType !== 'object') { - return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.')); - } - // We need to check all keys in case some are required but missing from - // props. - var allKeys = assign({}, props[propName], shapeTypes); - for (var key in allKeys) { - var checker = shapeTypes[key]; - if (!checker) { - return new PropTypeError( - 'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' + - '\nBad object: ' + JSON.stringify(props[propName], null, ' ') + - '\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ') - ); - } - var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret); - if (error) { - return error; - } - } - return null; - } + var newValue = customizer + ? customizer(object[key], source[key], key, object, source) + : undefined; - return createChainableTypeChecker(validate); + if (newValue === undefined) { + newValue = source[key]; + } + if (isNew) { + baseAssignValue(object, key, newValue); + } else { + assignValue(object, key, newValue); + } } + return object; +} - function isNode(propValue) { - switch (typeof propValue) { - case 'number': - case 'string': - case 'undefined': - return true; - case 'boolean': - return !propValue; - case 'object': - if (Array.isArray(propValue)) { - return propValue.every(isNode); - } - if (propValue === null || isValidElement(propValue)) { - return true; - } +module.exports = copyObject; - var iteratorFn = getIteratorFn(propValue); - if (iteratorFn) { - var iterator = iteratorFn.call(propValue); - var step; - if (iteratorFn !== propValue.entries) { - while (!(step = iterator.next()).done) { - if (!isNode(step.value)) { - return false; - } - } - } else { - // Iterator will provide entry [k,v] tuples rather than values. - while (!(step = iterator.next()).done) { - var entry = step.value; - if (entry) { - if (!isNode(entry[1])) { - return false; - } - } - } - } - } else { - return false; - } - return true; - default: - return false; - } - } +/***/ }), +/* 1201 */ +/***/ (function(module, exports, __webpack_require__) { - function isSymbol(propType, propValue) { - // Native Symbol. - if (propType === 'symbol') { - return true; - } +var arrayLikeKeys = __webpack_require__(1202), + baseKeys = __webpack_require__(1216), + isArrayLike = __webpack_require__(1220); - // falsy value can't be a Symbol - if (!propValue) { - return false; - } +/** + * Creates an array of the own enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. See the + * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * for more details. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keys(new Foo); + * // => ['a', 'b'] (iteration order is not guaranteed) + * + * _.keys('hi'); + * // => ['0', '1'] + */ +function keys(object) { + return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object); +} - // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol' - if (propValue['@@toStringTag'] === 'Symbol') { - return true; - } +module.exports = keys; - // Fallback for non-spec compliant Symbols which are polyfilled. - if (typeof Symbol === 'function' && propValue instanceof Symbol) { - return true; - } - return false; - } +/***/ }), +/* 1202 */ +/***/ (function(module, exports, __webpack_require__) { - // Equivalent of `typeof` but with special handling for array and regexp. - function getPropType(propValue) { - var propType = typeof propValue; - if (Array.isArray(propValue)) { - return 'array'; - } - if (propValue instanceof RegExp) { - // Old webkits (at least until Android 4.0) return 'function' rather than - // 'object' for typeof a RegExp. We'll normalize this here so that /bla/ - // passes PropTypes.object. - return 'object'; - } - if (isSymbol(propType, propValue)) { - return 'symbol'; - } - return propType; - } +var baseTimes = __webpack_require__(1203), + isArguments = __webpack_require__(1204), + isArray = __webpack_require__(1207), + isBuffer = __webpack_require__(1208), + isIndex = __webpack_require__(1210), + isTypedArray = __webpack_require__(1211); - // This handles more types than `getPropType`. Only used for error messages. - // See `createPrimitiveTypeChecker`. - function getPreciseType(propValue) { - if (typeof propValue === 'undefined' || propValue === null) { - return '' + propValue; - } - var propType = getPropType(propValue); - if (propType === 'object') { - if (propValue instanceof Date) { - return 'date'; - } else if (propValue instanceof RegExp) { - return 'regexp'; - } - } - return propType; - } +/** Used for built-in method references. */ +var objectProto = Object.prototype; - // Returns a string that is postfixed to a warning about an invalid type. - // For example, "undefined" or "of type array" - function getPostfixForTypeWarning(value) { - var type = getPreciseType(value); - switch (type) { - case 'array': - case 'object': - return 'an ' + type; - case 'boolean': - case 'date': - case 'regexp': - return 'a ' + type; - default: - return type; - } - } +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; - // Returns class name of the object, if any. - function getClassName(propValue) { - if (!propValue.constructor || !propValue.constructor.name) { - return ANONYMOUS; +/** + * Creates an array of the enumerable property names of the array-like `value`. + * + * @private + * @param {*} value The value to query. + * @param {boolean} inherited Specify returning inherited property names. + * @returns {Array} Returns the array of property names. + */ +function arrayLikeKeys(value, inherited) { + var isArr = isArray(value), + isArg = !isArr && isArguments(value), + isBuff = !isArr && !isArg && isBuffer(value), + isType = !isArr && !isArg && !isBuff && isTypedArray(value), + skipIndexes = isArr || isArg || isBuff || isType, + result = skipIndexes ? baseTimes(value.length, String) : [], + length = result.length; + + for (var key in value) { + if ((inherited || hasOwnProperty.call(value, key)) && + !(skipIndexes && ( + // Safari 9 has enumerable `arguments.length` in strict mode. + key == 'length' || + // Node.js 0.10 has enumerable non-index properties on buffers. + (isBuff && (key == 'offset' || key == 'parent')) || + // PhantomJS 2 has enumerable non-index properties on typed arrays. + (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) || + // Skip index properties. + isIndex(key, length) + ))) { + result.push(key); } - return propValue.constructor.name; } + return result; +} - ReactPropTypes.checkPropTypes = checkPropTypes; - ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache; - ReactPropTypes.PropTypes = ReactPropTypes; +module.exports = arrayLikeKeys; - return ReactPropTypes; -}; + +/***/ }), +/* 1203 */ +/***/ (function(module, exports) { + +/** + * The base implementation of `_.times` without support for iteratee shorthands + * or max array length checks. + * + * @private + * @param {number} n The number of times to invoke `iteratee`. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the array of results. + */ +function baseTimes(n, iteratee) { + var index = -1, + result = Array(n); + + while (++index < n) { + result[index] = iteratee(index); + } + return result; +} + +module.exports = baseTimes; /***/ }), -/* 1192 */ +/* 1204 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; -/* -object-assign -(c) Sindre Sorhus -@license MIT -*/ +var baseIsArguments = __webpack_require__(1205), + isObjectLike = __webpack_require__(1206); +/** Used for built-in method references. */ +var objectProto = Object.prototype; -/* eslint-disable no-unused-vars */ -var getOwnPropertySymbols = Object.getOwnPropertySymbols; -var hasOwnProperty = Object.prototype.hasOwnProperty; -var propIsEnumerable = Object.prototype.propertyIsEnumerable; +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; -function toObject(val) { - if (val === null || val === undefined) { - throw new TypeError('Object.assign cannot be called with null or undefined'); - } +/** Built-in value references. */ +var propertyIsEnumerable = objectProto.propertyIsEnumerable; - return Object(val); -} +/** + * Checks if `value` is likely an `arguments` object. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + * else `false`. + * @example + * + * _.isArguments(function() { return arguments; }()); + * // => true + * + * _.isArguments([1, 2, 3]); + * // => false + */ +var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) { + return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && + !propertyIsEnumerable.call(value, 'callee'); +}; -function shouldUseNative() { - try { - if (!Object.assign) { - return false; - } +module.exports = isArguments; - // Detect buggy property enumeration order in older V8 versions. - // https://bugs.chromium.org/p/v8/issues/detail?id=4118 - var test1 = new String('abc'); // eslint-disable-line no-new-wrappers - test1[5] = 'de'; - if (Object.getOwnPropertyNames(test1)[0] === '5') { - return false; - } +/***/ }), +/* 1205 */ +/***/ (function(module, exports, __webpack_require__) { - // https://bugs.chromium.org/p/v8/issues/detail?id=3056 - var test2 = {}; - for (var i = 0; i < 10; i++) { - test2['_' + String.fromCharCode(i)] = i; - } - var order2 = Object.getOwnPropertyNames(test2).map(function (n) { - return test2[n]; - }); - if (order2.join('') !== '0123456789') { - return false; - } +var baseGetTag = __webpack_require__(1169), + isObjectLike = __webpack_require__(1206); - // https://bugs.chromium.org/p/v8/issues/detail?id=3056 - var test3 = {}; - 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { - test3[letter] = letter; - }); - if (Object.keys(Object.assign({}, test3)).join('') !== - 'abcdefghijklmnopqrst') { - return false; - } +/** `Object#toString` result references. */ +var argsTag = '[object Arguments]'; - return true; - } catch (err) { - // We don't expect any of the above to throw, but better to be safe. - return false; - } +/** + * The base implementation of `_.isArguments`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an `arguments` object, + */ +function baseIsArguments(value) { + return isObjectLike(value) && baseGetTag(value) == argsTag; } -module.exports = shouldUseNative() ? Object.assign : function (target, source) { - var from; - var to = toObject(target); - var symbols; +module.exports = baseIsArguments; - for (var s = 1; s < arguments.length; s++) { - from = Object(arguments[s]); - for (var key in from) { - if (hasOwnProperty.call(from, key)) { - to[key] = from[key]; - } - } +/***/ }), +/* 1206 */ +/***/ (function(module, exports) { - if (getOwnPropertySymbols) { - symbols = getOwnPropertySymbols(from); - for (var i = 0; i < symbols.length; i++) { - if (propIsEnumerable.call(from, symbols[i])) { - to[symbols[i]] = from[symbols[i]]; - } - } - } - } +/** + * Checks if `value` is object-like. A value is object-like if it's not `null` + * and has a `typeof` result of "object". + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + * @example + * + * _.isObjectLike({}); + * // => true + * + * _.isObjectLike([1, 2, 3]); + * // => true + * + * _.isObjectLike(_.noop); + * // => false + * + * _.isObjectLike(null); + * // => false + */ +function isObjectLike(value) { + return value != null && typeof value == 'object'; +} - return to; -}; +module.exports = isObjectLike; /***/ }), -/* 1193 */ -/***/ (function(module, exports, __webpack_require__) { +/* 1207 */ +/***/ (function(module, exports) { -"use strict"; /** - * Copyright (c) 2013-present, Facebook, Inc. + * Checks if `value` is classified as an `Array` object. * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. + * @static + * @memberOf _ + * @since 0.1.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array, else `false`. + * @example + * + * _.isArray([1, 2, 3]); + * // => true + * + * _.isArray(document.body.children); + * // => false + * + * _.isArray('abc'); + * // => false + * + * _.isArray(_.noop); + * // => false */ +var isArray = Array.isArray; +module.exports = isArray; -var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED'; +/***/ }), +/* 1208 */ +/***/ (function(module, exports, __webpack_require__) { -module.exports = ReactPropTypesSecret; +/* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(1171), + stubFalse = __webpack_require__(1209); + +/** Detect free variable `exports`. */ +var freeExports = true && exports && !exports.nodeType && exports; +/** Detect free variable `module`. */ +var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; -/***/ }), -/* 1194 */ -/***/ (function(module, exports, __webpack_require__) { +/** Detect the popular CommonJS extension `module.exports`. */ +var moduleExports = freeModule && freeModule.exports === freeExports; + +/** Built-in value references. */ +var Buffer = moduleExports ? root.Buffer : undefined; + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined; -"use strict"; /** - * Copyright (c) 2013-present, Facebook, Inc. + * Checks if `value` is a buffer. * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a buffer, else `false`. + * @example + * + * _.isBuffer(new Buffer(2)); + * // => true + * + * _.isBuffer(new Uint8Array(2)); + * // => false */ +var isBuffer = nativeIsBuffer || stubFalse; +module.exports = isBuffer; +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) -var printWarning = function() {}; - -if (true) { - var ReactPropTypesSecret = __webpack_require__(1193); - var loggedTypeFailures = {}; - var has = Function.call.bind(Object.prototype.hasOwnProperty); - - printWarning = function(text) { - var message = 'Warning: ' + text; - if (typeof console !== 'undefined') { - console.error(message); - } - try { - // --- Welcome to debugging React --- - // This error was thrown as a convenience so that you can use this stack - // to find the callsite that caused this warning to fire. - throw new Error(message); - } catch (x) {} - }; -} +/***/ }), +/* 1209 */ +/***/ (function(module, exports) { /** - * Assert that the values match with the type specs. - * Error messages are memorized and will only be shown once. + * This method returns `false`. * - * @param {object} typeSpecs Map of name to a ReactPropType - * @param {object} values Runtime values that need to be type-checked - * @param {string} location e.g. "prop", "context", "child context" - * @param {string} componentName Name of the component for error messages. - * @param {?Function} getStack Returns the component stack. - * @private + * @static + * @memberOf _ + * @since 4.13.0 + * @category Util + * @returns {boolean} Returns `false`. + * @example + * + * _.times(2, _.stubFalse); + * // => [false, false] */ -function checkPropTypes(typeSpecs, values, location, componentName, getStack) { - if (true) { - for (var typeSpecName in typeSpecs) { - if (has(typeSpecs, typeSpecName)) { - var error; - // Prop type validation may throw. In case they do, we don't want to - // fail the render phase where it didn't fail before. So we log it. - // After these have been cleaned up, we'll let them throw. - try { - // This is intentionally an invariant that gets caught. It's the same - // behavior as without this statement except with a better message. - if (typeof typeSpecs[typeSpecName] !== 'function') { - var err = Error( - (componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + - 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' - ); - err.name = 'Invariant Violation'; - throw err; - } - error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret); - } catch (ex) { - error = ex; - } - if (error && !(error instanceof Error)) { - printWarning( - (componentName || 'React class') + ': type specification of ' + - location + ' `' + typeSpecName + '` is invalid; the type checker ' + - 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' + - 'You may have forgotten to pass an argument to the type checker ' + - 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + - 'shape all require an argument).' - ); - } - if (error instanceof Error && !(error.message in loggedTypeFailures)) { - // Only monitor this failure once because there tends to be a lot of the - // same error. - loggedTypeFailures[error.message] = true; +function stubFalse() { + return false; +} - var stack = getStack ? getStack() : ''; +module.exports = stubFalse; - printWarning( - 'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '') - ); - } - } - } - } -} + +/***/ }), +/* 1210 */ +/***/ (function(module, exports) { + +/** Used as references for various `Number` constants. */ +var MAX_SAFE_INTEGER = 9007199254740991; + +/** Used to detect unsigned integer values. */ +var reIsUint = /^(?:0|[1-9]\d*)$/; /** - * Resets warning cache when testing. + * Checks if `value` is a valid array-like index. * * @private + * @param {*} value The value to check. + * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index. + * @returns {boolean} Returns `true` if `value` is a valid index, else `false`. */ -checkPropTypes.resetWarningCache = function() { - if (true) { - loggedTypeFailures = {}; - } +function isIndex(value, length) { + var type = typeof value; + length = length == null ? MAX_SAFE_INTEGER : length; + + return !!length && + (type == 'number' || + (type != 'symbol' && reIsUint.test(value))) && + (value > -1 && value % 1 == 0 && value < length); } -module.exports = checkPropTypes; +module.exports = isIndex; /***/ }), -/* 1195 */ +/* 1211 */ /***/ (function(module, exports, __webpack_require__) { -const log = __webpack_require__(2).namespace('doctypes') +var baseIsTypedArray = __webpack_require__(1212), + baseUnary = __webpack_require__(1214), + nodeUtil = __webpack_require__(1215); -module.exports = log +/* Node.js helper references. */ +var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray; + +/** + * Checks if `value` is classified as a typed array. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + * @example + * + * _.isTypedArray(new Uint8Array); + * // => true + * + * _.isTypedArray([]); + * // => false + */ +var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray; + +module.exports = isTypedArray; /***/ }), -/* 1196 */ +/* 1212 */ /***/ (function(module, exports, __webpack_require__) { -const Document = __webpack_require__(1179) +var baseGetTag = __webpack_require__(1169), + isLength = __webpack_require__(1213), + isObjectLike = __webpack_require__(1206); -const APP_DOCTYPE = 'io.cozy.apps' -const STORE_SLUG = 'store' +/** `Object#toString` result references. */ +var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + boolTag = '[object Boolean]', + dateTag = '[object Date]', + errorTag = '[object Error]', + funcTag = '[object Function]', + mapTag = '[object Map]', + numberTag = '[object Number]', + objectTag = '[object Object]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + weakMapTag = '[object WeakMap]'; -class Application extends Document { - /** - * Return Store URL where an app/konnector can be installed / updated - * @param {Array} [appData=[]] Apps data, as returned by endpoint /apps/ or - * /konnectors/ - * @param {Object} [app={}] AppObject - * @return {String} URL as string - */ - static getStoreInstallationURL(appData = [], app = {}) { - if (!app.slug) { - throw new Error('Expected app / konnector with the defined slug') - } +var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; - const storeApp = this.isInstalled(appData, { slug: STORE_SLUG }) - if (!storeApp) return null +/** Used to identify `toStringTag` values of typed arrays. */ +var typedArrayTags = {}; +typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = +typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = +typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = +typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = +typedArrayTags[uint32Tag] = true; +typedArrayTags[argsTag] = typedArrayTags[arrayTag] = +typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = +typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = +typedArrayTags[errorTag] = typedArrayTags[funcTag] = +typedArrayTags[mapTag] = typedArrayTags[numberTag] = +typedArrayTags[objectTag] = typedArrayTags[regexpTag] = +typedArrayTags[setTag] = typedArrayTags[stringTag] = +typedArrayTags[weakMapTag] = false; - const storeUrl = storeApp.links && storeApp.links.related +/** + * The base implementation of `_.isTypedArray` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a typed array, else `false`. + */ +function baseIsTypedArray(value) { + return isObjectLike(value) && + isLength(value.length) && !!typedArrayTags[baseGetTag(value)]; +} - if (!storeUrl) return null +module.exports = baseIsTypedArray; - return `${storeUrl}#/discover/${app.slug}/install` - } - /** - * - * @param {Array} apps Array of apps returned by /apps /konnectors - * @param {Object} wantedApp io.cozy.app with at least a slug - * @return {Object} The io.cozy.app is installed or undefined if not - */ - static isInstalled(apps = [], wantedApp = {}) { - return apps.find( - app => app.attributes && app.attributes.slug === wantedApp.slug - ) - } - /** - * - * @param {Object} app io.cozy.app object - * @return {String} url to the app - */ - static getUrl(app) { - return app.links && app.links.related - } -} +/***/ }), +/* 1213 */ +/***/ (function(module, exports) { -Application.schema = { - doctype: APP_DOCTYPE, - attributes: {} +/** Used as references for various `Number` constants. */ +var MAX_SAFE_INTEGER = 9007199254740991; + +/** + * Checks if `value` is a valid array-like length. + * + * **Note:** This method is loosely based on + * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @example + * + * _.isLength(3); + * // => true + * + * _.isLength(Number.MIN_VALUE); + * // => false + * + * _.isLength(Infinity); + * // => false + * + * _.isLength('3'); + * // => false + */ +function isLength(value) { + return typeof value == 'number' && + value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER; } -Application.doctype = APP_DOCTYPE +module.exports = isLength; -module.exports = Application + +/***/ }), +/* 1214 */ +/***/ (function(module, exports) { + +/** + * The base implementation of `_.unary` without support for storing metadata. + * + * @private + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new capped function. + */ +function baseUnary(func) { + return function(value) { + return func(value); + }; +} + +module.exports = baseUnary; /***/ }), -/* 1197 */ +/* 1215 */ /***/ (function(module, exports, __webpack_require__) { -const Document = __webpack_require__(1179) -const BankAccount = __webpack_require__(1198) +/* WEBPACK VAR INJECTION */(function(module) {var freeGlobal = __webpack_require__(1172); -class BalanceHistory extends Document { - static async getByYearAndAccount(year, accountId) { - const index = await Document.getIndex(this.doctype, this.idAttributes) - const options = { - selector: { year, 'relationships.account.data._id': accountId }, - limit: 1 - } - const [balance] = await Document.query(index, options) +/** Detect free variable `exports`. */ +var freeExports = true && exports && !exports.nodeType && exports; - if (balance) { - return balance - } +/** Detect free variable `module`. */ +var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; - return this.getEmptyDocument(year, accountId) - } +/** Detect the popular CommonJS extension `module.exports`. */ +var moduleExports = freeModule && freeModule.exports === freeExports; - static getEmptyDocument(year, accountId) { - return { - year, - balances: {}, - metadata: { - version: this.version - }, - relationships: { - account: { - data: { - _id: accountId, - _type: BankAccount.doctype - } - } - } +/** Detect free variable `process` from Node.js. */ +var freeProcess = moduleExports && freeGlobal.process; + +/** Used to access faster Node.js helpers. */ +var nodeUtil = (function() { + try { + // Use `util.types` for Node.js 10+. + var types = freeModule && freeModule.require && freeModule.require('util').types; + + if (types) { + return types; } - } -} -BalanceHistory.doctype = 'io.cozy.bank.balancehistories' -BalanceHistory.idAttributes = ['year', 'relationships.account.data._id'] -BalanceHistory.version = 1 -BalanceHistory.checkedAttributes = ['balances'] + // Legacy `process.binding('util')` for Node.js < 10. + return freeProcess && freeProcess.binding && freeProcess.binding('util'); + } catch (e) {} +}()); -module.exports = BalanceHistory +module.exports = nodeUtil; +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) /***/ }), -/* 1198 */ +/* 1216 */ /***/ (function(module, exports, __webpack_require__) { -const groupBy = __webpack_require__(729) -const get = __webpack_require__(370) -const merge = __webpack_require__(747) -const Document = __webpack_require__(1179) -const matching = __webpack_require__(1199) -const { getSlugFromInstitutionLabel } = __webpack_require__(1201) -const log = __webpack_require__(2).namespace('BankAccount') - -class BankAccount extends Document { - /** - * Adds _id of existing accounts to fetched accounts - */ - static reconciliate(fetchedAccounts, localAccounts) { - const matchings = matching.matchAccounts(fetchedAccounts, localAccounts) - return matchings.map(matching => { - log( - 'info', - matching.match - ? `${matching.account.label} matched with ${matching.match.label} via ${matching.method}` - : `${matching.account.label} did not match with an existing account` - ) - return { - ...matching.account, - relationships: merge( - {}, - matching.match ? matching.match.relationships : null, - matching.account.relationships - ), - _id: matching.match ? matching.match._id : undefined - } - }) - } +var isPrototype = __webpack_require__(1217), + nativeKeys = __webpack_require__(1218); - static findDuplicateAccountsWithNoOperations(accounts, operations) { - const opsByAccountId = groupBy(operations, op => op.account) +/** Used for built-in method references. */ +var objectProto = Object.prototype; - const duplicateAccountGroups = Object.entries( - groupBy(accounts, x => x.institutionLabel + ' > ' + x.label) - ) - .map(([, duplicateGroup]) => duplicateGroup) - .filter(duplicateGroup => duplicateGroup.length > 1) +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; - const res = [] - for (const duplicateAccounts of duplicateAccountGroups) { - for (const account of duplicateAccounts) { - const accountOperations = opsByAccountId[account._id] || [] - if (accountOperations.length === 0) { - res.push(account) - } - } +/** + * The base implementation of `_.keys` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ +function baseKeys(object) { + if (!isPrototype(object)) { + return nativeKeys(object); + } + var result = []; + for (var key in Object(object)) { + if (hasOwnProperty.call(object, key) && key != 'constructor') { + result.push(key); } - return res } + return result; +} - static hasIncoherentCreatedByApp(account) { - const predictedSlug = getSlugFromInstitutionLabel(account.institutionLabel) - const createdByApp = - account.cozyMetadata && account.cozyMetadata.createdByApp - return Boolean( - predictedSlug && createdByApp && predictedSlug !== createdByApp - ) - } +module.exports = baseKeys; - static getUpdatedAt(account) { - const vendorUpdatedAt = get(account, 'metadata.updatedAt') - if (vendorUpdatedAt) { - return vendorUpdatedAt - } +/***/ }), +/* 1217 */ +/***/ (function(module, exports) { - const cozyUpdatedAt = get(account, 'cozyMetadata.updatedAt') +/** Used for built-in method references. */ +var objectProto = Object.prototype; - if (cozyUpdatedAt) { - return cozyUpdatedAt - } +/** + * Checks if `value` is likely a prototype object. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a prototype, else `false`. + */ +function isPrototype(value) { + var Ctor = value && value.constructor, + proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto; - return null - } + return value === proto; } -BankAccount.normalizeAccountNumber = matching.normalizeAccountNumber -BankAccount.doctype = 'io.cozy.bank.accounts' -BankAccount.idAttributes = ['_id'] -BankAccount.version = 1 -BankAccount.checkedAttributes = null -BankAccount.vendorIdAttr = 'vendorId' - -module.exports = BankAccount +module.exports = isPrototype; /***/ }), -/* 1199 */ +/* 1218 */ /***/ (function(module, exports, __webpack_require__) { -const sortBy = __webpack_require__(826) -const { eitherIncludes } = __webpack_require__(1200) -const { getSlugFromInstitutionLabel } = __webpack_require__(1201) - -const findExactMatch = (attr, account, existingAccounts) => { - const sameAttr = existingAccounts.filter( - existingAccount => existingAccount[attr] === account[attr] - ) - if (sameAttr.length === 1) { - return { match: sameAttr[0], method: attr + '-exact' } - } else if (sameAttr.length > 1) { - return { matches: sameAttr, method: attr + '-exact' } - } else { - return null - } -} +var overArg = __webpack_require__(1219); -const untrimmedAccountNumber = /^(?:[A-Za-z]+)?-?([0-9]+)-?(?:[A-Za-z]+)?$/ -const redactedCreditCard = /xxxx xxxx xxxx (\d{4})/ +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeKeys = overArg(Object.keys, Object); -const normalizeAccountNumber = (numberArg, ibanArg) => { - const iban = ibanArg && ibanArg.replace(/\s/g, '') - const number = - numberArg && !numberArg.match(redactedCreditCard) - ? numberArg.replace(/\s/g, '') - : numberArg - let match - if (iban && iban.length == 27) { - return iban.substr(14, 11) - } +module.exports = nativeKeys; - if (!number) { - return number - } - if (number.length == 23) { - // Must be an IBAN without the COUNTRY code - // See support demand #9102 with BI - // We extract the account number from the IBAN - // COUNTRY (4) BANK (5) COUNTER (5) NUMBER (11) KEY (2) - // FRXX 16275 10501 00300060030 00 - return number.substr(10, 11) - } else if (number.length == 16) { - // Linxo sends Bank account number that contains - // the counter number - return number.substr(5, 11) - } else if ( - number.length > 11 && - (match = number.match(untrimmedAccountNumber)) - ) { - // Some account numbers from BI are in the form - // CC-00300060030 (CC for Compte Courant) or - // LEO-00300060030 - return match[1] - } else { - return number - } -} +/***/ }), +/* 1219 */ +/***/ (function(module, exports) { /** - * If either of the account numbers has length 11 and one is contained - * in the other, it's a match + * Creates a unary function that invokes `func` with its argument transformed. + * + * @private + * @param {Function} func The function to wrap. + * @param {Function} transform The argument transform. + * @returns {Function} Returns the new function. */ -const approxNumberMatch = (account, existingAccount) => { - return ( - existingAccount.number && - account.number && - (existingAccount.number.length === 11 || account.number.length === 11) && - eitherIncludes(existingAccount.number, account.number) && - Math.min(existingAccount.number.length, account.number.length) >= 4 - ) +function overArg(func, transform) { + return function(arg) { + return func(transform(arg)); + }; } +module.exports = overArg; + + +/***/ }), +/* 1220 */ +/***/ (function(module, exports, __webpack_require__) { + +var isFunction = __webpack_require__(1168), + isLength = __webpack_require__(1213); + /** - * If there is no "number" attribute or null, "id" attribute is used - * in the other, it's not a match + * Checks if `value` is array-like. A value is considered array-like if it's + * not a function and has a `value.length` that's an integer greater than or + * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. * - * @param account - * @param existingAccount - * @returns {boolean} + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + * @example + * + * _.isArrayLike([1, 2, 3]); + * // => true + * + * _.isArrayLike(document.body.children); + * // => true + * + * _.isArrayLike('abc'); + * // => true + * + * _.isArrayLike(_.noop); + * // => false */ -const noNumberMatch = (account, existingAccount) => { - const accNumber = account.number || String(account.id) - const existingAccNumber = existingAccount.number || String(existingAccount.id) - if (!account.number || !existingAccount.number) { - return eitherIncludes(accNumber, existingAccNumber) - } - return false +function isArrayLike(value) { + return value != null && isLength(value.length) && !isFunction(value); } -const creditCardMatch = (account, existingAccount) => { - if (account.type !== 'CreditCard' && existingAccount.type !== 'CreditCard') { - return false - } - let ccAccount, lastDigits - for (let acc of [account, existingAccount]) { - const match = acc && acc.number && acc.number.match(redactedCreditCard) - if (match) { - ccAccount = acc - lastDigits = match[1] - } - } - const other = ccAccount === account ? existingAccount : account - if (other && other.number && other.number.slice(-4) === lastDigits) { - return true - } - return false -} +module.exports = isArrayLike; -const slugMatch = (account, existingAccount) => { - const possibleSlug = getSlugFromInstitutionLabel(account.institutionLabel) - const possibleSlugExisting = getSlugFromInstitutionLabel( - existingAccount.institutionLabel - ) - return ( - !possibleSlug || - !possibleSlugExisting || - possibleSlug === possibleSlugExisting - ) -} -const currencyMatch = (account, existingAccount) => { - if (!account.currency) { - return false - } - return ( - (existingAccount.rawNumber && - existingAccount.rawNumber.includes(account.currency)) || - (existingAccount.label && - existingAccount.label.includes(account.currency)) || - (existingAccount.originalBankLabel && - existingAccount.originalBankLabel.includes(account.currency)) - ) -} +/***/ }), +/* 1221 */ +/***/ (function(module, exports, __webpack_require__) { -const sameTypeMatch = (account, existingAccount) => { - return account.type === existingAccount.type +var copyObject = __webpack_require__(1200), + keysIn = __webpack_require__(1222); + +/** + * The base implementation of `_.assignIn` without support for multiple sources + * or `customizer` functions. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @returns {Object} Returns `object`. + */ +function baseAssignIn(object, source) { + return object && copyObject(source, keysIn(source), object); } -const rules = [ - { rule: slugMatch, bonus: 0, malus: -1000 }, - { rule: approxNumberMatch, bonus: 50, malus: -50, name: 'approx-number' }, - { rule: noNumberMatch, bonus: 10, malus: -10, name: 'no-number-attr' }, - { rule: sameTypeMatch, bonus: 50, malus: 0, name: 'same-type' }, - { rule: creditCardMatch, bonus: 150, malus: 0, name: 'credit-card-number' }, - { rule: currencyMatch, bonus: 50, malus: 0, name: 'currency' } -] +module.exports = baseAssignIn; -const score = (account, existingAccount) => { - const methods = [] - const res = { - account: existingAccount, - methods - } - let points = 0 - for (let { rule, bonus, malus, name } of rules) { - const ok = rule(account, existingAccount) - if (ok && bonus) { - points += bonus - } - if (!ok && malus) { - points += malus - } - if (name && ok) { - methods.push(name) - } - } +/***/ }), +/* 1222 */ +/***/ (function(module, exports, __webpack_require__) { - res.points = points - return res -} +var arrayLikeKeys = __webpack_require__(1202), + baseKeysIn = __webpack_require__(1223), + isArrayLike = __webpack_require__(1220); -const normalizeAccount = account => { - const normalizedAccountNumber = normalizeAccountNumber( - account.number, - account.iban - ) - return { - ...account, - rawNumber: account.number, - number: normalizedAccountNumber - } +/** + * Creates an array of the own and inherited enumerable property names of `object`. + * + * **Note:** Non-object values are coerced to objects. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.keysIn(new Foo); + * // => ['a', 'b', 'c'] (iteration order is not guaranteed) + */ +function keysIn(object) { + return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object); } -const exactMatchAttributes = ['iban', 'number'] +module.exports = keysIn; -const eqNotUndefined = (attr1, attr2) => { - return attr1 && attr1 === attr2 -} -const findMatch = (account, existingAccounts) => { - // Start with exact attribute matches - for (const exactAttribute of exactMatchAttributes) { - if (account[exactAttribute]) { - const result = findExactMatch(exactAttribute, account, existingAccounts) - if (result && result.match) { - return result - } - } - } +/***/ }), +/* 1223 */ +/***/ (function(module, exports, __webpack_require__) { - const matchOriginalNumber = existingAccounts.find( - otherAccount => - eqNotUndefined(account.originalNumber, otherAccount.number) || - eqNotUndefined(account.number, otherAccount.originalNumber) - ) - if (matchOriginalNumber) { - return { - match: matchOriginalNumber, - method: 'originalNumber-exact' - } - } +var isObject = __webpack_require__(1175), + isPrototype = __webpack_require__(1217), + nativeKeysIn = __webpack_require__(1224); - const matchRawNumberCurrencyType = existingAccounts.find( - otherAccount => - (eqNotUndefined(account.rawNumber, otherAccount.number) || - eqNotUndefined(account.number, otherAccount.rawNumber)) && - otherAccount.type == account.type && - otherAccount.currency == account.currency - ) - if (matchRawNumberCurrencyType) { - return { - match: matchRawNumberCurrencyType, - method: 'rawNumber-exact-currency-type' - } +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. + */ +function baseKeysIn(object) { + if (!isObject(object)) { + return nativeKeysIn(object); } + var isProto = isPrototype(object), + result = []; - // Now we get more fuzzy and score accounts - const scored = sortBy( - existingAccounts.map(existingAccount => score(account, existingAccount)), - x => -x.points - ) - const candidates = scored.filter(x => x.points > 0) - if (candidates.length > 0) { - return { - match: candidates[0].account, - method: candidates[0].methods.join('-') + for (var key in object) { + if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) { + result.push(key); } } + return result; } +module.exports = baseKeysIn; + + +/***/ }), +/* 1224 */ +/***/ (function(module, exports) { + /** - * Matches existing accounts with accounts fetched on a vendor - * - * @typedef {MatchResult} - * @property {io.cozy.account} account - Account from fetched accounts - * @property {io.cozy.account} match - Existing account that was matched. Null if no match was found. - * @property {string} method - How the two accounts were matched + * This function is like + * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys) + * except that it includes inherited enumerable properties. * - * @param {io.cozy.account} fetchedAccounts - Account that have been fetched - * on the vendor and that will be matched with existing accounts - * @param {io.cozy.accounts} existingAccounts - Will be match against (those - * io.cozy.accounts already have an _id) - * @return {Array<MatchResult>} - Match results (as many results as fetchedAccounts.length) + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names. */ -const matchAccounts = (fetchedAccountsArg, existingAccounts) => { - const fetchedAccounts = fetchedAccountsArg.map(normalizeAccount) - const toMatch = [...existingAccounts].map(normalizeAccount) - const results = [] - for (let fetchedAccount of fetchedAccounts) { - const matchResult = findMatch(fetchedAccount, toMatch) - if (matchResult) { - const i = toMatch.indexOf(matchResult.match) - toMatch.splice(i, 1) - results.push({ account: fetchedAccount, ...matchResult }) - } else { - results.push({ account: fetchedAccount }) +function nativeKeysIn(object) { + var result = []; + if (object != null) { + for (var key in Object(object)) { + result.push(key); } } - return results + return result; } -module.exports = { - matchAccounts, - normalizeAccountNumber, - score, - creditCardMatch, - approxNumberMatch -} +module.exports = nativeKeysIn; /***/ }), -/* 1200 */ -/***/ (function(module, exports) { +/* 1225 */ +/***/ (function(module, exports, __webpack_require__) { -const eitherIncludes = (str1, str2) => { - return Boolean(str1 && str2 && (str1.includes(str2) || str2.includes(str1))) -} +/* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(1171); -module.exports = { - eitherIncludes -} +/** Detect free variable `exports`. */ +var freeExports = true && exports && !exports.nodeType && exports; +/** Detect free variable `module`. */ +var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module; -/***/ }), -/* 1201 */ -/***/ (function(module, exports, __webpack_require__) { +/** Detect the popular CommonJS extension `module.exports`. */ +var moduleExports = freeModule && freeModule.exports === freeExports; -const log = __webpack_require__(2).namespace('slug-account') -const labelSlugs = __webpack_require__(1202) +/** Built-in value references. */ +var Buffer = moduleExports ? root.Buffer : undefined, + allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined; -const institutionLabelsCompiled = Object.entries(labelSlugs).map( - ([ilabelRx, slug]) => { - if (ilabelRx[0] === '/' && ilabelRx[ilabelRx.length - 1] === '/') { - return [new RegExp(ilabelRx.substr(1, ilabelRx.length - 2), 'i'), slug] - } else { - return [ilabelRx, slug] - } +/** + * Creates a clone of `buffer`. + * + * @private + * @param {Buffer} buffer The buffer to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Buffer} Returns the cloned buffer. + */ +function cloneBuffer(buffer, isDeep) { + if (isDeep) { + return buffer.slice(); } -) + var length = buffer.length, + result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length); -const getSlugFromInstitutionLabel = institutionLabel => { - if (!institutionLabel) { - log('warn', 'No institution label, cannot compute slug') - return - } - for (const [rx, slug] of institutionLabelsCompiled) { - if (rx instanceof RegExp) { - const match = institutionLabel.match(rx) - if (match) { - return slug - } - } else if (rx.toLowerCase() === institutionLabel.toLowerCase()) { - return slug - } - } - log('warn', `Could not compute slug for ${institutionLabel}`) + buffer.copy(result); + return result; } -module.exports = { - getSlugFromInstitutionLabel -} +module.exports = cloneBuffer; +/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) /***/ }), -/* 1202 */ +/* 1226 */ /***/ (function(module, exports) { -module.exports = { - 'AXA Banque': 'axabanque102', - '/Banque Populaire.*/': 'banquepopulaire', - BforBank: 'bforbank97', - 'BNP Paribas': 'bnpparibas82', - BNPP: 'bnpparibas82', - '/Boursorama.*/': 'boursorama83', - casden: 'casden173', - '/Hello bank!.*/': 'hellobank145', - Bred: 'bred', - CA: 'caatlantica3', - 'Carrefour Banque': 'carrefour159', - "/Caisse d'Épargne.*/": 'caissedepargne1', - 'Compte Nickel': 'comptenickel168', - '/^CIC.*/': 'cic63', - 'Crédit Agricole': 'caatlantica3', - 'Crédit Coopératif': 'creditcooperatif148', - '/Crédit du Nord.*/': 'cdngroup88', - '/Crédit Maritime.*/': 'creditmaritime', - '/Crédit Mutuel.*/': 'cic45', - '/Linxea/': 'linxea', - Fortuneo: 'fortuneo84', - 'Hello bank!': 'hellobank145', - 'HSBC France': 'hsbc119', - HSBC: 'hsbc119', - '/^ING.*/': 'ingdirect95', - '/La Banque Postale.*/': 'labanquepostale44', - '/LCL.*/': 'lcl-linxo', - Milleis: 'barclays136', - Monabanq: 'monabanq96', - 'Société Générale': 'societegenerale', - 'Société marseillaise de crédit': 'cdngroup109' +/** + * Copies the values of `source` to `array`. + * + * @private + * @param {Array} source The array to copy values from. + * @param {Array} [array=[]] The array to copy values to. + * @returns {Array} Returns `array`. + */ +function copyArray(source, array) { + var index = -1, + length = source.length; + + array || (array = Array(length)); + while (++index < length) { + array[index] = source[index]; + } + return array; } +module.exports = copyArray; + /***/ }), -/* 1203 */ +/* 1227 */ /***/ (function(module, exports, __webpack_require__) { -const fromPairs = __webpack_require__(557) -const log = __webpack_require__(2).namespace('BankingReconciliator') - -class BankingReconciliator { - constructor(options) { - this.options = options - } - - async saveAccounts(fetchedAccounts, options) { - const { BankAccount } = this.options +var copyObject = __webpack_require__(1200), + getSymbols = __webpack_require__(1228); - const stackAccounts = await BankAccount.fetchAll() +/** + * Copies own symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ +function copySymbols(source, object) { + return copyObject(source, getSymbols(source), object); +} - // Reconciliate - const reconciliatedAccounts = BankAccount.reconciliate( - fetchedAccounts, - stackAccounts - ) +module.exports = copySymbols; - log('info', 'Saving accounts...') - const savedAccounts = await BankAccount.bulkSave(reconciliatedAccounts, { - handleDuplicates: 'remove' - }) - if (options.onAccountsSaved) { - options.onAccountsSaved(savedAccounts) - } - return { savedAccounts, reconciliatedAccounts } - } +/***/ }), +/* 1228 */ +/***/ (function(module, exports, __webpack_require__) { - /** - * @typedef ReconciliatorResponse - * @attribute {Array<BankAccount>} accounts - * @attribute {Array<BankTransactions>} transactions - */ +var arrayFilter = __webpack_require__(1229), + stubArray = __webpack_require__(1230); - /** - * @typedef ReconciliatorSaveOptions - * @attribute {Function} logProgress - */ +/** Used for built-in method references. */ +var objectProto = Object.prototype; - /** - * Save new accounts and transactions - * - * @param {Array<BankAccount>} fetchedAccounts - * @param {Array<BankTransactions>} fetchedTransactions - * @param {ReconciliatorSaveOptions} options - * @returns {ReconciliatorResponse} - * - */ - async save(fetchedAccounts, fetchedTransactions, options = {}) { - const { BankAccount, BankTransaction } = this.options +/** Built-in value references. */ +var propertyIsEnumerable = objectProto.propertyIsEnumerable; - const { reconciliatedAccounts, savedAccounts } = await this.saveAccounts( - fetchedAccounts, - options - ) +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeGetSymbols = Object.getOwnPropertySymbols; - // Bank accounts saved in Cozy, we can now link transactions to accounts - // via their cozy id - const vendorIdToCozyId = fromPairs( - savedAccounts.map(acc => [acc[BankAccount.vendorIdAttr], acc._id]) - ) - log('info', 'Linking transactions to accounts...') - log('info', JSON.stringify(vendorIdToCozyId)) +/** + * Creates an array of the own enumerable symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. + */ +var getSymbols = !nativeGetSymbols ? stubArray : function(object) { + if (object == null) { + return []; + } + object = Object(object); + return arrayFilter(nativeGetSymbols(object), function(symbol) { + return propertyIsEnumerable.call(object, symbol); + }); +}; - fetchedTransactions.forEach(tr => { - tr.account = vendorIdToCozyId[tr[BankTransaction.vendorAccountIdAttr]] - if (tr.account === undefined) { - log( - 'warn', - `Transaction without account, vendorAccountIdAttr: ${BankTransaction.vendorAccountIdAttr}` - ) - log('warn', 'transaction: ' + JSON.stringify(tr)) - throw new Error('Transaction without account.') - } - }) +module.exports = getSymbols; - const reconciliatedAccountIds = new Set( - reconciliatedAccounts.filter(acc => acc._id).map(acc => acc._id) - ) - // Pass to transaction reconciliation only transactions that belong - // to one of the reconciliated accounts - const stackTransactions = (await BankTransaction.fetchAll()).filter( - transaction => reconciliatedAccountIds.has(transaction.account) - ) +/***/ }), +/* 1229 */ +/***/ (function(module, exports) { - const transactions = BankTransaction.reconciliate( - fetchedTransactions, - stackTransactions, - options - ) +/** + * A specialized version of `_.filter` for arrays without support for + * iteratee shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {Array} Returns the new filtered array. + */ +function arrayFilter(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length, + resIndex = 0, + result = []; - log('info', 'Saving transactions...') - let i = 1 - const logProgressFn = doc => { - log('debug', `[bulkSave] ${i++} Saving ${doc.date} ${doc.label}`) - } - const savedTransactions = await BankTransaction.bulkSave(transactions, { - concurrency: 30, - logProgress: - options.logProgress !== undefined ? options.logProgress : logProgressFn, - handleDuplicates: 'remove' - }) - return { - accounts: savedAccounts, - transactions: savedTransactions + while (++index < length) { + var value = array[index]; + if (predicate(value, index, array)) { + result[resIndex++] = value; } } + return result; } -module.exports = BankingReconciliator +module.exports = arrayFilter; /***/ }), -/* 1204 */ +/* 1230 */ +/***/ (function(module, exports) { + +/** + * This method returns a new empty array. + * + * @static + * @memberOf _ + * @since 4.13.0 + * @category Util + * @returns {Array} Returns the new empty array. + * @example + * + * var arrays = _.times(2, _.stubArray); + * + * console.log(arrays); + * // => [[], []] + * + * console.log(arrays[0] === arrays[1]); + * // => false + */ +function stubArray() { + return []; +} + +module.exports = stubArray; + + +/***/ }), +/* 1231 */ /***/ (function(module, exports, __webpack_require__) { -const keyBy = __webpack_require__(704) -const groupBy = __webpack_require__(729) -const maxBy = __webpack_require__(1170) -const addDays = __webpack_require__(1205) -const isAfter = __webpack_require__(1209) -const Document = __webpack_require__(1179) -const log = __webpack_require__(1195) -const BankAccount = __webpack_require__(1198) -const { matchTransactions } = __webpack_require__(1210) -const cloneDeep = __webpack_require__(579) +var copyObject = __webpack_require__(1200), + getSymbolsIn = __webpack_require__(1232); -const maxValue = (iterable, fn) => { - const res = maxBy(iterable, fn) - return res ? fn(res) : null +/** + * Copies own and inherited symbols of `source` to `object`. + * + * @private + * @param {Object} source The object to copy symbols from. + * @param {Object} [object={}] The object to copy symbols to. + * @returns {Object} Returns `object`. + */ +function copySymbolsIn(source, object) { + return copyObject(source, getSymbolsIn(source), object); } -const getDate = transaction => { - const date = transaction.realisationDate || transaction.date - return date.slice(0, 10) -} +module.exports = copySymbolsIn; + + +/***/ }), +/* 1232 */ +/***/ (function(module, exports, __webpack_require__) { + +var arrayPush = __webpack_require__(1233), + getPrototype = __webpack_require__(1234), + getSymbols = __webpack_require__(1228), + stubArray = __webpack_require__(1230); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeGetSymbols = Object.getOwnPropertySymbols; /** - * Get the date of the latest transaction in an array. - * Transactions in the future are ignored. + * Creates an array of the own and inherited enumerable symbols of `object`. * - * @param {array} stackTransactions - * @returns {string} The date of the latest transaction (YYYY-MM-DD) + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of symbols. */ -const getSplitDate = stackTransactions => { - const now = new Date() - const notFutureTransactions = stackTransactions.filter(transaction => { - const date = getDate(transaction) - return !isAfter(date, now) - }) +var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) { + var result = []; + while (object) { + arrayPush(result, getSymbols(object)); + object = getPrototype(object); + } + return result; +}; - return maxValue(notFutureTransactions, getDate) -} +module.exports = getSymbolsIn; -const ensureISOString = date => { - if (date instanceof Date) { - return date.toISOString() - } else { - return date - } -} -class Transaction extends Document { - static getDate(transaction) { - return transaction - } +/***/ }), +/* 1233 */ +/***/ (function(module, exports) { - isAfter(minDate) { - if (!minDate) { - return true - } else { - const day = ensureISOString(this.date).slice(0, 10) - if (day !== 'NaN') { - return day > minDate - } else { - log( - 'warn', - 'transaction date could not be parsed. transaction: ' + - JSON.stringify(this) - ) - return false - } - } - } +/** + * Appends the elements of `values` to `array`. + * + * @private + * @param {Array} array The array to modify. + * @param {Array} values The values to append. + * @returns {Array} Returns `array`. + */ +function arrayPush(array, values) { + var index = -1, + length = values.length, + offset = array.length; - isBeforeOrSame(maxDate) { - if (!maxDate) { - return true - } else { - const day = ensureISOString(this.date).slice(0, 10) - if (day !== 'NaN') { - return day <= maxDate - } else { - log( - 'warn', - 'transaction date could not be parsed. transaction: ' + - JSON.stringify(this) - ) - return false - } - } + while (++index < length) { + array[offset + index] = values[index]; } + return array; +} - /** - * Get the descriptive (and almost uniq) identifier of a transaction - * @param {object} transaction - The transaction (containing at least amount, originalBankLabel and date) - * @returns {object} - */ - getIdentifier() { - return `${this.amount}-${this.originalBankLabel}-${this.date}` - } +module.exports = arrayPush; - /** - * Get transactions that should be present in the stack but are not. - * Transactions that are older that 1 week before the oldest existing - * transaction are ignored. - * - * @param {array} newTransactions - * @param {array} stackTransactions - * @returns {array} - */ - static getMissedTransactions( - newTransactions, - stackTransactions, - options = {} - ) { - const oldestDate = maxValue(stackTransactions, getDate) - const frontierDate = addDays(oldestDate, -7) - const recentNewTransactions = newTransactions.filter(tr => - isAfter(getDate(tr), frontierDate) - ) - const matchingResults = Array.from( - matchTransactions(recentNewTransactions, stackTransactions) - ) - const missedTransactions = matchingResults - .filter(result => !result.match) - .map(result => result.transaction) +/***/ }), +/* 1234 */ +/***/ (function(module, exports, __webpack_require__) { - const trackEvent = options.trackEvent - if (typeof trackEvent === 'function') { - try { - const nbMissed = missedTransactions.length - const nbExisting = stackTransactions.length - trackEvent({ - e_a: 'ReconciliateMissing', - e_n: 'MissedTransactionPct', - e_v: parseFloat((nbMissed / nbExisting).toFixed(2), 10) - }) - trackEvent({ - e_a: 'ReconciliateMissing', - e_n: 'MissedTransactionAbs', - e_v: nbMissed - }) - } catch (e) { - log('warn', `Could not send MissedTransaction event: ${e.message}`) - } - } +var overArg = __webpack_require__(1219); - return missedTransactions - } +/** Built-in value references. */ +var getPrototype = overArg(Object.getPrototypeOf, Object); - /** - * Reconcialiate remote transaction with local transaction - * - * @param {Array} remoteTransactions - * @param {Array} localTransactions - * @param {Function} options.trackEvent : this callback will be called in case of split date - * @param {Boolean} options.useSplitDate : should look for a split date or not (default true) - * @returns {Array} : reconciliated transactions - */ - static reconciliate(remoteTransactions, localTransactions, options = {}) { - const localOptions = cloneDeep(options) - if (localOptions.useSplitDate !== false) { - localOptions.useSplitDate = true - } - const findByVendorId = transaction => - localTransactions.find(t => t.vendorId === transaction.vendorId) +module.exports = getPrototype; - const groups = groupBy(remoteTransactions, transaction => - findByVendorId(transaction) ? 'updatedTransactions' : 'newTransactions' - ) - let newTransactions = groups.newTransactions || [] - const updatedTransactions = groups.updatedTransactions || [] +/***/ }), +/* 1235 */ +/***/ (function(module, exports, __webpack_require__) { - const splitDate = localOptions.useSplitDate - ? getSplitDate(localTransactions) - : false +var baseGetAllKeys = __webpack_require__(1236), + getSymbols = __webpack_require__(1228), + keys = __webpack_require__(1201); - if (splitDate) { - if (typeof localOptions.trackEvent === 'function') { - localOptions.trackEvent({ - e_a: 'ReconciliateSplitDate' - }) - } +/** + * Creates an array of own enumerable property names and symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ +function getAllKeys(object) { + return baseGetAllKeys(object, keys, getSymbols); +} - const isAfterSplit = x => Transaction.prototype.isAfter.call(x, splitDate) - const isBeforeSplit = x => - Transaction.prototype.isBeforeOrSame.call(x, splitDate) +module.exports = getAllKeys; - const transactionsAfterSplit = newTransactions.filter(isAfterSplit) - if (transactionsAfterSplit.length > 0) { - log( - 'info', - `Found ${transactionsAfterSplit.length} transactions after ${splitDate}` - ) - } else { - log('info', `No transaction after ${splitDate}`) - } +/***/ }), +/* 1236 */ +/***/ (function(module, exports, __webpack_require__) { - const transactionsBeforeSplit = newTransactions.filter(isBeforeSplit) - log( - 'info', - `Found ${transactionsBeforeSplit.length} transactions before ${splitDate}` - ) +var arrayPush = __webpack_require__(1233), + isArray = __webpack_require__(1207); - const missedTransactions = Transaction.getMissedTransactions( - transactionsBeforeSplit, - localTransactions, - localOptions - ) +/** + * The base implementation of `getAllKeys` and `getAllKeysIn` which uses + * `keysFunc` and `symbolsFunc` to get the enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Function} keysFunc The function to get the keys of `object`. + * @param {Function} symbolsFunc The function to get the symbols of `object`. + * @returns {Array} Returns the array of property names and symbols. + */ +function baseGetAllKeys(object, keysFunc, symbolsFunc) { + var result = keysFunc(object); + return isArray(object) ? result : arrayPush(result, symbolsFunc(object)); +} - if (missedTransactions.length > 0) { - log( - 'info', - `Found ${missedTransactions.length} missed transactions before ${splitDate}` - ) - } else { - log('info', `No missed transactions before ${splitDate}`) - } +module.exports = baseGetAllKeys; - newTransactions = [...transactionsAfterSplit, ...missedTransactions] - } else { - log('info', "Can't find a split date, saving all new transactions") - } - log( - 'info', - `Transaction reconciliation: new ${newTransactions.length}, updated ${updatedTransactions.length}, split date ${splitDate} ` - ) - return [].concat(newTransactions).concat(updatedTransactions) - } +/***/ }), +/* 1237 */ +/***/ (function(module, exports, __webpack_require__) { - static async getMostRecentForAccounts(accountIds) { - try { - log('debug', 'Transaction.getLast') +var baseGetAllKeys = __webpack_require__(1236), + getSymbolsIn = __webpack_require__(1232), + keysIn = __webpack_require__(1222); - const index = await Document.getIndex(this.doctype, ['date', 'account']) - const options = { - selector: { - date: { $gte: null }, - account: { - $in: accountIds - } - }, - sort: [{ date: 'desc' }] - } - const transactions = await Document.query(index, options) - log('info', 'last transactions length: ' + transactions.length) +/** + * Creates an array of own and inherited enumerable property names and + * symbols of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property names and symbols. + */ +function getAllKeysIn(object) { + return baseGetAllKeys(object, keysIn, getSymbolsIn); +} - return transactions - } catch (e) { - log('error', e) +module.exports = getAllKeysIn; - return [] - } - } - static async deleteOrphans() { - log('info', 'Deleting up orphan operations') - const accounts = keyBy(await BankAccount.fetchAll(), '_id') - const operations = await this.fetchAll() - const orphanOperations = operations.filter(x => !accounts[x.account]) - log('info', `Total number of operations: ${operations.length}`) - log('info', `Total number of orphan operations: ${orphanOperations.length}`) - log('info', `Deleting ${orphanOperations.length} orphan operations...`) - if (orphanOperations.length > 0) { - return this.deleteAll(orphanOperations) - } - } +/***/ }), +/* 1238 */ +/***/ (function(module, exports, __webpack_require__) { - getVendorAccountId() { - return this[this.constructor.vendorAccountIdAttr] - } +var DataView = __webpack_require__(1239), + Map = __webpack_require__(1165), + Promise = __webpack_require__(1240), + Set = __webpack_require__(1241), + WeakMap = __webpack_require__(1242), + baseGetTag = __webpack_require__(1169), + toSource = __webpack_require__(1178); - static getCategoryId(transaction, options) { - const opts = { - localModelOverride: false, - localModelUsageThreshold: this.LOCAL_MODEL_USAGE_THRESHOLD, - globalModelUsageThreshold: this.GLOBAL_MODEL_USAGE_THRESHOLD, - ...options - } +/** `Object#toString` result references. */ +var mapTag = '[object Map]', + objectTag = '[object Object]', + promiseTag = '[object Promise]', + setTag = '[object Set]', + weakMapTag = '[object WeakMap]'; - if (transaction.manualCategoryId) { - return transaction.manualCategoryId - } +var dataViewTag = '[object DataView]'; - if ( - opts.localModelOverride && - transaction.localCategoryId && - transaction.localCategoryProba && - transaction.localCategoryProba > opts.localModelUsageThreshold - ) { - return transaction.localCategoryId - } +/** Used to detect maps, sets, and weakmaps. */ +var dataViewCtorString = toSource(DataView), + mapCtorString = toSource(Map), + promiseCtorString = toSource(Promise), + setCtorString = toSource(Set), + weakMapCtorString = toSource(WeakMap); - if ( - transaction.cozyCategoryId && - transaction.cozyCategoryProba && - transaction.cozyCategoryProba > opts.globalModelUsageThreshold - ) { - return transaction.cozyCategoryId - } +/** + * Gets the `toStringTag` of `value`. + * + * @private + * @param {*} value The value to query. + * @returns {string} Returns the `toStringTag`. + */ +var getTag = baseGetTag; - // If the cozy categorization models have not been applied, we return null - // so the transaction is considered as « categorization in progress ». - // Otherwize we just use the automatic categorization from the vendor - if (!transaction.localCategoryId && !transaction.cozyCategoryId) { - return null - } +// Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6. +if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) || + (Map && getTag(new Map) != mapTag) || + (Promise && getTag(Promise.resolve()) != promiseTag) || + (Set && getTag(new Set) != setTag) || + (WeakMap && getTag(new WeakMap) != weakMapTag)) { + getTag = function(value) { + var result = baseGetTag(value), + Ctor = result == objectTag ? value.constructor : undefined, + ctorString = Ctor ? toSource(Ctor) : ''; - return transaction.automaticCategoryId - } + if (ctorString) { + switch (ctorString) { + case dataViewCtorString: return dataViewTag; + case mapCtorString: return mapTag; + case promiseCtorString: return promiseTag; + case setCtorString: return setTag; + case weakMapCtorString: return weakMapTag; + } + } + return result; + }; } -Transaction.doctype = 'io.cozy.bank.operations' -Transaction.version = 1 -Transaction.vendorAccountIdAttr = 'vendorAccountId' -Transaction.vendorIdAttr = 'vendorId' -Transaction.idAttributes = ['vendorId'] -Transaction.checkedAttributes = [ - 'label', - 'originalBankLabel', - 'automaticCategoryId', - 'account' -] -Transaction.LOCAL_MODEL_USAGE_THRESHOLD = 0.8 -Transaction.GLOBAL_MODEL_USAGE_THRESHOLD = 0.15 -Transaction.getSplitDate = getSplitDate -module.exports = Transaction +module.exports = getTag; /***/ }), -/* 1205 */ +/* 1239 */ /***/ (function(module, exports, __webpack_require__) { -var parse = __webpack_require__(1206) +var getNative = __webpack_require__(1166), + root = __webpack_require__(1171); -/** - * @category Day Helpers - * @summary Add the specified number of days to the given date. - * - * @description - * Add the specified number of days to the given date. - * - * @param {Date|String|Number} date - the date to be changed - * @param {Number} amount - the amount of days to be added - * @returns {Date} the new date with the days added - * - * @example - * // Add 10 days to 1 September 2014: - * var result = addDays(new Date(2014, 8, 1), 10) - * //=> Thu Sep 11 2014 00:00:00 - */ -function addDays (dirtyDate, dirtyAmount) { - var date = parse(dirtyDate) - var amount = Number(dirtyAmount) - date.setDate(date.getDate() + amount) - return date -} +/* Built-in method references that are verified to be native. */ +var DataView = getNative(root, 'DataView'); -module.exports = addDays +module.exports = DataView; /***/ }), -/* 1206 */ +/* 1240 */ /***/ (function(module, exports, __webpack_require__) { -var getTimezoneOffsetInMilliseconds = __webpack_require__(1207) -var isDate = __webpack_require__(1208) +var getNative = __webpack_require__(1166), + root = __webpack_require__(1171); -var MILLISECONDS_IN_HOUR = 3600000 -var MILLISECONDS_IN_MINUTE = 60000 -var DEFAULT_ADDITIONAL_DIGITS = 2 +/* Built-in method references that are verified to be native. */ +var Promise = getNative(root, 'Promise'); -var parseTokenDateTimeDelimeter = /[T ]/ -var parseTokenPlainTime = /:/ +module.exports = Promise; -// year tokens -var parseTokenYY = /^(\d{2})$/ -var parseTokensYYY = [ - /^([+-]\d{2})$/, // 0 additional digits - /^([+-]\d{3})$/, // 1 additional digit - /^([+-]\d{4})$/ // 2 additional digits -] -var parseTokenYYYY = /^(\d{4})/ -var parseTokensYYYYY = [ - /^([+-]\d{4})/, // 0 additional digits - /^([+-]\d{5})/, // 1 additional digit - /^([+-]\d{6})/ // 2 additional digits -] +/***/ }), +/* 1241 */ +/***/ (function(module, exports, __webpack_require__) { -// date tokens -var parseTokenMM = /^-(\d{2})$/ -var parseTokenDDD = /^-?(\d{3})$/ -var parseTokenMMDD = /^-?(\d{2})-?(\d{2})$/ -var parseTokenWww = /^-?W(\d{2})$/ -var parseTokenWwwD = /^-?W(\d{2})-?(\d{1})$/ +var getNative = __webpack_require__(1166), + root = __webpack_require__(1171); -// time tokens -var parseTokenHH = /^(\d{2}([.,]\d*)?)$/ -var parseTokenHHMM = /^(\d{2}):?(\d{2}([.,]\d*)?)$/ -var parseTokenHHMMSS = /^(\d{2}):?(\d{2}):?(\d{2}([.,]\d*)?)$/ +/* Built-in method references that are verified to be native. */ +var Set = getNative(root, 'Set'); -// timezone tokens -var parseTokenTimezone = /([Z+-].*)$/ -var parseTokenTimezoneZ = /^(Z)$/ -var parseTokenTimezoneHH = /^([+-])(\d{2})$/ -var parseTokenTimezoneHHMM = /^([+-])(\d{2}):?(\d{2})$/ +module.exports = Set; -/** - * @category Common Helpers - * @summary Convert the given argument to an instance of Date. - * - * @description - * Convert the given argument to an instance of Date. - * - * If the argument is an instance of Date, the function returns its clone. - * - * If the argument is a number, it is treated as a timestamp. - * - * If an argument is a string, the function tries to parse it. - * Function accepts complete ISO 8601 formats as well as partial implementations. - * ISO 8601: http://en.wikipedia.org/wiki/ISO_8601 - * - * If all above fails, the function passes the given argument to Date constructor. - * - * @param {Date|String|Number} argument - the value to convert - * @param {Object} [options] - the object with options - * @param {0 | 1 | 2} [options.additionalDigits=2] - the additional number of digits in the extended year format - * @returns {Date} the parsed date in the local time zone - * - * @example - * // Convert string '2014-02-11T11:30:30' to date: - * var result = parse('2014-02-11T11:30:30') - * //=> Tue Feb 11 2014 11:30:30 - * - * @example - * // Parse string '+02014101', - * // if the additional number of digits in the extended year format is 1: - * var result = parse('+02014101', {additionalDigits: 1}) - * //=> Fri Apr 11 2014 00:00:00 - */ -function parse (argument, dirtyOptions) { - if (isDate(argument)) { - // Prevent the date to lose the milliseconds when passed to new Date() in IE10 - return new Date(argument.getTime()) - } else if (typeof argument !== 'string') { - return new Date(argument) - } - var options = dirtyOptions || {} - var additionalDigits = options.additionalDigits - if (additionalDigits == null) { - additionalDigits = DEFAULT_ADDITIONAL_DIGITS - } else { - additionalDigits = Number(additionalDigits) - } +/***/ }), +/* 1242 */ +/***/ (function(module, exports, __webpack_require__) { - var dateStrings = splitDateString(argument) +var getNative = __webpack_require__(1166), + root = __webpack_require__(1171); - var parseYearResult = parseYear(dateStrings.date, additionalDigits) - var year = parseYearResult.year - var restDateString = parseYearResult.restDateString +/* Built-in method references that are verified to be native. */ +var WeakMap = getNative(root, 'WeakMap'); - var date = parseDate(restDateString, year) +module.exports = WeakMap; - if (date) { - var timestamp = date.getTime() - var time = 0 - var offset - if (dateStrings.time) { - time = parseTime(dateStrings.time) - } +/***/ }), +/* 1243 */ +/***/ (function(module, exports) { - if (dateStrings.timezone) { - offset = parseTimezone(dateStrings.timezone) * MILLISECONDS_IN_MINUTE - } else { - var fullTime = timestamp + time - var fullTimeDate = new Date(fullTime) +/** Used for built-in method references. */ +var objectProto = Object.prototype; - offset = getTimezoneOffsetInMilliseconds(fullTimeDate) +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; - // Adjust time when it's coming from DST - var fullTimeDateNextDay = new Date(fullTime) - fullTimeDateNextDay.setDate(fullTimeDate.getDate() + 1) - var offsetDiff = - getTimezoneOffsetInMilliseconds(fullTimeDateNextDay) - - getTimezoneOffsetInMilliseconds(fullTimeDate) - if (offsetDiff > 0) { - offset += offsetDiff - } - } +/** + * Initializes an array clone. + * + * @private + * @param {Array} array The array to clone. + * @returns {Array} Returns the initialized clone. + */ +function initCloneArray(array) { + var length = array.length, + result = new array.constructor(length); - return new Date(timestamp + time + offset) - } else { - return new Date(argument) + // Add properties assigned by `RegExp#exec`. + if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { + result.index = array.index; + result.input = array.input; } + return result; } -function splitDateString (dateString) { - var dateStrings = {} - var array = dateString.split(parseTokenDateTimeDelimeter) - var timeString +module.exports = initCloneArray; - if (parseTokenPlainTime.test(array[0])) { - dateStrings.date = null - timeString = array[0] - } else { - dateStrings.date = array[0] - timeString = array[1] - } - if (timeString) { - var token = parseTokenTimezone.exec(timeString) - if (token) { - dateStrings.time = timeString.replace(token[1], '') - dateStrings.timezone = token[1] - } else { - dateStrings.time = timeString - } - } +/***/ }), +/* 1244 */ +/***/ (function(module, exports, __webpack_require__) { - return dateStrings -} +var cloneArrayBuffer = __webpack_require__(1245), + cloneDataView = __webpack_require__(1247), + cloneRegExp = __webpack_require__(1248), + cloneSymbol = __webpack_require__(1249), + cloneTypedArray = __webpack_require__(1250); -function parseYear (dateString, additionalDigits) { - var parseTokenYYY = parseTokensYYY[additionalDigits] - var parseTokenYYYYY = parseTokensYYYYY[additionalDigits] +/** `Object#toString` result references. */ +var boolTag = '[object Boolean]', + dateTag = '[object Date]', + mapTag = '[object Map]', + numberTag = '[object Number]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]'; + +var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]', + float32Tag = '[object Float32Array]', + float64Tag = '[object Float64Array]', + int8Tag = '[object Int8Array]', + int16Tag = '[object Int16Array]', + int32Tag = '[object Int32Array]', + uint8Tag = '[object Uint8Array]', + uint8ClampedTag = '[object Uint8ClampedArray]', + uint16Tag = '[object Uint16Array]', + uint32Tag = '[object Uint32Array]'; + +/** + * Initializes an object clone based on its `toStringTag`. + * + * **Note:** This function only supports cloning values with tags of + * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`. + * + * @private + * @param {Object} object The object to clone. + * @param {string} tag The `toStringTag` of the object to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the initialized clone. + */ +function initCloneByTag(object, tag, isDeep) { + var Ctor = object.constructor; + switch (tag) { + case arrayBufferTag: + return cloneArrayBuffer(object); - var token + case boolTag: + case dateTag: + return new Ctor(+object); - // YYYY or ±YYYYY - token = parseTokenYYYY.exec(dateString) || parseTokenYYYYY.exec(dateString) - if (token) { - var yearString = token[1] - return { - year: parseInt(yearString, 10), - restDateString: dateString.slice(yearString.length) - } - } + case dataViewTag: + return cloneDataView(object, isDeep); - // YY or ±YYY - token = parseTokenYY.exec(dateString) || parseTokenYYY.exec(dateString) - if (token) { - var centuryString = token[1] - return { - year: parseInt(centuryString, 10) * 100, - restDateString: dateString.slice(centuryString.length) - } - } + case float32Tag: case float64Tag: + case int8Tag: case int16Tag: case int32Tag: + case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: + return cloneTypedArray(object, isDeep); - // Invalid ISO-formatted year - return { - year: null - } -} + case mapTag: + return new Ctor; -function parseDate (dateString, year) { - // Invalid ISO-formatted year - if (year === null) { - return null - } + case numberTag: + case stringTag: + return new Ctor(object); - var token - var date - var month - var week + case regexpTag: + return cloneRegExp(object); - // YYYY - if (dateString.length === 0) { - date = new Date(0) - date.setUTCFullYear(year) - return date - } + case setTag: + return new Ctor; - // YYYY-MM - token = parseTokenMM.exec(dateString) - if (token) { - date = new Date(0) - month = parseInt(token[1], 10) - 1 - date.setUTCFullYear(year, month) - return date + case symbolTag: + return cloneSymbol(object); } +} - // YYYY-DDD or YYYYDDD - token = parseTokenDDD.exec(dateString) - if (token) { - date = new Date(0) - var dayOfYear = parseInt(token[1], 10) - date.setUTCFullYear(year, 0, dayOfYear) - return date - } +module.exports = initCloneByTag; - // YYYY-MM-DD or YYYYMMDD - token = parseTokenMMDD.exec(dateString) - if (token) { - date = new Date(0) - month = parseInt(token[1], 10) - 1 - var day = parseInt(token[2], 10) - date.setUTCFullYear(year, month, day) - return date - } - // YYYY-Www or YYYYWww - token = parseTokenWww.exec(dateString) - if (token) { - week = parseInt(token[1], 10) - 1 - return dayOfISOYear(year, week) - } +/***/ }), +/* 1245 */ +/***/ (function(module, exports, __webpack_require__) { - // YYYY-Www-D or YYYYWwwD - token = parseTokenWwwD.exec(dateString) - if (token) { - week = parseInt(token[1], 10) - 1 - var dayOfWeek = parseInt(token[2], 10) - 1 - return dayOfISOYear(year, week, dayOfWeek) - } +var Uint8Array = __webpack_require__(1246); - // Invalid ISO-formatted date - return null +/** + * Creates a clone of `arrayBuffer`. + * + * @private + * @param {ArrayBuffer} arrayBuffer The array buffer to clone. + * @returns {ArrayBuffer} Returns the cloned array buffer. + */ +function cloneArrayBuffer(arrayBuffer) { + var result = new arrayBuffer.constructor(arrayBuffer.byteLength); + new Uint8Array(result).set(new Uint8Array(arrayBuffer)); + return result; } -function parseTime (timeString) { - var token - var hours - var minutes - - // hh - token = parseTokenHH.exec(timeString) - if (token) { - hours = parseFloat(token[1].replace(',', '.')) - return (hours % 24) * MILLISECONDS_IN_HOUR - } +module.exports = cloneArrayBuffer; - // hh:mm or hhmm - token = parseTokenHHMM.exec(timeString) - if (token) { - hours = parseInt(token[1], 10) - minutes = parseFloat(token[2].replace(',', '.')) - return (hours % 24) * MILLISECONDS_IN_HOUR + - minutes * MILLISECONDS_IN_MINUTE - } - // hh:mm:ss or hhmmss - token = parseTokenHHMMSS.exec(timeString) - if (token) { - hours = parseInt(token[1], 10) - minutes = parseInt(token[2], 10) - var seconds = parseFloat(token[3].replace(',', '.')) - return (hours % 24) * MILLISECONDS_IN_HOUR + - minutes * MILLISECONDS_IN_MINUTE + - seconds * 1000 - } +/***/ }), +/* 1246 */ +/***/ (function(module, exports, __webpack_require__) { - // Invalid ISO-formatted time - return null -} +var root = __webpack_require__(1171); -function parseTimezone (timezoneString) { - var token - var absoluteOffset +/** Built-in value references. */ +var Uint8Array = root.Uint8Array; - // Z - token = parseTokenTimezoneZ.exec(timezoneString) - if (token) { - return 0 - } +module.exports = Uint8Array; - // ±hh - token = parseTokenTimezoneHH.exec(timezoneString) - if (token) { - absoluteOffset = parseInt(token[2], 10) * 60 - return (token[1] === '+') ? -absoluteOffset : absoluteOffset - } - // ±hh:mm or ±hhmm - token = parseTokenTimezoneHHMM.exec(timezoneString) - if (token) { - absoluteOffset = parseInt(token[2], 10) * 60 + parseInt(token[3], 10) - return (token[1] === '+') ? -absoluteOffset : absoluteOffset - } +/***/ }), +/* 1247 */ +/***/ (function(module, exports, __webpack_require__) { - return 0 -} +var cloneArrayBuffer = __webpack_require__(1245); -function dayOfISOYear (isoYear, week, day) { - week = week || 0 - day = day || 0 - var date = new Date(0) - date.setUTCFullYear(isoYear, 0, 4) - var fourthOfJanuaryDay = date.getUTCDay() || 7 - var diff = week * 7 + day + 1 - fourthOfJanuaryDay - date.setUTCDate(date.getUTCDate() + diff) - return date +/** + * Creates a clone of `dataView`. + * + * @private + * @param {Object} dataView The data view to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned data view. + */ +function cloneDataView(dataView, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer; + return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength); } -module.exports = parse +module.exports = cloneDataView; /***/ }), -/* 1207 */ +/* 1248 */ /***/ (function(module, exports) { -var MILLISECONDS_IN_MINUTE = 60000 +/** Used to match `RegExp` flags from their coerced string values. */ +var reFlags = /\w*$/; /** - * Google Chrome as of 67.0.3396.87 introduced timezones with offset that includes seconds. - * They usually appear for dates that denote time before the timezones were introduced - * (e.g. for 'Europe/Prague' timezone the offset is GMT+00:57:44 before 1 October 1891 - * and GMT+01:00:00 after that date) - * - * Date#getTimezoneOffset returns the offset in minutes and would return 57 for the example above, - * which would lead to incorrect calculations. + * Creates a clone of `regexp`. * - * This function returns the timezone offset in milliseconds that takes seconds in account. + * @private + * @param {Object} regexp The regexp to clone. + * @returns {Object} Returns the cloned regexp. */ -module.exports = function getTimezoneOffsetInMilliseconds (dirtyDate) { - var date = new Date(dirtyDate.getTime()) - var baseTimezoneOffset = date.getTimezoneOffset() - date.setSeconds(0, 0) - var millisecondsPartOfTimezoneOffset = date.getTime() % MILLISECONDS_IN_MINUTE - - return baseTimezoneOffset * MILLISECONDS_IN_MINUTE + millisecondsPartOfTimezoneOffset +function cloneRegExp(regexp) { + var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); + result.lastIndex = regexp.lastIndex; + return result; } +module.exports = cloneRegExp; + /***/ }), -/* 1208 */ -/***/ (function(module, exports) { +/* 1249 */ +/***/ (function(module, exports, __webpack_require__) { + +var Symbol = __webpack_require__(1170); + +/** Used to convert symbols to primitives and strings. */ +var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolValueOf = symbolProto ? symbolProto.valueOf : undefined; /** - * @category Common Helpers - * @summary Is the given argument an instance of Date? - * - * @description - * Is the given argument an instance of Date? - * - * @param {*} argument - the argument to check - * @returns {Boolean} the given argument is an instance of Date + * Creates a clone of the `symbol` object. * - * @example - * // Is 'mayonnaise' a Date? - * var result = isDate('mayonnaise') - * //=> false + * @private + * @param {Object} symbol The symbol object to clone. + * @returns {Object} Returns the cloned symbol object. */ -function isDate (argument) { - return argument instanceof Date +function cloneSymbol(symbol) { + return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {}; } -module.exports = isDate +module.exports = cloneSymbol; /***/ }), -/* 1209 */ +/* 1250 */ /***/ (function(module, exports, __webpack_require__) { -var parse = __webpack_require__(1206) +var cloneArrayBuffer = __webpack_require__(1245); /** - * @category Common Helpers - * @summary Is the first date after the second one? - * - * @description - * Is the first date after the second one? - * - * @param {Date|String|Number} date - the date that should be after the other one to return true - * @param {Date|String|Number} dateToCompare - the date to compare with - * @returns {Boolean} the first date is after the second date + * Creates a clone of `typedArray`. * - * @example - * // Is 10 July 1989 after 11 February 1987? - * var result = isAfter(new Date(1989, 6, 10), new Date(1987, 1, 11)) - * //=> true + * @private + * @param {Object} typedArray The typed array to clone. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the cloned typed array. */ -function isAfter (dirtyDate, dirtyDateToCompare) { - var date = parse(dirtyDate) - var dateToCompare = parse(dirtyDateToCompare) - return date.getTime() > dateToCompare.getTime() +function cloneTypedArray(typedArray, isDeep) { + var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer; + return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length); } -module.exports = isAfter +module.exports = cloneTypedArray; /***/ }), -/* 1210 */ +/* 1251 */ /***/ (function(module, exports, __webpack_require__) { -const groupBy = __webpack_require__(729) -const sortBy = __webpack_require__(826) -const { eitherIncludes } = __webpack_require__(1200) - -const getDateTransaction = op => op.date.substr(0, 10) +var baseCreate = __webpack_require__(1252), + getPrototype = __webpack_require__(1234), + isPrototype = __webpack_require__(1217); /** - * Groups `iterables` via `grouper` and returns an iterator - * that yields [groupKey, groups] + * Initializes an object clone. + * + * @private + * @param {Object} object The object to clone. + * @returns {Object} Returns the initialized clone. */ -const zipGroup = function*(iterables, grouper) { - const grouped = iterables.map(items => groupBy(items, grouper)) - for (const key of Object.keys(grouped[0]).sort()) { - const groups = grouped.map(keyedGroups => keyedGroups[key] || []) - yield [key, groups] - } -} - -const squash = (str, char) => { - const rx = new RegExp(String.raw`${char}{2,}`, 'gi') - return str && str.replace(rx, char) +function initCloneObject(object) { + return (typeof object.constructor == 'function' && !isPrototype(object)) + ? baseCreate(getPrototype(object)) + : {}; } -const redactedNumber = /\b[0-9X]+\b/gi -const dateRx = /\b\d{2}\/\d{2}\/\d{4}\b/g - -const cleanLabel = label => label && label.replace(redactedNumber, '') -const withoutDate = str => str && str.replace(dateRx, '') -const compacted = str => str && str.replace(/\s/g, '').replace(/-/g, '') +module.exports = initCloneObject; -const scoreLabel = (newTr, existingTr) => { - if ( - squash(existingTr.originalBankLabel, ' ') === - squash(newTr.originalBankLabel, ' ') - ) { - return [200, 'originalBankLabel'] - } else if ( - compacted(existingTr.originalBankLabel) === - compacted(newTr.originalBankLabel) - ) { - return [120, 'originalBankLabelCompacted'] - } else if ( - withoutDate(existingTr.originalBankLabel) === - withoutDate(newTr.originalBankLabel) - ) { - // For some transfers, the date in the originalBankLabel is different between - // BudgetInsight and Linxo - return [150, 'originalBankLabelWithoutDate'] - } else if (existingTr.label === newTr.label) { - return [100, 'label'] - } else if ( - eitherIncludes(existingTr.label.toLowerCase(), newTr.label.toLowerCase()) - ) { - return [70, 'eitherIncludes'] - } else if ( - eitherIncludes( - cleanLabel(existingTr.label.toLowerCase()), - cleanLabel(newTr.label.toLowerCase()) - ) - ) { - return [50, 'fuzzy-eitherIncludes'] - } else { - // Nothing matches, we penalize so that the score is below 0 - return [-1000, 'label-penalty'] - } -} -const DAY = 1000 * 60 * 60 * 24 +/***/ }), +/* 1252 */ +/***/ (function(module, exports, __webpack_require__) { -const getDeltaDate = (newTr, existingTr) => { - const nDate1 = new Date(newTr.date.substr(0, 10)) - const eDate1 = new Date(existingTr.date.substr(0, 10)) - const delta = Math.abs(eDate1 - nDate1) - if (newTr.realisationDate) { - const nDate2 = new Date(newTr.realisationDate.substr(0, 10)) - const delta2 = Math.abs(eDate1 - nDate2) - return Math.min(delta, delta2) - } else { - return delta - } -} +var isObject = __webpack_require__(1175); -const scoreMatching = (newTr, existingTr, options = {}) => { - const methods = [] - const res = { - op: existingTr, - methods - } +/** Built-in value references. */ +var objectCreate = Object.create; - if (options.maxDateDelta) { - const delta = getDeltaDate(newTr, existingTr) - if (delta > options.maxDateDelta) { - // Early exit, transactions are two far off time-wise - res.points = -1000 - return res - } else { - methods.push('approx-date') +/** + * The base implementation of `_.create` without support for assigning + * properties to the created object. + * + * @private + * @param {Object} proto The object to inherit from. + * @returns {Object} Returns the new object. + */ +var baseCreate = (function() { + function object() {} + return function(proto) { + if (!isObject(proto)) { + return {}; } - } + if (objectCreate) { + return objectCreate(proto); + } + object.prototype = proto; + var result = new object; + object.prototype = undefined; + return result; + }; +}()); - const [labelPoints, labelMethod] = scoreLabel(newTr, existingTr) - methods.push(labelMethod) - const amountDiff = Math.abs(existingTr.amount - newTr.amount) - const amountPoints = amountDiff === 0 ? methods.push('amount') && 100 : -1000 +module.exports = baseCreate; - const points = amountPoints + labelPoints - res.points = points - return res -} -const matchTransaction = (newTr, existingTrs, options = {}) => { - const exactVendorId = existingTrs.find( - existingTr => - existingTr.vendorId && - newTr.vendorId && - existingTr.vendorId === newTr.vendorId - ) - if (exactVendorId) { - return { match: exactVendorId, method: 'vendorId' } - } +/***/ }), +/* 1253 */ +/***/ (function(module, exports, __webpack_require__) { - // Now we try to do it based on originalBankLabel, label and amount. - // We score candidates according to their degree of matching - // with the current transaction. - // Candidates with score below 0 will be discarded. - const withPoints = existingTrs.map(existingTr => - scoreMatching(newTr, existingTr, options) - ) +var baseIsMap = __webpack_require__(1254), + baseUnary = __webpack_require__(1214), + nodeUtil = __webpack_require__(1215); - const candidates = sortBy(withPoints, x => -x.points).filter( - x => x.points > 0 - ) - return candidates.length > 0 - ? { - match: candidates[0].op, - method: candidates[0].methods.join('-') - } - : { - candidates - } -} +/* Node.js helper references. */ +var nodeIsMap = nodeUtil && nodeUtil.isMap; /** - * Logic to match a transaction and removing it from the transactions to - * match. `matchingFn` is the function used for matching. + * Checks if `value` is classified as a `Map` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. + * @example + * + * _.isMap(new Map); + * // => true + * + * _.isMap(new WeakMap); + * // => false */ -const matchTransactionToGroup = function*(newTrs, existingTrs, options = {}) { - const toMatch = Array.isArray(existingTrs) ? [...existingTrs] : [] - for (let newTr of newTrs) { - const res = { - transaction: newTr - } +var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap; - const result = - toMatch.length > 0 ? matchTransaction(newTr, toMatch, options) : null - if (result) { - Object.assign(res, result) - const matchIdx = toMatch.indexOf(result.match) - if (matchIdx > -1) { - toMatch.splice(matchIdx, 1) - } - } - yield res - } -} +module.exports = isMap; + + +/***/ }), +/* 1254 */ +/***/ (function(module, exports, __webpack_require__) { + +var getTag = __webpack_require__(1238), + isObjectLike = __webpack_require__(1206); + +/** `Object#toString` result references. */ +var mapTag = '[object Map]'; /** - * Several logics to match transactions. + * The base implementation of `_.isMap` without Node.js optimizations. * - * First group transactions per day and match transactions in - * intra-day mode. - * Then relax the date constraint 1 day per 1 day to reach - * a maximum of 5 days of differences + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a map, else `false`. */ -const matchTransactions = function*(newTrs, existingTrs) { - const unmatchedNew = new Set(newTrs) - const unmatchedExisting = new Set(existingTrs) - // eslint-disable-next-line no-unused-vars - for (let [date, [newGroup, existingGroup]] of zipGroup( - [newTrs, existingTrs], - getDateTransaction - )) { - for (let result of matchTransactionToGroup(newGroup, existingGroup)) { - if (result.match) { - unmatchedExisting.delete(result.match) - unmatchedNew.delete(result.transaction) - yield result - } - } - } - - const deltas = [3, 4, 5] - for (let delta of deltas) { - for (let result of matchTransactionToGroup( - Array.from(unmatchedNew), - Array.from(unmatchedExisting), - { - maxDateDelta: delta * DAY - } - )) { - if (result.method) { - result.method += `-delta${delta}` - } - if (result.match) { - unmatchedExisting.delete(result.match) - unmatchedNew.delete(result.transaction) - } - if (result.match || delta === deltas[deltas.length - 1]) { - yield result - } - } - } +function baseIsMap(value) { + return isObjectLike(value) && getTag(value) == mapTag; } -module.exports = { - matchTransactions, - scoreMatching -} +module.exports = baseIsMap; /***/ }), -/* 1211 */ +/* 1255 */ /***/ (function(module, exports, __webpack_require__) { -const Document = __webpack_require__(1179) -const sumBy = __webpack_require__(1212) +var baseIsSet = __webpack_require__(1256), + baseUnary = __webpack_require__(1214), + nodeUtil = __webpack_require__(1215); -class BankAccountStats extends Document { - static checkCurrencies(accountsStats) { - const currency = accountsStats[0].currency +/* Node.js helper references. */ +var nodeIsSet = nodeUtil && nodeUtil.isSet; - for (const accountStats of accountsStats) { - if (accountStats.currency !== currency) { - return false - } - } +/** + * Checks if `value` is classified as a `Set` object. + * + * @static + * @memberOf _ + * @since 4.3.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + * @example + * + * _.isSet(new Set); + * // => true + * + * _.isSet(new WeakSet); + * // => false + */ +var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet; - return true - } +module.exports = isSet; - static sum(accountsStats) { - if (accountsStats.length === 0) { - throw new Error('You must give at least one stats object') - } - if (!this.checkCurrencies(accountsStats)) { - throw new Error('Currency of all stats object must be the same.') - } +/***/ }), +/* 1256 */ +/***/ (function(module, exports, __webpack_require__) { - const properties = [ - 'income', - 'additionalIncome', - 'mortgage', - 'loans', - 'fixedCharges' - ] +var getTag = __webpack_require__(1238), + isObjectLike = __webpack_require__(1206); - const summedStats = properties.reduce((sums, property) => { - sums[property] = sumBy( - accountsStats, - accountStats => accountStats[property] || 0 - ) +/** `Object#toString` result references. */ +var setTag = '[object Set]'; - return sums - }, {}) +/** + * The base implementation of `_.isSet` without Node.js optimizations. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a set, else `false`. + */ +function baseIsSet(value) { + return isObjectLike(value) && getTag(value) == setTag; +} - summedStats.currency = accountsStats[0].currency +module.exports = baseIsSet; - return summedStats - } -} -BankAccountStats.doctype = 'io.cozy.bank.accounts.stats' -BankAccountStats.idAttributes = ['_id'] -BankAccountStats.version = 1 -BankAccountStats.checkedAttributes = null +/***/ }), +/* 1257 */ +/***/ (function(module, exports, __webpack_require__) { -module.exports = BankAccountStats +var castPath = __webpack_require__(1258), + last = __webpack_require__(1266), + parent = __webpack_require__(1267), + toKey = __webpack_require__(1269); + +/** + * The base implementation of `_.unset`. + * + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The property path to unset. + * @returns {boolean} Returns `true` if the property is deleted, else `false`. + */ +function baseUnset(object, path) { + path = castPath(path, object); + object = parent(object, path); + return object == null || delete object[toKey(last(path))]; +} + +module.exports = baseUnset; /***/ }), -/* 1212 */ +/* 1258 */ /***/ (function(module, exports, __webpack_require__) { -var baseIteratee = __webpack_require__(413), - baseSum = __webpack_require__(1213); +var isArray = __webpack_require__(1207), + isKey = __webpack_require__(1259), + stringToPath = __webpack_require__(1261), + toString = __webpack_require__(1264); /** - * This method is like `_.sum` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the value to be summed. - * The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Math - * @param {Array} array The array to iterate over. - * @param {Function} [iteratee=_.identity] The iteratee invoked per element. - * @returns {number} Returns the sum. - * @example - * - * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]; - * - * _.sumBy(objects, function(o) { return o.n; }); - * // => 20 + * Casts `value` to a path array if it's not one. * - * // The `_.property` iteratee shorthand. - * _.sumBy(objects, 'n'); - * // => 20 + * @private + * @param {*} value The value to inspect. + * @param {Object} [object] The object to query keys on. + * @returns {Array} Returns the cast property path array. */ -function sumBy(array, iteratee) { - return (array && array.length) - ? baseSum(array, baseIteratee(iteratee, 2)) - : 0; +function castPath(value, object) { + if (isArray(value)) { + return value; + } + return isKey(value, object) ? [value] : stringToPath(toString(value)); } -module.exports = sumBy; +module.exports = castPath; /***/ }), -/* 1213 */ -/***/ (function(module, exports) { +/* 1259 */ +/***/ (function(module, exports, __webpack_require__) { + +var isArray = __webpack_require__(1207), + isSymbol = __webpack_require__(1260); + +/** Used to match property names within property paths. */ +var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, + reIsPlainProp = /^\w*$/; /** - * The base implementation of `_.sum` and `_.sumBy` without support for - * iteratee shorthands. + * Checks if `value` is a property name and not a property path. * * @private - * @param {Array} array The array to iterate over. - * @param {Function} iteratee The function invoked per iteration. - * @returns {number} Returns the sum. + * @param {*} value The value to check. + * @param {Object} [object] The object to query keys on. + * @returns {boolean} Returns `true` if `value` is a property name, else `false`. */ -function baseSum(array, iteratee) { - var result, - index = -1, - length = array.length; - - while (++index < length) { - var current = iteratee(array[index]); - if (current !== undefined) { - result = result === undefined ? current : (result + current); - } +function isKey(value, object) { + if (isArray(value)) { + return false; } - return result; + var type = typeof value; + if (type == 'number' || type == 'symbol' || type == 'boolean' || + value == null || isSymbol(value)) { + return true; + } + return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || + (object != null && value in Object(object)); } -module.exports = baseSum; +module.exports = isKey; /***/ }), -/* 1214 */ +/* 1260 */ /***/ (function(module, exports, __webpack_require__) { -const trimEnd = __webpack_require__(1215) -const Document = __webpack_require__(1179) +var baseGetTag = __webpack_require__(1169), + isObjectLike = __webpack_require__(1206); -const FILENAME_WITH_EXTENSION_REGEX = /(.+)(\..*)$/ +/** `Object#toString` result references. */ +var symbolTag = '[object Symbol]'; /** - * Class representing the file model. - * @extends Document + * Checks if `value` is classified as a `Symbol` primitive or object. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a symbol, else `false`. + * @example + * + * _.isSymbol(Symbol.iterator); + * // => true + * + * _.isSymbol('abc'); + * // => false */ -class CozyFile extends Document { - /** - * async getFullpath - Gets a file's path - * - * @param {string} dirID The id of the parent directory - * @param {string} name The file's name - * @return {string} The full path of the file in the cozy - **/ - static async getFullpath(dirId, name) { - if (!dirId) { - throw new Error('You must provide a dirId') - } +function isSymbol(value) { + return typeof value == 'symbol' || + (isObjectLike(value) && baseGetTag(value) == symbolTag); +} - const parentDir = await this.get(dirId) - const parentDirectoryPath = trimEnd(parentDir.path, '/') - return `${parentDirectoryPath}/${name}` - } +module.exports = isSymbol; - /** - * Move file to destination. - * - * @param {string} fileId - The file's id (required) - * @param {object} destination - * @param {string} destination.folderId - The destination folder's id (required) - * @param {string} destination.path - The file's path after the move (optional, used to optimize performance in case of conflict) - * @param {string} force - Whether we should overwrite the destination in case of conflict (defaults to false) - * @returns {Promise} - A promise that returns the move action response and the deleted file id (if any) if resolved or an Error if rejected - * - */ - static async move(fileId, destination, force = false) { - const { folderId, path } = destination - const filesCollection = this.cozyClient.collection('io.cozy.files') - try { - const resp = await filesCollection.updateFileMetadata(fileId, { - dir_id: folderId - }) - return { - moved: resp.data, - deleted: null - } - } catch (e) { - if (e.status === 409 && force) { - let destinationPath - if (path) { - destinationPath = path - } else { - const movedFile = await this.get(fileId) - const filename = movedFile.name - destinationPath = await this.getFullpath(folderId, filename) - } - const conflictResp = await filesCollection.statByPath(destinationPath) - await filesCollection.destroy(conflictResp.data) - const resp = await filesCollection.updateFileMetadata(fileId, { - dir_id: folderId - }) +/***/ }), +/* 1261 */ +/***/ (function(module, exports, __webpack_require__) { - return { - moved: resp.data, - deleted: conflictResp.data.id - } - } else { - throw e - } - } - } - /** - * Method to split both the filename and the extension - * - * @param {Object} file An io.cozy.files - * @return {Object} return an object with {filename: , extension: } - */ - static splitFilename(file) { - if (!file.name) throw new Error('file should have a name property ') +var memoizeCapped = __webpack_require__(1262); - if (file.type === 'file') { - const match = file.name.match(FILENAME_WITH_EXTENSION_REGEX) - if (match) { - return { filename: match[1], extension: match[2] } - } - } - return { filename: file.name, extension: '' } - } - /** - * - * Method to upload a file even if a file with the same name already exists. - * - * @param {String} path Fullpath for the file ex: path/to/ - * @param {Object} file HTML Object file - * @param {Object} metadata An object containing the wanted metadata to attach - */ - static async overrideFileForPath(pathArg, file, metadata) { - let path = pathArg - if (!path.endsWith('/')) path = path + '/' +/** Used to match property names within property paths. */ +var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; - const filesCollection = this.cozyClient.collection('io.cozy.files') - try { - const existingFile = await filesCollection.statByPath(path + file.name) +/** Used to match backslashes in property paths. */ +var reEscapeChar = /\\(\\)?/g; - const { id: fileId, dir_id: dirId } = existingFile.data - const resp = await filesCollection.updateFile(file, { - dirId, - fileId, - metadata - }) - return resp - } catch (error) { - if (/Not Found/.test(error)) { - const dirId = await filesCollection.ensureDirectoryExists(path) - const createdFile = await filesCollection.createFile(file, { - dirId, - metadata - }) - return createdFile - } - throw error - } - } - /** - * Method to generate a new filename if there is a conflict - * - * @param {String} filenameWithoutExtension A filename without the extension - * @return {String} A filename with the right suffix - */ - static generateNewFileNameOnConflict(filenameWithoutExtension) { - // Check if the string ends by _1 - const regex = new RegExp('(_)([0-9]+)$') - const matches = filenameWithoutExtension.match(regex) - if (matches) { - let versionNumber = parseInt(matches[2]) - // increment versionNumber - versionNumber++ - const newFilenameWithoutExtension = filenameWithoutExtension.replace( - new RegExp('(_)([0-9]+)$'), - `_${versionNumber}` - ) - return newFilenameWithoutExtension - } else { - return `${filenameWithoutExtension}_1` - } +/** + * Converts `string` to a property path array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the property path array. + */ +var stringToPath = memoizeCapped(function(string) { + var result = []; + if (string.charCodeAt(0) === 46 /* . */) { + result.push(''); } + string.replace(rePropName, function(match, number, quote, subString) { + result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); + }); + return result; +}); - static generateFileNameForRevision(file, revision, f) { - const { filename, extension } = CozyFile.splitFilename({ - name: file.name, - type: 'file' - }) - return `${filename}_${f( - revision.updated_at, - 'DD MMMM - HH[h]mm' - )}${extension}` - } - /** - * The goal of this method is to upload a file based on a conflict strategy. - * Be careful: We need to check if the file exists by doing a statByPath query - * before trying to upload the file since if we post and the stack return a - * 409 conflict, we will get a SPDY_ERROR_PROTOCOL on Chrome. This is the only - * viable workaround - * If there is no conflict, then we upload the file. - * If there is a conflict, then we apply the conflict strategy : `erase` or `rename` - * @param {String} name File Name - * @param {ArrayBuffer} file data - * @param {String} dirId dir id where to upload - * @param {String} conflictStrategy Actually only 2 hardcoded strategies 'erase' or 'rename' - * @param {Object} metadata An object containing the metadata to attach - * @param {String} contentType content type of the file - */ - static async uploadFileWithConflictStrategy( - name, - file, - dirId, - conflictStrategy, - metadata, - contentType - ) { - const filesCollection = this.cozyClient.collection('io.cozy.files') +module.exports = stringToPath; - try { - const path = await CozyFile.getFullpath(dirId, name) - const existingFile = await filesCollection.statByPath(path) - const { id: fileId } = existingFile.data - if (conflictStrategy === 'erase') { - // !TODO Bug Fix. Seems we have to pass a name attribute ?! - const resp = await filesCollection.updateFile(file, { - dirId, - fileId, - name, - metadata, - contentType - }) - return resp - } else { - const { filename, extension } = CozyFile.splitFilename({ - name, - type: 'file' - }) - const newFileName = - CozyFile.generateNewFileNameOnConflict(filename) + extension - // recall itself with the newFilename. - return CozyFile.uploadFileWithConflictStrategy( - newFileName, - file, - dirId, - conflictStrategy, - metadata, - contentType - ) - } - } catch (error) { - if (/Not Found/.test(error.message)) { - return await CozyFile.upload(name, file, dirId, metadata, contentType) - } - throw error - } - } - /** - * - * @param {String} name File's name - * @param {ArrayBuffer} file - * @param {String} dirId - * @param {Object} metadata - * @param {String} contentType - */ - static async upload(name, file, dirId, metadata, contentType = 'image/jpeg') { - return this.cozyClient.collection('io.cozy.files').createFile(file, { - name, - dirId, - contentType, - lastModifiedDate: new Date(), - metadata - }) - } -} +/***/ }), +/* 1262 */ +/***/ (function(module, exports, __webpack_require__) { + +var memoize = __webpack_require__(1263); + +/** Used as the maximum memoize cache size. */ +var MAX_MEMOIZE_SIZE = 500; -CozyFile.doctype = 'io.cozy.files' +/** + * A specialized version of `_.memoize` which clears the memoized function's + * cache when it exceeds `MAX_MEMOIZE_SIZE`. + * + * @private + * @param {Function} func The function to have its output memoized. + * @returns {Function} Returns the new memoized function. + */ +function memoizeCapped(func) { + var result = memoize(func, function(key) { + if (cache.size === MAX_MEMOIZE_SIZE) { + cache.clear(); + } + return key; + }); -module.exports = CozyFile + var cache = result.cache; + return result; +} + +module.exports = memoizeCapped; /***/ }), -/* 1215 */ +/* 1263 */ /***/ (function(module, exports, __webpack_require__) { -var baseToString = __webpack_require__(409), - castSlice = __webpack_require__(770), - charsEndIndex = __webpack_require__(1216), - stringToArray = __webpack_require__(772), - toString = __webpack_require__(408), - trimmedEndIndex = __webpack_require__(646); +var MapCache = __webpack_require__(1180); + +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; /** - * Removes trailing whitespace or specified characters from `string`. + * Creates a function that memoizes the result of `func`. If `resolver` is + * provided, it determines the cache key for storing the result based on the + * arguments provided to the memoized function. By default, the first argument + * provided to the memoized function is used as the map cache key. The `func` + * is invoked with the `this` binding of the memoized function. + * + * **Note:** The cache is exposed as the `cache` property on the memoized + * function. Its creation may be customized by replacing the `_.memoize.Cache` + * constructor with one whose instances implement the + * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object) + * method interface of `clear`, `delete`, `get`, `has`, and `set`. * * @static * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to trim. - * @param {string} [chars=whitespace] The characters to trim. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {string} Returns the trimmed string. + * @since 0.1.0 + * @category Function + * @param {Function} func The function to have its output memoized. + * @param {Function} [resolver] The function to resolve the cache key. + * @returns {Function} Returns the new memoized function. * @example * - * _.trimEnd(' abc '); - * // => ' abc' + * var object = { 'a': 1, 'b': 2 }; + * var other = { 'c': 3, 'd': 4 }; * - * _.trimEnd('-_-abc-_-', '_-'); - * // => '-_-abc' + * var values = _.memoize(_.values); + * values(object); + * // => [1, 2] + * + * values(other); + * // => [3, 4] + * + * object.a = 2; + * values(object); + * // => [1, 2] + * + * // Modify the result cache. + * values.cache.set(object, ['a', 'b']); + * values(object); + * // => ['a', 'b'] + * + * // Replace `_.memoize.Cache`. + * _.memoize.Cache = WeakMap; */ -function trimEnd(string, chars, guard) { - string = toString(string); - if (string && (guard || chars === undefined)) { - return string.slice(0, trimmedEndIndex(string) + 1); - } - if (!string || !(chars = baseToString(chars))) { - return string; +function memoize(func, resolver) { + if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) { + throw new TypeError(FUNC_ERROR_TEXT); } - var strSymbols = stringToArray(string), - end = charsEndIndex(strSymbols, stringToArray(chars)) + 1; + var memoized = function() { + var args = arguments, + key = resolver ? resolver.apply(this, args) : args[0], + cache = memoized.cache; - return castSlice(strSymbols, 0, end).join(''); + if (cache.has(key)) { + return cache.get(key); + } + var result = func.apply(this, args); + memoized.cache = cache.set(key, result) || cache; + return result; + }; + memoized.cache = new (memoize.Cache || MapCache); + return memoized; } -module.exports = trimEnd; +// Expose `MapCache`. +memoize.Cache = MapCache; + +module.exports = memoize; /***/ }), -/* 1216 */ +/* 1264 */ /***/ (function(module, exports, __webpack_require__) { -var baseIndexOf = __webpack_require__(477); +var baseToString = __webpack_require__(1265); /** - * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol - * that is not found in the character symbols. + * Converts `value` to a string. An empty string is returned for `null` + * and `undefined` values. The sign of `-0` is preserved. * - * @private - * @param {Array} strSymbols The string symbols to inspect. - * @param {Array} chrSymbols The character symbols to find. - * @returns {number} Returns the index of the last unmatched string symbol. + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {string} Returns the converted string. + * @example + * + * _.toString(null); + * // => '' + * + * _.toString(-0); + * // => '-0' + * + * _.toString([1, 2, 3]); + * // => '1,2,3' */ -function charsEndIndex(strSymbols, chrSymbols) { - var index = strSymbols.length; - - while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} - return index; +function toString(value) { + return value == null ? '' : baseToString(value); } -module.exports = charsEndIndex; +module.exports = toString; /***/ }), -/* 1217 */ +/* 1265 */ /***/ (function(module, exports, __webpack_require__) { -const Application = __webpack_require__(1196) -const CozyFile = __webpack_require__(1214) +var Symbol = __webpack_require__(1170), + arrayMap = __webpack_require__(1149), + isArray = __webpack_require__(1207), + isSymbol = __webpack_require__(1260); -/** - * Class representing the folder model. - * @extends CozyFile - */ -class CozyFolder extends CozyFile { - /** - * Create a folder with a reference to the given document - * @param {String} path Folder path - * @param {Object} document Document to make reference to. Any doctype. - * @return {Object} Folder document - */ - static async createFolderWithReference(path, document) { - const collection = this.cozyClient.collection(CozyFile.doctype) - const dirId = await collection.ensureDirectoryExists(path) - await collection.addReferencesTo(document, [ - { - _id: dirId - } - ]) +/** Used as references for various `Number` constants. */ +var INFINITY = 1 / 0; - const { data: dirInfos } = await collection.get(dirId) +/** Used to convert symbols to primitives and strings. */ +var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolToString = symbolProto ? symbolProto.toString : undefined; - return dirInfos +/** + * The base implementation of `_.toString` which doesn't convert nullish + * values to empty strings. + * + * @private + * @param {*} value The value to process. + * @returns {string} Returns the string. + */ +function baseToString(value) { + // Exit early for strings to avoid a performance hit in some environments. + if (typeof value == 'string') { + return value; } + if (isArray(value)) { + // Recursively convert values (susceptible to call stack limits). + return arrayMap(value, baseToString) + ''; + } + if (isSymbol(value)) { + return symbolToString ? symbolToString.call(value) : ''; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; +} - /** - * Returns a "Magic Folder", given its id - * @param {String} id Magic Folder id. `CozyFolder.magicFolders` contains the - * ids of folders that can be magic folders. - * @param {String} path Default path to use if magic folder does not exist - * @return {Object} Folder document - */ - static async ensureMagicFolder(id, path) { - const magicFolderDocument = { - _type: Application.doctype, - _id: id - } - const folders = await this.getReferencedFolders(magicFolderDocument) - const existingMagicFolder = folders.length ? folders[0] : null - - if (existingMagicFolder) return existingMagicFolder - - const magicFoldersValues = Object.values(this.magicFolders) - if (!magicFoldersValues.includes(id)) { - throw new Error( - `Cannot create Magic folder with id ${id}. Allowed values are ${magicFoldersValues.join( - ', ' - )}.` - ) - } - - if (!path) { - throw new Error('Magic folder default path must be defined') - } +module.exports = baseToString; - return this.createFolderWithReference(path, magicFolderDocument) - } - /** - * Returns an array of folder referenced by the given document - * @param {Object} document Document to get references from - * @return {Array} Array of folders referenced with the given - * document - */ - static async getReferencedFolders(document) { - const { included } = await this.cozyClient - .collection(CozyFile.doctype) - .findReferencedBy(document) - return included.filter(folder => !this.isTrashed(folder)) - } +/***/ }), +/* 1266 */ +/***/ (function(module, exports) { - /** - * Returns an unique folder referenced with the given reference. Creates it - * if it does not exist. - * @param {String} path Path used to create folder if the referenced - * folder does not exist. - * @param {Object} document Document to create references from - * @return {Objet} Folder referenced with the give reference - */ - static async ensureFolderWithReference(path, document) { - const existingFolders = await this.getReferencedFolders(document) - if (existingFolders.length) return existingFolders[0] +/** + * Gets the last element of `array`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to query. + * @returns {*} Returns the last element of `array`. + * @example + * + * _.last([1, 2, 3]); + * // => 3 + */ +function last(array) { + var length = array == null ? 0 : array.length; + return length ? array[length - 1] : undefined; +} - const collection = this.cozyClient.collection(CozyFile.doctype) - const dirId = await collection.ensureDirectoryExists(path) - await collection.addReferencesTo(document, [ - { - _id: dirId - } - ]) +module.exports = last; - const { data: dirInfos } = await collection.get(dirId) - return dirInfos - } +/***/ }), +/* 1267 */ +/***/ (function(module, exports, __webpack_require__) { - /** - * Indicates if a folder is in trash - * @param {Object} folder `io.cozy.files` document - * @return {Boolean} `true` if the folder is in trash, `false` - * otherwise. - */ - static isTrashed(folder) { - return /^\/\.cozy_trash/.test(folder.attributes.path) - } -} +var baseGet = __webpack_require__(1268), + baseSlice = __webpack_require__(1270); /** - * References used by the Cozy platform and apps for specific folders. + * Gets the parent value at `path` of `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} path The path to get the parent value of. + * @returns {*} Returns the parent value. */ -CozyFolder.magicFolders = { - ADMINISTRATIVE: `${Application.doctype}/administrative`, - PHOTOS: `${Application.doctype}/photos`, - PHOTOS_BACKUP: `${Application.doctype}/photos/mobile`, - PHOTOS_UPLOAD: `${Application.doctype}/photos/upload`, - NOTES_FOLDER: `${Application.doctype}/notes` +function parent(object, path) { + return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1)); } -module.exports = CozyFolder +module.exports = parent; /***/ }), -/* 1218 */ +/* 1268 */ /***/ (function(module, exports, __webpack_require__) { -const PropTypes = __webpack_require__(1188) +var castPath = __webpack_require__(1258), + toKey = __webpack_require__(1269); -const Document = __webpack_require__(1179) - -class Group extends Document {} +/** + * The base implementation of `_.get` without support for default values. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @returns {*} Returns the resolved value. + */ +function baseGet(object, path) { + path = castPath(path, object); -const GroupShape = PropTypes.shape({ - _id: PropTypes.string.isRequired, - _type: PropTypes.string.isRequired, - name: PropTypes.string.isRequired, - trashed: PropTypes.bool -}) + var index = 0, + length = path.length; -Group.doctype = 'io.cozy.contacts.groups' -Group.propType = GroupShape + while (object != null && index < length) { + object = object[toKey(path[index++])]; + } + return (index && index == length) ? object : undefined; +} -module.exports = Group +module.exports = baseGet; /***/ }), -/* 1219 */ +/* 1269 */ /***/ (function(module, exports, __webpack_require__) { -const Document = __webpack_require__(1179) +var isSymbol = __webpack_require__(1260); -class Permission extends Document {} +/** Used as references for various `Number` constants. */ +var INFINITY = 1 / 0; -Permission.schema = { - doctype: 'io.cozy.permissions', - attributes: {} +/** + * Converts `value` to a string key if it's not a string or symbol. + * + * @private + * @param {*} value The value to inspect. + * @returns {string|symbol} Returns the key. + */ +function toKey(value) { + if (typeof value == 'string' || isSymbol(value)) { + return value; + } + var result = (value + ''); + return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result; } -module.exports = Permission +module.exports = toKey; /***/ }), -/* 1220 */ -/***/ (function(module, exports, __webpack_require__) { - -const uniq = __webpack_require__(630); - -const getUniqueCategories = transactions => { - return uniq(transactions.map(t => t.manualCategoryId)); -}; +/* 1270 */ +/***/ (function(module, exports) { -const pctOfTokensInVoc = (tokens, vocabularyArray) => { - const n_tokens = tokens.length; - const intersection = tokens.filter(t => -1 !== vocabularyArray.indexOf(t)); - return intersection.length / n_tokens; -}; +/** + * The base implementation of `_.slice` without an iteratee call guard. + * + * @private + * @param {Array} array The array to slice. + * @param {number} [start=0] The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the slice of `array`. + */ +function baseSlice(array, start, end) { + var index = -1, + length = array.length; -const getAlphaParameter = (nbUniqueCategories, min, max, maxSmoothing) => { - if (nbUniqueCategories === 1) { - return 1; - } else { - const alpha = maxSmoothing / (nbUniqueCategories + 1); - return Math.max(min, Math.min(max, alpha)); + if (start < 0) { + start = -start > length ? 0 : (length + start); } -}; + end = end > length ? length : end; + if (end < 0) { + end += length; + } + length = start > end ? 0 : ((end - start) >>> 0); + start >>>= 0; -module.exports = { - getUniqueCategories, - pctOfTokensInVoc, - getAlphaParameter -}; + var result = Array(length); + while (++index < length) { + result[index] = array[index + start]; + } + return result; +} -/***/ }), -/* 1221 */ -/***/ (function(module, exports) { +module.exports = baseSlice; -const LOCAL_MODEL_CATEG_FALLBACK = '0'; -const LOCAL_MODEL_PROBA_FALLBACK = 0.1; -const LOCAL_MODEL_PCT_TOKENS_IN_VOC_THRESHOLD = 0.1; -module.exports = { - LOCAL_MODEL_CATEG_FALLBACK, - LOCAL_MODEL_PROBA_FALLBACK, - LOCAL_MODEL_PCT_TOKENS_IN_VOC_THRESHOLD -}; /***/ }), -/* 1222 */ +/* 1271 */ /***/ (function(module, exports, __webpack_require__) { -const cozy = __webpack_require__(485); +var isPlainObject = __webpack_require__(1272); -const log = __webpack_require__(2).namespace('BaseKonnector'); +/** + * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain + * objects. + * + * @private + * @param {*} value The value to inspect. + * @param {string} key The key of the property to inspect. + * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`. + */ +function customOmitClone(value) { + return isPlainObject(value) ? undefined : value; +} -const { - Secret -} = __webpack_require__(2); +module.exports = customOmitClone; -const manifest = __webpack_require__(833); -const saveBills = __webpack_require__(1223); +/***/ }), +/* 1272 */ +/***/ (function(module, exports, __webpack_require__) { -const saveFiles = __webpack_require__(1224); +var baseGetTag = __webpack_require__(1169), + getPrototype = __webpack_require__(1234), + isObjectLike = __webpack_require__(1206); -const signin = __webpack_require__(1262); +/** `Object#toString` result references. */ +var objectTag = '[object Object]'; -const get = __webpack_require__(370); +/** Used for built-in method references. */ +var funcProto = Function.prototype, + objectProto = Object.prototype; -const omit = __webpack_require__(631); +/** Used to resolve the decompiled source of functions. */ +var funcToString = funcProto.toString; -const updateOrCreate = __webpack_require__(1265); +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; -const saveIdentity = __webpack_require__(1266); +/** Used to infer the `Object` constructor. */ +var objectCtorString = funcToString.call(Object); -const { - wrapIfSentrySetUp, - captureExceptionAndDie -} = __webpack_require__(1267); +/** + * Checks if `value` is a plain object, that is, an object created by the + * `Object` constructor or one with a `[[Prototype]]` of `null`. + * + * @static + * @memberOf _ + * @since 0.8.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a plain object, else `false`. + * @example + * + * function Foo() { + * this.a = 1; + * } + * + * _.isPlainObject(new Foo); + * // => false + * + * _.isPlainObject([1, 2, 3]); + * // => false + * + * _.isPlainObject({ 'x': 0, 'y': 0 }); + * // => true + * + * _.isPlainObject(Object.create(null)); + * // => true + */ +function isPlainObject(value) { + if (!isObjectLike(value) || baseGetTag(value) != objectTag) { + return false; + } + var proto = getPrototype(value); + if (proto === null) { + return true; + } + var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor; + return typeof Ctor == 'function' && Ctor instanceof Ctor && + funcToString.call(Ctor) == objectCtorString; +} -const sleep = __webpack_require__(9).promisify(global.setTimeout); +module.exports = isPlainObject; -const LOG_ERROR_MSG_LIMIT = 32 * 1024 - 1; // to avoid to cut the json long and make it unreadable by the stack -const once = __webpack_require__(1297); +/***/ }), +/* 1273 */ +/***/ (function(module, exports, __webpack_require__) { -const errors = __webpack_require__(1299); +var flatten = __webpack_require__(1274), + overRest = __webpack_require__(1277), + setToString = __webpack_require__(1279); -const findFolderPath = async (cozyFields, account) => { - // folderId will be stored in cozyFields.folder_to_save on first run - if (!cozyFields.folder_to_save) { - log('info', `No folder_to_save available in the trigger`); - } +/** + * A specialized version of `baseRest` which flattens the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @returns {Function} Returns the new function. + */ +function flatRest(func) { + return setToString(overRest(func, undefined, flatten), func + ''); +} - const folderId = cozyFields.folder_to_save || account.folderId; +module.exports = flatRest; - if (folderId) { - try { - const folder = await cozy.files.statById(folderId, false); - return folder.attributes.path; - } catch (err) { - log('error', err.message); - log('error', JSON.stringify(err.stack)); - log('error', `error while getting the folder path of ${folderId}`); - throw new Error('NOT_EXISTING_DIRECTORY'); - } - } else { - log('debug', 'No folder needed'); - } -}; -const checkTOS = err => { - if (err && err.reason && err.reason.length && err.reason[0] && err.reason[0].title === 'TOS Updated') { - throw new Error('TOS_NOT_ACCEPTED'); - } -}; +/***/ }), +/* 1274 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseFlatten = __webpack_require__(1275); + /** - * @class - * The class from which all the connectors must inherit. - * It takes a fetch function in parameter that must return a `Promise`. - * You need at least the `GET` permission on `io.cozy.accounts` in your manifest to allow it to - * fetch account information for your connector. - * - * Its role is twofold : - * - * - Make the link between account data and konnector - * - Handle errors + * Flattens `array` a single level deep. * - * âš ï¸ A promise should be returned from the `fetch` function otherwise - * the konnector cannot know that asynchronous code has been called. + * @static + * @memberOf _ + * @since 0.1.0 + * @category Array + * @param {Array} array The array to flatten. + * @returns {Array} Returns the new flattened array. * @example - * ```javascript - * const { BaseKonnector } = require('cozy-konnector-libs') * - * module.exports = new BaseKonnector(function fetch () { - * // use this to access the instance of the konnector to - * // store any information that needs to be passed to - * // different stages of the konnector - * return request('http://ameli.fr') - * .then(computeReimbursements) - * .then(saveBills) - * }) - * ``` + * _.flatten([1, [2, [3, [4]], 5]]); + * // => [1, 2, [3, [4]], 5] */ +function flatten(array) { + var length = array == null ? 0 : array.length; + return length ? baseFlatten(array, 1) : []; +} +module.exports = flatten; -class BaseKonnector { - /** - * Constructor - * - * @param {Function} fetch - Function to be run automatically after account data is fetched. - * This function will be binded to the current connector. - * - * If not fetch function is given. The connector will have to handle itself it's own exection and - * error handling - */ - constructor(fetch) { - if (typeof fetch === 'function') { - this.fetch = fetch.bind(this); - return this.run(); - } - this.deactivateAutoSuccessfulLogin = once(this.deactivateAutoSuccessfulLogin); - errors.attachProcessEventHandlers(); - } - /** - * Entrypoint of the konnector - * - * - Initializes connector attributes - * - Awaits this.main - * - Ensures errors are handled via this.fail - * - Calls this.end when the main function succeeded - */ +/***/ }), +/* 1275 */ +/***/ (function(module, exports, __webpack_require__) { +var arrayPush = __webpack_require__(1233), + isFlattenable = __webpack_require__(1276); - async run() { - try { - log('debug', 'Preparing konnector...'); - await this.initAttributes(); - log('debug', 'Running konnector main...'); - await this.main(this.fields, this.parameters); - await this.end(); - } catch (err) { - log('warn', 'Error from konnector'); - await this.fail(err); +/** + * The base implementation of `_.flatten` with support for restricting flattening. + * + * @private + * @param {Array} array The array to flatten. + * @param {number} depth The maximum recursion depth. + * @param {boolean} [predicate=isFlattenable] The function invoked per iteration. + * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks. + * @param {Array} [result=[]] The initial result value. + * @returns {Array} Returns the new flattened array. + */ +function baseFlatten(array, depth, predicate, isStrict, result) { + var index = -1, + length = array.length; + + predicate || (predicate = isFlattenable); + result || (result = []); + + while (++index < length) { + var value = array[index]; + if (depth > 0 && predicate(value)) { + if (depth > 1) { + // Recursively flatten arrays (susceptible to call stack limits). + baseFlatten(value, depth - 1, predicate, isStrict, result); + } else { + arrayPush(result, value); + } + } else if (!isStrict) { + result[result.length] = value; } } - /** - * Main runs after konnector has been initialized. - * Errors thrown will be automatically handled. - * - * @returns {Promise} - The konnector is considered successful when it resolves - */ + return result; +} +module.exports = baseFlatten; - main() { - return this.fetch(this.fields, this.parameters); - } - /** - * Hook called when the connector has ended successfully - */ +/***/ }), +/* 1276 */ +/***/ (function(module, exports, __webpack_require__) { - end() { - log('debug', 'The connector has been run'); - } - /** - * Hook called when the connector fails - */ +var Symbol = __webpack_require__(1170), + isArguments = __webpack_require__(1204), + isArray = __webpack_require__(1207); +/** Built-in value references. */ +var spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined; - fail(err) { - log('debug', 'Error caught by BaseKonnector'); - const error = err.message || err; - this.terminate(error); - } +/** + * Checks if `value` is a flattenable `arguments` object or array. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is flattenable, else `false`. + */ +function isFlattenable(value) { + return isArray(value) || isArguments(value) || + !!(spreadableSymbol && value && value[spreadableSymbol]); +} - async getAccount(accountId) { - try { - return await cozy.data.find('io.cozy.accounts', accountId); - } catch (err) { - checkTOS(err); - log('error', err.message); - log('error', `Account ${accountId} does not exist`); - throw new Error('CANNOT_FIND_ACCOUNT'); - } - } - /** - * Initializes konnector attributes that will be used during its lifetime - * - * - this._account - * - this.fields - */ +module.exports = isFlattenable; - async initAttributes() { - // Parse environment variables - const cozyFields = JSON.parse(process.env.COZY_FIELDS || '{}'); - const cozyParameters = JSON.parse(process.env.COZY_PARAMETERS || '{}'); - this.parameters = cozyParameters; // Set account +/***/ }), +/* 1277 */ +/***/ (function(module, exports, __webpack_require__) { - const account = await this.getAccount(cozyFields.account); +var apply = __webpack_require__(1278); - if (!account || !account._id) { - log('warn', 'No account was retrieved from getAccount'); +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * A specialized version of `baseRest` which transforms the rest array. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @param {Function} transform The rest array transform. + * @returns {Function} Returns the new function. + */ +function overRest(func, start, transform) { + start = nativeMax(start === undefined ? (func.length - 1) : start, 0); + return function() { + var args = arguments, + index = -1, + length = nativeMax(args.length - start, 0), + array = Array(length); + + while (++index < length) { + array[index] = args[start + index]; + } + index = -1; + var otherArgs = Array(start + 1); + while (++index < start) { + otherArgs[index] = args[index]; } + otherArgs[start] = transform(array); + return apply(func, this, otherArgs); + }; +} - this.accountId = account._id; - this._account = new Secret(account); // Set folder +module.exports = overRest; - const folderPath = await findFolderPath(cozyFields, account); - cozyFields.folder_to_save = folderPath; - this.fields = Object.assign({}, account.auth, account.oauth, folderPath ? { - folderPath - } : {}); - } - /** - * Saves data to the account that is passed to the konnector. - * Use it to persist data that needs to be passed to each - * konnector run. - * - * By default, the data is merged to the remote data, use - * `options.merge = false` to overwrite the data. - * - * The data is saved under the `.data` attribute of the cozy - * account. - * - * Don't forget to modify the manifest.konnector file to give the right to write on the - * `io.cozy.accounts` doctype. The syntax can be : `"permissions": {"accounts": {"type": "io.cozy.accounts"}}` (here we juste removed the verb `GET`) - * - * @param {object} data - Attributes to be merged - * @param {object} options - { merge: true|false } - * @returns {Promise}: resolved with the modified account - */ +/***/ }), +/* 1278 */ +/***/ (function(module, exports) { - saveAccountData(data, options) { - options = options || {}; - options.merge = options.merge === undefined ? true : options.merge; - const start = options.merge ? Object.assign({}, this.getAccountData()) : {}; - const newData = Object.assign({}, start, data); - return this.updateAccountAttributes({ - data: newData - }).then(account => account.data); +/** + * A faster alternative to `Function#apply`, this function invokes `func` + * with the `this` binding of `thisArg` and the arguments of `args`. + * + * @private + * @param {Function} func The function to invoke. + * @param {*} thisArg The `this` binding of `func`. + * @param {Array} args The arguments to invoke `func` with. + * @returns {*} Returns the result of `func`. + */ +function apply(func, thisArg, args) { + switch (args.length) { + case 0: return func.call(thisArg); + case 1: return func.call(thisArg, args[0]); + case 2: return func.call(thisArg, args[0], args[1]); + case 3: return func.call(thisArg, args[0], args[1], args[2]); } - /** - * Get the data saved by saveAccountData - * - * @returns {object} the account data - */ + return func.apply(thisArg, args); +} +module.exports = apply; - getAccountData() { - return new Secret(this._account.data || {}); - } - /** - * Update account attributes and cache the account - */ +/***/ }), +/* 1279 */ +/***/ (function(module, exports, __webpack_require__) { - updateAccountAttributes(attributes) { - return cozy.data.updateAttributes('io.cozy.accounts', this.accountId, attributes).then(account => { - this._account = new Secret(account); - return account; - }); - } - /** - * Sets the 2FA state, according to the type passed. - * Doing so resets the twoFACode field - * - * Typically you should not use that directly, prefer to use waitForTwoFaCode since - * the wait for user input will be handled for you. It is useful though for the "app" - * type where no user input (inside Cozy) is needed. - * - * @param {object} options - The list of options - * @param {string} options.type - Used by the front to show the right message (email/sms/app/app_code) - * @param {boolean} options.retry - Is this function call a retry ? This changes the resulting message to the user - */ +var baseSetToString = __webpack_require__(1280), + shortOut = __webpack_require__(1283); +/** + * Sets the `toString` method of `func` to return `string`. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ +var setToString = shortOut(baseSetToString); - async setTwoFAState({ - type, - retry = false - } = {}) { - let state = retry ? 'TWOFA_NEEDED_RETRY' : 'TWOFA_NEEDED'; +module.exports = setToString; - if (type === 'email') { - state += '.EMAIL'; - } else if (type === 'sms') { - state += '.SMS'; - } else if (type === 'app_code') { - state += '.APP_CODE'; - } else if (type === 'app') { - state += '.APP'; - } - log('debug', `Setting ${state} state into the current account`); - await this.updateAccountAttributes({ - state, - twoFACode: null - }); - } - /** - * Resets 2FA state when not needed anymore - */ +/***/ }), +/* 1280 */ +/***/ (function(module, exports, __webpack_require__) { +var constant = __webpack_require__(1281), + defineProperty = __webpack_require__(1198), + identity = __webpack_require__(1282); - async resetTwoFAState() { - await this.updateAccountAttributes({ - state: null, - twoFACode: null - }); - } - /** - * Notices that 2FA code is needed and wait for the user to submit it. - * It uses the account to do the communication with the user. - * - * @param {object} options - The list of options - * @param {string} options.type (default: "email") - Type of the expected 2FA code. The message displayed - * to the user will depend on it. Possible values: email, sms - * @param {number} options.timeout (default 3 minutes after now) - After this date, the stop will stop waiting and - * and an error will be shown to the user (deprecated and alias of endTime) - * @param {number} options.endTime (default 3 minutes after now) - After this timestamp, the home will stop waiting and - * and an error will be shown to the user - * @param {number} options.heartBeat (default: 5000) - How many milliseconds between each code check - * @param {boolean} options.retry (default: false) - Is it a retry. If true, an error message will be - * displayed to the user - * @throws Will throw `USER_ACTION_NEEDED.TWOFA_EXPIRED` if the konnector job is not run manually (we assume that - * not run manually means that we do not have a graphic interface to fill the required information) - * @throws Will throw `USER_ACTION_NEEDED.TWOFA_EXPIRED` if 2FA is not filled by the user soon enough - * @returns {Promise} Contains twoFa code entered by user - * @example - * - * ```javascript - * const { BaseKonnector } = require('cozy-konnector-libs') - * - * module.exports = new BaseKonnector(start) - - * async function start() { - * // we detect the need of a 2FA code - * const code = this.waitForTwoFaCode({ - * type: 'email' - * }) - * // send the code to the targeted site - * } - * ``` - */ +/** + * The base implementation of `setToString` without support for hot loop shorting. + * + * @private + * @param {Function} func The function to modify. + * @param {Function} string The `toString` result. + * @returns {Function} Returns `func`. + */ +var baseSetToString = !defineProperty ? identity : function(func, string) { + return defineProperty(func, 'toString', { + 'configurable': true, + 'enumerable': false, + 'value': constant(string), + 'writable': true + }); +}; +module.exports = baseSetToString; - async waitForTwoFaCode(options = {}) { - if (process.env.COZY_JOB_MANUAL_EXECUTION !== 'true') { - log('warn', `waitForTwoFaCode: this in not a manual execution. It is not possible to handle 2FA here.`); - throw new Error('USER_ACTION_NEEDED.TWOFA_EXPIRED'); - } - const startTime = Date.now(); - const ms = 1; - const s = 1000 * ms; - const m = 60 * s; - const defaultParams = { - type: 'email', - endTime: startTime + 3 * m, - heartBeat: 5 * s, - retry: false - }; - options = { ...defaultParams, - ...options - }; +/***/ }), +/* 1281 */ +/***/ (function(module, exports) { - if (options.timeout) { - log('warn', `The timeout option for waitForTwoFaCode is deprecated. Please use the endTime option now`); - options.endTime = options.timeout; - } +/** + * Creates a function that returns `value`. + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Util + * @param {*} value The value to return from the new function. + * @returns {Function} Returns the new constant function. + * @example + * + * var objects = _.times(2, _.constant({ 'a': 1 })); + * + * console.log(objects); + * // => [{ 'a': 1 }, { 'a': 1 }] + * + * console.log(objects[0] === objects[1]); + * // => true + */ +function constant(value) { + return function() { + return value; + }; +} - let account = {}; - await this.setTwoFAState({ - type: options.type, - retry: options.retry - }); +module.exports = constant; - while (Date.now() < options.endTime && !account.twoFACode) { - await sleep(options.heartBeat); - account = await cozy.data.find('io.cozy.accounts', this.accountId); - log('debug', `current accountState : ${account.state}`); - log('debug', `current twoFACode : ${account.twoFACode}`); - } - if (account.twoFACode) { - await this.resetTwoFAState(); - return account.twoFACode; - } +/***/ }), +/* 1282 */ +/***/ (function(module, exports) { + +/** + * This method returns the first argument it receives. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Util + * @param {*} value Any value. + * @returns {*} Returns `value`. + * @example + * + * var object = { 'a': 1 }; + * + * console.log(_.identity(object) === object); + * // => true + */ +function identity(value) { + return value; +} + +module.exports = identity; + + +/***/ }), +/* 1283 */ +/***/ (function(module, exports) { + +/** Used to detect hot functions by number of calls within a span of milliseconds. */ +var HOT_COUNT = 800, + HOT_SPAN = 16; - throw new Error('USER_ACTION_NEEDED.TWOFA_EXPIRED'); - } - /** - * Tells Cozy-Home that we have successfully logged in. - * Useful when auto-success has been deactivated. - * See `deactivateAutoSuccess` - */ +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeNow = Date.now; +/** + * Creates a function that'll short out and invoke `identity` instead + * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN` + * milliseconds. + * + * @private + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new shortable function. + */ +function shortOut(func) { + var count = 0, + lastCalled = 0; - async notifySuccessfulLogin() { - log('debug', 'Notify Cozy-Home of successful login'); - await this.updateAccountAttributes({ - state: 'LOGIN_SUCCESS' - }); - } - /** - * By default, cozy-home considers that the konnector has successfully logged in - * when the konnector has run for more than 8s. This is problematic for 2FA since - * the konnector can sit idle, just waiting for the 2FA to come back. - * - * When this method is called, cozy-home is notified and will not consider the - * absence of error after 8s to be a success. Afterwards, to notify cozy-home when - * the user has logged in successfully, for example, after the user has entered 2FA - * codes, it is necessary to call `notifySuccessfulLogin`. - * - * Does nothing if called more than once. - */ + return function() { + var stamp = nativeNow(), + remaining = HOT_SPAN - (stamp - lastCalled); + lastCalled = stamp; + if (remaining > 0) { + if (++count >= HOT_COUNT) { + return arguments[0]; + } + } else { + count = 0; + } + return func.apply(undefined, arguments); + }; +} - async deactivateAutoSuccessfulLogin() { - log('debug', 'Deactivating auto success for Cozy-Home'); - await this.updateAccountAttributes({ - state: 'HANDLE_LOGIN_SUCCESS' - }); - } - /** - * This is saveBills function from cozy-konnector-libs which automatically adds sourceAccount in - * metadata of each entry - * - * @returns {Promise} resolves with entries hydrated with db data - */ +module.exports = shortOut; - saveBills(entries, fields, options) { - return saveBills(entries, fields, { - sourceAccount: this.accountId, - sourceAccountIdentifier: fields.login, - ...options - }); - } - /** - * This is saveFiles function from cozy-konnector-libs which automatically adds sourceAccount and - * sourceAccountIdentifier cozyMetadatas to files - * - * @returns {Promise} resolves with the list of entries with file objects - */ +/***/ }), +/* 1284 */ +/***/ (function(module, exports, __webpack_require__) { +var basePick = __webpack_require__(1285), + flatRest = __webpack_require__(1273); - saveFiles(entries, fields, options) { - return saveFiles(entries, fields, { - sourceAccount: this.accountId, - sourceAccountIdentifier: fields.login, - ...options - }); - } - /** - * This is updateOrCreate function from cozy-konnector-libs which automatically adds sourceAccount in - * metadata of each entry - * - * @returns {Promise} resolves to an array of db objects - */ +/** + * Creates an object composed of the picked `object` properties. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [paths] The property paths to pick. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pick(object, ['a', 'c']); + * // => { 'a': 1, 'c': 3 } + */ +var pick = flatRest(function(object, paths) { + return object == null ? {} : basePick(object, paths); +}); +module.exports = pick; - updateOrCreate(entries, doctype, matchingAttributes, options) { - return updateOrCreate(entries, doctype, matchingAttributes, { - sourceAccount: this.accountId, - sourceAccountIdentifier: get(options, 'fields.login'), - ...options - }); - } - /** - * This is saveIdentity function from cozy-konnector-libs which automatically adds sourceAccount in - * metadata of each entry - * - * @returns {Promise} empty promise - */ +/***/ }), +/* 1285 */ +/***/ (function(module, exports, __webpack_require__) { - saveIdentity(contact, accountIdentifier, options = {}) { - return saveIdentity(contact, accountIdentifier, { - sourceAccount: this.accountId, - sourceAccountIdentifier: accountIdentifier, - ...options - }); - } - /** - * This is signin function from cozy-konnector-libs which automatically adds deactivateAutoSuccessfulLogin - * and notifySuccessfulLogin calls - * - * @returns {Promise} resolve with an object containing form data - */ +var basePickBy = __webpack_require__(1286), + hasIn = __webpack_require__(1288); +/** + * The base implementation of `_.pick` without support for individual + * property identifiers. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @returns {Object} Returns the new object. + */ +function basePick(object, paths) { + return basePickBy(object, paths, function(value, path) { + return hasIn(object, path); + }); +} - async signin(options = {}) { - await this.deactivateAutoSuccessfulLogin(); - const result = await signin(omit(options, 'notifySuccessfulLogin')); +module.exports = basePick; - if (options.notifySuccessfulLogin !== false) { - await this.notifySuccessfulLogin(); - } - return result; - } - /** - * Send a special error code which is interpreted by the cozy stack to terminate the execution of the - * connector now - * - * @param {string} err - The error code to be saved as connector result see [docs/ERROR_CODES.md] - * @example - * ```javascript - * this.terminate('LOGIN_FAILED') - * ``` - */ +/***/ }), +/* 1286 */ +/***/ (function(module, exports, __webpack_require__) { +var baseGet = __webpack_require__(1268), + baseSet = __webpack_require__(1287), + castPath = __webpack_require__(1258); - terminate(err) { - log('critical', String(err).substr(0, LOG_ERROR_MSG_LIMIT)); - captureExceptionAndDie(err); - } - /** - * Get cozyMetaData from the context of the connector - * - * @param {object} data - this data will be merged with cozyMetaData - */ +/** + * The base implementation of `_.pickBy` without support for iteratee shorthands. + * + * @private + * @param {Object} object The source object. + * @param {string[]} paths The property paths to pick. + * @param {Function} predicate The function invoked per property. + * @returns {Object} Returns the new object. + */ +function basePickBy(object, paths, predicate) { + var index = -1, + length = paths.length, + result = {}; + while (++index < length) { + var path = paths[index], + value = baseGet(object, path); - getCozyMetadata(data) { - Object.assign(data, { - sourceAccount: this.accountId - }); - return manifest.getCozyMetadata(data); + if (predicate(value, path)) { + baseSet(result, castPath(path, object), value); + } } - + return result; } -wrapIfSentrySetUp(BaseKonnector.prototype, 'run'); -BaseKonnector.findFolderPath = findFolderPath; -BaseKonnector.checkTOS = checkTOS; -module.exports = BaseKonnector; +module.exports = basePickBy; + /***/ }), -/* 1223 */ +/* 1287 */ /***/ (function(module, exports, __webpack_require__) { +var assignValue = __webpack_require__(1196), + castPath = __webpack_require__(1258), + isIndex = __webpack_require__(1210), + isObject = __webpack_require__(1175), + toKey = __webpack_require__(1269); + /** - * Encapsulates the saving of Bills : saves the files, saves the new data, and associate the files - * to an existing bank operation + * The base implementation of `_.set`. * - * @module saveBills + * @private + * @param {Object} object The object to modify. + * @param {Array|string} path The path of the property to set. + * @param {*} value The value to set. + * @param {Function} [customizer] The function to customize path creation. + * @returns {Object} Returns `object`. */ -const utils = __webpack_require__(484); - -const saveFiles = __webpack_require__(1224); +function baseSet(object, path, value, customizer) { + if (!isObject(object)) { + return object; + } + path = castPath(path, object); -const hydrateAndFilter = __webpack_require__(369); + var index = -1, + length = path.length, + lastIndex = length - 1, + nested = object; -const addData = __webpack_require__(1244); + while (nested != null && ++index < length) { + var key = toKey(path[index]), + newValue = value; -const log = __webpack_require__(2).namespace('saveBills'); + if (index != lastIndex) { + var objValue = nested[key]; + newValue = customizer ? customizer(objValue, key, nested) : undefined; + if (newValue === undefined) { + newValue = isObject(objValue) + ? objValue + : (isIndex(path[index + 1]) ? [] : {}); + } + } + assignValue(nested, key, newValue); + nested = nested[key]; + } + return object; +} -const linkBankOperations = __webpack_require__(1245); +module.exports = baseSet; -const DOCTYPE = 'io.cozy.bills'; -const _ = __webpack_require__(823); +/***/ }), +/* 1288 */ +/***/ (function(module, exports, __webpack_require__) { -const manifest = __webpack_require__(833); +var baseHasIn = __webpack_require__(1289), + hasPath = __webpack_require__(1290); -const requiredAttributes = { - date: 'isDate', - amount: 'isNumber', - vendor: 'isString' -}; /** - * Combines the features of `saveFiles`, `hydrateAndFilter`, `addData` and `linkBankOperations` for a - * common case: bills. - * Will create `io.cozy.bills` objects. The default deduplication keys are `['date', 'amount', 'vendor']`. - * You need the full permission on `io.cozy.bills`, full permission on `io.cozy.files` and also - * full permission on `io.cozy.bank.operations` in your manifest, to be able to use this function. + * Checks if `path` is a direct or inherited property of `object`. * - * Parameters: + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example * - * - `documents` is an array of objects with any attributes with some mandatory attributes : - * + `amount` (Number): the amount of the bill used to match bank operations - * + `date` (Date): the date of the bill also used to match bank operations - * + `vendor` (String): the name of the vendor associated to the bill. Ex: 'trainline' - * + `currency` (String) default: EUR: The ISO currency value (not mandatory since there is a - * default value. - * + `contractId` (String): Contract unique identicator used to deduplicate bills - * + `contractLabel`: (String) User label if define, must be used with contractId - * + `matchingCriterias` (Object): criterias that can be used by an external service to match bills - * with bank operations. If not specified but the 'banksTransactionRegExp' attribute is specified in the - * manifest of the connector, this value is automatically added to the bill + * var object = _.create({ 'a': _.create({ 'b': 2 }) }); * - * You can also pass attributes expected by `saveFiles` : fileurl, filename, requestOptions - * and more + * _.hasIn(object, 'a'); + * // => true * - * Please take a look at [io.cozy.bills doctype documentation](https://github.com/cozy/cozy-doctypes/blob/master/docs/io.cozy.bills.md) - * - `fields` (object) this is the first parameter given to BaseKonnector's constructor - * - `options` is passed directly to `saveFiles`, `hydrateAndFilter`, `addData` and `linkBankOperations`. + * _.hasIn(object, 'a.b'); + * // => true * - * @example + * _.hasIn(object, ['a', 'b']); + * // => true * - * ```javascript - * const { BaseKonnector, saveBills } = require('cozy-konnector-libs') + * _.hasIn(object, 'b'); + * // => false + */ +function hasIn(object, path) { + return object != null && hasPath(object, path, baseHasIn); +} + +module.exports = hasIn; + + +/***/ }), +/* 1289 */ +/***/ (function(module, exports) { + +/** + * The base implementation of `_.hasIn` without support for deep paths. * - * module.exports = new BaseKonnector(function fetch (fields) { - * const documents = [] - * // some code which fills documents - * return saveBills(documents, fields, { - * identifiers: ['vendor'] - * }) - * }) - * ``` - * @alias module:saveBills + * @private + * @param {Object} [object] The object to query. + * @param {Array|string} key The key to check. + * @returns {boolean} Returns `true` if `key` exists, else `false`. */ +function baseHasIn(object, key) { + return object != null && key in Object(object); +} -const saveBills = async (inputEntries, fields, inputOptions = {}) => { - // Cloning input arguments since both entries and options are expected - // to be modified by functions called inside saveBills. - const entries = _.cloneDeepWith(inputEntries, value => { - // do not try to clone streams https://github.com/konnectors/libs/issues/682 - if (value && value.readable) { - return value; - } +module.exports = baseHasIn; - return undefined; - }); - const options = _.cloneDeep(inputOptions); +/***/ }), +/* 1290 */ +/***/ (function(module, exports, __webpack_require__) { - if (!_.isArray(entries) || entries.length === 0) { - log('warn', 'saveBills: no bills to save'); - return Promise.resolve(); - } +var castPath = __webpack_require__(1258), + isArguments = __webpack_require__(1204), + isArray = __webpack_require__(1207), + isIndex = __webpack_require__(1210), + isLength = __webpack_require__(1213), + toKey = __webpack_require__(1269); - if (!options.sourceAccount) { - log('warn', 'There is no sourceAccount given to saveBills'); - } +/** + * Checks if `path` exists on `object`. + * + * @private + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @param {Function} hasFunc The function to check properties. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + */ +function hasPath(object, path, hasFunc) { + path = castPath(path, object); - if (!options.sourceAccountIdentifier) { - log('warn', 'There is no sourceAccountIdentifier given to saveBills'); + var index = -1, + length = path.length, + result = false; + + while (++index < length) { + var key = toKey(path[index]); + if (!(result = object != null && hasFunc(object, key))) { + break; + } + object = object[key]; } + if (result || ++index != length) { + return result; + } + length = object == null ? 0 : object.length; + return !!length && isLength(length) && isIndex(key, length) && + (isArray(object) || isArguments(object)); +} - if (typeof fields === 'string') { - fields = { - folderPath: fields - }; - } // Deduplicate on this keys +module.exports = hasPath; - options.keys = options.keys || Object.keys(requiredAttributes); - const originalEntries = entries; +/***/ }), +/* 1291 */ +/***/ (function(module, exports, __webpack_require__) { - const defaultShouldUpdate = (entry, dbEntry) => entry.invoice !== dbEntry.invoice || !dbEntry.cozyMetadata || !dbEntry.matchingCriterias; +var baseKeys = __webpack_require__(1216), + getTag = __webpack_require__(1238), + isArrayLike = __webpack_require__(1220), + isString = __webpack_require__(1292), + stringSize = __webpack_require__(1293); - if (!options.shouldUpdate) { - options.shouldUpdate = defaultShouldUpdate; - } else { - const fn = options.shouldUpdate; +/** `Object#toString` result references. */ +var mapTag = '[object Map]', + setTag = '[object Set]'; - options.shouldUpdate = (entry, dbEntry) => { - return defaultShouldUpdate(entry, dbEntry) || fn(entry, dbEntry); - }; +/** + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable string keyed properties for objects. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @returns {number} Returns the collection size. + * @example + * + * _.size([1, 2, 3]); + * // => 3 + * + * _.size({ 'a': 1, 'b': 2 }); + * // => 2 + * + * _.size('pebbles'); + * // => 7 + */ +function size(collection) { + if (collection == null) { + return 0; + } + if (isArrayLike(collection)) { + return isString(collection) ? stringSize(collection) : collection.length; } + var tag = getTag(collection); + if (tag == mapTag || tag == setTag) { + return collection.size; + } + return baseKeys(collection).length; +} - let tempEntries; - tempEntries = manageContractsData(entries, options); - tempEntries = await saveFiles(tempEntries, fields, options); +module.exports = size; - if (options.processPdf) { - let moreEntries = []; - for (let entry of tempEntries) { - if (entry.fileDocument) { - let pdfContent; +/***/ }), +/* 1292 */ +/***/ (function(module, exports, __webpack_require__) { - try { - pdfContent = await utils.getPdfText(entry.fileDocument._id); // allow to create more entries related to the same file +var baseGetTag = __webpack_require__(1169), + isArray = __webpack_require__(1207), + isObjectLike = __webpack_require__(1206); - const result = await options.processPdf(entry, pdfContent.text, pdfContent); - if (result && result.length) moreEntries = [...moreEntries, ...result]; - } catch (err) { - log('warn', `processPdf: Failed to read pdf content in ${_.get(entry, 'fileDocument.attributes.name')}`); - log('warn', err.message); - entry.__ignore = true; - } - } - } +/** `Object#toString` result references. */ +var stringTag = '[object String]'; - if (moreEntries.length) tempEntries = [...tempEntries, ...moreEntries]; - } // try to get transaction regexp from the manifest +/** + * Checks if `value` is classified as a `String` primitive or object. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a string, else `false`. + * @example + * + * _.isString('abc'); + * // => true + * + * _.isString(1); + * // => false + */ +function isString(value) { + return typeof value == 'string' || + (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag); +} +module.exports = isString; - let defaultTransactionRegexp = null; - if (Object.keys(manifest.data).length && manifest.data.banksTransactionRegExp) { - defaultTransactionRegexp = manifest.data.banksTransactionRegExp; - } +/***/ }), +/* 1293 */ +/***/ (function(module, exports, __webpack_require__) { - tempEntries = tempEntries.filter(entry => !entry.__ignore) // we do not save bills without associated file anymore - .filter(entry => entry.fileDocument).map(entry => { - entry.currency = convertCurrency(entry.currency); - entry.invoice = `io.cozy.files:${entry.fileDocument._id}`; - const matchingCriterias = entry.matchingCriterias || {}; +var asciiSize = __webpack_require__(1294), + hasUnicode = __webpack_require__(1296), + unicodeSize = __webpack_require__(1297); - if (defaultTransactionRegexp && !matchingCriterias.labelRegex) { - matchingCriterias.labelRegex = defaultTransactionRegexp; - entry.matchingCriterias = matchingCriterias; - } +/** + * Gets the number of symbols in `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the string size. + */ +function stringSize(string) { + return hasUnicode(string) + ? unicodeSize(string) + : asciiSize(string); +} - delete entry.fileDocument; - delete entry.fileAttributes; - return entry; - }); - checkRequiredAttributes(tempEntries); - tempEntries = await hydrateAndFilter(tempEntries, DOCTYPE, options); - tempEntries = await addData(tempEntries, DOCTYPE, options); +module.exports = stringSize; - if (options.linkBankOperations !== false) { - tempEntries = await linkBankOperations(originalEntries, DOCTYPE, fields, options); - log('debug', 'after linkbankoperation'); - } - return tempEntries; -}; +/***/ }), +/* 1294 */ +/***/ (function(module, exports, __webpack_require__) { -function convertCurrency(currency) { - if (currency) { - if (currency.includes('€')) { - return 'EUR'; - } else if (currency.includes('$')) { - return 'USD'; - } else if (currency.includes('£')) { - return 'GBP'; - } else { - return currency; - } - } else { - return 'EUR'; - } -} +var baseProperty = __webpack_require__(1295); -function checkRequiredAttributes(entries) { - for (let entry of entries) { - for (let attr in requiredAttributes) { - if (entry[attr] == null) { - throw new Error(`saveBills: an entry is missing the required ${attr} attribute`); - } +/** + * Gets the size of an ASCII `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. + */ +var asciiSize = baseProperty('length'); - const checkFunction = requiredAttributes[attr]; +module.exports = asciiSize; - const isExpectedType = _(entry[attr])[checkFunction](); - if (isExpectedType === false) { - throw new Error(`saveBills: an entry has a ${attr} which does not respect ${checkFunction}`); - } - } - } -} +/***/ }), +/* 1295 */ +/***/ (function(module, exports) { -function manageContractsData(tempEntries, options) { - if (options.contractLabel && options.contractId === undefined) { - log('warn', 'contractLabel used without contractId, ignoring it.'); - return tempEntries; - } +/** + * The base implementation of `_.property` without support for deep paths. + * + * @private + * @param {string} key The key of the property to get. + * @returns {Function} Returns the new accessor function. + */ +function baseProperty(key) { + return function(object) { + return object == null ? undefined : object[key]; + }; +} - let newEntries = tempEntries; // if contractId passed by option +module.exports = baseProperty; - if (options.contractId) { - // Define contractlabel from contractId if not set in options - if (!options.contractLabel) { - options.contractLabel = options.contractId; - } // Set saving path from contractLabel +/***/ }), +/* 1296 */ +/***/ (function(module, exports) { - options.subPath = options.contractLabel; // Add contractId to deduplication keys +/** Used to compose unicode character classes. */ +var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsVarRange = '\\ufe0e\\ufe0f'; - addContractIdToDeduplication(options); // Add contract data to bills +/** Used to compose unicode capture groups. */ +var rsZWJ = '\\u200d'; - newEntries = newEntries.map(entry => addContractsDataToBill(entry, options)); // if contractId passed by bill attribute - } else if (billsHaveContractId(newEntries)) { - // Add contractId to deduplication keys - addContractIdToDeduplication(options); - newEntries = newEntries.map(entry => mergeContractsDataInBill(entry)); // manageContractsDataPassedByAttribute(newEntries, options - } +/** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */ +var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']'); - return newEntries; +/** + * Checks if `string` contains Unicode symbols. + * + * @private + * @param {string} string The string to inspect. + * @returns {boolean} Returns `true` if a symbol is found, else `false`. + */ +function hasUnicode(string) { + return reHasUnicode.test(string); } -function addContractsDataToBill(entry, options) { - entry.contractLabel = options.contractLabel; - entry.contractId = options.contractId; - return entry; -} +module.exports = hasUnicode; -function mergeContractsDataInBill(entry) { - // Only treat bill with data - if (entry.contractId) { - // Surcharge label in needed - if (!entry.contractLabel) { - entry.contractLabel = entry.contractId; - } // Edit subpath of each bill according to contractLabel +/***/ }), +/* 1297 */ +/***/ (function(module, exports) { - entry.subPath = entry.contractLabel; - } +/** Used to compose unicode character classes. */ +var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsVarRange = '\\ufe0e\\ufe0f'; - return entry; -} -/* This function return true if at least one bill of entries has a contractId - */ +/** Used to compose unicode capture groups. */ +var rsAstral = '[' + rsAstralRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsZWJ = '\\u200d'; +/** Used to compose unicode regexes. */ +var reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; -function billsHaveContractId(entries) { - for (const entry of entries) { - if (entry.contractId) { - return true; - } - } +/** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ +var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); - return false; -} -/* Add contractId to deduplication keys +/** + * Gets the size of a Unicode `string`. + * + * @private + * @param {string} string The string inspect. + * @returns {number} Returns the string size. */ - - -function addContractIdToDeduplication(options) { - if (options.keys) { - options.keys.push('contractId'); +function unicodeSize(string) { + var result = reUnicode.lastIndex = 0; + while (reUnicode.test(string)) { + ++result; } + return result; } -module.exports = saveBills; -module.exports.manageContractsData = manageContractsData; +module.exports = unicodeSize; + /***/ }), -/* 1224 */ +/* 1298 */ /***/ (function(module, exports, __webpack_require__) { +var baseIteratee = __webpack_require__(1299), + negate = __webpack_require__(1321), + pickBy = __webpack_require__(1322); + /** - * Saves the given files in the given folder via the Cozy API. + * The opposite of `_.pickBy`; this method creates an object composed of + * the own and inherited enumerable string keyed properties of `object` that + * `predicate` doesn't return truthy for. The predicate is invoked with two + * arguments: (value, key). * - * @module saveFiles + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omitBy(object, _.isNumber); + * // => { 'b': '2' } */ -const bluebird = __webpack_require__(25); - -const retry = __webpack_require__(1225); +function omitBy(object, predicate) { + return pickBy(object, negate(baseIteratee(predicate))); +} -const mimetypes = __webpack_require__(835); +module.exports = omitBy; -const path = __webpack_require__(160); -const requestFactory = __webpack_require__(22); +/***/ }), +/* 1299 */ +/***/ (function(module, exports, __webpack_require__) { -const omit = __webpack_require__(631); +var baseMatches = __webpack_require__(1300), + baseMatchesProperty = __webpack_require__(1317), + identity = __webpack_require__(1282), + isArray = __webpack_require__(1207), + property = __webpack_require__(1319); -const get = __webpack_require__(370); +/** + * The base implementation of `_.iteratee`. + * + * @private + * @param {*} [value=_.identity] The value to convert to an iteratee. + * @returns {Function} Returns the iteratee. + */ +function baseIteratee(value) { + // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. + // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. + if (typeof value == 'function') { + return value; + } + if (value == null) { + return identity; + } + if (typeof value == 'object') { + return isArray(value) + ? baseMatchesProperty(value[0], value[1]) + : baseMatches(value); + } + return property(value); +} -const log = __webpack_require__(2).namespace('saveFiles'); +module.exports = baseIteratee; -const manifest = __webpack_require__(833); -const cozy = __webpack_require__(485); +/***/ }), +/* 1300 */ +/***/ (function(module, exports, __webpack_require__) { -const { - queryAll -} = __webpack_require__(484); +var baseIsMatch = __webpack_require__(1301), + getMatchData = __webpack_require__(1314), + matchesStrictComparable = __webpack_require__(1316); -const mkdirp = __webpack_require__(1227); +/** + * The base implementation of `_.matches` which doesn't clone `source`. + * + * @private + * @param {Object} source The object of property values to match. + * @returns {Function} Returns the new spec function. + */ +function baseMatches(source) { + var matchData = getMatchData(source); + if (matchData.length == 1 && matchData[0][2]) { + return matchesStrictComparable(matchData[0][0], matchData[0][1]); + } + return function(object) { + return object === source || baseIsMatch(object, source, matchData); + }; +} -const errors = __webpack_require__(1228); +module.exports = baseMatches; -const stream = __webpack_require__(100); -const fileType = __webpack_require__(1229); +/***/ }), +/* 1301 */ +/***/ (function(module, exports, __webpack_require__) { -const ms = 1; -const s = 1000 * ms; -const m = 60 * s; -const DEFAULT_TIMEOUT = Date.now() + 4 * m; // 4 minutes by default since the stack allows 5 minutes +var Stack = __webpack_require__(1151), + baseIsEqual = __webpack_require__(1302); -const DEFAULT_CONCURRENCY = 1; -const DEFAULT_RETRY = 1; // do not retry by default +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; /** - * Saves the files given in the fileurl attribute of each entries - * - * You need the full permission on `io.cozy.files` in your manifest to use this function. + * The base implementation of `_.isMatch` without support for iteratee shorthands. * - * @param {Array} entries - list of object describing files to save - * @param {string} entries.fileurl - The url of the file (can be a function returning the value). Ignored if `filestream` is given - * @param {Function} entries.fetchFile - the connector can give it's own function to fetch the file from the website, which will be run only when necessary (if the corresponding file is missing on the cozy) function returning the stream). This function must return a promise resolved as a stream - * @param {object | string} entries.filestream - the stream which will be directly passed to cozyClient.files.create (can also be function returning the stream) - * @param {object} entries.requestOptions - The options passed to request to fetch fileurl (can be a function returning the value) - * @param {string} entries.filename - The file name of the item written on disk. This attribute is optional and as default value, the file name will be "smartly" guessed by the function. Use this attribute if the guess is not smart enough for you, or if you use `filestream` (can be a function returning the value). - * @param {string} entries.shouldReplaceName - used to migrate filename. If saveFiles finds a file linked to this entry and this file name matches `shouldReplaceName`, the file is renamed to `filename` (can be a function returning the value) - * @param {Function} entries.shouldReplaceFile - use this function to state if the current entry should be forced to be redownloaded and replaced. Usefull if we know the file content can change and we always want the last version. - * @param {object} entries.fileAttributes - ex: `{created_at: new Date()}` sets some additionnal file attributes passed to cozyClient.file.create - * @param {string} entries.subPath - A subpath to save all files, will be created if needed. - * @param {object} fields - is the argument given to the main function of your connector by the BaseKonnector. It especially contains a `folderPath` which is the string path configured by the user in collect/home - * @param {object} options - global options - * @param {number} options.timeout - timestamp which can be used if your connector needs to fetch a lot of files and if the stack does not give enough time to your connector to fetch it all. It could happen that the connector is stopped right in the middle of the download of the file and the file will be broken. With the `timeout` option, the `saveFiles` function will check if the timeout has passed right after downloading each file and then will be sure to be stopped cleanly if the timeout is not too long. And since it is really fast to check that a file has already been downloaded, on the next run of the connector, it will be able to download some more files, and so on. If you want the timeout to be in 10s, do `Date.now() + 10*1000`. You can try it in the previous code. - * @param {number|boolean} options.contentType - ex: 'application/pdf' used to force the contentType of documents when they are badly recognized by cozy. If "true" the content type will be recognized from the file name and forced the same way. - * @param {number} options.concurrency - default: `1` sets the maximum number of concurrent downloads - * @param {Function} options.validateFile - default: do not validate if file is empty or has bad mime type - * @param {boolean|Function} options.validateFileContent - default false. Also check the content of the file to recognize the mime type - * @param {Array} options.fileIdAttributes - array of strings : Describes which attributes of files will be taken as primary key for files to check if they already exist, even if they are moved. If not given, the file path will used for deduplication as before. - * @param {string} options.subPath - A subpath to save this file, will be created if needed. - * @param {Function} options.fetchFile - the connector can give it's own function to fetch the file from the website, which will be run only when necessary (if the corresponding file is missing on the cozy) function returning the stream). This function must return a promise resolved as a stream - * @example - * ```javascript - * await saveFiles([{fileurl: 'https://...', filename: 'bill1.pdf'}], fields, { - * fileIdAttributes: ['fileurl'] - * }) - * ``` - * @alias module:saveFiles + * @private + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Array} matchData The property names, values, and compare flags to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. */ +function baseIsMatch(object, source, matchData, customizer) { + var index = matchData.length, + length = index, + noCustomizer = !customizer; -const saveFiles = async (entries, fields, options = {}) => { - if (!entries || entries.length === 0) { - log('warn', 'No file to download'); + if (object == null) { + return !length; } - - if (!options.sourceAccount) { - log('warn', 'There is no sourceAccount given to saveFiles'); + object = Object(object); + while (index--) { + var data = matchData[index]; + if ((noCustomizer && data[2]) + ? data[1] !== object[data[0]] + : !(data[0] in object) + ) { + return false; + } } + while (++index < length) { + data = matchData[index]; + var key = data[0], + objValue = object[key], + srcValue = data[1]; - if (!options.sourceAccountIdentifier) { - log('warn', 'There is no sourceAccountIdentifier given to saveFIles'); + if (noCustomizer && data[2]) { + if (objValue === undefined && !(key in object)) { + return false; + } + } else { + var stack = new Stack; + if (customizer) { + var result = customizer(objValue, srcValue, key, object, source, stack); + } + if (!(result === undefined + ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) + : result + )) { + return false; + } + } } + return true; +} - if (typeof fields !== 'object') { - log('debug', 'Deprecation warning, saveFiles 2nd argument should not be a string'); - fields = { - folderPath: fields - }; - } +module.exports = baseIsMatch; - const saveOptions = { - folderPath: fields.folderPath, - fileIdAttributes: options.fileIdAttributes, - timeout: options.timeout || DEFAULT_TIMEOUT, - concurrency: options.concurrency || DEFAULT_CONCURRENCY, - retry: options.retry || DEFAULT_RETRY, - postProcess: options.postProcess, - postProcessFile: options.postProcessFile, - contentType: options.contentType, - requestInstance: options.requestInstance, - shouldReplaceFile: options.shouldReplaceFile, - validateFile: options.validateFile || defaultValidateFile, - subPath: options.subPath, - sourceAccountOptions: { - sourceAccount: options.sourceAccount, - sourceAccountIdentifier: options.sourceAccountIdentifier - } - }; - if (options.validateFileContent) { - if (options.validateFileContent === true) { - saveOptions.validateFileContent = defaultValidateFileContent; - } else if (typeof options.validateFileContent === 'function') { - saveOptions.validateFileContent = options.validateFileContent; - } - } +/***/ }), +/* 1302 */ +/***/ (function(module, exports, __webpack_require__) { - noMetadataDeduplicationWarning(saveOptions); +var baseIsEqualDeep = __webpack_require__(1303), + isObjectLike = __webpack_require__(1206); - const canBeSaved = entry => entry.fetchFile || entry.fileurl || entry.requestOptions || entry.filestream; +/** + * The base implementation of `_.isEqual` which supports partial comparisons + * and tracks traversed objects. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {boolean} bitmask The bitmask flags. + * 1 - Unordered comparison + * 2 - Partial comparison + * @param {Function} [customizer] The function to customize comparisons. + * @param {Object} [stack] Tracks traversed `value` and `other` objects. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + */ +function baseIsEqual(value, other, bitmask, customizer, stack) { + if (value === other) { + return true; + } + if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { + return value !== value && other !== other; + } + return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack); +} - let filesArray = undefined; - let savedFiles = 0; - const savedEntries = []; +module.exports = baseIsEqual; - try { - await bluebird.map(entries, async entry => { - ; - ['fileurl', 'filename', 'shouldReplaceName', 'requestOptions' // 'filestream' - ].forEach(key => { - if (entry[key]) entry[key] = getValOrFnResult(entry[key], entry, options); - }); - if (entry.filestream && !entry.filename) { - log('warn', 'Missing filename property for for filestream entry, entry is ignored'); - return; - } +/***/ }), +/* 1303 */ +/***/ (function(module, exports, __webpack_require__) { - if (entry.shouldReplaceName) { - // At first encounter of a rename, we set the filenamesList - if (filesArray === undefined) { - log('debug', 'initialize files list for renamming'); - filesArray = await getFiles(fields.folderPath); - } +var Stack = __webpack_require__(1151), + equalArrays = __webpack_require__(1304), + equalByTag = __webpack_require__(1310), + equalObjects = __webpack_require__(1313), + getTag = __webpack_require__(1238), + isArray = __webpack_require__(1207), + isBuffer = __webpack_require__(1208), + isTypedArray = __webpack_require__(1211); - const fileFound = filesArray.find(f => getAttribute(f, 'name') === entry.shouldReplaceName); +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1; - if (fileFound) { - await renameFile(fileFound, entry); // we continue because saveFile mays also add fileIdAttributes to the renamed file - } +/** `Object#toString` result references. */ +var argsTag = '[object Arguments]', + arrayTag = '[object Array]', + objectTag = '[object Object]'; - delete entry.shouldReplaceName; - } +/** Used for built-in method references. */ +var objectProto = Object.prototype; - if (canBeSaved(entry)) { - const folderPath = await getOrCreateDestinationPath(entry, saveOptions); - entry = await saveEntry(entry, { ...saveOptions, - folderPath - }); +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; + +/** + * A specialized version of `baseIsEqual` for arrays and objects which performs + * deep comparisons and tracks traversed objects enabling objects with circular + * references to be compared. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} [stack] Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ +function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { + var objIsArr = isArray(object), + othIsArr = isArray(other), + objTag = objIsArr ? arrayTag : getTag(object), + othTag = othIsArr ? arrayTag : getTag(other); - if (entry && entry._cozy_file_to_create) { - savedFiles++; - delete entry._cozy_file_to_create; - } - } + objTag = objTag == argsTag ? objectTag : objTag; + othTag = othTag == argsTag ? objectTag : othTag; - savedEntries.push(entry); - }, { - concurrency: saveOptions.concurrency - }); - } catch (err) { - if (err.message !== 'TIMEOUT') { - throw err; - } else { - log('warn', `saveFile timeout: still ${entries.length - savedEntries.length} / ${entries.length} to download`); + var objIsObj = objTag == objectTag, + othIsObj = othTag == objectTag, + isSameTag = objTag == othTag; + + if (isSameTag && isBuffer(object)) { + if (!isBuffer(other)) { + return false; } + objIsArr = true; + objIsObj = false; } - - log('info', `saveFiles created ${savedFiles} files for ${savedEntries ? savedEntries.length : 'n'} entries`); - return savedEntries; -}; - -const saveEntry = async function (entry, options) { - if (options.timeout && Date.now() > options.timeout) { - const remainingTime = Math.floor((options.timeout - Date.now()) / s); - log('info', `${remainingTime}s timeout finished for ${options.folderPath}`); - throw new Error('TIMEOUT'); + if (isSameTag && !objIsObj) { + stack || (stack = new Stack); + return (objIsArr || isTypedArray(object)) + ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) + : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack); } + if (!(bitmask & COMPARE_PARTIAL_FLAG)) { + var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'), + othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__'); - let file = await getFileIfExists(entry, options); - let shouldReplace = false; + if (objIsWrapped || othIsWrapped) { + var objUnwrapped = objIsWrapped ? object.value() : object, + othUnwrapped = othIsWrapped ? other.value() : other; - if (file) { - try { - shouldReplace = await shouldReplaceFile(file, entry, options); - } catch (err) { - log('info', `Error in shouldReplaceFile : ${err.message}`); - shouldReplace = true; + stack || (stack = new Stack); + return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); } } + if (!isSameTag) { + return false; + } + stack || (stack = new Stack); + return equalObjects(object, other, bitmask, customizer, equalFunc, stack); +} - let method = 'create'; +module.exports = baseIsEqualDeep; - if (shouldReplace && file) { - method = 'updateById'; - log('debug', `Will replace ${getFilePath({ - options, - file - })}...`); - } - try { - if (!file || method === 'updateById') { - log('debug', omit(entry, 'filestream')); - logFileStream(entry.filestream); - log('debug', `File ${getFilePath({ - options, - entry - })} does not exist yet or is not valid`); - entry._cozy_file_to_create = true; - file = await retry(createFile, { - interval: 1000, - throw_original: true, - max_tries: options.retry, - args: [entry, options, method, file ? file._id : undefined] - }).catch(err => { - if (err.message === 'BAD_DOWNLOADED_FILE') { - log('warn', `Could not download file after ${options.retry} tries removing the file`); - } else { - log('warn', 'unknown file download error: ' + err.message); - } - }); - } +/***/ }), +/* 1304 */ +/***/ (function(module, exports, __webpack_require__) { - attachFileToEntry(entry, file); - sanitizeEntry(entry); +var SetCache = __webpack_require__(1305), + arraySome = __webpack_require__(1308), + cacheHas = __webpack_require__(1309); - if (options.postProcess) { - await options.postProcess(entry); - } - } catch (err) { - if (getErrorStatus(err) === 413) { - // the cozy quota is full - throw new Error(errors.DISK_QUOTA_EXCEEDED); - } +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; - log('warn', errors.SAVE_FILE_FAILED); - log('warn', err.message, `Error caught while trying to save the file ${entry.fileurl ? entry.fileurl : entry.filename}`); +/** + * A specialized version of `baseIsEqualDeep` for arrays with support for + * partial deep comparisons. + * + * @private + * @param {Array} array The array to compare. + * @param {Array} other The other array to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `array` and `other` objects. + * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`. + */ +function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + arrLength = array.length, + othLength = other.length; + + if (arrLength != othLength && !(isPartial && othLength > arrLength)) { + return false; + } + // Assume cyclic values are equal. + var stacked = stack.get(array); + if (stacked && stack.get(other)) { + return stacked == other; } + var index = -1, + result = true, + seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined; - return entry; -}; + stack.set(array, other); + stack.set(other, array); -function noMetadataDeduplicationWarning(options) { - const fileIdAttributes = options.fileIdAttributes; + // Ignore non-index properties. + while (++index < arrLength) { + var arrValue = array[index], + othValue = other[index]; - if (!fileIdAttributes) { - log('warn', `saveFiles: no deduplication key is defined, file deduplication will be based on file path`); + if (customizer) { + var compared = isPartial + ? customizer(othValue, arrValue, index, other, array, stack) + : customizer(arrValue, othValue, index, array, other, stack); + } + if (compared !== undefined) { + if (compared) { + continue; + } + result = false; + break; + } + // Recursively compare arrays (susceptible to call stack limits). + if (seen) { + if (!arraySome(other, function(othValue, othIndex) { + if (!cacheHas(seen, othIndex) && + (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { + return seen.push(othIndex); + } + })) { + result = false; + break; + } + } else if (!( + arrValue === othValue || + equalFunc(arrValue, othValue, bitmask, customizer, stack) + )) { + result = false; + break; + } } + stack['delete'](array); + stack['delete'](other); + return result; +} - const slug = manifest.data.slug; +module.exports = equalArrays; - if (!slug) { - log('warn', `saveFiles: no slug is defined for the current connector, file deduplication will be based on file path`); - } - const sourceAccountIdentifier = get(options, 'sourceAccountOptions.sourceAccountIdentifier'); +/***/ }), +/* 1305 */ +/***/ (function(module, exports, __webpack_require__) { - if (!sourceAccountIdentifier) { - log('warn', `saveFiles: no sourceAccountIdentifier is defined in options, file deduplication will be based on file path`); +var MapCache = __webpack_require__(1180), + setCacheAdd = __webpack_require__(1306), + setCacheHas = __webpack_require__(1307); + +/** + * + * Creates an array cache object to store unique values. + * + * @private + * @constructor + * @param {Array} [values] The values to cache. + */ +function SetCache(values) { + var index = -1, + length = values == null ? 0 : values.length; + + this.__data__ = new MapCache; + while (++index < length) { + this.add(values[index]); } } -async function getFileIfExists(entry, options) { - const fileIdAttributes = options.fileIdAttributes; - const slug = manifest.data.slug; - const sourceAccountIdentifier = get(options, 'sourceAccountOptions.sourceAccountIdentifier'); - const isReadyForFileMetadata = fileIdAttributes && slug && sourceAccountIdentifier; +// Add methods to `SetCache`. +SetCache.prototype.add = SetCache.prototype.push = setCacheAdd; +SetCache.prototype.has = setCacheHas; - if (isReadyForFileMetadata) { - const file = await getFileFromMetaData(entry, fileIdAttributes, sourceAccountIdentifier, slug); +module.exports = SetCache; - if (!file) { - // no file with correct metadata, maybe the corresponding file already exist in the default - // path from a previous version of the connector - return await getFileFromPath(entry, options); - } else return file; - } else { - return await getFileFromPath(entry, options); - } -} -async function getFileFromMetaData(entry, fileIdAttributes, sourceAccountIdentifier, slug) { - const index = await cozy.data.defineIndex('io.cozy.files', ['metadata.fileIdAttributes', 'trashed', 'cozyMetadata.sourceAccountIdentifier', 'cozyMetadata.createdByApp']); - log('debug', `Checking existence of ${calculateFileKey(entry, fileIdAttributes)}`); - const files = await queryAll('io.cozy.files', { - metadata: { - fileIdAttributes: calculateFileKey(entry, fileIdAttributes) - }, - trashed: false, - cozyMetadata: { - sourceAccountIdentifier, - createdByApp: slug - } - }, index); +/***/ }), +/* 1306 */ +/***/ (function(module, exports) { - if (files && files[0]) { - if (files.length > 1) { - log('warn', `Found ${files.length} files corresponding to ${calculateFileKey(entry, fileIdAttributes)}`); - } +/** Used to stand-in for `undefined` hash values. */ +var HASH_UNDEFINED = '__lodash_hash_undefined__'; - return files[0]; - } else { - log('debug', 'not found'); - return false; - } +/** + * Adds `value` to the array cache. + * + * @private + * @name add + * @memberOf SetCache + * @alias push + * @param {*} value The value to cache. + * @returns {Object} Returns the cache instance. + */ +function setCacheAdd(value) { + this.__data__.set(value, HASH_UNDEFINED); + return this; } -async function getFileFromPath(entry, options) { - try { - log('debug', `Checking existence of ${getFilePath({ - entry, - options - })}`); - const result = await cozy.files.statByPath(getFilePath({ - entry, - options - })); - return result; - } catch (err) { - log('debug', err.message); - return false; - } -} +module.exports = setCacheAdd; -async function createFile(entry, options, method, fileId) { - const folder = await cozy.files.statByPath(options.folderPath); - let createFileOptions = { - name: getFileName(entry), - dirID: folder._id - }; - if (options.contentType) { - if (options.contentType === true && entry.filename) { - createFileOptions.contentType = mimetypes.contentType(entry.filename); - } else { - createFileOptions.contentType = options.contentType; - } - } +/***/ }), +/* 1307 */ +/***/ (function(module, exports) { - createFileOptions = { ...createFileOptions, - ...entry.fileAttributes, - ...options.sourceAccountOptions - }; +/** + * Checks if `value` is in the array cache. + * + * @private + * @name has + * @memberOf SetCache + * @param {*} value The value to search for. + * @returns {number} Returns `true` if `value` is found, else `false`. + */ +function setCacheHas(value) { + return this.__data__.has(value); +} - if (options.fileIdAttributes) { - createFileOptions = { ...createFileOptions, - ...{ - metadata: { ...createFileOptions.metadata, - fileIdAttributes: calculateFileKey(entry, options.fileIdAttributes) - } - } - }; - } +module.exports = setCacheHas; - let toCreate; - if (entry.filestream) { - toCreate = entry.filestream; - } else if (entry.fetchFile || options.fetchFile) { - toCreate = await (entry.fetchFile || options.fetchFile)(entry); - } else { - toCreate = downloadEntry(entry, { ...options, - simple: false - }); - } +/***/ }), +/* 1308 */ +/***/ (function(module, exports) { - let fileDocument; +/** + * A specialized version of `_.some` for arrays without support for iteratee + * shorthands. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ +function arraySome(array, predicate) { + var index = -1, + length = array == null ? 0 : array.length; - if (method === 'create') { - fileDocument = await cozy.files.create(toCreate, createFileOptions); - } else if (method === 'updateById') { - log('debug', `replacing file for ${entry.filename}`); - fileDocument = await cozy.files.updateById(fileId, toCreate, createFileOptions); + while (++index < length) { + if (predicate(array[index], index, array)) { + return true; + } } + return false; +} - if (options.validateFile) { - if ((await options.validateFile(fileDocument)) === false) { - await removeFile(fileDocument); - throw new Error('BAD_DOWNLOADED_FILE'); - } +module.exports = arraySome; - if (options.validateFileContent && !(await options.validateFileContent(fileDocument))) { - await removeFile(fileDocument); - throw new Error('BAD_DOWNLOADED_FILE'); - } - } - return fileDocument; +/***/ }), +/* 1309 */ +/***/ (function(module, exports) { + +/** + * Checks if a `cache` value for `key` exists. + * + * @private + * @param {Object} cache The cache to query. + * @param {string} key The key of the entry to check. + * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`. + */ +function cacheHas(cache, key) { + return cache.has(key); } -function downloadEntry(entry, options) { - let filePromise = getRequestInstance(entry, options)(getRequestOptions(entry, options)); +module.exports = cacheHas; - if (options.contentType) { - // the developper wants to force the contentType of the document - // we pipe the stream to remove headers with bad contentType from the request - return filePromise.pipe(new stream.PassThrough()); - } // we have to do this since the result of filePromise is not a stream and cannot be taken by - // cozy.files.create +/***/ }), +/* 1310 */ +/***/ (function(module, exports, __webpack_require__) { - if (options.postProcessFile) { - log('warn', 'Be carefull postProcessFile option is deprecated. You should use the filestream attribute in each entry instead'); - return filePromise.then(data => options.postProcessFile(data)); - } +var Symbol = __webpack_require__(1170), + Uint8Array = __webpack_require__(1246), + eq = __webpack_require__(1156), + equalArrays = __webpack_require__(1304), + mapToArray = __webpack_require__(1311), + setToArray = __webpack_require__(1312); - filePromise.catch(err => { - log('warn', `File download error ${err.message}`); - }); - return filePromise; -} +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; -const shouldReplaceFile = async function (file, entry, options) { - const isValid = !options.validateFile || (await options.validateFile(file)); +/** `Object#toString` result references. */ +var boolTag = '[object Boolean]', + dateTag = '[object Date]', + errorTag = '[object Error]', + mapTag = '[object Map]', + numberTag = '[object Number]', + regexpTag = '[object RegExp]', + setTag = '[object Set]', + stringTag = '[object String]', + symbolTag = '[object Symbol]'; - if (!isValid) { - log('warn', `${getFileName({ - file, - options - })} is invalid`); - throw new Error('BAD_DOWNLOADED_FILE'); - } +var arrayBufferTag = '[object ArrayBuffer]', + dataViewTag = '[object DataView]'; - const defaultShouldReplaceFile = (file, entry) => { - const shouldForceMetadataAttr = attr => { - const result = !getAttribute(file, `metadata.${attr}`) && get(entry, `fileAttributes.metadata.${attr}`); - if (result) log('debug', `filereplacement: adding ${attr} metadata`); - return result; - }; // replace all files with meta if there is file metadata to add +/** Used to convert symbols to primitives and strings. */ +var symbolProto = Symbol ? Symbol.prototype : undefined, + symbolValueOf = symbolProto ? symbolProto.valueOf : undefined; +/** + * A specialized version of `baseIsEqualDeep` for comparing objects of + * the same `toStringTag`. + * + * **Note:** This function only supports comparing values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {string} tag The `toStringTag` of the objects to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ +function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { + switch (tag) { + case dataViewTag: + if ((object.byteLength != other.byteLength) || + (object.byteOffset != other.byteOffset)) { + return false; + } + object = object.buffer; + other = other.buffer; - const fileHasNoMetadata = !getAttribute(file, 'metadata'); - const fileHasNoId = !getAttribute(file, 'metadata.fileIdAttributes'); - const entryHasMetadata = !!get(entry, 'fileAttributes.metadata'); - const hasSourceAccountIdentifierOption = !!get(options, 'sourceAccountOptions.sourceAccountIdentifier'); - const fileHasSourceAccountIdentifier = !!getAttribute(file, 'cozyMetadata.sourceAccountIdentifier'); - const result = fileHasNoMetadata && entryHasMetadata || fileHasNoId && !!options.fileIdAttributes || hasSourceAccountIdentifierOption && !fileHasSourceAccountIdentifier || shouldForceMetadataAttr('carbonCopy') || shouldForceMetadataAttr('electronicSafe') || shouldForceMetadataAttr('categories'); + case arrayBufferTag: + if ((object.byteLength != other.byteLength) || + !equalFunc(new Uint8Array(object), new Uint8Array(other))) { + return false; + } + return true; - if (result) { - if (fileHasNoMetadata && entryHasMetadata) log('debug', 'filereplacement: metadata to add'); - if (fileHasNoId && !!options.fileIdAttributes) log('debug', 'filereplacement: adding fileIdAttributes'); - if (hasSourceAccountIdentifierOption && !fileHasSourceAccountIdentifier) log('debug', 'filereplacement: adding sourceAccountIdentifier'); - } + case boolTag: + case dateTag: + case numberTag: + // Coerce booleans to `1` or `0` and dates to milliseconds. + // Invalid dates are coerced to `NaN`. + return eq(+object, +other); - return result; - }; + case errorTag: + return object.name == other.name && object.message == other.message; - const shouldReplaceFileFn = entry.shouldReplaceFile || options.shouldReplaceFile || defaultShouldReplaceFile; - return shouldReplaceFileFn(file, entry); -}; + case regexpTag: + case stringTag: + // Coerce regexes to strings and treat strings, primitives and objects, + // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring + // for more details. + return object == (other + ''); -const removeFile = async function (file) { - await cozy.files.trashById(file._id); - await cozy.files.destroyById(file._id); -}; + case mapTag: + var convert = mapToArray; -module.exports = saveFiles; -module.exports.getFileIfExists = getFileIfExists; + case setTag: + var isPartial = bitmask & COMPARE_PARTIAL_FLAG; + convert || (convert = setToArray); -function getFileName(entry) { - let filename; + if (object.size != other.size && !isPartial) { + return false; + } + // Assume cyclic values are equal. + var stacked = stack.get(object); + if (stacked) { + return stacked == other; + } + bitmask |= COMPARE_UNORDERED_FLAG; - if (entry.filename) { - filename = entry.filename; - } else if (entry.fileurl) { - // try to get the file name from the url - const parsed = __webpack_require__(83).parse(entry.fileurl); + // Recursively compare objects (susceptible to call stack limits). + stack.set(object, other); + var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack); + stack['delete'](object); + return result; - filename = path.basename(parsed.pathname); - } else { - log('error', 'Could not get a file name for the entry'); - return false; + case symbolTag: + if (symbolValueOf) { + return symbolValueOf.call(object) == symbolValueOf.call(other); + } } - - return sanitizeFileName(filename); + return false; } -function sanitizeFileName(filename) { - return filename.replace(/^\.+$/, '').replace(/[/?<>\\:*|":]/g, ''); -} +module.exports = equalByTag; -function checkFileSize(fileobject) { - const size = getAttribute(fileobject, 'size'); - const name = getAttribute(fileobject, 'name'); - if (size === 0 || size === '0') { - log('warn', `${name} is empty`); - log('warn', 'BAD_FILE_SIZE'); - return false; - } +/***/ }), +/* 1311 */ +/***/ (function(module, exports) { - return true; -} +/** + * Converts `map` to its key-value pairs. + * + * @private + * @param {Object} map The map to convert. + * @returns {Array} Returns the key-value pairs. + */ +function mapToArray(map) { + var index = -1, + result = Array(map.size); -function checkMimeWithPath(fileDocument) { - const mime = getAttribute(fileDocument, 'mime'); - const name = getAttribute(fileDocument, 'name'); - const extension = path.extname(name).substr(1); + map.forEach(function(value, key) { + result[++index] = [key, value]; + }); + return result; +} - if (extension && mime && mimetypes.lookup(extension) !== mime) { - log('warn', `${name} and ${mime} do not correspond`); - log('warn', 'BAD_MIME_TYPE'); - return false; - } +module.exports = mapToArray; - return true; -} -function logFileStream(fileStream) { - if (!fileStream) return; +/***/ }), +/* 1312 */ +/***/ (function(module, exports) { - if (fileStream && fileStream.constructor && fileStream.constructor.name) { - log('debug', `The fileStream attribute is an instance of ${fileStream.constructor.name}`); - } else { - log('debug', `The fileStream attribute is a ${typeof fileStream}`); - } -} +/** + * Converts `set` to an array of its values. + * + * @private + * @param {Object} set The set to convert. + * @returns {Array} Returns the values. + */ +function setToArray(set) { + var index = -1, + result = Array(set.size); -async function getFiles(folderPath) { - const dir = await cozy.files.statByPath(folderPath); - const files = await queryAll('io.cozy.files', { - dir_id: dir._id + set.forEach(function(value) { + result[++index] = value; }); - return files; + return result; } -async function renameFile(file, entry) { - if (!entry.filename) { - throw new Error('shouldReplaceName needs a filename'); - } +module.exports = setToArray; - log('debug', `Renaming ${getAttribute(file, 'name')} to ${entry.filename}`); - try { - await cozy.files.updateAttributesById(file._id, { - name: entry.filename - }); - } catch (err) { - if (JSON.parse(err.message).errors.shift().status === '409') { - log('warn', `${entry.filename} already exists. Removing ${getAttribute(file, 'name')}`); - await cozy.files.trashById(file._id); - } - } -} +/***/ }), +/* 1313 */ +/***/ (function(module, exports, __webpack_require__) { -function getErrorStatus(err) { - try { - return Number(JSON.parse(err.message).errors[0].status); - } catch (e) { - return null; - } -} +var getAllKeys = __webpack_require__(1235); -function getValOrFnResult(val, ...args) { - if (typeof val === 'function') { - return val.apply(val, args); - } else return val; -} +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1; -function calculateFileKey(entry, fileIdAttributes) { - return fileIdAttributes.sort().map(key => get(entry, key)).join('####'); -} +/** Used for built-in method references. */ +var objectProto = Object.prototype; -function defaultValidateFile(fileDocument) { - return checkFileSize(fileDocument) && checkMimeWithPath(fileDocument); -} +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; -async function defaultValidateFileContent(fileDocument) { - const response = await cozy.files.downloadById(fileDocument._id); - const mime = getAttribute(fileDocument, 'mime'); - const fileTypeFromContent = await fileType.fromBuffer(await response.buffer()); +/** + * A specialized version of `baseIsEqualDeep` for objects with support for + * partial deep comparisons. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details. + * @param {Function} customizer The function to customize comparisons. + * @param {Function} equalFunc The function to determine equivalents of values. + * @param {Object} stack Tracks traversed `object` and `other` objects. + * @returns {boolean} Returns `true` if the objects are equivalent, else `false`. + */ +function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { + var isPartial = bitmask & COMPARE_PARTIAL_FLAG, + objProps = getAllKeys(object), + objLength = objProps.length, + othProps = getAllKeys(other), + othLength = othProps.length; - if (!fileTypeFromContent) { - log('warn', `Could not find mime type from file content`); + if (objLength != othLength && !isPartial) { return false; } - - if (!defaultValidateFile(fileDocument) || mime !== fileTypeFromContent.mime) { - log('warn', `Wrong file type from content ${JSON.stringify(fileTypeFromContent)}`); - return false; + var index = objLength; + while (index--) { + var key = objProps[index]; + if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) { + return false; + } } + // Assume cyclic values are equal. + var stacked = stack.get(object); + if (stacked && stack.get(other)) { + return stacked == other; + } + var result = true; + stack.set(object, other); + stack.set(other, object); - return true; -} - -function sanitizeEntry(entry) { - delete entry.fetchFile; - delete entry.requestOptions; - delete entry.filestream; - delete entry.shouldReplaceFile; - return entry; -} - -function getRequestInstance(entry, options) { - return options.requestInstance ? options.requestInstance : requestFactory({ - json: false, - cheerio: false, - userAgent: true, - jar: true - }); -} - -function getRequestOptions(entry, options) { - const defaultRequestOptions = { - uri: entry.fileurl, - method: 'GET' - }; + var skipCtor = isPartial; + while (++index < objLength) { + key = objProps[index]; + var objValue = object[key], + othValue = other[key]; - if (!options.requestInstance) { - // if requestInstance is already set, we suppose that the connecteur want to handle the cookie - // jar itself - defaultRequestOptions.jar = true; + if (customizer) { + var compared = isPartial + ? customizer(othValue, objValue, key, other, object, stack) + : customizer(objValue, othValue, key, object, other, stack); + } + // Recursively compare objects (susceptible to call stack limits). + if (!(compared === undefined + ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack)) + : compared + )) { + result = false; + break; + } + skipCtor || (skipCtor = key == 'constructor'); } + if (result && !skipCtor) { + var objCtor = object.constructor, + othCtor = other.constructor; - return { ...defaultRequestOptions, - ...entry.requestOptions - }; + // Non `Object` object instances with different constructors are not equal. + if (objCtor != othCtor && + ('constructor' in object && 'constructor' in other) && + !(typeof objCtor == 'function' && objCtor instanceof objCtor && + typeof othCtor == 'function' && othCtor instanceof othCtor)) { + result = false; + } + } + stack['delete'](object); + stack['delete'](other); + return result; } -function attachFileToEntry(entry, fileDocument) { - entry.fileDocument = fileDocument; - return entry; -} +module.exports = equalObjects; -function getFilePath({ - file, - entry, - options -}) { - const folderPath = options.folderPath; - if (file) { - return path.join(folderPath, getAttribute(file, 'name')); - } else if (entry) { - return path.join(folderPath, getFileName(entry)); - } -} +/***/ }), +/* 1314 */ +/***/ (function(module, exports, __webpack_require__) { -function getAttribute(obj, attribute) { - return get(obj, `attributes.${attribute}`, get(obj, attribute)); -} +var isStrictComparable = __webpack_require__(1315), + keys = __webpack_require__(1201); -async function getOrCreateDestinationPath(entry, saveOptions) { - const subPath = entry.subPath || saveOptions.subPath; - let finalPath = saveOptions.folderPath; +/** + * Gets the property names, values, and compare flags of `object`. + * + * @private + * @param {Object} object The object to query. + * @returns {Array} Returns the match data of `object`. + */ +function getMatchData(object) { + var result = keys(object), + length = result.length; - if (subPath) { - finalPath += '/' + subPath; - await mkdirp(finalPath); - } + while (length--) { + var key = result[length], + value = object[key]; - return finalPath; + result[length] = [key, value, isStrictComparable(value)]; + } + return result; } -/***/ }), -/* 1225 */ -/***/ (function(module, exports, __webpack_require__) { - - -module.exports = __webpack_require__(1226); +module.exports = getMatchData; /***/ }), -/* 1226 */ +/* 1315 */ /***/ (function(module, exports, __webpack_require__) { -var Promise = __webpack_require__(25); +var isObject = __webpack_require__(1175); -// Subclass of Error that can be thrown to indicate that retry should stop. -// -// If called with an instance of Error subclass, then the retry promise will be -// rejected with the given error. -// -// Otherwise the cancel error object itself is propagated to the caller. -// -function StopError(err) { - this.name = 'StopError'; - if (err instanceof Error) { - this.err = err - } else { - this.message = err || 'cancelled' - } +/** + * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` if suitable for strict + * equality comparisons, else `false`. + */ +function isStrictComparable(value) { + return value === value && !isObject(value); } -StopError.prototype = Object.create(Error.prototype); - -retry.StopError = StopError; - - -// Retry `func` until it succeeds. -// -// For each attempt, invokes `func` with `options.args` as arguments and -// `options.context` as `this`. -// -// Waits `options.interval` milliseconds (default 1000) between attempts. -// -// Increases wait by a factor of `options.backoff` each interval, up to -// a limit of `options.max_interval`. -// -// Keeps trying until `options.timeout` milliseconds have elapsed, -// or `options.max_tries` have been attempted, whichever comes first. -// -// If neither is specified, then the default is to make 5 attempts. -// - -function retry(func, options) { - options = options || {}; - var interval = typeof options.interval === 'number' ? options.interval : 1000; +module.exports = isStrictComparable; - var max_tries, giveup_time; - if (typeof(options.max_tries) !== 'undefined') { - max_tries = options.max_tries; - } - if (options.timeout) { - giveup_time = new Date().getTime() + options.timeout; - } +/***/ }), +/* 1316 */ +/***/ (function(module, exports) { - if (!max_tries && !giveup_time) { - max_tries = 5; +/** + * A specialized version of `matchesProperty` for source values suitable + * for strict equality comparisons, i.e. `===`. + * + * @private + * @param {string} key The key of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ +function matchesStrictComparable(key, srcValue) { + return function(object) { + if (object == null) { + return false; } + return object[key] === srcValue && + (srcValue !== undefined || (key in Object(object))); + }; +} - var tries = 0; - var start = new Date().getTime(); +module.exports = matchesStrictComparable; - // If the user didn't supply a predicate function then add one that - // always succeeds. - // - // This is used in bluebird's filtered catch to flag the error types - // that should retry. - var predicate = options.predicate || function(err) { return true; } - var stopped = false; - function try_once() { - var tryStart = new Date().getTime(); - return Promise.attempt(function() { - return func.apply(options.context, options.args); - }) - .caught(StopError, function(err) { - stopped = true; - if (err.err instanceof Error) { - return Promise.reject(err.err); - } else { - return Promise.reject(err); - } - }) - .caught(predicate, function(err) { - if (stopped) { - return Promise.reject(err); - } - ++tries; - if (tries > 1) { - interval = backoff(interval, options); - } - var now = new Date().getTime(); +/***/ }), +/* 1317 */ +/***/ (function(module, exports, __webpack_require__) { - if ((max_tries && (tries === max_tries) || - (giveup_time && (now + interval >= giveup_time)))) { +var baseIsEqual = __webpack_require__(1302), + get = __webpack_require__(1318), + hasIn = __webpack_require__(1288), + isKey = __webpack_require__(1259), + isStrictComparable = __webpack_require__(1315), + matchesStrictComparable = __webpack_require__(1316), + toKey = __webpack_require__(1269); - if (! (err instanceof Error)) { - var failure = err; +/** Used to compose bitmasks for value comparisons. */ +var COMPARE_PARTIAL_FLAG = 1, + COMPARE_UNORDERED_FLAG = 2; - if (failure) { - if (typeof failure !== 'string') { - failure = JSON.stringify(failure); - } - } +/** + * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`. + * + * @private + * @param {string} path The path of the property to get. + * @param {*} srcValue The value to match. + * @returns {Function} Returns the new spec function. + */ +function baseMatchesProperty(path, srcValue) { + if (isKey(path) && isStrictComparable(srcValue)) { + return matchesStrictComparable(toKey(path), srcValue); + } + return function(object) { + var objValue = get(object, path); + return (objValue === undefined && objValue === srcValue) + ? hasIn(object, path) + : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG); + }; +} - err = new Error('rejected with non-error: ' + failure); - err.failure = failure; - } else if (options.throw_original) { - return Promise.reject(err); - } +module.exports = baseMatchesProperty; - var timeout = new Error('operation timed out after ' + (now - start) + ' ms, ' + tries + ' tries with error: ' + err.message); - timeout.failure = err; - timeout.code = 'ETIMEDOUT'; - return Promise.reject(timeout); - } else { - var delay = interval - (now - tryStart); - if (delay <= 0) { - return try_once(); - } else { - return Promise.delay(delay).then(try_once); - } - } - }); - } - return try_once(); -} -// Return the updated interval after applying the various backoff options -function backoff(interval, options) { - if (options.backoff) { - interval = interval * options.backoff; - } +/***/ }), +/* 1318 */ +/***/ (function(module, exports, __webpack_require__) { - if (options.max_interval) { - interval = Math.min(interval, options.max_interval); - } +var baseGet = __webpack_require__(1268); - return interval; +/** + * Gets the value at `path` of `object`. If the resolved value is + * `undefined`, the `defaultValue` is returned in its place. + * + * @static + * @memberOf _ + * @since 3.7.0 + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path of the property to get. + * @param {*} [defaultValue] The value returned for `undefined` resolved values. + * @returns {*} Returns the resolved value. + * @example + * + * var object = { 'a': [{ 'b': { 'c': 3 } }] }; + * + * _.get(object, 'a[0].b.c'); + * // => 3 + * + * _.get(object, ['a', '0', 'b', 'c']); + * // => 3 + * + * _.get(object, 'a.b.c', 'default'); + * // => 'default' + */ +function get(object, path, defaultValue) { + var result = object == null ? undefined : baseGet(object, path); + return result === undefined ? defaultValue : result; } -module.exports = retry; +module.exports = get; /***/ }), -/* 1227 */ +/* 1319 */ /***/ (function(module, exports, __webpack_require__) { -/** - * @module mkdirp - */ -const { - basename, - dirname, - join -} = __webpack_require__(160).posix; +var baseProperty = __webpack_require__(1295), + basePropertyDeep = __webpack_require__(1320), + isKey = __webpack_require__(1259), + toKey = __webpack_require__(1269); -const cozyClient = __webpack_require__(485); /** - * Creates a directory and its missing ancestors as needed. - * - * Options : - * - * - `...pathComponents`: one or many path components to be joined + * Creates a function that returns the value at `path` of a given object. * - * ```javascript - * await mkdirp('/foo') // Creates /foo - * await mkdirp('/foo') // Does nothing as /foo already exists - * await mkdirp('/bar/baz') // Creates /bar, then /bar/baz - * await mkdirp('/foo/bar/baz') // Creates /foo/bar, then /foo/bar/baz, not /foo - * await mkdirp('/') // Does nothing - * await mkdirp('/qux', 'qux2/qux3', 'qux4') // Creates /qux, then /qux/qux2, - * // then /qux/qux2/qux3 and - * // finally /qux/qux2/qux3/qux4 - * ``` + * @static + * @memberOf _ + * @since 2.4.0 + * @category Util + * @param {Array|string} path The path of the property to get. + * @returns {Function} Returns the new accessor function. + * @example * - * The function will automatically add a leading slash when missing: + * var objects = [ + * { 'a': { 'b': 2 } }, + * { 'a': { 'b': 1 } } + * ]; * - * ```javascript - * await mkdirp('foo', 'bar') // Creates /foo, then /foo/bar - * ``` + * _.map(objects, _.property('a.b')); + * // => [2, 1] * - * @alias module:mkdirp + * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b'); + * // => [1, 2] */ +function property(path) { + return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path); +} +module.exports = property; -const mkdirp = fromCozy(cozyClient); -module.exports = mkdirp; // `fromCozy()` builds an mkdirp() function for the given Cozy client. -// Useful for testing. - -mkdirp.fromCozy = fromCozy; -function fromCozy(cozy) { - return async function mkdirp(...pathComponents) { - const path = join('/', ...pathComponents); - let doc = null; +/***/ }), +/* 1320 */ +/***/ (function(module, exports, __webpack_require__) { - try { - doc = await cozy.files.statByPath(path); - return doc; - } catch (err) { - if (![404, 409].includes(err.status)) throw err; - const name = basename(path); - const parentPath = dirname(path); - const parentDoc = await mkdirp(parentPath); +var baseGet = __webpack_require__(1268); - try { - doc = await cozy.files.createDirectory({ - name, - dirID: parentDoc._id - }); - return doc; - } catch (createErr) { - if (![404, 409].includes(createErr.status)) throw createErr; - return doc; - } - } +/** + * A specialized version of `baseProperty` which supports deep paths. + * + * @private + * @param {Array|string} path The path of the property to get. + * @returns {Function} Returns the new accessor function. + */ +function basePropertyDeep(path) { + return function(object) { + return baseGet(object, path); }; } +module.exports = basePropertyDeep; + + /***/ }), -/* 1228 */ -/***/ (function(module, exports, __webpack_require__) { +/* 1321 */ +/***/ (function(module, exports) { -"use strict"; +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; /** - * The konnector could not login + * Creates a function that negates the result of the predicate `func`. The + * `func` predicate is invoked with the `this` binding and arguments of the + * created function. * - * @type {string} - */ - -const LOGIN_FAILED = 'LOGIN_FAILED'; -/** - * The folder specified as folder_to_save does not exist (checked by BaseKonnector) + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {Function} predicate The predicate to negate. + * @returns {Function} Returns the new negated function. + * @example * - * @type {string} - */ - -const NOT_EXISTING_DIRECTORY = 'NOT_EXISTING_DIRECTORY'; -/** - * The vendor's website is down + * function isEven(n) { + * return n % 2 == 0; + * } * - * @type {string} + * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); + * // => [1, 3, 5] */ +function negate(predicate) { + if (typeof predicate != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + return function() { + var args = arguments; + switch (args.length) { + case 0: return !predicate.call(this); + case 1: return !predicate.call(this, args[0]); + case 2: return !predicate.call(this, args[0], args[1]); + case 3: return !predicate.call(this, args[0], args[1], args[2]); + } + return !predicate.apply(this, args); + }; +} -const VENDOR_DOWN = 'VENDOR_DOWN'; -/** - * There was an unexpected error, please take a look at the logs to know what happened - * - * @type {string} - */ +module.exports = negate; -const USER_ACTION_NEEDED = 'USER_ACTION_NEEDED'; -/** - * There was a problem while downloading a file - * - * @type {string} - */ -const FILE_DOWNLOAD_FAILED = 'FILE_DOWNLOAD_FAILED'; -/** - * There was a problem while saving a file - * - * @type {string} - */ +/***/ }), +/* 1322 */ +/***/ (function(module, exports, __webpack_require__) { -const SAVE_FILE_FAILED = 'SAVE_FILE_FAILED'; -/** - * Could not save a file to the cozy because of disk quota exceeded - * - * @type {string} - */ +var arrayMap = __webpack_require__(1149), + baseIteratee = __webpack_require__(1299), + basePickBy = __webpack_require__(1286), + getAllKeysIn = __webpack_require__(1237); -const DISK_QUOTA_EXCEEDED = 'DISK_QUOTA_EXCEEDED'; /** - * It seems that the website requires a second authentification factor that we don’t support yet. + * Creates an object composed of the `object` properties `predicate` returns + * truthy for. The predicate is invoked with two arguments: (value, key). * - * @type {string} + * @static + * @memberOf _ + * @since 4.0.0 + * @category Object + * @param {Object} object The source object. + * @param {Function} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pickBy(object, _.isNumber); + * // => { 'a': 1, 'c': 3 } */ +function pickBy(object, predicate) { + if (object == null) { + return {}; + } + var props = arrayMap(getAllKeysIn(object), function(prop) { + return [prop]; + }); + predicate = baseIteratee(predicate); + return basePickBy(object, props, function(value, path) { + return predicate(value, path[0]); + }); +} + +module.exports = pickBy; + + +/***/ }), +/* 1323 */ +/***/ (function(module, exports) { -const CHALLENGE_ASKED = 'CHALLENGE_ASKED'; /** - * Temporarily blocked + * Checks if `value` is `undefined`. * - * @type {string} + * @static + * @since 0.1.0 + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. + * @example + * + * _.isUndefined(void 0); + * // => true + * + * _.isUndefined(null); + * // => false */ +function isUndefined(value) { + return value === undefined; +} + +module.exports = isUndefined; + + +/***/ }), +/* 1324 */ +/***/ (function(module, exports) { -const LOGIN_FAILED_TOO_MANY_ATTEMPTS = 'LOGIN_FAILED.TOO_MANY_ATTEMPTS'; /** - * Access refresh required + * The inverse of `_.toPairs`; this method returns an object composed + * from key-value `pairs`. * - * @type {string} + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} pairs The key-value pairs. + * @returns {Object} Returns the new object. + * @example + * + * _.fromPairs([['a', 1], ['b', 2]]); + * // => { 'a': 1, 'b': 2 } */ +function fromPairs(pairs) { + var index = -1, + length = pairs == null ? 0 : pairs.length, + result = {}; + + while (++index < length) { + var pair = pairs[index]; + result[pair[0]] = pair[1]; + } + return result; +} + +module.exports = fromPairs; + + +/***/ }), +/* 1325 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseFlatten = __webpack_require__(1275), + map = __webpack_require__(1326); -const USER_ACTION_NEEDED_OAUTH_OUTDATED = 'USER_ACTION_NEEDED.OAUTH_OUTDATED'; /** - * Unavailable account + * Creates a flattened array of values by running each element in `collection` + * thru `iteratee` and flattening the mapped results. The iteratee is invoked + * with three arguments: (value, index|key, collection). * - * @type {string} + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new flattened array. + * @example + * + * function duplicate(n) { + * return [n, n]; + * } + * + * _.flatMap([1, 2], duplicate); + * // => [1, 1, 2, 2] */ +function flatMap(collection, iteratee) { + return baseFlatten(map(collection, iteratee), 1); +} + +module.exports = flatMap; + + +/***/ }), +/* 1326 */ +/***/ (function(module, exports, __webpack_require__) { + +var arrayMap = __webpack_require__(1149), + baseIteratee = __webpack_require__(1299), + baseMap = __webpack_require__(1327), + isArray = __webpack_require__(1207); -const USER_ACTION_NEEDED_ACCOUNT_REMOVED = 'USER_ACTION_NEEDED.ACCOUNT_REMOVED'; /** - * Unavailable account + * Creates an array of values by running each element in `collection` thru + * `iteratee`. The iteratee is invoked with three arguments: + * (value, index|key, collection). * - * @type {string} + * Many lodash methods are guarded to work as iteratees for methods like + * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`. + * + * The guarded methods are: + * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`, + * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`, + * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`, + * `template`, `trim`, `trimEnd`, `trimStart`, and `words` + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The function invoked per iteration. + * @returns {Array} Returns the new mapped array. + * @example + * + * function square(n) { + * return n * n; + * } + * + * _.map([4, 8], square); + * // => [16, 64] + * + * _.map({ 'a': 4, 'b': 8 }, square); + * // => [16, 64] (iteration order is not guaranteed) + * + * var users = [ + * { 'user': 'barney' }, + * { 'user': 'fred' } + * ]; + * + * // The `_.property` iteratee shorthand. + * _.map(users, 'user'); + * // => ['barney', 'fred'] */ +function map(collection, iteratee) { + var func = isArray(collection) ? arrayMap : baseMap; + return func(collection, baseIteratee(iteratee, 3)); +} + +module.exports = map; + + +/***/ }), +/* 1327 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseEach = __webpack_require__(1328), + isArrayLike = __webpack_require__(1220); -const USER_ACTION_NEEDED_CHANGE_PASSWORD = 'USER_ACTION_NEEDED.CHANGE_PASSWORD'; /** - * Password update required + * The base implementation of `_.map` without support for iteratee shorthands. * - * @type {string} + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array} Returns the new mapped array. */ +function baseMap(collection, iteratee) { + var index = -1, + result = isArrayLike(collection) ? Array(collection.length) : []; + + baseEach(collection, function(value, key, collection) { + result[++index] = iteratee(value, key, collection); + }); + return result; +} + +module.exports = baseMap; + + +/***/ }), +/* 1328 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseForOwn = __webpack_require__(1329), + createBaseEach = __webpack_require__(1332); -const USER_ACTION_NEEDED_PERMISSIONS_CHANGED = 'USER_ACTION_NEEDED.PERMISSIONS_CHANGED'; /** - * The user needs to accept a CGU form before accessing the rest of the website + * The base implementation of `_.forEach` without support for iteratee shorthands. * - * @type {string} + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Array|Object} Returns `collection`. */ +var baseEach = createBaseEach(baseForOwn); + +module.exports = baseEach; + + +/***/ }), +/* 1329 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseFor = __webpack_require__(1330), + keys = __webpack_require__(1201); -const USER_ACTION_NEEDED_CGU_FORM = 'USER_ACTION_NEEDED.CGU_FORM'; /** - * solveCaptcha failed to solve the captcha + * The base implementation of `_.forOwn` without support for iteratee shorthands. * - * @type {string} + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {Object} Returns `object`. */ +function baseForOwn(object, iteratee) { + return object && baseFor(object, iteratee, keys); +} + +module.exports = baseForOwn; -const CAPTCHA_RESOLUTION_FAILED = 'CAPTCHA_RESOLUTION_FAILED'; -module.exports = { - LOGIN_FAILED, - NOT_EXISTING_DIRECTORY, - VENDOR_DOWN, - USER_ACTION_NEEDED, - FILE_DOWNLOAD_FAILED, - SAVE_FILE_FAILED, - DISK_QUOTA_EXCEEDED, - CHALLENGE_ASKED, - LOGIN_FAILED_TOO_MANY_ATTEMPTS, - USER_ACTION_NEEDED_OAUTH_OUTDATED, - USER_ACTION_NEEDED_ACCOUNT_REMOVED, - USER_ACTION_NEEDED_CHANGE_PASSWORD, - USER_ACTION_NEEDED_PERMISSIONS_CHANGED, - USER_ACTION_NEEDED_CGU_FORM, - CAPTCHA_RESOLUTION_FAILED -}; /***/ }), -/* 1229 */ +/* 1330 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var createBaseFor = __webpack_require__(1331); -const strtok3 = __webpack_require__(1230); -const core = __webpack_require__(1239); +/** + * The base implementation of `baseForOwn` which iterates over `object` + * properties returned by `keysFunc` and invokes `iteratee` for each property. + * Iteratee functions may exit iteration early by explicitly returning `false`. + * + * @private + * @param {Object} object The object to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @param {Function} keysFunc The function to get the keys of `object`. + * @returns {Object} Returns `object`. + */ +var baseFor = createBaseFor(); -async function fromFile(path) { - const tokenizer = await strtok3.fromFile(path); - try { - return await core.fromTokenizer(tokenizer); - } finally { - await tokenizer.close(); - } -} +module.exports = baseFor; -const fileType = { - fromFile -}; -Object.assign(fileType, core); +/***/ }), +/* 1331 */ +/***/ (function(module, exports) { -Object.defineProperty(fileType, 'extensions', { - get() { - return core.extensions; - } -}); +/** + * Creates a base function for methods like `_.forIn` and `_.forOwn`. + * + * @private + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. + */ +function createBaseFor(fromRight) { + return function(object, iteratee, keysFunc) { + var index = -1, + iterable = Object(object), + props = keysFunc(object), + length = props.length; -Object.defineProperty(fileType, 'mimeTypes', { - get() { - return core.mimeTypes; - } -}); + while (length--) { + var key = props[fromRight ? length : ++index]; + if (iteratee(iterable[key], key, iterable) === false) { + break; + } + } + return object; + }; +} -module.exports = fileType; +module.exports = createBaseFor; /***/ }), -/* 1230 */ +/* 1332 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var isArrayLike = __webpack_require__(1220); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.fromStream = exports.fromBuffer = exports.EndOfStreamError = exports.fromFile = void 0; -const fs = __webpack_require__(1231); -const core = __webpack_require__(1232); -var FileTokenizer_1 = __webpack_require__(1238); -Object.defineProperty(exports, "fromFile", { enumerable: true, get: function () { return FileTokenizer_1.fromFile; } }); -var core_1 = __webpack_require__(1232); -Object.defineProperty(exports, "EndOfStreamError", { enumerable: true, get: function () { return core_1.EndOfStreamError; } }); -Object.defineProperty(exports, "fromBuffer", { enumerable: true, get: function () { return core_1.fromBuffer; } }); /** - * Construct ReadStreamTokenizer from given Stream. - * Will set fileSize, if provided given Stream has set the .path property. - * @param stream - Node.js Stream.Readable - * @param fileInfo - Pass additional file information to the tokenizer - * @returns Tokenizer + * Creates a `baseEach` or `baseEachRight` function. + * + * @private + * @param {Function} eachFunc The function to iterate over a collection. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {Function} Returns the new base function. */ -async function fromStream(stream, fileInfo) { - fileInfo = fileInfo ? fileInfo : {}; - if (stream.path) { - const stat = await fs.stat(stream.path); - fileInfo.path = stream.path; - fileInfo.size = stat.size; +function createBaseEach(eachFunc, fromRight) { + return function(collection, iteratee) { + if (collection == null) { + return collection; } - return core.fromStream(stream, fileInfo); + if (!isArrayLike(collection)) { + return eachFunc(collection, iteratee); + } + var length = collection.length, + index = fromRight ? length : -1, + iterable = Object(collection); + + while ((fromRight ? index-- : ++index < length)) { + if (iteratee(iterable[index], index, iterable) === false) { + break; + } + } + return collection; + }; } -exports.fromStream = fromStream; + +module.exports = createBaseEach; /***/ }), -/* 1231 */ +/* 1333 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var baseAssignValue = __webpack_require__(1197), + createAggregator = __webpack_require__(1334); + +/** Used for built-in method references. */ +var objectProto = Object.prototype; + +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; /** - * Module convert fs functions to promise based functions + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The order of grouped values + * is determined by the order they occur in `collection`. The corresponding + * value of each key is an array of elements responsible for generating the + * key. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. + * @example + * + * _.groupBy([6.1, 4.2, 6.3], Math.floor); + * // => { '4': [4.2], '6': [6.1, 6.3] } + * + * // The `_.property` iteratee shorthand. + * _.groupBy(['one', 'two', 'three'], 'length'); + * // => { '3': ['one', 'two'], '5': ['three'] } */ -Object.defineProperty(exports, "__esModule", { value: true }); -exports.readFile = exports.writeFileSync = exports.writeFile = exports.read = exports.open = exports.close = exports.stat = exports.createReadStream = exports.pathExists = void 0; -const fs = __webpack_require__(167); -exports.pathExists = fs.existsSync; -exports.createReadStream = fs.createReadStream; -async function stat(path) { - return new Promise((resolve, reject) => { - fs.stat(path, (err, stats) => { - if (err) - reject(err); - else - resolve(stats); - }); - }); -} -exports.stat = stat; -async function close(fd) { - return new Promise((resolve, reject) => { - fs.close(fd, err => { - if (err) - reject(err); - else - resolve(); - }); - }); -} -exports.close = close; -async function open(path, mode) { - return new Promise((resolve, reject) => { - fs.open(path, mode, (err, fd) => { - if (err) - reject(err); - else - resolve(fd); - }); - }); -} -exports.open = open; -async function read(fd, buffer, offset, length, position) { - return new Promise((resolve, reject) => { - fs.read(fd, buffer, offset, length, position, (err, bytesRead, _buffer) => { - if (err) - reject(err); - else - resolve({ bytesRead, buffer: _buffer }); - }); - }); -} -exports.read = read; -async function writeFile(path, data) { - return new Promise((resolve, reject) => { - fs.writeFile(path, data, err => { - if (err) - reject(err); - else - resolve(); - }); - }); -} -exports.writeFile = writeFile; -function writeFileSync(path, data) { - fs.writeFileSync(path, data); -} -exports.writeFileSync = writeFileSync; -async function readFile(path) { - return new Promise((resolve, reject) => { - fs.readFile(path, (err, buffer) => { - if (err) - reject(err); - else - resolve(buffer); - }); - }); -} -exports.readFile = readFile; +var groupBy = createAggregator(function(result, value, key) { + if (hasOwnProperty.call(result, key)) { + result[key].push(value); + } else { + baseAssignValue(result, key, [value]); + } +}); + +module.exports = groupBy; /***/ }), -/* 1232 */ +/* 1334 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var arrayAggregator = __webpack_require__(1335), + baseAggregator = __webpack_require__(1336), + baseIteratee = __webpack_require__(1299), + isArray = __webpack_require__(1207); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.fromBuffer = exports.fromStream = exports.EndOfStreamError = void 0; -const ReadStreamTokenizer_1 = __webpack_require__(1233); -const BufferTokenizer_1 = __webpack_require__(1237); -var peek_readable_1 = __webpack_require__(1235); -Object.defineProperty(exports, "EndOfStreamError", { enumerable: true, get: function () { return peek_readable_1.EndOfStreamError; } }); -/** - * Construct ReadStreamTokenizer from given Stream. - * Will set fileSize, if provided given Stream has set the .path property/ - * @param stream - Read from Node.js Stream.Readable - * @param fileInfo - Pass the file information, like size and MIME-type of the correspnding stream. - * @returns ReadStreamTokenizer - */ -function fromStream(stream, fileInfo) { - fileInfo = fileInfo ? fileInfo : {}; - return new ReadStreamTokenizer_1.ReadStreamTokenizer(stream, fileInfo); -} -exports.fromStream = fromStream; /** - * Construct ReadStreamTokenizer from given Buffer. - * @param uint8Array - Uint8Array to tokenize - * @param fileInfo - Pass additional file information to the tokenizer - * @returns BufferTokenizer + * Creates a function like `_.groupBy`. + * + * @private + * @param {Function} setter The function to set accumulator values. + * @param {Function} [initializer] The accumulator object initializer. + * @returns {Function} Returns the new aggregator function. */ -function fromBuffer(uint8Array, fileInfo) { - return new BufferTokenizer_1.BufferTokenizer(uint8Array, fileInfo); +function createAggregator(setter, initializer) { + return function(collection, iteratee) { + var func = isArray(collection) ? arrayAggregator : baseAggregator, + accumulator = initializer ? initializer() : {}; + + return func(collection, setter, baseIteratee(iteratee, 2), accumulator); + }; } -exports.fromBuffer = fromBuffer; + +module.exports = createAggregator; /***/ }), -/* 1233 */ -/***/ (function(module, exports, __webpack_require__) { +/* 1335 */ +/***/ (function(module, exports) { -"use strict"; +/** + * A specialized version of `baseAggregator` for arrays. + * + * @private + * @param {Array} [array] The array to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. + */ +function arrayAggregator(array, setter, iteratee, accumulator) { + var index = -1, + length = array == null ? 0 : array.length; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.ReadStreamTokenizer = void 0; -const AbstractTokenizer_1 = __webpack_require__(1234); -const peek_readable_1 = __webpack_require__(1235); -const maxBufferSize = 256000; -class ReadStreamTokenizer extends AbstractTokenizer_1.AbstractTokenizer { - constructor(stream, fileInfo) { - super(fileInfo); - this.streamReader = new peek_readable_1.StreamReader(stream); - } - /** - * Get file information, an HTTP-client may implement this doing a HEAD request - * @return Promise with file information - */ - async getFileInfo() { - return this.fileInfo; - } - /** - * Read buffer from tokenizer - * @param uint8Array - Target Uint8Array to fill with data read from the tokenizer-stream - * @param options - Read behaviour options - * @returns Promise with number of bytes read - */ - async readBuffer(uint8Array, options) { - const normOptions = this.normalizeOptions(uint8Array, options); - const skipBytes = normOptions.position - this.position; - if (skipBytes > 0) { - await this.ignore(skipBytes); - return this.readBuffer(uint8Array, options); - } - else if (skipBytes < 0) { - throw new Error('`options.position` must be equal or greater than `tokenizer.position`'); - } - if (normOptions.length === 0) { - return 0; - } - const bytesRead = await this.streamReader.read(uint8Array, normOptions.offset, normOptions.length); - this.position += bytesRead; - if ((!options || !options.mayBeLess) && bytesRead < normOptions.length) { - throw new peek_readable_1.EndOfStreamError(); - } - return bytesRead; - } - /** - * Peek (read ahead) buffer from tokenizer - * @param uint8Array - Uint8Array (or Buffer) to write data to - * @param options - Read behaviour options - * @returns Promise with number of bytes peeked - */ - async peekBuffer(uint8Array, options) { - const normOptions = this.normalizeOptions(uint8Array, options); - let bytesRead = 0; - if (normOptions.position) { - const skipBytes = normOptions.position - this.position; - if (skipBytes > 0) { - const skipBuffer = new Uint8Array(normOptions.length + skipBytes); - bytesRead = await this.peekBuffer(skipBuffer, { mayBeLess: normOptions.mayBeLess }); - uint8Array.set(skipBuffer.subarray(skipBytes), normOptions.offset); - return bytesRead - skipBytes; - } - else if (skipBytes < 0) { - throw new Error('Cannot peek from a negative offset in a stream'); - } - } - if (normOptions.length > 0) { - try { - bytesRead = await this.streamReader.peek(uint8Array, normOptions.offset, normOptions.length); - } - catch (err) { - if (options && options.mayBeLess && err instanceof peek_readable_1.EndOfStreamError) { - return 0; - } - throw err; - } - if ((!normOptions.mayBeLess) && bytesRead < normOptions.length) { - throw new peek_readable_1.EndOfStreamError(); - } - } - return bytesRead; - } - async ignore(length) { - // debug(`ignore ${this.position}...${this.position + length - 1}`); - const bufSize = Math.min(maxBufferSize, length); - const buf = new Uint8Array(bufSize); - let totBytesRead = 0; - while (totBytesRead < length) { - const remaining = length - totBytesRead; - const bytesRead = await this.readBuffer(buf, { length: Math.min(bufSize, remaining) }); - if (bytesRead < 0) { - return bytesRead; - } - totBytesRead += bytesRead; - } - return totBytesRead; - } + while (++index < length) { + var value = array[index]; + setter(accumulator, value, iteratee(value), array); + } + return accumulator; } -exports.ReadStreamTokenizer = ReadStreamTokenizer; + +module.exports = arrayAggregator; /***/ }), -/* 1234 */ +/* 1336 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var baseEach = __webpack_require__(1328); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.AbstractTokenizer = void 0; -const peek_readable_1 = __webpack_require__(1235); /** - * Core tokenizer + * Aggregates elements of `collection` on `accumulator` with keys transformed + * by `iteratee` and values set by `setter`. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} setter The function to set `accumulator` values. + * @param {Function} iteratee The iteratee to transform keys. + * @param {Object} accumulator The initial aggregated object. + * @returns {Function} Returns `accumulator`. */ -class AbstractTokenizer { - constructor(fileInfo) { - /** - * Tokenizer-stream position - */ - this.position = 0; - this.numBuffer = new Uint8Array(8); - this.fileInfo = fileInfo ? fileInfo : {}; - } - /** - * Read a token from the tokenizer-stream - * @param token - The token to read - * @param position - If provided, the desired position in the tokenizer-stream - * @returns Promise with token data - */ - async readToken(token, position = this.position) { - const uint8Array = Buffer.alloc(token.len); - const len = await this.readBuffer(uint8Array, { position }); - if (len < token.len) - throw new peek_readable_1.EndOfStreamError(); - return token.get(uint8Array, 0); - } - /** - * Peek a token from the tokenizer-stream. - * @param token - Token to peek from the tokenizer-stream. - * @param position - Offset where to begin reading within the file. If position is null, data will be read from the current file position. - * @returns Promise with token data - */ - async peekToken(token, position = this.position) { - const uint8Array = Buffer.alloc(token.len); - const len = await this.peekBuffer(uint8Array, { position }); - if (len < token.len) - throw new peek_readable_1.EndOfStreamError(); - return token.get(uint8Array, 0); - } - /** - * Read a numeric token from the stream - * @param token - Numeric token - * @returns Promise with number - */ - async readNumber(token) { - const len = await this.readBuffer(this.numBuffer, { length: token.len }); - if (len < token.len) - throw new peek_readable_1.EndOfStreamError(); - return token.get(this.numBuffer, 0); - } - /** - * Read a numeric token from the stream - * @param token - Numeric token - * @returns Promise with number - */ - async peekNumber(token) { - const len = await this.peekBuffer(this.numBuffer, { length: token.len }); - if (len < token.len) - throw new peek_readable_1.EndOfStreamError(); - return token.get(this.numBuffer, 0); - } - /** - * Ignore number of bytes, advances the pointer in under tokenizer-stream. - * @param length - Number of bytes to ignore - * @return resolves the number of bytes ignored, equals length if this available, otherwise the number of bytes available - */ - async ignore(length) { - if (this.fileInfo.size !== undefined) { - const bytesLeft = this.fileInfo.size - this.position; - if (length > bytesLeft) { - this.position += bytesLeft; - return bytesLeft; - } - } - this.position += length; - return length; - } - async close() { - // empty - } - normalizeOptions(uint8Array, options) { - if (options && options.position !== undefined && options.position < this.position) { - throw new Error('`options.position` must be equal or greater than `tokenizer.position`'); - } - if (options) { - return { - mayBeLess: options.mayBeLess === true, - offset: options.offset ? options.offset : 0, - length: options.length ? options.length : (uint8Array.length - (options.offset ? options.offset : 0)), - position: options.position ? options.position : this.position - }; - } - return { - mayBeLess: false, - offset: 0, - length: uint8Array.length, - position: this.position - }; - } +function baseAggregator(collection, setter, iteratee, accumulator) { + baseEach(collection, function(value, key, collection) { + setter(accumulator, value, iteratee(value), collection); + }); + return accumulator; } -exports.AbstractTokenizer = AbstractTokenizer; + +module.exports = baseAggregator; /***/ }), -/* 1235 */ +/* 1337 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var baseFlatten = __webpack_require__(1275), + baseOrderBy = __webpack_require__(1338), + baseRest = __webpack_require__(1342), + isIterateeCall = __webpack_require__(1343); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.StreamReader = exports.EndOfStreamError = void 0; -const EndOfFileStream_1 = __webpack_require__(1236); -var EndOfFileStream_2 = __webpack_require__(1236); -Object.defineProperty(exports, "EndOfStreamError", { enumerable: true, get: function () { return EndOfFileStream_2.EndOfStreamError; } }); -class Deferred { - constructor() { - this.resolve = () => null; - this.reject = () => null; - this.promise = new Promise((resolve, reject) => { - this.reject = reject; - this.resolve = resolve; - }); - } -} -const maxStreamReadSize = 1 * 1024 * 1024; // Maximum request length on read-stream operation -class StreamReader { - constructor(s) { - this.s = s; - /** - * Deferred read request - */ - this.request = null; - this.endOfStream = false; - /** - * Store peeked data - * @type {Array} - */ - this.peekQueue = []; - if (!s.read || !s.once) { - throw new Error('Expected an instance of stream.Readable'); - } - this.s.once('end', () => this.reject(new EndOfFileStream_1.EndOfStreamError())); - this.s.once('error', err => this.reject(err)); - this.s.once('close', () => this.reject(new Error('Stream closed'))); - } - /** - * Read ahead (peek) from stream. Subsequent read or peeks will return the same data - * @param uint8Array - Uint8Array (or Buffer) to store data read from stream in - * @param offset - Offset target - * @param length - Number of bytes to read - * @returns Number of bytes peeked - */ - async peek(uint8Array, offset, length) { - const bytesRead = await this.read(uint8Array, offset, length); - this.peekQueue.push(uint8Array.subarray(offset, offset + bytesRead)); // Put read data back to peek buffer - return bytesRead; - } - /** - * Read chunk from stream - * @param buffer - Target Uint8Array (or Buffer) to store data read from stream in - * @param offset - Offset target - * @param length - Number of bytes to read - * @returns Number of bytes read - */ - async read(buffer, offset, length) { - if (length === 0) { - return 0; - } - if (this.peekQueue.length === 0 && this.endOfStream) { - throw new EndOfFileStream_1.EndOfStreamError(); - } - let remaining = length; - let bytesRead = 0; - // consume peeked data first - while (this.peekQueue.length > 0 && remaining > 0) { - const peekData = this.peekQueue.pop(); // Front of queue - if (!peekData) - throw new Error('peekData should be defined'); - const lenCopy = Math.min(peekData.length, remaining); - buffer.set(peekData.subarray(0, lenCopy), offset + bytesRead); - bytesRead += lenCopy; - remaining -= lenCopy; - if (lenCopy < peekData.length) { - // remainder back to queue - this.peekQueue.push(peekData.subarray(lenCopy)); - } - } - // continue reading from stream if required - while (remaining > 0 && !this.endOfStream) { - const reqLen = Math.min(remaining, maxStreamReadSize); - const chunkLen = await this._read(buffer, offset + bytesRead, reqLen); - bytesRead += chunkLen; - if (chunkLen < reqLen) - break; - remaining -= chunkLen; - } - return bytesRead; - } - /** - * Read chunk from stream - * @param buffer Target Uint8Array (or Buffer) to store data read from stream in - * @param offset Offset target - * @param length Number of bytes to read - * @returns Number of bytes read - */ - async _read(buffer, offset, length) { - if (this.request) - throw new Error('Concurrent read operation?'); - const readBuffer = this.s.read(length); - if (readBuffer) { - buffer.set(readBuffer, offset); - return readBuffer.length; - } - else { - this.request = { - buffer, - offset, - length, - deferred: new Deferred() - }; - this.s.once('readable', () => { - this.tryRead(); - }); - return this.request.deferred.promise; - } - } - tryRead() { - if (!this.request) - throw new Error('this.request should be defined'); - const readBuffer = this.s.read(this.request.length); - if (readBuffer) { - this.request.buffer.set(readBuffer, this.request.offset); - this.request.deferred.resolve(readBuffer.length); - this.request = null; - } - else { - this.s.once('readable', () => { - this.tryRead(); - }); - } - } - reject(err) { - this.endOfStream = true; - if (this.request) { - this.request.deferred.reject(err); - this.request = null; - } - } -} -exports.StreamReader = StreamReader; +/** + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection thru each iteratee. This method + * performs a stable sort, that is, it preserves the original sort order of + * equal elements. The iteratees are invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {...(Function|Function[])} [iteratees=[_.identity]] + * The iteratees to sort by. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 }, + * { 'user': 'barney', 'age': 34 } + * ]; + * + * _.sortBy(users, [function(o) { return o.user; }]); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]] + * + * _.sortBy(users, ['user', 'age']); + * // => objects for [['barney', 34], ['barney', 36], ['fred', 40], ['fred', 48]] + */ +var sortBy = baseRest(function(collection, iteratees) { + if (collection == null) { + return []; + } + var length = iteratees.length; + if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) { + iteratees = []; + } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) { + iteratees = [iteratees[0]]; + } + return baseOrderBy(collection, baseFlatten(iteratees, 1), []); +}); + +module.exports = sortBy; /***/ }), -/* 1236 */ +/* 1338 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var arrayMap = __webpack_require__(1149), + baseIteratee = __webpack_require__(1299), + baseMap = __webpack_require__(1327), + baseSortBy = __webpack_require__(1339), + baseUnary = __webpack_require__(1214), + compareMultiple = __webpack_require__(1340), + identity = __webpack_require__(1282); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.EndOfStreamError = exports.defaultMessages = void 0; -exports.defaultMessages = 'End-Of-Stream'; /** - * Thrown on read operation of the end of file or stream has been reached + * The base implementation of `_.orderBy` without param guards. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by. + * @param {string[]} orders The sort orders of `iteratees`. + * @returns {Array} Returns the new sorted array. */ -class EndOfStreamError extends Error { - constructor() { - super(exports.defaultMessages); - } -} -exports.EndOfStreamError = EndOfStreamError; - - -/***/ }), -/* 1237 */ -/***/ (function(module, exports, __webpack_require__) { +function baseOrderBy(collection, iteratees, orders) { + var index = -1; + iteratees = arrayMap(iteratees.length ? iteratees : [identity], baseUnary(baseIteratee)); -"use strict"; + var result = baseMap(collection, function(value, key, collection) { + var criteria = arrayMap(iteratees, function(iteratee) { + return iteratee(value); + }); + return { 'criteria': criteria, 'index': ++index, 'value': value }; + }); -Object.defineProperty(exports, "__esModule", { value: true }); -exports.BufferTokenizer = void 0; -const peek_readable_1 = __webpack_require__(1235); -const AbstractTokenizer_1 = __webpack_require__(1234); -class BufferTokenizer extends AbstractTokenizer_1.AbstractTokenizer { - /** - * Construct BufferTokenizer - * @param uint8Array - Uint8Array to tokenize - * @param fileInfo - Pass additional file information to the tokenizer - */ - constructor(uint8Array, fileInfo) { - super(fileInfo); - this.uint8Array = uint8Array; - this.fileInfo.size = this.fileInfo.size ? this.fileInfo.size : uint8Array.length; - } - /** - * Read buffer from tokenizer - * @param uint8Array - Uint8Array to tokenize - * @param options - Read behaviour options - * @returns {Promise<number>} - */ - async readBuffer(uint8Array, options) { - if (options && options.position) { - if (options.position < this.position) { - throw new Error('`options.position` must be equal or greater than `tokenizer.position`'); - } - this.position = options.position; - } - const bytesRead = await this.peekBuffer(uint8Array, options); - this.position += bytesRead; - return bytesRead; - } - /** - * Peek (read ahead) buffer from tokenizer - * @param uint8Array - * @param options - Read behaviour options - * @returns {Promise<number>} - */ - async peekBuffer(uint8Array, options) { - const normOptions = this.normalizeOptions(uint8Array, options); - const bytes2read = Math.min(this.uint8Array.length - normOptions.position, normOptions.length); - if ((!normOptions.mayBeLess) && bytes2read < normOptions.length) { - throw new peek_readable_1.EndOfStreamError(); - } - else { - uint8Array.set(this.uint8Array.subarray(normOptions.position, normOptions.position + bytes2read), normOptions.offset); - return bytes2read; - } - } - async close() { - // empty - } + return baseSortBy(result, function(object, other) { + return compareMultiple(object, other, orders); + }); } -exports.BufferTokenizer = BufferTokenizer; + +module.exports = baseOrderBy; /***/ }), -/* 1238 */ -/***/ (function(module, exports, __webpack_require__) { +/* 1339 */ +/***/ (function(module, exports) { -"use strict"; +/** + * The base implementation of `_.sortBy` which uses `comparer` to define the + * sort order of `array` and replaces criteria objects with their corresponding + * values. + * + * @private + * @param {Array} array The array to sort. + * @param {Function} comparer The function to define sort order. + * @returns {Array} Returns `array`. + */ +function baseSortBy(array, comparer) { + var length = array.length; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.fromFile = exports.FileTokenizer = void 0; -const AbstractTokenizer_1 = __webpack_require__(1234); -const peek_readable_1 = __webpack_require__(1235); -const fs = __webpack_require__(1231); -class FileTokenizer extends AbstractTokenizer_1.AbstractTokenizer { - constructor(fd, fileInfo) { - super(fileInfo); - this.fd = fd; - } - /** - * Read buffer from file - * @param uint8Array - Uint8Array to write result to - * @param options - Read behaviour options - * @returns Promise number of bytes read - */ - async readBuffer(uint8Array, options) { - const normOptions = this.normalizeOptions(uint8Array, options); - this.position = normOptions.position; - const res = await fs.read(this.fd, uint8Array, normOptions.offset, normOptions.length, normOptions.position); - this.position += res.bytesRead; - if (res.bytesRead < normOptions.length && (!options || !options.mayBeLess)) { - throw new peek_readable_1.EndOfStreamError(); - } - return res.bytesRead; - } - /** - * Peek buffer from file - * @param uint8Array - Uint8Array (or Buffer) to write data to - * @param options - Read behaviour options - * @returns Promise number of bytes read - */ - async peekBuffer(uint8Array, options) { - const normOptions = this.normalizeOptions(uint8Array, options); - const res = await fs.read(this.fd, uint8Array, normOptions.offset, normOptions.length, normOptions.position); - if ((!normOptions.mayBeLess) && res.bytesRead < normOptions.length) { - throw new peek_readable_1.EndOfStreamError(); - } - return res.bytesRead; - } - async close() { - return fs.close(this.fd); - } -} -exports.FileTokenizer = FileTokenizer; -async function fromFile(sourceFilePath) { - const stat = await fs.stat(sourceFilePath); - if (!stat.isFile) { - throw new Error(`File not a file: ${sourceFilePath}`); - } - const fd = await fs.open(sourceFilePath, 'r'); - return new FileTokenizer(fd, { path: sourceFilePath, size: stat.size }); + array.sort(comparer); + while (length--) { + array[length] = array[length].value; + } + return array; } -exports.fromFile = fromFile; + +module.exports = baseSortBy; /***/ }), -/* 1239 */ +/* 1340 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - -const Token = __webpack_require__(1240); -const strtok3 = __webpack_require__(1232); -const { - stringToBytes, - tarHeaderChecksumMatches, - uint32SyncSafeToken -} = __webpack_require__(1242); -const supported = __webpack_require__(1243); +var compareAscending = __webpack_require__(1341); -const minimumBytes = 4100; // A fair amount of file-types are detectable within this range +/** + * Used by `_.orderBy` to compare multiple properties of a value to another + * and stable sort them. + * + * If `orders` is unspecified, all values are sorted in ascending order. Otherwise, + * specify an order of "desc" for descending or "asc" for ascending sort order + * of corresponding values. + * + * @private + * @param {Object} object The object to compare. + * @param {Object} other The other object to compare. + * @param {boolean[]|string[]} orders The order to sort by for each property. + * @returns {number} Returns the sort order indicator for `object`. + */ +function compareMultiple(object, other, orders) { + var index = -1, + objCriteria = object.criteria, + othCriteria = other.criteria, + length = objCriteria.length, + ordersLength = orders.length; -async function fromStream(stream) { - const tokenizer = await strtok3.fromStream(stream); - try { - return await fromTokenizer(tokenizer); - } finally { - await tokenizer.close(); - } + while (++index < length) { + var result = compareAscending(objCriteria[index], othCriteria[index]); + if (result) { + if (index >= ordersLength) { + return result; + } + var order = orders[index]; + return result * (order == 'desc' ? -1 : 1); + } + } + // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications + // that causes it, under certain circumstances, to provide the same value for + // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247 + // for more details. + // + // This also ensures a stable sort in V8 and other engines. + // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details. + return object.index - other.index; } -async function fromBuffer(input) { - if (!(input instanceof Uint8Array || input instanceof ArrayBuffer || Buffer.isBuffer(input))) { - throw new TypeError(`Expected the \`input\` argument to be of type \`Uint8Array\` or \`Buffer\` or \`ArrayBuffer\`, got \`${typeof input}\``); - } - - const buffer = input instanceof Buffer ? input : Buffer.from(input); +module.exports = compareMultiple; - if (!(buffer && buffer.length > 1)) { - return; - } - const tokenizer = strtok3.fromBuffer(buffer); - return fromTokenizer(tokenizer); -} +/***/ }), +/* 1341 */ +/***/ (function(module, exports, __webpack_require__) { -function _check(buffer, headers, options) { - options = { - offset: 0, - ...options - }; +var isSymbol = __webpack_require__(1260); - for (const [index, header] of headers.entries()) { - // If a bitmask is set - if (options.mask) { - // If header doesn't equal `buf` with bits masked off - if (header !== (options.mask[index] & buffer[index + options.offset])) { - return false; - } - } else if (header !== buffer[index + options.offset]) { - return false; - } - } +/** + * Compares values to sort them in ascending order. + * + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {number} Returns the sort order indicator for `value`. + */ +function compareAscending(value, other) { + if (value !== other) { + var valIsDefined = value !== undefined, + valIsNull = value === null, + valIsReflexive = value === value, + valIsSymbol = isSymbol(value); - return true; -} + var othIsDefined = other !== undefined, + othIsNull = other === null, + othIsReflexive = other === other, + othIsSymbol = isSymbol(other); -async function fromTokenizer(tokenizer) { - try { - return _fromTokenizer(tokenizer); - } catch (error) { - if (!(error instanceof strtok3.EndOfStreamError)) { - throw error; - } - } + if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) || + (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) || + (valIsNull && othIsDefined && othIsReflexive) || + (!valIsDefined && othIsReflexive) || + !valIsReflexive) { + return 1; + } + if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) || + (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) || + (othIsNull && valIsDefined && valIsReflexive) || + (!othIsDefined && valIsReflexive) || + !othIsReflexive) { + return -1; + } + } + return 0; } -async function _fromTokenizer(tokenizer) { - let buffer = Buffer.alloc(minimumBytes); - const bytesRead = 12; - const check = (header, options) => _check(buffer, header, options); - const checkString = (header, options) => check(stringToBytes(header), options); - - // Keep reading until EOF if the file size is unknown. - if (!tokenizer.fileInfo.size) { - tokenizer.fileInfo.size = Number.MAX_SAFE_INTEGER; - } - - await tokenizer.peekBuffer(buffer, {length: bytesRead, mayBeLess: true}); +module.exports = compareAscending; - // -- 2-byte signatures -- - if (check([0x42, 0x4D])) { - return { - ext: 'bmp', - mime: 'image/bmp' - }; - } +/***/ }), +/* 1342 */ +/***/ (function(module, exports, __webpack_require__) { - if (check([0x0B, 0x77])) { - return { - ext: 'ac3', - mime: 'audio/vnd.dolby.dd-raw' - }; - } +var identity = __webpack_require__(1282), + overRest = __webpack_require__(1277), + setToString = __webpack_require__(1279); - if (check([0x78, 0x01])) { - return { - ext: 'dmg', - mime: 'application/x-apple-diskimage' - }; - } +/** + * The base implementation of `_.rest` which doesn't validate or coerce arguments. + * + * @private + * @param {Function} func The function to apply a rest parameter to. + * @param {number} [start=func.length-1] The start position of the rest parameter. + * @returns {Function} Returns the new function. + */ +function baseRest(func, start) { + return setToString(overRest(func, start, identity), func + ''); +} - if (check([0x4D, 0x5A])) { - return { - ext: 'exe', - mime: 'application/x-msdownload' - }; - } +module.exports = baseRest; - if (check([0x25, 0x21])) { - await tokenizer.peekBuffer(buffer, {length: 24, mayBeLess: true}); - if (checkString('PS-Adobe-', {offset: 2}) && - checkString(' EPSF-', {offset: 14})) { - return { - ext: 'eps', - mime: 'application/eps' - }; - } +/***/ }), +/* 1343 */ +/***/ (function(module, exports, __webpack_require__) { - return { - ext: 'ps', - mime: 'application/postscript' - }; - } +var eq = __webpack_require__(1156), + isArrayLike = __webpack_require__(1220), + isIndex = __webpack_require__(1210), + isObject = __webpack_require__(1175); - if ( - check([0x1F, 0xA0]) || - check([0x1F, 0x9D]) - ) { - return { - ext: 'Z', - mime: 'application/x-compress' - }; - } +/** + * Checks if the given arguments are from an iteratee call. + * + * @private + * @param {*} value The potential iteratee value argument. + * @param {*} index The potential iteratee index or key argument. + * @param {*} object The potential iteratee object argument. + * @returns {boolean} Returns `true` if the arguments are from an iteratee call, + * else `false`. + */ +function isIterateeCall(value, index, object) { + if (!isObject(object)) { + return false; + } + var type = typeof index; + if (type == 'number' + ? (isArrayLike(object) && isIndex(index, object.length)) + : (type == 'string' && index in object) + ) { + return eq(object[index], value); + } + return false; +} - // -- 3-byte signatures -- +module.exports = isIterateeCall; - if (check([0xFF, 0xD8, 0xFF])) { - return { - ext: 'jpg', - mime: 'image/jpeg' - }; - } - if (check([0x49, 0x49, 0xBC])) { - return { - ext: 'jxr', - mime: 'image/vnd.ms-photo' - }; - } +/***/ }), +/* 1344 */ +/***/ (function(module, exports, __webpack_require__) { - if (check([0x1F, 0x8B, 0x8])) { - return { - ext: 'gz', - mime: 'application/gzip' - }; - } +const PromisePool = __webpack_require__(1345) - if (check([0x42, 0x5A, 0x68])) { - return { - ext: 'bz2', - mime: 'application/x-bzip2' - }; - } +/** + * Like a map, executed in parallel via a promise pool + * + * @param {Array} arr Items to process + * @param {Function} fn Promise creator (will be passed each item) + * @param {Number} concurrency How many promise can be in flight at the same time + * @return {Promise} Resolved with the results of the promise, not necessary in order + */ +const parallelMap = (iterable, fn, concurrencyArg) => { + const concurrency = concurrencyArg || 30 + const res = [] + const pool = new PromisePool(function*() { + for (let item of iterable) { + yield fn(item).then(x => res.push(x)) + } + }, concurrency) + return pool.start().then(() => res) +} - if (checkString('ID3')) { - await tokenizer.ignore(6); // Skip ID3 header until the header size - const id3HeaderLen = await tokenizer.readToken(uint32SyncSafeToken); - if (tokenizer.position + id3HeaderLen > tokenizer.fileInfo.size) { - // Guess file type based on ID3 header for backward compatibility - return { - ext: 'mp3', - mime: 'audio/mpeg' - }; - } +module.exports = { + parallelMap +} - await tokenizer.ignore(id3HeaderLen); - return fromTokenizer(tokenizer); // Skip ID3 header, recursion - } - // Musepack, SV7 - if (checkString('MP+')) { - return { - ext: 'mpc', - mime: 'audio/x-musepack' - }; - } +/***/ }), +/* 1345 */ +/***/ (function(module, exports, __webpack_require__) { - if ( - (buffer[0] === 0x43 || buffer[0] === 0x46) && - check([0x57, 0x53], {offset: 1}) - ) { - return { - ext: 'swf', - mime: 'application/x-shockwave-flash' - }; - } +var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;(function (root, factory) { + /* istanbul ignore next */ + 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 {} +})(this, function () { + 'use strict' - // -- 4-byte signatures -- + var EventTarget = function () { + this._listeners = {} + } - if (check([0x47, 0x49, 0x46])) { - return { - ext: 'gif', - mime: 'image/gif' - }; - } + EventTarget.prototype.addEventListener = function (type, listener) { + this._listeners[type] = this._listeners[type] || [] + if (this._listeners[type].indexOf(listener) < 0) { + this._listeners[type].push(listener) + } + } - if (checkString('FLIF')) { - return { - ext: 'flif', - mime: 'image/flif' - }; - } + EventTarget.prototype.removeEventListener = function (type, listener) { + if (this._listeners[type]) { + var p = this._listeners[type].indexOf(listener) + if (p >= 0) { + this._listeners[type].splice(p, 1) + } + } + } - if (checkString('8BPS')) { - return { - ext: 'psd', - mime: 'image/vnd.adobe.photoshop' - }; - } + EventTarget.prototype.dispatchEvent = function (evt) { + if (this._listeners[evt.type] && this._listeners[evt.type].length) { + var listeners = this._listeners[evt.type].slice() + for (var i = 0, l = listeners.length; i < l; ++i) { + listeners[i].call(this, evt) + } + } + } - if (checkString('WEBP', {offset: 8})) { - return { - ext: 'webp', - mime: 'image/webp' - }; - } + var isGenerator = function (func) { + return (typeof func.constructor === 'function' && + func.constructor.name === 'GeneratorFunction') + } - // Musepack, SV8 - if (checkString('MPCK')) { - return { - ext: 'mpc', - mime: 'audio/x-musepack' - }; - } + var functionToIterator = function (func) { + return { + next: function () { + var promise = func() + return promise ? {value: promise} : {done: true} + } + } + } - if (checkString('FORM')) { - return { - ext: 'aif', - mime: 'audio/aiff' - }; - } + var promiseToIterator = function (promise) { + var called = false + return { + next: function () { + if (called) { + return {done: true} + } + called = true + return {value: promise} + } + } + } - if (checkString('icns', {offset: 0})) { - return { - ext: 'icns', - mime: 'image/icns' - }; - } + var toIterator = function (obj, Promise) { + var type = typeof obj + if (type === 'object') { + if (typeof obj.next === 'function') { + return obj + } + /* istanbul ignore else */ + if (typeof obj.then === 'function') { + return promiseToIterator(obj) + } + } + if (type === 'function') { + return isGenerator(obj) ? obj() : functionToIterator(obj) + } + return promiseToIterator(Promise.resolve(obj)) + } - // Zip-based file formats - // Need to be before the `zip` check - if (check([0x50, 0x4B, 0x3, 0x4])) { // Local file header signature - try { - while (tokenizer.position + 30 < tokenizer.fileInfo.size) { - await tokenizer.readBuffer(buffer, {length: 30}); + var PromisePoolEvent = function (target, type, data) { + this.target = target + this.type = type + this.data = data + } - // https://en.wikipedia.org/wiki/Zip_(file_format)#File_headers - const zipHeader = { - compressedSize: buffer.readUInt32LE(18), - uncompressedSize: buffer.readUInt32LE(22), - filenameLength: buffer.readUInt16LE(26), - extraFieldLength: buffer.readUInt16LE(28) - }; + var PromisePool = function (source, concurrency, options) { + EventTarget.call(this) + if (typeof concurrency !== 'number' || + Math.floor(concurrency) !== concurrency || + concurrency < 1) { + throw new Error('Invalid concurrency') + } + this._concurrency = concurrency + this._options = options || {} + this._options.promise = this._options.promise || Promise + this._iterator = toIterator(source, this._options.promise) + this._done = false + this._size = 0 + this._promise = null + this._callbacks = null + } + PromisePool.prototype = new EventTarget() + PromisePool.prototype.constructor = PromisePool - zipHeader.filename = await tokenizer.readToken(new Token.StringType(zipHeader.filenameLength, 'utf-8')); - await tokenizer.ignore(zipHeader.extraFieldLength); + PromisePool.prototype.concurrency = function (value) { + if (typeof value !== 'undefined') { + this._concurrency = value + if (this.active()) { + this._proceed() + } + } + return this._concurrency + } - // Assumes signed `.xpi` from addons.mozilla.org - if (zipHeader.filename === 'META-INF/mozilla.rsa') { - return { - ext: 'xpi', - mime: 'application/x-xpinstall' - }; - } + PromisePool.prototype.size = function () { + return this._size + } - if (zipHeader.filename.endsWith('.rels') || zipHeader.filename.endsWith('.xml')) { - const type = zipHeader.filename.split('/')[0]; - switch (type) { - case '_rels': - break; - case 'word': - return { - ext: 'docx', - mime: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' - }; - case 'ppt': - return { - ext: 'pptx', - mime: 'application/vnd.openxmlformats-officedocument.presentationml.presentation' - }; - case 'xl': - return { - ext: 'xlsx', - mime: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' - }; - default: - break; - } - } + PromisePool.prototype.active = function () { + return !!this._promise + } - if (zipHeader.filename.startsWith('xl/')) { - return { - ext: 'xlsx', - mime: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' - }; - } + PromisePool.prototype.promise = function () { + return this._promise + } - if (zipHeader.filename.startsWith('3D/') && zipHeader.filename.endsWith('.model')) { - return { - ext: '3mf', - mime: 'model/3mf' - }; - } + PromisePool.prototype.start = function () { + var that = this + var Promise = this._options.promise + this._promise = new Promise(function (resolve, reject) { + that._callbacks = { + reject: reject, + resolve: resolve + } + that._proceed() + }) + return this._promise + } - // The docx, xlsx and pptx file types extend the Office Open XML file format: - // https://en.wikipedia.org/wiki/Office_Open_XML_file_formats - // We look for: - // - one entry named '[Content_Types].xml' or '_rels/.rels', - // - one entry indicating specific type of file. - // MS Office, OpenOffice and LibreOffice may put the parts in different order, so the check should not rely on it. - if (zipHeader.filename === 'mimetype' && zipHeader.compressedSize === zipHeader.uncompressedSize) { - const mimeType = await tokenizer.readToken(new Token.StringType(zipHeader.compressedSize, 'utf-8')); + PromisePool.prototype._fireEvent = function (type, data) { + this.dispatchEvent(new PromisePoolEvent(this, type, data)) + } - switch (mimeType) { - case 'application/epub+zip': - return { - ext: 'epub', - mime: 'application/epub+zip' - }; - case 'application/vnd.oasis.opendocument.text': - return { - ext: 'odt', - mime: 'application/vnd.oasis.opendocument.text' - }; - case 'application/vnd.oasis.opendocument.spreadsheet': - return { - ext: 'ods', - mime: 'application/vnd.oasis.opendocument.spreadsheet' - }; - case 'application/vnd.oasis.opendocument.presentation': - return { - ext: 'odp', - mime: 'application/vnd.oasis.opendocument.presentation' - }; - default: - } - } + PromisePool.prototype._settle = function (error) { + if (error) { + this._callbacks.reject(error) + } else { + this._callbacks.resolve() + } + this._promise = null + this._callbacks = null + } - // Try to find next header manually when current one is corrupted - if (zipHeader.compressedSize === 0) { - let nextHeaderIndex = -1; + PromisePool.prototype._onPooledPromiseFulfilled = function (promise, result) { + this._size-- + if (this.active()) { + this._fireEvent('fulfilled', { + promise: promise, + result: result + }) + this._proceed() + } + } - while (nextHeaderIndex < 0 && (tokenizer.position < tokenizer.fileInfo.size)) { - await tokenizer.peekBuffer(buffer, {mayBeLess: true}); + PromisePool.prototype._onPooledPromiseRejected = function (promise, error) { + this._size-- + if (this.active()) { + this._fireEvent('rejected', { + promise: promise, + error: error + }) + this._settle(error || new Error('Unknown error')) + } + } - nextHeaderIndex = buffer.indexOf('504B0304', 0, 'hex'); - // Move position to the next header if found, skip the whole buffer otherwise - await tokenizer.ignore(nextHeaderIndex >= 0 ? nextHeaderIndex : buffer.length); - } - } else { - await tokenizer.ignore(zipHeader.compressedSize); - } - } - } catch (error) { - if (!(error instanceof strtok3.EndOfStreamError)) { - throw error; - } - } + PromisePool.prototype._trackPromise = function (promise) { + var that = this + promise + .then(function (result) { + that._onPooledPromiseFulfilled(promise, result) + }, function (error) { + that._onPooledPromiseRejected(promise, error) + })['catch'](function (err) { + that._settle(new Error('Promise processing failed: ' + err)) + }) + } - return { - ext: 'zip', - mime: 'application/zip' - }; - } + PromisePool.prototype._proceed = function () { + if (!this._done) { + var result = { done: false } + while (this._size < this._concurrency && + !(result = this._iterator.next()).done) { + this._size++ + this._trackPromise(result.value) + } + this._done = (result === null || !!result.done) + } + if (this._done && this._size === 0) { + this._settle() + } + } - if (checkString('OggS')) { - // This is an OGG container - await tokenizer.ignore(28); - const type = Buffer.alloc(8); - await tokenizer.readBuffer(type); + PromisePool.PromisePoolEvent = PromisePoolEvent + // Legacy API + PromisePool.PromisePool = PromisePool - // Needs to be before `ogg` check - if (_check(type, [0x4F, 0x70, 0x75, 0x73, 0x48, 0x65, 0x61, 0x64])) { - return { - ext: 'opus', - mime: 'audio/opus' - }; - } + return PromisePool +}) - // If ' theora' in header. - if (_check(type, [0x80, 0x74, 0x68, 0x65, 0x6F, 0x72, 0x61])) { - return { - ext: 'ogv', - mime: 'video/ogg' - }; - } - // If '\x01video' in header. - if (_check(type, [0x01, 0x76, 0x69, 0x64, 0x65, 0x6F, 0x00])) { - return { - ext: 'ogm', - mime: 'video/ogg' - }; - } +/***/ }), +/* 1346 */ +/***/ (function(module, exports, __webpack_require__) { - // If ' FLAC' in header https://xiph.org/flac/faq.html - if (_check(type, [0x7F, 0x46, 0x4C, 0x41, 0x43])) { - return { - ext: 'oga', - mime: 'audio/ogg' - }; - } +const get = __webpack_require__(1318) +const flatten = __webpack_require__(1274) - // 'Speex ' in header https://en.wikipedia.org/wiki/Speex - if (_check(type, [0x53, 0x70, 0x65, 0x65, 0x78, 0x20, 0x20])) { - return { - ext: 'spx', - mime: 'audio/ogg' - }; - } +const Contact = __webpack_require__(1347) +const Document = __webpack_require__(1147) - // If '\x01vorbis' in header - if (_check(type, [0x01, 0x76, 0x6F, 0x72, 0x62, 0x69, 0x73])) { - return { - ext: 'ogg', - mime: 'audio/ogg' - }; - } +class AdministrativeProcedure extends Document { + /** + * Returns personal data for the contact + * + * @param {Contact} contact - A contact + * @param {Array} fields - The list of fields to retrieve + * @return {Object} - the personal data + **/ + static getPersonalData(contact, fields) { + const mapping = { + firstname: { + path: 'name.givenName' + }, + lastname: { + path: 'name.familyName' + }, + address: { + getter: Contact.getPrimaryAddress + }, + email: { + getter: Contact.getPrimaryEmail + }, + phone: { + getter: Contact.getPrimaryPhone + } + } + let personalData = {} + fields.forEach(field => { + const contactField = get(mapping, field, field) + let value + if (contactField.getter) { + value = contactField.getter(contact) + } else { + const path = get(contactField, 'path', field) + value = get(contact, path) + } - // Default OGG container https://www.iana.org/assignments/media-types/application/ogg - return { - ext: 'ogx', - mime: 'application/ogg' - }; - } + if (value !== undefined) { + personalData[field] = value + } + }) - if ( - check([0x50, 0x4B]) && - (buffer[2] === 0x3 || buffer[2] === 0x5 || buffer[2] === 0x7) && - (buffer[3] === 0x4 || buffer[3] === 0x6 || buffer[3] === 0x8) - ) { - return { - ext: 'zip', - mime: 'application/zip' - }; - } + return personalData + } + /** + * Method to generate a query based on a few rules given by the template + * @param {Object} docRules + * @param {Object} docRules.rules + * @param {int} docRules.count + */ + static async getFilesByRules(docRules) { + const { rules, count } = docRules + const cozyRules = { + trashed: false, + type: 'file', + ...rules + } + // Create an index in order to query and sort + await this.cozyClient + .collection('io.cozy.files') + .createIndex(['metadata.datetime', 'metadata.qualification']) + // Use the index + const files = await this.cozyClient + .collection('io.cozy.files') + .find(cozyRules, { + indexedFields: ['metadata.datetime', 'metadata.qualification'], + sort: [ + { + 'metadata.datetime': 'desc' + }, + { + 'metadata.qualification': 'desc' + } + ], + limit: count ? count : 1 + }) - // + return files + } - // File Type Box (https://en.wikipedia.org/wiki/ISO_base_media_file_format) - // It's not required to be first, but it's recommended to be. Almost all ISO base media files start with `ftyp` box. - // `ftyp` box must contain a brand major identifier, which must consist of ISO 8859-1 printable characters. - // Here we check for 8859-1 printable characters (for simplicity, it's a mask which also catches one non-printable character). - if ( - checkString('ftyp', {offset: 4}) && - (buffer[8] & 0x60) !== 0x00 // Brand major, first character ASCII? - ) { - // They all can have MIME `video/mp4` except `application/mp4` special-case which is hard to detect. - // For some cases, we're specific, everything else falls to `video/mp4` with `mp4` extension. - const brandMajor = buffer.toString('binary', 8, 12).replace('\0', ' ').trim(); - switch (brandMajor) { - case 'avif': - return {ext: 'avif', mime: 'image/avif'}; - case 'mif1': - return {ext: 'heic', mime: 'image/heif'}; - case 'msf1': - return {ext: 'heic', mime: 'image/heif-sequence'}; - case 'heic': - case 'heix': - return {ext: 'heic', mime: 'image/heic'}; - case 'hevc': - case 'hevx': - return {ext: 'heic', mime: 'image/heic-sequence'}; - case 'qt': - return {ext: 'mov', mime: 'video/quicktime'}; - case 'M4V': - case 'M4VH': - case 'M4VP': - return {ext: 'm4v', mime: 'video/x-m4v'}; - case 'M4P': - return {ext: 'm4p', mime: 'video/mp4'}; - case 'M4B': - return {ext: 'm4b', mime: 'audio/mp4'}; - case 'M4A': - return {ext: 'm4a', mime: 'audio/x-m4a'}; - case 'F4V': - return {ext: 'f4v', mime: 'video/mp4'}; - case 'F4P': - return {ext: 'f4p', mime: 'video/mp4'}; - case 'F4A': - return {ext: 'f4a', mime: 'audio/mp4'}; - case 'F4B': - return {ext: 'f4b', mime: 'audio/mp4'}; - case 'crx': - return {ext: 'cr3', mime: 'image/x-canon-cr3'}; - default: - if (brandMajor.startsWith('3g')) { - if (brandMajor.startsWith('3g2')) { - return {ext: '3g2', mime: 'video/3gpp2'}; - } + /** + * Returns a io.cozy.procedures.administratives object + * + * @param {object} data - The data we need for this type of procedure + * @param {ProcedureTemplate} template - The procedure's template + * @return {AdministrativeProcedure} the administrative procedure + */ + static create(data, template) { + const { documentsData, personalData, procedureData } = data + const files = Object.keys(documentsData).map(identifier => { + return documentsData[identifier].files.map(file => { + // TODO Remove this check. it has to be done before + if (file) + return { + _id: file.id, + _type: 'io.cozy.files', + templateDocumentId: identifier + } + }) + }) + return { + personalData, + procedureData, + submissionDate: new Date(), + templateId: template.type, + templateVersion: template.version, + relationships: { + files: { + data: flatten(files) + } + } + } + } - return {ext: '3gp', mime: 'video/3gpp'}; - } + /** + * Returns json that represents the administative procedure + * + * @param {AdministrativeProcedure} + * @return {string} - the json that represents this procedure + * + */ + static createJson(administrativeProcedure) { + return JSON.stringify(administrativeProcedure) + } +} - return {ext: 'mp4', mime: 'video/mp4'}; - } - } +AdministrativeProcedure.doctype = 'io.cozy.procedures.administratives' - if (checkString('MThd')) { - return { - ext: 'mid', - mime: 'audio/midi' - }; - } +module.exports = AdministrativeProcedure - if ( - checkString('wOFF') && - ( - check([0x00, 0x01, 0x00, 0x00], {offset: 4}) || - checkString('OTTO', {offset: 4}) - ) - ) { - return { - ext: 'woff', - mime: 'font/woff' - }; - } - if ( - checkString('wOF2') && - ( - check([0x00, 0x01, 0x00, 0x00], {offset: 4}) || - checkString('OTTO', {offset: 4}) - ) - ) { - return { - ext: 'woff2', - mime: 'font/woff2' - }; - } +/***/ }), +/* 1347 */ +/***/ (function(module, exports, __webpack_require__) { - if (check([0xD4, 0xC3, 0xB2, 0xA1]) || check([0xA1, 0xB2, 0xC3, 0xD4])) { - return { - ext: 'pcap', - mime: 'application/vnd.tcpdump.pcap' - }; - } +const PropTypes = __webpack_require__(1348) +const get = __webpack_require__(1318) - // Sony DSD Stream File (DSF) - if (checkString('DSD ')) { - return { - ext: 'dsf', - mime: 'audio/x-dsf' // Non-standard - }; - } +const log = __webpack_require__(1355) +const Document = __webpack_require__(1147) - if (checkString('LZIP')) { - return { - ext: 'lz', - mime: 'application/x-lzip' - }; - } +const getPrimaryOrFirst = property => obj => { + if (!obj[property] || obj[property].length === 0) return '' + return obj[property].find(property => property.primary) || obj[property][0] +} - if (checkString('fLaC')) { - return { - ext: 'flac', - mime: 'audio/x-flac' - }; - } +const logDeprecated = methodName => + log( + 'warn', + `${methodName} from cozy-doctypes contact is deprecated, use cozy-client/models/contacts/${methodName} instead` + ) - if (check([0x42, 0x50, 0x47, 0xFB])) { - return { - ext: 'bpg', - mime: 'image/bpg' - }; - } +/** + * Class representing the contact model. + * @extends Document + */ +class Contact extends Document { + /** + * Returns true if candidate is a contact + * + * @param {Object} candidate + * @return {boolean} - whether the candidate is a contact + */ + static isContact(candidate) { + return candidate._type === Contact.doctype + } - if (checkString('wvpk')) { - return { - ext: 'wv', - mime: 'audio/wavpack' - }; - } + /** + * Returns the initials of the contact. + * + * @param {Contact|string} contact - A contact or a string + * @return {string} - the contact's initials + */ + static getInitials(contact) { + logDeprecated('getInitials') + if (typeof contact === 'string') { + log( + 'warn', + 'Passing a string to Contact.getInitials will be deprecated soon.' + ) + return contact[0].toUpperCase() + } - if (checkString('%PDF')) { - await tokenizer.ignore(1350); - const maxBufferSize = 10 * 1024 * 1024; - const buffer = Buffer.alloc(Math.min(maxBufferSize, tokenizer.fileInfo.size)); - await tokenizer.readBuffer(buffer, {mayBeLess: true}); + if (contact.name) { + return ['givenName', 'familyName'] + .map(part => get(contact, ['name', part, 0], '')) + .join('') + .toUpperCase() + } - // Check if this is an Adobe Illustrator file - if (buffer.includes(Buffer.from('AIPrivateData'))) { - return { - ext: 'ai', - mime: 'application/postscript' - }; - } + const email = Contact.getPrimaryEmail(contact) + if (email) { + return email[0].toUpperCase() + } - // Assume this is just a normal PDF - return { - ext: 'pdf', - mime: 'application/pdf' - }; - } + log('warn', 'Contact has no name and no email.') + return '' + } - if (check([0x00, 0x61, 0x73, 0x6D])) { - return { - ext: 'wasm', - mime: 'application/wasm' - }; - } + /** + * Returns the contact's main email + * + * @param {Contact} contact - A contact + * @return {string} - The contact's main email + */ + // TODO: sadly we have different versions of contacts' doctype to handle... + // A migration tool on the stack side is needed here + static getPrimaryEmail(contact) { + logDeprecated('getPrimaryEmail') + return Array.isArray(contact.email) + ? getPrimaryOrFirst('email')(contact).address + : contact.email + } - // TIFF, little-endian type - if (check([0x49, 0x49, 0x2A, 0x0])) { - if (checkString('CR', {offset: 8})) { - return { - ext: 'cr2', - mime: 'image/x-canon-cr2' - }; - } + /** + * Returns the contact's main cozy + * + * @param {Contact} contact - A contact + * @return {string} - The contact's main cozy + */ + static getPrimaryCozy(contact) { + logDeprecated('getPrimaryCozy') + return Array.isArray(contact.cozy) + ? getPrimaryOrFirst('cozy')(contact).url + : contact.url + } - if (check([0x1C, 0x00, 0xFE, 0x00], {offset: 8}) || check([0x1F, 0x00, 0x0B, 0x00], {offset: 8})) { - return { - ext: 'nef', - mime: 'image/x-nikon-nef' - }; - } + /** + * Returns the contact's main phone number + * + * @param {Contact} contact - A contact + * @return {string} - The contact's main phone number + */ + static getPrimaryPhone(contact) { + logDeprecated('getPrimaryPhone') + return getPrimaryOrFirst('phone')(contact).number + } - if ( - check([0x08, 0x00, 0x00, 0x00], {offset: 4}) && - (check([0x2D, 0x00, 0xFE, 0x00], {offset: 8}) || - check([0x27, 0x00, 0xFE, 0x00], {offset: 8})) - ) { - return { - ext: 'dng', - mime: 'image/x-adobe-dng' - }; - } + /** + * Returns the contact's main address + * + * @param {Contact} contact - A contact + * @return {string} - The contact's main address + */ + static getPrimaryAddress(contact) { + logDeprecated('getPrimaryAddress') + return getPrimaryOrFirst('address')(contact).formattedAddress + } - buffer = Buffer.alloc(24); - await tokenizer.peekBuffer(buffer); - if ( - (check([0x10, 0xFB, 0x86, 0x01], {offset: 4}) || check([0x08, 0x00, 0x00, 0x00], {offset: 4})) && - // This pattern differentiates ARW from other TIFF-ish file types: - check([0x00, 0xFE, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x01], {offset: 9}) - ) { - return { - ext: 'arw', - mime: 'image/x-sony-arw' - }; - } + /** + * Returns the contact's fullname + * + * @param {Contact} contact - A contact + * @return {string} - The contact's fullname + */ + static getFullname(contact) { + logDeprecated('getFullname') + if (contact.fullname) { + return contact.fullname + } else if (contact.name) { + return [ + 'namePrefix', + 'givenName', + 'additionalName', + 'familyName', + 'nameSuffix' + ] + .map(part => contact.name[part]) + .filter(part => part !== undefined) + .join(' ') + .trim() + } - return { - ext: 'tif', - mime: 'image/tiff' - }; - } + return undefined + } - // TIFF, big-endian type - if (check([0x4D, 0x4D, 0x0, 0x2A])) { - return { - ext: 'tif', - mime: 'image/tiff' - }; - } + /** + * Returns a display name for the contact + * + * @param {Contact} contact - A contact + * @return {string} - the contact's display name + **/ + static getDisplayName(contact) { + logDeprecated('getDisplayName') + return Contact.getFullname(contact) || Contact.getPrimaryEmail(contact) + } +} - if (checkString('MAC ')) { - return { - ext: 'ape', - mime: 'audio/ape' - }; - } +const ContactShape = PropTypes.shape({ + _id: PropTypes.string.isRequired, + _type: PropTypes.string.isRequired, + fullname: PropTypes.string, + name: PropTypes.shape({ + givenName: PropTypes.string, + familyName: PropTypes.string, + additionalName: PropTypes.string, + namePrefix: PropTypes.string, + nameSuffix: PropTypes.string + }), + birthday: PropTypes.string, + note: PropTypes.string, + email: PropTypes.arrayOf( + PropTypes.shape({ + address: PropTypes.string.isRequired, + label: PropTypes.string, + type: PropTypes.string, + primary: PropTypes.bool + }) + ), + address: PropTypes.arrayOf( + PropTypes.shape({ + street: PropTypes.string, + pobox: PropTypes.string, + city: PropTypes.string, + region: PropTypes.string, + postcode: PropTypes.string, + country: PropTypes.string, + type: PropTypes.string, + primary: PropTypes.bool, + label: PropTypes.string, + formattedAddress: PropTypes.string + }) + ), + phone: PropTypes.arrayOf( + PropTypes.shape({ + number: PropTypes.string.isRequired, + type: PropTypes.string, + label: PropTypes.string, + primary: PropTypes.bool + }) + ), + cozy: PropTypes.arrayOf( + PropTypes.shape({ + url: PropTypes.string.isRequired, + label: PropTypes.string, + primary: PropTypes.bool + }) + ), + company: PropTypes.string, + jobTitle: PropTypes.string, + trashed: PropTypes.bool, + me: PropTypes.bool, + relationships: PropTypes.shape({ + accounts: PropTypes.shape({ + data: PropTypes.arrayOf( + PropTypes.shape({ + _id: PropTypes.string.isRequired, + _type: PropTypes.string.isRequired + }) + ) + }), + groups: PropTypes.shape({ + data: PropTypes.arrayOf( + PropTypes.shape({ + _id: PropTypes.string.isRequired, + _type: PropTypes.string.isRequired + }) + ) + }) + }) +}) - // https://github.com/threatstack/libmagic/blob/master/magic/Magdir/matroska - if (check([0x1A, 0x45, 0xDF, 0xA3])) { // Root element: EBML - async function readField() { - const msb = await tokenizer.peekNumber(Token.UINT8); - let mask = 0x80; - let ic = 0; // 0 = A, 1 = B, 2 = C, 3 = D +Contact.doctype = 'io.cozy.contacts' +Contact.propType = ContactShape - while ((msb & mask) === 0) { - ++ic; - mask >>= 1; - } +module.exports = Contact - const id = Buffer.alloc(ic + 1); - await tokenizer.readBuffer(id); - return id; - } - async function readElement() { - const id = await readField(); - const lenField = await readField(); - lenField[0] ^= 0x80 >> (lenField.length - 1); - const nrLen = Math.min(6, lenField.length); // JavaScript can max read 6 bytes integer - return { - id: id.readUIntBE(0, id.length), - len: lenField.readUIntBE(lenField.length - nrLen, nrLen) - }; - } +/***/ }), +/* 1348 */ +/***/ (function(module, exports, __webpack_require__) { - async function readChildren(level, children) { - while (children > 0) { - const e = await readElement(); - if (e.id === 0x4282) { - return tokenizer.readToken(new Token.StringType(e.len, 'utf-8')); // Return DocType - } +/** + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ - await tokenizer.ignore(e.len); // ignore payload - --children; - } - } +if (true) { + var ReactIs = __webpack_require__(1349); - const re = await readElement(); - const docType = await readChildren(1, re.len); + // By explicitly using `prop-types` you are opting into new development behavior. + // http://fb.me/prop-types-in-prod + var throwOnDirectAccess = true; + module.exports = __webpack_require__(1351)(ReactIs.isElement, throwOnDirectAccess); +} else {} - switch (docType) { - case 'webm': - return { - ext: 'webm', - mime: 'video/webm' - }; - case 'matroska': - return { - ext: 'mkv', - mime: 'video/x-matroska' - }; +/***/ }), +/* 1349 */ +/***/ (function(module, exports, __webpack_require__) { - default: - return; - } - } +"use strict"; - // RIFF file format which might be AVI, WAV, QCP, etc - if (check([0x52, 0x49, 0x46, 0x46])) { - if (check([0x41, 0x56, 0x49], {offset: 8})) { - return { - ext: 'avi', - mime: 'video/vnd.avi' - }; - } - if (check([0x57, 0x41, 0x56, 0x45], {offset: 8})) { - return { - ext: 'wav', - mime: 'audio/vnd.wave' - }; - } +if (false) {} else { + module.exports = __webpack_require__(1350); +} - // QLCM, QCP file - if (check([0x51, 0x4C, 0x43, 0x4D], {offset: 8})) { - return { - ext: 'qcp', - mime: 'audio/qcelp' - }; - } - } - if (checkString('SQLi')) { - return { - ext: 'sqlite', - mime: 'application/x-sqlite3' - }; - } +/***/ }), +/* 1350 */ +/***/ (function(module, exports, __webpack_require__) { - if (check([0x4E, 0x45, 0x53, 0x1A])) { - return { - ext: 'nes', - mime: 'application/x-nintendo-nes-rom' - }; - } +"use strict"; +/** @license React v16.13.1 + * react-is.development.js + * + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ - if (checkString('Cr24')) { - return { - ext: 'crx', - mime: 'application/x-google-chrome-extension' - }; - } - if ( - checkString('MSCF') || - checkString('ISc(') - ) { - return { - ext: 'cab', - mime: 'application/vnd.ms-cab-compressed' - }; - } - if (check([0xED, 0xAB, 0xEE, 0xDB])) { - return { - ext: 'rpm', - mime: 'application/x-rpm' - }; - } - if (check([0xC5, 0xD0, 0xD3, 0xC6])) { - return { - ext: 'eps', - mime: 'application/eps' - }; - } - if (check([0x28, 0xB5, 0x2F, 0xFD])) { - return { - ext: 'zst', - mime: 'application/zstd' - }; - } +if (true) { + (function() { +'use strict'; - // -- 5-byte signatures -- +// The Symbol used to tag the ReactElement-like types. If there is no native Symbol +// nor polyfill, then a plain number is used for performance. +var hasSymbol = typeof Symbol === 'function' && Symbol.for; +var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7; +var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca; +var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb; +var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc; +var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2; +var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd; +var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary +// (unstable) APIs that have been removed. Can we remove the symbols? - if (check([0x4F, 0x54, 0x54, 0x4F, 0x00])) { - return { - ext: 'otf', - mime: 'font/otf' - }; - } +var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf; +var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf; +var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0; +var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1; +var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8; +var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3; +var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4; +var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9; +var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5; +var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6; +var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7; - if (checkString('#!AMR')) { - return { - ext: 'amr', - mime: 'audio/amr' - }; - } +function isValidElementType(type) { + return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill. + type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE); +} - if (checkString('{\\rtf')) { - return { - ext: 'rtf', - mime: 'application/rtf' - }; - } +function typeOf(object) { + if (typeof object === 'object' && object !== null) { + var $$typeof = object.$$typeof; - if (check([0x46, 0x4C, 0x56, 0x01])) { - return { - ext: 'flv', - mime: 'video/x-flv' - }; - } + switch ($$typeof) { + case REACT_ELEMENT_TYPE: + var type = object.type; - if (checkString('IMPM')) { - return { - ext: 'it', - mime: 'audio/x-it' - }; - } + switch (type) { + case REACT_ASYNC_MODE_TYPE: + case REACT_CONCURRENT_MODE_TYPE: + case REACT_FRAGMENT_TYPE: + case REACT_PROFILER_TYPE: + case REACT_STRICT_MODE_TYPE: + case REACT_SUSPENSE_TYPE: + return type; - if ( - checkString('-lh0-', {offset: 2}) || - checkString('-lh1-', {offset: 2}) || - checkString('-lh2-', {offset: 2}) || - checkString('-lh3-', {offset: 2}) || - checkString('-lh4-', {offset: 2}) || - checkString('-lh5-', {offset: 2}) || - checkString('-lh6-', {offset: 2}) || - checkString('-lh7-', {offset: 2}) || - checkString('-lzs-', {offset: 2}) || - checkString('-lz4-', {offset: 2}) || - checkString('-lz5-', {offset: 2}) || - checkString('-lhd-', {offset: 2}) - ) { - return { - ext: 'lzh', - mime: 'application/x-lzh-compressed' - }; - } + default: + var $$typeofType = type && type.$$typeof; - // MPEG program stream (PS or MPEG-PS) - if (check([0x00, 0x00, 0x01, 0xBA])) { - // MPEG-PS, MPEG-1 Part 1 - if (check([0x21], {offset: 4, mask: [0xF1]})) { - return { - ext: 'mpg', // May also be .ps, .mpeg - mime: 'video/MP1S' - }; - } + switch ($$typeofType) { + case REACT_CONTEXT_TYPE: + case REACT_FORWARD_REF_TYPE: + case REACT_LAZY_TYPE: + case REACT_MEMO_TYPE: + case REACT_PROVIDER_TYPE: + return $$typeofType; - // MPEG-PS, MPEG-2 Part 1 - if (check([0x44], {offset: 4, mask: [0xC4]})) { - return { - ext: 'mpg', // May also be .mpg, .m2p, .vob or .sub - mime: 'video/MP2P' - }; - } - } + default: + return $$typeof; + } - if (checkString('ITSF')) { - return { - ext: 'chm', - mime: 'application/vnd.ms-htmlhelp' - }; - } + } - // -- 6-byte signatures -- + case REACT_PORTAL_TYPE: + return $$typeof; + } + } - if (check([0xFD, 0x37, 0x7A, 0x58, 0x5A, 0x00])) { - return { - ext: 'xz', - mime: 'application/x-xz' - }; - } + return undefined; +} // AsyncMode is deprecated along with isAsyncMode - if (checkString('<?xml ')) { - return { - ext: 'xml', - mime: 'application/xml' - }; - } +var AsyncMode = REACT_ASYNC_MODE_TYPE; +var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE; +var ContextConsumer = REACT_CONTEXT_TYPE; +var ContextProvider = REACT_PROVIDER_TYPE; +var Element = REACT_ELEMENT_TYPE; +var ForwardRef = REACT_FORWARD_REF_TYPE; +var Fragment = REACT_FRAGMENT_TYPE; +var Lazy = REACT_LAZY_TYPE; +var Memo = REACT_MEMO_TYPE; +var Portal = REACT_PORTAL_TYPE; +var Profiler = REACT_PROFILER_TYPE; +var StrictMode = REACT_STRICT_MODE_TYPE; +var Suspense = REACT_SUSPENSE_TYPE; +var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated - if (check([0x37, 0x7A, 0xBC, 0xAF, 0x27, 0x1C])) { - return { - ext: '7z', - mime: 'application/x-7z-compressed' - }; - } +function isAsyncMode(object) { + { + if (!hasWarnedAboutDeprecatedIsAsyncMode) { + hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint - if ( - check([0x52, 0x61, 0x72, 0x21, 0x1A, 0x7]) && - (buffer[6] === 0x0 || buffer[6] === 0x1) - ) { - return { - ext: 'rar', - mime: 'application/x-rar-compressed' - }; - } + console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.'); + } + } - if (checkString('solid ')) { - return { - ext: 'stl', - mime: 'model/stl' - }; - } + return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE; +} +function isConcurrentMode(object) { + return typeOf(object) === REACT_CONCURRENT_MODE_TYPE; +} +function isContextConsumer(object) { + return typeOf(object) === REACT_CONTEXT_TYPE; +} +function isContextProvider(object) { + return typeOf(object) === REACT_PROVIDER_TYPE; +} +function isElement(object) { + return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; +} +function isForwardRef(object) { + return typeOf(object) === REACT_FORWARD_REF_TYPE; +} +function isFragment(object) { + return typeOf(object) === REACT_FRAGMENT_TYPE; +} +function isLazy(object) { + return typeOf(object) === REACT_LAZY_TYPE; +} +function isMemo(object) { + return typeOf(object) === REACT_MEMO_TYPE; +} +function isPortal(object) { + return typeOf(object) === REACT_PORTAL_TYPE; +} +function isProfiler(object) { + return typeOf(object) === REACT_PROFILER_TYPE; +} +function isStrictMode(object) { + return typeOf(object) === REACT_STRICT_MODE_TYPE; +} +function isSuspense(object) { + return typeOf(object) === REACT_SUSPENSE_TYPE; +} - // -- 7-byte signatures -- +exports.AsyncMode = AsyncMode; +exports.ConcurrentMode = ConcurrentMode; +exports.ContextConsumer = ContextConsumer; +exports.ContextProvider = ContextProvider; +exports.Element = Element; +exports.ForwardRef = ForwardRef; +exports.Fragment = Fragment; +exports.Lazy = Lazy; +exports.Memo = Memo; +exports.Portal = Portal; +exports.Profiler = Profiler; +exports.StrictMode = StrictMode; +exports.Suspense = Suspense; +exports.isAsyncMode = isAsyncMode; +exports.isConcurrentMode = isConcurrentMode; +exports.isContextConsumer = isContextConsumer; +exports.isContextProvider = isContextProvider; +exports.isElement = isElement; +exports.isForwardRef = isForwardRef; +exports.isFragment = isFragment; +exports.isLazy = isLazy; +exports.isMemo = isMemo; +exports.isPortal = isPortal; +exports.isProfiler = isProfiler; +exports.isStrictMode = isStrictMode; +exports.isSuspense = isSuspense; +exports.isValidElementType = isValidElementType; +exports.typeOf = typeOf; + })(); +} - if (checkString('BLENDER')) { - return { - ext: 'blend', - mime: 'application/x-blender' - }; - } - if (checkString('!<arch>')) { - await tokenizer.ignore(8); - const str = await tokenizer.readToken(new Token.StringType(13, 'ascii')); - if (str === 'debian-binary') { - return { - ext: 'deb', - mime: 'application/x-deb' - }; - } +/***/ }), +/* 1351 */ +/***/ (function(module, exports, __webpack_require__) { - return { - ext: 'ar', - mime: 'application/x-unix-archive' - }; - } +"use strict"; +/** + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ - // -- 8-byte signatures -- - if (check([0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A])) { - // APNG format (https://wiki.mozilla.org/APNG_Specification) - // 1. Find the first IDAT (image data) chunk (49 44 41 54) - // 2. Check if there is an "acTL" chunk before the IDAT one (61 63 54 4C) - // Offset calculated as follows: - // - 8 bytes: PNG signature - // - 4 (length) + 4 (chunk type) + 13 (chunk data) + 4 (CRC): IHDR chunk +var ReactIs = __webpack_require__(1349); +var assign = __webpack_require__(1352); - await tokenizer.ignore(8); // ignore PNG signature +var ReactPropTypesSecret = __webpack_require__(1353); +var checkPropTypes = __webpack_require__(1354); - async function readChunkHeader() { - return { - length: await tokenizer.readToken(Token.INT32_BE), - type: await tokenizer.readToken(new Token.StringType(4, 'binary')) - }; - } +var has = Function.call.bind(Object.prototype.hasOwnProperty); +var printWarning = function() {}; - do { - const chunk = await readChunkHeader(); - if (chunk.length < 0) { - return; // Invalid chunk length - } +if (true) { + printWarning = function(text) { + var message = 'Warning: ' + text; + if (typeof console !== 'undefined') { + console.error(message); + } + try { + // --- Welcome to debugging React --- + // This error was thrown as a convenience so that you can use this stack + // to find the callsite that caused this warning to fire. + throw new Error(message); + } catch (x) {} + }; +} - switch (chunk.type) { - case 'IDAT': - return { - ext: 'png', - mime: 'image/png' - }; - case 'acTL': - return { - ext: 'apng', - mime: 'image/apng' - }; - default: - await tokenizer.ignore(chunk.length + 4); // Ignore chunk-data + CRC - } - } while (tokenizer.position + 8 < tokenizer.fileInfo.size); +function emptyFunctionThatReturnsNull() { + return null; +} - return { - ext: 'png', - mime: 'image/png' - }; - } +module.exports = function(isValidElement, throwOnDirectAccess) { + /* global Symbol */ + var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator; + var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec. - if (check([0x41, 0x52, 0x52, 0x4F, 0x57, 0x31, 0x00, 0x00])) { - return { - ext: 'arrow', - mime: 'application/x-apache-arrow' - }; - } + /** + * Returns the iterator method function contained on the iterable object. + * + * Be sure to invoke the function with the iterable as context: + * + * var iteratorFn = getIteratorFn(myIterable); + * if (iteratorFn) { + * var iterator = iteratorFn.call(myIterable); + * ... + * } + * + * @param {?object} maybeIterable + * @return {?function} + */ + function getIteratorFn(maybeIterable) { + var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]); + if (typeof iteratorFn === 'function') { + return iteratorFn; + } + } - if (check([0x67, 0x6C, 0x54, 0x46, 0x02, 0x00, 0x00, 0x00])) { - return { - ext: 'glb', - mime: 'model/gltf-binary' - }; - } + /** + * Collection of methods that allow declaration and validation of props that are + * supplied to React components. Example usage: + * + * var Props = require('ReactPropTypes'); + * var MyArticle = React.createClass({ + * propTypes: { + * // An optional string prop named "description". + * description: Props.string, + * + * // A required enum prop named "category". + * category: Props.oneOf(['News','Photos']).isRequired, + * + * // A prop named "dialog" that requires an instance of Dialog. + * dialog: Props.instanceOf(Dialog).isRequired + * }, + * render: function() { ... } + * }); + * + * A more formal specification of how these methods are used: + * + * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...) + * decl := ReactPropTypes.{type}(.isRequired)? + * + * Each and every declaration produces a function with the same signature. This + * allows the creation of custom validation functions. For example: + * + * var MyLink = React.createClass({ + * propTypes: { + * // An optional string or URI prop named "href". + * href: function(props, propName, componentName) { + * var propValue = props[propName]; + * if (propValue != null && typeof propValue !== 'string' && + * !(propValue instanceof URI)) { + * return new Error( + * 'Expected a string or an URI for ' + propName + ' in ' + + * componentName + * ); + * } + * } + * }, + * render: function() {...} + * }); + * + * @internal + */ - // `mov` format variants - if ( - check([0x66, 0x72, 0x65, 0x65], {offset: 4}) || // `free` - check([0x6D, 0x64, 0x61, 0x74], {offset: 4}) || // `mdat` MJPEG - check([0x6D, 0x6F, 0x6F, 0x76], {offset: 4}) || // `moov` - check([0x77, 0x69, 0x64, 0x65], {offset: 4}) // `wide` - ) { - return { - ext: 'mov', - mime: 'video/quicktime' - }; - } + var ANONYMOUS = '<<anonymous>>'; - // -- 9-byte signatures -- + // Important! + // Keep this list in sync with production version in `./factoryWithThrowingShims.js`. + var ReactPropTypes = { + array: createPrimitiveTypeChecker('array'), + bool: createPrimitiveTypeChecker('boolean'), + func: createPrimitiveTypeChecker('function'), + number: createPrimitiveTypeChecker('number'), + object: createPrimitiveTypeChecker('object'), + string: createPrimitiveTypeChecker('string'), + symbol: createPrimitiveTypeChecker('symbol'), - if (check([0x49, 0x49, 0x52, 0x4F, 0x08, 0x00, 0x00, 0x00, 0x18])) { - return { - ext: 'orf', - mime: 'image/x-olympus-orf' - }; - } + any: createAnyTypeChecker(), + arrayOf: createArrayOfTypeChecker, + element: createElementTypeChecker(), + elementType: createElementTypeTypeChecker(), + instanceOf: createInstanceTypeChecker, + node: createNodeChecker(), + objectOf: createObjectOfTypeChecker, + oneOf: createEnumTypeChecker, + oneOfType: createUnionTypeChecker, + shape: createShapeTypeChecker, + exact: createStrictShapeTypeChecker, + }; + + /** + * inlined Object.is polyfill to avoid requiring consumers ship their own + * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is + */ + /*eslint-disable no-self-compare*/ + function is(x, y) { + // SameValue algorithm + if (x === y) { + // Steps 1-5, 7-10 + // Steps 6.b-6.e: +0 != -0 + return x !== 0 || 1 / x === 1 / y; + } else { + // Step 6.a: NaN == NaN + return x !== x && y !== y; + } + } + /*eslint-enable no-self-compare*/ + + /** + * We use an Error-like object for backward compatibility as people may call + * PropTypes directly and inspect their output. However, we don't use real + * Errors anymore. We don't inspect their stack anyway, and creating them + * is prohibitively expensive if they are created too often, such as what + * happens in oneOfType() for any type before the one that matched. + */ + function PropTypeError(message) { + this.message = message; + this.stack = ''; + } + // Make `instanceof Error` still work for returned errors. + PropTypeError.prototype = Error.prototype; - if (checkString('gimp xcf ')) { - return { - ext: 'xcf', - mime: 'image/x-xcf' - }; - } + function createChainableTypeChecker(validate) { + if (true) { + var manualPropTypeCallCache = {}; + var manualPropTypeWarningCount = 0; + } + function checkType(isRequired, props, propName, componentName, location, propFullName, secret) { + componentName = componentName || ANONYMOUS; + propFullName = propFullName || propName; - // -- 12-byte signatures -- + if (secret !== ReactPropTypesSecret) { + if (throwOnDirectAccess) { + // New behavior only for users of `prop-types` package + var err = new Error( + 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' + + 'Use `PropTypes.checkPropTypes()` to call them. ' + + 'Read more at http://fb.me/use-check-prop-types' + ); + err.name = 'Invariant Violation'; + throw err; + } else if ( true && typeof console !== 'undefined') { + // Old behavior for people using React.PropTypes + var cacheKey = componentName + ':' + propName; + if ( + !manualPropTypeCallCache[cacheKey] && + // Avoid spamming the console because they are often not actionable except for lib authors + manualPropTypeWarningCount < 3 + ) { + printWarning( + 'You are manually calling a React.PropTypes validation ' + + 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' + + 'and will throw in the standalone `prop-types` package. ' + + 'You may be seeing this warning due to a third-party PropTypes ' + + 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.' + ); + manualPropTypeCallCache[cacheKey] = true; + manualPropTypeWarningCount++; + } + } + } + if (props[propName] == null) { + if (isRequired) { + if (props[propName] === null) { + return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.')); + } + return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.')); + } + return null; + } else { + return validate(props, propName, componentName, location, propFullName); + } + } - if (check([0x49, 0x49, 0x55, 0x00, 0x18, 0x00, 0x00, 0x00, 0x88, 0xE7, 0x74, 0xD8])) { - return { - ext: 'rw2', - mime: 'image/x-panasonic-rw2' - }; - } + var chainedCheckType = checkType.bind(null, false); + chainedCheckType.isRequired = checkType.bind(null, true); - // ASF_Header_Object first 80 bytes - if (check([0x30, 0x26, 0xB2, 0x75, 0x8E, 0x66, 0xCF, 0x11, 0xA6, 0xD9])) { - async function readHeader() { - const guid = Buffer.alloc(16); - await tokenizer.readBuffer(guid); - return { - id: guid, - size: Number(await tokenizer.readToken(Token.UINT64_LE)) - }; - } + return chainedCheckType; + } - await tokenizer.ignore(30); - // Search for header should be in first 1KB of file. - while (tokenizer.position + 24 < tokenizer.fileInfo.size) { - const header = await readHeader(); - let payload = header.size - 24; - if (_check(header.id, [0x91, 0x07, 0xDC, 0xB7, 0xB7, 0xA9, 0xCF, 0x11, 0x8E, 0xE6, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65])) { - // Sync on Stream-Properties-Object (B7DC0791-A9B7-11CF-8EE6-00C00C205365) - const typeId = Buffer.alloc(16); - payload -= await tokenizer.readBuffer(typeId); + function createPrimitiveTypeChecker(expectedType) { + function validate(props, propName, componentName, location, propFullName, secret) { + var propValue = props[propName]; + var propType = getPropType(propValue); + if (propType !== expectedType) { + // `propValue` being instance of, say, date/regexp, pass the 'object' + // check, but we can offer a more precise error message here rather than + // 'of type `object`'. + var preciseType = getPreciseType(propValue); - if (_check(typeId, [0x40, 0x9E, 0x69, 0xF8, 0x4D, 0x5B, 0xCF, 0x11, 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B])) { - // Found audio: - return { - ext: 'asf', - mime: 'audio/x-ms-asf' - }; - } + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.')); + } + return null; + } + return createChainableTypeChecker(validate); + } - if (_check(typeId, [0xC0, 0xEF, 0x19, 0xBC, 0x4D, 0x5B, 0xCF, 0x11, 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B])) { - // Found video: - return { - ext: 'asf', - mime: 'video/x-ms-asf' - }; - } + function createAnyTypeChecker() { + return createChainableTypeChecker(emptyFunctionThatReturnsNull); + } - break; - } + function createArrayOfTypeChecker(typeChecker) { + function validate(props, propName, componentName, location, propFullName) { + if (typeof typeChecker !== 'function') { + return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.'); + } + var propValue = props[propName]; + if (!Array.isArray(propValue)) { + var propType = getPropType(propValue); + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.')); + } + for (var i = 0; i < propValue.length; i++) { + var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret); + if (error instanceof Error) { + return error; + } + } + return null; + } + return createChainableTypeChecker(validate); + } - await tokenizer.ignore(payload); - } + function createElementTypeChecker() { + function validate(props, propName, componentName, location, propFullName) { + var propValue = props[propName]; + if (!isValidElement(propValue)) { + var propType = getPropType(propValue); + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.')); + } + return null; + } + return createChainableTypeChecker(validate); + } - // Default to ASF generic extension - return { - ext: 'asf', - mime: 'application/vnd.ms-asf' - }; - } + function createElementTypeTypeChecker() { + function validate(props, propName, componentName, location, propFullName) { + var propValue = props[propName]; + if (!ReactIs.isValidElementType(propValue)) { + var propType = getPropType(propValue); + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.')); + } + return null; + } + return createChainableTypeChecker(validate); + } - if (check([0xAB, 0x4B, 0x54, 0x58, 0x20, 0x31, 0x31, 0xBB, 0x0D, 0x0A, 0x1A, 0x0A])) { - return { - ext: 'ktx', - mime: 'image/ktx' - }; - } + function createInstanceTypeChecker(expectedClass) { + function validate(props, propName, componentName, location, propFullName) { + if (!(props[propName] instanceof expectedClass)) { + var expectedClassName = expectedClass.name || ANONYMOUS; + var actualClassName = getClassName(props[propName]); + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.')); + } + return null; + } + return createChainableTypeChecker(validate); + } - if ((check([0x7E, 0x10, 0x04]) || check([0x7E, 0x18, 0x04])) && check([0x30, 0x4D, 0x49, 0x45], {offset: 4})) { - return { - ext: 'mie', - mime: 'application/x-mie' - }; - } + function createEnumTypeChecker(expectedValues) { + if (!Array.isArray(expectedValues)) { + if (true) { + if (arguments.length > 1) { + printWarning( + 'Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' + + 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).' + ); + } else { + printWarning('Invalid argument supplied to oneOf, expected an array.'); + } + } + return emptyFunctionThatReturnsNull; + } - if (check([0x27, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00], {offset: 2})) { - return { - ext: 'shp', - mime: 'application/x-esri-shape' - }; - } + function validate(props, propName, componentName, location, propFullName) { + var propValue = props[propName]; + for (var i = 0; i < expectedValues.length; i++) { + if (is(propValue, expectedValues[i])) { + return null; + } + } - if (check([0x00, 0x00, 0x00, 0x0C, 0x6A, 0x50, 0x20, 0x20, 0x0D, 0x0A, 0x87, 0x0A])) { - // JPEG-2000 family + var valuesString = JSON.stringify(expectedValues, function replacer(key, value) { + var type = getPreciseType(value); + if (type === 'symbol') { + return String(value); + } + return value; + }); + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.')); + } + return createChainableTypeChecker(validate); + } - await tokenizer.ignore(20); - const type = await tokenizer.readToken(new Token.StringType(4, 'ascii')); - switch (type) { - case 'jp2 ': - return { - ext: 'jp2', - mime: 'image/jp2' - }; - case 'jpx ': - return { - ext: 'jpx', - mime: 'image/jpx' - }; - case 'jpm ': - return { - ext: 'jpm', - mime: 'image/jpm' - }; - case 'mjp2': - return { - ext: 'mj2', - mime: 'image/mj2' - }; - default: - return; - } - } + function createObjectOfTypeChecker(typeChecker) { + function validate(props, propName, componentName, location, propFullName) { + if (typeof typeChecker !== 'function') { + return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.'); + } + var propValue = props[propName]; + var propType = getPropType(propValue); + if (propType !== 'object') { + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.')); + } + for (var key in propValue) { + if (has(propValue, key)) { + var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret); + if (error instanceof Error) { + return error; + } + } + } + return null; + } + return createChainableTypeChecker(validate); + } - if ( - check([0xFF, 0x0A]) || - check([0x00, 0x00, 0x00, 0x0C, 0x4A, 0x58, 0x4C, 0x20, 0x0D, 0x0A, 0x87, 0x0A]) - ) { - return { - ext: 'jxl', - mime: 'image/jxl' - }; - } + function createUnionTypeChecker(arrayOfTypeCheckers) { + if (!Array.isArray(arrayOfTypeCheckers)) { + true ? printWarning('Invalid argument supplied to oneOfType, expected an instance of array.') : undefined; + return emptyFunctionThatReturnsNull; + } - // -- Unsafe signatures -- + for (var i = 0; i < arrayOfTypeCheckers.length; i++) { + var checker = arrayOfTypeCheckers[i]; + if (typeof checker !== 'function') { + printWarning( + 'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' + + 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.' + ); + return emptyFunctionThatReturnsNull; + } + } - if ( - check([0x0, 0x0, 0x1, 0xBA]) || - check([0x0, 0x0, 0x1, 0xB3]) - ) { - return { - ext: 'mpg', - mime: 'video/mpeg' - }; - } + function validate(props, propName, componentName, location, propFullName) { + for (var i = 0; i < arrayOfTypeCheckers.length; i++) { + var checker = arrayOfTypeCheckers[i]; + if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret) == null) { + return null; + } + } - if (check([0x00, 0x01, 0x00, 0x00, 0x00])) { - return { - ext: 'ttf', - mime: 'font/ttf' - }; - } + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`.')); + } + return createChainableTypeChecker(validate); + } - if (check([0x00, 0x00, 0x01, 0x00])) { - return { - ext: 'ico', - mime: 'image/x-icon' - }; - } + function createNodeChecker() { + function validate(props, propName, componentName, location, propFullName) { + if (!isNode(props[propName])) { + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.')); + } + return null; + } + return createChainableTypeChecker(validate); + } - if (check([0x00, 0x00, 0x02, 0x00])) { - return { - ext: 'cur', - mime: 'image/x-icon' - }; - } + function createShapeTypeChecker(shapeTypes) { + function validate(props, propName, componentName, location, propFullName) { + var propValue = props[propName]; + var propType = getPropType(propValue); + if (propType !== 'object') { + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.')); + } + for (var key in shapeTypes) { + var checker = shapeTypes[key]; + if (!checker) { + continue; + } + var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret); + if (error) { + return error; + } + } + return null; + } + return createChainableTypeChecker(validate); + } - if (check([0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1])) { - // Detected Microsoft Compound File Binary File (MS-CFB) Format. - return { - ext: 'cfb', - mime: 'application/x-cfb' - }; - } + function createStrictShapeTypeChecker(shapeTypes) { + function validate(props, propName, componentName, location, propFullName) { + var propValue = props[propName]; + var propType = getPropType(propValue); + if (propType !== 'object') { + return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.')); + } + // We need to check all keys in case some are required but missing from + // props. + var allKeys = assign({}, props[propName], shapeTypes); + for (var key in allKeys) { + var checker = shapeTypes[key]; + if (!checker) { + return new PropTypeError( + 'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' + + '\nBad object: ' + JSON.stringify(props[propName], null, ' ') + + '\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ') + ); + } + var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret); + if (error) { + return error; + } + } + return null; + } - // Increase sample size from 12 to 256. - await tokenizer.peekBuffer(buffer, {length: Math.min(256, tokenizer.fileInfo.size), mayBeLess: true}); + return createChainableTypeChecker(validate); + } - // -- 15-byte signatures -- + function isNode(propValue) { + switch (typeof propValue) { + case 'number': + case 'string': + case 'undefined': + return true; + case 'boolean': + return !propValue; + case 'object': + if (Array.isArray(propValue)) { + return propValue.every(isNode); + } + if (propValue === null || isValidElement(propValue)) { + return true; + } - if (checkString('BEGIN:')) { - if (checkString('VCARD', {offset: 6})) { - return { - ext: 'vcf', - mime: 'text/vcard' - }; - } + var iteratorFn = getIteratorFn(propValue); + if (iteratorFn) { + var iterator = iteratorFn.call(propValue); + var step; + if (iteratorFn !== propValue.entries) { + while (!(step = iterator.next()).done) { + if (!isNode(step.value)) { + return false; + } + } + } else { + // Iterator will provide entry [k,v] tuples rather than values. + while (!(step = iterator.next()).done) { + var entry = step.value; + if (entry) { + if (!isNode(entry[1])) { + return false; + } + } + } + } + } else { + return false; + } - if (checkString('VCALENDAR', {offset: 6})) { - return { - ext: 'ics', - mime: 'text/calendar' - }; - } - } + return true; + default: + return false; + } + } - // `raf` is here just to keep all the raw image detectors together. - if (checkString('FUJIFILMCCD-RAW')) { - return { - ext: 'raf', - mime: 'image/x-fujifilm-raf' - }; - } + function isSymbol(propType, propValue) { + // Native Symbol. + if (propType === 'symbol') { + return true; + } - if (checkString('Extended Module:')) { - return { - ext: 'xm', - mime: 'audio/x-xm' - }; - } + // falsy value can't be a Symbol + if (!propValue) { + return false; + } - if (checkString('Creative Voice File')) { - return { - ext: 'voc', - mime: 'audio/x-voc' - }; - } + // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol' + if (propValue['@@toStringTag'] === 'Symbol') { + return true; + } - if (check([0x04, 0x00, 0x00, 0x00]) && buffer.length >= 16) { // Rough & quick check Pickle/ASAR - const jsonSize = buffer.readUInt32LE(12); - if (jsonSize > 12 && buffer.length >= jsonSize + 16) { - try { - const header = buffer.slice(16, jsonSize + 16).toString(); - const json = JSON.parse(header); - // Check if Pickle is ASAR - if (json.files) { // Final check, assuring Pickle/ASAR format - return { - ext: 'asar', - mime: 'application/x-asar' - }; - } - } catch (_) { - } - } - } + // Fallback for non-spec compliant Symbols which are polyfilled. + if (typeof Symbol === 'function' && propValue instanceof Symbol) { + return true; + } - if (check([0x06, 0x0E, 0x2B, 0x34, 0x02, 0x05, 0x01, 0x01, 0x0D, 0x01, 0x02, 0x01, 0x01, 0x02])) { - return { - ext: 'mxf', - mime: 'application/mxf' - }; - } + return false; + } - if (checkString('SCRM', {offset: 44})) { - return { - ext: 's3m', - mime: 'audio/x-s3m' - }; - } + // Equivalent of `typeof` but with special handling for array and regexp. + function getPropType(propValue) { + var propType = typeof propValue; + if (Array.isArray(propValue)) { + return 'array'; + } + if (propValue instanceof RegExp) { + // Old webkits (at least until Android 4.0) return 'function' rather than + // 'object' for typeof a RegExp. We'll normalize this here so that /bla/ + // passes PropTypes.object. + return 'object'; + } + if (isSymbol(propType, propValue)) { + return 'symbol'; + } + return propType; + } - if (check([0x47], {offset: 4}) && (check([0x47], {offset: 192}) || check([0x47], {offset: 196}))) { - return { - ext: 'mts', - mime: 'video/mp2t' - }; - } + // This handles more types than `getPropType`. Only used for error messages. + // See `createPrimitiveTypeChecker`. + function getPreciseType(propValue) { + if (typeof propValue === 'undefined' || propValue === null) { + return '' + propValue; + } + var propType = getPropType(propValue); + if (propType === 'object') { + if (propValue instanceof Date) { + return 'date'; + } else if (propValue instanceof RegExp) { + return 'regexp'; + } + } + return propType; + } - if (check([0x42, 0x4F, 0x4F, 0x4B, 0x4D, 0x4F, 0x42, 0x49], {offset: 60})) { - return { - ext: 'mobi', - mime: 'application/x-mobipocket-ebook' - }; - } + // Returns a string that is postfixed to a warning about an invalid type. + // For example, "undefined" or "of type array" + function getPostfixForTypeWarning(value) { + var type = getPreciseType(value); + switch (type) { + case 'array': + case 'object': + return 'an ' + type; + case 'boolean': + case 'date': + case 'regexp': + return 'a ' + type; + default: + return type; + } + } - if (check([0x44, 0x49, 0x43, 0x4D], {offset: 128})) { - return { - ext: 'dcm', - mime: 'application/dicom' - }; - } + // Returns class name of the object, if any. + function getClassName(propValue) { + if (!propValue.constructor || !propValue.constructor.name) { + return ANONYMOUS; + } + return propValue.constructor.name; + } - if (check([0x4C, 0x00, 0x00, 0x00, 0x01, 0x14, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46])) { - return { - ext: 'lnk', - mime: 'application/x.ms.shortcut' // Invented by us - }; - } + ReactPropTypes.checkPropTypes = checkPropTypes; + ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache; + ReactPropTypes.PropTypes = ReactPropTypes; - if (check([0x62, 0x6F, 0x6F, 0x6B, 0x00, 0x00, 0x00, 0x00, 0x6D, 0x61, 0x72, 0x6B, 0x00, 0x00, 0x00, 0x00])) { - return { - ext: 'alias', - mime: 'application/x.apple.alias' // Invented by us - }; - } + return ReactPropTypes; +}; - if ( - check([0x4C, 0x50], {offset: 34}) && - ( - check([0x00, 0x00, 0x01], {offset: 8}) || - check([0x01, 0x00, 0x02], {offset: 8}) || - check([0x02, 0x00, 0x02], {offset: 8}) - ) - ) { - return { - ext: 'eot', - mime: 'application/vnd.ms-fontobject' - }; - } - if (check([0x06, 0x06, 0xED, 0xF5, 0xD8, 0x1D, 0x46, 0xE5, 0xBD, 0x31, 0xEF, 0xE7, 0xFE, 0x74, 0xB7, 0x1D])) { - return { - ext: 'indd', - mime: 'application/x-indesign' - }; - } +/***/ }), +/* 1352 */ +/***/ (function(module, exports, __webpack_require__) { - // Increase sample size from 256 to 512 - await tokenizer.peekBuffer(buffer, {length: Math.min(512, tokenizer.fileInfo.size), mayBeLess: true}); +"use strict"; +/* +object-assign +(c) Sindre Sorhus +@license MIT +*/ - // Requires a buffer size of 512 bytes - if (tarHeaderChecksumMatches(buffer)) { - return { - ext: 'tar', - mime: 'application/x-tar' - }; - } - if (check([0xFF, 0xFE, 0xFF, 0x0E, 0x53, 0x00, 0x6B, 0x00, 0x65, 0x00, 0x74, 0x00, 0x63, 0x00, 0x68, 0x00, 0x55, 0x00, 0x70, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00])) { - return { - ext: 'skp', - mime: 'application/vnd.sketchup.skp' - }; - } +/* eslint-disable no-unused-vars */ +var getOwnPropertySymbols = Object.getOwnPropertySymbols; +var hasOwnProperty = Object.prototype.hasOwnProperty; +var propIsEnumerable = Object.prototype.propertyIsEnumerable; - if (checkString('-----BEGIN PGP MESSAGE-----')) { - return { - ext: 'pgp', - mime: 'application/pgp-encrypted' - }; +function toObject(val) { + if (val === null || val === undefined) { + throw new TypeError('Object.assign cannot be called with null or undefined'); } - // Check MPEG 1 or 2 Layer 3 header, or 'layer 0' for ADTS (MPEG sync-word 0xFFE) - if (buffer.length >= 2 && check([0xFF, 0xE0], {offset: 0, mask: [0xFF, 0xE0]})) { - if (check([0x10], {offset: 1, mask: [0x16]})) { - // Check for (ADTS) MPEG-2 - if (check([0x08], {offset: 1, mask: [0x08]})) { - return { - ext: 'aac', - mime: 'audio/aac' - }; - } + return Object(val); +} - // Must be (ADTS) MPEG-4 - return { - ext: 'aac', - mime: 'audio/aac' - }; +function shouldUseNative() { + try { + if (!Object.assign) { + return false; } - // MPEG 1 or 2 Layer 3 header - // Check for MPEG layer 3 - if (check([0x02], {offset: 1, mask: [0x06]})) { - return { - ext: 'mp3', - mime: 'audio/mpeg' - }; - } + // Detect buggy property enumeration order in older V8 versions. - // Check for MPEG layer 2 - if (check([0x04], {offset: 1, mask: [0x06]})) { - return { - ext: 'mp2', - mime: 'audio/mpeg' - }; + // https://bugs.chromium.org/p/v8/issues/detail?id=4118 + var test1 = new String('abc'); // eslint-disable-line no-new-wrappers + test1[5] = 'de'; + if (Object.getOwnPropertyNames(test1)[0] === '5') { + return false; } - // Check for MPEG layer 1 - if (check([0x06], {offset: 1, mask: [0x06]})) { - return { - ext: 'mp1', - mime: 'audio/mpeg' - }; + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test2 = {}; + for (var i = 0; i < 10; i++) { + test2['_' + String.fromCharCode(i)] = i; } - } -} - -const stream = readableStream => new Promise((resolve, reject) => { - // Using `eval` to work around issues when bundling with Webpack - const stream = eval('require')('stream'); // eslint-disable-line no-eval - - readableStream.on('error', reject); - readableStream.once('readable', async () => { - // Set up output stream - const pass = new stream.PassThrough(); - let outputStream; - if (stream.pipeline) { - outputStream = stream.pipeline(readableStream, pass, () => { - }); - } else { - outputStream = readableStream.pipe(pass); + var order2 = Object.getOwnPropertyNames(test2).map(function (n) { + return test2[n]; + }); + if (order2.join('') !== '0123456789') { + return false; } - // Read the input stream and detect the filetype - const chunk = readableStream.read(minimumBytes) || readableStream.read() || Buffer.alloc(0); - try { - const fileType = await fromBuffer(chunk); - pass.fileType = fileType; - } catch (error) { - reject(error); + // https://bugs.chromium.org/p/v8/issues/detail?id=3056 + var test3 = {}; + 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { + test3[letter] = letter; + }); + if (Object.keys(Object.assign({}, test3)).join('') !== + 'abcdefghijklmnopqrst') { + return false; } - resolve(outputStream); - }); -}); - -const fileType = { - fromStream, - fromTokenizer, - fromBuffer, - stream -}; - -Object.defineProperty(fileType, 'extensions', { - get() { - return new Set(supported.extensions); - } -}); - -Object.defineProperty(fileType, 'mimeTypes', { - get() { - return new Set(supported.mimeTypes); + return true; + } catch (err) { + // We don't expect any of the above to throw, but better to be safe. + return false; } -}); +} -module.exports = fileType; +module.exports = shouldUseNative() ? Object.assign : function (target, source) { + var from; + var to = toObject(target); + var symbols; + for (var s = 1; s < arguments.length; s++) { + from = Object(arguments[s]); -/***/ }), -/* 1240 */ -/***/ (function(module, exports, __webpack_require__) { + for (var key in from) { + if (hasOwnProperty.call(from, key)) { + to[key] = from[key]; + } + } -"use strict"; + if (getOwnPropertySymbols) { + symbols = getOwnPropertySymbols(from); + for (var i = 0; i < symbols.length; i++) { + if (propIsEnumerable.call(from, symbols[i])) { + to[symbols[i]] = from[symbols[i]]; + } + } + } + } -Object.defineProperty(exports, "__esModule", { value: true }); -exports.AnsiStringType = exports.StringType = exports.BufferType = exports.Uint8ArrayType = exports.IgnoreType = exports.Float80_LE = exports.Float80_BE = exports.Float64_LE = exports.Float64_BE = exports.Float32_LE = exports.Float32_BE = exports.Float16_LE = exports.Float16_BE = exports.INT64_BE = exports.UINT64_BE = exports.INT64_LE = exports.UINT64_LE = exports.INT32_LE = exports.INT32_BE = exports.INT24_BE = exports.INT24_LE = exports.INT16_LE = exports.INT16_BE = exports.INT8 = exports.UINT32_BE = exports.UINT32_LE = exports.UINT24_BE = exports.UINT24_LE = exports.UINT16_BE = exports.UINT16_LE = exports.UINT8 = void 0; -const ieee754 = __webpack_require__(1241); -// Primitive types -function dv(array) { - return new DataView(array.buffer, array.byteOffset); -} -/** - * 8-bit unsigned integer - */ -exports.UINT8 = { - len: 1, - get(array, offset) { - return dv(array).getUint8(offset); - }, - put(array, offset, value) { - dv(array).setUint8(offset, value); - return offset + 1; - } -}; -/** - * 16-bit unsigned integer, Little Endian byte order - */ -exports.UINT16_LE = { - len: 2, - get(array, offset) { - return dv(array).getUint16(offset, true); - }, - put(array, offset, value) { - dv(array).setUint16(offset, value, true); - return offset + 2; - } -}; -/** - * 16-bit unsigned integer, Big Endian byte order - */ -exports.UINT16_BE = { - len: 2, - get(array, offset) { - return dv(array).getUint16(offset); - }, - put(array, offset, value) { - dv(array).setUint16(offset, value); - return offset + 2; - } -}; -/** - * 24-bit unsigned integer, Little Endian byte order - */ -exports.UINT24_LE = { - len: 3, - get(array, offset) { - const dataView = dv(array); - return dataView.getUint8(offset) + (dataView.getUint16(offset + 1, true) << 8); - }, - put(array, offset, value) { - const dataView = dv(array); - dataView.setUint8(offset, value & 0xff); - dataView.setUint16(offset + 1, value >> 8, true); - return offset + 3; - } -}; -/** - * 24-bit unsigned integer, Big Endian byte order - */ -exports.UINT24_BE = { - len: 3, - get(array, offset) { - const dataView = dv(array); - return (dataView.getUint16(offset) << 8) + dataView.getUint8(offset + 2); - }, - put(array, offset, value) { - const dataView = dv(array); - dataView.setUint16(offset, value >> 8); - dataView.setUint8(offset + 2, value & 0xff); - return offset + 3; - } -}; -/** - * 32-bit unsigned integer, Little Endian byte order - */ -exports.UINT32_LE = { - len: 4, - get(array, offset) { - return dv(array).getUint32(offset, true); - }, - put(array, offset, value) { - dv(array).setUint32(offset, value, true); - return offset + 4; - } -}; -/** - * 32-bit unsigned integer, Big Endian byte order - */ -exports.UINT32_BE = { - len: 4, - get(array, offset) { - return dv(array).getUint32(offset); - }, - put(array, offset, value) { - dv(array).setUint32(offset, value); - return offset + 4; - } -}; -/** - * 8-bit signed integer - */ -exports.INT8 = { - len: 1, - get(array, offset) { - return dv(array).getInt8(offset); - }, - put(array, offset, value) { - dv(array).setInt8(offset, value); - return offset + 2; - } -}; -/** - * 16-bit signed integer, Big Endian byte order - */ -exports.INT16_BE = { - len: 2, - get(array, offset) { - return dv(array).getInt16(offset); - }, - put(array, offset, value) { - dv(array).setInt16(offset, value); - return offset + 2; - } -}; -/** - * 16-bit signed integer, Little Endian byte order - */ -exports.INT16_LE = { - len: 2, - get(array, offset) { - return dv(array).getInt16(offset, true); - }, - put(array, offset, value) { - dv(array).setInt16(offset, value, true); - return offset + 2; - } -}; -/** - * 24-bit signed integer, Little Endian byte order - */ -exports.INT24_LE = { - len: 3, - get(array, offset) { - const unsigned = exports.UINT24_LE.get(array, offset); - return unsigned > 0x7fffff ? unsigned - 0x1000000 : unsigned; - }, - put(array, offset, value) { - const dataView = dv(array); - dataView.setUint8(offset, value & 0xff); - dataView.setUint16(offset + 1, value >> 8, true); - return offset + 3; - } -}; -/** - * 24-bit signed integer, Big Endian byte order - */ -exports.INT24_BE = { - len: 3, - get(array, offset) { - const unsigned = exports.UINT24_BE.get(array, offset); - return unsigned > 0x7fffff ? unsigned - 0x1000000 : unsigned; - }, - put(array, offset, value) { - const dataView = dv(array); - dataView.setUint16(offset, value >> 8); - dataView.setUint8(offset + 2, value & 0xff); - return offset + 3; - } -}; -/** - * 32-bit signed integer, Big Endian byte order - */ -exports.INT32_BE = { - len: 4, - get(array, offset) { - return dv(array).getInt32(offset); - }, - put(array, offset, value) { - dv(array).setInt32(offset, value); - return offset + 4; - } -}; -/** - * 32-bit signed integer, Big Endian byte order - */ -exports.INT32_LE = { - len: 4, - get(array, offset) { - return dv(array).getInt32(offset, true); - }, - put(array, offset, value) { - dv(array).setInt32(offset, value, true); - return offset + 4; - } -}; -/** - * 64-bit unsigned integer, Little Endian byte order - */ -exports.UINT64_LE = { - len: 8, - get(array, offset) { - return dv(array).getBigUint64(offset, true); - }, - put(array, offset, value) { - dv(array).setBigUint64(offset, value, true); - return offset + 8; - } -}; -/** - * 64-bit signed integer, Little Endian byte order - */ -exports.INT64_LE = { - len: 8, - get(array, offset) { - return dv(array).getBigInt64(offset, true); - }, - put(array, offset, value) { - dv(array).setBigInt64(offset, value, true); - return offset + 8; - } -}; -/** - * 64-bit unsigned integer, Big Endian byte order - */ -exports.UINT64_BE = { - len: 8, - get(array, offset) { - return dv(array).getBigUint64(offset); - }, - put(array, offset, value) { - dv(array).setBigUint64(offset, value); - return offset + 8; - } -}; -/** - * 64-bit signed integer, Big Endian byte order - */ -exports.INT64_BE = { - len: 8, - get(array, offset) { - return dv(array).getBigInt64(offset); - }, - put(array, offset, value) { - dv(array).setBigInt64(offset, value); - return offset + 8; - } -}; -/** - * IEEE 754 16-bit (half precision) float, big endian - */ -exports.Float16_BE = { - len: 2, - get(dataView, offset) { - return ieee754.read(dataView, offset, false, 10, this.len); - }, - put(dataView, offset, value) { - ieee754.write(dataView, value, offset, false, 10, this.len); - return offset + this.len; - } -}; -/** - * IEEE 754 16-bit (half precision) float, little endian - */ -exports.Float16_LE = { - len: 2, - get(array, offset) { - return ieee754.read(array, offset, true, 10, this.len); - }, - put(array, offset, value) { - ieee754.write(array, value, offset, true, 10, this.len); - return offset + this.len; - } -}; -/** - * IEEE 754 32-bit (single precision) float, big endian - */ -exports.Float32_BE = { - len: 4, - get(array, offset) { - return dv(array).getFloat32(offset); - }, - put(array, offset, value) { - dv(array).setFloat32(offset, value); - return offset + 4; - } -}; -/** - * IEEE 754 32-bit (single precision) float, little endian - */ -exports.Float32_LE = { - len: 4, - get(array, offset) { - return dv(array).getFloat32(offset, true); - }, - put(array, offset, value) { - dv(array).setFloat32(offset, value, true); - return offset + 4; - } -}; -/** - * IEEE 754 64-bit (double precision) float, big endian - */ -exports.Float64_BE = { - len: 8, - get(array, offset) { - return dv(array).getFloat64(offset); - }, - put(array, offset, value) { - dv(array).setFloat64(offset, value); - return offset + 8; - } -}; -/** - * IEEE 754 64-bit (double precision) float, little endian - */ -exports.Float64_LE = { - len: 8, - get(array, offset) { - return dv(array).getFloat64(offset, true); - }, - put(array, offset, value) { - dv(array).setFloat64(offset, value, true); - return offset + 8; - } -}; -/** - * IEEE 754 80-bit (extended precision) float, big endian - */ -exports.Float80_BE = { - len: 10, - get(array, offset) { - return ieee754.read(array, offset, false, 63, this.len); - }, - put(array, offset, value) { - ieee754.write(array, value, offset, false, 63, this.len); - return offset + this.len; - } -}; -/** - * IEEE 754 80-bit (extended precision) float, little endian - */ -exports.Float80_LE = { - len: 10, - get(array, offset) { - return ieee754.read(array, offset, true, 63, this.len); - }, - put(array, offset, value) { - ieee754.write(array, value, offset, true, 63, this.len); - return offset + this.len; - } -}; -/** - * Ignore a given number of bytes - */ -class IgnoreType { - /** - * @param len number of bytes to ignore - */ - constructor(len) { - this.len = len; - } - // ToDo: don't read, but skip data - get(array, off) { - } -} -exports.IgnoreType = IgnoreType; -class Uint8ArrayType { - constructor(len) { - this.len = len; - } - get(array, offset) { - return array.subarray(offset, offset + this.len); - } -} -exports.Uint8ArrayType = Uint8ArrayType; -class BufferType { - constructor(len) { - this.len = len; - } - get(buffer, off) { - return buffer.slice(off, off + this.len); - } -} -exports.BufferType = BufferType; + return to; +}; + + +/***/ }), +/* 1353 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; /** - * Consume a fixed number of bytes from the stream and return a string with a specified encoding. + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. */ -class StringType { - constructor(len, encoding) { - this.len = len; - this.encoding = encoding; - } - get(uint8Array, offset) { - return Buffer.from(uint8Array).toString(this.encoding, offset, offset + this.len); + + + +var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED'; + +module.exports = ReactPropTypesSecret; + + +/***/ }), +/* 1354 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; +/** + * Copyright (c) 2013-present, Facebook, Inc. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + + + +var printWarning = function() {}; + +if (true) { + var ReactPropTypesSecret = __webpack_require__(1353); + var loggedTypeFailures = {}; + var has = Function.call.bind(Object.prototype.hasOwnProperty); + + printWarning = function(text) { + var message = 'Warning: ' + text; + if (typeof console !== 'undefined') { + console.error(message); } + try { + // --- Welcome to debugging React --- + // This error was thrown as a convenience so that you can use this stack + // to find the callsite that caused this warning to fire. + throw new Error(message); + } catch (x) {} + }; } -exports.StringType = StringType; + /** - * ANSI Latin 1 String - * Using windows-1252 / ISO 8859-1 decoding + * Assert that the values match with the type specs. + * Error messages are memorized and will only be shown once. + * + * @param {object} typeSpecs Map of name to a ReactPropType + * @param {object} values Runtime values that need to be type-checked + * @param {string} location e.g. "prop", "context", "child context" + * @param {string} componentName Name of the component for error messages. + * @param {?Function} getStack Returns the component stack. + * @private */ -class AnsiStringType { - constructor(len) { - this.len = len; - } - static decode(buffer, offset, until) { - let str = ''; - for (let i = offset; i < until; ++i) { - str += AnsiStringType.codePointToString(AnsiStringType.singleByteDecoder(buffer[i])); - } - return str; - } - static inRange(a, min, max) { - return min <= a && a <= max; - } - static codePointToString(cp) { - if (cp <= 0xFFFF) { - return String.fromCharCode(cp); - } - else { - cp -= 0x10000; - return String.fromCharCode((cp >> 10) + 0xD800, (cp & 0x3FF) + 0xDC00); +function checkPropTypes(typeSpecs, values, location, componentName, getStack) { + if (true) { + for (var typeSpecName in typeSpecs) { + if (has(typeSpecs, typeSpecName)) { + var error; + // Prop type validation may throw. In case they do, we don't want to + // fail the render phase where it didn't fail before. So we log it. + // After these have been cleaned up, we'll let them throw. + try { + // This is intentionally an invariant that gets caught. It's the same + // behavior as without this statement except with a better message. + if (typeof typeSpecs[typeSpecName] !== 'function') { + var err = Error( + (componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + ); + err.name = 'Invariant Violation'; + throw err; + } + error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret); + } catch (ex) { + error = ex; } - } - static singleByteDecoder(bite) { - if (AnsiStringType.inRange(bite, 0x00, 0x7F)) { - return bite; + if (error && !(error instanceof Error)) { + printWarning( + (componentName || 'React class') + ': type specification of ' + + location + ' `' + typeSpecName + '` is invalid; the type checker ' + + 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' + + 'You may have forgotten to pass an argument to the type checker ' + + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + + 'shape all require an argument).' + ); } - const codePoint = AnsiStringType.windows1252[bite - 0x80]; - if (codePoint === null) { - throw Error('invaliding encoding'); + if (error instanceof Error && !(error.message in loggedTypeFailures)) { + // Only monitor this failure once because there tends to be a lot of the + // same error. + loggedTypeFailures[error.message] = true; + + var stack = getStack ? getStack() : ''; + + printWarning( + 'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '') + ); } - return codePoint; - } - get(buffer, offset = 0) { - return AnsiStringType.decode(buffer, offset, offset + this.len); + } } + } } -exports.AnsiStringType = AnsiStringType; -AnsiStringType.windows1252 = [8364, 129, 8218, 402, 8222, 8230, 8224, 8225, 710, 8240, 352, - 8249, 338, 141, 381, 143, 144, 8216, 8217, 8220, 8221, 8226, 8211, 8212, 732, - 8482, 353, 8250, 339, 157, 382, 376, 160, 161, 162, 163, 164, 165, 166, 167, 168, - 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, - 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, - 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, - 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, - 248, 249, 250, 251, 252, 253, 254, 255]; + +/** + * Resets warning cache when testing. + * + * @private + */ +checkPropTypes.resetWarningCache = function() { + if (true) { + loggedTypeFailures = {}; + } +} + +module.exports = checkPropTypes; /***/ }), -/* 1241 */ -/***/ (function(module, exports) { +/* 1355 */ +/***/ (function(module, exports, __webpack_require__) { -/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */ -exports.read = function (buffer, offset, isLE, mLen, nBytes) { - var e, m - var eLen = (nBytes * 8) - mLen - 1 - var eMax = (1 << eLen) - 1 - var eBias = eMax >> 1 - var nBits = -7 - var i = isLE ? (nBytes - 1) : 0 - var d = isLE ? -1 : 1 - var s = buffer[offset + i] +const log = __webpack_require__(2).namespace('doctypes') - i += d +module.exports = log - e = s & ((1 << (-nBits)) - 1) - s >>= (-nBits) - nBits += eLen - for (; nBits > 0; e = (e * 256) + buffer[offset + i], i += d, nBits -= 8) {} - m = e & ((1 << (-nBits)) - 1) - e >>= (-nBits) - nBits += mLen - for (; nBits > 0; m = (m * 256) + buffer[offset + i], i += d, nBits -= 8) {} +/***/ }), +/* 1356 */ +/***/ (function(module, exports, __webpack_require__) { - if (e === 0) { - e = 1 - eBias - } else if (e === eMax) { - return m ? NaN : ((s ? -1 : 1) * Infinity) - } else { - m = m + Math.pow(2, mLen) - e = e - eBias +const Document = __webpack_require__(1147) + +const APP_DOCTYPE = 'io.cozy.apps' +const STORE_SLUG = 'store' + +class Application extends Document { + /** + * Return Store URL where an app/konnector can be installed / updated + * @param {Array} [appData=[]] Apps data, as returned by endpoint /apps/ or + * /konnectors/ + * @param {Object} [app={}] AppObject + * @return {String} URL as string + */ + static getStoreInstallationURL(appData = [], app = {}) { + if (!app.slug) { + throw new Error('Expected app / konnector with the defined slug') + } + + const storeApp = this.isInstalled(appData, { slug: STORE_SLUG }) + if (!storeApp) return null + + const storeUrl = storeApp.links && storeApp.links.related + + if (!storeUrl) return null + + return `${storeUrl}#/discover/${app.slug}/install` + } + + /** + * + * @param {Array} apps Array of apps returned by /apps /konnectors + * @param {Object} wantedApp io.cozy.app with at least a slug + * @return {Object} The io.cozy.app is installed or undefined if not + */ + static isInstalled(apps = [], wantedApp = {}) { + return apps.find( + app => app.attributes && app.attributes.slug === wantedApp.slug + ) + } + /** + * + * @param {Object} app io.cozy.app object + * @return {String} url to the app + */ + static getUrl(app) { + return app.links && app.links.related } - return (s ? -1 : 1) * m * Math.pow(2, e - mLen) } -exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { - var e, m, c - var eLen = (nBytes * 8) - mLen - 1 - var eMax = (1 << eLen) - 1 - var eBias = eMax >> 1 - var rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0) - var i = isLE ? 0 : (nBytes - 1) - var d = isLE ? 1 : -1 - var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0 +Application.schema = { + doctype: APP_DOCTYPE, + attributes: {} +} - value = Math.abs(value) +Application.doctype = APP_DOCTYPE - if (isNaN(value) || value === Infinity) { - m = isNaN(value) ? 1 : 0 - e = eMax - } else { - e = Math.floor(Math.log(value) / Math.LN2) - if (value * (c = Math.pow(2, -e)) < 1) { - e-- - c *= 2 - } - if (e + eBias >= 1) { - value += rt / c - } else { - value += rt * Math.pow(2, 1 - eBias) - } - if (value * c >= 2) { - e++ - c /= 2 +module.exports = Application + + +/***/ }), +/* 1357 */ +/***/ (function(module, exports, __webpack_require__) { + +const Document = __webpack_require__(1147) +const BankAccount = __webpack_require__(1358) + +class BalanceHistory extends Document { + static async getByYearAndAccount(year, accountId) { + const index = await Document.getIndex(this.doctype, this.idAttributes) + const options = { + selector: { year, 'relationships.account.data._id': accountId }, + limit: 1 } + const [balance] = await Document.query(index, options) - if (e + eBias >= eMax) { - m = 0 - e = eMax - } else if (e + eBias >= 1) { - m = ((value * c) - 1) * Math.pow(2, mLen) - e = e + eBias - } else { - m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen) - e = 0 + if (balance) { + return balance } + + return this.getEmptyDocument(year, accountId) } - for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {} + static getEmptyDocument(year, accountId) { + return { + year, + balances: {}, + metadata: { + version: this.version + }, + relationships: { + account: { + data: { + _id: accountId, + _type: BankAccount.doctype + } + } + } + } + } +} - e = (e << mLen) | m - eLen += mLen - for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {} +BalanceHistory.doctype = 'io.cozy.bank.balancehistories' +BalanceHistory.idAttributes = ['year', 'relationships.account.data._id'] +BalanceHistory.version = 1 +BalanceHistory.checkedAttributes = ['balances'] - buffer[offset + i - d] |= s * 128 -} +module.exports = BalanceHistory /***/ }), -/* 1242 */ +/* 1358 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +const groupBy = __webpack_require__(1333) +const get = __webpack_require__(1318) +const merge = __webpack_require__(1359) +const Document = __webpack_require__(1147) +const matching = __webpack_require__(1367) +const { getSlugFromInstitutionLabel } = __webpack_require__(1369) +const log = __webpack_require__(2).namespace('BankAccount') +class BankAccount extends Document { + /** + * Adds _id of existing accounts to fetched accounts + */ + static reconciliate(fetchedAccounts, localAccounts) { + const matchings = matching.matchAccounts(fetchedAccounts, localAccounts) + return matchings.map(matching => { + log( + 'info', + matching.match + ? `${matching.account.label} matched with ${matching.match.label} via ${matching.method}` + : `${matching.account.label} did not match with an existing account` + ) + return { + ...matching.account, + relationships: merge( + {}, + matching.match ? matching.match.relationships : null, + matching.account.relationships + ), + _id: matching.match ? matching.match._id : undefined + } + }) + } -exports.stringToBytes = string => [...string].map(character => character.charCodeAt(0)); + static findDuplicateAccountsWithNoOperations(accounts, operations) { + const opsByAccountId = groupBy(operations, op => op.account) -/** -Checks whether the TAR checksum is valid. + const duplicateAccountGroups = Object.entries( + groupBy(accounts, x => x.institutionLabel + ' > ' + x.label) + ) + .map(([, duplicateGroup]) => duplicateGroup) + .filter(duplicateGroup => duplicateGroup.length > 1) -@param {Buffer} buffer - The TAR header `[offset ... offset + 512]`. -@param {number} offset - TAR header offset. -@returns {boolean} `true` if the TAR checksum is valid, otherwise `false`. -*/ -exports.tarHeaderChecksumMatches = (buffer, offset = 0) => { - const readSum = parseInt(buffer.toString('utf8', 148, 154).replace(/\0.*$/, '').trim(), 8); // Read sum in header - if (isNaN(readSum)) { - return false; - } + const res = [] + for (const duplicateAccounts of duplicateAccountGroups) { + for (const account of duplicateAccounts) { + const accountOperations = opsByAccountId[account._id] || [] + if (accountOperations.length === 0) { + res.push(account) + } + } + } + return res + } - let sum = 8 * 0x20; // Initialize signed bit sum + static hasIncoherentCreatedByApp(account) { + const predictedSlug = getSlugFromInstitutionLabel(account.institutionLabel) + const createdByApp = + account.cozyMetadata && account.cozyMetadata.createdByApp + return Boolean( + predictedSlug && createdByApp && predictedSlug !== createdByApp + ) + } - for (let i = offset; i < offset + 148; i++) { - sum += buffer[i]; - } + static getUpdatedAt(account) { + const vendorUpdatedAt = get(account, 'metadata.updatedAt') - for (let i = offset + 156; i < offset + 512; i++) { - sum += buffer[i]; - } + if (vendorUpdatedAt) { + return vendorUpdatedAt + } - return readSum === sum; -}; + const cozyUpdatedAt = get(account, 'cozyMetadata.updatedAt') + + if (cozyUpdatedAt) { + return cozyUpdatedAt + } + + return null + } +} + +BankAccount.normalizeAccountNumber = matching.normalizeAccountNumber +BankAccount.doctype = 'io.cozy.bank.accounts' +BankAccount.idAttributes = ['_id'] +BankAccount.version = 1 +BankAccount.checkedAttributes = null +BankAccount.vendorIdAttr = 'vendorId' + +module.exports = BankAccount + + +/***/ }), +/* 1359 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseMerge = __webpack_require__(1360), + createAssigner = __webpack_require__(1366); /** -ID3 UINT32 sync-safe tokenizer token. -28 bits (representing up to 256MB) integer, the msb is 0 to avoid "false syncsignals". -*/ -exports.uint32SyncSafeToken = { - get: (buffer, offset) => { - return (buffer[offset + 3] & 0x7F) | ((buffer[offset + 2]) << 7) | ((buffer[offset + 1]) << 14) | ((buffer[offset]) << 21); - }, - len: 4 -}; + * This method is like `_.assign` except that it recursively merges own and + * inherited enumerable string keyed properties of source objects into the + * destination object. Source properties that resolve to `undefined` are + * skipped if a destination value exists. Array and plain object properties + * are merged recursively. Other objects and value types are overridden by + * assignment. Source objects are applied from left to right. Subsequent + * sources overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @since 0.5.0 + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * var object = { + * 'a': [{ 'b': 2 }, { 'd': 4 }] + * }; + * + * var other = { + * 'a': [{ 'c': 3 }, { 'e': 5 }] + * }; + * + * _.merge(object, other); + * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] } + */ +var merge = createAssigner(function(object, source, srcIndex) { + baseMerge(object, source, srcIndex); +}); + +module.exports = merge; /***/ }), -/* 1243 */ +/* 1360 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var Stack = __webpack_require__(1151), + assignMergeValue = __webpack_require__(1361), + baseFor = __webpack_require__(1330), + baseMergeDeep = __webpack_require__(1362), + isObject = __webpack_require__(1175), + keysIn = __webpack_require__(1222), + safeGet = __webpack_require__(1364); +/** + * The base implementation of `_.merge` without support for multiple sources. + * + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {number} srcIndex The index of `source`. + * @param {Function} [customizer] The function to customize merged values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ +function baseMerge(object, source, srcIndex, customizer, stack) { + if (object === source) { + return; + } + baseFor(source, function(srcValue, key) { + stack || (stack = new Stack); + if (isObject(srcValue)) { + baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack); + } + else { + var newValue = customizer + ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack) + : undefined; -module.exports = { - extensions: [ - 'jpg', - 'png', - 'apng', - 'gif', - 'webp', - 'flif', - 'xcf', - 'cr2', - 'cr3', - 'orf', - 'arw', - 'dng', - 'nef', - 'rw2', - 'raf', - 'tif', - 'bmp', - 'icns', - 'jxr', - 'psd', - 'indd', - 'zip', - 'tar', - 'rar', - 'gz', - 'bz2', - '7z', - 'dmg', - 'mp4', - 'mid', - 'mkv', - 'webm', - 'mov', - 'avi', - 'mpg', - 'mp2', - 'mp3', - 'm4a', - 'oga', - 'ogg', - 'ogv', - 'opus', - 'flac', - 'wav', - 'spx', - 'amr', - 'pdf', - 'epub', - 'exe', - 'swf', - 'rtf', - 'wasm', - 'woff', - 'woff2', - 'eot', - 'ttf', - 'otf', - 'ico', - 'flv', - 'ps', - 'xz', - 'sqlite', - 'nes', - 'crx', - 'xpi', - 'cab', - 'deb', - 'ar', - 'rpm', - 'Z', - 'lz', - 'cfb', - 'mxf', - 'mts', - 'blend', - 'bpg', - 'docx', - 'pptx', - 'xlsx', - '3gp', - '3g2', - 'jp2', - 'jpm', - 'jpx', - 'mj2', - 'aif', - 'qcp', - 'odt', - 'ods', - 'odp', - 'xml', - 'mobi', - 'heic', - 'cur', - 'ktx', - 'ape', - 'wv', - 'dcm', - 'ics', - 'glb', - 'pcap', - 'dsf', - 'lnk', - 'alias', - 'voc', - 'ac3', - 'm4v', - 'm4p', - 'm4b', - 'f4v', - 'f4p', - 'f4b', - 'f4a', - 'mie', - 'asf', - 'ogm', - 'ogx', - 'mpc', - 'arrow', - 'shp', - 'aac', - 'mp1', - 'it', - 's3m', - 'xm', - 'ai', - 'skp', - 'avif', - 'eps', - 'lzh', - 'pgp', - 'asar', - 'stl', - 'chm', - '3mf', - 'zst', - 'jxl', - 'vcf' - ], - mimeTypes: [ - 'image/jpeg', - 'image/png', - 'image/gif', - 'image/webp', - 'image/flif', - 'image/x-xcf', - 'image/x-canon-cr2', - 'image/x-canon-cr3', - 'image/tiff', - 'image/bmp', - 'image/vnd.ms-photo', - 'image/vnd.adobe.photoshop', - 'application/x-indesign', - 'application/epub+zip', - 'application/x-xpinstall', - 'application/vnd.oasis.opendocument.text', - 'application/vnd.oasis.opendocument.spreadsheet', - 'application/vnd.oasis.opendocument.presentation', - 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', - 'application/vnd.openxmlformats-officedocument.presentationml.presentation', - 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', - 'application/zip', - 'application/x-tar', - 'application/x-rar-compressed', - 'application/gzip', - 'application/x-bzip2', - 'application/x-7z-compressed', - 'application/x-apple-diskimage', - 'application/x-apache-arrow', - 'video/mp4', - 'audio/midi', - 'video/x-matroska', - 'video/webm', - 'video/quicktime', - 'video/vnd.avi', - 'audio/vnd.wave', - 'audio/qcelp', - 'audio/x-ms-asf', - 'video/x-ms-asf', - 'application/vnd.ms-asf', - 'video/mpeg', - 'video/3gpp', - 'audio/mpeg', - 'audio/mp4', // RFC 4337 - 'audio/opus', - 'video/ogg', - 'audio/ogg', - 'application/ogg', - 'audio/x-flac', - 'audio/ape', - 'audio/wavpack', - 'audio/amr', - 'application/pdf', - 'application/x-msdownload', - 'application/x-shockwave-flash', - 'application/rtf', - 'application/wasm', - 'font/woff', - 'font/woff2', - 'application/vnd.ms-fontobject', - 'font/ttf', - 'font/otf', - 'image/x-icon', - 'video/x-flv', - 'application/postscript', - 'application/eps', - 'application/x-xz', - 'application/x-sqlite3', - 'application/x-nintendo-nes-rom', - 'application/x-google-chrome-extension', - 'application/vnd.ms-cab-compressed', - 'application/x-deb', - 'application/x-unix-archive', - 'application/x-rpm', - 'application/x-compress', - 'application/x-lzip', - 'application/x-cfb', - 'application/x-mie', - 'application/mxf', - 'video/mp2t', - 'application/x-blender', - 'image/bpg', - 'image/jp2', - 'image/jpx', - 'image/jpm', - 'image/mj2', - 'audio/aiff', - 'application/xml', - 'application/x-mobipocket-ebook', - 'image/heif', - 'image/heif-sequence', - 'image/heic', - 'image/heic-sequence', - 'image/icns', - 'image/ktx', - 'application/dicom', - 'audio/x-musepack', - 'text/calendar', - 'text/vcard', - 'model/gltf-binary', - 'application/vnd.tcpdump.pcap', - 'audio/x-dsf', // Non-standard - 'application/x.ms.shortcut', // Invented by us - 'application/x.apple.alias', // Invented by us - 'audio/x-voc', - 'audio/vnd.dolby.dd-raw', - 'audio/x-m4a', - 'image/apng', - 'image/x-olympus-orf', - 'image/x-sony-arw', - 'image/x-adobe-dng', - 'image/x-nikon-nef', - 'image/x-panasonic-rw2', - 'image/x-fujifilm-raf', - 'video/x-m4v', - 'video/3gpp2', - 'application/x-esri-shape', - 'audio/aac', - 'audio/x-it', - 'audio/x-s3m', - 'audio/x-xm', - 'video/MP1S', - 'video/MP2P', - 'application/vnd.sketchup.skp', - 'image/avif', - 'application/x-lzh-compressed', - 'application/pgp-encrypted', - 'application/x-asar', - 'model/stl', - 'application/vnd.ms-htmlhelp', - 'model/3mf', - 'image/jxl', - 'application/zstd' - ] -}; + if (newValue === undefined) { + newValue = srcValue; + } + assignMergeValue(object, key, newValue); + } + }, keysIn); +} + +module.exports = baseMerge; /***/ }), -/* 1244 */ +/* 1361 */ /***/ (function(module, exports, __webpack_require__) { +var baseAssignValue = __webpack_require__(1197), + eq = __webpack_require__(1156); + /** - * Saves the data into the cozy blindly without check. + * This function is like `assignValue` except that it doesn't assign + * `undefined` values. * - * @module addData + * @private + * @param {Object} object The object to modify. + * @param {string} key The key of the property to assign. + * @param {*} value The value to assign. */ -const bluebird = __webpack_require__(25); +function assignMergeValue(object, key, value) { + if ((value !== undefined && !eq(object[key], value)) || + (value === undefined && !(key in object))) { + baseAssignValue(object, key, value); + } +} -const omit = __webpack_require__(631); +module.exports = assignMergeValue; -const log = __webpack_require__(2).namespace('addData'); -const { - getCozyMetadata -} = __webpack_require__(833); +/***/ }), +/* 1362 */ +/***/ (function(module, exports, __webpack_require__) { + +var assignMergeValue = __webpack_require__(1361), + cloneBuffer = __webpack_require__(1225), + cloneTypedArray = __webpack_require__(1250), + copyArray = __webpack_require__(1226), + initCloneObject = __webpack_require__(1251), + isArguments = __webpack_require__(1204), + isArray = __webpack_require__(1207), + isArrayLikeObject = __webpack_require__(1363), + isBuffer = __webpack_require__(1208), + isFunction = __webpack_require__(1168), + isObject = __webpack_require__(1175), + isPlainObject = __webpack_require__(1272), + isTypedArray = __webpack_require__(1211), + safeGet = __webpack_require__(1364), + toPlainObject = __webpack_require__(1365); + /** - * Saves the data into the cozy blindly without check. + * A specialized version of `baseMerge` for arrays and objects which performs + * deep merges and tracks traversed objects enabling objects with circular + * references to be merged. * - * You need at least the `POST` permission for the given doctype in your manifest, to be able to - * use this function. + * @private + * @param {Object} object The destination object. + * @param {Object} source The source object. + * @param {string} key The key of the value to merge. + * @param {number} srcIndex The index of `source`. + * @param {Function} mergeFunc The function to merge values. + * @param {Function} [customizer] The function to customize assigned values. + * @param {Object} [stack] Tracks traversed source values and their merged + * counterparts. + */ +function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) { + var objValue = safeGet(object, key), + srcValue = safeGet(source, key), + stacked = stack.get(srcValue); + + if (stacked) { + assignMergeValue(object, key, stacked); + return; + } + var newValue = customizer + ? customizer(objValue, srcValue, (key + ''), object, source, stack) + : undefined; + + var isCommon = newValue === undefined; + + if (isCommon) { + var isArr = isArray(srcValue), + isBuff = !isArr && isBuffer(srcValue), + isTyped = !isArr && !isBuff && isTypedArray(srcValue); + + newValue = srcValue; + if (isArr || isBuff || isTyped) { + if (isArray(objValue)) { + newValue = objValue; + } + else if (isArrayLikeObject(objValue)) { + newValue = copyArray(objValue); + } + else if (isBuff) { + isCommon = false; + newValue = cloneBuffer(srcValue, true); + } + else if (isTyped) { + isCommon = false; + newValue = cloneTypedArray(srcValue, true); + } + else { + newValue = []; + } + } + else if (isPlainObject(srcValue) || isArguments(srcValue)) { + newValue = objValue; + if (isArguments(objValue)) { + newValue = toPlainObject(objValue); + } + else if (!isObject(objValue) || isFunction(objValue)) { + newValue = initCloneObject(srcValue); + } + } + else { + isCommon = false; + } + } + if (isCommon) { + // Recursively merge objects and arrays (susceptible to call stack limits). + stack.set(srcValue, newValue); + mergeFunc(newValue, srcValue, srcIndex, customizer, stack); + stack['delete'](srcValue); + } + assignMergeValue(object, key, newValue); +} + +module.exports = baseMergeDeep; + + +/***/ }), +/* 1363 */ +/***/ (function(module, exports, __webpack_require__) { + +var isArrayLike = __webpack_require__(1220), + isObjectLike = __webpack_require__(1206); + +/** + * This method is like `_.isArrayLike` except that it also checks if `value` + * is an object. * - * Parameters: + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array-like object, + * else `false`. + * @example * - * `documents`: an array of objects corresponding to the data you want to save in the cozy - * `doctype` (string): the doctype where you want to save data (ex: 'io.cozy.bills') - * `options` (object): option object - * + `sourceAccount` (String): id of the source account - * + `sourceAccountIdentifier` (String): identifier unique to the account targetted by the connector. It is the login most of the time + * _.isArrayLikeObject([1, 2, 3]); + * // => true * - * ```javascript - * const documents = [ - * { - * name: 'toto', - * height: 1.8 - * }, - * { - * name: 'titi', - * height: 1.7 - * } - * ] + * _.isArrayLikeObject(document.body.children); + * // => true * - * return addData(documents, 'io.cozy.height') - * ``` + * _.isArrayLikeObject('abc'); + * // => false * - * @alias module:addData + * _.isArrayLikeObject(_.noop); + * // => false */ +function isArrayLikeObject(value) { + return isObjectLike(value) && isArrayLike(value); +} +module.exports = isArrayLikeObject; -const addData = (entries, doctype, options = {}) => { - const cozy = __webpack_require__(485); - return bluebird.mapSeries(entries, async entry => { - log('debug', entry, 'Adding this entry'); - const metaEntry = { - cozyMetadata: getCozyMetadata({ ...entry.cozyMetadata, - sourceAccount: options.sourceAccount, - sourceAccountIdentifier: options.sourceAccountIdentifier - }), - ...entry - }; - const dbEntry = await (metaEntry._id ? cozy.data.update(doctype, metaEntry, omit(metaEntry, '_rev')) : cozy.data.create(doctype, metaEntry)); // Also update the original entry _id to allow saveBills' - // linkBankOperation entries to have an id +/***/ }), +/* 1364 */ +/***/ (function(module, exports) { - metaEntry._id = dbEntry._id; - return dbEntry; - }); -}; +/** + * Gets the value at `key`, unless `key` is "__proto__" or "constructor". + * + * @private + * @param {Object} object The object to query. + * @param {string} key The key of the property to get. + * @returns {*} Returns the property value. + */ +function safeGet(object, key) { + if (key === 'constructor' && typeof object[key] === 'function') { + return; + } + + if (key == '__proto__') { + return; + } + + return object[key]; +} + +module.exports = safeGet; -module.exports = addData; /***/ }), -/* 1245 */ +/* 1365 */ /***/ (function(module, exports, __webpack_require__) { +var copyObject = __webpack_require__(1200), + keysIn = __webpack_require__(1222); + /** - * Finds links between bills and bank operations. + * Converts `value` to a plain object flattening inherited enumerable string + * keyed properties of `value` to own properties of the plain object. * - * @module linkBankOperations + * @static + * @memberOf _ + * @since 3.0.0 + * @category Lang + * @param {*} value The value to convert. + * @returns {Object} Returns the converted plain object. + * @example + * + * function Foo() { + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.assign({ 'a': 1 }, new Foo); + * // => { 'a': 1, 'b': 2 } + * + * _.assign({ 'a': 1 }, _.toPlainObject(new Foo)); + * // => { 'a': 1, 'b': 2, 'c': 3 } */ -const bluebird = __webpack_require__(25); - -const log = __webpack_require__(2).namespace('linkBankOperations'); - -const { - findDebitOperation, - findCreditOperation -} = __webpack_require__(1246); +function toPlainObject(value) { + return copyObject(value, keysIn(value)); +} -const fs = __webpack_require__(167); +module.exports = toPlainObject; -const defaults = __webpack_require__(1255); -const groupBy = __webpack_require__(729); +/***/ }), +/* 1366 */ +/***/ (function(module, exports, __webpack_require__) { -const flatten = __webpack_require__(558); +var baseRest = __webpack_require__(1342), + isIterateeCall = __webpack_require__(1343); -const sumBy = __webpack_require__(1212); +/** + * Creates a function like `_.assign`. + * + * @private + * @param {Function} assigner The function to assign values. + * @returns {Function} Returns the new assigner function. + */ +function createAssigner(assigner) { + return baseRest(function(object, sources) { + var index = -1, + length = sources.length, + customizer = length > 1 ? sources[length - 1] : undefined, + guard = length > 2 ? sources[2] : undefined; -const geco = __webpack_require__(1256); + customizer = (assigner.length > 3 && typeof customizer == 'function') + ? (length--, customizer) + : undefined; -const { - format -} = __webpack_require__(889); + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + customizer = length < 3 ? undefined : customizer; + length = 1; + } + object = Object(object); + while (++index < length) { + var source = sources[index]; + if (source) { + assigner(object, source, index, customizer); + } + } + return object; + }); +} -const cozyClient = __webpack_require__(485); +module.exports = createAssigner; -const DOCTYPE_OPERATIONS = 'io.cozy.bank.operations'; -const DEFAULT_AMOUNT_DELTA = 0.001; -const DEFAULT_PAST_WINDOW = 15; -const DEFAULT_FUTURE_WINDOW = 29; -const fmtDate = function (x) { - return new Date(x).toISOString().substr(0, 10); -}; +/***/ }), +/* 1367 */ +/***/ (function(module, exports, __webpack_require__) { -const getBillDate = bill => bill.originalDate || bill.date; +const sortBy = __webpack_require__(1337) +const { eitherIncludes } = __webpack_require__(1368) +const { getSlugFromInstitutionLabel } = __webpack_require__(1369) -class Linker { - constructor(cozyClient) { - this.cozyClient = cozyClient; - this.toUpdate = []; - this.groupVendors = ['Numéricable', 'Ameli', 'MGEN', 'Humanis']; +const findExactMatch = (attr, account, existingAccounts) => { + const sameAttr = existingAccounts.filter( + existingAccount => existingAccount[attr] === account[attr] + ) + if (sameAttr.length === 1) { + return { match: sameAttr[0], method: attr + '-exact' } + } else if (sameAttr.length > 1) { + return { matches: sameAttr, method: attr + '-exact' } + } else { + return null } +} - async removeBillsFromOperations(bills, operations) { - log('debug', `Removing ${bills.length} bills from bank operations`); +const untrimmedAccountNumber = /^(?:[A-Za-z]+)?-?([0-9]+)-?(?:[A-Za-z]+)?$/ +const redactedCreditCard = /xxxx xxxx xxxx (\d{4})/ - for (let op of operations) { - let needUpdate = false; - let billsAttribute = op.bills || []; +const normalizeAccountNumber = (numberArg, ibanArg) => { + const iban = ibanArg && ibanArg.replace(/\s/g, '') + const number = + numberArg && !numberArg.match(redactedCreditCard) + ? numberArg.replace(/\s/g, '') + : numberArg + let match + if (iban && iban.length == 27) { + return iban.substr(14, 11) + } - for (let bill of bills) { - const billLongId = `io.cozy.bills:${bill._id}`; // if bill id found in op bills, do something + if (!number) { + return number + } - if (billsAttribute.indexOf(billLongId) >= 0) { - needUpdate = true; - billsAttribute = billsAttribute.filter(billId => billId !== billLongId && billId !== `io.cozy.bills:${bill.original}`); + if (number.length == 23) { + // Must be an IBAN without the COUNTRY code + // See support demand #9102 with BI + // We extract the account number from the IBAN + // COUNTRY (4) BANK (5) COUNTER (5) NUMBER (11) KEY (2) + // FRXX 16275 10501 00300060030 00 + return number.substr(10, 11) + } else if (number.length == 16) { + // Linxo sends Bank account number that contains + // the counter number + return number.substr(5, 11) + } else if ( + number.length > 11 && + (match = number.match(untrimmedAccountNumber)) + ) { + // Some account numbers from BI are in the form + // CC-00300060030 (CC for Compte Courant) or + // LEO-00300060030 + return match[1] + } else { + return number + } +} - if (bill.original) { - billsAttribute.push(`io.cozy.bills:${bill.original}`); - } - } - } +/** + * If either of the account numbers has length 11 and one is contained + * in the other, it's a match + */ +const approxNumberMatch = (account, existingAccount) => { + return ( + existingAccount.number && + account.number && + (existingAccount.number.length === 11 || account.number.length === 11) && + eitherIncludes(existingAccount.number, account.number) && + Math.min(existingAccount.number.length, account.number.length) >= 4 + ) +} - if (needUpdate) { - log('info', `Bank operation ${op._id}: Replacing ${JSON.stringify(op.bills)} by ${JSON.stringify(billsAttribute)}`); - await this.updateAttributes(DOCTYPE_OPERATIONS, op, { - bills: billsAttribute - }); - } +const creditCardMatch = (account, existingAccount) => { + if (account.type !== 'CreditCard' && existingAccount.type !== 'CreditCard') { + return false + } + let ccAccount, lastDigits + for (let acc of [account, existingAccount]) { + const match = acc && acc.number && acc.number.match(redactedCreditCard) + if (match) { + ccAccount = acc + lastDigits = match[1] } } + const other = ccAccount === account ? existingAccount : account + if (other && other.number && other.number.slice(-4) === lastDigits) { + return true + } + return false +} - addBillToOperation(bill, operation) { - if (!bill._id) { - log('warn', 'bill has no id, impossible to add it to an operation'); - return Promise.resolve(); - } +const slugMatch = (account, existingAccount) => { + const possibleSlug = getSlugFromInstitutionLabel(account.institutionLabel) + const possibleSlugExisting = getSlugFromInstitutionLabel( + existingAccount.institutionLabel + ) + return ( + !possibleSlug || + !possibleSlugExisting || + possibleSlug === possibleSlugExisting + ) +} - const billId = `io.cozy.bills:${bill._id}`; +const currencyMatch = (account, existingAccount) => { + if (!account.currency) { + return false + } + return ( + (existingAccount.rawNumber && + existingAccount.rawNumber.includes(account.currency)) || + (existingAccount.label && + existingAccount.label.includes(account.currency)) || + (existingAccount.originalBankLabel && + existingAccount.originalBankLabel.includes(account.currency)) + ) +} - if (operation.bills && operation.bills.indexOf(billId) > -1) { - return Promise.resolve(); - } +const sameTypeMatch = (account, existingAccount) => { + return account.type === existingAccount.type +} - const billIds = operation.bills || []; - billIds.push(billId); - const attributes = { - bills: billIds - }; - return this.updateAttributes(DOCTYPE_OPERATIONS, operation, attributes); +const rules = [ + { rule: slugMatch, bonus: 0, malus: -1000 }, + { rule: approxNumberMatch, bonus: 50, malus: -50, name: 'approx-number' }, + { rule: sameTypeMatch, bonus: 50, malus: 0, name: 'same-type' }, + { rule: creditCardMatch, bonus: 150, malus: 0, name: 'credit-card-number' }, + { rule: currencyMatch, bonus: 50, malus: 0, name: 'currency' } +] + +const score = (account, existingAccount) => { + const methods = [] + const res = { + account: existingAccount, + methods } - addReimbursementToOperation(bill, debitOperation, matchingOperation) { - if (!bill._id) { - log('warn', 'bill has no id, impossible to add it as a reimbursement'); - return Promise.resolve(); + let points = 0 + for (let { rule, bonus, malus, name } of rules) { + const ok = rule(account, existingAccount) + if (ok && bonus) { + points += bonus } - - const billId = `io.cozy.bills:${bill._id}`; - - if (debitOperation.reimbursements && debitOperation.reimbursements.map(b => b.billId).indexOf(billId) > -1) { - return Promise.resolve(); + if (!ok && malus) { + points += malus + } + if (name && ok) { + methods.push(name) } - - const reimbursements = debitOperation.reimbursements || []; - reimbursements.push({ - billId, - amount: bill.amount, - operationId: matchingOperation && matchingOperation._id - }); - return this.updateAttributes(DOCTYPE_OPERATIONS, debitOperation, { - reimbursements: reimbursements - }); } - /* Buffer update operations */ + res.points = points + return res +} - updateAttributes(doctype, doc, attrs) { - Object.assign(doc, attrs); - this.toUpdate.push(doc); - return Promise.resolve(); +const normalizeAccount = account => { + const normalizedAccountNumber = normalizeAccountNumber( + account.number, + account.iban + ) + return { + ...account, + rawNumber: account.number, + number: normalizedAccountNumber } - /* Commit updates */ - +} - commitChanges() { - log('debug', `linkBankOperations: commiting ${this.toUpdate.length} changes`); - return cozyClient.fetchJSON('POST', `/data/${DOCTYPE_OPERATIONS}/_bulk_docs`, { - docs: this.toUpdate - }); - } +const exactMatchAttributes = ['iban', 'number'] - getOptions(opts = {}) { - const options = { ...opts - }; +const eqNotUndefined = (attr1, attr2) => { + return attr1 && attr1 === attr2 +} - if (typeof options.identifiers === 'string') { - options.identifiers = [options.identifiers.toLowerCase()]; - } else if (Array.isArray(options.identifiers)) { - options.identifiers = options.identifiers.map(id => id.toLowerCase()); - } else { - throw new Error('linkBankOperations cannot be called without "identifiers" option'); +const findMatch = (account, existingAccounts) => { + // Start with exact attribute matches + for (const exactAttribute of exactMatchAttributes) { + if (account[exactAttribute]) { + const result = findExactMatch(exactAttribute, account, existingAccounts) + if (result && result.match) { + return result + } } - - defaults(options, { - amountDelta: DEFAULT_AMOUNT_DELTA - }); - defaults(options, { - minAmountDelta: options.amountDelta, - maxAmountDelta: options.amountDelta, - pastWindow: DEFAULT_PAST_WINDOW, - futureWindow: DEFAULT_FUTURE_WINDOW - }); - return options; } - async linkBillToCreditOperation(bill, debitOperation, allOperations, options) { - const creditOperation = await findCreditOperation(this.cozyClient, bill, options, allOperations); - const promises = []; - - if (creditOperation) { - promises.push(this.addBillToOperation(bill, creditOperation)); + const matchOriginalNumber = existingAccounts.find( + otherAccount => + eqNotUndefined(account.originalNumber, otherAccount.number) || + eqNotUndefined(account.number, otherAccount.originalNumber) + ) + if (matchOriginalNumber) { + return { + match: matchOriginalNumber, + method: 'originalNumber-exact' } + } - if (creditOperation && debitOperation) { - log('debug', `reimbursement: Matching bill ${bill.subtype || bill.filename} (${fmtDate(bill.date)}) with credit operation ${creditOperation.label} (${fmtDate(creditOperation.date)})`); - promises.push(this.addReimbursementToOperation(bill, debitOperation, creditOperation)); + const matchRawNumberCurrencyType = existingAccounts.find( + otherAccount => + (eqNotUndefined(account.rawNumber, otherAccount.number) || + eqNotUndefined(account.number, otherAccount.rawNumber)) && + otherAccount.type == account.type && + otherAccount.currency == account.currency + ) + if (matchRawNumberCurrencyType) { + return { + match: matchRawNumberCurrencyType, + method: 'rawNumber-exact-currency-type' } + } - await Promise.all(promises); - return creditOperation; + // Now we get more fuzzy and score accounts + const scored = sortBy( + existingAccounts.map(existingAccount => score(account, existingAccount)), + x => -x.points + ) + const candidates = scored.filter(x => x.points > 0) + if (candidates.length > 0) { + return { + match: candidates[0].account, + method: candidates[0].methods.join('-') + } } +} - async linkBillToDebitOperation(bill, allOperations, options) { - return findDebitOperation(this.cozyClient, bill, options, allOperations).then(operation => { - if (operation) { - log('debug', `bills: Matching bill ${bill.subtype || bill.filename} (${fmtDate(bill.date)}) with debit operation ${operation.label} (${fmtDate(operation.date)})`); - return this.addBillToOperation(bill, operation).then(() => operation); - } - }); +/** + * Matches existing accounts with accounts fetched on a vendor + * + * @typedef {MatchResult} + * @property {io.cozy.account} account - Account from fetched accounts + * @property {io.cozy.account} match - Existing account that was matched. Null if no match was found. + * @property {string} method - How the two accounts were matched + * + * @param {io.cozy.account} fetchedAccounts - Account that have been fetched + * on the vendor and that will be matched with existing accounts + * @param {io.cozy.accounts} existingAccounts - Will be match against (those + * io.cozy.accounts already have an _id) + * @return {Array<MatchResult>} - Match results (as many results as fetchedAccounts.length) + */ +const matchAccounts = (fetchedAccountsArg, existingAccounts) => { + const fetchedAccounts = fetchedAccountsArg.map(normalizeAccount) + const toMatch = [...existingAccounts].map(normalizeAccount) + const results = [] + for (let fetchedAccount of fetchedAccounts) { + const matchResult = findMatch(fetchedAccount, toMatch) + if (matchResult) { + const i = toMatch.indexOf(matchResult.match) + toMatch.splice(i, 1) + results.push({ account: fetchedAccount, ...matchResult }) + } else { + results.push({ account: fetchedAccount }) + } } - /** - * Link bills to - * - their matching banking operation (debit) - * - to their reimbursement (credit) - */ + return results +} +module.exports = { + matchAccounts, + normalizeAccountNumber, + score, + creditCardMatch, + approxNumberMatch +} - async linkBillsToOperations(bills, options) { - options = this.getOptions(options); - const result = {}; - const allOperations = await this.cozyClient.data.findAll('io.cozy.bank.operations'); - if (options.billsToRemove && options.billsToRemove.length) { - this.removeBillsFromOperations(options.billsToRemove, allOperations); - } // when bill comes from a third party payer, - // no transaction is visible on the bank account +/***/ }), +/* 1368 */ +/***/ (function(module, exports) { +const eitherIncludes = (str1, str2) => { + return Boolean(str1 && str2 && (str1.includes(str2) || str2.includes(str1))) +} - bills = bills.filter(bill => !bill.isThirdPartyPayer === true); - await bluebird.each(bills, async bill => { - const res = result[bill._id] = { - bill: bill - }; // the bills combination phase is very time consuming. We can avoid it when we run the - // connector in standalone mode +module.exports = { + eitherIncludes +} - if (allOperations.length === 0) { - return result; - } - const debitOperation = await this.linkBillToDebitOperation(bill, allOperations, options); +/***/ }), +/* 1369 */ +/***/ (function(module, exports, __webpack_require__) { - if (debitOperation) { - res.debitOperation = debitOperation; - } +const log = __webpack_require__(2).namespace('slug-account') +const labelSlugs = __webpack_require__(1370) - if (bill.isRefund) { - const creditOperation = await this.linkBillToCreditOperation(bill, debitOperation, allOperations, options); +const institutionLabelsCompiled = Object.entries(labelSlugs).map( + ([ilabelRx, slug]) => { + if (ilabelRx[0] === '/' && ilabelRx[ilabelRx.length - 1] === '/') { + return [new RegExp(ilabelRx.substr(1, ilabelRx.length - 2), 'i'), slug] + } else { + return [ilabelRx, slug] + } + } +) - if (creditOperation) { - res.creditOperation = creditOperation; - } +const getSlugFromInstitutionLabel = institutionLabel => { + if (!institutionLabel) { + log('warn', 'No institution label, cannot compute slug') + return + } + for (const [rx, slug] of institutionLabelsCompiled) { + if (rx instanceof RegExp) { + const match = institutionLabel.match(rx) + if (match) { + return slug } - }); - await this.findCombinations(result, options, allOperations); - await this.commitChanges(); - return result; + } else if (rx.toLowerCase() === institutionLabel.toLowerCase()) { + return slug + } } + log('warn', `Could not compute slug for ${institutionLabel}`) +} - async findCombinations(result, options, allOperations) { - log('debug', 'finding combinations'); - let found; +module.exports = { + getSlugFromInstitutionLabel +} - do { - found = false; - const unlinkedBills = this.getUnlinkedBills(result); - log('debug', `findCombinations: There are ${unlinkedBills.length} unlinked bills`); - const billsGroups = this.groupBills(unlinkedBills); - log('debug', `findCombinations: Groups: ${billsGroups.length}`); - const combinations = flatten(billsGroups.map(billsGroup => this.generateBillsCombinations(billsGroup))); - log('debug', `Generated ${combinations.length} bills combinations`); - const combinedBills = combinations.map(combination => this.combineBills(...combination)); - for (const combinedBill of combinedBills) { - const debitOperation = await findDebitOperation(this.cozyClient, combinedBill, options, allOperations); +/***/ }), +/* 1370 */ +/***/ (function(module, exports) { - if (debitOperation) { - found = true; - log('debug', combinedBill, 'Matching bills combination'); - log('debug', debitOperation, 'Matching debit debitOperation'); - combinedBill.originalBills.forEach(async originalBill => { - const res = result[originalBill._id]; - res.debitOperation = debitOperation; +module.exports = { + 'AXA Banque': 'axabanque102', + '/Banque Populaire.*/': 'banquepopulaire', + BforBank: 'bforbank97', + 'BNP Paribas': 'bnpparibas82', + BNPP: 'bnpparibas82', + '/Boursorama.*/': 'boursorama83', + casden: 'casden173', + '/Hello bank!.*/': 'hellobank145', + Bred: 'bred', + CA: 'caatlantica3', + 'Carrefour Banque': 'carrefour159', + "/Caisse d'Épargne.*/": 'caissedepargne1', + 'Compte Nickel': 'comptenickel168', + '/^CIC.*/': 'cic63', + 'Crédit Agricole': 'caatlantica3', + 'Crédit Coopératif': 'creditcooperatif148', + '/Crédit du Nord.*/': 'cdngroup88', + '/Crédit Maritime.*/': 'creditmaritime', + '/Crédit Mutuel.*/': 'cic45', + '/Linxea/': 'linxea', + Fortuneo: 'fortuneo84', + 'Hello bank!': 'hellobank145', + 'HSBC France': 'hsbc119', + HSBC: 'hsbc119', + '/^ING.*/': 'ingdirect95', + '/La Banque Postale.*/': 'labanquepostale44', + '/LCL.*/': 'lcl-linxo', + Milleis: 'barclays136', + Monabanq: 'monabanq96', + 'Société Générale': 'societegenerale', + 'Société marseillaise de crédit': 'cdngroup109' +} - if (res.creditOperation && res.debitOperation) { - await this.addReimbursementToOperation(originalBill, debitOperation, res.creditOperation); - } - }); - break; - } - } - } while (found); - return result; - } +/***/ }), +/* 1371 */ +/***/ (function(module, exports, __webpack_require__) { - getUnlinkedBills(bills) { - const unlinkedBills = Object.values(bills).filter(bill => !bill.debitOperation).map(bill => bill.bill); - return unlinkedBills; - } +const fromPairs = __webpack_require__(1324) +const log = __webpack_require__(2).namespace('BankingReconciliator') - billCanBeGrouped(bill) { - return getBillDate(bill) && (bill.type === 'health_costs' || this.groupVendors.includes(bill.vendor)); +class BankingReconciliator { + constructor(options) { + this.options = options } - groupBills(bills) { - const billsToGroup = bills.filter(bill => this.billCanBeGrouped(bill)); - const groups = groupBy(billsToGroup, bill => { - return [format(new Date(getBillDate(bill)), 'yyyy-MM-dd'), bill.vendor]; - }); - return Object.values(groups); - } + async saveAccounts(fetchedAccounts, options) { + const { BankAccount } = this.options - generateBillsCombinations(bills) { - const MIN_ITEMS_IN_COMBINATION = 2; - const combinations = []; + const stackAccounts = await BankAccount.fetchAll() - for (let n = MIN_ITEMS_IN_COMBINATION; n <= bills.length; ++n) { - const combinationsN = geco.gen(bills.length, n, bills); - combinations.push(...combinationsN); + // Reconciliate + const reconciliatedAccounts = BankAccount.reconciliate( + fetchedAccounts, + stackAccounts + ) + + log('info', 'Saving accounts...') + const savedAccounts = await BankAccount.bulkSave(reconciliatedAccounts, { + handleDuplicates: 'remove' + }) + if (options.onAccountsSaved) { + options.onAccountsSaved(savedAccounts) } - return combinations; + return { savedAccounts, reconciliatedAccounts } } - combineBills(...bills) { - return { ...bills[0], - _id: ['combined', ...bills.map(bill => bill._id)].join(':'), - amount: sumBy(bills, bill => bill.amount), - originalAmount: sumBy(bills, bill => bill.originalAmount), - originalBills: bills - }; - } + /** + * @typedef ReconciliatorResponse + * @attribute {Array<BankAccount>} accounts + * @attribute {Array<BankTransactions>} transactions + */ -} + /** + * @typedef ReconciliatorSaveOptions + * @attribute {Function} logProgress + */ -const jsonTee = filename => res => { - fs.writeFileSync(filename, JSON.stringify(res, null, 2)); - return res; -}; -/** - * Will soon move to a dedicated service. You should not use it. - * - * Finds links between bills and bank operations. - * - * @alias module:linkBankOperations - */ + /** + * Save new accounts and transactions + * + * @param {Array<BankAccount>} fetchedAccounts + * @param {Array<BankTransactions>} fetchedTransactions + * @param {ReconciliatorSaveOptions} options + * @returns {ReconciliatorResponse} + * + */ + async save(fetchedAccounts, fetchedTransactions, options = {}) { + const { BankAccount, BankTransaction } = this.options + const { reconciliatedAccounts, savedAccounts } = await this.saveAccounts( + fetchedAccounts, + options + ) -const linkBankOperations = (bills, doctype, fields, options = {}) => { - // Use the custom bank identifier from user if any - if (fields.bank_identifier && fields.bank_identifier.length) { - options.identifiers = [fields.bank_identifier]; - } + // Bank accounts saved in Cozy, we can now link transactions to accounts + // via their cozy id + const vendorIdToCozyId = fromPairs( + savedAccounts.map(acc => [acc[BankAccount.vendorIdAttr], acc._id]) + ) + log('info', 'Linking transactions to accounts...') + log('info', JSON.stringify(vendorIdToCozyId)) - const cozyClient = __webpack_require__(485); + fetchedTransactions.forEach(tr => { + tr.account = vendorIdToCozyId[tr[BankTransaction.vendorAccountIdAttr]] + if (tr.account === undefined) { + log( + 'warn', + `Transaction without account, vendorAccountIdAttr: ${BankTransaction.vendorAccountIdAttr}` + ) + log('warn', 'transaction: ' + JSON.stringify(tr)) + throw new Error('Transaction without account.') + } + }) - const linker = new Linker(cozyClient); - const prom = linker.linkBillsToOperations(bills, options).catch(err => { - log('warn', err, 'Problem when linking operations'); - }); + const reconciliatedAccountIds = new Set( + reconciliatedAccounts.filter(acc => acc._id).map(acc => acc._id) + ) - if (process.env.LINK_RESULTS_FILENAME) { - prom.then(jsonTee(process.env.LINK_RESULTS_FILENAME)); + // Pass to transaction reconciliation only transactions that belong + // to one of the reconciliated accounts + const stackTransactions = (await BankTransaction.fetchAll()).filter( + transaction => reconciliatedAccountIds.has(transaction.account) + ) + + const transactions = BankTransaction.reconciliate( + fetchedTransactions, + stackTransactions, + options + ) + + log('info', 'Saving transactions...') + let i = 1 + const logProgressFn = doc => { + log('debug', `[bulkSave] ${i++} Saving ${doc.date} ${doc.label}`) + } + const savedTransactions = await BankTransaction.bulkSave(transactions, { + concurrency: 30, + logProgress: + options.logProgress !== undefined ? options.logProgress : logProgressFn, + handleDuplicates: 'remove' + }) + return { + accounts: savedAccounts, + transactions: savedTransactions + } } +} - return prom; -}; +module.exports = BankingReconciliator -module.exports = linkBankOperations; -Object.assign(module.exports, { - Linker -}); /***/ }), -/* 1246 */ +/* 1372 */ /***/ (function(module, exports, __webpack_require__) { -const { - operationsFilters -} = __webpack_require__(1247); - -const { - findNeighboringOperations -} = __webpack_require__(1254); - -const { - sortedOperations -} = __webpack_require__(1253); - -const findOperation = (cozyClient, bill, options, allOperations) => { - // By default, a bill is an expense. If it is not, it should be - // declared as a refund: isRefund=true. - if (options.credit && !bill.isRefund) return; - return findNeighboringOperations(cozyClient, bill, options, allOperations).then(operations => { - operations = operationsFilters(bill, operations, options); - operations = sortedOperations(bill, operations); - return operations[0]; - }); -}; - -const findDebitOperation = findOperation; - -const findCreditOperation = (cozyClient, bill, options, allOperations) => { - const creditOptions = Object.assign({}, options, { - credit: true - }); - return findOperation(cozyClient, bill, creditOptions, allOperations); -}; +const keyBy = __webpack_require__(1373) +const groupBy = __webpack_require__(1333) +const maxBy = __webpack_require__(1374) +const addDays = __webpack_require__(1377) +const isAfter = __webpack_require__(1381) +const Document = __webpack_require__(1147) +const log = __webpack_require__(1355) +const BankAccount = __webpack_require__(1358) +const { matchTransactions } = __webpack_require__(1382) -module.exports = { - findDebitOperation, - findCreditOperation -}; +const maxValue = (iterable, fn) => { + const res = maxBy(iterable, fn) + return res ? fn(res) : null +} -/***/ }), -/* 1247 */ -/***/ (function(module, exports, __webpack_require__) { +const getDate = transaction => { + const date = transaction.realisationDate || transaction.date + return date.slice(0, 10) +} -const includes = __webpack_require__(1248); +/** + * Get the date of the latest transaction in an array. + * Transactions in the future are ignored. + * + * @param {array} stackTransactions + * @returns {string} The date of the latest transaction (YYYY-MM-DD) + */ +const getSplitDate = stackTransactions => { + const now = new Date() + const notFutureTransactions = stackTransactions.filter(transaction => { + const date = getDate(transaction) + return !isAfter(date, now) + }) -const some = __webpack_require__(1251); + return maxValue(notFutureTransactions, getDate) +} -const sumBy = __webpack_require__(1212); +const ensureISOString = date => { + if (date instanceof Date) { + return date.toISOString() + } else { + return date + } +} -const { - isWithinInterval -} = __webpack_require__(889); +class Transaction extends Document { + static getDate(transaction) { + return transaction + } -const { - getIdentifiers, - getDateRangeFromBill, - getAmountRangeFromBill -} = __webpack_require__(1253); // constants + isAfter(minDate) { + if (!minDate) { + return true + } else { + const day = ensureISOString(this.date).slice(0, 10) + if (day !== 'NaN') { + return day > minDate + } else { + log( + 'warn', + 'transaction date could not be parsed. transaction: ' + + JSON.stringify(this) + ) + return false + } + } + } + isBeforeOrSame(maxDate) { + if (!maxDate) { + return true + } else { + const day = ensureISOString(this.date).slice(0, 10) + if (day !== 'NaN') { + return day <= maxDate + } else { + log( + 'warn', + 'transaction date could not be parsed. transaction: ' + + JSON.stringify(this) + ) + return false + } + } + } -const HEALTH_VENDORS = ['Ameli', 'Harmonie', 'Malakoff Mederic', 'MGEN', 'Generali', 'ascoreSante', 'EoviMCD', 'Humanis', 'Alan', 'lamutuellegenerale']; // TODO: to import from each konnector + /** + * Get the descriptive (and almost uniq) identifier of a transaction + * @param {object} transaction - The transaction (containing at least amount, originalBankLabel and date) + * @returns {object} + */ + getIdentifier() { + return `${this.amount}-${this.originalBankLabel}-${this.date}` + } -const HEALTH_EXPENSE_CAT = '400610'; -const HEALTH_INSURANCE_CAT = '400620'; -const UNCATEGORIZED_CAT_ID_OPERATION = '0'; // TODO: import it from cozy-bank -// helpers + /** + * Get transactions that should be present in the stack but are not. + * Transactions that are older that 1 week before the oldest existing + * transaction are ignored. + * + * @param {array} newTransactions + * @param {array} stackTransactions + * @returns {array} + */ + static getMissedTransactions( + newTransactions, + stackTransactions, + options = {} + ) { + const oldestDate = maxValue(stackTransactions, getDate) + const frontierDate = addDays(oldestDate, -7) + const recentNewTransactions = newTransactions.filter(tr => + isAfter(getDate(tr), frontierDate) + ) + const matchingResults = Array.from( + matchTransactions(recentNewTransactions, stackTransactions) + ) -const getCategoryId = o => { - return o.manualCategoryId || o.automaticCategoryId || UNCATEGORIZED_CAT_ID_OPERATION; -}; + const missedTransactions = matchingResults + .filter(result => !result.match) + .map(result => result.transaction) -const isHealthOperation = operation => { - const catId = getCategoryId(operation); + const trackEvent = options.trackEvent + if (typeof trackEvent === 'function') { + try { + const nbMissed = missedTransactions.length + const nbExisting = stackTransactions.length + trackEvent({ + e_a: 'ReconciliateMissing', + e_n: 'MissedTransactionPct', + e_v: parseFloat((nbMissed / nbExisting).toFixed(2), 10) + }) + trackEvent({ + e_a: 'ReconciliateMissing', + e_n: 'MissedTransactionAbs', + e_v: nbMissed + }) + } catch (e) { + log('warn', `Could not send MissedTransaction event: ${e.message}`) + } + } - if (operation.amount < 0) { - return catId === HEALTH_EXPENSE_CAT; - } else { - return catId === HEALTH_EXPENSE_CAT || catId === HEALTH_INSURANCE_CAT; + return missedTransactions } -}; -const isUncategorizedOperation = operation => { - const catId = getCategoryId(operation); - return catId == UNCATEGORIZED_CAT_ID_OPERATION; -}; + static reconciliate(remoteTransactions, localTransactions, options = {}) { + const findByVendorId = transaction => + localTransactions.find(t => t.vendorId === transaction.vendorId) -const isHealthBill = bill => { - return includes(HEALTH_VENDORS, bill.vendor); -}; // filters + const groups = groupBy(remoteTransactions, transaction => + findByVendorId(transaction) ? 'updatedTransactions' : 'newTransactions' + ) + let newTransactions = groups.newTransactions || [] + const updatedTransactions = groups.updatedTransactions || [] -const filterByIdentifiers = identifiers => { - identifiers = identifiers.map(i => i.toLowerCase()); + const splitDate = getSplitDate(localTransactions) - const identifierFilter = operation => { - const label = operation.label.toLowerCase(); - return some(identifiers, identifier => includes(label, identifier)); - }; + if (splitDate) { + if (typeof options.trackEvent === 'function') { + options.trackEvent({ + e_a: 'ReconciliateSplitDate' + }) + } - return identifierFilter; -}; + const isAfterSplit = x => Transaction.prototype.isAfter.call(x, splitDate) + const isBeforeSplit = x => + Transaction.prototype.isBeforeOrSame.call(x, splitDate) -const filterByDates = ({ - minDate, - maxDate -}) => { - const dateFilter = operation => { - return isWithinInterval(new Date(operation.date), { - start: new Date(minDate), - end: new Date(maxDate) - }); - }; + const transactionsAfterSplit = newTransactions.filter(isAfterSplit) - return dateFilter; -}; + if (transactionsAfterSplit.length > 0) { + log( + 'info', + `Found ${transactionsAfterSplit.length} transactions after ${splitDate}` + ) + } else { + log('info', `No transaction after ${splitDate}`) + } -const filterByAmounts = ({ - minAmount, - maxAmount -}) => { - const amountFilter = operation => { - return operation.amount >= minAmount && operation.amount <= maxAmount; - }; + const transactionsBeforeSplit = newTransactions.filter(isBeforeSplit) + log( + 'info', + `Found ${transactionsBeforeSplit.length} transactions before ${splitDate}` + ) - return amountFilter; -}; + const missedTransactions = Transaction.getMissedTransactions( + transactionsBeforeSplit, + localTransactions, + options + ) -const filterByCategory = (bill, options = {}) => { - const isHealth = isHealthBill(bill); + if (missedTransactions.length > 0) { + log( + 'info', + `Found ${missedTransactions.length} missed transactions before ${splitDate}` + ) + } else { + log('info', `No missed transactions before ${splitDate}`) + } - const categoryFilter = operation => { - if (options.allowUncategorized === true && isUncategorizedOperation(operation)) { - return true; + newTransactions = [...transactionsAfterSplit, ...missedTransactions] + } else { + log('info', "Can't find a split date, saving all new transactions") } - return isHealth ? isHealthOperation(operation) : !isHealthOperation(operation); - }; + log( + 'info', + `Transaction reconciliation: new ${newTransactions.length}, updated ${updatedTransactions.length}, split date ${splitDate} ` + ) + return [].concat(newTransactions).concat(updatedTransactions) + } - return categoryFilter; -}; -/** - * Check that the sum of the reimbursements + the amount of the bill is not - * greater that the amount of the operation - */ + static async getMostRecentForAccounts(accountIds) { + try { + log('debug', 'Transaction.getLast') + const index = await Document.getIndex(this.doctype, ['date', 'account']) + const options = { + selector: { + date: { $gte: null }, + account: { + $in: accountIds + } + }, + sort: [{ date: 'desc' }] + } + const transactions = await Document.query(index, options) + log('info', 'last transactions length: ' + transactions.length) -const filterByReimbursements = bill => { - const reimbursementFilter = operation => { - const sumReimbursements = sumBy(operation.reimbursements, 'amount'); - return sumReimbursements + bill.amount <= -operation.amount; - }; + return transactions + } catch (e) { + log('error', e) - return reimbursementFilter; -}; // combine filters + return [] + } + } + static async deleteOrphans() { + log('info', 'Deleting up orphan operations') + const accounts = keyBy(await BankAccount.fetchAll(), '_id') + const operations = await this.fetchAll() + const orphanOperations = operations.filter(x => !accounts[x.account]) + log('info', `Total number of operations: ${operations.length}`) + log('info', `Total number of orphan operations: ${orphanOperations.length}`) + log('info', `Deleting ${orphanOperations.length} orphan operations...`) + if (orphanOperations.length > 0) { + return this.deleteAll(orphanOperations) + } + } -const operationsFilters = (bill, operations, options) => { - const filterByConditions = filters => op => { - for (let f of filters) { - const res = f(op); + getVendorAccountId() { + return this[this.constructor.vendorAccountIdAttr] + } - if (!res) { - return false; - } + static getCategoryId(transaction, options) { + const opts = { + localModelOverride: false, + localModelUsageThreshold: this.LOCAL_MODEL_USAGE_THRESHOLD, + globalModelUsageThreshold: this.GLOBAL_MODEL_USAGE_THRESHOLD, + ...options } - return true; - }; + if (transaction.manualCategoryId) { + return transaction.manualCategoryId + } - const fByDates = filterByDates(getDateRangeFromBill(bill, options)); - const fByAmounts = filterByAmounts(getAmountRangeFromBill(bill, options)); - const fByCategory = filterByCategory(bill, options); - const fByReimbursements = filterByReimbursements(bill, options); - const conditions = [fByDates, fByAmounts, fByCategory]; + if ( + opts.localModelOverride && + transaction.localCategoryId && + transaction.localCategoryProba && + transaction.localCategoryProba > opts.localModelUsageThreshold + ) { + return transaction.localCategoryId + } - if (!options.credit) { - conditions.push(fByReimbursements); - } // We filters with identifiers when - // - we search a credit operation - // - or when is bill is in the health category + if ( + transaction.cozyCategoryId && + transaction.cozyCategoryProba && + transaction.cozyCategoryProba > opts.globalModelUsageThreshold + ) { + return transaction.cozyCategoryId + } + // If the cozy categorization models have not been applied, we return null + // so the transaction is considered as « categorization in progress ». + // Otherwize we just use the automatic categorization from the vendor + if (!transaction.localCategoryId && !transaction.cozyCategoryId) { + return null + } - if (options.credit || !isHealthBill(bill)) { - const fbyIdentifiers = filterByIdentifiers(getIdentifiers(options)); - conditions.push(fbyIdentifiers); + return transaction.automaticCategoryId } +} +Transaction.doctype = 'io.cozy.bank.operations' +Transaction.version = 1 +Transaction.vendorAccountIdAttr = 'vendorAccountId' +Transaction.vendorIdAttr = 'vendorId' +Transaction.idAttributes = ['vendorId'] +Transaction.checkedAttributes = [ + 'label', + 'originalBankLabel', + 'automaticCategoryId', + 'account' +] +Transaction.LOCAL_MODEL_USAGE_THRESHOLD = 0.8 +Transaction.GLOBAL_MODEL_USAGE_THRESHOLD = 0.15 +Transaction.getSplitDate = getSplitDate - return operations.filter(filterByConditions(conditions)); -}; +module.exports = Transaction -module.exports = { - filterByIdentifiers, - filterByDates, - filterByAmounts, - filterByCategory, - filterByReimbursements, - operationsFilters -}; /***/ }), -/* 1248 */ +/* 1373 */ /***/ (function(module, exports, __webpack_require__) { -var baseIndexOf = __webpack_require__(477), - isArrayLike = __webpack_require__(458), - isString = __webpack_require__(74), - toInteger = __webpack_require__(642), - values = __webpack_require__(1249); - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeMax = Math.max; +var baseAssignValue = __webpack_require__(1197), + createAggregator = __webpack_require__(1334); /** - * Checks if `value` is in `collection`. If `collection` is a string, it's - * checked for a substring of `value`, otherwise - * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) - * is used for equality comparisons. If `fromIndex` is negative, it's used as - * the offset from the end of `collection`. + * Creates an object composed of keys generated from the results of running + * each element of `collection` thru `iteratee`. The corresponding value of + * each key is the last element responsible for generating the key. The + * iteratee is invoked with one argument: (value). * * @static * @memberOf _ - * @since 0.1.0 + * @since 4.0.0 * @category Collection - * @param {Array|Object|string} collection The collection to inspect. - * @param {*} value The value to search for. - * @param {number} [fromIndex=0] The index to search from. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. - * @returns {boolean} Returns `true` if `value` is found, else `false`. + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee to transform keys. + * @returns {Object} Returns the composed aggregate object. * @example * - * _.includes([1, 2, 3], 1); - * // => true - * - * _.includes([1, 2, 3], 1, 2); - * // => false + * var array = [ + * { 'dir': 'left', 'code': 97 }, + * { 'dir': 'right', 'code': 100 } + * ]; * - * _.includes({ 'a': 1, 'b': 2 }, 1); - * // => true + * _.keyBy(array, function(o) { + * return String.fromCharCode(o.code); + * }); + * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } } * - * _.includes('abcd', 'bc'); - * // => true + * _.keyBy(array, 'dir'); + * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } } */ -function includes(collection, value, fromIndex, guard) { - collection = isArrayLike(collection) ? collection : values(collection); - fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0; - - var length = collection.length; - if (fromIndex < 0) { - fromIndex = nativeMax(length + fromIndex, 0); - } - return isString(collection) - ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) - : (!!length && baseIndexOf(collection, value, fromIndex) > -1); -} +var keyBy = createAggregator(function(result, value, key) { + baseAssignValue(result, key, value); +}); -module.exports = includes; +module.exports = keyBy; /***/ }), -/* 1249 */ +/* 1374 */ /***/ (function(module, exports, __webpack_require__) { -var baseValues = __webpack_require__(1250), - keys = __webpack_require__(441); +var baseExtremum = __webpack_require__(1375), + baseGt = __webpack_require__(1376), + baseIteratee = __webpack_require__(1299); /** - * Creates an array of the own enumerable string keyed property values of `object`. - * - * **Note:** Non-object values are coerced to objects. + * This method is like `_.max` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * the value is ranked. The iteratee is invoked with one argument: (value). * * @static - * @since 0.1.0 * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @returns {Array} Returns the array of property values. + * @since 4.0.0 + * @category Math + * @param {Array} array The array to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {*} Returns the maximum value. * @example * - * function Foo() { - * this.a = 1; - * this.b = 2; - * } - * - * Foo.prototype.c = 3; + * var objects = [{ 'n': 1 }, { 'n': 2 }]; * - * _.values(new Foo); - * // => [1, 2] (iteration order is not guaranteed) + * _.maxBy(objects, function(o) { return o.n; }); + * // => { 'n': 2 } * - * _.values('hi'); - * // => ['h', 'i'] + * // The `_.property` iteratee shorthand. + * _.maxBy(objects, 'n'); + * // => { 'n': 2 } */ -function values(object) { - return object == null ? [] : baseValues(object, keys(object)); +function maxBy(array, iteratee) { + return (array && array.length) + ? baseExtremum(array, baseIteratee(iteratee, 2), baseGt) + : undefined; } -module.exports = values; +module.exports = maxBy; /***/ }), -/* 1250 */ +/* 1375 */ /***/ (function(module, exports, __webpack_require__) { -var arrayMap = __webpack_require__(410); +var isSymbol = __webpack_require__(1260); /** - * The base implementation of `_.values` and `_.valuesIn` which creates an - * array of `object` property values corresponding to the property names - * of `props`. + * The base implementation of methods like `_.max` and `_.min` which accepts a + * `comparator` to determine the extremum value. * * @private - * @param {Object} object The object to query. - * @param {Array} props The property names to get values for. - * @returns {Object} Returns the array of property values. + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The iteratee invoked per iteration. + * @param {Function} comparator The comparator used to compare values. + * @returns {*} Returns the extremum value. */ -function baseValues(object, props) { - return arrayMap(props, function(key) { - return object[key]; - }); +function baseExtremum(array, iteratee, comparator) { + var index = -1, + length = array.length; + + while (++index < length) { + var value = array[index], + current = iteratee(value); + + if (current != null && (computed === undefined + ? (current === current && !isSymbol(current)) + : comparator(current, computed) + )) { + var computed = current, + result = value; + } + } + return result; } -module.exports = baseValues; +module.exports = baseExtremum; /***/ }), -/* 1251 */ -/***/ (function(module, exports, __webpack_require__) { - -var arraySome = __webpack_require__(428), - baseIteratee = __webpack_require__(413), - baseSome = __webpack_require__(1252), - isArray = __webpack_require__(75), - isIterateeCall = __webpack_require__(754); +/* 1376 */ +/***/ (function(module, exports) { /** - * Checks if `predicate` returns truthy for **any** element of `collection`. - * Iteration is stopped once `predicate` returns truthy. The predicate is - * invoked with three arguments: (value, index|key, collection). + * The base implementation of `_.gt` which doesn't coerce arguments. * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} [predicate=_.identity] The function invoked per iteration. - * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. - * @returns {boolean} Returns `true` if any element passes the predicate check, + * @private + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if `value` is greater than `other`, * else `false`. - * @example - * - * _.some([null, 0, 'yes', false], Boolean); - * // => true - * - * var users = [ - * { 'user': 'barney', 'active': true }, - * { 'user': 'fred', 'active': false } - * ]; - * - * // The `_.matches` iteratee shorthand. - * _.some(users, { 'user': 'barney', 'active': false }); - * // => false - * - * // The `_.matchesProperty` iteratee shorthand. - * _.some(users, ['active', false]); - * // => true - * - * // The `_.property` iteratee shorthand. - * _.some(users, 'active'); - * // => true */ -function some(collection, predicate, guard) { - var func = isArray(collection) ? arraySome : baseSome; - if (guard && isIterateeCall(collection, predicate, guard)) { - predicate = undefined; - } - return func(collection, baseIteratee(predicate, 3)); +function baseGt(value, other) { + return value > other; } -module.exports = some; +module.exports = baseGt; /***/ }), -/* 1252 */ +/* 1377 */ /***/ (function(module, exports, __webpack_require__) { -var baseEach = __webpack_require__(573); +var parse = __webpack_require__(1378) /** - * The base implementation of `_.some` without support for iteratee shorthands. + * @category Day Helpers + * @summary Add the specified number of days to the given date. * - * @private - * @param {Array|Object} collection The collection to iterate over. - * @param {Function} predicate The function invoked per iteration. - * @returns {boolean} Returns `true` if any element passes the predicate check, - * else `false`. + * @description + * Add the specified number of days to the given date. + * + * @param {Date|String|Number} date - the date to be changed + * @param {Number} amount - the amount of days to be added + * @returns {Date} the new date with the days added + * + * @example + * // Add 10 days to 1 September 2014: + * var result = addDays(new Date(2014, 8, 1), 10) + * //=> Thu Sep 11 2014 00:00:00 */ -function baseSome(collection, predicate) { - var result; - - baseEach(collection, function(value, index, collection) { - result = predicate(value, index, collection); - return !result; - }); - return !!result; +function addDays (dirtyDate, dirtyAmount) { + var date = parse(dirtyDate) + var amount = Number(dirtyAmount) + date.setDate(date.getDate() + amount) + return date } -module.exports = baseSome; +module.exports = addDays /***/ }), -/* 1253 */ +/* 1378 */ /***/ (function(module, exports, __webpack_require__) { -const sortBy = __webpack_require__(826); +var getTimezoneOffsetInMilliseconds = __webpack_require__(1379) +var isDate = __webpack_require__(1380) -const { - addDays, - subDays, - differenceInDays -} = __webpack_require__(889); +var MILLISECONDS_IN_HOUR = 3600000 +var MILLISECONDS_IN_MINUTE = 60000 +var DEFAULT_ADDITIONAL_DIGITS = 2 -const getOperationAmountFromBill = (bill, options) => { - const searchingCredit = options && options.credit; - return searchingCredit ? bill.groupAmount || bill.amount : -(bill.originalAmount || bill.amount); -}; +var parseTokenDateTimeDelimeter = /[T ]/ +var parseTokenPlainTime = /:/ -const getOperationDateFromBill = (bill, options) => { - const isCredit = options && options.credit; - const date = isCredit ? bill.date : bill.originalDate || bill.date; - return date ? new Date(date) : new Date(); -}; +// year tokens +var parseTokenYY = /^(\d{2})$/ +var parseTokensYYY = [ + /^([+-]\d{2})$/, // 0 additional digits + /^([+-]\d{3})$/, // 1 additional digit + /^([+-]\d{4})$/ // 2 additional digits +] -const getIdentifiers = options => options.identifiers; +var parseTokenYYYY = /^(\d{4})/ +var parseTokensYYYYY = [ + /^([+-]\d{4})/, // 0 additional digits + /^([+-]\d{5})/, // 1 additional digit + /^([+-]\d{6})/ // 2 additional digits +] -const getDateRangeFromBill = (bill, options) => { - const date = getOperationDateFromBill(bill, options); - return { - minDate: subDays(new Date(date), options.pastWindow), - maxDate: addDays(new Date(date), options.futureWindow) - }; -}; +// date tokens +var parseTokenMM = /^-(\d{2})$/ +var parseTokenDDD = /^-?(\d{3})$/ +var parseTokenMMDD = /^-?(\d{2})-?(\d{2})$/ +var parseTokenWww = /^-?W(\d{2})$/ +var parseTokenWwwD = /^-?W(\d{2})-?(\d{1})$/ -const getAmountRangeFromBill = (bill, options) => { - const amount = getOperationAmountFromBill(bill, options); - return { - minAmount: amount - options.minAmountDelta, - maxAmount: amount + options.maxAmountDelta - }; -}; +// time tokens +var parseTokenHH = /^(\d{2}([.,]\d*)?)$/ +var parseTokenHHMM = /^(\d{2}):?(\d{2}([.,]\d*)?)$/ +var parseTokenHHMMSS = /^(\d{2}):?(\d{2}):?(\d{2}([.,]\d*)?)$/ -const getTotalReimbursements = operation => { - if (!operation.reimbursements) return 0; - return operation.reimbursements.reduce((s, r) => s + r.amount, 0); -}; // when we want to match an invoice with an operation according criteria, -// it is possible that several operations are returned to us. -// So we want to find the bill that comes closest. -// This function will sort this list +// timezone tokens +var parseTokenTimezone = /([Z+-].*)$/ +var parseTokenTimezoneZ = /^(Z)$/ +var parseTokenTimezoneHH = /^([+-])(\d{2})$/ +var parseTokenTimezoneHHMM = /^([+-])(\d{2}):?(\d{2})$/ +/** + * @category Common Helpers + * @summary Convert the given argument to an instance of Date. + * + * @description + * Convert the given argument to an instance of Date. + * + * If the argument is an instance of Date, the function returns its clone. + * + * If the argument is a number, it is treated as a timestamp. + * + * If an argument is a string, the function tries to parse it. + * Function accepts complete ISO 8601 formats as well as partial implementations. + * ISO 8601: http://en.wikipedia.org/wiki/ISO_8601 + * + * If all above fails, the function passes the given argument to Date constructor. + * + * @param {Date|String|Number} argument - the value to convert + * @param {Object} [options] - the object with options + * @param {0 | 1 | 2} [options.additionalDigits=2] - the additional number of digits in the extended year format + * @returns {Date} the parsed date in the local time zone + * + * @example + * // Convert string '2014-02-11T11:30:30' to date: + * var result = parse('2014-02-11T11:30:30') + * //=> Tue Feb 11 2014 11:30:30 + * + * @example + * // Parse string '+02014101', + * // if the additional number of digits in the extended year format is 1: + * var result = parse('+02014101', {additionalDigits: 1}) + * //=> Fri Apr 11 2014 00:00:00 + */ +function parse (argument, dirtyOptions) { + if (isDate(argument)) { + // Prevent the date to lose the milliseconds when passed to new Date() in IE10 + return new Date(argument.getTime()) + } else if (typeof argument !== 'string') { + return new Date(argument) + } -const sortedOperations = (bill, operations) => { - const buildSortFunction = bill => { - // it's not possible to sort with 2 parameters as the same time - // Date is more important so it have a biggest weight, - // but this value is random. - const dateWeight = 0.7; - const amountWeight = 1 - dateWeight; - const opDate = getOperationDateFromBill(bill); - const opAmount = getOperationAmountFromBill(bill); - return operation => { - const dateDiff = Math.abs(differenceInDays(new Date(opDate), new Date(operation.date))); - const amountDiff = Math.abs(opAmount - operation.amount); - return dateWeight * dateDiff + amountWeight * amountDiff; - }; - }; + var options = dirtyOptions || {} + var additionalDigits = options.additionalDigits + if (additionalDigits == null) { + additionalDigits = DEFAULT_ADDITIONAL_DIGITS + } else { + additionalDigits = Number(additionalDigits) + } - return sortBy(operations, buildSortFunction(bill)); -}; + var dateStrings = splitDateString(argument) -module.exports = { - getOperationAmountFromBill, - getOperationDateFromBill, - getIdentifiers, - getDateRangeFromBill, - getAmountRangeFromBill, - getTotalReimbursements, - sortedOperations -}; + var parseYearResult = parseYear(dateStrings.date, additionalDigits) + var year = parseYearResult.year + var restDateString = parseYearResult.restDateString -/***/ }), -/* 1254 */ -/***/ (function(module, exports, __webpack_require__) { + var date = parseDate(restDateString, year) -const { - getDateRangeFromBill, - getAmountRangeFromBill -} = __webpack_require__(1253); // cozy-stack limit to 100 elements max + if (date) { + var timestamp = date.getTime() + var time = 0 + var offset + if (dateStrings.time) { + time = parseTime(dateStrings.time) + } -const COZY_STACK_QUERY_LIMIT = 100; // Get the operations corresponding to the date interval -// around the date of the bill + if (dateStrings.timezone) { + offset = parseTimezone(dateStrings.timezone) * MILLISECONDS_IN_MINUTE + } else { + var fullTime = timestamp + time + var fullTimeDate = new Date(fullTime) -const createDateSelector = (bill, options) => { - const { - minDate, - maxDate - } = getDateRangeFromBill(bill, options); - return { - $gt: minDate.toISOString(), - $lt: maxDate.toISOString() - }; -}; // Get the operations corresponding to the date interval -// around the amount of the bill + offset = getTimezoneOffsetInMilliseconds(fullTimeDate) + // Adjust time when it's coming from DST + var fullTimeDateNextDay = new Date(fullTime) + fullTimeDateNextDay.setDate(fullTimeDate.getDate() + 1) + var offsetDiff = + getTimezoneOffsetInMilliseconds(fullTimeDateNextDay) - + getTimezoneOffsetInMilliseconds(fullTimeDate) + if (offsetDiff > 0) { + offset += offsetDiff + } + } -const createAmountSelector = (bill, options) => { - const { - minAmount, - maxAmount - } = getAmountRangeFromBill(bill, options); - return { - $gt: minAmount, - $lt: maxAmount - }; -}; + return new Date(timestamp + time + offset) + } else { + return new Date(argument) + } +} -const getQueryOptions = (bill, options, ids) => { - const queryOptions = { - selector: { - date: createDateSelector(bill, options), - amount: createAmountSelector(bill, options) - }, - sort: [{ - date: 'desc' - }, { - amount: 'desc' - }], - COZY_STACK_QUERY_LIMIT - }; +function splitDateString (dateString) { + var dateStrings = {} + var array = dateString.split(parseTokenDateTimeDelimeter) + var timeString - if (ids.length > 0) { - queryOptions.skip = ids.length; + if (parseTokenPlainTime.test(array[0])) { + dateStrings.date = null + timeString = array[0] + } else { + dateStrings.date = array[0] + timeString = array[1] } - return queryOptions; -}; - -const and = conditions => obj => { - for (let c of conditions) { - if (!c(obj)) { - return false; + if (timeString) { + var token = parseTokenTimezone.exec(timeString) + if (token) { + dateStrings.time = timeString.replace(token[1], '') + dateStrings.timezone = token[1] + } else { + dateStrings.time = timeString } } - return true; -}; - -const findByMangoQuerySimple = (docs, query) => { - const selector = query.selector; - const filters = Object.keys(selector).map(attr => doc => { - const attrSel = selector[attr]; - const conditions = Object.keys(attrSel).map($operator => doc => { - const val = doc[attr]; - const selValue = attrSel[$operator]; - - if ($operator == '$gt') { - return val > selValue; - } else if ($operator == '$lt') { - return val < selValue; - } else { - throw new Error(`Unknown operator ${$operator}`); - } - }); - return and(conditions)(doc); - }); - return docs.filter(and(filters)); -}; - -const findNeighboringOperations = async (cozyClient, bill, options, allOperations) => { - const queryOptions = getQueryOptions(bill, options, []); - const neighboringOperations = findByMangoQuerySimple(allOperations, queryOptions); - return neighboringOperations; -}; - -module.exports = { - findByMangoQuerySimple, - findNeighboringOperations -}; - -/***/ }), -/* 1255 */ -/***/ (function(module, exports, __webpack_require__) { - -var baseRest = __webpack_require__(562), - eq = __webpack_require__(397), - isIterateeCall = __webpack_require__(754), - keysIn = __webpack_require__(585); - -/** Used for built-in method references. */ -var objectProto = Object.prototype; - -/** Used to check objects for own properties. */ -var hasOwnProperty = objectProto.hasOwnProperty; + return dateStrings +} -/** - * Assigns own and inherited enumerable string keyed properties of source - * objects to the destination object for all destination properties that - * resolve to `undefined`. Source objects are applied from left to right. - * Once a property is set, additional values of the same property are ignored. - * - * **Note:** This method mutates `object`. - * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. - * @see _.defaultsDeep - * @example - * - * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); - * // => { 'a': 1, 'b': 2 } - */ -var defaults = baseRest(function(object, sources) { - object = Object(object); +function parseYear (dateString, additionalDigits) { + var parseTokenYYY = parseTokensYYY[additionalDigits] + var parseTokenYYYYY = parseTokensYYYYY[additionalDigits] - var index = -1; - var length = sources.length; - var guard = length > 2 ? sources[2] : undefined; + var token - if (guard && isIterateeCall(sources[0], sources[1], guard)) { - length = 1; + // YYYY or ±YYYYY + token = parseTokenYYYY.exec(dateString) || parseTokenYYYYY.exec(dateString) + if (token) { + var yearString = token[1] + return { + year: parseInt(yearString, 10), + restDateString: dateString.slice(yearString.length) + } } - while (++index < length) { - var source = sources[index]; - var props = keysIn(source); - var propsIndex = -1; - var propsLength = props.length; - - while (++propsIndex < propsLength) { - var key = props[propsIndex]; - var value = object[key]; - - if (value === undefined || - (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) { - object[key] = source[key]; - } + // YY or ±YYY + token = parseTokenYY.exec(dateString) || parseTokenYYY.exec(dateString) + if (token) { + var centuryString = token[1] + return { + year: parseInt(centuryString, 10) * 100, + restDateString: dateString.slice(centuryString.length) } } - return object; -}); - -module.exports = defaults; - - -/***/ }), -/* 1256 */ -/***/ (function(module, exports, __webpack_require__) { - -module.exports = __webpack_require__( 1257 ).Geco; - - -/***/ }), -/* 1257 */ -/***/ (function(module, exports, __webpack_require__) { - -/* - * Geco, a CAT (Constant Amortized Time) recursive generator* - * for k-combinations, chosen from a given set S of n elements, - * with and without replacement. - * - * https://en.wikipedia.org/wiki/Lexicographical_order#Colexicographic_order - * - * Copyright(c) 2018-present Guglielmo Ferri <44gatti@gmail.com> - * MIT Licensed - */ - -exports.Geco = Object.assign( __webpack_require__( 1258 ), __webpack_require__( 1261 ) ); - + // Invalid ISO-formatted year + return { + year: null + } +} -/***/ }), -/* 1258 */ -/***/ (function(module, exports, __webpack_require__) { +function parseDate (dateString, year) { + // Invalid ISO-formatted year + if (year === null) { + return null + } -/* - * Geco, a CAT (Constant Amortized Time) recursive generator* - * for k-combinations, chosen from a given set S of n elements, - * with and without replacement. - * - * https://en.wikipedia.org/wiki/Lexicographical_order#Colexicographic_order - * - * Copyright(c) 2018-present Guglielmo Ferri <44gatti@gmail.com> - * MIT Licensed - */ + var token + var date + var month + var week -module.exports = ( function () { + // YYYY + if (dateString.length === 0) { + date = new Date(0) + date.setUTCFullYear(year) + return date + } - const balloc = Buffer.alloc - , Toni = __webpack_require__( 1259 ) - ; - return { - // CAT generator for combinations without replacement - get : function ( n, k ) { - if ( ! n || ( n < k ) ) - throw new RangeError( 'check input values' ) - ; - // buffer for generating combinations - const buff = balloc( n, 0 ) - // colex recursive generator - , colex_gen = function *( n, k ) { - if ( n === 0 ) yield buff; - else { - if ( k < n ) { - buff[ n - 1 ] = 0; - yield* colex_gen( n - 1, k ); - } - if ( k > 0 ) { - buff[ n - 1 ] = 1; - yield* colex_gen( n - 1, k - 1 ); - } - } - } - // generating colex order for k <= n/2. - , colex_gen_2 = function *( n, k ) { - if ( k === 0 ) yield buff; - else { - if ( k < n ) { - buff[ n - 1 ] = 0; - yield* colex_gen_2( n - 1, k ); - } - buff[ n - 1 ] = 1; - yield* colex_gen_2( n - 1, k - 1); - buff[ n - 1 ] = 0; - } - } - ; - return ( k > n / 2 ) ? - colex_gen( n , k ) : - colex_gen_2( n, k ) - ; - } - , get_bm : function ( n, k ) { - if ( ! n || ( n < k ) ) - throw new RangeError( 'check input values' ) - ; - // bitmap for generating combinations - const bmap = Toni( n ) - // colex recursive generator - , colex_gen = function *( n, k ) { - if ( n === 0 ) yield bmap; - else { - if ( k < n ) { - bmap.del( n - 1 ); - yield* colex_gen( n - 1, k ); - } - if ( k > 0 ) { - bmap.add( n - 1 ); - yield* colex_gen( n - 1, k - 1 ); - } - } - } - // generating colex order for k <= n/2. - , colex_gen_2 = function *( n, k ) { - if ( k === 0 ) yield bmap; - else { - if ( k < n ) { - bmap.del( n - 1 ); - yield* colex_gen_2( n - 1, k ); - } - bmap.add( n - 1 ); - yield* colex_gen_2( n - 1, k - 1); - bmap.del( n - 1 ); - } - } - ; - return ( k > n / 2 ) ? - colex_gen( n , k ) : - colex_gen_2( n, k ) - ; - } - , gen : function *( n, k, set, bitmap ) { - // k should be < n - let list = set || 0 - , llen = list.length - , ok = list && llen && n && ( n >= k ) && ( n <= llen ) - , result, comb, c, bm, b - , iter = null - ; - if ( ! ok ) - throw new RangeError( 'check input values' ) - ; - // iterate on current result - if ( bitmap ) { - // use Toni bitmap - iter = this.get_bm( n, k ); - for ( bm of iter ) { - result = []; - b = 0; - for ( ; b < n; ++b ) - if ( bm.chk( b ) ) result.push( list[ b ] ); - yield result; - } - return; - } - // use a Buffer - iter = this.get( n, k ); - for ( comb of iter ) { - result = []; - c = 0; - for ( ; c < n; ++c ) - if ( comb[ c ] ) result.push( list[ c ] ); - yield result; - } - } - // get total number of combinations - , cnt : ( n, k ) => { - let p = [ 1, 1 ] - , c = 0 - ; - for ( ; c < k; ++c ) { - p[ 0 ] *= n - c; - p[ 1 ] *= k - c; - } - return p[ 0 ] / p[ 1 ]; - } - } - ; + // YYYY-MM + token = parseTokenMM.exec(dateString) + if (token) { + date = new Date(0) + month = parseInt(token[1], 10) - 1 + date.setUTCFullYear(year, month) + return date + } -} )(); + // YYYY-DDD or YYYYDDD + token = parseTokenDDD.exec(dateString) + if (token) { + date = new Date(0) + var dayOfYear = parseInt(token[1], 10) + date.setUTCFullYear(year, 0, dayOfYear) + return date + } + // YYYY-MM-DD or YYYYMMDD + token = parseTokenMMDD.exec(dateString) + if (token) { + date = new Date(0) + month = parseInt(token[1], 10) - 1 + var day = parseInt(token[2], 10) + date.setUTCFullYear(year, month, day) + return date + } -/***/ }), -/* 1259 */ -/***/ (function(module, exports, __webpack_require__) { + // YYYY-Www or YYYYWww + token = parseTokenWww.exec(dateString) + if (token) { + week = parseInt(token[1], 10) - 1 + return dayOfISOYear(year, week) + } -module.exports = __webpack_require__( 1260 ).Toni; + // YYYY-Www-D or YYYYWwwD + token = parseTokenWwwD.exec(dateString) + if (token) { + week = parseInt(token[1], 10) - 1 + var dayOfWeek = parseInt(token[2], 10) - 1 + return dayOfISOYear(year, week, dayOfWeek) + } -/***/ }), -/* 1260 */ -/***/ (function(module, exports) { + // Invalid ISO-formatted date + return null +} -/* - * Toni, a simple and efficient bitmap implementation for positive integer sets - * (max 32 bits), with no element repetition, using bitwise operations and a Buffer. - * Modifying a single bit instead of an entire byte, obviously saves 87.5% of Buffer - * space, but it also implies a gain greater than 200% in performances, when it was - * used with big integer ranges. - * - * http://en.wikipedia.org/wiki/Bit_array - * - * Copyright(c) 2014-present Guglielmo Ferri <44gatti@gmail.com> - * MIT Licensed - */ +function parseTime (timeString) { + var token + var hours + var minutes -exports.Toni = ( function () { - var log = console.log - , abs = Math.abs - , ceil = Math.ceil - , max = Math.max - , min = Math.min - // table of powers - , bpower = new Buffer( [ 128, 64, 32, 16, 8, 4, 2, 1 ] ) - // count the number of bits set to 1 for every 1-byte number - , cbits = function ( b ) { - // divide et impera method for 8 bits - var v = b - ( ( b >>> 1 ) & 0x55 ); - v = ( v & 0x33 ) + ( ( v >>> 2 ) & 0x33 ); - return v + ( v >>> 4 ) & 0x0f; - } - , bctable = ( function () { - var i = 0 - , table = new Buffer( 256 ) - , v = -1 - ; - for ( ; i < 256; ++i ) table[ i ] = cbits( i ); - return table; - } )() - , Toni = function ( range ) { - var me = this - , is = me instanceof Toni - ; - if ( ! is ) return new Toni( range ); - // limit range to 4 bytes, (32 bits numbers) using >>> 0 - var r = ( abs( + range ) >>> 0 ) || 1 - , bytes = max( ceil( r / 8 ), 1 ) - , bitmap = new Buffer( bytes ) - ; - bitmap.fill( 0x00 ); - me.bitmap = bitmap; - // bytes needed - me.bmlen = bytes << 3 >>> 0; - me.items = 0; - me.range = r; - // bit count table for 1 byte - me.bctable = bctable; - } - , tproto = Toni.prototype - ; + // hh + token = parseTokenHH.exec(timeString) + if (token) { + hours = parseFloat(token[1].replace(',', '.')) + return (hours % 24) * MILLISECONDS_IN_HOUR + } - tproto.clear = function () { - var me = this - ; - me.bitmap.fill( 0x00 ); - me.items = 0; - return me; - }; + // hh:mm or hhmm + token = parseTokenHHMM.exec(timeString) + if (token) { + hours = parseInt(token[1], 10) + minutes = parseFloat(token[2].replace(',', '.')) + return (hours % 24) * MILLISECONDS_IN_HOUR + + minutes * MILLISECONDS_IN_MINUTE + } - tproto.add = function ( value ) { - var me = this - , v = abs( value ) - , bitmap = me.bitmap - , range = me.range - ; - // check value range - if ( ( v >= me.bmlen ) || ( v >= range ) ) return -1; - /* - * generally, bucket and mask could be calculated respectively as floor( v / 8 ) - * and bpower[ v % 8 ], but seen that values > 2^32 are not allowed, then we can - * speed up things using bitwise shiftings. - */ - var buck = v >>> 3 - , mask = bpower[ v & 7 ] - , up = mask & bitmap[ buck ] - ; - return up ? -1 : ++me.items | ( bitmap[ buck ] |= mask ); - }; + // hh:mm:ss or hhmmss + token = parseTokenHHMMSS.exec(timeString) + if (token) { + hours = parseInt(token[1], 10) + minutes = parseInt(token[2], 10) + var seconds = parseFloat(token[3].replace(',', '.')) + return (hours % 24) * MILLISECONDS_IN_HOUR + + minutes * MILLISECONDS_IN_MINUTE + + seconds * 1000 + } - // get/access the bit at a given index i, b = B[i] - tproto.chk = function ( value ) { - var me = this - , v = abs( value ) - , range = me.range - ; - // check value range - if ( ( me.bmlen <= v ) || ( v >= range ) ) return 0; - // see #add - return bpower[ v & 7 ] & me.bitmap[ v >>> 3 ] ? 1 : 0; - }; + // Invalid ISO-formatted time + return null +} - tproto.del = function ( value ) { - var me = this - , v = value - , range = me.range - , bitmap = me.bitmap - ; - // check value range - if ( ( me.bmlen <= v ) || ( v >= range ) ) return -1; +function parseTimezone (timezoneString) { + var token + var absoluteOffset - var buck = v >>> 3 - , mask = bpower[ v & 7 ] - , up = mask & bitmap[ buck ] - ; - return up ? --me.items | ( bitmap[ buck ] ^= mask ) : -1; - }; + // Z + token = parseTokenTimezoneZ.exec(timezoneString) + if (token) { + return 0 + } - // it returns the occurrences of bit 1 until index i - tproto.rank = function ( i ) { - var me = this - , bitmap = me.bitmap - , bmlen = me.bmlen - , buck = null - , boff = -1 - , bshift = -1 - , b = 0 - , bcnt = 0 - , index = min( i >>> 0, me.bmlen ) - ; - if ( index > bmlen ) return -1; - // last bucket to count with btable - buck = index >>> 3; - // bits remaining to count - boff = 1 + ( index - ( buck << 3 ) ); - bshift = 8 - boff; + // ±hh + token = parseTokenTimezoneHH.exec(timezoneString) + if (token) { + absoluteOffset = parseInt(token[2], 10) * 60 + return (token[1] === '+') ? -absoluteOffset : absoluteOffset + } - if ( buck ) { - // log( ' - bytes to count: %d', buck ); - for ( b = 0; b < buck ; ++b ) - bcnt += bctable[ bitmap[ b ] ]; - } - bcnt += bctable[ bitmap[ b ] >>> bshift ]; - return bcnt; - }; + // ±hh:mm or ±hhmm + token = parseTokenTimezoneHHMM.exec(timezoneString) + if (token) { + absoluteOffset = parseInt(token[2], 10) * 60 + parseInt(token[3], 10) + return (token[1] === '+') ? -absoluteOffset : absoluteOffset + } - // it returns the position of the i-th occurrence of bit 1 - // tproto.select = function ( index ) { - // var me = this - // ; - // return; - // }; + return 0 +} - return Toni; +function dayOfISOYear (isoYear, week, day) { + week = week || 0 + day = day || 0 + var date = new Date(0) + date.setUTCFullYear(isoYear, 0, 4) + var fourthOfJanuaryDay = date.getUTCDay() || 7 + var diff = week * 7 + day + 1 - fourthOfJanuaryDay + date.setUTCDate(date.getUTCDate() + diff) + return date +} + +module.exports = parse -} )(); /***/ }), -/* 1261 */ +/* 1379 */ /***/ (function(module, exports) { -/* - * Geco, a CAT (Constant Amortized Time) recursive generator* - * for k-combinations, chosen from a given set S of n elements, - * with and without replacement. +var MILLISECONDS_IN_MINUTE = 60000 + +/** + * Google Chrome as of 67.0.3396.87 introduced timezones with offset that includes seconds. + * They usually appear for dates that denote time before the timezones were introduced + * (e.g. for 'Europe/Prague' timezone the offset is GMT+00:57:44 before 1 October 1891 + * and GMT+01:00:00 after that date) * - * https://en.wikipedia.org/wiki/Lexicographical_order#Colexicographic_order + * Date#getTimezoneOffset returns the offset in minutes and would return 57 for the example above, + * which would lead to incorrect calculations. * - * Copyright(c) 2018-present Guglielmo Ferri <44gatti@gmail.com> - * MIT Licensed + * This function returns the timezone offset in milliseconds that takes seconds in account. */ +module.exports = function getTimezoneOffsetInMilliseconds (dirtyDate) { + var date = new Date(dirtyDate.getTime()) + var baseTimezoneOffset = date.getTimezoneOffset() + date.setSeconds(0, 0) + var millisecondsPartOfTimezoneOffset = date.getTime() % MILLISECONDS_IN_MINUTE -module.exports = ( function () { - - const balloc = Buffer.alloc - , bfrom = Buffer.from - , isBuffer = Buffer.isBuffer - , isInteger = Number.isInteger - , mgen = function ( k, v, rep ) { - const rlen = rep.length - // get the total number of elements - , total = ( () => { - let [ i, t ] = [ 1, rep[ 0 ] ]; - if ( rlen > 1 ) - for ( ; i < rlen; ++i ) t += rep[ i ]; - return t; - } )() - // choose the correct fn - , up = k > total >> 1 - // init the correct gen buffer ( v === rlen ), for k > n/2, k <= 2 - , buff = up ? bfrom( rep ) : balloc( v, 0 ) - // k <= n/2, TODO k > n/2 - , colex_gen = function *( k, v, tot ) { - if ( k === 0 ) yield buff; - else { - let c = v - 1 - , occ = rep[ c ] - , r = tot - occ - , l = k > r ? k - r : 0 - , m = occ < k ? occ : k - ; - for ( ; l <= m; ++l ) { - buff[ c ] = l; - yield* colex_gen( k - l, c, r ); - buff[ c ] = 0; - } - } - } - ; - // check k range - if ( k >= total ) new RangeError( 'k value should be lesser than total elements' ); - return colex_gen( k, v, total ) - ; - } - ; - return { - mget : function ( k, v, rep ) { - let rlen = -1 - , b = -1 - , read = null - , write = null - // get the total number of elements - , total = -1 - , ok = k && v && rep - ; - if ( ! ok ) return new RangeError( 'missing or wrong input values' ); - // check repetitions type - if ( isBuffer( rep ) && ( rlen = rep.length ) ) { - b = rlen / v; - if ( b === 1 ) return mgen( k, v, rep ); - if ( ( b !== 2 ) && ( b !== 4 ) ) - return new RangeError( 'repetitions buffer length should be a multiple of v' ); - // set the correct read/write fn, only 4, 2, 1 bytes are allowed - [ read, write ] = [ `readUInt${ b << 3 }BE`, `writeUInt${ b << 3 }BE` ]; - // get the total number of elements - total = ( () => { - let [ i, t ] = [ b, rep[ read ]( 0 ) ]; - if ( rlen > b ) - for ( ; i < rlen; i += b ) t += rep[ read ]( i ); - return t; - } )(); - } else if ( isInteger( rep ) ) { - // use rep value as default repetitions for every value, build a buffer accordingly - if ( rep < 257 ) return mgen( k, v, balloc( v, rep ) ); - if ( rep < 65537 ) b = 2; - else if ( rep < 4294967297 ) b = 4; - else return new RangeError( 'repetitions should be < 2^32 + 1' ); - rlen = v << ( b >>> 1 ); - total = v * rep; - // set the correct read/write fn, only 4, 2, 1 bytes are allowed - [ read, write ] = [ `readUInt${ b << 3 }BE`, `writeUInt${ b << 3 }BE` ]; - rep = balloc( rlen ); - // fill the reference buffer of repetitions with v identical values - for ( let i = 0; i < rlen; i += b ) rep[ write ]( v ); - } else return new RangeError( 'repetitions should be represented as: a buffer or an integer' ); - // check k range - if ( k >= total ) new RangeError( 'k should be lesser than the total sum of repetitions' ); - // choose the correct colex fn - let up = k > total >> 1 - // init the correct gen buffer, for k > n/2, k <= 2 - , buff = up ? bfrom( rep ) : balloc( rlen, 0 ) - // k <= n/2, TODO k > n/2 - , colex_gen = function *( k, v, tot ) { - if ( k === 0 ) yield buff; - else { - let c = v - 1 - , occ = rep[ read ]( c * b ) - , r = tot - occ - , l = k > r ? k - r : 0 - , m = occ < k ? occ : k - ; - for ( ; l <= m; ++l ) { - buff[ write ]( l, c * b ); - yield* colex_gen( k - l, c, r ); - buff[ write ]( 0, c * b ); - } - } - } - ; - return colex_gen( k, v, total ) - ; - } - - } - ; - -} )(); + return baseTimezoneOffset * MILLISECONDS_IN_MINUTE + millisecondsPartOfTimezoneOffset +} /***/ }), -/* 1262 */ -/***/ (function(module, exports, __webpack_require__) { +/* 1380 */ +/***/ (function(module, exports) { /** - * Provides an handy method to log the user in, - * on HTML form pages. On success, it resolves to a promise with a parsed body. + * @category Common Helpers + * @summary Is the given argument an instance of Date? * - * @module signin + * @description + * Is the given argument an instance of Date? + * + * @param {*} argument - the argument to check + * @returns {Boolean} the given argument is an instance of Date + * + * @example + * // Is 'mayonnaise' a Date? + * var result = isDate('mayonnaise') + * //=> false */ -const errors = __webpack_require__(1228); +function isDate (argument) { + return argument instanceof Date +} -const rerrors = __webpack_require__(1263); +module.exports = isDate -const log = __webpack_require__(2).namespace('cozy-konnector-libs'); -const requestFactory = __webpack_require__(22); +/***/ }), +/* 1381 */ +/***/ (function(module, exports, __webpack_require__) { + +var parse = __webpack_require__(1378) -const cheerio = __webpack_require__(275); /** - * Provides an handy method to log the user in, - * on HTML form pages. On success, it resolves to a promise with a parsed body. - * - * Errors: - * - * - LOGIN_FAILED if the validate predicate is false - * - INVALID_FORM if the element matched by `formSelector` is not a form or has - * no `action` attribute - * - UNKNOWN_PARSING_STRATEGY if `parse` is not one of the accepted values: - * `raw`, `cheerio`, `json`. - * - VENDOR_DOWN if a request throws a RequestError, or StatusCodeError - * - * It does not submit values provided through `select` tags, except if populated - * by user with `formData`. - * - * - `url` is the url to access the html form - * - * - `formSelector` is used by cheerio to uniquely identify the form in which to - * log in - * - * - `formData` is an object `{ name: value, … }`. It is used to populate the - * form, in the proper inputs with the same name as the properties of this - * object, before submitting it. It can also be a function that returns this - * object. The page at `url` would be given as argument, right after having - * been parsed through `cheerio`. - * - * - `parse` allow the user to resolve `signin` with a preparsed body. The - * choice of the strategy for the parsing is one of : `raw`, `json` or - * `cheerio`. `cheerio` being the default. + * @category Common Helpers + * @summary Is the first date after the second one? * - * - `validate` is a predicate taking three arguments `statusCode`, `parsedBody` and `fullResponse`. - * If it is false, `LOGIN_FAILED` is thrown, otherwise the - * signin resolves with `parsedBody` value. + * @description + * Is the first date after the second one? * - * - `requestOpts` allows to pass eventual options to the `signin`'s - * `requestFactory`. It could be useful for pages using `latin1` `encoding` - * for instance. + * @param {Date|String|Number} date - the date that should be after the other one to return true + * @param {Date|String|Number} dateToCompare - the date to compare with + * @returns {Boolean} the first date is after the second date * * @example - * == basic example : == - * ```javascript - * const $ = signin({ - * url: `http://quotes.toscrape.com/login`, - * formSelector: 'form', - * formData: { username, password } - * }) - * ``` - * If the behavior of the targeted website is not standard. You can pass a validate function which - * will allow you to: - * - detect if the credentials work or not -> LOGIN_FAILED - * - detect if actions from the user are needed -> USER_ACTION_NEEDED - * - detect if the targeted website is out -> VENDOR_DOWN - * @example - * ```javascript - * const $ = signin({ - * url: `http://quotes.toscrape.com/login`, - * formSelector: 'form', - * formData: { username, password }, - * validate: (statusCode, $, fullResponse) { - * if (statusCode !== 200) return false // LOGIN_FAILED - * if ($('.cgu').length) throw new Error('USER_ACTION_NEEDED') - * if (fullResponse.request.uri.href.includes('error')) throw new Error('VENDOR_DOWN') - * } - * }) - * ``` - * - * Do not forget that the use of the signin function is not mandatory in a connector and won't work - * if the signin page does not use html forms. Here, a simple POST request may be a lot more - * simple. - * @alias module:signin + * // Is 10 July 1989 after 11 February 1987? + * var result = isAfter(new Date(1989, 6, 10), new Date(1987, 1, 11)) + * //=> true */ +function isAfter (dirtyDate, dirtyDateToCompare) { + var date = parse(dirtyDate) + var dateToCompare = parse(dirtyDateToCompare) + return date.getTime() > dateToCompare.getTime() +} +module.exports = isAfter -function signin({ - url, - formSelector, - formData = {}, - parse = 'cheerio', - validate = defaultValidate, - ...requestOpts -} = {}) { - // Check for mandatory arguments - if (url === undefined) { - throw new Error('signin: `url` must be defined'); - } - if (formSelector === undefined) { - throw new Error('signin: `formSelector` must be defined'); - } +/***/ }), +/* 1382 */ +/***/ (function(module, exports, __webpack_require__) { - const rq = requestOpts.requestInstance || requestFactory({ - jar: true, - json: false, - ...requestOpts - }); - const parseBody = getStrategy(parse); - return rq({ - uri: url, - transform: body => cheerio.load(body) - }).catch(handleRequestErrors).then($ => { - const data = typeof formData === 'function' ? formData($) : formData; - const [action, inputs] = parseForm($, formSelector, url); +const groupBy = __webpack_require__(1333) +const sortBy = __webpack_require__(1337) +const { eitherIncludes } = __webpack_require__(1368) - for (let name in data) { - inputs[name] = data[name]; - } +const getDateTransaction = op => op.date.substr(0, 10) - return submitForm(rq, __webpack_require__(83).resolve(url, action), inputs, parseBody, url); - }).then(([statusCode, parsedBody, fullResponse]) => { - if (!validate(statusCode, parsedBody, fullResponse)) { - throw new Error(errors.LOGIN_FAILED); - } else { - return Promise.resolve(parsedBody); - } - }); +/** + * Groups `iterables` via `grouper` and returns an iterator + * that yields [groupKey, groups] + */ +const zipGroup = function*(iterables, grouper) { + const grouped = iterables.map(items => groupBy(items, grouper)) + for (const key of Object.keys(grouped[0]).sort()) { + const groups = grouped.map(keyedGroups => keyedGroups[key] || []) + yield [key, groups] + } } -function defaultValidate(statusCode) { - return statusCode === 200; +const squash = (str, char) => { + const rx = new RegExp(String.raw`${char}{2,}`, 'gi') + return str && str.replace(rx, char) } -function getStrategy(parseStrategy) { - switch (parseStrategy) { - case 'cheerio': - return cheerio.load; +const redactedNumber = /\b[0-9X]+\b/gi +const dateRx = /\b\d{2}\/\d{2}\/\d{4}\b/g - case 'json': - return JSON.parse; +const cleanLabel = label => label && label.replace(redactedNumber, '') +const withoutDate = str => str && str.replace(dateRx, '') +const compacted = str => str && str.replace(/\s/g, '').replace(/-/g, '') - case 'raw': - return body => body; +const scoreLabel = (newTr, existingTr) => { + if ( + squash(existingTr.originalBankLabel, ' ') === + squash(newTr.originalBankLabel, ' ') + ) { + return [200, 'originalBankLabel'] + } else if ( + compacted(existingTr.originalBankLabel) === + compacted(newTr.originalBankLabel) + ) { + return [120, 'originalBankLabelCompacted'] + } else if ( + withoutDate(existingTr.originalBankLabel) === + withoutDate(newTr.originalBankLabel) + ) { + // For some transfers, the date in the originalBankLabel is different between + // BudgetInsight and Linxo + return [150, 'originalBankLabelWithoutDate'] + } else if (existingTr.label === newTr.label) { + return [100, 'label'] + } else if ( + eitherIncludes(existingTr.label.toLowerCase(), newTr.label.toLowerCase()) + ) { + return [70, 'eitherIncludes'] + } else if ( + eitherIncludes( + cleanLabel(existingTr.label.toLowerCase()), + cleanLabel(newTr.label.toLowerCase()) + ) + ) { + return [50, 'fuzzy-eitherIncludes'] + } else { + // Nothing matches, we penalize so that the score is below 0 + return [-1000, 'label-penalty'] + } +} - default: - { - const err = `signin: parsing strategy \`${parseStrategy}\` unknown. `; - const hint = 'Use one of `raw`, `cheerio` or `json`'; - log('error', err + hint); - throw new Error('UNKNOWN_PARSING_STRATEGY'); - } +const DAY = 1000 * 60 * 60 * 24 + +const getDeltaDate = (newTr, existingTr) => { + const nDate1 = new Date(newTr.date.substr(0, 10)) + const eDate1 = new Date(existingTr.date.substr(0, 10)) + const delta = Math.abs(eDate1 - nDate1) + if (newTr.realisationDate) { + const nDate2 = new Date(newTr.realisationDate.substr(0, 10)) + const delta2 = Math.abs(eDate1 - nDate2) + return Math.min(delta, delta2) + } else { + return delta } } -function parseForm($, formSelector, currentUrl) { - const form = $(formSelector).first(); - const action = form.attr('action') || currentUrl; +const scoreMatching = (newTr, existingTr, options = {}) => { + const methods = [] + const res = { + op: existingTr, + methods + } - if (!form.is('form')) { - const err = 'element matching `' + formSelector + '` is not a `form`'; - log('error', err); - throw new Error('INVALID_FORM'); + if (options.maxDateDelta) { + const delta = getDeltaDate(newTr, existingTr) + if (delta > options.maxDateDelta) { + // Early exit, transactions are two far off time-wise + res.points = -1000 + return res + } else { + methods.push('approx-date') + } } - const inputs = {}; - const arr = form.serializeArray(); + const [labelPoints, labelMethod] = scoreLabel(newTr, existingTr) + methods.push(labelMethod) + const amountDiff = Math.abs(existingTr.amount - newTr.amount) + const amountPoints = amountDiff === 0 ? methods.push('amount') && 100 : -1000 - for (let input of arr) { - inputs[input.name] = input.value; + const points = amountPoints + labelPoints + res.points = points + return res +} + +const matchTransaction = (newTr, existingTrs, options = {}) => { + const exactVendorId = existingTrs.find( + existingTr => + existingTr.vendorId && + newTr.vendorId && + existingTr.vendorId === newTr.vendorId + ) + if (exactVendorId) { + return { match: exactVendorId, method: 'vendorId' } } - return [action, inputs]; + // Now we try to do it based on originalBankLabel, label and amount. + // We score candidates according to their degree of matching + // with the current transaction. + // Candidates with score below 0 will be discarded. + const withPoints = existingTrs.map(existingTr => + scoreMatching(newTr, existingTr, options) + ) + + const candidates = sortBy(withPoints, x => -x.points).filter( + x => x.points > 0 + ) + return candidates.length > 0 + ? { + match: candidates[0].op, + method: candidates[0].methods.join('-') + } + : { + candidates + } } -function submitForm(rq, uri, inputs, parseBody, referer) { - return rq({ - uri: uri, - method: 'POST', - form: { ...inputs - }, - transform: (body, response) => [response.statusCode, parseBody(body), response], - headers: { - Referer: referer +/** + * Logic to match a transaction and removing it from the transactions to + * match. `matchingFn` is the function used for matching. + */ +const matchTransactionToGroup = function*(newTrs, existingTrs, options = {}) { + const toMatch = Array.isArray(existingTrs) ? [...existingTrs] : [] + for (let newTr of newTrs) { + const res = { + transaction: newTr } - }).catch(handleRequestErrors); + + const result = + toMatch.length > 0 ? matchTransaction(newTr, toMatch, options) : null + if (result) { + Object.assign(res, result) + const matchIdx = toMatch.indexOf(result.match) + if (matchIdx > -1) { + toMatch.splice(matchIdx, 1) + } + } + yield res + } } -function handleRequestErrors(err) { - if (err instanceof rerrors.RequestError || err instanceof rerrors.StatusCodeError) { - log('error', err); - throw new Error(errors.VENDOR_DOWN); - } else { - return Promise.reject(err); +/** + * Several logics to match transactions. + * + * First group transactions per day and match transactions in + * intra-day mode. + * Then relax the date constraint 1 day per 1 day to reach + * a maximum of 5 days of differences + */ +const matchTransactions = function*(newTrs, existingTrs) { + const unmatchedNew = new Set(newTrs) + const unmatchedExisting = new Set(existingTrs) + // eslint-disable-next-line no-unused-vars + for (let [date, [newGroup, existingGroup]] of zipGroup( + [newTrs, existingTrs], + getDateTransaction + )) { + for (let result of matchTransactionToGroup(newGroup, existingGroup)) { + if (result.match) { + unmatchedExisting.delete(result.match) + unmatchedNew.delete(result.transaction) + yield result + } + } + } + + const deltas = [3, 4, 5] + for (let delta of deltas) { + for (let result of matchTransactionToGroup( + Array.from(unmatchedNew), + Array.from(unmatchedExisting), + { + maxDateDelta: delta * DAY + } + )) { + if (result.method) { + result.method += `-delta${delta}` + } + if (result.match) { + unmatchedExisting.delete(result.match) + unmatchedNew.delete(result.transaction) + } + if (result.match || delta === deltas[deltas.length - 1]) { + yield result + } + } } } -module.exports = signin; +module.exports = { + matchTransactions, + scoreMatching +} + /***/ }), -/* 1263 */ +/* 1383 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +const Document = __webpack_require__(1147) +const sumBy = __webpack_require__(1384) +class BankAccountStats extends Document { + static checkCurrencies(accountsStats) { + const currency = accountsStats[0].currency -module.exports = __webpack_require__(1264); + for (const accountStats of accountsStats) { + if (accountStats.currency !== currency) { + return false + } + } + return true + } -/***/ }), -/* 1264 */ -/***/ (function(module, exports, __webpack_require__) { + static sum(accountsStats) { + if (accountsStats.length === 0) { + throw new Error('You must give at least one stats object') + } -"use strict"; + if (!this.checkCurrencies(accountsStats)) { + throw new Error('Currency of all stats object must be the same.') + } + const properties = [ + 'income', + 'additionalIncome', + 'mortgage', + 'loans', + 'fixedCharges' + ] -module.exports = __webpack_require__(64); + const summedStats = properties.reduce((sums, property) => { + sums[property] = sumBy( + accountsStats, + accountStats => accountStats[property] || 0 + ) + return sums + }, {}) -/***/ }), -/* 1265 */ -/***/ (function(module, exports, __webpack_require__) { + summedStats.currency = accountsStats[0].currency -/** - * Creates or updates the given entries according to if they already - * exist in the cozy or not - * - * @module updateOrCreate - */ -const bluebird = __webpack_require__(25); + return summedStats + } +} -const log = __webpack_require__(2).namespace('updateOrCreate'); +BankAccountStats.doctype = 'io.cozy.bank.accounts.stats' +BankAccountStats.idAttributes = ['_id'] +BankAccountStats.version = 1 +BankAccountStats.checkedAttributes = null -const cozy = __webpack_require__(485); +module.exports = BankAccountStats -const get = __webpack_require__(370); -const { - getCozyMetadata -} = __webpack_require__(833); +/***/ }), +/* 1384 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseIteratee = __webpack_require__(1299), + baseSum = __webpack_require__(1385); + /** - * Creates or updates the given entries according to if they already - * exist in the cozy or not + * This method is like `_.sum` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the value to be summed. + * The iteratee is invoked with one argument: (value). * - * You need the full permission for the given doctype in your manifest, to be able to - * use this function. + * @static + * @memberOf _ + * @since 4.0.0 + * @category Math + * @param {Array} array The array to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the sum. + * @example * - * `entries` (object array): Documents to save - * `doctype` (string): Doctype of the documents - * `matchingAttributes` (string array): attributes in each entry used to check if an entry already exists in the Cozy - * `options` (object): general option affecting metadata : - * + `sourceAccount` (String): id of the source account - * + `sourceAccountIdentifier` (String): identifier unique to the account targetted by the connector. It is the login most of the time + * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]; * - * @alias module:updateOrCreate + * _.sumBy(objects, function(o) { return o.n; }); + * // => 20 + * + * // The `_.property` iteratee shorthand. + * _.sumBy(objects, 'n'); + * // => 20 */ +function sumBy(array, iteratee) { + return (array && array.length) + ? baseSum(array, baseIteratee(iteratee, 2)) + : 0; +} +module.exports = sumBy; -const updateOrCreate = (entries = [], doctype, matchingAttributes = [], options = {}) => { - return cozy.data.findAll(doctype).then(existings => bluebird.mapSeries(entries, entry => { - const metaEntry = { - cozyMetadata: getCozyMetadata({ ...entry.cozyMetadata, - sourceAccount: options.sourceAccount, - sourceAccountIdentifier: options.sourceAccountIdentifier - }), - ...entry - }; // try to find a corresponding existing element - const toUpdate = existings.find(doc => matchingAttributes.reduce((isMatching, matchingAttribute) => isMatching && get(doc, matchingAttribute) === get(metaEntry, matchingAttribute), true)); +/***/ }), +/* 1385 */ +/***/ (function(module, exports) { - if (toUpdate) { - log('debug', 'updating'); - if (toUpdate.cozyMetadata) metaEntry.cozyMetadata.createdAt = toUpdate.cozyMetadata.createdAt; - return cozy.data.updateAttributes(doctype, toUpdate._id, metaEntry); - } else { - log('debug', 'creating'); - return cozy.data.create(doctype, metaEntry); +/** + * The base implementation of `_.sum` and `_.sumBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the sum. + */ +function baseSum(array, iteratee) { + var result, + index = -1, + length = array.length; + + while (++index < length) { + var current = iteratee(array[index]); + if (current !== undefined) { + result = result === undefined ? current : (result + current); } - })); -}; + } + return result; +} + +module.exports = baseSum; -module.exports = updateOrCreate; /***/ }), -/* 1266 */ +/* 1386 */ /***/ (function(module, exports, __webpack_require__) { -/** - * Helper to set or merge io.cozy.identities - * See https://github.com/cozy/cozy-doctypes/blob/master/docs/io.cozy.identities.md - * - * @module saveIdentity - */ -const log = __webpack_require__(2).namespace('saveIdentity'); +const trimEnd = __webpack_require__(1387) +const Document = __webpack_require__(1147) + +const FILENAME_WITH_EXTENSION_REGEX = /(.+)(\..*)$/ -const updateOrCreate = __webpack_require__(1265); /** - * Set or merge a io.cozy.identities - * - * You need full permission for the doctype io.cozy.identities in your - * manifest, to be able to use this function. - * - * Parameters: - * - * `contact` (object): the identity to create/update as an object io.cozy.contacts - * `accountIdentifier` (string): a string that represent the account use, if available fields.login - * `options` (object): options which will be given to updateOrCreate directly : - * + `sourceAccount` (String): id of the source account - * + `sourceAccountIdentifier` (String): identifier unique to the account targetted by the connector. It is the login most of the time - * - * - * ```javascript - * const { saveIdentity } = require('cozy-konnector-libs') - * const identity = - * { - * name: 'toto', - * email: { 'address': 'toto@example.com' } - * } - * - * return saveIdentity(identity, fields.login) - * ``` - * - * @alias module:saveIdentity + * Class representing the file model. + * @extends Document */ +class CozyFile extends Document { + /** + * async getFullpath - Gets a file's path + * + * @param {string} dirID The id of the parent directory + * @param {string} name The file's name + * @return {string} The full path of the file in the cozy + **/ + static async getFullpath(dirId, name) { + if (!dirId) { + throw new Error('You must provide a dirId') + } + const parentDir = await this.get(dirId) + const parentDirectoryPath = trimEnd(parentDir.path, '/') + return `${parentDirectoryPath}/${name}` + } -const saveIdentity = async (contact, accountIdentifier, options = {}) => { - log('debug', 'saving user identity'); + /** + * Move file to destination. + * + * @param {string} fileId - The file's id (required) + * @param {object} destination + * @param {string} destination.folderId - The destination folder's id (required) + * @param {string} destination.path - The file's path after the move (optional, used to optimize performance in case of conflict) + * @param {string} force - Whether we should overwrite the destination in case of conflict (defaults to false) + * @returns {Promise} - A promise that returns the move action response and the deleted file id (if any) if resolved or an Error if rejected + * + */ + static async move(fileId, destination, force = false) { + const { folderId, path } = destination + const filesCollection = this.cozyClient.collection('io.cozy.files') + try { + const resp = await filesCollection.updateFileMetadata(fileId, { + dir_id: folderId + }) - if (accountIdentifier == null) { - log('warn', "Can't set identity as no accountIdentifier was provided"); - return; + return { + moved: resp.data, + deleted: null + } + } catch (e) { + if (e.status === 409 && force) { + let destinationPath + if (path) { + destinationPath = path + } else { + const movedFile = await this.get(fileId) + const filename = movedFile.name + destinationPath = await this.getFullpath(folderId, filename) + } + const conflictResp = await filesCollection.statByPath(destinationPath) + await filesCollection.destroy(conflictResp.data) + const resp = await filesCollection.updateFileMetadata(fileId, { + dir_id: folderId + }) + + return { + moved: resp.data, + deleted: conflictResp.data.id + } + } else { + throw e + } + } } + /** + * Method to split both the filename and the extension + * + * @param {Object} file An io.cozy.files + * @return {Object} return an object with {filename: , extension: } + */ + static splitFilename(file) { + if (!file.name) throw new Error('file should have a name property ') - if (contact == null) { - log('warn', "Can't set identity as no contact was provided"); - return; - } // Format contact if needed + if (file.type === 'file') { + const match = file.name.match(FILENAME_WITH_EXTENSION_REGEX) + if (match) { + return { filename: match[1], extension: match[2] } + } + } + return { filename: file.name, extension: '' } + } + /** + * + * Method to upload a file even if a file with the same name already exists. + * + * @param {String} path Fullpath for the file ex: path/to/ + * @param {Object} file HTML Object file + * @param {Object} metadata An object containing the wanted metadata to attach + */ + static async overrideFileForPath(pathArg, file, metadata) { + let path = pathArg + if (!path.endsWith('/')) path = path + '/' + const filesCollection = this.cozyClient.collection('io.cozy.files') + try { + const existingFile = await filesCollection.statByPath(path + file.name) - if (contact.phone) { - contact.phone = formatPhone(contact.phone); + const { id: fileId, dir_id: dirId } = existingFile.data + const resp = await filesCollection.updateFile(file, { + dirId, + fileId, + metadata + }) + return resp + } catch (error) { + if (/Not Found/.test(error)) { + const dirId = await filesCollection.ensureDirectoryExists(path) + const createdFile = await filesCollection.createFile(file, { + dirId, + metadata + }) + return createdFile + } + throw error + } + } + /** + * Method to generate a new filename if there is a conflict + * + * @param {String} filenameWithoutExtension A filename without the extension + * @return {String} A filename with the right suffix + */ + static generateNewFileNameOnConflict(filenameWithoutExtension) { + // Check if the string ends by _1 + const regex = new RegExp('(_)([0-9]+)$') + const matches = filenameWithoutExtension.match(regex) + if (matches) { + let versionNumber = parseInt(matches[2]) + // increment versionNumber + versionNumber++ + const newFilenameWithoutExtension = filenameWithoutExtension.replace( + new RegExp('(_)([0-9]+)$'), + `_${versionNumber}` + ) + return newFilenameWithoutExtension + } else { + return `${filenameWithoutExtension}_1` + } } - if (contact.address) { - contact.address = formatAddress(contact.address); + static generateFileNameForRevision(file, revision, f) { + const { filename, extension } = CozyFile.splitFilename({ + name: file.name, + type: 'file' + }) + return `${filename}_${f( + revision.updated_at, + 'DD MMMM - HH[h]mm' + )}${extension}` + } + /** + * The goal of this method is to upload a file based on a conflict strategy. + * Be careful: We need to check if the file exists by doing a statByPath query + * before trying to upload the file since if we post and the stack return a + * 409 conflict, we will get a SPDY_ERROR_PROTOCOL on Chrome. This is the only + * viable workaround + * If there is no conflict, then we upload the file. + * If there is a conflict, then we apply the conflict strategy : `erase` or `rename` + * @param {String} name File Name + * @param {ArrayBuffer} file data + * @param {String} dirId dir id where to upload + * @param {String} conflictStrategy Actually only 2 hardcoded strategies 'erase' or 'rename' + * @param {Object} metadata An object containing the metadata to attach + * @param {String} contentType content type of the file + */ + static async uploadFileWithConflictStrategy( + name, + file, + dirId, + conflictStrategy, + metadata, + contentType + ) { + const filesCollection = this.cozyClient.collection('io.cozy.files') + + try { + const path = await CozyFile.getFullpath(dirId, name) + + const existingFile = await filesCollection.statByPath(path) + const { id: fileId } = existingFile.data + if (conflictStrategy === 'erase') { + // !TODO Bug Fix. Seems we have to pass a name attribute ?! + const resp = await filesCollection.updateFile(file, { + dirId, + fileId, + name, + metadata, + contentType + }) + return resp + } else { + const { filename, extension } = CozyFile.splitFilename({ + name, + type: 'file' + }) + const newFileName = + CozyFile.generateNewFileNameOnConflict(filename) + extension + // recall itself with the newFilename. + return CozyFile.uploadFileWithConflictStrategy( + newFileName, + file, + dirId, + conflictStrategy, + metadata, + contentType + ) + } + } catch (error) { + if (/Not Found/.test(error.message)) { + return await CozyFile.upload(name, file, dirId, metadata, contentType) + } + throw error + } + } + /** + * + * @param {String} name File's name + * @param {ArrayBuffer} file + * @param {String} dirId + * @param {Object} metadata + * @param {String} contentType + */ + static async upload(name, file, dirId, metadata, contentType = 'image/jpeg') { + return this.cozyClient.collection('io.cozy.files').createFile(file, { + name, + dirId, + contentType, + lastModifiedDate: new Date(), + metadata + }) } +} - const identity = { - identifier: accountIdentifier, - contact - }; - await updateOrCreate([identity], 'io.cozy.identities', ['identifier', 'cozyMetadata.createdByApp'], { ...options, - sourceAccountIdentifier: accountIdentifier - }); - return; -}; -/* Remove html and cariage return in address - */ +CozyFile.doctype = 'io.cozy.files' +module.exports = CozyFile -function formatAddress(address) { - for (const element of address) { - if (element.formattedAddress) { - element.formattedAddress = element.formattedAddress.replace(/<[^>]*>/g, '') // Remove all html Tag - .replace(/\r\n|[\n\r]/g, ' '); // Remove all kind of return character - address[address.indexOf(element)] = element; - } +/***/ }), +/* 1387 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseToString = __webpack_require__(1265), + castSlice = __webpack_require__(1388), + charsEndIndex = __webpack_require__(1389), + stringToArray = __webpack_require__(1394), + toString = __webpack_require__(1264); + +/** Used to match leading and trailing whitespace. */ +var reTrimEnd = /\s+$/; + +/** + * Removes trailing whitespace or specified characters from `string`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category String + * @param {string} [string=''] The string to trim. + * @param {string} [chars=whitespace] The characters to trim. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {string} Returns the trimmed string. + * @example + * + * _.trimEnd(' abc '); + * // => ' abc' + * + * _.trimEnd('-_-abc-_-', '_-'); + * // => '-_-abc' + */ +function trimEnd(string, chars, guard) { + string = toString(string); + if (string && (guard || chars === undefined)) { + return string.replace(reTrimEnd, ''); } + if (!string || !(chars = baseToString(chars))) { + return string; + } + var strSymbols = stringToArray(string), + end = charsEndIndex(strSymbols, stringToArray(chars)) + 1; - return address; + return castSlice(strSymbols, 0, end).join(''); } -/* Replace all characters in a phone number except '+' or digits - */ +module.exports = trimEnd; -function formatPhone(phone) { - for (const element of phone) { - if (element.number) { - element.number = element.number.replace(/[^\d.+]/g, ''); - phone[phone.indexOf(element)] = element; - } - } - return phone; +/***/ }), +/* 1388 */ +/***/ (function(module, exports, __webpack_require__) { + +var baseSlice = __webpack_require__(1270); + +/** + * Casts `array` to a slice if it's needed. + * + * @private + * @param {Array} array The array to inspect. + * @param {number} start The start position. + * @param {number} [end=array.length] The end position. + * @returns {Array} Returns the cast slice. + */ +function castSlice(array, start, end) { + var length = array.length; + end = end === undefined ? length : end; + return (!start && end >= length) ? array : baseSlice(array, start, end); } -module.exports = saveIdentity; +module.exports = castSlice; + /***/ }), -/* 1267 */ +/* 1389 */ /***/ (function(module, exports, __webpack_require__) { -/* global __APP_VERSION__ */ -const log = __webpack_require__(2); - -const Raven = __webpack_require__(1268); +var baseIndexOf = __webpack_require__(1390); -const { - getDomain, - getInstance -} = __webpack_require__(1296); +/** + * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol + * that is not found in the character symbols. + * + * @private + * @param {Array} strSymbols The string symbols to inspect. + * @param {Array} chrSymbols The character symbols to find. + * @returns {number} Returns the index of the last unmatched string symbol. + */ +function charsEndIndex(strSymbols, chrSymbols) { + var index = strSymbols.length; -let isRavenConfigured = false; -const ENV_DEV = 'development'; -const ENV_SELF = 'selfhost'; -const ENV_PROD = 'production'; -const domainToEnv = { - 'cozy.tools': ENV_DEV, - 'cozy.works': ENV_DEV, - 'cozy.rocks': ENV_PROD, - 'mycozy.cloud': ENV_PROD -}; + while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {} + return index; +} -const getEnvironmentFromDomain = domain => { - return domainToEnv[domain] || ENV_SELF; -}; // Available in Projet > Settings > Client Keys -// Example : https://5f94cb7772deadbeef123456:39e4e34fdeadbeef123456a9ae31caba74c@sentry.cozycloud.cc/12 +module.exports = charsEndIndex; -const SENTRY_DSN = process.env.SENTRY_DSN; +/***/ }), +/* 1390 */ +/***/ (function(module, exports, __webpack_require__) { -const afterFatalError = function (_err, sendErr, eventId) { - if (!sendErr) { - log('debug', 'Successfully sent fatal error with eventId ' + eventId + ' to Sentry'); - } +var baseFindIndex = __webpack_require__(1391), + baseIsNaN = __webpack_require__(1392), + strictIndexOf = __webpack_require__(1393); - process.exit(1); -}; +/** + * The base implementation of `_.indexOf` without `fromIndex` bounds checks. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ +function baseIndexOf(array, value, fromIndex) { + return value === value + ? strictIndexOf(array, value, fromIndex) + : baseFindIndex(array, baseIsNaN, fromIndex); +} -const afterCaptureException = function (sendErr, eventId) { - if (!sendErr) { - log('debug', 'Successfully sent exception with eventId ' + eventId + ' to Sentry'); - } +module.exports = baseIndexOf; - process.exit(1); -}; -const setupSentry = function () { - try { - log('debug', 'process.env.SENTRY_DSN found, setting up Raven'); - const release = typeof __APP_VERSION__ !== 'undefined' ? __APP_VERSION__ : 'dev'; - const domain = getDomain(); - const environment = getEnvironmentFromDomain(domain); - const instance = getInstance(); - Raven.config(SENTRY_DSN, { - release, - environment, - autoBreadcrumbs: { - console: true - } - }).install(afterFatalError); - Raven.mergeContext({ - tags: { - domain, - instance - } - }); - isRavenConfigured = true; - log('debug', 'Raven configured !'); - } catch (e) { - log('warn', 'Could not load Raven, errors will not be sent to Sentry'); - log('warn', e); - } -}; +/***/ }), +/* 1391 */ +/***/ (function(module, exports) { -module.exports.captureExceptionAndDie = function (err) { - log('debug', 'Capture exception and die'); +/** + * The base implementation of `_.findIndex` and `_.findLastIndex` without + * support for iteratee shorthands. + * + * @private + * @param {Array} array The array to inspect. + * @param {Function} predicate The function invoked per iteration. + * @param {number} fromIndex The index to search from. + * @param {boolean} [fromRight] Specify iterating from right to left. + * @returns {number} Returns the index of the matched value, else `-1`. + */ +function baseFindIndex(array, predicate, fromIndex, fromRight) { + var length = array.length, + index = fromIndex + (fromRight ? 1 : -1); - if (!isRavenConfigured) { - process.exit(1); - } else { - try { - log('debug', 'Sending exception to Sentry'); - Raven.captureException(err, { - fingerprint: [err.message || err] - }, afterCaptureException); - } catch (e) { - log('warn', 'Could not send error to Sentry, exiting...'); - log('warn', e); - log('warn', err); - process.exit(1); + while ((fromRight ? index-- : ++index < length)) { + if (predicate(array[index], index, array)) { + return index; } } -}; + return -1; +} -module.exports.wrapIfSentrySetUp = function (obj, method) { - if (SENTRY_DSN && SENTRY_DSN !== 'false') { - obj[method] = Raven.wrap(obj[method]); - } -}; +module.exports = baseFindIndex; -if (SENTRY_DSN && SENTRY_DSN !== 'false') { - setupSentry(); -} /***/ }), -/* 1268 */ -/***/ (function(module, exports, __webpack_require__) { +/* 1392 */ +/***/ (function(module, exports) { -"use strict"; +/** + * The base implementation of `_.isNaN` without support for number objects. + * + * @private + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. + */ +function baseIsNaN(value) { + return value !== value; +} +module.exports = baseIsNaN; -module.exports = __webpack_require__(1269); -module.exports.utils = __webpack_require__(1273); -module.exports.transports = __webpack_require__(1274); -module.exports.parsers = __webpack_require__(1271); +/***/ }), +/* 1393 */ +/***/ (function(module, exports) { -// To infinity and beyond -Error.stackTraceLimit = Infinity; +/** + * A specialized version of `_.indexOf` which performs strict equality + * comparisons of values, i.e. `===`. + * + * @private + * @param {Array} array The array to inspect. + * @param {*} value The value to search for. + * @param {number} fromIndex The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + */ +function strictIndexOf(array, value, fromIndex) { + var index = fromIndex - 1, + length = array.length; + + while (++index < length) { + if (array[index] === value) { + return index; + } + } + return -1; +} + +module.exports = strictIndexOf; /***/ }), -/* 1269 */ +/* 1394 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var asciiToArray = __webpack_require__(1395), + hasUnicode = __webpack_require__(1296), + unicodeToArray = __webpack_require__(1396); +/** + * Converts `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ +function stringToArray(string) { + return hasUnicode(string) + ? unicodeToArray(string) + : asciiToArray(string); +} -var stringify = __webpack_require__(1270); -var parsers = __webpack_require__(1271); -var zlib = __webpack_require__(101); -var utils = __webpack_require__(1273); -var uuid = __webpack_require__(1279); -var transports = __webpack_require__(1274); -var nodeUtil = __webpack_require__(9); // nodeUtil to avoid confusion with "utils" -var events = __webpack_require__(271); -var domain = __webpack_require__(1284); -var md5 = __webpack_require__(1285); +module.exports = stringToArray; -var instrumentor = __webpack_require__(1289); -var extend = utils.extend; +/***/ }), +/* 1395 */ +/***/ (function(module, exports) { -function Raven() { - this.breadcrumbs = { - record: this.captureBreadcrumb.bind(this) - }; +/** + * Converts an ASCII `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ +function asciiToArray(string) { + return string.split(''); } -nodeUtil.inherits(Raven, events.EventEmitter); - -extend(Raven.prototype, { - config: function config(dsn, options) { - // We get lots of users using raven-node when they want raven-js, hence this warning if it seems like a browser - if ( - typeof window !== 'undefined' && - typeof document !== 'undefined' && - typeof navigator !== 'undefined' - ) { - utils.consoleAlertOnce( - "This looks like a browser environment; are you sure you don't want Raven.js for browser JavaScript? https://sentry.io/for/javascript" - ); - } +module.exports = asciiToArray; - if (arguments.length === 0) { - // no arguments, use default from environment - dsn = global.process.env.SENTRY_DSN; - options = {}; - } - if (typeof dsn === 'object') { - // They must only be passing through options - options = dsn; - dsn = global.process.env.SENTRY_DSN; - } - options = options || {}; - this.raw_dsn = dsn; - this.dsn = utils.parseDSN(dsn); - this.name = - options.name || global.process.env.SENTRY_NAME || __webpack_require__(19).hostname(); - this.root = options.root || global.process.cwd(); - this.transport = options.transport || transports[this.dsn.protocol]; - this.sendTimeout = options.sendTimeout || 1; - this.release = options.release || global.process.env.SENTRY_RELEASE; - this.environment = - options.environment || - global.process.env.SENTRY_ENVIRONMENT || - global.process.env.NODE_ENV; +/***/ }), +/* 1396 */ +/***/ (function(module, exports) { - // autoBreadcrumbs: true enables all, autoBreadcrumbs: false disables all - // autoBreadcrumbs: { http: true } enables a single type - this.autoBreadcrumbs = options.autoBreadcrumbs || false; - // default to 30, don't allow higher than 100 - this.maxBreadcrumbs = Math.max(0, Math.min(options.maxBreadcrumbs || 30, 100)); +/** Used to compose unicode character classes. */ +var rsAstralRange = '\\ud800-\\udfff', + rsComboMarksRange = '\\u0300-\\u036f', + reComboHalfMarksRange = '\\ufe20-\\ufe2f', + rsComboSymbolsRange = '\\u20d0-\\u20ff', + rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange, + rsVarRange = '\\ufe0e\\ufe0f'; - this.captureUnhandledRejections = options.captureUnhandledRejections; - this.loggerName = options.logger; - this.dataCallback = options.dataCallback; - this.shouldSendCallback = options.shouldSendCallback; - this.sampleRate = typeof options.sampleRate === 'undefined' ? 1 : options.sampleRate; - this.maxReqQueueCount = options.maxReqQueueCount || 100; - this.parseUser = options.parseUser; - this.stacktrace = options.stacktrace || false; +/** Used to compose unicode capture groups. */ +var rsAstral = '[' + rsAstralRange + ']', + rsCombo = '[' + rsComboRange + ']', + rsFitz = '\\ud83c[\\udffb-\\udfff]', + rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')', + rsNonAstral = '[^' + rsAstralRange + ']', + rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}', + rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]', + rsZWJ = '\\u200d'; - if (!this.dsn) { - utils.consoleAlert('no DSN provided, error reporting disabled'); - } +/** Used to compose unicode regexes. */ +var reOptMod = rsModifier + '?', + rsOptVar = '[' + rsVarRange + ']?', + rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*', + rsSeq = rsOptVar + reOptMod + rsOptJoin, + rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')'; - if (this.dsn.protocol === 'https') { - // In case we want to provide our own SSL certificates / keys - this.ca = options.ca || null; - } +/** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */ +var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g'); - // enabled if a dsn is set - this._enabled = !!this.dsn; +/** + * Converts a Unicode `string` to an array. + * + * @private + * @param {string} string The string to convert. + * @returns {Array} Returns the converted array. + */ +function unicodeToArray(string) { + return string.match(reUnicode) || []; +} - var globalContext = (this._globalContext = {}); - if (options.tags) { - globalContext.tags = options.tags; - } - if (options.extra) { - globalContext.extra = options.extra; - } +module.exports = unicodeToArray; - this.onFatalError = this.defaultOnFatalError = function(err, sendErr, eventId) { - console.error(err && err.stack ? err.stack : err); - global.process.exit(1); - }; - this.uncaughtErrorHandler = this.makeErrorHandler(); - this.on('error', function(err) { - utils.consoleAlert('failed to send exception to sentry: ' + err.message); - }); +/***/ }), +/* 1397 */ +/***/ (function(module, exports, __webpack_require__) { - return this; - }, +const Application = __webpack_require__(1356) +const CozyFile = __webpack_require__(1386) - install: function install(cb) { - if (this.installed) return this; +/** + * Class representing the folder model. + * @extends CozyFile + */ +class CozyFolder extends CozyFile { + /** + * Create a folder with a reference to the given document + * @param {String} path Folder path + * @param {Object} document Document to make reference to. Any doctype. + * @return {Object} Folder document + */ + static async createFolderWithReference(path, document) { + const collection = this.cozyClient.collection(CozyFile.doctype) + const dirId = await collection.ensureDirectoryExists(path) + await collection.addReferencesTo(document, [ + { + _id: dirId + } + ]) - if (typeof cb === 'function') { - this.onFatalError = cb; - } + const { data: dirInfos } = await collection.get(dirId) - global.process.on('uncaughtException', this.uncaughtErrorHandler); + return dirInfos + } - if (this.captureUnhandledRejections) { - var self = this; - global.process.on('unhandledRejection', function(reason, promise) { - var context = (promise.domain && promise.domain.sentryContext) || {}; - context.extra = context.extra || {}; - context.extra.unhandledPromiseRejection = true; - self.captureException(reason, context, function(sendErr, eventId) { - if (!sendErr) { - var reasonMessage = (reason && reason.message) || reason; - utils.consoleAlert( - 'unhandledRejection captured\n' + - 'Event ID: ' + - eventId + - '\n' + - 'Reason: ' + - reasonMessage - ); - } - }); - }); + /** + * Returns a "Magic Folder", given its id + * @param {String} id Magic Folder id. `CozyFolder.magicFolders` contains the + * ids of folders that can be magic folders. + * @param {String} path Default path to use if magic folder does not exist + * @return {Object} Folder document + */ + static async ensureMagicFolder(id, path) { + const magicFolderDocument = { + _type: Application.doctype, + _id: id } + const folders = await this.getReferencedFolders(magicFolderDocument) + const existingMagicFolder = folders.length ? folders[0] : null - instrumentor.instrument(this, this.autoBreadcrumbs); - - this.installed = true; - - return this; - }, + if (existingMagicFolder) return existingMagicFolder - uninstall: function uninstall() { - if (!this.installed) return this; + const magicFoldersValues = Object.values(this.magicFolders) + if (!magicFoldersValues.includes(id)) { + throw new Error( + `Cannot create Magic folder with id ${id}. Allowed values are ${magicFoldersValues.join( + ', ' + )}.` + ) + } - instrumentor.deinstrument(this); + if (!path) { + throw new Error('Magic folder default path must be defined') + } - // todo: this works for tests for now, but isn't what we ultimately want to be doing - global.process.removeAllListeners('uncaughtException'); - global.process.removeAllListeners('unhandledRejection'); + return this.createFolderWithReference(path, magicFolderDocument) + } - this.installed = false; + /** + * Returns an array of folder referenced by the given document + * @param {Object} document Document to get references from + * @return {Array} Array of folders referenced with the given + * document + */ + static async getReferencedFolders(document) { + const { included } = await this.cozyClient + .collection(CozyFile.doctype) + .findReferencedBy(document) + return included.filter(folder => !this.isTrashed(folder)) + } - return this; - }, + /** + * Returns an unique folder referenced with the given reference. Creates it + * if it does not exist. + * @param {String} path Path used to create folder if the referenced + * folder does not exist. + * @param {Object} document Document to create references from + * @return {Objet} Folder referenced with the give reference + */ + static async ensureFolderWithReference(path, document) { + const existingFolders = await this.getReferencedFolders(document) + if (existingFolders.length) return existingFolders[0] - makeErrorHandler: function() { - var self = this; - var caughtFirstError = false; - var caughtSecondError = false; - var calledFatalError = false; - var firstError; - return function(err) { - if (!caughtFirstError) { - // this is the first uncaught error and the ultimate reason for shutting down - // we want to do absolutely everything possible to ensure it gets captured - // also we want to make sure we don't go recursion crazy if more errors happen after this one - firstError = err; - caughtFirstError = true; - self.captureException(err, {level: 'fatal'}, function(sendErr, eventId) { - if (!calledFatalError) { - calledFatalError = true; - self.onFatalError(err, sendErr, eventId); - } - }); - } else if (calledFatalError) { - // we hit an error *after* calling onFatalError - pretty boned at this point, just shut it down - utils.consoleAlert( - 'uncaught exception after calling fatal error shutdown callback - this is bad! forcing shutdown' - ); - self.defaultOnFatalError(err); - } else if (!caughtSecondError) { - // two cases for how we can hit this branch: - // - capturing of first error blew up and we just caught the exception from that - // - quit trying to capture, proceed with shutdown - // - a second independent error happened while waiting for first error to capture - // - want to avoid causing premature shutdown before first error capture finishes - // it's hard to immediately tell case 1 from case 2 without doing some fancy/questionable domain stuff - // so let's instead just delay a bit before we proceed with our action here - // in case 1, we just wait a bit unnecessarily but ultimately do the same thing - // in case 2, the delay hopefully made us wait long enough for the capture to finish - // two potential nonideal outcomes: - // nonideal case 1: capturing fails fast, we sit around for a few seconds unnecessarily before proceeding correctly by calling onFatalError - // nonideal case 2: case 2 happens, 1st error is captured but slowly, timeout completes before capture and we treat second error as the sendErr of (nonexistent) failure from trying to capture first error - // note that after hitting this branch, we might catch more errors where (caughtSecondError && !calledFatalError) - // we ignore them - they don't matter to us, we're just waiting for the second error timeout to finish - caughtSecondError = true; - setTimeout(function() { - if (!calledFatalError) { - // it was probably case 1, let's treat err as the sendErr and call onFatalError - calledFatalError = true; - self.onFatalError(firstError, err); - } else { - // it was probably case 2, our first error finished capturing while we waited, cool, do nothing - } - }, (self.sendTimeout + 1) * 1000); // capturing could take at least sendTimeout to fail, plus an arbitrary second for how long it takes to collect surrounding source etc + const collection = this.cozyClient.collection(CozyFile.doctype) + const dirId = await collection.ensureDirectoryExists(path) + await collection.addReferencesTo(document, [ + { + _id: dirId } - }; - }, - - generateEventId: function generateEventId() { - return uuid().replace(/-/g, ''); - }, - - process: function process(eventId, kwargs, cb) { - // prod codepaths shouldn't hit this branch, for testing - if (typeof eventId === 'object') { - cb = kwargs; - kwargs = eventId; - eventId = this.generateEventId(); - } - - var domainContext = (domain.active && domain.active.sentryContext) || {}; - var globalContext = this._globalContext || {}; - kwargs.user = extend({}, globalContext.user, domainContext.user, kwargs.user); - kwargs.tags = extend({}, globalContext.tags, domainContext.tags, kwargs.tags); - kwargs.extra = extend({}, globalContext.extra, domainContext.extra, kwargs.extra); - // Perform a shallow copy of breadcrums to not send one that we'll capture below through as well - kwargs.breadcrumbs = { - values: - (domainContext.breadcrumbs && domainContext.breadcrumbs.slice()) || - (globalContext.breadcrumbs && globalContext.breadcrumbs.slice()) || - [] - }; + ]) - /* - `request` is our specified property name for the http interface: https://docs.sentry.io/clientdev/interfaces/http/ - `req` is the conventional name for a request object in node/express/etc - we want to enable someone to pass a `request` property to kwargs according to http interface - but also want to provide convenience for passing a req object and having us parse it out - so we only parse a `req` property if the `request` property is absent/empty (and hence we won't clobber) - parseUser returns a partial kwargs object with a `request` property and possibly a `user` property - */ - var request = this._createRequestObject( - globalContext.request, - domainContext.request, - kwargs.request - ); - delete kwargs.request; + const { data: dirInfos } = await collection.get(dirId) - if (Object.keys(request).length === 0) { - request = this._createRequestObject( - globalContext.req, - domainContext.req, - kwargs.req - ); - delete kwargs.req; - } + return dirInfos + } - if (Object.keys(request).length > 0) { - var parseUser = Object.keys(kwargs.user).length === 0 ? this.parseUser : false; - extend(kwargs, parsers.parseRequest(request, parseUser)); - } else { - kwargs.request = {}; - } + /** + * Indicates if a folder is in trash + * @param {Object} folder `io.cozy.files` document + * @return {Boolean} `true` if the folder is in trash, `false` + * otherwise. + */ + static isTrashed(folder) { + return /^\/\.cozy_trash/.test(folder.attributes.path) + } +} - kwargs.modules = utils.getModules(); - kwargs.server_name = kwargs.server_name || this.name; +/** + * References used by the Cozy platform and apps for specific folders. + */ +CozyFolder.magicFolders = { + ADMINISTRATIVE: `${Application.doctype}/administrative`, + PHOTOS: `${Application.doctype}/photos`, + PHOTOS_BACKUP: `${Application.doctype}/photos/mobile`, + PHOTOS_UPLOAD: `${Application.doctype}/photos/upload`, + NOTES_FOLDER: `${Application.doctype}/notes` +} - if (typeof global.process.version !== 'undefined') { - kwargs.extra.node = global.process.version; - } +module.exports = CozyFolder - kwargs.environment = kwargs.environment || this.environment; - kwargs.logger = kwargs.logger || this.loggerName; - kwargs.event_id = eventId; - kwargs.timestamp = new Date().toISOString().split('.')[0]; - kwargs.project = this.dsn && this.dsn.project_id; - kwargs.platform = 'node'; - kwargs.release = this.release; - // Cleanup empty properties before sending them to the server - Object.keys(kwargs).forEach(function(key) { - if (kwargs[key] == null || kwargs[key] === '') { - delete kwargs[key]; - } - }); +/***/ }), +/* 1398 */ +/***/ (function(module, exports, __webpack_require__) { - if (this.dataCallback) { - kwargs = this.dataCallback(kwargs); - } +const PropTypes = __webpack_require__(1348) - // Capture breadcrumb before sending it, as we also want to have it even when - // it was dropped due to sampleRate or shouldSendCallback - this.captureBreadcrumb({ - category: 'sentry', - message: kwargs.message, - event_id: kwargs.event_id, - level: kwargs.level || 'error' // presume error unless specified - }); +const Document = __webpack_require__(1147) - var shouldSend = true; - if (!this._enabled) shouldSend = false; - if (this.shouldSendCallback && !this.shouldSendCallback(kwargs)) shouldSend = false; - if (Math.random() >= this.sampleRate) shouldSend = false; +class Group extends Document {} - if (shouldSend) { - this.send(kwargs, cb); - } else { - // wish there was a good way to communicate to cb why we didn't send; worth considering cb api change? - // could be shouldSendCallback, could be disabled, could be sample rate - // avoiding setImmediate here because node 0.8 - cb && - setTimeout(function() { - cb(null, eventId); - }, 0); - } - }, +const GroupShape = PropTypes.shape({ + _id: PropTypes.string.isRequired, + _type: PropTypes.string.isRequired, + name: PropTypes.string.isRequired, + trashed: PropTypes.bool +}) - send: function send(kwargs, cb) { - var self = this; - var skwargs = stringify(kwargs); - var eventId = kwargs.event_id; +Group.doctype = 'io.cozy.contacts.groups' +Group.propType = GroupShape - zlib.deflate(skwargs, function(err, buff) { - var message = buff.toString('base64'), - timestamp = new Date().getTime(), - headers = { - 'X-Sentry-Auth': utils.getAuthHeader( - timestamp, - self.dsn.public_key, - self.dsn.private_key - ), - 'Content-Type': 'application/octet-stream', - 'Content-Length': message.length - }; +module.exports = Group - self.transport.send(self, message, headers, eventId, cb); - }); - }, - captureMessage: function captureMessage(message, kwargs, cb) { - if (!cb && typeof kwargs === 'function') { - cb = kwargs; - kwargs = {}; - } else { - kwargs = utils.isPlainObject(kwargs) ? extend({}, kwargs) : {}; - } +/***/ }), +/* 1399 */ +/***/ (function(module, exports, __webpack_require__) { - var eventId = this.generateEventId(); +const Document = __webpack_require__(1147) - if (this.stacktrace) { - var ex = new Error(message); +class Permission extends Document {} - console.log(ex); +Permission.schema = { + doctype: 'io.cozy.permissions', + attributes: {} +} - utils.parseStack( - ex, - function(frames) { - // We trim last frame, as it's our `new Error(message)` statement itself, which is redundant - kwargs.stacktrace = { - frames: frames.slice(0, -1) - }; - this.process(eventId, parsers.parseText(message, kwargs), cb); - }.bind(this) - ); - } else { - this.process(eventId, parsers.parseText(message, kwargs), cb); - } +module.exports = Permission - return eventId; - }, - captureException: function captureException(err, kwargs, cb) { - if (!cb && typeof kwargs === 'function') { - cb = kwargs; - kwargs = {}; - } else { - kwargs = utils.isPlainObject(kwargs) ? extend({}, kwargs) : {}; - } +/***/ }), +/* 1400 */ +/***/ (function(module, exports, __webpack_require__) { - if (!utils.isError(err)) { - if (utils.isPlainObject(err)) { - // This will allow us to group events based on top-level keys - // which is much better than creating new group when any key/value change - var keys = Object.keys(err).sort(); - var message = - 'Non-Error exception captured with keys: ' + - utils.serializeKeysForMessage(keys); - kwargs = extend(kwargs, { - message: message, - fingerprint: [md5(keys)], - extra: kwargs.extra || {} - }); - kwargs.extra.__serialized__ = utils.serializeException(err); +const uniq = __webpack_require__(653); - err = new Error(message); - } else { - // This handles when someone does: - // throw "something awesome"; - // We synthesize an Error here so we can extract a (rough) stack trace. - err = new Error(err); - } - } +const getUniqueCategories = transactions => { + return uniq(transactions.map(t => t.manualCategoryId)); +}; - var self = this; - var eventId = this.generateEventId(); - parsers.parseError(err, kwargs, function(kw) { - self.process(eventId, kw, cb); - }); +const pctOfTokensInVoc = (tokens, vocabularyArray) => { + const n_tokens = tokens.length; + const intersection = tokens.filter(t => -1 !== vocabularyArray.indexOf(t)); + return intersection.length / n_tokens; +}; - return eventId; - }, +const getAlphaParameter = (nbUniqueCategories, min, max, maxSmoothing) => { + if (nbUniqueCategories === 1) { + return 1; + } else { + const alpha = maxSmoothing / (nbUniqueCategories + 1); + return Math.max(min, Math.min(max, alpha)); + } +}; - context: function(ctx, func) { - if (!func && typeof ctx === 'function') { - func = ctx; - ctx = {}; - } +module.exports = { + getUniqueCategories, + pctOfTokensInVoc, + getAlphaParameter +}; - // todo/note: raven-js takes an args param to do apply(this, args) - // i don't think it's correct/necessary to bind this to the wrap call - // and i don't know if we need to support the args param; it's undocumented - return this.wrap(ctx, func).apply(null); - }, +/***/ }), +/* 1401 */ +/***/ (function(module, exports) { - wrap: function(options, func) { - if (!this.installed) { - utils.consoleAlertOnce( - 'Raven has not been installed, therefore no breadcrumbs will be captured. Call `Raven.config(...).install()` to fix this.' - ); - } - if (!func && typeof options === 'function') { - func = options; - options = {}; - } +const LOCAL_MODEL_CATEG_FALLBACK = '0'; +const LOCAL_MODEL_PROBA_FALLBACK = 0.1; +const LOCAL_MODEL_PCT_TOKENS_IN_VOC_THRESHOLD = 0.1; +module.exports = { + LOCAL_MODEL_CATEG_FALLBACK, + LOCAL_MODEL_PROBA_FALLBACK, + LOCAL_MODEL_PCT_TOKENS_IN_VOC_THRESHOLD +}; - var wrapDomain = domain.create(); - // todo: better property name than sentryContext, maybe __raven__ or sth? - wrapDomain.sentryContext = options; +/***/ }), +/* 1402 */ +/***/ (function(module, exports, __webpack_require__) { - wrapDomain.on('error', this.uncaughtErrorHandler); - var wrapped = wrapDomain.bind(func); +const cozy = __webpack_require__(487); - for (var property in func) { - if ({}.hasOwnProperty.call(func, property)) { - wrapped[property] = func[property]; - } - } - wrapped.prototype = func.prototype; - wrapped.__raven__ = true; - wrapped.__inner__ = func; - // note: domain.bind sets wrapped.domain, but it's not documented, unsure if we should rely on that - wrapped.__domain__ = wrapDomain; +const log = __webpack_require__(2).namespace('BaseKonnector'); - return wrapped; - }, +const { + Secret +} = __webpack_require__(2); - interceptErr: function(options, func) { - if (!func && typeof options === 'function') { - func = options; - options = {}; - } - var self = this; - var wrapped = function() { - var err = arguments[0]; - if (utils.isError(err)) { - self.captureException(err, options); - } else { - func.apply(null, arguments); - } - }; +const manifest = __webpack_require__(845); - // repetitive with wrap - for (var property in func) { - if ({}.hasOwnProperty.call(func, property)) { - wrapped[property] = func[property]; - } - } - wrapped.prototype = func.prototype; - wrapped.__raven__ = true; - wrapped.__inner__ = func; +const saveBills = __webpack_require__(1403); - return wrapped; - }, +const saveFiles = __webpack_require__(1404); - setContext: function setContext(ctx) { - if (domain.active) { - domain.active.sentryContext = ctx; - } else { - this._globalContext = ctx; - } - return this; - }, +const signin = __webpack_require__(1447); - mergeContext: function mergeContext(ctx) { - extend(this.getContext(), ctx); - return this; - }, +const get = __webpack_require__(372); - getContext: function getContext() { - if (domain.active) { - if (!domain.active.sentryContext) { - domain.active.sentryContext = {}; - utils.consoleAlert('sentry context not found on active domain'); - } - return domain.active.sentryContext; - } - return this._globalContext; - }, +const omit = __webpack_require__(567); - setCallbackHelper: function(propertyName, callback) { - var original = this[propertyName]; - if (typeof callback === 'function') { - this[propertyName] = function(data) { - return callback(data, original); - }; - } else { - this[propertyName] = callback; - } +const updateOrCreate = __webpack_require__(1450); - return this; - }, +const saveIdentity = __webpack_require__(1451); - /* - * Set the dataCallback option - * - * @param {function} callback The callback to run which allows the - * data blob to be mutated before sending - * @return {Raven} - */ - setDataCallback: function(callback) { - return this.setCallbackHelper('dataCallback', callback); - }, +const { + wrapIfSentrySetUp, + captureExceptionAndDie +} = __webpack_require__(1452); - /* - * Set the shouldSendCallback option - * - * @param {function} callback The callback to run which allows - * introspecting the blob before sending - * @return {Raven} - */ - setShouldSendCallback: function(callback) { - return this.setCallbackHelper('shouldSendCallback', callback); - }, +const sleep = __webpack_require__(9).promisify(global.setTimeout); - requestHandler: function() { - var self = this; - return function ravenRequestMiddleware(req, res, next) { - self.context({req: req}, function() { - domain.active.add(req); - domain.active.add(res); - next(); - }); - }; - }, +const LOG_ERROR_MSG_LIMIT = 32 * 1024 - 1; // to avoid to cut the json long and make it unreadable by the stack - errorHandler: function() { - var self = this; - return function ravenErrorMiddleware(err, req, res, next) { - var status = - err.status || - err.statusCode || - err.status_code || - (err.output && err.output.statusCode) || - 500; +const once = __webpack_require__(1482); - // skip anything not marked as an internal server error - if (status < 500) return next(err); +const errors = __webpack_require__(1484); - var eventId = self.captureException(err, {req: req}); - res.sentry = eventId; - return next(err); - }; - }, +const findFolderPath = async (cozyFields, account) => { + // folderId will be stored in cozyFields.folder_to_save on first run + if (!cozyFields.folder_to_save) { + log('info', `No folder_to_save available in the trigger`); + } - captureBreadcrumb: function(breadcrumb) { - // Avoid capturing global-scoped breadcrumbs before instrumentation finishes - if (!this.installed) return; + const folderId = cozyFields.folder_to_save || account.folderId; - breadcrumb = extend( - { - timestamp: +new Date() / 1000 - }, - breadcrumb - ); - var currCtx = this.getContext(); - if (!currCtx.breadcrumbs) currCtx.breadcrumbs = []; - currCtx.breadcrumbs.push(breadcrumb); - if (currCtx.breadcrumbs.length > this.maxBreadcrumbs) { - currCtx.breadcrumbs.shift(); + if (folderId) { + try { + const folder = await cozy.files.statById(folderId, false); + return folder.attributes.path; + } catch (err) { + log('error', err.message); + log('error', JSON.stringify(err.stack)); + log('error', `error while getting the folder path of ${folderId}`); + throw new Error('NOT_EXISTING_DIRECTORY'); } - this.setContext(currCtx); - }, + } else { + log('debug', 'No folder needed'); + } +}; - _createRequestObject: function() { - /** - * When using proxy, some of the attributes of req/request objects are non-enumerable. - * To make sure, that they are still available to us after we consolidate our sources - * (eg. globalContext.request + domainContext.request + kwargs.request), - * we manually pull them out from original objects. - * - * Same scenario happens when some frameworks (eg. Koa) decide to use request within - * request. eg `this.request.req`, which adds aliases to the main `request` object. - * By manually reassigning them here, we don't need to add additional checks - * like `req.method || (req.req && req.req.method)` - * - * We don't use Object.assign/extend as it's only merging over objects own properties, - * and we don't want to go through all of the properties as well, as we simply don't - * need all of them. - **/ - var sources = Array.from(arguments).filter(function(source) { - return Object.prototype.toString.call(source) === '[object Object]'; - }); - sources = [{}].concat(sources); - var request = extend.apply(null, sources); - var nonEnumerables = [ - 'headers', - 'hostname', - 'ip', - 'method', - 'protocol', - 'query', - 'secure', - 'url' - ]; +const checkTOS = err => { + if (err && err.reason && err.reason.length && err.reason[0] && err.reason[0].title === 'TOS Updated') { + throw new Error('TOS_NOT_ACCEPTED'); + } +}; +/** + * @class + * The class from which all the connectors must inherit. + * It takes a fetch function in parameter that must return a `Promise`. + * You need at least the `GET` permission on `io.cozy.accounts` in your manifest to allow it to + * fetch account information for your connector. + * + * Its role is twofold : + * + * - Make the link between account data and konnector + * - Handle errors + * + * âš ï¸ A promise should be returned from the `fetch` function otherwise + * the konnector cannot know that asynchronous code has been called. + * + * @example + * ```javascript + * const { BaseKonnector } = require('cozy-konnector-libs') + * + * module.exports = new BaseKonnector(function fetch () { + * // use this to access the instance of the konnector to + * // store any information that needs to be passed to + * // different stages of the konnector + * return request('http://ameli.fr') + * .then(computeReimbursements) + * .then(saveBills) + * }) + * ``` + */ - nonEnumerables.forEach(function(key) { - sources.forEach(function(source) { - if (source[key]) request[key] = source[key]; - }); - }); - /** - * Check for 'host' *only* after we checked for 'hostname' first. - * This way we can avoid the noise coming from Express deprecation warning - * https://github.com/expressjs/express/blob/b97faff6e2aa4d34d79485fe4331cb0eec13ad57/lib/request.js#L450-L452 - * REF: https://github.com/getsentry/raven-node/issues/96#issuecomment-354748884 - **/ - if (!request.hasOwnProperty('hostname')) { - sources.forEach(function(source) { - if (source.host) request.host = source.host; - }); +class BaseKonnector { + /** + * Constructor + * + * @param {Function} fetch - Function to be run automatically after account data is fetched. + * This function will be binded to the current connector. + * + * If not fetch function is given. The connector will have to handle itself it's own exection and + * error handling + */ + constructor(fetch) { + if (typeof fetch === 'function') { + this.fetch = fetch.bind(this); + return this.run(); } - return request; + this.deactivateAutoSuccessfulLogin = once(this.deactivateAutoSuccessfulLogin); + errors.attachProcessEventHandlers(); } -}); - -// Maintain old API compat, need to make sure arguments length is preserved -function Client(dsn, options) { - if (dsn instanceof Client) return dsn; - var ravenInstance = new Raven(); - return ravenInstance.config.apply(ravenInstance, arguments); -} -nodeUtil.inherits(Client, Raven); + /** + * Entrypoint of the konnector + * + * - Initializes connector attributes + * - Awaits this.main + * - Ensures errors are handled via this.fail + * - Calls this.end when the main function succeeded + */ -// Singleton-by-default but not strictly enforced -// todo these extra export props are sort of an adhoc mess, better way to manage? -var defaultInstance = new Raven(); -defaultInstance.Client = Client; -defaultInstance.version = __webpack_require__(1278).version; -defaultInstance.disableConsoleAlerts = utils.disableConsoleAlerts; -module.exports = defaultInstance; + async run() { + try { + log('debug', 'Preparing konnector...'); + await this.initAttributes(); + log('debug', 'Running konnector main...'); + await this.main(this.fields, this.parameters); + await this.end(); + } catch (err) { + log('warn', 'Error from konnector'); + await this.fail(err); + } + } + /** + * Main runs after konnector has been initialized. + * Errors thrown will be automatically handled. + * + * @returns {Promise} - The konnector is considered successful when it resolves + */ -/***/ }), -/* 1270 */ -/***/ (function(module, exports, __webpack_require__) { + main() { + return this.fetch(this.fields, this.parameters); + } + /** + * Hook called when the connector has ended successfully + */ -"use strict"; + end() { + log('debug', 'The connector has been run'); + } + /** + * Hook called when the connector fails + */ -/* - json-stringify-safe - Like JSON.stringify, but doesn't throw on circular references. - Originally forked from https://github.com/isaacs/json-stringify-safe - version 5.0.1 on 2017-09-21 and modified to handle Errors serialization. - Tests for this are in test/vendor. + fail(err) { + log('debug', 'Error caught by BaseKonnector'); + const error = err.message || err; + this.terminate(error); + } - ISC license: https://github.com/isaacs/json-stringify-safe/blob/master/LICENSE - */ + async getAccount(accountId) { + try { + return await cozy.data.find('io.cozy.accounts', accountId); + } catch (err) { + checkTOS(err); + log('error', err.message); + log('error', `Account ${accountId} does not exist`); + throw new Error('CANNOT_FIND_ACCOUNT'); + } + } + /** + * Initializes konnector attributes that will be used during its lifetime + * + * - this._account + * - this.fields + */ -exports = module.exports = stringify; -exports.getSerialize = serializer; -function stringify(obj, replacer, spaces, cycleReplacer) { - return JSON.stringify(obj, serializer(replacer, cycleReplacer), spaces); -} + async initAttributes() { + // Parse environment variables + const cozyFields = JSON.parse(process.env.COZY_FIELDS || '{}'); + const cozyParameters = JSON.parse(process.env.COZY_PARAMETERS || '{}'); + this.parameters = cozyParameters; // Set account -// https://github.com/ftlabs/js-abbreviate/blob/fa709e5f139e7770a71827b1893f22418097fbda/index.js#L95-L106 -function stringifyError(value) { - var err = { - // These properties are implemented as magical getters and don't show up in for in - stack: value.stack, - message: value.message, - name: value.name - }; + const account = await this.getAccount(cozyFields.account); - for (var i in value) { - if (Object.prototype.hasOwnProperty.call(value, i)) { - err[i] = value[i]; + if (!account || !account._id) { + log('warn', 'No account was retrieved from getAccount'); } - } - return err; -} + this.accountId = account._id; + this._account = new Secret(account); // Set folder -function serializer(replacer, cycleReplacer) { - var stack = []; - var keys = []; + const folderPath = await findFolderPath(cozyFields, account); + cozyFields.folder_to_save = folderPath; + this.fields = Object.assign({}, account.auth, account.oauth, folderPath ? { + folderPath + } : {}); + } + /** + * Saves data to the account that is passed to the konnector. + * Use it to persist data that needs to be passed to each + * konnector run. + * + * By default, the data is merged to the remote data, use + * `options.merge = false` to overwrite the data. + * + * The data is saved under the `.data` attribute of the cozy + * account. + * + * Don't forget to modify the manifest.konnector file to give the right to write on the + * `io.cozy.accounts` doctype. The syntax can be : `"permissions": {"accounts": {"type": "io.cozy.accounts"}}` (here we juste removed the verb `GET`) + * + * @param {object} data - Attributes to be merged + * @param {object} options - { merge: true|false } + * @returns {Promise}: resolved with the modified account + */ - if (cycleReplacer == null) { - cycleReplacer = function(key, value) { - if (stack[0] === value) { - return '[Circular ~]'; - } - return '[Circular ~.' + keys.slice(0, stack.indexOf(value)).join('.') + ']'; - }; + + saveAccountData(data, options) { + options = options || {}; + options.merge = options.merge === undefined ? true : options.merge; + const start = options.merge ? Object.assign({}, this.getAccountData()) : {}; + const newData = Object.assign({}, start, data); + return this.updateAccountAttributes({ + data: newData + }).then(account => account.data); } + /** + * Get the data saved by saveAccountData + * + * @returns {object} the account data + */ - return function(key, value) { - if (stack.length > 0) { - var thisPos = stack.indexOf(this); - ~thisPos ? stack.splice(thisPos + 1) : stack.push(this); - ~thisPos ? keys.splice(thisPos, Infinity, key) : keys.push(key); - if (~stack.indexOf(value)) { - value = cycleReplacer.call(this, key, value); - } - } else { - stack.push(value); - } + getAccountData() { + return new Secret(this._account.data || {}); + } + /** + * Update account attributes and cache the account + */ - return replacer == null - ? value instanceof Error ? stringifyError(value) : value - : replacer.call(this, key, value); - }; -} + updateAccountAttributes(attributes) { + return cozy.data.updateAttributes('io.cozy.accounts', this.accountId, attributes).then(account => { + this._account = new Secret(account); + return account; + }); + } + /** + * Sets the 2FA state, according to the type passed. + * Doing so resets the twoFACode field + * + * Typically you should not use that directly, prefer to use waitForTwoFaCode since + * the wait for user input will be handled for you. It is useful though for the "app" + * type where no user input (inside Cozy) is needed. + * + * @param {object} options - The list of options + * @param {string} options.type - Used by the front to show the right message (email/sms/app) + * @param {boolean} options.retry - Is this function call a retry ? This changes the resulting message to the user + */ -/***/ }), -/* 1271 */ -/***/ (function(module, exports, __webpack_require__) { -"use strict"; + async setTwoFAState({ + type, + retry = false + } = {}) { + let state = retry ? 'TWOFA_NEEDED_RETRY' : 'TWOFA_NEEDED'; + if (type === 'email') { + state += '.EMAIL'; + } else if (type === 'sms') { + state += '.SMS'; + } else if (type === 'app') { + state += '.APP'; + } -var cookie = __webpack_require__(1272); -var urlParser = __webpack_require__(83); -var stringify = __webpack_require__(1270); + log('debug', `Setting ${state} state into the current account`); + await this.updateAccountAttributes({ + state, + twoFACode: null + }); + } + /** + * Resets 2FA state when not needed anymore + */ -var utils = __webpack_require__(1273); -module.exports.parseText = function parseText(message, kwargs) { - kwargs = kwargs || {}; - kwargs.message = message; + async resetTwoFAState() { + await this.updateAccountAttributes({ + state: null, + twoFACode: null + }); + } + /** + * Notices that 2FA code is needed and wait for the user to submit it. + * It uses the account to do the communication with the user. + * + * @param {object} options - The list of options + * @param {string} options.type (default: "email") - Type of the expected 2FA code. The message displayed + * to the user will depend on it. Possible values: email, sms + * @param {number} options.timeout (default 3 minutes after now) - After this date, the stop will stop waiting and + * and an error will be shown to the user (deprecated and alias of endTime) + * @param {number} options.endTime (default 3 minutes after now) - After this timestamp, the home will stop waiting and + * and an error will be shown to the user + * @param {number} options.heartBeat (default: 5000) - How many milliseconds between each code check + * @param {boolean} options.retry (default: false) - Is it a retry. If true, an error message will be + * displayed to the user + * @throws Will throw `USER_ACTION_NEEDED.TWOFA_EXPIRED` if the konnector job is not run manually (we assume that + * not run manually means that we do not have a graphic interface to fill the required information) + * @throws Will throw `USER_ACTION_NEEDED.TWOFA_EXPIRED` if 2FA is not filled by the user soon enough + * + * @returns {Promise} Contains twoFa code entered by user + * + * @example + * + * ```javascript + * const { BaseKonnector } = require('cozy-konnector-libs') + * + * module.exports = new BaseKonnector(start) + + * async function start() { + * // we detect the need of a 2FA code + * const code = this.waitForTwoFaCode({ + * type: 'email' + * }) + * // send the code to the targeted site + * } + * ``` + */ - return kwargs; -}; -module.exports.parseError = function parseError(err, kwargs, cb) { - utils.parseStack(err, function(frames) { - var name = - ({}.hasOwnProperty.call(err, 'name') ? err.name : err.constructor.name) + ''; - if (typeof kwargs.message === 'undefined') { - kwargs.message = name + ': ' + (err.message || '<no message>'); + async waitForTwoFaCode(options = {}) { + if (process.env.COZY_JOB_MANUAL_EXECUTION !== 'true') { + log('warn', `waitForTwoFaCode: this in not a manual execution. It is not possible to handle 2FA here.`); + throw new Error('USER_ACTION_NEEDED.TWOFA_EXPIRED'); } - kwargs.exception = [ - { - type: name, - value: err.message, - stacktrace: { - frames: frames - } - } - ]; - // Save additional error properties to `extra` under the error type (e.g. `extra.AttributeError`) - var extraErrorProps; - for (var key in err) { - if (err.hasOwnProperty(key)) { - if (key !== 'name' && key !== 'message' && key !== 'stack' && key !== 'domain') { - extraErrorProps = extraErrorProps || {}; - extraErrorProps[key] = err[key]; - } - } + const startTime = Date.now(); + const ms = 1; + const s = 1000 * ms; + const m = 60 * s; + const defaultParams = { + type: 'email', + endTime: startTime + 3 * m, + heartBeat: 5 * s, + retry: false + }; + options = { ...defaultParams, + ...options + }; + + if (options.timeout) { + log('warn', `The timeout option for waitForTwoFaCode is deprecated. Please use the endTime option now`); + options.endTime = options.timeout; } - if (extraErrorProps) { - kwargs.extra = kwargs.extra || {}; - kwargs.extra[name] = extraErrorProps; + + let account = {}; + await this.setTwoFAState({ + type: options.type, + retry: options.retry + }); + + while (Date.now() < options.endTime && !account.twoFACode) { + await sleep(options.heartBeat); + account = await cozy.data.find('io.cozy.accounts', this.accountId); + log('debug', `current accountState : ${account.state}`); + log('debug', `current twoFACode : ${account.twoFACode}`); } - if (!kwargs.transaction && !kwargs.culprit) { - for (var n = frames.length - 1; n >= 0; n--) { - if (frames[n].in_app) { - kwargs.transaction = utils.getTransaction(frames[n]); - break; - } - } + if (account.twoFACode) { + await this.resetTwoFAState(); + return account.twoFACode; } - cb(kwargs); - }); -}; + throw new Error('USER_ACTION_NEEDED.TWOFA_EXPIRED'); + } + /** + * Tells Cozy-Home that we have successfully logged in. + * Useful when auto-success has been deactivated. + * See `deactivateAutoSuccess` + */ -module.exports.parseRequest = function parseRequest(req, parseUser) { - var kwargs = {}; - // headers: - // node, express: req.headers - // koa: req.header - var headers = req.headers || req.header || {}; + async notifySuccessfulLogin() { + log('debug', 'Notify Cozy-Home of successful login'); + await this.updateAccountAttributes({ + state: 'LOGIN_SUCCESS' + }); + } + /** + * By default, cozy-home considers that the konnector has successfully logged in + * when the konnector has run for more than 8s. This is problematic for 2FA since + * the konnector can sit idle, just waiting for the 2FA to come back. + * + * When this method is called, cozy-home is notified and will not consider the + * absence of error after 8s to be a success. Afterwards, to notify cozy-home when + * the user has logged in successfully, for example, after the user has entered 2FA + * codes, it is necessary to call `notifySuccessfulLogin`. + * + * Does nothing if called more than once. + */ - // method: - // node, express, koa: req.method - var method = req.method; - // host: - // express: req.hostname in > 4 and req.host in < 4 - // koa: req.host - // node: req.headers.host - var host = req.hostname || req.host || headers.host || '<no host>'; + async deactivateAutoSuccessfulLogin() { + log('debug', 'Deactivating auto success for Cozy-Home'); + await this.updateAccountAttributes({ + state: 'HANDLE_LOGIN_SUCCESS' + }); + } + /** + * This is saveBills function from cozy-konnector-libs which automatically adds sourceAccount in + * metadata of each entry + * + * @returns {Promise} resolves with entries hydrated with db data + */ - // protocol: - // node: <n/a> - // express, koa: req.protocol - var protocol = - req.protocol === 'https' || req.secure || (req.socket || {}).encrypted - ? 'https' - : 'http'; - // url (including path and query string): - // node, express: req.originalUrl - // koa: req.url - var originalUrl = req.originalUrl || req.url; + saveBills(entries, fields, options) { + return saveBills(entries, fields, { + sourceAccount: this.accountId, + sourceAccountIdentifier: fields.login, + ...options + }); + } + /** + * This is saveFiles function from cozy-konnector-libs which automatically adds sourceAccount and + * sourceAccountIdentifier cozyMetadatas to files + * + * @returns {Promise} resolves with the list of entries with file objects + */ - // absolute url - var absoluteUrl = protocol + '://' + host + originalUrl; - // query string: - // node: req.url (raw) - // express, koa: req.query - var query = req.query || urlParser.parse(originalUrl || '', true).query; + saveFiles(entries, fields, options) { + return saveFiles(entries, fields, { + sourceAccount: this.accountId, + sourceAccountIdentifier: fields.login, + ...options + }); + } + /** + * This is updateOrCreate function from cozy-konnector-libs which automatically adds sourceAccount in + * metadata of each entry + * + * @returns {Promise} resolves to an array of db objects + */ - // cookies: - // node, express, koa: req.headers.cookie - var cookies = cookie.parse(headers.cookie || ''); - // body data: - // node, express, koa: req.body - var data = req.body; - if (['GET', 'HEAD'].indexOf(method) === -1) { - if (typeof data === 'undefined') { - data = '<unavailable>'; - } + updateOrCreate(entries, doctype, matchingAttributes, options) { + return updateOrCreate(entries, doctype, matchingAttributes, { + sourceAccount: this.accountId, + sourceAccountIdentifier: get(options, 'fields.login'), + ...options + }); } + /** + * This is saveIdentity function from cozy-konnector-libs which automatically adds sourceAccount in + * metadata of each entry + * + * @returns {Promise} empty promise + */ - if (data && typeof data !== 'string' && {}.toString.call(data) !== '[object String]') { - // Make sure the request body is a string - data = stringify(data); + + saveIdentity(contact, accountIdentifier, options = {}) { + return saveIdentity(contact, accountIdentifier, { + sourceAccount: this.accountId, + sourceAccountIdentifier: accountIdentifier, + ...options + }); } + /** + * This is signin function from cozy-konnector-libs which automatically adds deactivateAutoSuccessfulLogin + * and notifySuccessfulLogin calls + * + * @returns {Promise} resolve with an object containing form data + */ - // http interface - var http = { - method: method, - query_string: query, - headers: headers, - cookies: cookies, - data: data, - url: absoluteUrl - }; - // expose http interface - kwargs.request = http; + async signin(options = {}) { + await this.deactivateAutoSuccessfulLogin(); + const result = await signin(omit(options, 'notifySuccessfulLogin')); - // user: typically found on req.user in express/passport patterns - // five cases for parseUser value: - // absent: grab only id, username, email from req.user - // false: capture nothing - // true: capture all keys from req.user - // array: provided whitelisted keys to grab from req.user - // function :: req -> user: custom parsing function - if (parseUser == null) parseUser = ['id', 'username', 'email']; - if (parseUser) { - var user = {}; - if (typeof parseUser === 'function') { - user = parseUser(req); - } else if (req.user) { - if (parseUser === true) { - for (var key in req.user) { - if ({}.hasOwnProperty.call(req.user, key)) { - user[key] = req.user[key]; - } - } - } else { - parseUser.forEach(function(fieldName) { - if ({}.hasOwnProperty.call(req.user, fieldName)) { - user[fieldName] = req.user[fieldName]; - } - }); - } + if (options.notifySuccessfulLogin !== false) { + await this.notifySuccessfulLogin(); } - // client ip: - // node: req.connection.remoteAddress - // express, koa: req.ip - var ip = req.ip || (req.connection && req.connection.remoteAddress); - if (ip) { - user.ip_address = ip; - } + return result; + } + /** + * Send a special error code which is interpreted by the cozy stack to terminate the execution of the + * connector now + * + * @param {string} err - The error code to be saved as connector result see [docs/ERROR_CODES.md] + * + * @example + * ```javascript + * this.terminate('LOGIN_FAILED') + * ``` + */ - kwargs.user = user; + + terminate(err) { + log('critical', String(err).substr(0, LOG_ERROR_MSG_LIMIT)); + captureExceptionAndDie(err); } + /** + * Get cozyMetaData from the context of the connector + * + * @param {object} data - this data will be merged with cozyMetaData + */ - return kwargs; -}; + getCozyMetadata(data) { + Object.assign(data, { + sourceAccount: this.accountId + }); + return manifest.getCozyMetadata(data); + } + +} + +wrapIfSentrySetUp(BaseKonnector.prototype, 'run'); +BaseKonnector.findFolderPath = findFolderPath; +BaseKonnector.checkTOS = checkTOS; +module.exports = BaseKonnector; /***/ }), -/* 1272 */ +/* 1403 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; -/*! - * cookie - * Copyright(c) 2012-2014 Roman Shtylman - * Copyright(c) 2015 Douglas Christopher Wilson - * MIT Licensed +/** + * Encapsulates the saving of Bills : saves the files, saves the new data, and associate the files + * to an existing bank operation + * + * @module saveBills */ +const utils = __webpack_require__(486); +const saveFiles = __webpack_require__(1404); +const hydrateAndFilter = __webpack_require__(371); -/** - * Module exports. - * @public - */ +const addData = __webpack_require__(1424); -exports.parse = parse; -exports.serialize = serialize; +const log = __webpack_require__(2).namespace('saveBills'); -/** - * Module variables. - * @private - */ +const linkBankOperations = __webpack_require__(1425); -var decode = decodeURIComponent; -var encode = encodeURIComponent; -var pairSplitRegExp = /; */; +const DOCTYPE = 'io.cozy.bills'; -/** - * RegExp to match field-content in RFC 7230 sec 3.2 - * - * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ] - * field-vchar = VCHAR / obs-text - * obs-text = %x80-FF - */ +const _ = __webpack_require__(844); -var fieldContentRegExp = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/; +const manifest = __webpack_require__(845); +const requiredAttributes = { + date: 'isDate', + amount: 'isNumber', + vendor: 'isString' +}; /** - * Parse a cookie header. + * Combines the features of `saveFiles`, `hydrateAndFilter`, `addData` and `linkBankOperations` for a + * common case: bills. + * Will create `io.cozy.bills` objects. The default deduplication keys are `['date', 'amount', 'vendor']`. + * You need the full permission on `io.cozy.bills`, full permission on `io.cozy.files` and also + * full permission on `io.cozy.bank.operations` in your manifest, to be able to use this function. * - * Parse the given cookie header string into an object - * The object has the various cookies as keys(names) => values + * Parameters: * - * @param {string} str - * @param {object} [options] - * @return {object} - * @public + * - `documents` is an array of objects with any attributes with some mandatory attributes : + * + `amount` (Number): the amount of the bill used to match bank operations + * + `date` (Date): the date of the bill also used to match bank operations + * + `vendor` (String): the name of the vendor associated to the bill. Ex: 'trainline' + * + `currency` (String) default: EUR: The ISO currency value (not mandatory since there is a + * default value. + * + `contractId` (String): Contract unique identicator used to deduplicate bills + * + `contractLabel`: (String) User label if define, must be used with contractId + * + `matchingCriterias` (Object): criterias that can be used by an external service to match bills + * with bank operations. If not specified but the 'banksTransactionRegExp' attribute is specified in the + * manifest of the connector, this value is automatically added to the bill + * + * You can also pass attributes expected by `saveFiles` : fileurl, filename, requestOptions + * and more + * + * Please take a look at [io.cozy.bills doctype documentation](https://github.com/cozy/cozy-doctypes/blob/master/docs/io.cozy.bills.md) + * - `fields` (object) this is the first parameter given to BaseKonnector's constructor + * - `options` is passed directly to `saveFiles`, `hydrateAndFilter`, `addData` and `linkBankOperations`. + * + * @example + * + * ```javascript + * const { BaseKonnector, saveBills } = require('cozy-konnector-libs') + * + * module.exports = new BaseKonnector(function fetch (fields) { + * const documents = [] + * // some code which fills documents + * return saveBills(documents, fields, { + * identifiers: ['vendor'] + * }) + * }) + * ``` + * + * @alias module:saveBills */ -function parse(str, options) { - if (typeof str !== 'string') { - throw new TypeError('argument str must be a string'); - } - - var obj = {} - var opt = options || {}; - var pairs = str.split(pairSplitRegExp); - var dec = opt.decode || decode; - - for (var i = 0; i < pairs.length; i++) { - var pair = pairs[i]; - var eq_idx = pair.indexOf('='); - - // skip things that don't look like key=value - if (eq_idx < 0) { - continue; +const saveBills = async (inputEntries, fields, inputOptions = {}) => { + // Cloning input arguments since both entries and options are expected + // to be modified by functions called inside saveBills. + const entries = _.cloneDeepWith(inputEntries, value => { + // do not try to clone streams https://github.com/konnectors/libs/issues/682 + if (value && value.readable) { + return value; } - var key = pair.substr(0, eq_idx).trim() - var val = pair.substr(++eq_idx, pair.length).trim(); + return undefined; + }); - // quoted values - if ('"' == val[0]) { - val = val.slice(1, -1); - } + const options = _.cloneDeep(inputOptions); - // only assign once - if (undefined == obj[key]) { - obj[key] = tryDecode(val, dec); - } + if (!_.isArray(entries) || entries.length === 0) { + log('warn', 'saveBills: no bills to save'); + return Promise.resolve(); } - return obj; -} - -/** - * Serialize data into a cookie header. - * - * Serialize the a name value pair into a cookie string suitable for - * http headers. An optional options object specified cookie parameters. - * - * serialize('foo', 'bar', { httpOnly: true }) - * => "foo=bar; httpOnly" - * - * @param {string} name - * @param {string} val - * @param {object} [options] - * @return {string} - * @public - */ - -function serialize(name, val, options) { - var opt = options || {}; - var enc = opt.encode || encode; - - if (typeof enc !== 'function') { - throw new TypeError('option encode is invalid'); + if (!options.sourceAccount) { + log('warn', 'There is no sourceAccount given to saveBills'); } - if (!fieldContentRegExp.test(name)) { - throw new TypeError('argument name is invalid'); + if (!options.sourceAccountIdentifier) { + log('warn', 'There is no sourceAccountIdentifier given to saveBills'); } - var value = enc(val); + if (typeof fields === 'string') { + fields = { + folderPath: fields + }; + } // Deduplicate on this keys - if (value && !fieldContentRegExp.test(value)) { - throw new TypeError('argument val is invalid'); - } - var str = name + '=' + value; + options.keys = options.keys || Object.keys(requiredAttributes); + const originalEntries = entries; - if (null != opt.maxAge) { - var maxAge = opt.maxAge - 0; - if (isNaN(maxAge)) throw new Error('maxAge should be a Number'); - str += '; Max-Age=' + Math.floor(maxAge); - } + const defaultShouldUpdate = (entry, dbEntry) => entry.invoice !== dbEntry.invoice || !dbEntry.cozyMetadata || !dbEntry.matchingCriterias; - if (opt.domain) { - if (!fieldContentRegExp.test(opt.domain)) { - throw new TypeError('option domain is invalid'); - } + if (!options.shouldUpdate) { + options.shouldUpdate = defaultShouldUpdate; + } else { + const fn = options.shouldUpdate; - str += '; Domain=' + opt.domain; + options.shouldUpdate = (entry, dbEntry) => { + return defaultShouldUpdate(entry, dbEntry) || fn(entry, dbEntry); + }; } - if (opt.path) { - if (!fieldContentRegExp.test(opt.path)) { - throw new TypeError('option path is invalid'); - } + let tempEntries; + tempEntries = manageContractsData(entries, options); + tempEntries = await saveFiles(tempEntries, fields, options); - str += '; Path=' + opt.path; - } + if (options.processPdf) { + let moreEntries = []; - if (opt.expires) { - if (typeof opt.expires.toUTCString !== 'function') { - throw new TypeError('option expires is invalid'); + for (let entry of tempEntries) { + if (entry.fileDocument) { + let pdfContent; + + try { + pdfContent = await utils.getPdfText(entry.fileDocument._id); // allow to create more entries related to the same file + + const result = await options.processPdf(entry, pdfContent.text, pdfContent); + if (result && result.length) moreEntries = [...moreEntries, ...result]; + } catch (err) { + log('warn', `processPdf: Failed to read pdf content in ${_.get(entry, 'fileDocument.attributes.name')}`); + log('warn', err.message); + entry.__ignore = true; + } + } } - str += '; Expires=' + opt.expires.toUTCString(); - } + if (moreEntries.length) tempEntries = [...tempEntries, ...moreEntries]; + } // try to get transaction regexp from the manifest - if (opt.httpOnly) { - str += '; HttpOnly'; - } - if (opt.secure) { - str += '; Secure'; + let defaultTransactionRegexp = null; + + if (Object.keys(manifest.data).length && manifest.data.banksTransactionRegExp) { + defaultTransactionRegexp = manifest.data.banksTransactionRegExp; } - if (opt.sameSite) { - var sameSite = typeof opt.sameSite === 'string' - ? opt.sameSite.toLowerCase() : opt.sameSite; + tempEntries = tempEntries.filter(entry => !entry.__ignore) // we do not save bills without associated file anymore + .filter(entry => entry.fileDocument).map(entry => { + entry.currency = convertCurrency(entry.currency); + entry.invoice = `io.cozy.files:${entry.fileDocument._id}`; + const matchingCriterias = entry.matchingCriterias || {}; - switch (sameSite) { - case true: - str += '; SameSite=Strict'; - break; - case 'lax': - str += '; SameSite=Lax'; - break; - case 'strict': - str += '; SameSite=Strict'; - break; - default: - throw new TypeError('option sameSite is invalid'); + if (defaultTransactionRegexp && !matchingCriterias.labelRegex) { + matchingCriterias.labelRegex = defaultTransactionRegexp; + entry.matchingCriterias = matchingCriterias; } - } - return str; -} + delete entry.fileDocument; + delete entry.fileAttributes; + return entry; + }); + checkRequiredAttributes(tempEntries); + tempEntries = await hydrateAndFilter(tempEntries, DOCTYPE, options); + tempEntries = await addData(tempEntries, DOCTYPE, options); -/** - * Try decoding a string using a decoding function. - * - * @param {string} str - * @param {function} decode - * @private - */ + if (options.linkBankOperations !== false) { + tempEntries = await linkBankOperations(originalEntries, DOCTYPE, fields, options); + log('debug', 'after linkbankoperation'); + } -function tryDecode(str, decode) { - try { - return decode(str); - } catch (e) { - return str; + return tempEntries; +}; + +function convertCurrency(currency) { + if (currency) { + if (currency.includes('€')) { + return 'EUR'; + } else if (currency.includes('$')) { + return 'USD'; + } else if (currency.includes('£')) { + return 'GBP'; + } else { + return currency; + } + } else { + return 'EUR'; } } +function checkRequiredAttributes(entries) { + for (let entry of entries) { + for (let attr in requiredAttributes) { + if (entry[attr] == null) { + throw new Error(`saveBills: an entry is missing the required ${attr} attribute`); + } -/***/ }), -/* 1273 */ -/***/ (function(module, exports, __webpack_require__) { + const checkFunction = requiredAttributes[attr]; -"use strict"; + const isExpectedType = _(entry[attr])[checkFunction](); + if (isExpectedType === false) { + throw new Error(`saveBills: an entry has a ${attr} which does not respect ${checkFunction}`); + } + } + } +} -var fs = __webpack_require__(167); -var url = __webpack_require__(83); -var transports = __webpack_require__(1274); -var path = __webpack_require__(160); -var lsmod = __webpack_require__(1276); -var stacktrace = __webpack_require__(1277); -var stringify = __webpack_require__(1270); +function manageContractsData(tempEntries, options) { + if (options.contractLabel && options.contractId === undefined) { + log('warn', 'contractLabel used without contractId, ignoring it.'); + return tempEntries; + } -var ravenVersion = __webpack_require__(1278).version; + let newEntries = tempEntries; // if contractId passed by option -var protocolMap = { - http: 80, - https: 443 -}; + if (options.contractId) { + // Define contractlabel from contractId if not set in options + if (!options.contractLabel) { + options.contractLabel = options.contractId; + } // Set saving path from contractLabel -var consoleAlerts = new Set(); -// Default Node.js REPL depth -var MAX_SERIALIZE_EXCEPTION_DEPTH = 3; -// 50kB, as 100kB is max payload size, so half sounds reasonable -var MAX_SERIALIZE_EXCEPTION_SIZE = 50 * 1024; -var MAX_SERIALIZE_KEYS_LENGTH = 40; + options.subPath = options.contractLabel; // Add contractId to deduplication keys -function utf8Length(value) { - return ~-encodeURI(value).split(/%..|./).length; -} + addContractIdToDeduplication(options); // Add contract data to bills -function jsonSize(value) { - return utf8Length(JSON.stringify(value)); -} + newEntries = newEntries.map(entry => addContractsDataToBill(entry, options)); // if contractId passed by bill attribute + } else if (billsHaveContractId(newEntries)) { + // Add contractId to deduplication keys + addContractIdToDeduplication(options); + newEntries = newEntries.map(entry => mergeContractsDataInBill(entry)); //manageContractsDataPassedByAttribute(newEntries, options + } -function isError(what) { - return ( - Object.prototype.toString.call(what) === '[object Error]' || what instanceof Error - ); + return newEntries; } -module.exports.isError = isError; - -function isPlainObject(what) { - return Object.prototype.toString.call(what) === '[object Object]'; +function addContractsDataToBill(entry, options) { + entry.contractLabel = options.contractLabel; + entry.contractId = options.contractId; + return entry; } -module.exports.isPlainObject = isPlainObject; +function mergeContractsDataInBill(entry) { + // Only treat bill with data + if (entry.contractId) { + // Surcharge label in needed + if (!entry.contractLabel) { + entry.contractLabel = entry.contractId; + } // Edit subpath of each bill according to contractLabel -function serializeValue(value) { - var maxLength = 40; - if (typeof value === 'string') { - return value.length <= maxLength ? value : value.substr(0, maxLength - 1) + '\u2026'; - } else if ( - typeof value === 'number' || - typeof value === 'boolean' || - typeof value === 'undefined' - ) { - return value; + entry.subPath = entry.contractLabel; } - var type = Object.prototype.toString.call(value); - - // Node.js REPL notation - if (type === '[object Object]') return '[Object]'; - if (type === '[object Array]') return '[Array]'; - if (type === '[object Function]') - return value.name ? '[Function: ' + value.name + ']' : '[Function]'; - - return value; + return entry; } +/* This function return true if at least one bill of entries has a contractId + */ -function serializeObject(value, depth) { - if (depth === 0) return serializeValue(value); - if (isPlainObject(value)) { - return Object.keys(value).reduce(function(acc, key) { - acc[key] = serializeObject(value[key], depth - 1); - return acc; - }, {}); - } else if (Array.isArray(value)) { - return value.map(function(val) { - return serializeObject(val, depth - 1); - }); +function billsHaveContractId(entries) { + for (const entry of entries) { + if (entry.contractId) { + return true; + } } - return serializeValue(value); + return false; } +/* Add contractId to deduplication keys + */ -function serializeException(ex, depth, maxSize) { - if (!isPlainObject(ex)) return ex; - depth = typeof depth !== 'number' ? MAX_SERIALIZE_EXCEPTION_DEPTH : depth; - maxSize = typeof depth !== 'number' ? MAX_SERIALIZE_EXCEPTION_SIZE : maxSize; +function addContractIdToDeduplication(options) { + if (options.keys) { + options.keys.push('contractId'); + } +} - var serialized = serializeObject(ex, depth); +module.exports = saveBills; +module.exports.manageContractsData = manageContractsData; - if (jsonSize(stringify(serialized)) > maxSize) { - return serializeException(ex, depth - 1); - } +/***/ }), +/* 1404 */ +/***/ (function(module, exports, __webpack_require__) { - return serialized; -} +/** + * Saves the given files in the given folder via the Cozy API. + * + * @module saveFiles + */ +const bluebird = __webpack_require__(25); -module.exports.serializeException = serializeException; +const retry = __webpack_require__(1405); -function serializeKeysForMessage(keys, maxLength) { - if (typeof keys === 'number' || typeof keys === 'string') return keys.toString(); - if (!Array.isArray(keys)) return ''; +const mimetypes = __webpack_require__(157); - keys = keys.filter(function(key) { - return typeof key === 'string'; - }); - if (keys.length === 0) return '[object has no keys]'; +const path = __webpack_require__(160); - maxLength = typeof maxLength !== 'number' ? MAX_SERIALIZE_KEYS_LENGTH : maxLength; - if (keys[0].length >= maxLength) return keys[0]; +const requestFactory = __webpack_require__(22); - for (var usedKeys = keys.length; usedKeys > 0; usedKeys--) { - var serialized = keys.slice(0, usedKeys).join(', '); - if (serialized.length > maxLength) continue; - if (usedKeys === keys.length) return serialized; - return serialized + '\u2026'; - } +const omit = __webpack_require__(567); - return ''; -} +const get = __webpack_require__(372); -module.exports.serializeKeysForMessage = serializeKeysForMessage; +const log = __webpack_require__(2).namespace('saveFiles'); -module.exports.disableConsoleAlerts = function disableConsoleAlerts() { - consoleAlerts = false; -}; +const manifest = __webpack_require__(845); -module.exports.enableConsoleAlerts = function enableConsoleAlerts() { - consoleAlerts = new Set(); -}; +const cozy = __webpack_require__(487); -module.exports.consoleAlert = function consoleAlert(msg) { - if (consoleAlerts) { - console.warn('raven@' + ravenVersion + ' alert: ' + msg); - } -}; +const { + queryAll +} = __webpack_require__(486); -module.exports.consoleAlertOnce = function consoleAlertOnce(msg) { - if (consoleAlerts && !consoleAlerts.has(msg)) { - consoleAlerts.add(msg); - console.warn('raven@' + ravenVersion + ' alert: ' + msg); - } -}; +const mkdirp = __webpack_require__(1407); -module.exports.extend = - Object.assign || - function(target) { - for (var i = 1; i < arguments.length; i++) { - var source = arguments[i]; - for (var key in source) { - if (Object.prototype.hasOwnProperty.call(source, key)) { - target[key] = source[key]; - } - } - } - return target; - }; +const errors = __webpack_require__(1408); -module.exports.getAuthHeader = function getAuthHeader(timestamp, apiKey, apiSecret) { - var header = ['Sentry sentry_version=5']; - header.push('sentry_timestamp=' + timestamp); - header.push('sentry_client=raven-node/' + ravenVersion); - header.push('sentry_key=' + apiKey); - if (apiSecret) header.push('sentry_secret=' + apiSecret); - return header.join(', '); -}; +const stream = __webpack_require__(100); -module.exports.parseDSN = function parseDSN(dsn) { - if (!dsn) { - // Let a falsey value return false explicitly - return false; - } - try { - var parsed = url.parse(dsn), - response = { - protocol: parsed.protocol.slice(0, -1), - public_key: parsed.auth.split(':')[0], - host: parsed.host.split(':')[0] - }; +const fileType = __webpack_require__(1409); - if (parsed.auth.split(':')[1]) { - response.private_key = parsed.auth.split(':')[1]; - } +const ms = 1; +const s = 1000 * ms; +const m = 60 * s; +const DEFAULT_TIMEOUT = Date.now() + 4 * m; // 4 minutes by default since the stack allows 5 minutes - if (~response.protocol.indexOf('+')) { - response.protocol = response.protocol.split('+')[1]; - } +const DEFAULT_CONCURRENCY = 1; +const DEFAULT_RETRY = 1; // do not retry by default - if (!transports.hasOwnProperty(response.protocol)) { - throw new Error('Invalid transport'); - } +/** + * Saves the files given in the fileurl attribute of each entries + * + * You need the full permission on `io.cozy.files` in your manifest to use this function. + * + * @param {Array} entries - list of object describing files to save + * @param {string} entries.fileurl - The url of the file (can be a function returning the value). Ignored if `filestream` is given + * @param {Function} entries.fetchFile - the connector can give it's own function to fetch the file from the website, which will be run only when necessary (if the corresponding file is missing on the cozy) function returning the stream). This function must return a promise resolved as a stream + * @param {object} entries.filestream - the stream which will be directly passed to cozyClient.files.create (can also be function returning the stream) + * @param {object} entries.requestOptions - The options passed to request to fetch fileurl (can be a function returning the value) + * @param {string} entries.filename - The file name of the item written on disk. This attribute is optional and as default value, the file name will be "smartly" guessed by the function. Use this attribute if the guess is not smart enough for you, or if you use `filestream` (can be a function returning the value). + * @param {string} entries.shouldReplaceName - used to migrate filename. If saveFiles finds a file linked to this entry and this file name matches `shouldReplaceName`, the file is renamed to `filename` (can be a function returning the value) + * @param {Function} entries.shouldReplaceFile - use this function to state if the current entry should be forced to be redownloaded and replaced. Usefull if we know the file content can change and we always want the last version. + * @param {object} entries.fileAttributes - ex: `{created_at: new Date()}` sets some additionnal file attributes passed to cozyClient.file.create + * @param {string} entries.subPath - A subpath to save all files, will be created if needed. + * @param {object} fields - is the argument given to the main function of your connector by the BaseKonnector. It especially contains a `folderPath` which is the string path configured by the user in collect/home + * @param {object} options - global options + * @param {number} options.timeout - timestamp which can be used if your connector needs to fetch a lot of files and if the stack does not give enough time to your connector to fetch it all. It could happen that the connector is stopped right in the middle of the download of the file and the file will be broken. With the `timeout` option, the `saveFiles` function will check if the timeout has passed right after downloading each file and then will be sure to be stopped cleanly if the timeout is not too long. And since it is really fast to check that a file has already been downloaded, on the next run of the connector, it will be able to download some more files, and so on. If you want the timeout to be in 10s, do `Date.now() + 10*1000`. You can try it in the previous code. + * @param {number|boolean} options.contentType - ex: 'application/pdf' used to force the contentType of documents when they are badly recognized by cozy. If "true" the content type will be recognized from the file name and forced the same way. + * @param {number} options.concurrency - default: `1` sets the maximum number of concurrent downloads + * @param {Function} options.validateFile - default: do not validate if file is empty or has bad mime type + * @param {boolean|Function} options.validateFileContent - default false. Also check the content of the file to recognize the mime type + * @param {Array} options.fileIdAttributes - array of strings : Describes which attributes of files will be taken as primary key for files to check if they already exist, even if they are moved. If not given, the file path will used for deduplication as before. + * @param {string} options.subPath - A subpath to save this file, will be created if needed. + * @param {Function} options.fetchFile - the connector can give it's own function to fetch the file from the website, which will be run only when necessary (if the corresponding file is missing on the cozy) function returning the stream). This function must return a promise resolved as a stream + * + * @example + * ```javascript + * await saveFiles([{fileurl: 'https://...', filename: 'bill1.pdf'}], fields, { + * fileIdAttributes: ['fileurl'] + * }) + * ``` + * + * @alias module:saveFiles + */ - var index = parsed.pathname.lastIndexOf('/'); - response.path = parsed.pathname.substr(0, index + 1); - response.project_id = parsed.pathname.substr(index + 1); - response.port = ~~parsed.port || protocolMap[response.protocol] || 443; - return response; - } catch (e) { - throw new Error('Invalid Sentry DSN: ' + dsn); +const saveFiles = async (entries, fields, options = {}) => { + if (!entries || entries.length === 0) { + log('warn', 'No file to download'); } -}; -module.exports.getTransaction = function getTransaction(frame) { - if (frame.module || frame.function) { - return (frame.module || '?') + ' at ' + (frame.function || '?'); + if (!options.sourceAccount) { + log('warn', 'There is no sourceAccount given to saveFiles'); } - return '<unknown>'; -}; -var moduleCache; -module.exports.getModules = function getModules() { - if (!moduleCache) { - moduleCache = lsmod(); + if (!options.sourceAccountIdentifier) { + log('warn', 'There is no sourceAccountIdentifier given to saveFIles'); } - return moduleCache; -}; -module.exports.fill = function(obj, name, replacement, track) { - var orig = obj[name]; - obj[name] = replacement(orig); - if (track) { - track.push([obj, name, orig]); + if (typeof fields !== 'object') { + log('debug', 'Deprecation warning, saveFiles 2nd argument should not be a string'); + fields = { + folderPath: fields + }; } -}; -var LINES_OF_CONTEXT = 7; + const saveOptions = { + folderPath: fields.folderPath, + fileIdAttributes: options.fileIdAttributes, + timeout: options.timeout || DEFAULT_TIMEOUT, + concurrency: options.concurrency || DEFAULT_CONCURRENCY, + retry: options.retry || DEFAULT_RETRY, + postProcess: options.postProcess, + postProcessFile: options.postProcessFile, + contentType: options.contentType, + requestInstance: options.requestInstance, + shouldReplaceFile: options.shouldReplaceFile, + validateFile: options.validateFile || defaultValidateFile, + subPath: options.subPath, + sourceAccountOptions: { + sourceAccount: options.sourceAccount, + sourceAccountIdentifier: options.sourceAccountIdentifier + } + }; -function getFunction(line) { - try { - return ( - line.getFunctionName() || - line.getTypeName() + '.' + (line.getMethodName() || '<anonymous>') - ); - } catch (e) { - // This seems to happen sometimes when using 'use strict', - // stemming from `getTypeName`. - // [TypeError: Cannot read property 'constructor' of undefined] - return '<anonymous>'; + if (options.validateFileContent) { + if (options.validateFileContent === true) { + saveOptions.validateFileContent = defaultValidateFileContent; + } else if (typeof options.validateFileContent === 'function') { + saveOptions.validateFileContent = options.validateFileContent; + } } -} -var mainModule = - ((__webpack_require__.c[__webpack_require__.s] && __webpack_require__.c[__webpack_require__.s].filename && path.dirname(__webpack_require__.c[__webpack_require__.s].filename)) || - global.process.cwd()) + '/'; + noMetadataDeduplicationWarning(saveOptions); -function getModule(filename, base) { - if (!base) base = mainModule; + const canBeSaved = entry => entry.fetchFile || entry.fileurl || entry.requestOptions || entry.filestream; - // It's specifically a module - var file = path.basename(filename, '.js'); - filename = path.dirname(filename); - var n = filename.lastIndexOf('/node_modules/'); - if (n > -1) { - // /node_modules/ is 14 chars - return filename.substr(n + 14).replace(/\//g, '.') + ':' + file; - } - // Let's see if it's a part of the main module - // To be a part of main module, it has to share the same base - n = (filename + '/').lastIndexOf(base, 0); - if (n === 0) { - var module = filename.substr(base.length).replace(/\//g, '.'); - if (module) module += ':'; - module += file; - return module; - } - return file; -} + let filesArray = undefined; + let savedFiles = 0; + const savedEntries = []; -function readSourceFiles(filenames, cb) { - // we're relying on filenames being de-duped already - if (filenames.length === 0) return setTimeout(cb, 0, {}); + try { + await bluebird.map(entries, async entry => { + ; + ['fileurl', 'filename', 'shouldReplaceName', 'requestOptions' // 'filestream' + ].forEach(key => { + if (entry[key]) entry[key] = getValOrFnResult(entry[key], entry, options); + }); - var sourceFiles = {}; - var numFilesToRead = filenames.length; - return filenames.forEach(function(filename) { - fs.readFile(filename, function(readErr, file) { - if (!readErr) sourceFiles[filename] = file.toString().split('\n'); - if (--numFilesToRead === 0) cb(sourceFiles); - }); - }); -} + if (entry.filestream && !entry.filename) { + log('warn', 'Missing filename property for for filestream entry, entry is ignored'); + return; + } -// This is basically just `trim_line` from https://github.com/getsentry/sentry/blob/master/src/sentry/lang/javascript/processor.py#L67 -function snipLine(line, colno) { - var ll = line.length; - if (ll <= 150) return line; - if (colno > ll) colno = ll; + if (entry.shouldReplaceName) { + // At first encounter of a rename, we set the filenamesList + if (filesArray === undefined) { + log('debug', 'initialize files list for renamming'); + filesArray = await getFiles(fields.folderPath); + } - var start = Math.max(colno - 60, 0); - if (start < 5) start = 0; + const fileFound = filesArray.find(f => getAttribute(f, 'name') === entry.shouldReplaceName); - var end = Math.min(start + 140, ll); - if (end > ll - 5) end = ll; - if (end === ll) start = Math.max(end - 140, 0); + if (fileFound) { + await renameFile(fileFound, entry); // we continue because saveFile mays also add fileIdAttributes to the renamed file + } - line = line.slice(start, end); - if (start > 0) line = '{snip} ' + line; - if (end < ll) line += ' {snip}'; + delete entry.shouldReplaceName; + } - return line; -} + if (canBeSaved(entry)) { + const folderPath = await getOrCreateDestinationPath(entry, saveOptions); + entry = await saveEntry(entry, { ...saveOptions, + folderPath + }); -function snipLine0(line) { - return snipLine(line, 0); -} + if (entry && entry._cozy_file_to_create) { + savedFiles++; + delete entry._cozy_file_to_create; + } + } -function parseStack(err, cb) { - if (!err) return cb([]); + savedEntries.push(entry); + }, { + concurrency: saveOptions.concurrency + }); + } catch (err) { + if (err.message !== 'TIMEOUT') { + throw err; + } else { + log('warn', `saveFile timeout: still ${entries.length - savedEntries.length} / ${entries.length} to download`); + } + } - var stack = stacktrace.parse(err); - if (!stack || !Array.isArray(stack) || !stack.length || !stack[0].getFileName) { - // the stack is not the useful thing we were expecting :/ - return cb([]); + log('info', `saveFiles created ${savedFiles} files for ${savedEntries ? savedEntries.length : 'n'} entries`); + return savedEntries; +}; + +const saveEntry = async function (entry, options) { + if (options.timeout && Date.now() > options.timeout) { + const remainingTime = Math.floor((options.timeout - Date.now()) / s); + log('info', `${remainingTime}s timeout finished for ${options.folderPath}`); + throw new Error('TIMEOUT'); } - // Sentry expects the stack trace to be oldest -> newest, v8 provides newest -> oldest - stack.reverse(); + let file = await getFileIfExists(entry, options); + let shouldReplace = false; - var frames = []; - var filesToRead = {}; - stack.forEach(function(line) { - var frame = { - filename: line.getFileName() || '', - lineno: line.getLineNumber(), - colno: line.getColumnNumber(), - function: getFunction(line) - }; + if (file) { + try { + shouldReplace = await shouldReplaceFile(file, entry, options); + } catch (err) { + log('info', `Error in shouldReplace : ${err.message}`); + shouldReplace = true; + } + } - var isInternal = - line.isNative() || - (frame.filename[0] !== '/' && - frame.filename[0] !== '.' && - frame.filename.indexOf(':\\') !== 1); + let method = 'create'; - // in_app is all that's not an internal Node function or a module within node_modules - // note that isNative appears to return true even for node core libraries - // see https://github.com/getsentry/raven-node/issues/176 - frame.in_app = !isInternal && frame.filename.indexOf('node_modules/') === -1; + if (shouldReplace && file) { + method = 'updateById'; + log('debug', `Will replace ${getFilePath({ + options, + file + })}...`); + } - // Extract a module name based on the filename - if (frame.filename) { - frame.module = getModule(frame.filename); - if (!isInternal) filesToRead[frame.filename] = true; + try { + if (!file || method === 'updateById') { + log('debug', omit(entry, 'filestream')); + logFileStream(entry.filestream); + log('debug', `File ${getFilePath({ + options, + entry + })} does not exist yet or is not valid`); + entry._cozy_file_to_create = true; + file = await retry(createFile, { + interval: 1000, + throw_original: true, + max_tries: options.retry, + args: [entry, options, method, file ? file._id : undefined] + }).catch(err => { + if (err.message === 'BAD_DOWNLOADED_FILE') { + log('warn', `Could not download file after ${options.retry} tries removing the file`); + } else { + log('warn', 'unknown file download error: ' + err.message); + } + }); } - frames.push(frame); - }); + attachFileToEntry(entry, file); + sanitizeEntry(entry); - return readSourceFiles(Object.keys(filesToRead), function(sourceFiles) { - frames.forEach(function(frame) { - if (frame.filename && sourceFiles[frame.filename]) { - var lines = sourceFiles[frame.filename]; - try { - frame.pre_context = lines - .slice(Math.max(0, frame.lineno - (LINES_OF_CONTEXT + 1)), frame.lineno - 1) - .map(snipLine0); - frame.context_line = snipLine(lines[frame.lineno - 1], frame.colno); - frame.post_context = lines - .slice(frame.lineno, frame.lineno + LINES_OF_CONTEXT) - .map(snipLine0); - } catch (e) { - // anomaly, being defensive in case - // unlikely to ever happen in practice but can definitely happen in theory - } - } - }); + if (options.postProcess) { + await options.postProcess(entry); + } + } catch (err) { + if (getErrorStatus(err) === 413) { + // the cozy quota is full + throw new Error(errors.DISK_QUOTA_EXCEEDED); + } - cb(frames); - }); -} + log('warn', errors.SAVE_FILE_FAILED); + log('warn', err.message, `Error caught while trying to save the file ${entry.fileurl ? entry.fileurl : entry.filename}`); + } -// expose basically for testing because I don't know what I'm doing -module.exports.parseStack = parseStack; -module.exports.getModule = getModule; + return entry; +}; +function noMetadataDeduplicationWarning(options) { + const fileIdAttributes = options.fileIdAttributes; -/***/ }), -/* 1274 */ -/***/ (function(module, exports, __webpack_require__) { + if (!fileIdAttributes) { + log('warn', `saveFiles: no deduplication key is defined, file deduplication will be based on file path`); + } -"use strict"; + const slug = manifest.data.slug; + if (!slug) { + log('warn', `saveFiles: no slug is defined for the current connector, file deduplication will be based on file path`); + } -var events = __webpack_require__(271); -var util = __webpack_require__(9); -var timeoutReq = __webpack_require__(1275); + const sourceAccountIdentifier = get(options, 'sourceAccountOptions.sourceAccountIdentifier'); -var http = __webpack_require__(98); -var https = __webpack_require__(99); + if (!sourceAccountIdentifier) { + log('warn', `saveFiles: no sourceAccountIdentifier is defined in options, file deduplication will be based on file path`); + } +} -var agentOptions = {keepAlive: true, maxSockets: 100}; -var httpAgent = new http.Agent(agentOptions); -var httpsAgent = new https.Agent(agentOptions); +async function getFileIfExists(entry, options) { + const fileIdAttributes = options.fileIdAttributes; + const slug = manifest.data.slug; + const sourceAccountIdentifier = get(options, 'sourceAccountOptions.sourceAccountIdentifier'); + const isReadyForFileMetadata = fileIdAttributes && slug && sourceAccountIdentifier; -function Transport() {} -util.inherits(Transport, events.EventEmitter); + if (isReadyForFileMetadata) { + const file = await getFileFromMetaData(entry, fileIdAttributes, sourceAccountIdentifier, slug); -function HTTPTransport(options) { - this.defaultPort = 80; - this.transport = http; - this.options = options || {}; - this.agent = httpAgent; + if (!file) { + // no file with correct metadata, maybe the corresponding file already exist in the default + // path from a previous version of the connector + return await getFileFromPath(entry, options); + } else return file; + } else { + return await getFileFromPath(entry, options); + } } -util.inherits(HTTPTransport, Transport); -HTTPTransport.prototype.send = function(client, message, headers, eventId, cb) { - var options = { - hostname: client.dsn.host, - path: client.dsn.path + 'api/' + client.dsn.project_id + '/store/', - headers: headers, - method: 'POST', - port: client.dsn.port || this.defaultPort, - ca: client.ca, - agent: this.agent - }; - for (var key in this.options) { - if (this.options.hasOwnProperty(key)) { - options[key] = this.options[key]; + +async function getFileFromMetaData(entry, fileIdAttributes, sourceAccountIdentifier, slug) { + const index = await cozy.data.defineIndex('io.cozy.files', ['metadata.fileIdAttributes', 'trashed', 'cozyMetadata.sourceAccountIdentifier', 'cozyMetadata.createdByApp']); + log('debug', `Checking existence of ${calculateFileKey(entry, fileIdAttributes)}`); + const files = await queryAll('io.cozy.files', { + metadata: { + fileIdAttributes: calculateFileKey(entry, fileIdAttributes) + }, + trashed: false, + cozyMetadata: { + sourceAccountIdentifier, + createdByApp: slug + } + }, index); + + if (files && files[0]) { + if (files.length > 1) { + log('warn', `Found ${files.length} files corresponding to ${calculateFileKey(entry, fileIdAttributes)}`); } + + return files[0]; + } else { + log('debug', 'not found'); + return false; } +} - // prevent off heap memory explosion - var _name = this.agent.getName({host: client.dsn.host, port: client.dsn.port}); - var _requests = this.agent.requests[_name]; - if (_requests && Object.keys(_requests).length > client.maxReqQueueCount) { - // other feedback strategy - client.emit('error', new Error('client req queue is full..')); - return; +async function getFileFromPath(entry, options) { + try { + log('debug', `Checking existence of ${getFilePath({ + entry, + options + })}`); + const result = await cozy.files.statByPath(getFilePath({ + entry, + options + })); + return result; + } catch (err) { + log('debug', err.message); + return false; } +} - var req = this.transport.request(options, function(res) { - res.setEncoding('utf8'); - if (res.statusCode >= 200 && res.statusCode < 300) { - client.emit('logged', eventId); - cb && cb(null, eventId); +async function createFile(entry, options, method, fileId) { + const folder = await cozy.files.statByPath(options.folderPath); + let createFileOptions = { + name: getFileName(entry), + dirID: folder._id + }; + + if (options.contentType) { + if (options.contentType === true && entry.filename) { + createFileOptions.contentType = mimetypes.contentType(entry.filename); } else { - var reason = res.headers['x-sentry-error']; - var e = new Error('HTTP Error (' + res.statusCode + '): ' + reason); - e.response = res; - e.statusCode = res.statusCode; - e.reason = reason; - e.sendMessage = message; - e.requestHeaders = headers; - e.eventId = eventId; - client.emit('error', e); - cb && cb(e); + createFileOptions.contentType = options.contentType; } + } - // force the socket to drain - var noop = function() {}; - res.on('data', noop); - res.on('end', noop); - }); + createFileOptions = { ...createFileOptions, + ...entry.fileAttributes, + ...options.sourceAccountOptions + }; - timeoutReq(req, client.sendTimeout * 1000); + if (options.fileIdAttributes) { + createFileOptions = { ...createFileOptions, + ...{ + metadata: { ...createFileOptions.metadata, + fileIdAttributes: calculateFileKey(entry, options.fileIdAttributes) + } + } + }; + } - var cbFired = false; - req.on('error', function(e) { - client.emit('error', e); - if (!cbFired) { - cb && cb(e); - cbFired = true; - } - }); - req.end(message); -}; + let toCreate; -function HTTPSTransport(options) { - this.defaultPort = 443; - this.transport = https; - this.options = options || {}; - this.agent = httpsAgent; -} -util.inherits(HTTPSTransport, HTTPTransport); + if (entry.filestream) { + toCreate = entry.filestream; + } else if (entry.fetchFile || options.fetchFile) { + toCreate = await (entry.fetchFile || options.fetchFile)(entry); + } else { + toCreate = downloadEntry(entry, { ...options, + simple: false + }); + } -module.exports.http = new HTTPTransport(); -module.exports.https = new HTTPSTransport(); -module.exports.Transport = Transport; -module.exports.HTTPTransport = HTTPTransport; -module.exports.HTTPSTransport = HTTPSTransport; + let fileDocument; + if (method === 'create') { + fileDocument = await cozy.files.create(toCreate, createFileOptions); + } else if (method === 'updateById') { + log('debug', `replacing file for ${entry.filename}`); + fileDocument = await cozy.files.updateById(fileId, toCreate, createFileOptions); + } -/***/ }), -/* 1275 */ -/***/ (function(module, exports, __webpack_require__) { + if (options.validateFile) { + if ((await options.validateFile(fileDocument)) === false) { + await removeFile(fileDocument); + throw new Error('BAD_DOWNLOADED_FILE'); + } -"use strict"; + if (options.validateFileContent && !(await options.validateFileContent(fileDocument))) { + await removeFile(fileDocument); + throw new Error('BAD_DOWNLOADED_FILE'); + } + } + return fileDocument; +} -module.exports = function (req, time) { - if (req.timeoutTimer) { - return req; - } +function downloadEntry(entry, options) { + let filePromise = getRequestInstance(entry, options)(getRequestOptions(entry, options)); - var delays = isNaN(time) ? time : {socket: time, connect: time}; - var host = req._headers ? (' to ' + req._headers.host) : ''; + if (options.contentType) { + // the developper wants to force the contentType of the document + // we pipe the stream to remove headers with bad contentType from the request + return filePromise.pipe(new stream.PassThrough()); + } // we have to do this since the result of filePromise is not a stream and cannot be taken by + // cozy.files.create - if (delays.connect !== undefined) { - req.timeoutTimer = setTimeout(function timeoutHandler() { - req.abort(); - var e = new Error('Connection timed out on request' + host); - e.code = 'ETIMEDOUT'; - req.emit('error', e); - }, delays.connect); - } - // Clear the connection timeout timer once a socket is assigned to the - // request and is connected. - req.on('socket', function assign(socket) { - // Socket may come from Agent pool and may be already connected. - if (!(socket.connecting || socket._connecting)) { - connect(); - return; - } + if (options.postProcessFile) { + log('warn', 'Be carefull postProcessFile option is deprecated. You should use the filestream attribute in each entry instead'); + return filePromise.then(data => options.postProcessFile(data)); + } - socket.once('connect', connect); - }); + filePromise.catch(err => { + log('warn', `File download error ${err.message}`); + }); + return filePromise; +} - function clear() { - if (req.timeoutTimer) { - clearTimeout(req.timeoutTimer); - req.timeoutTimer = null; - } - } +const shouldReplaceFile = async function (file, entry, options) { + const isValid = !options.validateFile || (await options.validateFile(file)); - function connect() { - clear(); + if (!isValid) { + log('warn', `${getFileName({ + file, + options + })} is invalid`); + throw new Error('BAD_DOWNLOADED_FILE'); + } - if (delays.socket !== undefined) { - // Abort the request if there is no activity on the socket for more - // than `delays.socket` milliseconds. - req.setTimeout(delays.socket, function socketTimeoutHandler() { - req.abort(); - var e = new Error('Socket timed out on request' + host); - e.code = 'ESOCKETTIMEDOUT'; - req.emit('error', e); - }); - } - } + const defaultShouldReplaceFile = (file, entry) => { + // replace all files with meta if there is file metadata to add + const fileHasNoMetadata = !getAttribute(file, 'metadata'); + const fileHasNoId = !getAttribute(file, 'metadata.fileIdAttributes'); + const entryHasMetadata = !!get(entry, 'fileAttributes.metadata'); + const hasSourceAccountIdentifierOption = !!get(options, 'sourceAccountOptions.sourceAccountIdentifier'); + const fileHasSourceAccountIdentifier = !!getAttribute(file, 'cozyMetadata.sourceAccountIdentifier'); + const result = fileHasNoMetadata && entryHasMetadata || fileHasNoId && !!options.fileIdAttributes || hasSourceAccountIdentifierOption && !fileHasSourceAccountIdentifier; + return result; + }; - return req.on('error', clear); + const shouldReplaceFileFn = entry.shouldReplaceFile || options.shouldReplaceFile || defaultShouldReplaceFile; + return shouldReplaceFileFn(file, entry); }; +const removeFile = async function (file) { + await cozy.files.trashById(file._id); + await cozy.files.destroyById(file._id); +}; -/***/ }), -/* 1276 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -// Original repository: https://github.com/defunctzombie/node-lsmod/ -// -// [2018-02-09] @kamilogorek - Handle scoped packages structure - -// builtin -var fs = __webpack_require__(167); -var path = __webpack_require__(160); - -// node 0.6 support -fs.existsSync = fs.existsSync || path.existsSync; +module.exports = saveFiles; +module.exports.getFileIfExists = getFileIfExists; -// mainPaths are the paths where our mainprog will be able to load from -// we store these to avoid grabbing the modules that were loaded as a result -// of a dependency module loading its dependencies, we only care about deps our -// mainprog loads -var mainPaths = (__webpack_require__.c[__webpack_require__.s] && __webpack_require__.c[__webpack_require__.s].paths) || []; +function getFileName(entry) { + let filename; -module.exports = function() { - var paths = Object.keys(__webpack_require__.c || []); + if (entry.filename) { + filename = entry.filename; + } else if (entry.fileurl) { + // try to get the file name from the url + const parsed = __webpack_require__(83).parse(entry.fileurl); - // module information - var infos = {}; + filename = path.basename(parsed.pathname); + } else { + log('error', 'Could not get a file name for the entry'); + return false; + } - // paths we have already inspected to avoid traversing again - var seen = {}; + return sanitizeFileName(filename); +} - paths.forEach(function(p) { - /* eslint-disable consistent-return */ +function sanitizeFileName(filename) { + return filename.replace(/^\.+$/, '').replace(/[/?<>\\:*|":]/g, ''); +} - var dir = p; +function checkFileSize(fileobject) { + const size = getAttribute(fileobject, 'size'); + const name = getAttribute(fileobject, 'name'); - (function updir() { - var orig = dir; - dir = path.dirname(orig); + if (size === 0 || size === '0') { + log('warn', `${name} is empty`); + log('warn', 'BAD_FILE_SIZE'); + return false; + } - if (/@[^/]+$/.test(dir)) { - dir = path.dirname(dir); - } + return true; +} - if (!dir || orig === dir || seen[orig]) { - return; - } else if (mainPaths.indexOf(dir) < 0) { - return updir(); - } +function checkMimeWithPath(fileDocument) { + const mime = getAttribute(fileDocument, 'mime'); + const name = getAttribute(fileDocument, 'name'); + const extension = path.extname(name).substr(1); - var pkgfile = path.join(orig, 'package.json'); - var exists = fs.existsSync(pkgfile); + if (extension && mime && mimetypes.lookup(extension) !== mime) { + log('warn', `${name} and ${mime} do not correspond`); + log('warn', 'BAD_MIME_TYPE'); + return false; + } - seen[orig] = true; + return true; +} - // travel up the tree if no package.json here - if (!exists) { - return updir(); - } +function logFileStream(fileStream) { + if (!fileStream) return; - try { - var info = JSON.parse(fs.readFileSync(pkgfile, 'utf8')); - infos[info.name] = info.version; - } catch (e) {} - })(); + if (fileStream && fileStream.constructor && fileStream.constructor.name) { + log('debug', `The fileStream attribute is an instance of ${fileStream.constructor.name}`); + } else { + log('debug', `The fileStream attribute is a ${typeof fileStream}`); + } +} - /* eslint-enable consistent-return */ +async function getFiles(folderPath) { + const dir = await cozy.files.statByPath(folderPath); + const files = await queryAll('io.cozy.files', { + dir_id: dir._id }); + return files; +} - return infos; -}; +async function renameFile(file, entry) { + if (!entry.filename) { + throw new Error('shouldReplaceName needs a filename'); + } + log('debug', `Renaming ${getAttribute(file, 'name')} to ${entry.filename}`); -/***/ }), -/* 1277 */ -/***/ (function(module, exports) { + try { + await cozy.files.updateAttributesById(file._id, { + name: entry.filename + }); + } catch (err) { + if (JSON.parse(err.message).errors.shift().status === '409') { + log('warn', `${entry.filename} already exists. Removing ${getAttribute(file, 'name')}`); + await cozy.files.trashById(file._id); + } + } +} -exports.get = function(belowFn) { - var oldLimit = Error.stackTraceLimit; - Error.stackTraceLimit = Infinity; +function getErrorStatus(err) { + try { + return Number(JSON.parse(err.message).errors[0].status); + } catch (e) { + return null; + } +} - var dummyObject = {}; +function getValOrFnResult(val, ...args) { + if (typeof val === 'function') { + return val.apply(val, args); + } else return val; +} - var v8Handler = Error.prepareStackTrace; - Error.prepareStackTrace = function(dummyObject, v8StackTrace) { - return v8StackTrace; - }; - Error.captureStackTrace(dummyObject, belowFn || exports.get); +function calculateFileKey(entry, fileIdAttributes) { + return fileIdAttributes.sort().map(key => get(entry, key)).join('####'); +} - var v8StackTrace = dummyObject.stack; - Error.prepareStackTrace = v8Handler; - Error.stackTraceLimit = oldLimit; +function defaultValidateFile(fileDocument) { + return checkFileSize(fileDocument) && checkMimeWithPath(fileDocument); +} - return v8StackTrace; -}; +async function defaultValidateFileContent(fileDocument) { + const response = await cozy.files.downloadById(fileDocument._id); + const mime = getAttribute(fileDocument, 'mime'); + const fileTypeFromContent = await fileType.fromBuffer(await response.buffer()); -exports.parse = function(err) { - if (!err.stack) { - return []; + if (!fileTypeFromContent) { + log('warn', `Could not find mime type from file content`); + return false; } - var self = this; - var lines = err.stack.split('\n').slice(1); - - return lines - .map(function(line) { - if (line.match(/^\s*[-]{4,}$/)) { - return self._createParsedCallSite({ - fileName: line, - lineNumber: null, - functionName: null, - typeName: null, - methodName: null, - columnNumber: null, - 'native': null, - }); - } - - var lineMatch = line.match(/at (?:(.+)\s+\()?(?:(.+?):(\d+)(?::(\d+))?|([^)]+))\)?/); - if (!lineMatch) { - return; - } - - var object = null; - var method = null; - var functionName = null; - var typeName = null; - var methodName = null; - var isNative = (lineMatch[5] === 'native'); - - if (lineMatch[1]) { - functionName = lineMatch[1]; - var methodStart = functionName.lastIndexOf('.'); - if (functionName[methodStart-1] == '.') - methodStart--; - if (methodStart > 0) { - object = functionName.substr(0, methodStart); - method = functionName.substr(methodStart + 1); - var objectEnd = object.indexOf('.Module'); - if (objectEnd > 0) { - functionName = functionName.substr(objectEnd + 1); - object = object.substr(0, objectEnd); - } - } - typeName = null; - } + if (!defaultValidateFile(fileDocument) || mime !== fileTypeFromContent.mime) { + log('warn', `Wrong file type from content ${JSON.stringify(fileTypeFromContent)}`); + return false; + } - if (method) { - typeName = object; - methodName = method; - } + return true; +} - if (method === '<anonymous>') { - methodName = null; - functionName = null; - } +function sanitizeEntry(entry) { + delete entry.fetchFile; + delete entry.requestOptions; + delete entry.filestream; + delete entry.shouldReplaceFile; + return entry; +} - var properties = { - fileName: lineMatch[2] || null, - lineNumber: parseInt(lineMatch[3], 10) || null, - functionName: functionName, - typeName: typeName, - methodName: methodName, - columnNumber: parseInt(lineMatch[4], 10) || null, - 'native': isNative, - }; +function getRequestInstance(entry, options) { + return options.requestInstance ? options.requestInstance : requestFactory({ + json: false, + cheerio: false, + userAgent: true, + jar: true + }); +} - return self._createParsedCallSite(properties); - }) - .filter(function(callSite) { - return !!callSite; - }); -}; +function getRequestOptions(entry, options) { + const defaultRequestOptions = { + uri: entry.fileurl, + method: 'GET' + }; -function CallSite(properties) { - for (var property in properties) { - this[property] = properties[property]; + if (!options.requestInstance) { + // if requestInstance is already set, we suppose that the connecteur want to handle the cookie + // jar itself + defaultRequestOptions.jar = true; } + + return { ...defaultRequestOptions, + ...entry.requestOptions + }; } -var strProperties = [ - 'this', - 'typeName', - 'functionName', - 'methodName', - 'fileName', - 'lineNumber', - 'columnNumber', - 'function', - 'evalOrigin' -]; -var boolProperties = [ - 'topLevel', - 'eval', - 'native', - 'constructor' -]; -strProperties.forEach(function (property) { - CallSite.prototype[property] = null; - CallSite.prototype['get' + property[0].toUpperCase() + property.substr(1)] = function () { - return this[property]; - } -}); -boolProperties.forEach(function (property) { - CallSite.prototype[property] = false; - CallSite.prototype['is' + property[0].toUpperCase() + property.substr(1)] = function () { - return this[property]; +function attachFileToEntry(entry, fileDocument) { + entry.fileDocument = fileDocument; + return entry; +} + +function getFilePath({ + file, + entry, + options +}) { + const folderPath = options.folderPath; + + if (file) { + return path.join(folderPath, getAttribute(file, 'name')); + } else if (entry) { + return path.join(folderPath, getFileName(entry)); } -}); +} -exports._createParsedCallSite = function(properties) { - return new CallSite(properties); -}; +function getAttribute(obj, attribute) { + return get(obj, `attributes.${attribute}`, get(obj, attribute)); +} +async function getOrCreateDestinationPath(entry, saveOptions) { + const subPath = entry.subPath || saveOptions.subPath; + let finalPath = saveOptions.folderPath; -/***/ }), -/* 1278 */ -/***/ (function(module) { + if (subPath) { + finalPath += '/' + subPath; + await mkdirp(finalPath); + } -module.exports = JSON.parse("{\"name\":\"raven\",\"description\":\"A standalone (Node.js) client for Sentry\",\"keywords\":[\"debugging\",\"errors\",\"exceptions\",\"logging\",\"raven\",\"sentry\"],\"version\":\"2.6.4\",\"repository\":\"git://github.com/getsentry/raven-js.git\",\"license\":\"BSD-2-Clause\",\"homepage\":\"https://github.com/getsentry/raven-js\",\"author\":\"Matt Robenolt <matt@ydekproductions.com>\",\"main\":\"index.js\",\"bin\":{\"raven\":\"./bin/raven\"},\"scripts\":{\"lint\":\"eslint .\",\"test\":\"NODE_ENV=test istanbul cover _mocha -- --reporter dot && NODE_ENV=test coffee ./test/run.coffee\",\"test-mocha\":\"NODE_ENV=test mocha\",\"test-full\":\"npm run test && cd test/instrumentation && ./run.sh\"},\"engines\":{\"node\":\">= 4.0.0\"},\"dependencies\":{\"cookie\":\"0.3.1\",\"md5\":\"^2.2.1\",\"stack-trace\":\"0.0.10\",\"timed-out\":\"4.0.1\",\"uuid\":\"3.3.2\"},\"devDependencies\":{\"coffee-script\":\"~1.10.0\",\"connect\":\"*\",\"eslint\":\"^4.5.0\",\"eslint-config-prettier\":\"^2.3.0\",\"express\":\"*\",\"glob\":\"~3.1.13\",\"istanbul\":\"^0.4.3\",\"mocha\":\"~3.1.2\",\"nock\":\"~9.0.0\",\"prettier\":\"^1.6.1\",\"should\":\"11.2.0\",\"sinon\":\"^3.3.0\"},\"prettier\":{\"singleQuote\":true,\"bracketSpacing\":false,\"printWidth\":90}}"); + return finalPath; +} /***/ }), -/* 1279 */ +/* 1405 */ /***/ (function(module, exports, __webpack_require__) { -var v1 = __webpack_require__(1280); -var v4 = __webpack_require__(1283); -var uuid = v4; -uuid.v1 = v1; -uuid.v4 = v4; - -module.exports = uuid; +module.exports = __webpack_require__(1406); /***/ }), -/* 1280 */ +/* 1406 */ /***/ (function(module, exports, __webpack_require__) { -var rng = __webpack_require__(1281); -var bytesToUuid = __webpack_require__(1282); +var Promise = __webpack_require__(25); -// **`v1()` - Generate time-based UUID** +// Subclass of Error that can be thrown to indicate that retry should stop. // -// Inspired by https://github.com/LiosK/UUID.js -// and http://docs.python.org/library/uuid.html +// If called with an instance of Error subclass, then the retry promise will be +// rejected with the given error. +// +// Otherwise the cancel error object itself is propagated to the caller. +// +function StopError(err) { + this.name = 'StopError'; + if (err instanceof Error) { + this.err = err + } else { + this.message = err || 'cancelled' + } +} +StopError.prototype = Object.create(Error.prototype); -var _nodeId; -var _clockseq; +retry.StopError = StopError; -// Previous uuid creation time -var _lastMSecs = 0; -var _lastNSecs = 0; -// See https://github.com/broofa/node-uuid for API details -function v1(options, buf, offset) { - var i = buf && offset || 0; - var b = buf || []; +// Retry `func` until it succeeds. +// +// For each attempt, invokes `func` with `options.args` as arguments and +// `options.context` as `this`. +// +// Waits `options.interval` milliseconds (default 1000) between attempts. +// +// Increases wait by a factor of `options.backoff` each interval, up to +// a limit of `options.max_interval`. +// +// Keeps trying until `options.timeout` milliseconds have elapsed, +// or `options.max_tries` have been attempted, whichever comes first. +// +// If neither is specified, then the default is to make 5 attempts. +// - options = options || {}; - var node = options.node || _nodeId; - var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; +function retry(func, options) { + options = options || {}; - // node and clockseq need to be initialized to random values if they're not - // specified. We do this lazily to minimize issues related to insufficient - // system entropy. See #189 - if (node == null || clockseq == null) { - var seedBytes = rng(); - if (node == null) { - // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1) - node = _nodeId = [ - seedBytes[0] | 0x01, - seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5] - ]; + var interval = typeof options.interval === 'number' ? options.interval : 1000; + + var max_tries, giveup_time; + if (typeof(options.max_tries) !== 'undefined') { + max_tries = options.max_tries; } - if (clockseq == null) { - // Per 4.2.2, randomize (14 bit) clockseq - clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff; + + if (options.timeout) { + giveup_time = new Date().getTime() + options.timeout; } - } - // UUID timestamps are 100 nano-second units since the Gregorian epoch, - // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so - // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs' - // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00. - var msecs = options.msecs !== undefined ? options.msecs : new Date().getTime(); + if (!max_tries && !giveup_time) { + max_tries = 5; + } - // Per 4.2.1.2, use count of uuid's generated during the current clock - // cycle to simulate higher resolution clock - var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; + var tries = 0; + var start = new Date().getTime(); - // Time since last uuid creation (in msecs) - var dt = (msecs - _lastMSecs) + (nsecs - _lastNSecs)/10000; + // If the user didn't supply a predicate function then add one that + // always succeeds. + // + // This is used in bluebird's filtered catch to flag the error types + // that should retry. + var predicate = options.predicate || function(err) { return true; } + var stopped = false; - // Per 4.2.1.2, Bump clockseq on clock regression - if (dt < 0 && options.clockseq === undefined) { - clockseq = clockseq + 1 & 0x3fff; - } + function try_once() { + var tryStart = new Date().getTime(); + return Promise.attempt(function() { + return func.apply(options.context, options.args); + }) + .caught(StopError, function(err) { + stopped = true; + if (err.err instanceof Error) { + return Promise.reject(err.err); + } else { + return Promise.reject(err); + } + }) + .caught(predicate, function(err) { + if (stopped) { + return Promise.reject(err); + } + ++tries; + if (tries > 1) { + interval = backoff(interval, options); + } + var now = new Date().getTime(); - // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new - // time interval - if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) { - nsecs = 0; - } + if ((max_tries && (tries === max_tries) || + (giveup_time && (now + interval >= giveup_time)))) { - // Per 4.2.1.2 Throw error if too many uuids are requested - if (nsecs >= 10000) { - throw new Error('uuid.v1(): Can\'t create more than 10M uuids/sec'); - } + if (! (err instanceof Error)) { + var failure = err; - _lastMSecs = msecs; - _lastNSecs = nsecs; - _clockseq = clockseq; + if (failure) { + if (typeof failure !== 'string') { + failure = JSON.stringify(failure); + } + } - // Per 4.1.4 - Convert from unix epoch to Gregorian epoch - msecs += 12219292800000; + err = new Error('rejected with non-error: ' + failure); + err.failure = failure; + } else if (options.throw_original) { + return Promise.reject(err); + } - // `time_low` - var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000; - b[i++] = tl >>> 24 & 0xff; - b[i++] = tl >>> 16 & 0xff; - b[i++] = tl >>> 8 & 0xff; - b[i++] = tl & 0xff; + var timeout = new Error('operation timed out after ' + (now - start) + ' ms, ' + tries + ' tries with error: ' + err.message); + timeout.failure = err; + timeout.code = 'ETIMEDOUT'; + return Promise.reject(timeout); + } else { + var delay = interval - (now - tryStart); + if (delay <= 0) { + return try_once(); + } else { + return Promise.delay(delay).then(try_once); + } + } + }); + } + return try_once(); +} - // `time_mid` - var tmh = (msecs / 0x100000000 * 10000) & 0xfffffff; - b[i++] = tmh >>> 8 & 0xff; - b[i++] = tmh & 0xff; +// Return the updated interval after applying the various backoff options +function backoff(interval, options) { + if (options.backoff) { + interval = interval * options.backoff; + } - // `time_high_and_version` - b[i++] = tmh >>> 24 & 0xf | 0x10; // include version - b[i++] = tmh >>> 16 & 0xff; + if (options.max_interval) { + interval = Math.min(interval, options.max_interval); + } - // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant) - b[i++] = clockseq >>> 8 | 0x80; + return interval; +} - // `clock_seq_low` - b[i++] = clockseq & 0xff; +module.exports = retry; - // `node` - for (var n = 0; n < 6; ++n) { - b[i + n] = node[n]; - } - return buf ? buf : bytesToUuid(b); -} +/***/ }), +/* 1407 */ +/***/ (function(module, exports, __webpack_require__) { -module.exports = v1; +/** + * @module mkdirp + */ +const { + basename, + dirname, + join +} = __webpack_require__(160).posix; + +const cozyClient = __webpack_require__(487); +/** + * Creates a directory and its missing ancestors as needed. + * + * Options : + * + * - `...pathComponents`: one or many path components to be joined + * + * ```javascript + * await mkdirp('/foo') // Creates /foo + * await mkdirp('/foo') // Does nothing as /foo already exists + * await mkdirp('/bar/baz') // Creates /bar, then /bar/baz + * await mkdirp('/foo/bar/baz') // Creates /foo/bar, then /foo/bar/baz, not /foo + * await mkdirp('/') // Does nothing + * await mkdirp('/qux', 'qux2/qux3', 'qux4') // Creates /qux, then /qux/qux2, + * // then /qux/qux2/qux3 and + * // finally /qux/qux2/qux3/qux4 + * ``` + * + * The function will automatically add a leading slash when missing: + * + * ```javascript + * await mkdirp('foo', 'bar') // Creates /foo, then /foo/bar + * ``` + * + * @alias module:mkdirp + */ + + +const mkdirp = fromCozy(cozyClient); +module.exports = mkdirp; // `fromCozy()` builds an mkdirp() function for the given Cozy client. +// Useful for testing. + +mkdirp.fromCozy = fromCozy; + +function fromCozy(cozy) { + return async function mkdirp(...pathComponents) { + const path = join('/', ...pathComponents); + let doc = null; + try { + doc = await cozy.files.statByPath(path); + return doc; + } catch (err) { + if (![404, 409].includes(err.status)) throw err; + const name = basename(path); + const parentPath = dirname(path); + const parentDoc = await mkdirp(parentPath); + + try { + doc = await cozy.files.createDirectory({ + name, + dirID: parentDoc._id + }); + return doc; + } catch (createErr) { + if (![404, 409].includes(createErr.status)) throw createErr; + return doc; + } + } + }; +} /***/ }), -/* 1281 */ +/* 1408 */ /***/ (function(module, exports, __webpack_require__) { -// Unique ID creation requires a high quality random # generator. In node.js -// this is pretty straight-forward - we use the crypto API. +"use strict"; -var crypto = __webpack_require__(94); +/** + * The konnector could not login + * + * @type {string} + */ -module.exports = function nodeRNG() { - return crypto.randomBytes(16); -}; +const LOGIN_FAILED = 'LOGIN_FAILED'; +/** + * The folder specified as folder_to_save does not exist (checked by BaseKonnector) + * + * @type {string} + */ +const NOT_EXISTING_DIRECTORY = 'NOT_EXISTING_DIRECTORY'; +/** + * The vendor's website is down + * + * @type {string} + */ -/***/ }), -/* 1282 */ -/***/ (function(module, exports) { +const VENDOR_DOWN = 'VENDOR_DOWN'; +/** + * There was an unexpected error, please take a look at the logs to know what happened + * + * @type {string} + */ +const USER_ACTION_NEEDED = 'USER_ACTION_NEEDED'; /** - * Convert array of 16 byte values to UUID string format of the form: - * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX + * There was a problem while downloading a file + * + * @type {string} */ -var byteToHex = []; -for (var i = 0; i < 256; ++i) { - byteToHex[i] = (i + 0x100).toString(16).substr(1); -} -function bytesToUuid(buf, offset) { - var i = offset || 0; - var bth = byteToHex; - // join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4 - return ([bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]]]).join(''); -} +const FILE_DOWNLOAD_FAILED = 'FILE_DOWNLOAD_FAILED'; +/** + * There was a problem while saving a file + * + * @type {string} + */ -module.exports = bytesToUuid; +const SAVE_FILE_FAILED = 'SAVE_FILE_FAILED'; +/** + * Could not save a file to the cozy because of disk quota exceeded + * + * @type {string} + */ +const DISK_QUOTA_EXCEEDED = 'DISK_QUOTA_EXCEEDED'; +/** + * It seems that the website requires a second authentification factor that we don’t support yet. + * + * @type {string} + */ -/***/ }), -/* 1283 */ -/***/ (function(module, exports, __webpack_require__) { +const CHALLENGE_ASKED = 'CHALLENGE_ASKED'; +/** + * Temporarily blocked + * + * @type {string} + */ -var rng = __webpack_require__(1281); -var bytesToUuid = __webpack_require__(1282); +const LOGIN_FAILED_TOO_MANY_ATTEMPTS = 'LOGIN_FAILED.TOO_MANY_ATTEMPTS'; +/** + * Access refresh required + * + * @type {string} + */ -function v4(options, buf, offset) { - var i = buf && offset || 0; +const USER_ACTION_NEEDED_OAUTH_OUTDATED = 'USER_ACTION_NEEDED.OAUTH_OUTDATED'; +/** + * Unavailable account + * + * @type {string} + */ - if (typeof(options) == 'string') { - buf = options === 'binary' ? new Array(16) : null; - options = null; - } - options = options || {}; +const USER_ACTION_NEEDED_ACCOUNT_REMOVED = 'USER_ACTION_NEEDED.ACCOUNT_REMOVED'; +/** + * Unavailable account + * + * @type {string} + */ - var rnds = options.random || (options.rng || rng)(); +const USER_ACTION_NEEDED_CHANGE_PASSWORD = 'USER_ACTION_NEEDED.CHANGE_PASSWORD'; +/** + * Password update required + * + * @type {string} + */ - // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` - rnds[6] = (rnds[6] & 0x0f) | 0x40; - rnds[8] = (rnds[8] & 0x3f) | 0x80; +const USER_ACTION_NEEDED_PERMISSIONS_CHANGED = 'USER_ACTION_NEEDED.PERMISSIONS_CHANGED'; +/** + * The user needs to accept a CGU form before accessing the rest of the website + * + * @type {string} + */ - // Copy bytes to buffer, if provided - if (buf) { - for (var ii = 0; ii < 16; ++ii) { - buf[i + ii] = rnds[ii]; - } - } +const USER_ACTION_NEEDED_CGU_FORM = 'USER_ACTION_NEEDED.CGU_FORM'; +/** + * solveCaptcha failed to solve the captcha + * + * @type {string} + */ - return buf || bytesToUuid(rnds); +const CAPTCHA_RESOLUTION_FAILED = 'CAPTCHA_RESOLUTION_FAILED'; +module.exports = { + LOGIN_FAILED, + NOT_EXISTING_DIRECTORY, + VENDOR_DOWN, + USER_ACTION_NEEDED, + FILE_DOWNLOAD_FAILED, + SAVE_FILE_FAILED, + DISK_QUOTA_EXCEEDED, + CHALLENGE_ASKED, + LOGIN_FAILED_TOO_MANY_ATTEMPTS, + USER_ACTION_NEEDED_OAUTH_OUTDATED, + USER_ACTION_NEEDED_ACCOUNT_REMOVED, + USER_ACTION_NEEDED_CHANGE_PASSWORD, + USER_ACTION_NEEDED_PERMISSIONS_CHANGED, + USER_ACTION_NEEDED_CGU_FORM, + CAPTCHA_RESOLUTION_FAILED +}; + +/***/ }), +/* 1409 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + +const strtok3 = __webpack_require__(1410); +const core = __webpack_require__(1419); + +async function fromFile(path) { + const tokenizer = await strtok3.fromFile(path); + try { + return await core.fromTokenizer(tokenizer); + } finally { + await tokenizer.close(); + } } -module.exports = v4; +const fileType = { + fromFile +}; +Object.assign(fileType, core); -/***/ }), -/* 1284 */ -/***/ (function(module, exports) { +Object.defineProperty(fileType, 'extensions', { + get() { + return core.extensions; + } +}); + +Object.defineProperty(fileType, 'mimeTypes', { + get() { + return core.mimeTypes; + } +}); + +module.exports = fileType; -module.exports = require("domain"); /***/ }), -/* 1285 */ +/* 1410 */ /***/ (function(module, exports, __webpack_require__) { -(function(){ - var crypt = __webpack_require__(1286), - utf8 = __webpack_require__(1287).utf8, - isBuffer = __webpack_require__(1288), - bin = __webpack_require__(1287).bin, - - // The core - md5 = function (message, options) { - // Convert to byte array - if (message.constructor == String) - if (options && options.encoding === 'binary') - message = bin.stringToBytes(message); - else - message = utf8.stringToBytes(message); - else if (isBuffer(message)) - message = Array.prototype.slice.call(message, 0); - else if (!Array.isArray(message) && message.constructor !== Uint8Array) - message = message.toString(); - // else, assume byte array already - - var m = crypt.bytesToWords(message), - l = message.length * 8, - a = 1732584193, - b = -271733879, - c = -1732584194, - d = 271733878; - - // Swap endian - for (var i = 0; i < m.length; i++) { - m[i] = ((m[i] << 8) | (m[i] >>> 24)) & 0x00FF00FF | - ((m[i] << 24) | (m[i] >>> 8)) & 0xFF00FF00; - } - - // Padding - m[l >>> 5] |= 0x80 << (l % 32); - m[(((l + 64) >>> 9) << 4) + 14] = l; - - // Method shortcuts - var FF = md5._ff, - GG = md5._gg, - HH = md5._hh, - II = md5._ii; - - for (var i = 0; i < m.length; i += 16) { - - var aa = a, - bb = b, - cc = c, - dd = d; - - a = FF(a, b, c, d, m[i+ 0], 7, -680876936); - d = FF(d, a, b, c, m[i+ 1], 12, -389564586); - c = FF(c, d, a, b, m[i+ 2], 17, 606105819); - b = FF(b, c, d, a, m[i+ 3], 22, -1044525330); - a = FF(a, b, c, d, m[i+ 4], 7, -176418897); - d = FF(d, a, b, c, m[i+ 5], 12, 1200080426); - c = FF(c, d, a, b, m[i+ 6], 17, -1473231341); - b = FF(b, c, d, a, m[i+ 7], 22, -45705983); - a = FF(a, b, c, d, m[i+ 8], 7, 1770035416); - d = FF(d, a, b, c, m[i+ 9], 12, -1958414417); - c = FF(c, d, a, b, m[i+10], 17, -42063); - b = FF(b, c, d, a, m[i+11], 22, -1990404162); - a = FF(a, b, c, d, m[i+12], 7, 1804603682); - d = FF(d, a, b, c, m[i+13], 12, -40341101); - c = FF(c, d, a, b, m[i+14], 17, -1502002290); - b = FF(b, c, d, a, m[i+15], 22, 1236535329); - - a = GG(a, b, c, d, m[i+ 1], 5, -165796510); - d = GG(d, a, b, c, m[i+ 6], 9, -1069501632); - c = GG(c, d, a, b, m[i+11], 14, 643717713); - b = GG(b, c, d, a, m[i+ 0], 20, -373897302); - a = GG(a, b, c, d, m[i+ 5], 5, -701558691); - d = GG(d, a, b, c, m[i+10], 9, 38016083); - c = GG(c, d, a, b, m[i+15], 14, -660478335); - b = GG(b, c, d, a, m[i+ 4], 20, -405537848); - a = GG(a, b, c, d, m[i+ 9], 5, 568446438); - d = GG(d, a, b, c, m[i+14], 9, -1019803690); - c = GG(c, d, a, b, m[i+ 3], 14, -187363961); - b = GG(b, c, d, a, m[i+ 8], 20, 1163531501); - a = GG(a, b, c, d, m[i+13], 5, -1444681467); - d = GG(d, a, b, c, m[i+ 2], 9, -51403784); - c = GG(c, d, a, b, m[i+ 7], 14, 1735328473); - b = GG(b, c, d, a, m[i+12], 20, -1926607734); - - a = HH(a, b, c, d, m[i+ 5], 4, -378558); - d = HH(d, a, b, c, m[i+ 8], 11, -2022574463); - c = HH(c, d, a, b, m[i+11], 16, 1839030562); - b = HH(b, c, d, a, m[i+14], 23, -35309556); - a = HH(a, b, c, d, m[i+ 1], 4, -1530992060); - d = HH(d, a, b, c, m[i+ 4], 11, 1272893353); - c = HH(c, d, a, b, m[i+ 7], 16, -155497632); - b = HH(b, c, d, a, m[i+10], 23, -1094730640); - a = HH(a, b, c, d, m[i+13], 4, 681279174); - d = HH(d, a, b, c, m[i+ 0], 11, -358537222); - c = HH(c, d, a, b, m[i+ 3], 16, -722521979); - b = HH(b, c, d, a, m[i+ 6], 23, 76029189); - a = HH(a, b, c, d, m[i+ 9], 4, -640364487); - d = HH(d, a, b, c, m[i+12], 11, -421815835); - c = HH(c, d, a, b, m[i+15], 16, 530742520); - b = HH(b, c, d, a, m[i+ 2], 23, -995338651); - - a = II(a, b, c, d, m[i+ 0], 6, -198630844); - d = II(d, a, b, c, m[i+ 7], 10, 1126891415); - c = II(c, d, a, b, m[i+14], 15, -1416354905); - b = II(b, c, d, a, m[i+ 5], 21, -57434055); - a = II(a, b, c, d, m[i+12], 6, 1700485571); - d = II(d, a, b, c, m[i+ 3], 10, -1894986606); - c = II(c, d, a, b, m[i+10], 15, -1051523); - b = II(b, c, d, a, m[i+ 1], 21, -2054922799); - a = II(a, b, c, d, m[i+ 8], 6, 1873313359); - d = II(d, a, b, c, m[i+15], 10, -30611744); - c = II(c, d, a, b, m[i+ 6], 15, -1560198380); - b = II(b, c, d, a, m[i+13], 21, 1309151649); - a = II(a, b, c, d, m[i+ 4], 6, -145523070); - d = II(d, a, b, c, m[i+11], 10, -1120210379); - c = II(c, d, a, b, m[i+ 2], 15, 718787259); - b = II(b, c, d, a, m[i+ 9], 21, -343485551); - - a = (a + aa) >>> 0; - b = (b + bb) >>> 0; - c = (c + cc) >>> 0; - d = (d + dd) >>> 0; - } - - return crypt.endian([a, b, c, d]); - }; - - // Auxiliary functions - md5._ff = function (a, b, c, d, x, s, t) { - var n = a + (b & c | ~b & d) + (x >>> 0) + t; - return ((n << s) | (n >>> (32 - s))) + b; - }; - md5._gg = function (a, b, c, d, x, s, t) { - var n = a + (b & d | c & ~d) + (x >>> 0) + t; - return ((n << s) | (n >>> (32 - s))) + b; - }; - md5._hh = function (a, b, c, d, x, s, t) { - var n = a + (b ^ c ^ d) + (x >>> 0) + t; - return ((n << s) | (n >>> (32 - s))) + b; - }; - md5._ii = function (a, b, c, d, x, s, t) { - var n = a + (c ^ (b | ~d)) + (x >>> 0) + t; - return ((n << s) | (n >>> (32 - s))) + b; - }; - - // Package private blocksize - md5._blocksize = 16; - md5._digestsize = 16; - - module.exports = function (message, options) { - if (message === undefined || message === null) - throw new Error('Illegal argument ' + message); - - var digestbytes = crypt.wordsToBytes(md5(message, options)); - return options && options.asBytes ? digestbytes : - options && options.asString ? bin.bytesToString(digestbytes) : - crypt.bytesToHex(digestbytes); - }; - -})(); +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.fromStream = exports.fromBuffer = exports.EndOfStreamError = exports.fromFile = void 0; +const fs = __webpack_require__(1411); +const core = __webpack_require__(1412); +var FileTokenizer_1 = __webpack_require__(1418); +Object.defineProperty(exports, "fromFile", { enumerable: true, get: function () { return FileTokenizer_1.fromFile; } }); +var core_1 = __webpack_require__(1412); +Object.defineProperty(exports, "EndOfStreamError", { enumerable: true, get: function () { return core_1.EndOfStreamError; } }); +Object.defineProperty(exports, "fromBuffer", { enumerable: true, get: function () { return core_1.fromBuffer; } }); +/** + * Construct ReadStreamTokenizer from given Stream. + * Will set fileSize, if provided given Stream has set the .path property. + * @param stream - Node.js Stream.Readable + * @param fileInfo - Pass additional file information to the tokenizer + * @returns Tokenizer + */ +async function fromStream(stream, fileInfo) { + fileInfo = fileInfo ? fileInfo : {}; + if (stream.path) { + const stat = await fs.stat(stream.path); + fileInfo.path = stream.path; + fileInfo.size = stat.size; + } + return core.fromStream(stream, fileInfo); +} +exports.fromStream = fromStream; /***/ }), -/* 1286 */ -/***/ (function(module, exports) { +/* 1411 */ +/***/ (function(module, exports, __webpack_require__) { -(function() { - var base64map - = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/', +"use strict"; - crypt = { - // Bit-wise rotation left - rotl: function(n, b) { - return (n << b) | (n >>> (32 - b)); - }, +/** + * Module convert fs functions to promise based functions + */ +Object.defineProperty(exports, "__esModule", { value: true }); +exports.readFile = exports.writeFileSync = exports.writeFile = exports.read = exports.open = exports.close = exports.stat = exports.createReadStream = exports.pathExists = void 0; +const fs = __webpack_require__(167); +exports.pathExists = fs.existsSync; +exports.createReadStream = fs.createReadStream; +async function stat(path) { + return new Promise((resolve, reject) => { + fs.stat(path, (err, stats) => { + if (err) + reject(err); + else + resolve(stats); + }); + }); +} +exports.stat = stat; +async function close(fd) { + return new Promise((resolve, reject) => { + fs.close(fd, err => { + if (err) + reject(err); + else + resolve(); + }); + }); +} +exports.close = close; +async function open(path, mode) { + return new Promise((resolve, reject) => { + fs.open(path, mode, (err, fd) => { + if (err) + reject(err); + else + resolve(fd); + }); + }); +} +exports.open = open; +async function read(fd, buffer, offset, length, position) { + return new Promise((resolve, reject) => { + fs.read(fd, buffer, offset, length, position, (err, bytesRead, _buffer) => { + if (err) + reject(err); + else + resolve({ bytesRead, buffer: _buffer }); + }); + }); +} +exports.read = read; +async function writeFile(path, data) { + return new Promise((resolve, reject) => { + fs.writeFile(path, data, err => { + if (err) + reject(err); + else + resolve(); + }); + }); +} +exports.writeFile = writeFile; +function writeFileSync(path, data) { + fs.writeFileSync(path, data); +} +exports.writeFileSync = writeFileSync; +async function readFile(path) { + return new Promise((resolve, reject) => { + fs.readFile(path, (err, buffer) => { + if (err) + reject(err); + else + resolve(buffer); + }); + }); +} +exports.readFile = readFile; - // Bit-wise rotation right - rotr: function(n, b) { - return (n << (32 - b)) | (n >>> b); - }, - // Swap big-endian to little-endian and vice versa - endian: function(n) { - // If number given, swap endian - if (n.constructor == Number) { - return crypt.rotl(n, 8) & 0x00FF00FF | crypt.rotl(n, 24) & 0xFF00FF00; - } +/***/ }), +/* 1412 */ +/***/ (function(module, exports, __webpack_require__) { - // Else, assume array and swap all items - for (var i = 0; i < n.length; i++) - n[i] = crypt.endian(n[i]); - return n; - }, +"use strict"; - // Generate an array of any length of random bytes - randomBytes: function(n) { - for (var bytes = []; n > 0; n--) - bytes.push(Math.floor(Math.random() * 256)); - return bytes; - }, +Object.defineProperty(exports, "__esModule", { value: true }); +exports.fromBuffer = exports.fromStream = exports.EndOfStreamError = void 0; +const ReadStreamTokenizer_1 = __webpack_require__(1413); +const BufferTokenizer_1 = __webpack_require__(1417); +var peek_readable_1 = __webpack_require__(1415); +Object.defineProperty(exports, "EndOfStreamError", { enumerable: true, get: function () { return peek_readable_1.EndOfStreamError; } }); +/** + * Construct ReadStreamTokenizer from given Stream. + * Will set fileSize, if provided given Stream has set the .path property/ + * @param stream - Read from Node.js Stream.Readable + * @param fileInfo - Pass the file information, like size and MIME-type of the correspnding stream. + * @returns ReadStreamTokenizer + */ +function fromStream(stream, fileInfo) { + fileInfo = fileInfo ? fileInfo : {}; + return new ReadStreamTokenizer_1.ReadStreamTokenizer(stream, fileInfo); +} +exports.fromStream = fromStream; +/** + * Construct ReadStreamTokenizer from given Buffer. + * @param buffer - Buffer to tokenize + * @param fileInfo - Pass additional file information to the tokenizer + * @returns BufferTokenizer + */ +function fromBuffer(buffer, fileInfo) { + return new BufferTokenizer_1.BufferTokenizer(buffer, fileInfo); +} +exports.fromBuffer = fromBuffer; - // Convert a byte array to big-endian 32-bit words - bytesToWords: function(bytes) { - for (var words = [], i = 0, b = 0; i < bytes.length; i++, b += 8) - words[b >>> 5] |= bytes[i] << (24 - b % 32); - return words; - }, - // Convert big-endian 32-bit words to a byte array - wordsToBytes: function(words) { - for (var bytes = [], b = 0; b < words.length * 32; b += 8) - bytes.push((words[b >>> 5] >>> (24 - b % 32)) & 0xFF); - return bytes; - }, +/***/ }), +/* 1413 */ +/***/ (function(module, exports, __webpack_require__) { - // Convert a byte array to a hex string - bytesToHex: function(bytes) { - for (var hex = [], i = 0; i < bytes.length; i++) { - hex.push((bytes[i] >>> 4).toString(16)); - hex.push((bytes[i] & 0xF).toString(16)); - } - return hex.join(''); - }, +"use strict"; - // Convert a hex string to a byte array - hexToBytes: function(hex) { - for (var bytes = [], c = 0; c < hex.length; c += 2) - bytes.push(parseInt(hex.substr(c, 2), 16)); - return bytes; - }, +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ReadStreamTokenizer = void 0; +const AbstractTokenizer_1 = __webpack_require__(1414); +const peek_readable_1 = __webpack_require__(1415); +// import * as _debug from 'debug'; +// const debug = _debug('strtok3:ReadStreamTokenizer'); +const maxBufferSize = 256000; +class ReadStreamTokenizer extends AbstractTokenizer_1.AbstractTokenizer { + constructor(stream, fileInfo) { + super(fileInfo); + this.streamReader = new peek_readable_1.StreamReader(stream); + } + /** + * Get file information, an HTTP-client may implement this doing a HEAD request + * @return Promise with file information + */ + async getFileInfo() { + return this.fileInfo; + } + /** + * Read buffer from tokenizer + * @param buffer - Target buffer to fill with data read from the tokenizer-stream + * @param options - Read behaviour options + * @returns Promise with number of bytes read + */ + async readBuffer(buffer, options) { + // const _offset = position ? position : this.position; + // debug(`readBuffer ${_offset}...${_offset + length - 1}`); + let offset = 0; + let length = buffer.length; + if (options) { + if (Number.isInteger(options.length)) { + length = options.length; + } + else { + length -= options.offset || 0; + } + if (options.position) { + const skipBytes = options.position - this.position; + if (skipBytes > 0) { + await this.ignore(skipBytes); + return this.readBuffer(buffer, options); + } + else if (skipBytes < 0) { + throw new Error('`options.position` must be equal or greater than `tokenizer.position`'); + } + } + if (options.offset) { + offset = options.offset; + } + } + if (length === 0) { + return 0; + } + const bytesRead = await this.streamReader.read(buffer, offset, length); + this.position += bytesRead; + if ((!options || !options.mayBeLess) && bytesRead < length) { + throw new peek_readable_1.EndOfStreamError(); + } + return bytesRead; + } + /** + * Peek (read ahead) buffer from tokenizer + * @param buffer - Target buffer to write the data read to + * @param options - Read behaviour options + * @returns Promise with number of bytes peeked + */ + async peekBuffer(buffer, options) { + // const _offset = position ? position : this.position; + // debug(`peek ${_offset}...${_offset + length - 1}`); + let offset = 0; + let bytesRead; + let length = buffer.length; + if (options) { + if (options.offset) { + offset = options.offset; + } + if (Number.isInteger(options.length)) { + length = options.length; + } + else { + length -= options.offset || 0; + } + if (options.position) { + const skipBytes = options.position - this.position; + if (skipBytes > 0) { + const skipBuffer = Buffer.alloc(length + skipBytes); + bytesRead = await this.peekBuffer(skipBuffer, { mayBeLess: options.mayBeLess }); + skipBuffer.copy(buffer, offset, skipBytes); + return bytesRead - skipBytes; + } + else if (skipBytes < 0) { + throw new Error('Cannot peek from a negative offset in a stream'); + } + } + } + try { + bytesRead = await this.streamReader.peek(buffer, offset, length); + } + catch (err) { + if (options && options.mayBeLess && err instanceof peek_readable_1.EndOfStreamError) { + return 0; + } + throw err; + } + if ((!options || !options.mayBeLess) && bytesRead < length) { + throw new peek_readable_1.EndOfStreamError(); + } + return bytesRead; + } + async ignore(length) { + // debug(`ignore ${this.position}...${this.position + length - 1}`); + const bufSize = Math.min(maxBufferSize, length); + const buf = Buffer.alloc(bufSize); + let totBytesRead = 0; + while (totBytesRead < length) { + const remaining = length - totBytesRead; + const bytesRead = await this.readBuffer(buf, { length: Math.min(bufSize, remaining) }); + if (bytesRead < 0) { + return bytesRead; + } + totBytesRead += bytesRead; + } + return totBytesRead; + } +} +exports.ReadStreamTokenizer = ReadStreamTokenizer; - // Convert a byte array to a base-64 string - bytesToBase64: function(bytes) { - for (var base64 = [], i = 0; i < bytes.length; i += 3) { - var triplet = (bytes[i] << 16) | (bytes[i + 1] << 8) | bytes[i + 2]; - for (var j = 0; j < 4; j++) - if (i * 8 + j * 6 <= bytes.length * 8) - base64.push(base64map.charAt((triplet >>> 6 * (3 - j)) & 0x3F)); - else - base64.push('='); - } - return base64.join(''); - }, - // Convert a base-64 string to a byte array - base64ToBytes: function(base64) { - // Remove non-base-64 characters - base64 = base64.replace(/[^A-Z0-9+\/]/ig, ''); +/***/ }), +/* 1414 */ +/***/ (function(module, exports, __webpack_require__) { - for (var bytes = [], i = 0, imod4 = 0; i < base64.length; - imod4 = ++i % 4) { - if (imod4 == 0) continue; - bytes.push(((base64map.indexOf(base64.charAt(i - 1)) - & (Math.pow(2, -2 * imod4 + 8) - 1)) << (imod4 * 2)) - | (base64map.indexOf(base64.charAt(i)) >>> (6 - imod4 * 2))); - } - return bytes; +"use strict"; + +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AbstractTokenizer = void 0; +const peek_readable_1 = __webpack_require__(1415); +/** + * Core tokenizer + */ +class AbstractTokenizer { + constructor(fileInfo) { + /** + * Tokenizer-stream position + */ + this.position = 0; + this.numBuffer = Buffer.alloc(10); + this.fileInfo = fileInfo ? fileInfo : {}; + } + /** + * Read a token from the tokenizer-stream + * @param token - The token to read + * @param position - If provided, the desired position in the tokenizer-stream + * @returns Promise with token data + */ + async readToken(token, position) { + const buffer = Buffer.alloc(token.len); + const len = await this.readBuffer(buffer, { position }); + if (len < token.len) + throw new peek_readable_1.EndOfStreamError(); + return token.get(buffer, 0); } - }; - - module.exports = crypt; -})(); + /** + * Peek a token from the tokenizer-stream. + * @param token - Token to peek from the tokenizer-stream. + * @param position - Offset where to begin reading within the file. If position is null, data will be read from the current file position. + * @returns Promise with token data + */ + async peekToken(token, position = this.position) { + const buffer = Buffer.alloc(token.len); + const len = await this.peekBuffer(buffer, { position }); + if (len < token.len) + throw new peek_readable_1.EndOfStreamError(); + return token.get(buffer, 0); + } + /** + * Read a numeric token from the stream + * @param token - Numeric token + * @returns Promise with number + */ + async readNumber(token) { + const len = await this.readBuffer(this.numBuffer, { length: token.len }); + if (len < token.len) + throw new peek_readable_1.EndOfStreamError(); + return token.get(this.numBuffer, 0); + } + /** + * Read a numeric token from the stream + * @param token - Numeric token + * @returns Promise with number + */ + async peekNumber(token) { + const len = await this.peekBuffer(this.numBuffer, { length: token.len }); + if (len < token.len) + throw new peek_readable_1.EndOfStreamError(); + return token.get(this.numBuffer, 0); + } + async close() { + // empty + } +} +exports.AbstractTokenizer = AbstractTokenizer; /***/ }), -/* 1287 */ -/***/ (function(module, exports) { +/* 1415 */ +/***/ (function(module, exports, __webpack_require__) { -var charenc = { - // UTF-8 encoding - utf8: { - // Convert a string to a byte array - stringToBytes: function(str) { - return charenc.bin.stringToBytes(unescape(encodeURIComponent(str))); - }, +"use strict"; - // Convert a byte array to a string - bytesToString: function(bytes) { - return decodeURIComponent(escape(charenc.bin.bytesToString(bytes))); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.StreamReader = exports.EndOfStreamError = void 0; +const EndOfFileStream_1 = __webpack_require__(1416); +var EndOfFileStream_2 = __webpack_require__(1416); +Object.defineProperty(exports, "EndOfStreamError", { enumerable: true, get: function () { return EndOfFileStream_2.EndOfStreamError; } }); +class Deferred { + constructor() { + this.promise = new Promise((resolve, reject) => { + this.reject = reject; + this.resolve = resolve; + }); } - }, - - // Binary encoding - bin: { - // Convert a string to a byte array - stringToBytes: function(str) { - for (var bytes = [], i = 0; i < str.length; i++) - bytes.push(str.charCodeAt(i) & 0xFF); - return bytes; - }, - - // Convert a byte array to a string - bytesToString: function(bytes) { - for (var str = [], i = 0; i < bytes.length; i++) - str.push(String.fromCharCode(bytes[i])); - return str.join(''); +} +const maxStreamReadSize = 1 * 1024 * 1024; // Maximum request length on read-stream operation +class StreamReader { + constructor(s) { + this.s = s; + this.endOfStream = false; + /** + * Store peeked data + * @type {Array} + */ + this.peekQueue = []; + if (!s.read || !s.once) { + throw new Error('Expected an instance of stream.Readable'); + } + this.s.once('end', () => this.reject(new EndOfFileStream_1.EndOfStreamError())); + this.s.once('error', err => this.reject(err)); + this.s.once('close', () => this.reject(new Error('Stream closed'))); } - } -}; - -module.exports = charenc; + /** + * Read ahead (peek) from stream. Subsequent read or peeks will return the same data + * @param buffer - Buffer to store data read from stream in + * @param offset - Offset buffer + * @param length - Number of bytes to read + * @returns Number of bytes peeked + */ + async peek(buffer, offset, length) { + const bytesRead = await this.read(buffer, offset, length); + this.peekQueue.push(buffer.slice(offset, offset + bytesRead)); // Put read data back to peek buffer + return bytesRead; + } + /** + * Read chunk from stream + * @param buffer - Target buffer to store data read from stream in + * @param offset - Offset of target buffer + * @param length - Number of bytes to read + * @returns Number of bytes read + */ + async read(buffer, offset, length) { + if (length === 0) { + return 0; + } + if (this.peekQueue.length === 0 && this.endOfStream) { + throw new EndOfFileStream_1.EndOfStreamError(); + } + let remaining = length; + let bytesRead = 0; + // consume peeked data first + while (this.peekQueue.length > 0 && remaining > 0) { + const peekData = this.peekQueue.pop(); // Front of queue + const lenCopy = Math.min(peekData.length, remaining); + peekData.copy(buffer, offset + bytesRead, 0, lenCopy); + bytesRead += lenCopy; + remaining -= lenCopy; + if (lenCopy < peekData.length) { + // remainder back to queue + this.peekQueue.push(peekData.slice(lenCopy)); + } + } + // continue reading from stream if required + while (remaining > 0 && !this.endOfStream) { + const reqLen = Math.min(remaining, maxStreamReadSize); + const chunkLen = await this._read(buffer, offset + bytesRead, reqLen); + bytesRead += chunkLen; + if (chunkLen < reqLen) + break; + remaining -= chunkLen; + } + return bytesRead; + } + /** + * Read chunk from stream + * @param buffer Buffer to store data read from stream in + * @param offset Offset buffer + * @param length Number of bytes to read + * @returns Number of bytes read + */ + async _read(buffer, offset, length) { + if (this.request) + throw new Error('Concurrent read operation?'); + const readBuffer = this.s.read(length); + if (readBuffer) { + readBuffer.copy(buffer, offset); + return readBuffer.length; + } + else { + this.request = { + buffer, + offset, + length, + deferred: new Deferred() + }; + this.s.once('readable', () => { + this.tryRead(); + }); + return this.request.deferred.promise.then(n => { + this.request = null; + return n; + }, err => { + this.request = null; + throw err; + }); + } + } + tryRead() { + const readBuffer = this.s.read(this.request.length); + if (readBuffer) { + readBuffer.copy(this.request.buffer, this.request.offset); + this.request.deferred.resolve(readBuffer.length); + } + else { + this.s.once('readable', () => { + this.tryRead(); + }); + } + } + reject(err) { + this.endOfStream = true; + if (this.request) { + this.request.deferred.reject(err); + this.request = null; + } + } +} +exports.StreamReader = StreamReader; /***/ }), -/* 1288 */ -/***/ (function(module, exports) { - -/*! - * Determine if an object is a Buffer - * - * @author Feross Aboukhadijeh <https://feross.org> - * @license MIT - */ - -// The _isBuffer check is for Safari 5-7 support, because it's missing -// Object.prototype.constructor. Remove this eventually -module.exports = function (obj) { - return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer) -} +/* 1416 */ +/***/ (function(module, exports, __webpack_require__) { -function isBuffer (obj) { - return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj) -} +"use strict"; -// For Node v0.10 support. Remove this eventually. -function isSlowBuffer (obj) { - return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0)) +Object.defineProperty(exports, "__esModule", { value: true }); +exports.EndOfStreamError = exports.defaultMessages = void 0; +exports.defaultMessages = 'End-Of-Stream'; +/** + * Thrown on read operation of the end of file or stream has been reached + */ +class EndOfStreamError extends Error { + constructor() { + super(exports.defaultMessages); + } } +exports.EndOfStreamError = EndOfStreamError; /***/ }), -/* 1289 */ +/* 1417 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.BufferTokenizer = void 0; +const peek_readable_1 = __webpack_require__(1415); +class BufferTokenizer { + /** + * Construct BufferTokenizer + * @param buffer - Buffer to tokenize + * @param fileInfo - Pass additional file information to the tokenizer + */ + constructor(buffer, fileInfo) { + this.buffer = buffer; + this.position = 0; + this.fileInfo = fileInfo ? fileInfo : {}; + this.fileInfo.size = this.fileInfo.size ? this.fileInfo.size : buffer.length; + } + /** + * Read buffer from tokenizer + * @param buffer + * @param options - Read behaviour options + * @returns {Promise<number>} + */ + async readBuffer(buffer, options) { + if (options && options.position) { + if (options.position < this.position) { + throw new Error('`options.position` must be equal or greater than `tokenizer.position`'); + } + this.position = options.position; + } + return this.peekBuffer(buffer, options).then(bytesRead => { + this.position += bytesRead; + return bytesRead; + }); + } + /** + * Peek (read ahead) buffer from tokenizer + * @param buffer + * @param options - Read behaviour options + * @returns {Promise<number>} + */ + async peekBuffer(buffer, options) { + let offset = 0; + let length = buffer.length; + let position = this.position; + if (options) { + if (options.position) { + if (options.position < this.position) { + throw new Error('`options.position` can be less than `tokenizer.position`'); + } + position = options.position; + } + if (Number.isInteger(options.length)) { + length = options.length; + } + else { + length -= options.offset || 0; + } + if (options.offset) { + offset = options.offset; + } + } + if (length === 0) { + return Promise.resolve(0); + } + position = position || this.position; + if (!length) { + length = buffer.length; + } + const bytes2read = Math.min(this.buffer.length - position, length); + if ((!options || !options.mayBeLess) && bytes2read < length) { + throw new peek_readable_1.EndOfStreamError(); + } + else { + this.buffer.copy(buffer, offset, position, position + bytes2read); + return bytes2read; + } + } + async readToken(token, position) { + this.position = position || this.position; + try { + const tv = this.peekToken(token, this.position); + this.position += token.len; + return tv; + } + catch (err) { + this.position += this.buffer.length - position; + throw err; + } + } + async peekToken(token, position = this.position) { + if (this.buffer.length - position < token.len) { + throw new peek_readable_1.EndOfStreamError(); + } + return token.get(this.buffer, position); + } + async readNumber(token) { + return this.readToken(token); + } + async peekNumber(token) { + return this.peekToken(token); + } + /** + * @return actual number of bytes ignored + */ + async ignore(length) { + const bytesIgnored = Math.min(this.buffer.length - this.position, length); + this.position += bytesIgnored; + return bytesIgnored; + } + async close() { + // empty + } +} +exports.BufferTokenizer = BufferTokenizer; -var utils = __webpack_require__(1273); - -var defaultOnConfig = { - console: true, - http: true -}; - -var defaultConfig = { - console: false, - http: false, - pg: false -}; -function instrument(Raven, config) { - if (config === false) { - return; - } else if (config === true) { - config = defaultOnConfig; - } else { - config = utils.extend({}, defaultConfig, config); - } +/***/ }), +/* 1418 */ +/***/ (function(module, exports, __webpack_require__) { - Raven.instrumentedOriginals = []; - Raven.instrumentedModules = []; +"use strict"; - var Module = __webpack_require__(1290); - utils.fill( - Module, - '_load', - function(origLoad) { - return function(moduleId, parent, isMain) { - var origModule = origLoad.apply(this, arguments); - if (config[moduleId] && Raven.instrumentedModules.indexOf(moduleId) === -1) { - Raven.instrumentedModules.push(moduleId); - return __webpack_require__(1291)("./" + moduleId)(Raven, origModule, Raven.instrumentedOriginals); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.fromFile = exports.FileTokenizer = void 0; +const AbstractTokenizer_1 = __webpack_require__(1414); +const peek_readable_1 = __webpack_require__(1415); +const fs = __webpack_require__(1411); +class FileTokenizer extends AbstractTokenizer_1.AbstractTokenizer { + constructor(fd, fileInfo) { + super(fileInfo); + this.fd = fd; + } + /** + * Read buffer from file + * @param buffer + * @param options - Read behaviour options + * @returns Promise number of bytes read + */ + async readBuffer(buffer, options) { + let offset = 0; + let length = buffer.length; + if (options) { + if (options.position) { + if (options.position < this.position) { + throw new Error('`options.position` must be equal or greater than `tokenizer.position`'); + } + this.position = options.position; + } + if (Number.isInteger(options.length)) { + length = options.length; + } + else { + length -= options.offset || 0; + } + if (options.offset) { + offset = options.offset; + } } - return origModule; - }; - }, - Raven.instrumentedOriginals - ); - - // special case: since console is built-in and app-level code won't require() it, do that here - if (config.console) { - __webpack_require__(1295); - } - - // observation: when the https module does its own require('http'), it *does not* hit our hooked require to instrument http on the fly - // but if we've previously instrumented http, https *does* get our already-instrumented version - // this is because raven's transports are required before this instrumentation takes place, which loads https (and http) - // so module cache will have uninstrumented http; proactively loading it here ensures instrumented version is in module cache - // alternatively we could refactor to load our transports later, but this is easier and doesn't have much drawback - if (config.http) { - __webpack_require__(98); - } + if (length === 0) { + return Promise.resolve(0); + } + const res = await fs.read(this.fd, buffer, offset, length, this.position); + this.position += res.bytesRead; + if (res.bytesRead < length && (!options || !options.mayBeLess)) { + throw new peek_readable_1.EndOfStreamError(); + } + return res.bytesRead; + } + /** + * Peek buffer from file + * @param buffer + * @param options - Read behaviour options + * @returns Promise number of bytes read + */ + async peekBuffer(buffer, options) { + let offset = 0; + let length = buffer.length; + let position = this.position; + if (options) { + if (options.position) { + if (options.position < this.position) { + throw new Error('`options.position` must be equal or greater than `tokenizer.position`'); + } + position = options.position; + } + if (Number.isInteger(options.length)) { + length = options.length; + } + else { + length -= options.offset || 0; + } + if (options.offset) { + offset = options.offset; + } + } + if (length === 0) { + return Promise.resolve(0); + } + const res = await fs.read(this.fd, buffer, offset, length, position); + if ((!options || !options.mayBeLess) && res.bytesRead < length) { + throw new peek_readable_1.EndOfStreamError(); + } + return res.bytesRead; + } + /** + * @param length - Number of bytes to ignore + * @return resolves the number of bytes ignored, equals length if this available, otherwise the number of bytes available + */ + async ignore(length) { + const bytesLeft = this.fileInfo.size - this.position; + if (length <= bytesLeft) { + this.position += length; + return length; + } + else { + this.position += bytesLeft; + return bytesLeft; + } + } + async close() { + return fs.close(this.fd); + } } - -function deinstrument(Raven) { - if (!Raven.instrumentedOriginals) return; - var original; - // eslint-disable-next-line no-cond-assign - while ((original = Raven.instrumentedOriginals.shift())) { - var obj = original[0]; - var name = original[1]; - var orig = original[2]; - obj[name] = orig; - } +exports.FileTokenizer = FileTokenizer; +async function fromFile(sourceFilePath) { + const stat = await fs.stat(sourceFilePath); + if (!stat.isFile) { + throw new Error(`File not a file: ${sourceFilePath}`); + } + const fd = await fs.open(sourceFilePath, 'r'); + return new FileTokenizer(fd, { path: sourceFilePath, size: stat.size }); } +exports.fromFile = fromFile; -module.exports = { - instrument: instrument, - deinstrument: deinstrument -}; - - -/***/ }), -/* 1290 */ -/***/ (function(module, exports) { - -module.exports = require("module"); /***/ }), -/* 1291 */ +/* 1419 */ /***/ (function(module, exports, __webpack_require__) { -var map = { - "./console": 1292, - "./console.js": 1292, - "./http": 1293, - "./http.js": 1293, - "./instrumentor": 1289, - "./instrumentor.js": 1289, - "./pg": 1294, - "./pg.js": 1294 -}; +"use strict"; +const Token = __webpack_require__(1420); +const strtok3 = __webpack_require__(1412); +const { + stringToBytes, + tarHeaderChecksumMatches, + uint32SyncSafeToken +} = __webpack_require__(1422); +const supported = __webpack_require__(1423); -function webpackContext(req) { - var id = webpackContextResolve(req); - return __webpack_require__(id); -} -function webpackContextResolve(req) { - if(!__webpack_require__.o(map, req)) { - var e = new Error("Cannot find module '" + req + "'"); - e.code = 'MODULE_NOT_FOUND'; - throw e; +const minimumBytes = 4100; // A fair amount of file-types are detectable within this range + +async function fromStream(stream) { + const tokenizer = await strtok3.fromStream(stream); + try { + return await fromTokenizer(tokenizer); + } finally { + await tokenizer.close(); } - return map[req]; } -webpackContext.keys = function webpackContextKeys() { - return Object.keys(map); -}; -webpackContext.resolve = webpackContextResolve; -module.exports = webpackContext; -webpackContext.id = 1291; - -/***/ }), -/* 1292 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; +async function fromBuffer(input) { + if (!(input instanceof Uint8Array || input instanceof ArrayBuffer || Buffer.isBuffer(input))) { + throw new TypeError(`Expected the \`input\` argument to be of type \`Uint8Array\` or \`Buffer\` or \`ArrayBuffer\`, got \`${typeof input}\``); + } -var util = __webpack_require__(9); -var utils = __webpack_require__(1273); + const buffer = input instanceof Buffer ? input : Buffer.from(input); -module.exports = function(Raven, console, originals) { - var wrapConsoleMethod = function(level) { - if (!(level in console)) { - return; - } + if (!(buffer && buffer.length > 1)) { + return; + } - utils.fill( - console, - level, - function(originalConsoleLevel) { - var sentryLevel = level === 'warn' ? 'warning' : level; + const tokenizer = strtok3.fromBuffer(buffer); + return fromTokenizer(tokenizer); +} - return function() { - var args = [].slice.call(arguments); +function _check(buffer, headers, options) { + options = { + offset: 0, + ...options + }; - Raven.captureBreadcrumb({ - message: util.format.apply(null, args), - level: sentryLevel, - category: 'console' - }); + for (const [index, header] of headers.entries()) { + // If a bitmask is set + if (options.mask) { + // If header doesn't equal `buf` with bits masked off + if (header !== (options.mask[index] & buffer[index + options.offset])) { + return false; + } + } else if (header !== buffer[index + options.offset]) { + return false; + } + } - originalConsoleLevel.apply(console, args); - }; - }, - originals - ); - }; + return true; +} - ['debug', 'info', 'warn', 'error', 'log'].forEach(wrapConsoleMethod); +async function _checkSequence(sequence, tokenizer, ignoreBytes) { + const buffer = Buffer.alloc(minimumBytes); + await tokenizer.ignore(ignoreBytes); - return console; -}; + await tokenizer.peekBuffer(buffer, {mayBeLess: true}); + return buffer.includes(Buffer.from(sequence)); +} -/***/ }), -/* 1293 */ -/***/ (function(module, exports, __webpack_require__) { +async function fromTokenizer(tokenizer) { + try { + return _fromTokenizer(tokenizer); + } catch (error) { + if (!(error instanceof strtok3.EndOfStreamError)) { + throw error; + } + } +} -"use strict"; +async function _fromTokenizer(tokenizer) { + let buffer = Buffer.alloc(minimumBytes); + const bytesRead = 12; + const check = (header, options) => _check(buffer, header, options); + const checkString = (header, options) => check(stringToBytes(header), options); + const checkSequence = (sequence, ignoreBytes) => _checkSequence(sequence, tokenizer, ignoreBytes); -var util = __webpack_require__(9); -var utils = __webpack_require__(1273); + // Keep reading until EOF if the file size is unknown. + if (!tokenizer.fileInfo.size) { + tokenizer.fileInfo.size = Number.MAX_SAFE_INTEGER; + } -module.exports = function(Raven, http, originals) { - var OrigClientRequest = http.ClientRequest; - var ClientRequest = function(options, cb) { - // Note: this won't capture a breadcrumb if a response never comes - // It would be useful to know if that was the case, though, so - // todo: revisit to see if we can capture sth indicating response never came - // possibility: capture one breadcrumb for "req sent" and one for "res recvd" - // seems excessive but solves the problem and *is* strictly more information - // could be useful for weird response sequencing bug scenarios - OrigClientRequest.call(this, options, cb); + await tokenizer.peekBuffer(buffer, {length: bytesRead, mayBeLess: true}); - // We could just always reconstruct this from this.agent, this._headers, this.path, etc - // but certain other http-instrumenting libraries (like nock, which we use for tests) fail to - // maintain the guarantee that after calling OrigClientRequest, those fields will be populated - if (typeof options === 'string') { - this.__ravenBreadcrumbUrl = options; - } else { - var protocol = options.protocol || ''; - var hostname = options.hostname || options.host || ''; - // Don't log standard :80 (http) and :443 (https) ports to reduce the noise - var port = - !options.port || options.port === 80 || options.port === 443 - ? '' - : ':' + options.port; - var path = options.path || '/'; + // -- 2-byte signatures -- - this.__ravenBreadcrumbUrl = protocol + '//' + hostname + port + path; - } - }; - util.inherits(ClientRequest, OrigClientRequest); + if (check([0x42, 0x4D])) { + return { + ext: 'bmp', + mime: 'image/bmp' + }; + } - utils.fill(ClientRequest.prototype, 'emit', function(origEmit) { - return function(evt, maybeResp) { - if (evt === 'response' && this.__ravenBreadcrumbUrl) { - if (!Raven.dsn || this.__ravenBreadcrumbUrl.indexOf(Raven.dsn.host) === -1) { - Raven.captureBreadcrumb({ - type: 'http', - category: 'http', - data: { - method: this.method, - url: this.__ravenBreadcrumbUrl, - status_code: maybeResp.statusCode - } - }); - } - } - return origEmit.apply(this, arguments); - }; - }); + if (check([0x0B, 0x77])) { + return { + ext: 'ac3', + mime: 'audio/vnd.dolby.dd-raw' + }; + } - utils.fill( - http, - 'ClientRequest', - function() { - return ClientRequest; - }, - originals - ); + if (check([0x78, 0x01])) { + return { + ext: 'dmg', + mime: 'application/x-apple-diskimage' + }; + } - // http.request orig refs module-internal ClientRequest, not exported one, so - // it still points at orig ClientRequest after our monkeypatch; these reimpls - // just get that reference updated to use our new ClientRequest - utils.fill( - http, - 'request', - function() { - return function(options, cb) { - return new http.ClientRequest(options, cb); - }; - }, - originals - ); + if (check([0x4D, 0x5A])) { + return { + ext: 'exe', + mime: 'application/x-msdownload' + }; + } - utils.fill( - http, - 'get', - function() { - return function(options, cb) { - var req = http.request(options, cb); - req.end(); - return req; - }; - }, - originals - ); + if (check([0x25, 0x21])) { + await tokenizer.peekBuffer(buffer, {length: 24, mayBeLess: true}); - return http; -}; + if (checkString('PS-Adobe-', {offset: 2}) && + checkString(' EPSF-', {offset: 14})) { + return { + ext: 'eps', + mime: 'application/eps' + }; + } + return { + ext: 'ps', + mime: 'application/postscript' + }; + } -/***/ }), -/* 1294 */ -/***/ (function(module, exports, __webpack_require__) { + if ( + check([0x1F, 0xA0]) || + check([0x1F, 0x9D]) + ) { + return { + ext: 'Z', + mime: 'application/x-compress' + }; + } -"use strict"; + // -- 3-byte signatures -- -module.exports = function(Raven, pg, originals) { - // Using fill helper here is hard because of `this` binding - var origQuery = pg.Connection.prototype.query; - pg.Connection.prototype.query = function(text) { - Raven.captureBreadcrumb({ - category: 'postgres', - message: text - }); - origQuery.call(this, text); - }; - // todo thread this through - // originals.push([pg.Connection.prototype, 'query', origQuery]); -}; + if (check([0xFF, 0xD8, 0xFF])) { + return { + ext: 'jpg', + mime: 'image/jpeg' + }; + } + if (check([0x49, 0x49, 0xBC])) { + return { + ext: 'jxr', + mime: 'image/vnd.ms-photo' + }; + } -/***/ }), -/* 1295 */ -/***/ (function(module, exports) { + if (check([0x1F, 0x8B, 0x8])) { + return { + ext: 'gz', + mime: 'application/gzip' + }; + } -module.exports = require("console"); + if (check([0x42, 0x5A, 0x68])) { + return { + ext: 'bz2', + mime: 'application/x-bzip2' + }; + } -/***/ }), -/* 1296 */ -/***/ (function(module, exports) { + if (checkString('ID3')) { + await tokenizer.ignore(6); // Skip ID3 header until the header size + const id3HeaderLen = await tokenizer.readToken(uint32SyncSafeToken); + if (tokenizer.position + id3HeaderLen > tokenizer.fileInfo.size) { + // Guess file type based on ID3 header for backward compatibility + return { + ext: 'mp3', + mime: 'audio/mpeg' + }; + } -const DOMAIN_REGEXP = /^https?:\/\/([a-zA-Z0-9-.]+)(?::\d{2,5})?\/?$/; + await tokenizer.ignore(id3HeaderLen); + return fromTokenizer(tokenizer); // Skip ID3 header, recursion + } -const getDomain = cozyUrl => { - cozyUrl = cozyUrl || process.env.COZY_URL; - return cozyUrl.match(DOMAIN_REGEXP)[1].split('.').slice(-2).join('.'); -}; + // Musepack, SV7 + if (checkString('MP+')) { + return { + ext: 'mpc', + mime: 'audio/x-musepack' + }; + } -const getInstance = cozyUrl => { - cozyUrl = cozyUrl || process.env.COZY_URL; - return cozyUrl.match(DOMAIN_REGEXP)[1].split('.').slice(-3).join('.'); -}; + if ( + (buffer[0] === 0x43 || buffer[0] === 0x46) && + check([0x57, 0x53], {offset: 1}) + ) { + return { + ext: 'swf', + mime: 'application/x-shockwave-flash' + }; + } -module.exports = { - getDomain, - getInstance -}; + // -- 4-byte signatures -- -/***/ }), -/* 1297 */ -/***/ (function(module, exports, __webpack_require__) { + if (check([0x47, 0x49, 0x46])) { + return { + ext: 'gif', + mime: 'image/gif' + }; + } -var before = __webpack_require__(1298); + if (checkString('FLIF')) { + return { + ext: 'flif', + mime: 'image/flif' + }; + } -/** - * Creates a function that is restricted to invoking `func` once. Repeat calls - * to the function return the value of the first invocation. The `func` is - * invoked with the `this` binding and arguments of the created function. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new restricted function. - * @example - * - * var initialize = _.once(createApplication); - * initialize(); - * initialize(); - * // => `createApplication` is invoked once - */ -function once(func) { - return before(2, func); -} + if (checkString('8BPS')) { + return { + ext: 'psd', + mime: 'image/vnd.adobe.photoshop' + }; + } -module.exports = once; + if (checkString('WEBP', {offset: 8})) { + return { + ext: 'webp', + mime: 'image/webp' + }; + } + // Musepack, SV8 + if (checkString('MPCK')) { + return { + ext: 'mpc', + mime: 'audio/x-musepack' + }; + } -/***/ }), -/* 1298 */ -/***/ (function(module, exports, __webpack_require__) { + if (checkString('FORM')) { + return { + ext: 'aif', + mime: 'audio/aiff' + }; + } -var toInteger = __webpack_require__(642); + if (checkString('icns', {offset: 0})) { + return { + ext: 'icns', + mime: 'image/icns' + }; + } -/** Error message constants. */ -var FUNC_ERROR_TEXT = 'Expected a function'; + // Zip-based file formats + // Need to be before the `zip` check + if (check([0x50, 0x4B, 0x3, 0x4])) { // Local file header signature + try { + while (tokenizer.position + 30 < tokenizer.fileInfo.size) { + await tokenizer.readBuffer(buffer, {length: 30}); -/** - * Creates a function that invokes `func`, with the `this` binding and arguments - * of the created function, while it's called less than `n` times. Subsequent - * calls to the created function return the result of the last `func` invocation. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category Function - * @param {number} n The number of calls at which `func` is no longer invoked. - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new restricted function. - * @example - * - * jQuery(element).on('click', _.before(5, addContactToList)); - * // => Allows adding up to 4 contacts to the list. - */ -function before(n, func) { - var result; - if (typeof func != 'function') { - throw new TypeError(FUNC_ERROR_TEXT); - } - n = toInteger(n); - return function() { - if (--n > 0) { - result = func.apply(this, arguments); - } - if (n <= 1) { - func = undefined; - } - return result; - }; -} + // https://en.wikipedia.org/wiki/Zip_(file_format)#File_headers + const zipHeader = { + compressedSize: buffer.readUInt32LE(18), + uncompressedSize: buffer.readUInt32LE(22), + filenameLength: buffer.readUInt16LE(26), + extraFieldLength: buffer.readUInt16LE(28) + }; -module.exports = before; + zipHeader.filename = await tokenizer.readToken(new Token.StringType(zipHeader.filenameLength, 'utf-8')); + await tokenizer.ignore(zipHeader.extraFieldLength); + // Assumes signed `.xpi` from addons.mozilla.org + if (zipHeader.filename === 'META-INF/mozilla.rsa') { + return { + ext: 'xpi', + mime: 'application/x-xpinstall' + }; + } -/***/ }), -/* 1299 */ -/***/ (function(module, exports, __webpack_require__) { + if (zipHeader.filename.endsWith('.rels') || zipHeader.filename.endsWith('.xml')) { + const type = zipHeader.filename.split('/')[0]; + switch (type) { + case '_rels': + break; + case 'word': + return { + ext: 'docx', + mime: 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' + }; + case 'ppt': + return { + ext: 'pptx', + mime: 'application/vnd.openxmlformats-officedocument.presentationml.presentation' + }; + case 'xl': + return { + ext: 'xlsx', + mime: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' + }; + default: + break; + } + } -const log = __webpack_require__(2).namespace('Error Interception'); + if (zipHeader.filename.startsWith('xl/')) { + return { + ext: 'xlsx', + mime: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' + }; + } -const handleUncaughtException = err => { - log('critical', err.message, 'uncaught exception'); - process.exit(1); -}; + // The docx, xlsx and pptx file types extend the Office Open XML file format: + // https://en.wikipedia.org/wiki/Office_Open_XML_file_formats + // We look for: + // - one entry named '[Content_Types].xml' or '_rels/.rels', + // - one entry indicating specific type of file. + // MS Office, OpenOffice and LibreOffice may put the parts in different order, so the check should not rely on it. + if (zipHeader.filename === 'mimetype' && zipHeader.compressedSize === zipHeader.uncompressedSize) { + const mimeType = await tokenizer.readToken(new Token.StringType(zipHeader.compressedSize, 'utf-8')); -const handleUnhandledRejection = err => { - log('critical', err.message, 'unhandled exception'); - process.exit(1); -}; + switch (mimeType) { + case 'application/epub+zip': + return { + ext: 'epub', + mime: 'application/epub+zip' + }; + case 'application/vnd.oasis.opendocument.text': + return { + ext: 'odt', + mime: 'application/vnd.oasis.opendocument.text' + }; + case 'application/vnd.oasis.opendocument.spreadsheet': + return { + ext: 'ods', + mime: 'application/vnd.oasis.opendocument.spreadsheet' + }; + case 'application/vnd.oasis.opendocument.presentation': + return { + ext: 'odp', + mime: 'application/vnd.oasis.opendocument.presentation' + }; + default: + } + } -const handleSigterm = () => { - log('critical', 'The konnector got a SIGTERM'); - process.exit(128 + 15); -}; + // Try to find next header manually when current one is corrupted + if (zipHeader.compressedSize === 0) { + let nextHeaderIndex = -1; -const handleSigint = () => { - log('critical', 'The konnector got a SIGINT'); - process.exit(128 + 2); -}; + while (nextHeaderIndex < 0 && (tokenizer.position < tokenizer.fileInfo.size)) { + await tokenizer.peekBuffer(buffer, {mayBeLess: true}); -let attached = false; -/** - * Attach event handlers to catch uncaught exceptions/rejections and signals. - * Log them as critical and exit the process accordingly. - * If the cleanup function has not been called, calling again the function - * is a no-op. - * - * @param {object} prcs - Process object, default to current process - * @returns {Function} When called, removes the signal handlers - */ + nextHeaderIndex = buffer.indexOf('504B0304', 0, 'hex'); + // Move position to the next header if found, skip the whole buffer otherwise + await tokenizer.ignore(nextHeaderIndex >= 0 ? nextHeaderIndex : buffer.length); + } + } else { + await tokenizer.ignore(zipHeader.compressedSize); + } + } + } catch (error) { + if (!(error instanceof strtok3.EndOfStreamError)) { + throw error; + } + } -const attachProcessEventHandlers = (prcs = process) => { - if (attached) { - return; - } + return { + ext: 'zip', + mime: 'application/zip' + }; + } - attached = true; - prcs.on('uncaughtException', handleUncaughtException); - prcs.on('unhandledRejection', handleUnhandledRejection); - prcs.on('SIGTERM', handleSigterm); - prcs.on('SIGINT', handleSigint); - return () => { - attached = false; - prcs.removeEventListener('uncaughtException', handleUncaughtException); - prcs.removeEventListener('unhandledRejection', handleUnhandledRejection); - prcs.removeEventListener('SIGTERM', handleSigterm); - prcs.removeEventListener('SIGINT', handleSigint); - }; -}; + if (checkString('OggS')) { + // This is an OGG container + await tokenizer.ignore(28); + const type = Buffer.alloc(8); + await tokenizer.readBuffer(type); -module.exports = { - attachProcessEventHandlers -}; + // Needs to be before `ogg` check + if (_check(type, [0x4F, 0x70, 0x75, 0x73, 0x48, 0x65, 0x61, 0x64])) { + return { + ext: 'opus', + mime: 'audio/opus' + }; + } -/***/ }), -/* 1300 */ -/***/ (function(module, exports, __webpack_require__) { + // If ' theora' in header. + if (_check(type, [0x80, 0x74, 0x68, 0x65, 0x6F, 0x72, 0x61])) { + return { + ext: 'ogv', + mime: 'video/ogg' + }; + } -const log = __webpack_require__(2).namespace('CookieKonnector'); + // If '\x01video' in header. + if (_check(type, [0x01, 0x76, 0x69, 0x64, 0x65, 0x6F, 0x00])) { + return { + ext: 'ogm', + mime: 'video/ogg' + }; + } -const BaseKonnector = __webpack_require__(1222); + // If ' FLAC' in header https://xiph.org/flac/faq.html + if (_check(type, [0x7F, 0x46, 0x4C, 0x41, 0x43])) { + return { + ext: 'oga', + mime: 'audio/ogg' + }; + } -const requestFactory = __webpack_require__(22); + // 'Speex ' in header https://en.wikipedia.org/wiki/Speex + if (_check(type, [0x53, 0x70, 0x65, 0x65, 0x78, 0x20, 0x20])) { + return { + ext: 'spx', + mime: 'audio/ogg' + }; + } -const { - CookieJar -} = __webpack_require__(81); + // If '\x01vorbis' in header + if (_check(type, [0x01, 0x76, 0x6F, 0x72, 0x62, 0x69, 0x73])) { + return { + ext: 'ogg', + mime: 'audio/ogg' + }; + } -const JAR_ACCOUNT_KEY = 'session'; -/** - * @class - * Connector base class extending BaseKonnector which handles cookie session in a central way - * It also handles saving cookie session in the account and automatically restore it for the next - * connector run. - * All cozy-konnector-libs tools using request are proposed as methods of this class to force them - * to use the central cookie which can be saved/restored. - * You need at least the `GET` and `PUT` permissions on `io.cozy.accounts` in your manifest to allow - * it to save/restore cookies - * @example - * ```javascript - * const { CookieKonnector } = require('cozy-konnector-libs') - * class MyConnector extends CookieKonnector { - * async fetch(fields) { - * // the code of your connector - * await this.request('https://...') - * } - * async testSession() { - * const $ = await this.request('https://...') - * return $('') - * } - * } - * const connector = new MyKonnector({ - * cheerio: true, - * json: false - * }) - * connector.run() - * ``` - */ + // Default OGG container https://www.iana.org/assignments/media-types/application/ogg + return { + ext: 'ogx', + mime: 'application/ogg' + }; + } -class CookieKonnector extends BaseKonnector { - /** - * Constructor - * - * @param {Function} requestFactoryOptions - Option object passed to requestFactory to - * initialize this.request. It is still possible to change this.request doing : - * - * ```javascript - * this.request = this.requestFactory(...) - * ``` - * - * Please not you have to run the connector yourself doing : - * - * ```javascript - * connector.run() - * ``` - */ - constructor(requestFactoryOptions) { - super(); + if ( + check([0x50, 0x4B]) && + (buffer[2] === 0x3 || buffer[2] === 0x5 || buffer[2] === 0x7) && + (buffer[3] === 0x4 || buffer[3] === 0x6 || buffer[3] === 0x8) + ) { + return { + ext: 'zip', + mime: 'application/zip' + }; + } - if (!this.testSession) { - throw new Error('Could not find a testSession method. CookieKonnector needs it to test if a session is valid. Please implement it'); - } + // - this._jar = requestFactory().jar(); - this.request = this.requestFactory(requestFactoryOptions); - } - /** - * Initializes the current connector with data coming from the associated account - * and also the session - * - * @returns {Promise} with the fields as an object - */ + // File Type Box (https://en.wikipedia.org/wiki/ISO_base_media_file_format) + // It's not required to be first, but it's recommended to be. Almost all ISO base media files start with `ftyp` box. + // `ftyp` box must contain a brand major identifier, which must consist of ISO 8859-1 printable characters. + // Here we check for 8859-1 printable characters (for simplicity, it's a mask which also catches one non-printable character). + if ( + checkString('ftyp', {offset: 4}) && + (buffer[8] & 0x60) !== 0x00 // Brand major, first character ASCII? + ) { + // They all can have MIME `video/mp4` except `application/mp4` special-case which is hard to detect. + // For some cases, we're specific, everything else falls to `video/mp4` with `mp4` extension. + const brandMajor = buffer.toString('binary', 8, 12).replace('\0', ' ').trim(); + switch (brandMajor) { + case 'avif': + return {ext: 'avif', mime: 'image/avif'}; + case 'mif1': + return {ext: 'heic', mime: 'image/heif'}; + case 'msf1': + return {ext: 'heic', mime: 'image/heif-sequence'}; + case 'heic': + case 'heix': + return {ext: 'heic', mime: 'image/heic'}; + case 'hevc': + case 'hevx': + return {ext: 'heic', mime: 'image/heic-sequence'}; + case 'qt': + return {ext: 'mov', mime: 'video/quicktime'}; + case 'M4V': + case 'M4VH': + case 'M4VP': + return {ext: 'm4v', mime: 'video/x-m4v'}; + case 'M4P': + return {ext: 'm4p', mime: 'video/mp4'}; + case 'M4B': + return {ext: 'm4b', mime: 'audio/mp4'}; + case 'M4A': + return {ext: 'm4a', mime: 'audio/x-m4a'}; + case 'F4V': + return {ext: 'f4v', mime: 'video/mp4'}; + case 'F4P': + return {ext: 'f4p', mime: 'video/mp4'}; + case 'F4A': + return {ext: 'f4a', mime: 'audio/mp4'}; + case 'F4B': + return {ext: 'f4b', mime: 'audio/mp4'}; + case 'crx': + return {ext: 'cr3', mime: 'image/x-canon-cr3'}; + default: + if (brandMajor.startsWith('3g')) { + if (brandMajor.startsWith('3g2')) { + return {ext: '3g2', mime: 'video/3gpp2'}; + } + return {ext: '3gp', mime: 'video/3gpp'}; + } - async initAttributes(cozyFields, account) { - await super.initAttributes(cozyFields, account); - await this.initSession(); - } - /** - * Hook called when the connector is ended - */ + return {ext: 'mp4', mime: 'video/mp4'}; + } + } + if (checkString('MThd')) { + return { + ext: 'mid', + mime: 'audio/midi' + }; + } - async end() { - await this.saveSession(); - return super.end(); - } - /** - * Calls cozy-konnector-libs requestFactory forcing this._jar as the cookie - * - * @param {object} options - requestFactory option - * @returns {object} - The resulting request object - */ + if ( + checkString('wOFF') && + ( + check([0x00, 0x01, 0x00, 0x00], {offset: 4}) || + checkString('OTTO', {offset: 4}) + ) + ) { + return { + ext: 'woff', + mime: 'font/woff' + }; + } + if ( + checkString('wOF2') && + ( + check([0x00, 0x01, 0x00, 0x00], {offset: 4}) || + checkString('OTTO', {offset: 4}) + ) + ) { + return { + ext: 'woff2', + mime: 'font/woff2' + }; + } - requestFactory(options) { - this._jar = this._jar || requestFactory().jar(); - return requestFactory({ ...options, - jar: this._jar - }); - } - /** - * Reset cookie session with a new empty session and save it to the associated account - * - * @returns {Promise} empty promise - */ + if (check([0xD4, 0xC3, 0xB2, 0xA1]) || check([0xA1, 0xB2, 0xC3, 0xD4])) { + return { + ext: 'pcap', + mime: 'application/vnd.tcpdump.pcap' + }; + } + // Sony DSD Stream File (DSF) + if (checkString('DSD ')) { + return { + ext: 'dsf', + mime: 'audio/x-dsf' // Non-standard + }; + } - async resetSession() { - log('debug', 'Reset cookie session...'); - this._jar = requestFactory().jar(); - return this.saveSession(); - } - /** - * Get the cookie session from the account if any - * - * @returns {Promise} true or false if the session in the account exists or not - */ + if (checkString('LZIP')) { + return { + ext: 'lz', + mime: 'application/x-lzip' + }; + } + if (checkString('fLaC')) { + return { + ext: 'flac', + mime: 'audio/x-flac' + }; + } - async initSession() { - const accountData = this.getAccountData(); + if (check([0x42, 0x50, 0x47, 0xFB])) { + return { + ext: 'bpg', + mime: 'image/bpg' + }; + } - try { - if (this._account.state === 'RESET_SESSION') { - log('debug', 'RESET_SESSION state found'); - await this.resetSession(); - await this.updateAccountAttributes({ - state: null - }); - } - } catch (err) { - log('warn', 'Could not reset the session'); - log('warn', err.message); - } + if (checkString('wvpk')) { + return { + ext: 'wv', + mime: 'audio/wavpack' + }; + } - try { - let jar = null; + if (checkString('%PDF')) { + // Check if this is an Adobe Illustrator file + const isAiFile = await checkSequence('Adobe Illustrator', 1350); + if (isAiFile) { + return { + ext: 'ai', + mime: 'application/postscript' + }; + } - if (accountData && accountData.auth) { - jar = JSON.parse(accountData.auth[JAR_ACCOUNT_KEY]); - } + // Assume this is just a normal PDF + return { + ext: 'pdf', + mime: 'application/pdf' + }; + } - if (jar) { - log('debug', 'found saved session, using it...'); - this._jar._jar = CookieJar.fromJSON(jar, this._jar._jar.store); - return true; - } - } catch (err) { - log('debug', 'Could not parse session'); - } + if (check([0x00, 0x61, 0x73, 0x6D])) { + return { + ext: 'wasm', + mime: 'application/wasm' + }; + } - log('debug', 'Found no session'); - return false; - } - /** - * Saves the current cookie session to the account - * - * @returns {Promise} empty promise - */ + // TIFF, little-endian type + if (check([0x49, 0x49, 0x2A, 0x0])) { + if (checkString('CR', {offset: 8})) { + return { + ext: 'cr2', + mime: 'image/x-canon-cr2' + }; + } + if (check([0x1C, 0x00, 0xFE, 0x00], {offset: 8}) || check([0x1F, 0x00, 0x0B, 0x00], {offset: 8})) { + return { + ext: 'nef', + mime: 'image/x-nikon-nef' + }; + } - async saveSession(obj) { - const accountData = { ...this._account.data, - auth: {} - }; + if ( + check([0x08, 0x00, 0x00, 0x00], {offset: 4}) && + (check([0x2D, 0x00, 0xFE, 0x00], {offset: 8}) || + check([0x27, 0x00, 0xFE, 0x00], {offset: 8})) + ) { + return { + ext: 'dng', + mime: 'image/x-adobe-dng' + }; + } - if (obj && obj.getCookieJar) { - this._jar._jar = obj.getCookieJar(); - } + buffer = Buffer.alloc(24); + await tokenizer.peekBuffer(buffer); + if ( + (check([0x10, 0xFB, 0x86, 0x01], {offset: 4}) || check([0x08, 0x00, 0x00, 0x00], {offset: 4})) && + // This pattern differentiates ARW from other TIFF-ish file types: + check([0x00, 0xFE, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x01], {offset: 9}) + ) { + return { + ext: 'arw', + mime: 'image/x-sony-arw' + }; + } - accountData.auth[JAR_ACCOUNT_KEY] = JSON.stringify(this._jar._jar.toJSON()); - await this.saveAccountData(accountData); - log('debug', 'saved the session'); - } - /** - * This is signin function from cozy-konnector-libs which is forced to use the current cookies - * and current request from CookieKonnector. It also automatically saves the session after - * signin if it is a success. - * - * @returns {Promise} resolve with an object containing form data - */ + return { + ext: 'tif', + mime: 'image/tiff' + }; + } + // TIFF, big-endian type + if (check([0x4D, 0x4D, 0x0, 0x2A])) { + return { + ext: 'tif', + mime: 'image/tiff' + }; + } - async signin(options) { - const result = await super.signin({ ...options, - requestInstance: this.request - }); - await this.saveSession(); - return result; - } - /** - * This is saveFiles function from cozy-konnector-libs which is forced to use the current cookies - * and current request from CookieKonnector. - * - * @returns {Promise} resolves with the list of entries with file objects - */ + if (checkString('MAC ')) { + return { + ext: 'ape', + mime: 'audio/ape' + }; + } + // https://github.com/threatstack/libmagic/blob/master/magic/Magdir/matroska + if (check([0x1A, 0x45, 0xDF, 0xA3])) { // Root element: EBML + async function readField() { + const msb = await tokenizer.peekNumber(Token.UINT8); + let mask = 0x80; + let ic = 0; // 0 = A, 1 = B, 2 = C, 3 = D - saveFiles(entries, fields, options) { - return super.saveFiles(entries, fields, { ...options, - requestInstance: this.request - }); - } - /** - * This is saveBills function from cozy-konnector-libs which is forced to use the current cookies - * and current request from CookieKonnector. - * - * @returns {Promise} resolves with entries hydrated with db data - */ + while ((msb & mask) === 0) { + ++ic; + mask >>= 1; + } + const id = Buffer.alloc(ic + 1); + await tokenizer.readBuffer(id); + return id; + } - saveBills(entries, fields, options) { - return super.saveBills(entries, fields, { ...options, - requestInstance: this.request - }); - } + async function readElement() { + const id = await readField(); + const lenField = await readField(); + lenField[0] ^= 0x80 >> (lenField.length - 1); + const nrLen = Math.min(6, lenField.length); // JavaScript can max read 6 bytes integer + return { + id: id.readUIntBE(0, id.length), + len: lenField.readUIntBE(lenField.length - nrLen, nrLen) + }; + } -} + async function readChildren(level, children) { + while (children > 0) { + const e = await readElement(); + if (e.id === 0x4282) { + return tokenizer.readToken(new Token.StringType(e.len, 'utf-8')); // Return DocType + } -module.exports = CookieKonnector; + await tokenizer.ignore(e.len); // ignore payload + --children; + } + } -/***/ }), -/* 1301 */ -/***/ (function(module, exports, __webpack_require__) { + const re = await readElement(); + const docType = await readChildren(1, re.len); -const { - URL -} = __webpack_require__(83); + switch (docType) { + case 'webm': + return { + ext: 'webm', + mime: 'video/webm' + }; -const computeWidth = $table => { - let out = 0; - const tds = $table.find('tr').first().find('td,th'); + case 'matroska': + return { + ext: 'mkv', + mime: 'video/x-matroska' + }; - for (var i = 0; i < tds.length; i++) { - out += parseInt(tds.eq(i).attr('colspan')) || 1; - } + default: + return; + } + } - return out; -}; + // RIFF file format which might be AVI, WAV, QCP, etc + if (check([0x52, 0x49, 0x46, 0x46])) { + if (check([0x41, 0x56, 0x49], {offset: 8})) { + return { + ext: 'avi', + mime: 'video/vnd.avi' + }; + } -const makeLinkOpts = ($el, opts) => { - if ($el.attr('href') === undefined) return undefined; - if ($el.attr('href').indexOf('javascript:') === 0) return undefined; - if ($el.attr('href').indexOf('#') === 0) return undefined; - return { - link: new URL($el.attr('href'), opts.baseURL).toString(), - color: '0x0000FF' - }; -}; + if (check([0x57, 0x41, 0x56, 0x45], {offset: 8})) { + return { + ext: 'wav', + mime: 'audio/vnd.wave' + }; + } -function htmlToPDF($, frag, $parent, opts) { - let pdf, helveticaBold, helveticaEm; // pdfjs is an optional dependency, this is why the requires are done in - // a try/catch. webpack detects this and does not crash when building - // if requires are done in a try/catch. + // QLCM, QCP file + if (check([0x51, 0x4C, 0x43, 0x4D], {offset: 8})) { + return { + ext: 'qcp', + mime: 'audio/qcelp' + }; + } + } - try { - pdf = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); - helveticaBold = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs/font/Helvetica-Bold'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); - helveticaEm = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs/font/Helvetica-Oblique'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); - } catch (err) { - throw new Error('pdfjs dependency is missing. Please add it in your package.json'); - } + if (checkString('SQLi')) { + return { + ext: 'sqlite', + mime: 'application/x-sqlite3' + }; + } - opts = Object.assign({ - baseURL: '', - filter: () => true, - txtOpts: {} - }, opts); - const children = $parent.contents(); - let text = opts.text; - let parentDL = null; + if (check([0x4E, 0x45, 0x53, 0x1A])) { + return { + ext: 'nes', + mime: 'application/x-nintendo-nes-rom' + }; + } - const getText = () => { - if (!text) text = frag.text('', opts.txtOpts); - return text; - }; + if (checkString('Cr24')) { + return { + ext: 'crx', + mime: 'application/x-google-chrome-extension' + }; + } - children.each((i, el) => { - if (el.nodeType === 3 && el.data.trim() !== '') { - getText().add(el.data); - } else if (el.nodeType === 1) { - const $el = $(el); - if (!opts.filter($el)) return; + if ( + checkString('MSCF') || + checkString('ISc(') + ) { + return { + ext: 'cab', + mime: 'application/vnd.ms-cab-compressed' + }; + } - switch (el.tagName) { - case 'a': - getText().add($el.text(), makeLinkOpts($el, opts)); - break; + if (check([0xED, 0xAB, 0xEE, 0xDB])) { + return { + ext: 'rpm', + mime: 'application/x-rpm' + }; + } - case 'strong': - case 'b': - getText().add($el.text(), { - font: helveticaBold - }); - break; + if (check([0xC5, 0xD0, 0xD3, 0xC6])) { + return { + ext: 'eps', + mime: 'application/eps' + }; + } - case 'em': - getText().add($el.text(), { - font: helveticaEm - }); - break; + // -- 5-byte signatures -- - case 'span': - htmlToPDF($, frag, $el, Object.assign({}, opts, { - text: text - })); - break; + if (check([0x4F, 0x54, 0x54, 0x4F, 0x00])) { + return { + ext: 'otf', + mime: 'font/otf' + }; + } - case 'br': - getText().br(); - break; + if (checkString('#!AMR')) { + return { + ext: 'amr', + mime: 'audio/amr' + }; + } - case 'i': - case 'select': - case 'input': - case 'label': - case 'form': - case 'fieldset': - case 'textarea': - case 'button': - case 'img': - case 'script': - case 'caption': - // ignore - break; + if (checkString('{\\rtf')) { + return { + ext: 'rtf', + mime: 'application/rtf' + }; + } - case 'table': - { - text = null; - let width = computeWidth($el); - let tableState = { - tableWidth: width - }; - htmlToPDF($, frag.table({ - widths: Array.from(Array(width), () => '*'), - borderWidth: 1 - }), $el, Object.assign({}, opts, { - tableState - })); - break; - } + if (check([0x46, 0x4C, 0x56, 0x01])) { + return { + ext: 'flv', + mime: 'video/x-flv' + }; + } - case 'tr': - { - text = null; - opts.tableState.colRemaining = opts.tableState.tableWidth; - let row = frag.row(); - htmlToPDF($, row, $el, opts); + if (checkString('IMPM')) { + return { + ext: 'it', + mime: 'audio/x-it' + }; + } - if (opts.tableState.colRemaining > 0) { - row.cell({ - colspan: opts.tableState.colRemaining - }); - } + if ( + checkString('-lh0-', {offset: 2}) || + checkString('-lh1-', {offset: 2}) || + checkString('-lh2-', {offset: 2}) || + checkString('-lh3-', {offset: 2}) || + checkString('-lh4-', {offset: 2}) || + checkString('-lh5-', {offset: 2}) || + checkString('-lh6-', {offset: 2}) || + checkString('-lh7-', {offset: 2}) || + checkString('-lzs-', {offset: 2}) || + checkString('-lz4-', {offset: 2}) || + checkString('-lz5-', {offset: 2}) || + checkString('-lhd-', {offset: 2}) + ) { + return { + ext: 'lzh', + mime: 'application/x-lzh-compressed' + }; + } - break; - } + // MPEG program stream (PS or MPEG-PS) + if (check([0x00, 0x00, 0x01, 0xBA])) { + // MPEG-PS, MPEG-1 Part 1 + if (check([0x21], {offset: 4, mask: [0xF1]})) { + return { + ext: 'mpg', // May also be .ps, .mpeg + mime: 'video/MP1S' + }; + } - case 'dl': - text = null; - htmlToPDF($, frag.table({ - widths: [5 * pdf.cm, null], - borderWidth: 1 - }), $el, { ...opts, - tableState: { - tableWidth: 2, - colRemaining: 2 - } - }); - parentDL = null; - break; + // MPEG-PS, MPEG-2 Part 1 + if (check([0x44], {offset: 4, mask: [0xC4]})) { + return { + ext: 'mpg', // May also be .mpg, .m2p, .vob or .sub + mime: 'video/MP2P' + }; + } + } - case 'dt': - if (!parentDL) { - parentDL = frag; - } else { - frag = parentDL; - } + // -- 6-byte signatures -- - frag = frag.row(); - // fall through the rest of the procedure + if (check([0xFD, 0x37, 0x7A, 0x58, 0x5A, 0x00])) { + return { + ext: 'xz', + mime: 'application/x-xz' + }; + } - case 'dd': - case 'th': - case 'td': - { - text = null; - const colspan = Math.min(opts.tableState.tableWidth, parseInt($el.attr('colspan')) || 1); - opts.tableState.colRemaining -= colspan; - htmlToPDF($, frag.cell({ - padding: 5, - colspan: colspan - }), $el, opts); - break; - } + if (checkString('<?xml ')) { + return { + ext: 'xml', + mime: 'application/xml' + }; + } - case 'h1': - case 'h2': - case 'h3': - case 'h4': - case 'h5': - text = null; - htmlToPDF($, frag, // .cell({ paddingTop: 1 * pdf.cm }), - $el, Object.assign({}, opts, { - txtOpts: { - fontSize: 30 - parseInt(el.tagName.replace('h', '')) * 2 - } - })); - break; + if (checkString('BEGIN:')) { + return { + ext: 'ics', + mime: 'text/calendar' + }; + } - case 'div': - case 'p': - case 'ul': - text = null; - htmlToPDF($, frag.cell(), $el, opts); - break; + if (check([0x37, 0x7A, 0xBC, 0xAF, 0x27, 0x1C])) { + return { + ext: '7z', + mime: 'application/x-7z-compressed' + }; + } - case 'thead': - case 'tfoot': - case 'tbody': - case 'small': - case 'li': - text = null; - htmlToPDF($, frag, $el, opts); - break; + if ( + check([0x52, 0x61, 0x72, 0x21, 0x1A, 0x7]) && + (buffer[6] === 0x0 || buffer[6] === 0x1) + ) { + return { + ext: 'rar', + mime: 'application/x-rar-compressed' + }; + } - default: - text = null; - htmlToPDF($, frag, $el, opts); - } - } - }); -} + // -- 7-byte signatures -- -function createCozyPDFDocument(headline, url) { - let pdf, helveticaBold; // pdfjs is an optional dependency, this is why the requires are done in - // a try/catch. webpack detects this and does not crash when building - // if requires are done in a try/catch. + if (checkString('BLENDER')) { + return { + ext: 'blend', + mime: 'application/x-blender' + }; + } - try { - pdf = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); - helveticaBold = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs/font/Helvetica-Bold'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); - } catch (err) { - throw new Error('pdfjs dependency is missing. Please add it in your package.json'); - } + if (checkString('!<arch>')) { + await tokenizer.ignore(8); + const str = await tokenizer.readToken(new Token.StringType(13, 'ascii')); + if (str === 'debian-binary') { + return { + ext: 'deb', + mime: 'application/x-deb' + }; + } - var doc = new pdf.Document(); - const cell = doc.cell({ - paddingBottom: 0.5 * pdf.cm - }).text(); - cell.add(headline, { - font: helveticaBold, - fontSize: 14 - }); - cell.add(url, { - link: url, - color: '0x0000FF' - }); - return doc; -} + return { + ext: 'ar', + mime: 'application/x-unix-archive' + }; + } -module.exports = { - htmlToPDF, - createCozyPDFDocument -}; + // -- 8-byte signatures -- -/***/ }), -/* 1302 */ -/***/ (function(module, exports, __webpack_require__) { + if (check([0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A])) { + // APNG format (https://wiki.mozilla.org/APNG_Specification) + // 1. Find the first IDAT (image data) chunk (49 44 41 54) + // 2. Check if there is an "acTL" chunk before the IDAT one (61 63 54 4C) -const isEqualWith = __webpack_require__(1303); + // Offset calculated as follows: + // - 8 bytes: PNG signature + // - 4 (length) + 4 (chunk type) + 13 (chunk data) + 4 (CRC): IHDR chunk -const omit = __webpack_require__(631); + await tokenizer.ignore(8); // ignore PNG signature -const maybeToISO = date => { - try { - return date.toISOString ? date.toISOString() : date; - } catch (e) { - return date; - } -}; + async function readChunkHeader() { + return { + length: await tokenizer.readToken(Token.INT32_BE), + type: await tokenizer.readToken(new Token.StringType(4, 'binary')) + }; + } -const looseDates = (val, otherVal) => { - // Loose equality for dates since when coming from Couch, they - // are ISO strings whereas just after scraping they are `Date`s. - if (val instanceof Date) { - return maybeToISO(val) === maybeToISO(otherVal); - } -}; -/** - * Simple Model for Documents. Allows to specify - * `shouldSave`, `shouldUpdate` as methods. - * - * Has useful `isEqual` method - * - */ + do { + const chunk = await readChunkHeader(); + switch (chunk.type) { + case 'IDAT': + return { + ext: 'png', + mime: 'image/png' + }; + case 'acTL': + return { + ext: 'apng', + mime: 'image/apng' + }; + default: + await tokenizer.ignore(chunk.length + 4); // Ignore chunk-data + CRC + } + } while (tokenizer.position < tokenizer.fileInfo.size); + return { + ext: 'png', + mime: 'image/png' + }; + } -class Document { - constructor(attrs) { - if (this.validate) { - this.validate(attrs); - } + if (check([0x41, 0x52, 0x52, 0x4F, 0x57, 0x31, 0x00, 0x00])) { + return { + ext: 'arrow', + mime: 'application/x-apache-arrow' + }; + } - Object.assign(this, attrs, { - metadata: { - version: attrs.metadata && attrs.metadata.version || this.constructor.version - } - }); - } + if (check([0x67, 0x6C, 0x54, 0x46, 0x02, 0x00, 0x00, 0x00])) { + return { + ext: 'glb', + mime: 'model/gltf-binary' + }; + } - toJSON() { - return this; - } - /** - * Compares to another document deeply. - * - * `_id` and `_rev` are by default ignored in the comparison. - * - * By default, will compare dates loosely since you often - * compare existing documents (dates in ISO string) with documents - * that just have been scraped where dates are `Date`s. - */ + // `mov` format variants + if ( + check([0x66, 0x72, 0x65, 0x65], {offset: 4}) || // `free` + check([0x6D, 0x64, 0x61, 0x74], {offset: 4}) || // `mdat` MJPEG + check([0x6D, 0x6F, 0x6F, 0x76], {offset: 4}) || // `moov` + check([0x77, 0x69, 0x64, 0x65], {offset: 4}) // `wide` + ) { + return { + ext: 'mov', + mime: 'video/quicktime' + }; + } + + // -- 9-byte signatures -- + if (check([0x49, 0x49, 0x52, 0x4F, 0x08, 0x00, 0x00, 0x00, 0x18])) { + return { + ext: 'orf', + mime: 'image/x-olympus-orf' + }; + } - isEqual(other, ignoreAttrs = ['_id', '_rev'], strict = false) { - return isEqualWith(omit(this, ignoreAttrs), omit(other, ignoreAttrs), !strict && looseDates); - } + // -- 12-byte signatures -- -} + if (check([0x49, 0x49, 0x55, 0x00, 0x18, 0x00, 0x00, 0x00, 0x88, 0xE7, 0x74, 0xD8])) { + return { + ext: 'rw2', + mime: 'image/x-panasonic-rw2' + }; + } -module.exports = Document; + // ASF_Header_Object first 80 bytes + if (check([0x30, 0x26, 0xB2, 0x75, 0x8E, 0x66, 0xCF, 0x11, 0xA6, 0xD9])) { + async function readHeader() { + const guid = Buffer.alloc(16); + await tokenizer.readBuffer(guid); + return { + id: guid, + size: await tokenizer.readToken(Token.UINT64_LE) + }; + } -/***/ }), -/* 1303 */ -/***/ (function(module, exports, __webpack_require__) { + await tokenizer.ignore(30); + // Search for header should be in first 1KB of file. + while (tokenizer.position + 24 < tokenizer.fileInfo.size) { + const header = await readHeader(); + let payload = header.size - 24; + if (_check(header.id, [0x91, 0x07, 0xDC, 0xB7, 0xB7, 0xA9, 0xCF, 0x11, 0x8E, 0xE6, 0x00, 0xC0, 0x0C, 0x20, 0x53, 0x65])) { + // Sync on Stream-Properties-Object (B7DC0791-A9B7-11CF-8EE6-00C00C205365) + const typeId = Buffer.alloc(16); + payload -= await tokenizer.readBuffer(typeId); -var baseIsEqual = __webpack_require__(422); + if (_check(typeId, [0x40, 0x9E, 0x69, 0xF8, 0x4D, 0x5B, 0xCF, 0x11, 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B])) { + // Found audio: + return { + ext: 'wma', + mime: 'audio/x-ms-wma' + }; + } -/** - * This method is like `_.isEqual` except that it accepts `customizer` which - * is invoked to compare values. If `customizer` returns `undefined`, comparisons - * are handled by the method instead. The `customizer` is invoked with up to - * six arguments: (objValue, othValue [, index|key, object, other, stack]). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @param {Function} [customizer] The function to customize comparisons. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. - * @example - * - * function isGreeting(value) { - * return /^h(?:i|ello)$/.test(value); - * } - * - * function customizer(objValue, othValue) { - * if (isGreeting(objValue) && isGreeting(othValue)) { - * return true; - * } - * } - * - * var array = ['hello', 'goodbye']; - * var other = ['hi', 'goodbye']; - * - * _.isEqualWith(array, other, customizer); - * // => true - */ -function isEqualWith(value, other, customizer) { - customizer = typeof customizer == 'function' ? customizer : undefined; - var result = customizer ? customizer(value, other) : undefined; - return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result; -} + if (_check(typeId, [0xC0, 0xEF, 0x19, 0xBC, 0x4D, 0x5B, 0xCF, 0x11, 0xA8, 0xFD, 0x00, 0x80, 0x5F, 0x5C, 0x44, 0x2B])) { + // Found video: + return { + ext: 'wmv', + mime: 'video/x-ms-asf' + }; + } -module.exports = isEqualWith; + break; + } + await tokenizer.ignore(payload); + } -/***/ }), -/* 1304 */ -/***/ (function(module, exports, __webpack_require__) { + // Default to ASF generic extension + return { + ext: 'asf', + mime: 'application/vnd.ms-asf' + }; + } -const log = __webpack_require__(2).namespace('scrape'); -/** - * Declarative scraping. - * - * Describe your items attributes and where to find/parse them - * instead of imperatively building them. - * - * Heavily inspired by [artoo] scraping method. - * - * [artoo]: https://medialab.github.io/artoo/ - */ + if (check([0xAB, 0x4B, 0x54, 0x58, 0x20, 0x31, 0x31, 0xBB, 0x0D, 0x0A, 0x1A, 0x0A])) { + return { + ext: 'ktx', + mime: 'image/ktx' + }; + } + if ((check([0x7E, 0x10, 0x04]) || check([0x7E, 0x18, 0x04])) && check([0x30, 0x4D, 0x49, 0x45], {offset: 4})) { + return { + ext: 'mie', + mime: 'application/x-mie' + }; + } -const mkSpec = function (spec) { - if (typeof spec === 'string') { - return { - sel: spec - }; - } else { - return spec; - } -}; -/** - * Scrape a cheerio object for properties - * - * @param {object} $ - Cheerio node which will be scraped - * @param {object|string} specs - Options object describing what you want to scrape - * @param {string} [childSelector] - If passed, scrape will return an array of items - * @returns {object|Array} - Item(s) scraped - * @example - * - * `scrape` can be used to declaratively extract data : - * - * - For one object : - * - * ``` - * const item = scrape($('#item'), { - * title: '.title', - * content: '.content' - * }) - * ``` - * - * - For a list of objects : - * - * ``` - * const items = scrape($('#content'), { - * title: '.title', - * content: '.content' - * }, '.item') - * ``` - * - * For more power, you can use `object`s for each retriever : - * - * ``` - * const items = scrape($('#content'), { - * title: '.title', - * content: '.content', - * link: { - * sel: 'a', - * attr: 'href' - * }, - * }, '.item') - * ``` - * - * Here the `href` attribute of the `a` inside `.item`s would have been - * put into the `link` attribute of the items returned by `scrape`. - * - * Available options : - * - * - `sel`: the CSS selector used to target the HTML node from which data will be scraped - * - `attr`: the HTML attribute from which to extract data - * - `parse`: function applied to the value extracted (`{ sel: '.price', parse: parseAmount }`) - * - `fn`: if you need something more complicated than `attr`, you can use this function, it receives - * the complete DOM node. `{ sel: '.person', fn: $node => $node.attr('data-name') + $node.attr('data-firstname') }` - */ + if (check([0x27, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00], {offset: 2})) { + return { + ext: 'shp', + mime: 'application/x-esri-shape' + }; + } + if (check([0x00, 0x00, 0x00, 0x0C, 0x6A, 0x50, 0x20, 0x20, 0x0D, 0x0A, 0x87, 0x0A])) { + // JPEG-2000 family -const scrape = ($, specs, childSelector) => { - // Only one value shorthand - if (typeof specs === 'string' || specs.sel && typeof specs.sel === 'string') { - const { - val - } = scrape($, { - val: specs - }); - return val; - } // Several items shorthand + await tokenizer.ignore(20); + const type = await tokenizer.readToken(new Token.StringType(4, 'ascii')); + switch (type) { + case 'jp2 ': + return { + ext: 'jp2', + mime: 'image/jp2' + }; + case 'jpx ': + return { + ext: 'jpx', + mime: 'image/jpx' + }; + case 'jpm ': + return { + ext: 'jpm', + mime: 'image/jpm' + }; + case 'mjp2': + return { + ext: 'mj2', + mime: 'image/mj2' + }; + default: + return; + } + } + // -- Unsafe signatures -- - if (childSelector !== undefined) { - return Array.from(($.find || $)(childSelector)).map(e => scrape($(e), specs)); - } // Several properties "normal" case + if ( + check([0x0, 0x0, 0x1, 0xBA]) || + check([0x0, 0x0, 0x1, 0xB3]) + ) { + return { + ext: 'mpg', + mime: 'video/mpeg' + }; + } + if (check([0x00, 0x01, 0x00, 0x00, 0x00])) { + return { + ext: 'ttf', + mime: 'font/ttf' + }; + } - const res = {}; - Object.keys(specs).forEach(specName => { - try { - const spec = mkSpec(specs[specName]); - let data = spec.sel ? $.find(spec.sel) : $; + if (check([0x00, 0x00, 0x01, 0x00])) { + return { + ext: 'ico', + mime: 'image/x-icon' + }; + } - if (spec.index) { - data = data.get(spec.index); - } + if (check([0x00, 0x00, 0x02, 0x00])) { + return { + ext: 'cur', + mime: 'image/x-icon' + }; + } - let val; + // Increase sample size from 12 to 256. + await tokenizer.peekBuffer(buffer, {length: Math.min(256, tokenizer.fileInfo.size), mayBeLess: true}); - if (spec.fn) { - val = spec.fn(data); - } else if (spec.attr) { - val = data.attr(spec.attr); - } else { - val = data; - val = val && val.text(); - val = val && val.trim(); - } + // `raf` is here just to keep all the raw image detectors together. + if (checkString('FUJIFILMCCD-RAW')) { + return { + ext: 'raf', + mime: 'image/x-fujifilm-raf' + }; + } - if (spec.parse) { - val = spec.parse(val); - } + if (checkString('Extended Module:')) { + return { + ext: 'xm', + mime: 'audio/x-xm' + }; + } - res[specName] = val; - } catch (e) { - log('warn', 'Could not parse for', specName); - log('warn', e); - } - }); - return res; -}; + if (checkString('Creative Voice File')) { + return { + ext: 'voc', + mime: 'audio/x-voc' + }; + } -module.exports = scrape; + if (check([0x04, 0x00, 0x00, 0x00]) && buffer.length >= 16) { // Rough & quick check Pickle/ASAR + const jsonSize = buffer.readUInt32LE(12); + if (jsonSize > 12 && jsonSize < 240 && buffer.length >= jsonSize + 16) { + try { + const header = buffer.slice(16, jsonSize + 16).toString(); + const json = JSON.parse(header); + // Check if Pickle is ASAR + if (json.files) { // Final check, assuring Pickle/ASAR format + return { + ext: 'asar', + mime: 'application/x-asar' + }; + } + } catch (_) { + } + } + } -/***/ }), -/* 1305 */ -/***/ (function(module, exports) { + if (check([0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E])) { + return { + ext: 'msi', + mime: 'application/x-msi' + }; + } -/** - * Returns the given name, replacing characters that could be an issue when - * used in a filename with spaces. - * - * @module normalizeFilename - */ -const normalizableCharsRegExp = /[<>:"/\\|?*\0\s]+/g; -/** - * Returns the given name, replacing characters that could be an issue when - * used in a filename with spaces. - * - * Replaced characters include: - * - * - Those forbidden on one or many popular OS or filesystem: `<>:"/\|?*` - * - Those forbidden by the cozy-stack `\0`, `\r` and `\n` - * - Multiple spaces and/or tabs are replaced with a single space - * - Leading & trailing spaces and/or tabs are removed - * - * An exception will be thrown in case there is not any filename-compatible - * character in the given name. - * - * Parameters: - * - * - `basename` is whatever string you want to generate the filename from - * - `ext` is an optional file extension, with or without leading dot - * - * ```javascript - * const { normalizeFilename } = require('cozy-konnector-libs') - * - * const filename = normalizeFilename('*foo/bar: <baz> \\"qux"\t???', '.txt') - * // `filename` === `foo bar baz qux.txt` - * ``` - * - * @alias module:normalizeFilename - */ + if (check([0x06, 0x0E, 0x2B, 0x34, 0x02, 0x05, 0x01, 0x01, 0x0D, 0x01, 0x02, 0x01, 0x01, 0x02])) { + return { + ext: 'mxf', + mime: 'application/mxf' + }; + } -const normalizeFilename = (basename, ext) => { - const filename = basename.replace(normalizableCharsRegExp, ' ').trim(); + if (checkString('SCRM', {offset: 44})) { + return { + ext: 's3m', + mime: 'audio/x-s3m' + }; + } - if (filename === '') { - throw new Error('Cannot find any filename-compatible character in ' + JSON.stringify(filename) + '!'); - } + if (check([0x47], {offset: 4}) && (check([0x47], {offset: 192}) || check([0x47], {offset: 196}))) { + return { + ext: 'mts', + mime: 'video/mp2t' + }; + } - if (ext == null) ext = '';else if (!ext.startsWith('.')) ext = '.' + ext; - return filename + ext; -}; + if (check([0x42, 0x4F, 0x4F, 0x4B, 0x4D, 0x4F, 0x42, 0x49], {offset: 60})) { + return { + ext: 'mobi', + mime: 'application/x-mobipocket-ebook' + }; + } -module.exports = normalizeFilename; + if (check([0x44, 0x49, 0x43, 0x4D], {offset: 128})) { + return { + ext: 'dcm', + mime: 'application/dicom' + }; + } -/***/ }), -/* 1306 */ -/***/ (function(module, exports, __webpack_require__) { + if (check([0x4C, 0x00, 0x00, 0x00, 0x01, 0x14, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46])) { + return { + ext: 'lnk', + mime: 'application/x.ms.shortcut' // Invented by us + }; + } -/** - * Use every possible means to solve a captcha. At the moment, Anticaptcha web service is used if - * any related secret key is found in COZY_PARAMETERS environment variable. - * - * @module solveCaptcha - */ -const log = __webpack_require__(2).namespace('solveCaptcha'); + if (check([0x62, 0x6F, 0x6F, 0x6B, 0x00, 0x00, 0x00, 0x00, 0x6D, 0x61, 0x72, 0x6B, 0x00, 0x00, 0x00, 0x00])) { + return { + ext: 'alias', + mime: 'application/x.apple.alias' // Invented by us + }; + } -const errors = __webpack_require__(1228); + if ( + check([0x4C, 0x50], {offset: 34}) && + ( + check([0x00, 0x00, 0x01], {offset: 8}) || + check([0x01, 0x00, 0x02], {offset: 8}) || + check([0x02, 0x00, 0x02], {offset: 8}) + ) + ) { + return { + ext: 'eot', + mime: 'application/vnd.ms-fontobject' + }; + } -const request = __webpack_require__(24); + if (check([0x06, 0x06, 0xED, 0xF5, 0xD8, 0x1D, 0x46, 0xE5, 0xBD, 0x31, 0xEF, 0xE7, 0xFE, 0x74, 0xB7, 0x1D])) { + return { + ext: 'indd', + mime: 'application/x-indesign' + }; + } -const sleep = __webpack_require__(9).promisify(global.setTimeout); + // Increase sample size from 256 to 512 + await tokenizer.peekBuffer(buffer, {length: Math.min(512, tokenizer.fileInfo.size), mayBeLess: true}); -const connectorStartTime = Date.now(); -const ms = 1; -const s = 1000 * ms; -const m = 60 * s; -const DEFAULT_TIMEOUT = connectorStartTime + 3 * m; // 3 minutes by default to let 1 min to the connector to fetch files + // Requires a buffer size of 512 bytes + if (tarHeaderChecksumMatches(buffer)) { + return { + ext: 'tar', + mime: 'application/x-tar' + }; + } -/** - * Use every possible means to solve a captcha. At the moment, Anticaptcha web service is used if - * any related secret key is found in COZY_PARAMETERS environment variable. - * If you do not want to solve the captcha each time the connector is run, please also use - * CookieKonnector which will help you save the session. - * - * Parameters: - * - * - `params` is an array of objects with any attributes with some mandatory attributes : - * + `type` (String): (default recaptcha) type of captcha to solve. can be "recaptcha" or "image" at the moment - * + `timeout` (Number): (default 3 minutes after now) time when the solver should stop trying to - * solve the captcha - * + `websiteKey` (String): the key you can find on the targeted website (for recaptcha) - * + `websiteURL` (String): The URL of the page showing the captcha (for recaptcha) - * + `body` (String): The base64 encoded image (for image captcha) - * Returns: Promise with the solved captcha response as a string - * - * @example - * - * ```javascript - * const { solveCaptcha } = require('cozy-konnector-libs') - * - * const solvedKey = await solveCaptcha({ - * websiteKey: 'the key in the webpage', - * websiteURL: 'http://quotes.toscrape.com/login', - * }) - * // now use the solveKey to submit your form - * ``` - * @alias module:solveCaptcha - */ + if (check([0xFF, 0xFE, 0xFF, 0x0E, 0x53, 0x00, 0x6B, 0x00, 0x65, 0x00, 0x74, 0x00, 0x63, 0x00, 0x68, 0x00, 0x55, 0x00, 0x70, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6C, 0x00])) { + return { + ext: 'skp', + mime: 'application/vnd.sketchup.skp' + }; + } -const solveCaptcha = async (params = {}) => { - const defaultParams = { - type: 'recaptcha', - timeout: DEFAULT_TIMEOUT - }; - params = { ...defaultParams, - ...params - }; - const secrets = JSON.parse(process.env.COZY_PARAMETERS || '{}').secret; + if (checkString('-----BEGIN PGP MESSAGE-----')) { + return { + ext: 'pgp', + mime: 'application/pgp-encrypted' + }; + } - if (params.type === 'recaptcha') { - checkMandatoryParams(params, ['websiteKey', 'websiteURL']); - const { - websiteKey, - websiteURL - } = params; - return solveWithAntiCaptcha({ - websiteKey, - websiteURL, - type: 'NoCaptchaTaskProxyless' - }, params.timeout, secrets, 'gRecaptchaResponse'); - } else if (params.type === 'recaptchav3') { - checkMandatoryParams(params, ['websiteKey', 'websiteURL', 'pageAction', 'minScore']); - const { - websiteKey, - websiteURL, - pageAction, - minScore - } = params; - return solveWithAntiCaptcha({ - websiteKey, - websiteURL, - pageAction, - minScore, - type: 'RecaptchaV3TaskProxyless' - }, params.timeout, secrets, 'gRecaptchaResponse'); - } else if (params.type === 'hcaptcha') { - checkMandatoryParams(params, ['websiteKey', 'websiteURL']); - const { - websiteKey, - websiteURL - } = params; - return solveWithAntiCaptcha({ - websiteKey, - websiteURL, - type: 'HCaptchaTaskProxyless' - }, params.timeout, secrets, 'gRecaptchaResponse'); - } else if (params.type === 'image') { - checkMandatoryParams(params, ['body']); - return solveWithAntiCaptcha({ - body: params.body, - type: 'ImageToTextTask' - }, params.timeout, secrets, 'text'); - } -}; + // Check for MPEG header at different starting offsets + for (let start = 0; start < 2 && start < (buffer.length - 16); start++) { + // Check MPEG 1 or 2 Layer 3 header, or 'layer 0' for ADTS (MPEG sync-word 0xFFE) + if (buffer.length >= start + 2 && check([0xFF, 0xE0], {offset: start, mask: [0xFF, 0xE0]})) { + if (check([0x10], {offset: start + 1, mask: [0x16]})) { + // Check for (ADTS) MPEG-2 + if (check([0x08], {offset: start + 1, mask: [0x08]})) { + return { + ext: 'aac', + mime: 'audio/aac' + }; + } -function checkMandatoryParams(params = {}, mandatoryParams = []) { - const keys = Object.keys(params); - const missingKeys = mandatoryParams.filter(key => !keys.includes(key)); + // Must be (ADTS) MPEG-4 + return { + ext: 'aac', + mime: 'audio/aac' + }; + } - if (missingKeys.length) { - throw new Error(`${missingKeys.join(', ')} are mandatory to solve the captcha`); - } -} + // MPEG 1 or 2 Layer 3 header + // Check for MPEG layer 3 + if (check([0x02], {offset: start + 1, mask: [0x06]})) { + return { + ext: 'mp3', + mime: 'audio/mpeg' + }; + } -async function solveWithAntiCaptcha(taskParams, timeout = DEFAULT_TIMEOUT, secrets, resultAttribute = 'gRecaptchaResponse') { - const antiCaptchaApiUrl = 'https://api.anti-captcha.com'; - let gRecaptchaResponse = null; - const startTime = Date.now(); // we try to solve the captcha with anticaptcha + // Check for MPEG layer 2 + if (check([0x04], {offset: start + 1, mask: [0x06]})) { + return { + ext: 'mp2', + mime: 'audio/mpeg' + }; + } - const clientKey = secrets.antiCaptchaClientKey; + // Check for MPEG layer 1 + if (check([0x06], {offset: start + 1, mask: [0x06]})) { + return { + ext: 'mp1', + mime: 'audio/mpeg' + }; + } + } + } +} - if (clientKey) { - log('debug', ' Creating captcha resolution task...'); - const task = await request.post(`${antiCaptchaApiUrl}/createTask`, { - body: { - clientKey, - task: taskParams - }, - json: true - }); +const stream = readableStream => new Promise((resolve, reject) => { + // Using `eval` to work around issues when bundling with Webpack + const stream = eval('require')('stream'); // eslint-disable-line no-eval - if (task && task.taskId) { - log('debug', ` Task id : ${task.taskId}`); + readableStream.on('error', reject); + readableStream.once('readable', async () => { + // Set up output stream + const pass = new stream.PassThrough(); + let outputStream; + if (stream.pipeline) { + outputStream = stream.pipeline(readableStream, pass, () => { + }); + } else { + outputStream = readableStream.pipe(pass); + } - while (!gRecaptchaResponse) { - const resp = await request.post(`${antiCaptchaApiUrl}/getTaskResult`, { - body: { - clientKey, - taskId: task.taskId - }, - json: true - }); + // Read the input stream and detect the filetype + const chunk = readableStream.read(minimumBytes) || readableStream.read() || Buffer.alloc(0); + try { + const fileType = await fromBuffer(chunk); + pass.fileType = fileType; + } catch (error) { + reject(error); + } - if (resp.status === 'ready') { - if (resp.errorId) { - log('error', `Anticaptcha error: ${JSON.stringify(resp)}`); - throw new Error(errors.CAPTCHA_RESOLUTION_FAILED); - } + resolve(outputStream); + }); +}); - log('info', ` Found Recaptcha response : ${JSON.stringify(resp)}`); - return resp.solution[resultAttribute]; - } else { - log('debug', ` ${Math.round((Date.now() - startTime) / 1000)}s...`); +const fileType = { + fromStream, + fromTokenizer, + fromBuffer, + stream +}; - if (Date.now() > timeout) { - log('warn', ` Captcha resolution timeout`); - throw new Error(errors.CAPTCHA_RESOLUTION_FAILED + '.TIMEOUT'); - } +Object.defineProperty(fileType, 'extensions', { + get() { + return new Set(supported.extensions); + } +}); - await sleep(10000); - } - } - } else { - log('warn', 'Could not create anticaptcha task'); - log('warn', JSON.stringify(task)); - } - } else { - log('warn', 'Could not find any anticaptcha secret key'); - } +Object.defineProperty(fileType, 'mimeTypes', { + get() { + return new Set(supported.mimeTypes); + } +}); - throw new Error(errors.CAPTCHA_RESOLUTION_FAILED); -} +module.exports = fileType; -module.exports = solveCaptcha; /***/ }), -/* 1307 */ +/* 1420 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -/* WEBPACK VAR INJECTION */(function(module) { - -var Bluebird = __webpack_require__(25).getNewLibraryCopy(), - configure = __webpack_require__(1308), - stealthyRequire = __webpack_require__(77); - -try { - // Load Request freshly - so that users can require an unaltered request instance! - var request = stealthyRequire(__webpack_require__.c, function () { - return __webpack_require__(1311); +Object.defineProperty(exports, "__esModule", { value: true }); +exports.writeIntBE = exports.readIntBE = exports.writeUIntBE = exports.readUIntBE = exports.writeIntLE = exports.AnsiStringType = exports.StringType = exports.BufferType = exports.IgnoreType = exports.Float80_LE = exports.Float80_BE = exports.Float64_LE = exports.Float64_BE = exports.Float32_LE = exports.Float32_BE = exports.Float16_LE = exports.Float16_BE = exports.INT64_BE = exports.UINT64_BE = exports.INT64_LE = exports.UINT64_LE = exports.INT32_LE = exports.INT32_BE = exports.INT24_BE = exports.INT24_LE = exports.INT16_LE = exports.INT16_BE = exports.INT8 = exports.UINT32_BE = exports.UINT32_LE = exports.UINT24_BE = exports.UINT24_LE = exports.UINT16_BE = exports.UINT16_LE = exports.UINT8 = void 0; +const ieee754 = __webpack_require__(1421); +// Primitive types +/** + * 8-bit unsigned integer + */ +exports.UINT8 = { + len: 1, + get(buf, off) { + return buf.readUInt8(off); }, - function () { - __webpack_require__(81); - }, module); - -} catch (err) { - /* istanbul ignore next */ - var EOL = __webpack_require__(19).EOL; - /* istanbul ignore next */ - console.error(EOL + '###' + EOL + '### The "request" library is not installed automatically anymore.' + EOL + '### But is a dependency of "request-promise".' + EOL + '### Please install it with:' + EOL + '### npm install request --save' + EOL + '###' + EOL); - /* istanbul ignore next */ - throw err; + put(buf, off, v) { + return buf.writeUInt8(v, off); + } +}; +/** + * 16-bit unsigned integer, Little Endian byte order + */ +exports.UINT16_LE = { + len: 2, + get(buf, off) { + return buf.readUInt16LE(off); + }, + put(buf, off, v) { + return buf.writeUInt16LE(v, off); + } +}; +/** + * 16-bit unsigned integer, Big Endian byte order + */ +exports.UINT16_BE = { + len: 2, + get(buf, off) { + return buf.readUInt16BE(off); + }, + put(buf, off, v) { + return buf.writeUInt16BE(v, off); + } +}; +/** + * 24-bit unsigned integer, Little Endian byte order + */ +exports.UINT24_LE = { + len: 3, + get(buf, off) { + return buf.readUIntLE(off, 3); + }, + put(buf, off, v) { + return buf.writeUIntLE(v, off, 3); + } +}; +/** + * 24-bit unsigned integer, Big Endian byte order + */ +exports.UINT24_BE = { + len: 3, + get(buf, off) { + return buf.readUIntBE(off, 3); + }, + put(buf, off, v) { + return buf.writeUIntBE(v, off, 3); + } +}; +/** + * 32-bit unsigned integer, Little Endian byte order + */ +exports.UINT32_LE = { + len: 4, + get(buf, off) { + return buf.readUInt32LE(off); + }, + put(b, o, v) { + return b.writeUInt32LE(v, o); + } +}; +/** + * 32-bit unsigned integer, Big Endian byte order + */ +exports.UINT32_BE = { + len: 4, + get(buf, off) { + return buf.readUInt32BE(off); + }, + put(buf, off, v) { + return buf.writeUInt32BE(v, off); + } +}; +/** + * 8-bit signed integer + */ +exports.INT8 = { + len: 1, + get(buf, off) { + return buf.readInt8(off); + }, + put(buf, off, v) { + return buf.writeInt8(v, off); + } +}; +/** + * 16-bit signed integer, Big Endian byte order + */ +exports.INT16_BE = { + len: 2, + get(buf, off) { + return buf.readInt16BE(off); + }, + put(b, o, v) { + return b.writeInt16BE(v, o); + } +}; +/** + * 16-bit signed integer, Little Endian byte order + */ +exports.INT16_LE = { + len: 2, + get(buf, off) { + return buf.readInt16LE(off); + }, + put(b, o, v) { + return b.writeInt16LE(v, o); + } +}; +/** + * 24-bit signed integer, Little Endian byte order + */ +exports.INT24_LE = { + len: 3, + get(buf, off) { + return buf.readIntLE(off, 3); + }, + put(b, o, v) { + return b.writeIntLE(v, o, 3); + } +}; +/** + * 24-bit signed integer, Big Endian byte order + */ +exports.INT24_BE = { + len: 3, + get(buf, off) { + return buf.readIntBE(off, 3); + }, + put(b, o, v) { + return b.writeIntBE(v, o, 3); + } +}; +/** + * 32-bit signed integer, Big Endian byte order + */ +exports.INT32_BE = { + len: 4, + get(buf, off) { + return buf.readInt32BE(off); + }, + put(b, o, v) { + return b.writeInt32BE(v, o); + } +}; +/** + * 32-bit signed integer, Big Endian byte order + */ +exports.INT32_LE = { + len: 4, + get(buf, off) { + return buf.readInt32LE(off); + }, + put(b, o, v) { + return b.writeInt32LE(v, o); + } +}; +/** + * 64-bit unsigned integer, Little Endian byte order + */ +exports.UINT64_LE = { + len: 8, + get(buf, off) { + return readUIntLE(buf, off, this.len); + }, + put(b, o, v) { + return writeUIntLE(b, v, o, this.len); + } +}; +/** + * 64-bit signed integer, Little Endian byte order + */ +exports.INT64_LE = { + len: 8, + get(buf, off) { + return readIntLE(buf, off, this.len); + }, + put(b, off, v) { + return writeIntLE(b, v, off, this.len); + } +}; +/** + * 64-bit unsigned integer, Big Endian byte order + */ +exports.UINT64_BE = { + len: 8, + get(b, off) { + return readUIntBE(b, off, this.len); + }, + put(b, o, v) { + return writeUIntBE(b, v, o, this.len); + } +}; +/** + * 64-bit signed integer, Big Endian byte order + */ +exports.INT64_BE = { + len: 8, + get(b, off) { + return readIntBE(b, off, this.len); + }, + put(b, off, v) { + return writeIntBE(b, v, off, this.len); + } +}; +/** + * IEEE 754 16-bit (half precision) float, big endian + */ +exports.Float16_BE = { + len: 2, + get(b, off) { + return ieee754.read(b, off, false, 10, this.len); + }, + put(b, off, v) { + ieee754.write(b, v, off, false, 10, this.len); + return off + this.len; + } +}; +/** + * IEEE 754 16-bit (half precision) float, little endian + */ +exports.Float16_LE = { + len: 2, + get(b, off) { + return ieee754.read(b, off, true, 10, this.len); + }, + put(b, off, v) { + ieee754.write(b, v, off, true, 10, this.len); + return off + this.len; + } +}; +/** + * IEEE 754 32-bit (single precision) float, big endian + */ +exports.Float32_BE = { + len: 4, + get(b, off) { + return b.readFloatBE(off); + }, + put(b, off, v) { + return b.writeFloatBE(v, off); + } +}; +/** + * IEEE 754 32-bit (single precision) float, little endian + */ +exports.Float32_LE = { + len: 4, + get(b, off) { + return b.readFloatLE(off); + }, + put(b, off, v) { + return b.writeFloatLE(v, off); + } +}; +/** + * IEEE 754 64-bit (double precision) float, big endian + */ +exports.Float64_BE = { + len: 8, + get(b, off) { + return b.readDoubleBE(off); + }, + put(b, off, v) { + return b.writeDoubleBE(v, off); + } +}; +/** + * IEEE 754 64-bit (double precision) float, little endian + */ +exports.Float64_LE = { + len: 8, + get(b, off) { + return b.readDoubleLE(off); + }, + put(b, off, v) { + return b.writeDoubleLE(v, off); + } +}; +/** + * IEEE 754 80-bit (extended precision) float, big endian + */ +exports.Float80_BE = { + len: 10, + get(b, off) { + return ieee754.read(b, off, false, 63, this.len); + }, + put(b, off, v) { + ieee754.write(b, v, off, false, 63, this.len); + return off + this.len; + } +}; +/** + * IEEE 754 80-bit (extended precision) float, little endian + */ +exports.Float80_LE = { + len: 10, + get(b, off) { + return ieee754.read(b, off, true, 63, this.len); + }, + put(b, off, v) { + ieee754.write(b, v, off, true, 63, this.len); + return off + this.len; + } +}; +/** + * Ignore a given number of bytes + */ +class IgnoreType { + /** + * @param len number of bytes to ignore + */ + constructor(len) { + this.len = len; + } + // ToDo: don't read, but skip data + get(buf, off) { + } } - -Bluebird.config({cancellation: true}); - -configure({ - request: request, - PromiseImpl: Bluebird, - expose: [ - 'then', - 'catch', - 'finally', - 'cancel', - 'promise' - // Would you like to expose more Bluebird methods? Try e.g. `rp(...).promise().tap(...)` first. `.promise()` returns the full-fledged Bluebird promise. - ], - constructorMixin: function (resolve, reject, onCancel) { - var self = this; - onCancel(function () { - self.abort(); - }); +exports.IgnoreType = IgnoreType; +class BufferType { + constructor(len) { + this.len = len; + } + get(buf, off) { + return buf.slice(off, off + this.len); + } +} +exports.BufferType = BufferType; +/** + * Consume a fixed number of bytes from the stream and return a string with a specified encoding. + */ +class StringType { + constructor(len, encoding) { + this.len = len; + this.encoding = encoding; + } + get(buf, off) { + return buf.toString(this.encoding, off, off + this.len); + } +} +exports.StringType = StringType; +/** + * ANSI Latin 1 String + * Using windows-1252 / ISO 8859-1 decoding + */ +class AnsiStringType { + constructor(len) { + this.len = len; + } + static decode(buffer, off, until) { + let str = ''; + for (let i = off; i < until; ++i) { + str += AnsiStringType.codePointToString(AnsiStringType.singleByteDecoder(buffer[i])); + } + return str; + } + static inRange(a, min, max) { + return min <= a && a <= max; + } + static codePointToString(cp) { + if (cp <= 0xFFFF) { + return String.fromCharCode(cp); + } + else { + cp -= 0x10000; + return String.fromCharCode((cp >> 10) + 0xD800, (cp & 0x3FF) + 0xDC00); + } + } + static singleByteDecoder(bite) { + if (AnsiStringType.inRange(bite, 0x00, 0x7F)) { + return bite; + } + const codePoint = AnsiStringType.windows1252[bite - 0x80]; + if (codePoint === null) { + throw Error('invaliding encoding'); + } + return codePoint; + } + get(buf, off = 0) { + return AnsiStringType.decode(buf, off, off + this.len); + } +} +exports.AnsiStringType = AnsiStringType; +AnsiStringType.windows1252 = [8364, 129, 8218, 402, 8222, 8230, 8224, 8225, 710, 8240, 352, + 8249, 338, 141, 381, 143, 144, 8216, 8217, 8220, 8221, 8226, 8211, 8212, 732, + 8482, 353, 8250, 339, 157, 382, 376, 160, 161, 162, 163, 164, 165, 166, 167, 168, + 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, + 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, + 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, + 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, + 248, 249, 250, 251, 252, 253, 254, 255]; +/** + * Best effort approach to read up to 64 bit unsigned integer, little endian. + * Note that JavasScript is limited to 2^53 - 1 bit. + */ +function readUIntLE(buf, offset, byteLength) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + let val = buf[offset]; + let mul = 1; + let i = 0; + while (++i < byteLength && (mul *= 0x100)) { + val += buf[offset + i] * mul; + } + return val; +} +/** + * Best effort approach to write up to 64 bit unsigned integer, little endian. + * Note that JavasScript is limited to 2^53 - 1 bit. + */ +function writeUIntLE(buf, value, offset, byteLength) { + value = +value; + offset = offset >>> 0; + byteLength = byteLength >>> 0; + let mul = 1; + let i = 0; + buf[offset] = value & 0xFF; + while (++i < byteLength && (mul *= 0x100)) { + buf[offset + i] = (value / mul) & 0xFF; + } + return offset + byteLength; +} +/** + * Best effort approach to read 64 but signed integer, little endian. + * Note that JavasScript is limited to 2^53 - 1 bit. + */ +function readIntLE(buf, offset, byteLength) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + let val = buf[offset]; + let mul = 1; + let i = 0; + while (++i < byteLength && (mul *= 0x100)) { + val += buf[offset + i] * mul; + } + mul *= 0x80; + if (val >= mul) + val -= Math.pow(2, 8 * byteLength); + return val; +} +/** + * Best effort approach to write 64 but signed integer, little endian. + * Note that JavasScript is limited to 2^53 - 1 bit. + */ +function writeIntLE(buf, value, offset, byteLength) { + value = +value; + offset = offset >>> 0; + let i = 0; + let mul = 1; + let sub = 0; + buf[offset] = value & 0xFF; + while (++i < byteLength && (mul *= 0x100)) { + if (value < 0 && sub === 0 && buf[offset + i - 1] !== 0) { + sub = 1; + } + buf[offset + i] = ((value / mul) >> 0) - sub & 0xFF; + } + return offset + byteLength; +} +exports.writeIntLE = writeIntLE; +/** + * Best effort approach to read up to 64 bit unsigned integer, big endian. + * Note that JavasScript is limited to 2^53 - 1 bit. + */ +function readUIntBE(buf, offset, byteLength) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + let val = buf[offset + --byteLength]; + let mul = 1; + while (byteLength > 0 && (mul *= 0x100)) { + val += buf[offset + --byteLength] * mul; } -}); - -request.bindCLS = function RP$bindCLS() { - throw new Error('CLS support was dropped. To get it back read: https://github.com/request/request-promise/wiki/Getting-Back-Support-for-Continuation-Local-Storage'); -}; - - -module.exports = request; + return val; +} +exports.readUIntBE = readUIntBE; +/** + * Best effort approach to write up to 64 bit unsigned integer, big endian. + * Note that JavasScript is limited to 2^53 - 1 bit. + */ +function writeUIntBE(buf, value, offset, byteLength) { + value = +value; + offset = offset >>> 0; + byteLength = byteLength >>> 0; + let i = byteLength - 1; + let mul = 1; + buf[offset + i] = value & 0xFF; + while (--i >= 0 && (mul *= 0x100)) { + buf[offset + i] = (value / mul) & 0xFF; + } + return offset + byteLength; +} +exports.writeUIntBE = writeUIntBE; +/** + * Best effort approach to read 64 but signed integer, big endian. + * Note that JavasScript is limited to 2^53 - 1 bit. + */ +function readIntBE(buf, offset, byteLength) { + offset = offset >>> 0; + byteLength = byteLength >>> 0; + let i = byteLength; + let mul = 1; + let val = buf[offset + --i]; + while (i > 0 && (mul *= 0x100)) { + val += buf[offset + --i] * mul; + } + mul *= 0x80; + if (val >= mul) + val -= Math.pow(2, 8 * byteLength); + return val; +} +exports.readIntBE = readIntBE; +/** + * Best effort approach to write 64 but signed integer, big endian. + * Note that JavasScript is limited to 2^53 - 1 bit. + */ +function writeIntBE(buf, value, offset, byteLength) { + value = +value; + offset = offset >>> 0; + let i = byteLength - 1; + let mul = 1; + let sub = 0; + buf[offset + i] = value & 0xFF; + while (--i >= 0 && (mul *= 0x100)) { + if (value < 0 && sub === 0 && buf[offset + i + 1] !== 0) { + sub = 1; + } + buf[offset + i] = ((value / mul) >> 0) - sub & 0xFF; + } + return offset + byteLength; +} +exports.writeIntBE = writeIntBE; -/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) /***/ }), -/* 1308 */ -/***/ (function(module, exports, __webpack_require__) { +/* 1421 */ +/***/ (function(module, exports) { -"use strict"; +/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */ +exports.read = function (buffer, offset, isLE, mLen, nBytes) { + var e, m + var eLen = (nBytes * 8) - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var nBits = -7 + var i = isLE ? (nBytes - 1) : 0 + var d = isLE ? -1 : 1 + var s = buffer[offset + i] + i += d -var core = __webpack_require__(1309), - isArray = __webpack_require__(75), - isFunction = __webpack_require__(65), - isObjectLike = __webpack_require__(73); + e = s & ((1 << (-nBits)) - 1) + s >>= (-nBits) + nBits += eLen + for (; nBits > 0; e = (e * 256) + buffer[offset + i], i += d, nBits -= 8) {} + m = e & ((1 << (-nBits)) - 1) + e >>= (-nBits) + nBits += mLen + for (; nBits > 0; m = (m * 256) + buffer[offset + i], i += d, nBits -= 8) {} -module.exports = function (options) { + if (e === 0) { + e = 1 - eBias + } else if (e === eMax) { + return m ? NaN : ((s ? -1 : 1) * Infinity) + } else { + m = m + Math.pow(2, mLen) + e = e - eBias + } + return (s ? -1 : 1) * m * Math.pow(2, e - mLen) +} - var errorText = 'Please verify options'; // For better minification because this string is repeating +exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { + var e, m, c + var eLen = (nBytes * 8) - mLen - 1 + var eMax = (1 << eLen) - 1 + var eBias = eMax >> 1 + var rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0) + var i = isLE ? 0 : (nBytes - 1) + var d = isLE ? 1 : -1 + var s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0 - if (!isObjectLike(options)) { - throw new TypeError(errorText); - } + value = Math.abs(value) - if (!isFunction(options.request)) { - throw new TypeError(errorText + '.request'); + if (isNaN(value) || value === Infinity) { + m = isNaN(value) ? 1 : 0 + e = eMax + } else { + e = Math.floor(Math.log(value) / Math.LN2) + if (value * (c = Math.pow(2, -e)) < 1) { + e-- + c *= 2 } - - if (!isArray(options.expose) || options.expose.length === 0) { - throw new TypeError(errorText + '.expose'); + if (e + eBias >= 1) { + value += rt / c + } else { + value += rt * Math.pow(2, 1 - eBias) + } + if (value * c >= 2) { + e++ + c /= 2 } + if (e + eBias >= eMax) { + m = 0 + e = eMax + } else if (e + eBias >= 1) { + m = ((value * c) - 1) * Math.pow(2, mLen) + e = e + eBias + } else { + m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen) + e = 0 + } + } - var plumbing = core({ - PromiseImpl: options.PromiseImpl, - constructorMixin: options.constructorMixin - }); - + for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {} - // Intercepting Request's init method + e = (e << mLen) | m + eLen += mLen + for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {} - var originalInit = options.request.Request.prototype.init; + buffer[offset + i - d] |= s * 128 +} - options.request.Request.prototype.init = function RP$initInterceptor(requestOptions) { - // Init may be called again - currently in case of redirects - if (isObjectLike(requestOptions) && !this._callback && !this._rp_promise) { +/***/ }), +/* 1422 */ +/***/ (function(module, exports, __webpack_require__) { - plumbing.init.call(this, requestOptions); +"use strict"; - } - return originalInit.apply(this, arguments); +exports.stringToBytes = string => [...string].map(character => character.charCodeAt(0)); - }; +exports.tarHeaderChecksumMatches = buffer => { // Does not check if checksum field characters are valid + if (buffer.length < 512) { // `tar` header size, cannot compute checksum without it + return false; + } + const readSum = parseInt(buffer.toString('utf8', 148, 154).replace(/\0.*$/, '').trim(), 8); // Read sum in header + if (isNaN(readSum)) { + return false; + } - // Exposing the Promise capabilities + const MASK_8TH_BIT = 0x80; - var thenExposed = false; - for ( var i = 0; i < options.expose.length; i+=1 ) { + let sum = 256; // Initialize sum, with 256 as sum of 8 spaces in checksum field + let signedBitSum = 0; // Initialize signed bit sum - var method = options.expose[i]; + for (let i = 0; i < 148; i++) { + const byte = buffer[i]; + sum += byte; + signedBitSum += byte & MASK_8TH_BIT; // Add signed bit to signed bit sum + } - plumbing[ method === 'promise' ? 'exposePromise' : 'exposePromiseMethod' ]( - options.request.Request.prototype, - null, - '_rp_promise', - method - ); + // Skip checksum field - if (method === 'then') { - thenExposed = true; - } + for (let i = 156; i < 512; i++) { + const byte = buffer[i]; + sum += byte; + signedBitSum += byte & MASK_8TH_BIT; // Add signed bit to signed bit sum + } - } + // Some implementations compute checksum incorrectly using signed bytes + return ( + // Checksum in header equals the sum we calculated + readSum === sum || - if (!thenExposed) { - throw new Error('Please expose "then"'); - } + // Checksum in header equals sum we calculated plus signed-to-unsigned delta + readSum === (sum - (signedBitSum << 1)) + ); +}; +/** +ID3 UINT32 sync-safe tokenizer token. +28 bits (representing up to 256MB) integer, the msb is 0 to avoid "false syncsignals". +*/ +exports.uint32SyncSafeToken = { + get: (buffer, offset) => { + return (buffer[offset + 3] & 0x7F) | ((buffer[offset + 2]) << 7) | ((buffer[offset + 1]) << 14) | ((buffer[offset]) << 21); + }, + len: 4 }; /***/ }), -/* 1309 */ +/* 1423 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var errors = __webpack_require__(1310), - isFunction = __webpack_require__(65), - isObjectLike = __webpack_require__(73), - isString = __webpack_require__(74), - isUndefined = __webpack_require__(76); - - -module.exports = function (options) { - - var errorText = 'Please verify options'; // For better minification because this string is repeating - - if (!isObjectLike(options)) { - throw new TypeError(errorText); - } - - if (!isFunction(options.PromiseImpl)) { - throw new TypeError(errorText + '.PromiseImpl'); - } - - if (!isUndefined(options.constructorMixin) && !isFunction(options.constructorMixin)) { - throw new TypeError(errorText + '.PromiseImpl'); - } - - var PromiseImpl = options.PromiseImpl; - var constructorMixin = options.constructorMixin; - - - var plumbing = {}; +module.exports = { + extensions: [ + 'jpg', + 'png', + 'apng', + 'gif', + 'webp', + 'flif', + 'cr2', + 'cr3', + 'orf', + 'arw', + 'dng', + 'nef', + 'rw2', + 'raf', + 'tif', + 'bmp', + 'icns', + 'jxr', + 'psd', + 'indd', + 'zip', + 'tar', + 'rar', + 'gz', + 'bz2', + '7z', + 'dmg', + 'mp4', + 'mid', + 'mkv', + 'webm', + 'mov', + 'avi', + 'mpg', + 'mp2', + 'mp3', + 'm4a', + 'oga', + 'ogg', + 'ogv', + 'opus', + 'flac', + 'wav', + 'spx', + 'amr', + 'pdf', + 'epub', + 'exe', + 'swf', + 'rtf', + 'wasm', + 'woff', + 'woff2', + 'eot', + 'ttf', + 'otf', + 'ico', + 'flv', + 'ps', + 'xz', + 'sqlite', + 'nes', + 'crx', + 'xpi', + 'cab', + 'deb', + 'ar', + 'rpm', + 'Z', + 'lz', + 'msi', + 'mxf', + 'mts', + 'blend', + 'bpg', + 'docx', + 'pptx', + 'xlsx', + '3gp', + '3g2', + 'jp2', + 'jpm', + 'jpx', + 'mj2', + 'aif', + 'qcp', + 'odt', + 'ods', + 'odp', + 'xml', + 'mobi', + 'heic', + 'cur', + 'ktx', + 'ape', + 'wv', + 'wmv', + 'wma', + 'dcm', + 'ics', + 'glb', + 'pcap', + 'dsf', + 'lnk', + 'alias', + 'voc', + 'ac3', + 'm4v', + 'm4p', + 'm4b', + 'f4v', + 'f4p', + 'f4b', + 'f4a', + 'mie', + 'asf', + 'ogm', + 'ogx', + 'mpc', + 'arrow', + 'shp', + 'aac', + 'mp1', + 'it', + 's3m', + 'xm', + 'ai', + 'skp', + 'avif', + 'eps', + 'lzh', + 'pgp', + 'asar' + ], + mimeTypes: [ + 'image/jpeg', + 'image/png', + 'image/gif', + 'image/webp', + 'image/flif', + 'image/x-canon-cr2', + 'image/x-canon-cr3', + 'image/tiff', + 'image/bmp', + 'image/vnd.ms-photo', + 'image/vnd.adobe.photoshop', + 'application/x-indesign', + 'application/epub+zip', + 'application/x-xpinstall', + 'application/vnd.oasis.opendocument.text', + 'application/vnd.oasis.opendocument.spreadsheet', + 'application/vnd.oasis.opendocument.presentation', + 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', + 'application/vnd.openxmlformats-officedocument.presentationml.presentation', + 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', + 'application/zip', + 'application/x-tar', + 'application/x-rar-compressed', + 'application/gzip', + 'application/x-bzip2', + 'application/x-7z-compressed', + 'application/x-apple-diskimage', + 'application/x-apache-arrow', + 'video/mp4', + 'audio/midi', + 'video/x-matroska', + 'video/webm', + 'video/quicktime', + 'video/vnd.avi', + 'audio/vnd.wave', + 'audio/qcelp', + 'audio/x-ms-wma', + 'video/x-ms-asf', + 'application/vnd.ms-asf', + 'video/mpeg', + 'video/3gpp', + 'audio/mpeg', + 'audio/mp4', // RFC 4337 + 'audio/opus', + 'video/ogg', + 'audio/ogg', + 'application/ogg', + 'audio/x-flac', + 'audio/ape', + 'audio/wavpack', + 'audio/amr', + 'application/pdf', + 'application/x-msdownload', + 'application/x-shockwave-flash', + 'application/rtf', + 'application/wasm', + 'font/woff', + 'font/woff2', + 'application/vnd.ms-fontobject', + 'font/ttf', + 'font/otf', + 'image/x-icon', + 'video/x-flv', + 'application/postscript', + 'application/eps', + 'application/x-xz', + 'application/x-sqlite3', + 'application/x-nintendo-nes-rom', + 'application/x-google-chrome-extension', + 'application/vnd.ms-cab-compressed', + 'application/x-deb', + 'application/x-unix-archive', + 'application/x-rpm', + 'application/x-compress', + 'application/x-lzip', + 'application/x-msi', + 'application/x-mie', + 'application/mxf', + 'video/mp2t', + 'application/x-blender', + 'image/bpg', + 'image/jp2', + 'image/jpx', + 'image/jpm', + 'image/mj2', + 'audio/aiff', + 'application/xml', + 'application/x-mobipocket-ebook', + 'image/heif', + 'image/heif-sequence', + 'image/heic', + 'image/heic-sequence', + 'image/icns', + 'image/ktx', + 'application/dicom', + 'audio/x-musepack', + 'text/calendar', + 'model/gltf-binary', + 'application/vnd.tcpdump.pcap', + 'audio/x-dsf', // Non-standard + 'application/x.ms.shortcut', // Invented by us + 'application/x.apple.alias', // Invented by us + 'audio/x-voc', + 'audio/vnd.dolby.dd-raw', + 'audio/x-m4a', + 'image/apng', + 'image/x-olympus-orf', + 'image/x-sony-arw', + 'image/x-adobe-dng', + 'image/x-nikon-nef', + 'image/x-panasonic-rw2', + 'image/x-fujifilm-raf', + 'video/x-m4v', + 'video/3gpp2', + 'application/x-esri-shape', + 'audio/aac', + 'audio/x-it', + 'audio/x-s3m', + 'audio/x-xm', + 'video/MP1S', + 'video/MP2P', + 'application/vnd.sketchup.skp', + 'image/avif', + 'application/x-lzh-compressed', + 'application/pgp-encrypted', + 'application/x-asar' + ] +}; - plumbing.init = function (requestOptions) { - var self = this; +/***/ }), +/* 1424 */ +/***/ (function(module, exports, __webpack_require__) { - self._rp_promise = new PromiseImpl(function (resolve, reject) { - self._rp_resolve = resolve; - self._rp_reject = reject; - if (constructorMixin) { - constructorMixin.apply(self, arguments); // Using arguments since specific Promise libraries may pass additional parameters - } - }); +/** + * Saves the data into the cozy blindly without check. + * + * @module addData + */ +const bluebird = __webpack_require__(25); - self._rp_callbackOrig = requestOptions.callback; - requestOptions.callback = self.callback = function RP$callback(err, response, body) { - plumbing.callback.call(self, err, response, body); - }; +const omit = __webpack_require__(567); - if (isString(requestOptions.method)) { - requestOptions.method = requestOptions.method.toUpperCase(); - } +const log = __webpack_require__(2).namespace('addData'); - requestOptions.transform = requestOptions.transform || plumbing.defaultTransformations[requestOptions.method]; +const { + getCozyMetadata +} = __webpack_require__(845); +/** + * Saves the data into the cozy blindly without check. + * + * You need at least the `POST` permission for the given doctype in your manifest, to be able to + * use this function. + * + * Parameters: + * + * * `documents`: an array of objects corresponding to the data you want to save in the cozy + * * `doctype` (string): the doctype where you want to save data (ex: 'io.cozy.bills') + * * `options` (object): option object + * + `sourceAccount` (String): id of the source account + * + `sourceAccountIdentifier` (String): identifier unique to the account targetted by the connector. It is the login most of the time + * + * ```javascript + * const documents = [ + * { + * name: 'toto', + * height: 1.8 + * }, + * { + * name: 'titi', + * height: 1.7 + * } + * ] + * + * return addData(documents, 'io.cozy.height') + * ``` + * + * @alias module:addData + */ - self._rp_options = requestOptions; - self._rp_options.simple = requestOptions.simple !== false; - self._rp_options.resolveWithFullResponse = requestOptions.resolveWithFullResponse === true; - self._rp_options.transform2xxOnly = requestOptions.transform2xxOnly === true; - }; +const addData = (entries, doctype, options = {}) => { + const cozy = __webpack_require__(487); - plumbing.defaultTransformations = { - HEAD: function (body, response, resolveWithFullResponse) { - return resolveWithFullResponse ? response : response.headers; - } + return bluebird.mapSeries(entries, async entry => { + log('debug', entry, 'Adding this entry'); + const metaEntry = { + cozyMetadata: getCozyMetadata({ ...entry.cozyMetadata, + sourceAccount: options.sourceAccount, + sourceAccountIdentifier: options.sourceAccountIdentifier + }), + ...entry }; + const dbEntry = await (metaEntry._id ? cozy.data.update(doctype, metaEntry, omit(metaEntry, '_rev')) : cozy.data.create(doctype, metaEntry)); // Also update the original entry _id to allow saveBills' + // linkBankOperation entries to have an id - plumbing.callback = function (err, response, body) { + metaEntry._id = dbEntry._id; + return dbEntry; + }); +}; - var self = this; +module.exports = addData; - var origCallbackThrewException = false, thrownException = null; +/***/ }), +/* 1425 */ +/***/ (function(module, exports, __webpack_require__) { - if (isFunction(self._rp_callbackOrig)) { - try { - self._rp_callbackOrig.apply(self, arguments); // TODO: Apply to self mimics behavior of request@2. Is that also right for request@next? - } catch (e) { - origCallbackThrewException = true; - thrownException = e; - } - } +/** + * Finds links between bills and bank operations. + * + * @module linkBankOperations + */ +const bluebird = __webpack_require__(25); - var is2xx = !err && /^2/.test('' + response.statusCode); +const log = __webpack_require__(2).namespace('linkBankOperations'); - if (err) { +const { + findDebitOperation, + findCreditOperation +} = __webpack_require__(1426); - self._rp_reject(new errors.RequestError(err, self._rp_options, response)); +const fs = __webpack_require__(167); - } else if (self._rp_options.simple && !is2xx) { +const defaults = __webpack_require__(1440); - if (isFunction(self._rp_options.transform) && self._rp_options.transform2xxOnly === false) { +const groupBy = __webpack_require__(752); - (new PromiseImpl(function (resolve) { - resolve(self._rp_options.transform(body, response, self._rp_options.resolveWithFullResponse)); // transform may return a Promise - })) - .then(function (transformedResponse) { - self._rp_reject(new errors.StatusCodeError(response.statusCode, body, self._rp_options, transformedResponse)); - }) - .catch(function (transformErr) { - self._rp_reject(new errors.TransformError(transformErr, self._rp_options, response)); - }); +const flatten = __webpack_require__(606); - } else { - self._rp_reject(new errors.StatusCodeError(response.statusCode, body, self._rp_options, response)); - } +const sumBy = __webpack_require__(1433); - } else { +const geco = __webpack_require__(1441); - if (isFunction(self._rp_options.transform) && (is2xx || self._rp_options.transform2xxOnly === false)) { +const { + format +} = __webpack_require__(897); - (new PromiseImpl(function (resolve) { - resolve(self._rp_options.transform(body, response, self._rp_options.resolveWithFullResponse)); // transform may return a Promise - })) - .then(function (transformedResponse) { - self._rp_resolve(transformedResponse); - }) - .catch(function (transformErr) { - self._rp_reject(new errors.TransformError(transformErr, self._rp_options, response)); - }); +const cozyClient = __webpack_require__(487); - } else if (self._rp_options.resolveWithFullResponse) { - self._rp_resolve(response); - } else { - self._rp_resolve(body); - } +const DOCTYPE_OPERATIONS = 'io.cozy.bank.operations'; +const DEFAULT_AMOUNT_DELTA = 0.001; +const DEFAULT_PAST_WINDOW = 15; +const DEFAULT_FUTURE_WINDOW = 29; - } +const fmtDate = function (x) { + return new Date(x).toISOString().substr(0, 10); +}; - if (origCallbackThrewException) { - throw thrownException; - } +const getBillDate = bill => bill.originalDate || bill.date; - }; +class Linker { + constructor(cozyClient) { + this.cozyClient = cozyClient; + this.toUpdate = []; + this.groupVendors = ['Numéricable', 'Ameli', 'MGEN', 'Humanis']; + } - plumbing.exposePromiseMethod = function (exposeTo, bindTo, promisePropertyKey, methodToExpose, exposeAs) { + async removeBillsFromOperations(bills, operations) { + log('debug', `Removing ${bills.length} bills from bank operations`); - exposeAs = exposeAs || methodToExpose; + for (let op of operations) { + let needUpdate = false; + let billsAttribute = op.bills || []; - if (exposeAs in exposeTo) { - throw new Error('Unable to expose method "' + exposeAs + '"'); - } + for (let bill of bills) { + const billLongId = `io.cozy.bills:${bill._id}`; // if bill id found in op bills, do something - exposeTo[exposeAs] = function RP$exposed() { - var self = bindTo || this; - return self[promisePropertyKey][methodToExpose].apply(self[promisePropertyKey], arguments); - }; + if (billsAttribute.indexOf(billLongId) >= 0) { + needUpdate = true; + billsAttribute = billsAttribute.filter(billId => billId !== billLongId && billId !== `io.cozy.bills:${bill.original}`); - }; + if (bill.original) { + billsAttribute.push(`io.cozy.bills:${bill.original}`); + } + } + } - plumbing.exposePromise = function (exposeTo, bindTo, promisePropertyKey, exposeAs) { + if (needUpdate) { + log('info', `Bank operation ${op._id}: Replacing ${JSON.stringify(op.bills)} by ${JSON.stringify(billsAttribute)}`); + await this.updateAttributes(DOCTYPE_OPERATIONS, op, { + bills: billsAttribute + }); + } + } + } - exposeAs = exposeAs || 'promise'; + addBillToOperation(bill, operation) { + if (!bill._id) { + log('warn', 'bill has no id, impossible to add it to an operation'); + return Promise.resolve(); + } - if (exposeAs in exposeTo) { - throw new Error('Unable to expose method "' + exposeAs + '"'); - } + const billId = `io.cozy.bills:${bill._id}`; - exposeTo[exposeAs] = function RP$promise() { - var self = bindTo || this; - return self[promisePropertyKey]; - }; + if (operation.bills && operation.bills.indexOf(billId) > -1) { + return Promise.resolve(); + } + const billIds = operation.bills || []; + billIds.push(billId); + const attributes = { + bills: billIds }; + return this.updateAttributes(DOCTYPE_OPERATIONS, operation, attributes); + } - return plumbing; + addReimbursementToOperation(bill, debitOperation, matchingOperation) { + if (!bill._id) { + log('warn', 'bill has no id, impossible to add it as a reimbursement'); + return Promise.resolve(); + } -}; + const billId = `io.cozy.bills:${bill._id}`; + if (debitOperation.reimbursements && debitOperation.reimbursements.map(b => b.billId).indexOf(billId) > -1) { + return Promise.resolve(); + } -/***/ }), -/* 1310 */ -/***/ (function(module, exports, __webpack_require__) { + const reimbursements = debitOperation.reimbursements || []; + reimbursements.push({ + billId, + amount: bill.amount, + operationId: matchingOperation && matchingOperation._id + }); + return this.updateAttributes(DOCTYPE_OPERATIONS, debitOperation, { + reimbursements: reimbursements + }); + } + /* Buffer update operations */ -"use strict"; + updateAttributes(doctype, doc, attrs) { + Object.assign(doc, attrs); + this.toUpdate.push(doc); + return Promise.resolve(); + } + /* Commit updates */ -function RequestError(cause, options, response) { + commitChanges() { + log('debug', `linkBankOperations: commiting ${this.toUpdate.length} changes`); + return cozyClient.fetchJSON('POST', `/data/${DOCTYPE_OPERATIONS}/_bulk_docs`, { + docs: this.toUpdate + }); + } - this.name = 'RequestError'; - this.message = String(cause); - this.cause = cause; - this.error = cause; // legacy attribute - this.options = options; - this.response = response; + getOptions(opts = {}) { + const options = { ...opts + }; - if (Error.captureStackTrace) { // required for non-V8 environments - Error.captureStackTrace(this); + if (typeof options.identifiers === 'string') { + options.identifiers = [options.identifiers.toLowerCase()]; + } else if (Array.isArray(options.identifiers)) { + options.identifiers = options.identifiers.map(id => id.toLowerCase()); + } else { + throw new Error('linkBankOperations cannot be called without "identifiers" option'); } -} -RequestError.prototype = Object.create(Error.prototype); -RequestError.prototype.constructor = RequestError; - - -function StatusCodeError(statusCode, body, options, response) { + defaults(options, { + amountDelta: DEFAULT_AMOUNT_DELTA + }); + defaults(options, { + minAmountDelta: options.amountDelta, + maxAmountDelta: options.amountDelta, + pastWindow: DEFAULT_PAST_WINDOW, + futureWindow: DEFAULT_FUTURE_WINDOW + }); + return options; + } - this.name = 'StatusCodeError'; - this.statusCode = statusCode; - this.message = statusCode + ' - ' + (JSON && JSON.stringify ? JSON.stringify(body) : body); - this.error = body; // legacy attribute - this.options = options; - this.response = response; + async linkBillToCreditOperation(bill, debitOperation, allOperations, options) { + const creditOperation = await findCreditOperation(this.cozyClient, bill, options, allOperations); + const promises = []; - if (Error.captureStackTrace) { // required for non-V8 environments - Error.captureStackTrace(this); + if (creditOperation) { + promises.push(this.addBillToOperation(bill, creditOperation)); } -} -StatusCodeError.prototype = Object.create(Error.prototype); -StatusCodeError.prototype.constructor = StatusCodeError; - - -function TransformError(cause, options, response) { - - this.name = 'TransformError'; - this.message = String(cause); - this.cause = cause; - this.error = cause; // legacy attribute - this.options = options; - this.response = response; - - if (Error.captureStackTrace) { // required for non-V8 environments - Error.captureStackTrace(this); + if (creditOperation && debitOperation) { + log('debug', `reimbursement: Matching bill ${bill.subtype || bill.filename} (${fmtDate(bill.date)}) with credit operation ${creditOperation.label} (${fmtDate(creditOperation.date)})`); + promises.push(this.addReimbursementToOperation(bill, debitOperation, creditOperation)); } -} -TransformError.prototype = Object.create(Error.prototype); -TransformError.prototype.constructor = TransformError; + await Promise.all(promises); + return creditOperation; + } + async linkBillToDebitOperation(bill, allOperations, options) { + return findDebitOperation(this.cozyClient, bill, options, allOperations).then(operation => { + if (operation) { + log('debug', `bills: Matching bill ${bill.subtype || bill.filename} (${fmtDate(bill.date)}) with debit operation ${operation.label} (${fmtDate(operation.date)})`); + return this.addBillToOperation(bill, operation).then(() => operation); + } + }); + } + /** + * Link bills to + * - their matching banking operation (debit) + * - to their reimbursement (credit) + */ -module.exports = { - RequestError: RequestError, - StatusCodeError: StatusCodeError, - TransformError: TransformError -}; + async linkBillsToOperations(bills, options) { + options = this.getOptions(options); + const result = {}; + const allOperations = await this.cozyClient.data.findAll('io.cozy.bank.operations'); -/***/ }), -/* 1311 */ -/***/ (function(module, exports, __webpack_require__) { + if (options.billsToRemove && options.billsToRemove.length) { + this.removeBillsFromOperations(options.billsToRemove, allOperations); + } // when bill comes from a third party payer, + // no transaction is visible on the bank account -"use strict"; -// Copyright 2010-2012 Mikeal Rogers -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. + bills = bills.filter(bill => !bill.isThirdPartyPayer === true); + await bluebird.each(bills, async bill => { + const res = result[bill._id] = { + bill: bill + }; // the bills combination phase is very time consuming. We can avoid it when we run the + // connector in standalone mode + if (allOperations.length === 0) { + return result; + } -var extend = __webpack_require__(79) -var cookies = __webpack_require__(1312) -var helpers = __webpack_require__(1320) + const debitOperation = await this.linkBillToDebitOperation(bill, allOperations, options); -var paramsHaveRequestBody = helpers.paramsHaveRequestBody + if (debitOperation) { + res.debitOperation = debitOperation; + } -// organize params for patch, post, put, head, del -function initParams (uri, options, callback) { - if (typeof options === 'function') { - callback = options - } + if (bill.isRefund) { + const creditOperation = await this.linkBillToCreditOperation(bill, debitOperation, allOperations, options); - var params = {} - if (typeof options === 'object') { - extend(params, options, {uri: uri}) - } else if (typeof uri === 'string') { - extend(params, {uri: uri}) - } else { - extend(params, uri) + if (creditOperation) { + res.creditOperation = creditOperation; + } + } + }); + await this.findCombinations(result, options, allOperations); + await this.commitChanges(); + return result; } - params.callback = callback || params.callback - return params -} + async findCombinations(result, options, allOperations) { + log('debug', 'finding combinations'); + let found; -function request (uri, options, callback) { - if (typeof uri === 'undefined') { - throw new Error('undefined is not a valid uri or options object.') - } + do { + found = false; + const unlinkedBills = this.getUnlinkedBills(result); + log('debug', `findCombinations: There are ${unlinkedBills.length} unlinked bills`); + const billsGroups = this.groupBills(unlinkedBills); + log('debug', `findCombinations: Groups: ${billsGroups.length}`); + const combinations = flatten(billsGroups.map(billsGroup => this.generateBillsCombinations(billsGroup))); + log('debug', `Generated ${combinations.length} bills combinations`); + const combinedBills = combinations.map(combination => this.combineBills(...combination)); - var params = initParams(uri, options, callback) + for (const combinedBill of combinedBills) { + const debitOperation = await findDebitOperation(this.cozyClient, combinedBill, options, allOperations); - if (params.method === 'HEAD' && paramsHaveRequestBody(params)) { - throw new Error('HTTP HEAD requests MUST NOT include a request body.') - } + if (debitOperation) { + found = true; + log('debug', combinedBill, 'Matching bills combination'); + log('debug', debitOperation, 'Matching debit debitOperation'); + combinedBill.originalBills.forEach(async originalBill => { + const res = result[originalBill._id]; + res.debitOperation = debitOperation; - return new request.Request(params) -} + if (res.creditOperation && res.debitOperation) { + await this.addReimbursementToOperation(originalBill, debitOperation, res.creditOperation); + } + }); + break; + } + } + } while (found); -function verbFunc (verb) { - var method = verb.toUpperCase() - return function (uri, options, callback) { - var params = initParams(uri, options, callback) - params.method = method - return request(params, params.callback) + return result; } -} - -// define like this to please codeintel/intellisense IDEs -request.get = verbFunc('get') -request.head = verbFunc('head') -request.options = verbFunc('options') -request.post = verbFunc('post') -request.put = verbFunc('put') -request.patch = verbFunc('patch') -request.del = verbFunc('delete') -request['delete'] = verbFunc('delete') - -request.jar = function (store) { - return cookies.jar(store) -} - -request.cookie = function (str) { - return cookies.parse(str) -} -function wrapRequestMethod (method, options, requester, verb) { - return function (uri, opts, callback) { - var params = initParams(uri, opts, callback) + getUnlinkedBills(bills) { + const unlinkedBills = Object.values(bills).filter(bill => !bill.debitOperation).map(bill => bill.bill); + return unlinkedBills; + } - var target = {} - extend(true, target, options, params) + billCanBeGrouped(bill) { + return getBillDate(bill) && (bill.type === 'health_costs' || this.groupVendors.includes(bill.vendor)); + } - target.pool = params.pool || options.pool + groupBills(bills) { + const billsToGroup = bills.filter(bill => this.billCanBeGrouped(bill)); + const groups = groupBy(billsToGroup, bill => { + return [format(new Date(getBillDate(bill)), 'yyyy-MM-dd'), bill.vendor]; + }); + return Object.values(groups); + } - if (verb) { - target.method = verb.toUpperCase() - } + generateBillsCombinations(bills) { + const MIN_ITEMS_IN_COMBINATION = 2; + const combinations = []; - if (typeof requester === 'function') { - method = requester + for (let n = MIN_ITEMS_IN_COMBINATION; n <= bills.length; ++n) { + const combinationsN = geco.gen(bills.length, n, bills); + combinations.push(...combinationsN); } - return method(target, target.callback) + return combinations; } -} - -request.defaults = function (options, requester) { - var self = this - - options = options || {} - if (typeof options === 'function') { - requester = options - options = {} + combineBills(...bills) { + return { ...bills[0], + _id: ['combined', ...bills.map(bill => bill._id)].join(':'), + amount: sumBy(bills, bill => bill.amount), + originalAmount: sumBy(bills, bill => bill.originalAmount), + originalBills: bills + }; } - var defaults = wrapRequestMethod(self, options, requester) +} - var verbs = ['get', 'head', 'post', 'put', 'patch', 'del', 'delete'] - verbs.forEach(function (verb) { - defaults[verb] = wrapRequestMethod(self[verb], options, requester, verb) - }) +const jsonTee = filename => res => { + fs.writeFileSync(filename, JSON.stringify(res, null, 2)); + return res; +}; +/** + * Will soon move to a dedicated service. You should not use it. + * + * Finds links between bills and bank operations. + * + * @alias module:linkBankOperations + */ - defaults.cookie = wrapRequestMethod(self.cookie, options, requester) - defaults.jar = self.jar - defaults.defaults = self.defaults - return defaults -} -request.forever = function (agentOptions, optionsArg) { - var options = {} - if (optionsArg) { - extend(options, optionsArg) - } - if (agentOptions) { - options.agentOptions = agentOptions +const linkBankOperations = (bills, doctype, fields, options = {}) => { + // Use the custom bank identifier from user if any + if (fields.bank_identifier && fields.bank_identifier.length) { + options.identifiers = [fields.bank_identifier]; } - options.forever = true - return request.defaults(options) -} - -// Exports + const cozyClient = __webpack_require__(487); -module.exports = request -request.Request = __webpack_require__(1321) -request.initParams = initParams + const linker = new Linker(cozyClient); + const prom = linker.linkBillsToOperations(bills, options).catch(err => { + log('warn', err, 'Problem when linking operations'); + }); -// Backwards compatibility for request.debug -Object.defineProperty(request, 'debug', { - enumerable: true, - get: function () { - return request.Request.debug - }, - set: function (debug) { - request.Request.debug = debug + if (process.env.LINK_RESULTS_FILENAME) { + prom.then(jsonTee(process.env.LINK_RESULTS_FILENAME)); } -}) + return prom; +}; + +module.exports = linkBankOperations; +Object.assign(module.exports, { + Linker +}); /***/ }), -/* 1312 */ +/* 1426 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - +const { + operationsFilters +} = __webpack_require__(1427); -var tough = __webpack_require__(1313) +const { + findNeighboringOperations +} = __webpack_require__(1439); -var Cookie = tough.Cookie -var CookieJar = tough.CookieJar +const { + sortedOperations +} = __webpack_require__(1438); -exports.parse = function (str) { - if (str && str.uri) { - str = str.uri - } - if (typeof str !== 'string') { - throw new Error('The cookie function only accepts STRING as param') - } - return Cookie.parse(str, {loose: true}) -} +const findOperation = (cozyClient, bill, options, allOperations) => { + // By default, a bill is an expense. If it is not, it should be + // declared as a refund: isRefund=true. + if (options.credit && !bill.isRefund) return; + return findNeighboringOperations(cozyClient, bill, options, allOperations).then(operations => { + operations = operationsFilters(bill, operations, options); + operations = sortedOperations(bill, operations); + return operations[0]; + }); +}; -// Adapt the sometimes-Async api of tough.CookieJar to our requirements -function RequestJar (store) { - var self = this - self._jar = new CookieJar(store, {looseMode: true}) -} -RequestJar.prototype.setCookie = function (cookieOrStr, uri, options) { - var self = this - return self._jar.setCookieSync(cookieOrStr, uri, options || {}) -} -RequestJar.prototype.getCookieString = function (uri) { - var self = this - return self._jar.getCookieStringSync(uri) -} -RequestJar.prototype.getCookies = function (uri) { - var self = this - return self._jar.getCookiesSync(uri) -} +const findDebitOperation = findOperation; -exports.jar = function (store) { - return new RequestJar(store) -} +const findCreditOperation = (cozyClient, bill, options, allOperations) => { + const creditOptions = Object.assign({}, options, { + credit: true + }); + return findOperation(cozyClient, bill, creditOptions, allOperations); +}; +module.exports = { + findDebitOperation, + findCreditOperation +}; /***/ }), -/* 1313 */ +/* 1427 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; -/*! - * Copyright (c) 2015, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -var net = __webpack_require__(82); -var urlParse = __webpack_require__(83).parse; -var util = __webpack_require__(9); -var pubsuffix = __webpack_require__(1314); -var Store = __webpack_require__(1315).Store; -var MemoryCookieStore = __webpack_require__(1316).MemoryCookieStore; -var pathMatch = __webpack_require__(1318).pathMatch; -var VERSION = __webpack_require__(1319).version; +const includes = __webpack_require__(1428); -var punycode; -try { - punycode = __webpack_require__(86); -} catch(e) { - console.warn("tough-cookie: can't load punycode; won't use punycode for domain normalization"); -} +const some = __webpack_require__(1431); -// From RFC6265 S4.1.1 -// note that it excludes \x3B ";" -var COOKIE_OCTETS = /^[\x21\x23-\x2B\x2D-\x3A\x3C-\x5B\x5D-\x7E]+$/; +const sumBy = __webpack_require__(1433); -var CONTROL_CHARS = /[\x00-\x1F]/; +const isWithinInterval = __webpack_require__(1435); -// From Chromium // '\r', '\n' and '\0' should be treated as a terminator in -// the "relaxed" mode, see: -// https://github.com/ChromiumWebApps/chromium/blob/b3d3b4da8bb94c1b2e061600df106d590fda3620/net/cookies/parsed_cookie.cc#L60 -var TERMINATORS = ['\n', '\r', '\0']; +const { + getIdentifiers, + getDateRangeFromBill, + getAmountRangeFromBill +} = __webpack_require__(1438); // constants -// RFC6265 S4.1.1 defines path value as 'any CHAR except CTLs or ";"' -// Note ';' is \x3B -var PATH_VALUE = /[\x20-\x3A\x3C-\x7E]+/; -// date-time parsing constants (RFC6265 S5.1.1) +const HEALTH_VENDORS = ['Ameli', 'Harmonie', 'Malakoff Mederic', 'MGEN', 'Generali', 'ascoreSante', 'EoviMCD', 'Humanis', 'Alan', 'lamutuellegenerale']; // TODO: to import from each konnector -var DATE_DELIM = /[\x09\x20-\x2F\x3B-\x40\x5B-\x60\x7B-\x7E]/; +const HEALTH_EXPENSE_CAT = '400610'; +const HEALTH_INSURANCE_CAT = '400620'; +const UNCATEGORIZED_CAT_ID_OPERATION = '0'; // TODO: import it from cozy-bank +// helpers -var MONTH_TO_NUM = { - jan:0, feb:1, mar:2, apr:3, may:4, jun:5, - jul:6, aug:7, sep:8, oct:9, nov:10, dec:11 +const getCategoryId = o => { + return o.manualCategoryId || o.automaticCategoryId || UNCATEGORIZED_CAT_ID_OPERATION; }; -var NUM_TO_MONTH = [ - 'Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec' -]; -var NUM_TO_DAY = [ - 'Sun','Mon','Tue','Wed','Thu','Fri','Sat' -]; - -var MAX_TIME = 2147483647000; // 31-bit max -var MIN_TIME = 0; // 31-bit min -/* - * Parses a Natural number (i.e., non-negative integer) with either the - * <min>*<max>DIGIT ( non-digit *OCTET ) - * or - * <min>*<max>DIGIT - * grammar (RFC6265 S5.1.1). - * - * The "trailingOK" boolean controls if the grammar accepts a - * "( non-digit *OCTET )" trailer. - */ -function parseDigits(token, minDigits, maxDigits, trailingOK) { - var count = 0; - while (count < token.length) { - var c = token.charCodeAt(count); - // "non-digit = %x00-2F / %x3A-FF" - if (c <= 0x2F || c >= 0x3A) { - break; - } - count++; - } +const isHealthOperation = operation => { + const catId = getCategoryId(operation); - // constrain to a minimum and maximum number of digits. - if (count < minDigits || count > maxDigits) { - return null; + if (operation.amount < 0) { + return catId === HEALTH_EXPENSE_CAT; + } else { + return catId === HEALTH_EXPENSE_CAT || catId === HEALTH_INSURANCE_CAT; } +}; - if (!trailingOK && count != token.length) { - return null; - } +const isUncategorizedOperation = operation => { + const catId = getCategoryId(operation); + return catId == UNCATEGORIZED_CAT_ID_OPERATION; +}; - return parseInt(token.substr(0,count), 10); -} +const isHealthBill = bill => { + return includes(HEALTH_VENDORS, bill.vendor); +}; // filters -function parseTime(token) { - var parts = token.split(':'); - var result = [0,0,0]; - /* RF6256 S5.1.1: - * time = hms-time ( non-digit *OCTET ) - * hms-time = time-field ":" time-field ":" time-field - * time-field = 1*2DIGIT - */ +const filterByIdentifiers = identifiers => { + identifiers = identifiers.map(i => i.toLowerCase()); - if (parts.length !== 3) { - return null; - } + const identifierFilter = operation => { + const label = operation.label.toLowerCase(); + return some(identifiers, identifier => includes(label, identifier)); + }; - for (var i = 0; i < 3; i++) { - // "time-field" must be strictly "1*2DIGIT", HOWEVER, "hms-time" can be - // followed by "( non-digit *OCTET )" so therefore the last time-field can - // have a trailer - var trailingOK = (i == 2); - var num = parseDigits(parts[i], 1, 2, trailingOK); - if (num === null) { - return null; - } - result[i] = num; - } + return identifierFilter; +}; - return result; -} +const filterByDates = ({ + minDate, + maxDate +}) => { + const dateFilter = operation => { + return isWithinInterval(new Date(operation.date), { + start: new Date(minDate), + end: new Date(maxDate) + }); + }; -function parseMonth(token) { - token = String(token).substr(0,3).toLowerCase(); - var num = MONTH_TO_NUM[token]; - return num >= 0 ? num : null; -} + return dateFilter; +}; -/* - * RFC6265 S5.1.1 date parser (see RFC for full grammar) - */ -function parseDate(str) { - if (!str) { - return; - } +const filterByAmounts = ({ + minAmount, + maxAmount +}) => { + const amountFilter = operation => { + return operation.amount >= minAmount && operation.amount <= maxAmount; + }; - /* RFC6265 S5.1.1: - * 2. Process each date-token sequentially in the order the date-tokens - * appear in the cookie-date - */ - var tokens = str.split(DATE_DELIM); - if (!tokens) { - return; - } + return amountFilter; +}; - var hour = null; - var minute = null; - var second = null; - var dayOfMonth = null; - var month = null; - var year = null; +const filterByCategory = (bill, options = {}) => { + const isHealth = isHealthBill(bill); - for (var i=0; i<tokens.length; i++) { - var token = tokens[i].trim(); - if (!token.length) { - continue; + const categoryFilter = operation => { + if (options.allowUncategorized === true && isUncategorizedOperation(operation)) { + return true; } - var result; + return isHealth ? isHealthOperation(operation) : !isHealthOperation(operation); + }; - /* 2.1. If the found-time flag is not set and the token matches the time - * production, set the found-time flag and set the hour- value, - * minute-value, and second-value to the numbers denoted by the digits in - * the date-token, respectively. Skip the remaining sub-steps and continue - * to the next date-token. - */ - if (second === null) { - result = parseTime(token); - if (result) { - hour = result[0]; - minute = result[1]; - second = result[2]; - continue; - } - } + return categoryFilter; +}; +/** + * Check that the sum of the reimbursements + the amount of the bill is not + * greater that the amount of the operation + */ - /* 2.2. If the found-day-of-month flag is not set and the date-token matches - * the day-of-month production, set the found-day-of- month flag and set - * the day-of-month-value to the number denoted by the date-token. Skip - * the remaining sub-steps and continue to the next date-token. - */ - if (dayOfMonth === null) { - // "day-of-month = 1*2DIGIT ( non-digit *OCTET )" - result = parseDigits(token, 1, 2, true); - if (result !== null) { - dayOfMonth = result; - continue; - } - } - /* 2.3. If the found-month flag is not set and the date-token matches the - * month production, set the found-month flag and set the month-value to - * the month denoted by the date-token. Skip the remaining sub-steps and - * continue to the next date-token. - */ - if (month === null) { - result = parseMonth(token); - if (result !== null) { - month = result; - continue; - } - } +const filterByReimbursements = bill => { + const reimbursementFilter = operation => { + const sumReimbursements = sumBy(operation.reimbursements, 'amount'); + return sumReimbursements + bill.amount <= -operation.amount; + }; - /* 2.4. If the found-year flag is not set and the date-token matches the - * year production, set the found-year flag and set the year-value to the - * number denoted by the date-token. Skip the remaining sub-steps and - * continue to the next date-token. - */ - if (year === null) { - // "year = 2*4DIGIT ( non-digit *OCTET )" - result = parseDigits(token, 2, 4, true); - if (result !== null) { - year = result; - /* From S5.1.1: - * 3. If the year-value is greater than or equal to 70 and less - * than or equal to 99, increment the year-value by 1900. - * 4. If the year-value is greater than or equal to 0 and less - * than or equal to 69, increment the year-value by 2000. - */ - if (year >= 70 && year <= 99) { - year += 1900; - } else if (year >= 0 && year <= 69) { - year += 2000; - } + return reimbursementFilter; +}; // combine filters + + +const operationsFilters = (bill, operations, options) => { + const filterByConditions = filters => op => { + for (let f of filters) { + const res = f(op); + + if (!res) { + return false; } } - } - /* RFC 6265 S5.1.1 - * "5. Abort these steps and fail to parse the cookie-date if: - * * at least one of the found-day-of-month, found-month, found- - * year, or found-time flags is not set, - * * the day-of-month-value is less than 1 or greater than 31, - * * the year-value is less than 1601, - * * the hour-value is greater than 23, - * * the minute-value is greater than 59, or - * * the second-value is greater than 59. - * (Note that leap seconds cannot be represented in this syntax.)" - * - * So, in order as above: - */ - if ( - dayOfMonth === null || month === null || year === null || second === null || - dayOfMonth < 1 || dayOfMonth > 31 || - year < 1601 || - hour > 23 || - minute > 59 || - second > 59 - ) { - return; - } + return true; + }; - return new Date(Date.UTC(year, month, dayOfMonth, hour, minute, second)); -} + const fByDates = filterByDates(getDateRangeFromBill(bill, options)); + const fByAmounts = filterByAmounts(getAmountRangeFromBill(bill, options)); + const fByCategory = filterByCategory(bill, options); + const fByReimbursements = filterByReimbursements(bill, options); + const conditions = [fByDates, fByAmounts, fByCategory]; -function formatDate(date) { - var d = date.getUTCDate(); d = d >= 10 ? d : '0'+d; - var h = date.getUTCHours(); h = h >= 10 ? h : '0'+h; - var m = date.getUTCMinutes(); m = m >= 10 ? m : '0'+m; - var s = date.getUTCSeconds(); s = s >= 10 ? s : '0'+s; - return NUM_TO_DAY[date.getUTCDay()] + ', ' + - d+' '+ NUM_TO_MONTH[date.getUTCMonth()] +' '+ date.getUTCFullYear() +' '+ - h+':'+m+':'+s+' GMT'; -} + if (!options.credit) { + conditions.push(fByReimbursements); + } // We filters with identifiers when + // - we search a credit operation + // - or when is bill is in the health category -// S5.1.2 Canonicalized Host Names -function canonicalDomain(str) { - if (str == null) { - return null; - } - str = str.trim().replace(/^\./,''); // S4.1.2.3 & S5.2.3: ignore leading . - // convert to IDN if any non-ASCII characters - if (punycode && /[^\u0001-\u007f]/.test(str)) { - str = punycode.toASCII(str); + if (options.credit || !isHealthBill(bill)) { + const fbyIdentifiers = filterByIdentifiers(getIdentifiers(options)); + conditions.push(fbyIdentifiers); } - return str.toLowerCase(); -} + return operations.filter(filterByConditions(conditions)); +}; -// S5.1.3 Domain Matching -function domainMatch(str, domStr, canonicalize) { - if (str == null || domStr == null) { - return null; - } - if (canonicalize !== false) { - str = canonicalDomain(str); - domStr = canonicalDomain(domStr); - } +module.exports = { + filterByIdentifiers, + filterByDates, + filterByAmounts, + filterByCategory, + filterByReimbursements, + operationsFilters +}; - /* - * "The domain string and the string are identical. (Note that both the - * domain string and the string will have been canonicalized to lower case at - * this point)" - */ - if (str == domStr) { - return true; - } +/***/ }), +/* 1428 */ +/***/ (function(module, exports, __webpack_require__) { - /* "All of the following [three] conditions hold:" (order adjusted from the RFC) */ +var baseIndexOf = __webpack_require__(479), + isArrayLike = __webpack_require__(460), + isString = __webpack_require__(74), + toInteger = __webpack_require__(693), + values = __webpack_require__(1429); - /* "* The string is a host name (i.e., not an IP address)." */ - if (net.isIP(str)) { - return false; - } +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; - /* "* The domain string is a suffix of the string" */ - var idx = str.indexOf(domStr); - if (idx <= 0) { - return false; // it's a non-match (-1) or prefix (0) - } +/** + * Checks if `value` is in `collection`. If `collection` is a string, it's + * checked for a substring of `value`, otherwise + * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero) + * is used for equality comparisons. If `fromIndex` is negative, it's used as + * the offset from the end of `collection`. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object|string} collection The collection to inspect. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. + * @example + * + * _.includes([1, 2, 3], 1); + * // => true + * + * _.includes([1, 2, 3], 1, 2); + * // => false + * + * _.includes({ 'a': 1, 'b': 2 }, 1); + * // => true + * + * _.includes('abcd', 'bc'); + * // => true + */ +function includes(collection, value, fromIndex, guard) { + collection = isArrayLike(collection) ? collection : values(collection); + fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0; - // e.g "a.b.c".indexOf("b.c") === 2 - // 5 === 3+2 - if (str.length !== domStr.length + idx) { // it's not a suffix - return false; + var length = collection.length; + if (fromIndex < 0) { + fromIndex = nativeMax(length + fromIndex, 0); } + return isString(collection) + ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1) + : (!!length && baseIndexOf(collection, value, fromIndex) > -1); +} - /* "* The last character of the string that is not included in the domain - * string is a %x2E (".") character." */ - if (str.substr(idx-1,1) !== '.') { - return false; - } +module.exports = includes; - return true; -} +/***/ }), +/* 1429 */ +/***/ (function(module, exports, __webpack_require__) { -// RFC6265 S5.1.4 Paths and Path-Match +var baseValues = __webpack_require__(1430), + keys = __webpack_require__(443); -/* - * "The user agent MUST use an algorithm equivalent to the following algorithm - * to compute the default-path of a cookie:" +/** + * Creates an array of the own enumerable string keyed property values of `object`. * - * Assumption: the path (and not query part or absolute uri) is passed in. + * **Note:** Non-object values are coerced to objects. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the array of property values. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.values(new Foo); + * // => [1, 2] (iteration order is not guaranteed) + * + * _.values('hi'); + * // => ['h', 'i'] */ -function defaultPath(path) { - // "2. If the uri-path is empty or if the first character of the uri-path is not - // a %x2F ("/") character, output %x2F ("/") and skip the remaining steps. - if (!path || path.substr(0,1) !== "/") { - return "/"; - } +function values(object) { + return object == null ? [] : baseValues(object, keys(object)); +} - // "3. If the uri-path contains no more than one %x2F ("/") character, output - // %x2F ("/") and skip the remaining step." - if (path === "/") { - return path; - } +module.exports = values; - var rightSlash = path.lastIndexOf("/"); - if (rightSlash === 0) { - return "/"; - } - // "4. Output the characters of the uri-path from the first character up to, - // but not including, the right-most %x2F ("/")." - return path.slice(0, rightSlash); -} +/***/ }), +/* 1430 */ +/***/ (function(module, exports, __webpack_require__) { -function trimTerminator(str) { - for (var t = 0; t < TERMINATORS.length; t++) { - var terminatorIdx = str.indexOf(TERMINATORS[t]); - if (terminatorIdx !== -1) { - str = str.substr(0,terminatorIdx); - } - } +var arrayMap = __webpack_require__(412); - return str; +/** + * The base implementation of `_.values` and `_.valuesIn` which creates an + * array of `object` property values corresponding to the property names + * of `props`. + * + * @private + * @param {Object} object The object to query. + * @param {Array} props The property names to get values for. + * @returns {Object} Returns the array of property values. + */ +function baseValues(object, props) { + return arrayMap(props, function(key) { + return object[key]; + }); } -function parseCookiePair(cookiePair, looseMode) { - cookiePair = trimTerminator(cookiePair); +module.exports = baseValues; - var firstEq = cookiePair.indexOf('='); - if (looseMode) { - if (firstEq === 0) { // '=' is immediately at start - cookiePair = cookiePair.substr(1); - firstEq = cookiePair.indexOf('='); // might still need to split on '=' - } - } else { // non-loose mode - if (firstEq <= 0) { // no '=' or is at start - return; // needs to have non-empty "cookie-name" - } - } - var cookieName, cookieValue; - if (firstEq <= 0) { - cookieName = ""; - cookieValue = cookiePair.trim(); - } else { - cookieName = cookiePair.substr(0, firstEq).trim(); - cookieValue = cookiePair.substr(firstEq+1).trim(); - } +/***/ }), +/* 1431 */ +/***/ (function(module, exports, __webpack_require__) { - if (CONTROL_CHARS.test(cookieName) || CONTROL_CHARS.test(cookieValue)) { - return; - } +var arraySome = __webpack_require__(430), + baseIteratee = __webpack_require__(415), + baseSome = __webpack_require__(1432), + isArray = __webpack_require__(75), + isIterateeCall = __webpack_require__(763); - var c = new Cookie(); - c.key = cookieName; - c.value = cookieValue; - return c; +/** + * Checks if `predicate` returns truthy for **any** element of `collection`. + * Iteration is stopped once `predicate` returns truthy. The predicate is + * invoked with three arguments: (value, index|key, collection). + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} [predicate=_.identity] The function invoked per iteration. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + * @example + * + * _.some([null, 0, 'yes', false], Boolean); + * // => true + * + * var users = [ + * { 'user': 'barney', 'active': true }, + * { 'user': 'fred', 'active': false } + * ]; + * + * // The `_.matches` iteratee shorthand. + * _.some(users, { 'user': 'barney', 'active': false }); + * // => false + * + * // The `_.matchesProperty` iteratee shorthand. + * _.some(users, ['active', false]); + * // => true + * + * // The `_.property` iteratee shorthand. + * _.some(users, 'active'); + * // => true + */ +function some(collection, predicate, guard) { + var func = isArray(collection) ? arraySome : baseSome; + if (guard && isIterateeCall(collection, predicate, guard)) { + predicate = undefined; + } + return func(collection, baseIteratee(predicate, 3)); } -function parse(str, options) { - if (!options || typeof options !== 'object') { - options = {}; - } - str = str.trim(); +module.exports = some; - // We use a regex to parse the "name-value-pair" part of S5.2 - var firstSemi = str.indexOf(';'); // S5.2 step 1 - var cookiePair = (firstSemi === -1) ? str : str.substr(0, firstSemi); - var c = parseCookiePair(cookiePair, !!options.loose); - if (!c) { - return; - } - if (firstSemi === -1) { - return c; - } +/***/ }), +/* 1432 */ +/***/ (function(module, exports, __webpack_require__) { - // S5.2.3 "unparsed-attributes consist of the remainder of the set-cookie-string - // (including the %x3B (";") in question)." plus later on in the same section - // "discard the first ";" and trim". - var unparsed = str.slice(firstSemi + 1).trim(); +var baseEach = __webpack_require__(657); - // "If the unparsed-attributes string is empty, skip the rest of these - // steps." - if (unparsed.length === 0) { - return c; - } +/** + * The base implementation of `_.some` without support for iteratee shorthands. + * + * @private + * @param {Array|Object} collection The collection to iterate over. + * @param {Function} predicate The function invoked per iteration. + * @returns {boolean} Returns `true` if any element passes the predicate check, + * else `false`. + */ +function baseSome(collection, predicate) { + var result; - /* - * S5.2 says that when looping over the items "[p]rocess the attribute-name - * and attribute-value according to the requirements in the following - * subsections" for every item. Plus, for many of the individual attributes - * in S5.3 it says to use the "attribute-value of the last attribute in the - * cookie-attribute-list". Therefore, in this implementation, we overwrite - * the previous value. - */ - var cookie_avs = unparsed.split(';'); - while (cookie_avs.length) { - var av = cookie_avs.shift().trim(); - if (av.length === 0) { // happens if ";;" appears - continue; - } - var av_sep = av.indexOf('='); - var av_key, av_value; + baseEach(collection, function(value, index, collection) { + result = predicate(value, index, collection); + return !result; + }); + return !!result; +} - if (av_sep === -1) { - av_key = av; - av_value = null; - } else { - av_key = av.substr(0,av_sep); - av_value = av.substr(av_sep+1); - } +module.exports = baseSome; - av_key = av_key.trim().toLowerCase(); - if (av_value) { - av_value = av_value.trim(); - } +/***/ }), +/* 1433 */ +/***/ (function(module, exports, __webpack_require__) { - switch(av_key) { - case 'expires': // S5.2.1 - if (av_value) { - var exp = parseDate(av_value); - // "If the attribute-value failed to parse as a cookie date, ignore the - // cookie-av." - if (exp) { - // over and underflow not realistically a concern: V8's getTime() seems to - // store something larger than a 32-bit time_t (even with 32-bit node) - c.expires = exp; - } - } - break; +var baseIteratee = __webpack_require__(415), + baseSum = __webpack_require__(1434); - case 'max-age': // S5.2.2 - if (av_value) { - // "If the first character of the attribute-value is not a DIGIT or a "-" - // character ...[or]... If the remainder of attribute-value contains a - // non-DIGIT character, ignore the cookie-av." - if (/^-?[0-9]+$/.test(av_value)) { - var delta = parseInt(av_value, 10); - // "If delta-seconds is less than or equal to zero (0), let expiry-time - // be the earliest representable date and time." - c.setMaxAge(delta); - } - } - break; +/** + * This method is like `_.sum` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the value to be summed. + * The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Math + * @param {Array} array The array to iterate over. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the sum. + * @example + * + * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]; + * + * _.sumBy(objects, function(o) { return o.n; }); + * // => 20 + * + * // The `_.property` iteratee shorthand. + * _.sumBy(objects, 'n'); + * // => 20 + */ +function sumBy(array, iteratee) { + return (array && array.length) + ? baseSum(array, baseIteratee(iteratee, 2)) + : 0; +} - case 'domain': // S5.2.3 - // "If the attribute-value is empty, the behavior is undefined. However, - // the user agent SHOULD ignore the cookie-av entirely." - if (av_value) { - // S5.2.3 "Let cookie-domain be the attribute-value without the leading %x2E - // (".") character." - var domain = av_value.trim().replace(/^\./, ''); - if (domain) { - // "Convert the cookie-domain to lower case." - c.domain = domain.toLowerCase(); - } - } - break; +module.exports = sumBy; - case 'path': // S5.2.4 - /* - * "If the attribute-value is empty or if the first character of the - * attribute-value is not %x2F ("/"): - * Let cookie-path be the default-path. - * Otherwise: - * Let cookie-path be the attribute-value." - * - * We'll represent the default-path as null since it depends on the - * context of the parsing. - */ - c.path = av_value && av_value[0] === "/" ? av_value : null; - break; - case 'secure': // S5.2.5 - /* - * "If the attribute-name case-insensitively matches the string "Secure", - * the user agent MUST append an attribute to the cookie-attribute-list - * with an attribute-name of Secure and an empty attribute-value." - */ - c.secure = true; - break; +/***/ }), +/* 1434 */ +/***/ (function(module, exports) { - case 'httponly': // S5.2.6 -- effectively the same as 'secure' - c.httpOnly = true; - break; +/** + * The base implementation of `_.sum` and `_.sumBy` without support for + * iteratee shorthands. + * + * @private + * @param {Array} array The array to iterate over. + * @param {Function} iteratee The function invoked per iteration. + * @returns {number} Returns the sum. + */ +function baseSum(array, iteratee) { + var result, + index = -1, + length = array.length; - default: - c.extensions = c.extensions || []; - c.extensions.push(av); - break; + while (++index < length) { + var current = iteratee(array[index]); + if (current !== undefined) { + result = result === undefined ? current : (result + current); } } - - return c; + return result; } -// avoid the V8 deoptimization monster! -function jsonParse(str) { - var obj; - try { - obj = JSON.parse(str); - } catch (e) { - return e; - } - return obj; -} +module.exports = baseSum; -function fromJSON(str) { - if (!str) { - return null; - } - var obj; - if (typeof str === 'string') { - obj = jsonParse(str); - if (obj instanceof Error) { - return null; - } - } else { - // assume it's an Object - obj = str; - } +/***/ }), +/* 1435 */ +/***/ (function(module, exports, __webpack_require__) { - var c = new Cookie(); - for (var i=0; i<Cookie.serializableProperties.length; i++) { - var prop = Cookie.serializableProperties[i]; - if (obj[prop] === undefined || - obj[prop] === Cookie.prototype[prop]) - { - continue; // leave as prototype default - } +"use strict"; - if (prop === 'expires' || - prop === 'creation' || - prop === 'lastAccessed') - { - if (obj[prop] === null) { - c[prop] = null; - } else { - c[prop] = obj[prop] == "Infinity" ? - "Infinity" : new Date(obj[prop]); - } - } else { - c[prop] = obj[prop]; - } - } - return c; -} +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = isWithinInterval; -/* Section 5.4 part 2: - * "* Cookies with longer paths are listed before cookies with - * shorter paths. +var _index = _interopRequireDefault(__webpack_require__(1436)); + +var _index2 = _interopRequireDefault(__webpack_require__(1437)); + +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + +/** + * @name isWithinInterval + * @category Interval Helpers + * @summary Is the given date within the interval? * - * * Among cookies that have equal-length path fields, cookies with - * earlier creation-times are listed before cookies with later - * creation-times." + * @description + * Is the given date within the interval? (Including start and end.) + * + * ### v2.0.0 breaking changes: + * + * - [Changes that are common for the whole library](https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#Common-Changes). + * + * - The function was renamed from `isWithinRange` to `isWithinInterval`. + * This change was made to mirror the use of the word "interval" in standard ISO 8601:2004 terminology: + * + * ``` + * 2.1.3 + * time interval + * part of the time axis limited by two instants + * ``` + * + * Also, this function now accepts an object with `start` and `end` properties + * instead of two arguments as an interval. + * This function now throws `RangeError` if the start of the interval is after its end + * or if any date in the interval is `Invalid Date`. + * + * ```javascript + * // Before v2.0.0 + * + * isWithinRange( + * new Date(2014, 0, 3), + * new Date(2014, 0, 1), new Date(2014, 0, 7) + * ) + * + * // v2.0.0 onward + * + * isWithinInterval( + * new Date(2014, 0, 3), + * { start: new Date(2014, 0, 1), end: new Date(2014, 0, 7) } + * ) + * ``` + * + * @param {Date|Number} date - the date to check + * @param {Interval} interval - the interval to check + * @returns {Boolean} the date is within the interval + * @throws {TypeError} 2 arguments required + * @throws {RangeError} The start of an interval cannot be after its end + * @throws {RangeError} Date in interval cannot be `Invalid Date` + * + * @example + * // For the date within the interval: + * isWithinInterval(new Date(2014, 0, 3), { + * start: new Date(2014, 0, 1), + * end: new Date(2014, 0, 7) + * }) + * //=> true + * + * @example + * // For the date outside of the interval: + * isWithinInterval(new Date(2014, 0, 10), { + * start: new Date(2014, 0, 1), + * end: new Date(2014, 0, 7) + * }) + * //=> false + * + * @example + * // For date equal to interval start: + * isWithinInterval(date, { start, end: date }) // => true + * + * @example + * // For date equal to interval end: + * isWithinInterval(date, { start: date, end }) // => true */ +function isWithinInterval(dirtyDate, dirtyInterval) { + (0, _index2.default)(2, arguments); + var interval = dirtyInterval || {}; + var time = (0, _index.default)(dirtyDate).getTime(); + var startTime = (0, _index.default)(interval.start).getTime(); + var endTime = (0, _index.default)(interval.end).getTime(); // Throw an exception if start date is after end date or if any date is `Invalid Date` -function cookieCompare(a,b) { - var cmp = 0; - - // descending for length: b CMP a - var aPathLen = a.path ? a.path.length : 0; - var bPathLen = b.path ? b.path.length : 0; - cmp = bPathLen - aPathLen; - if (cmp !== 0) { - return cmp; + if (!(startTime <= endTime)) { + throw new RangeError('Invalid interval'); } - // ascending for time: a CMP b - var aTime = a.creation ? a.creation.getTime() : MAX_TIME; - var bTime = b.creation ? b.creation.getTime() : MAX_TIME; - cmp = aTime - bTime; - if (cmp !== 0) { - return cmp; - } + return time >= startTime && time <= endTime; +} - // break ties for the same millisecond (precision of JavaScript's clock) - cmp = a.creationIndex - b.creationIndex; +module.exports = exports.default; - return cmp; -} +/***/ }), +/* 1436 */ +/***/ (function(module, exports, __webpack_require__) { -// Gives the permutation of all possible pathMatch()es of a given path. The -// array is in longest-to-shortest order. Handy for indexing. -function permutePath(path) { - if (path === '/') { - return ['/']; - } - if (path.lastIndexOf('/') === path.length-1) { - path = path.substr(0,path.length-1); - } - var permutations = [path]; - while (path.length > 1) { - var lindex = path.lastIndexOf('/'); - if (lindex === 0) { - break; - } - path = path.substr(0,lindex); - permutations.push(path); - } - permutations.push('/'); - return permutations; -} +"use strict"; -function getCookieContext(url) { - if (url instanceof Object) { - return url; - } - // NOTE: decodeURI will throw on malformed URIs (see GH-32). - // Therefore, we will just skip decoding for such URIs. - try { - url = decodeURI(url); - } - catch(err) { - // Silently swallow error - } - return urlParse(url); -} +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = toDate; -function Cookie(options) { - options = options || {}; +var _index = _interopRequireDefault(__webpack_require__(1437)); - Object.keys(options).forEach(function(prop) { - if (Cookie.prototype.hasOwnProperty(prop) && - Cookie.prototype[prop] !== options[prop] && - prop.substr(0,1) !== '_') - { - this[prop] = options[prop]; - } - }, this); +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - this.creation = this.creation || new Date(); +/** + * @name toDate + * @category Common Helpers + * @summary Convert the given argument to an instance of Date. + * + * @description + * Convert the given argument to an instance of Date. + * + * If the argument is an instance of Date, the function returns its clone. + * + * If the argument is a number, it is treated as a timestamp. + * + * If the argument is none of the above, the function returns Invalid Date. + * + * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`. + * + * @param {Date|Number} argument - the value to convert + * @returns {Date} the parsed date in the local time zone + * @throws {TypeError} 1 argument required + * + * @example + * // Clone the date: + * const result = toDate(new Date(2014, 1, 11, 11, 30, 30)) + * //=> Tue Feb 11 2014 11:30:30 + * + * @example + * // Convert the timestamp to date: + * const result = toDate(1392098430000) + * //=> Tue Feb 11 2014 11:30:30 + */ +function toDate(argument) { + (0, _index.default)(1, arguments); + var argStr = Object.prototype.toString.call(argument); // Clone the date - // used to break creation ties in cookieCompare(): - Object.defineProperty(this, 'creationIndex', { - configurable: false, - enumerable: false, // important for assert.deepEqual checks - writable: true, - value: ++Cookie.cookiesCreated - }); -} + if (argument instanceof Date || typeof argument === 'object' && argStr === '[object Date]') { + // Prevent the date to lose the milliseconds when passed to new Date() in IE10 + return new Date(argument.getTime()); + } else if (typeof argument === 'number' || argStr === '[object Number]') { + return new Date(argument); + } else { + if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') { + // eslint-disable-next-line no-console + console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://git.io/fjule"); // eslint-disable-next-line no-console -Cookie.cookiesCreated = 0; // incremented each time a cookie is created + console.warn(new Error().stack); + } -Cookie.parse = parse; -Cookie.fromJSON = fromJSON; + return new Date(NaN); + } +} -Cookie.prototype.key = ""; -Cookie.prototype.value = ""; +module.exports = exports.default; -// the order in which the RFC has them: -Cookie.prototype.expires = "Infinity"; // coerces to literal Infinity -Cookie.prototype.maxAge = null; // takes precedence over expires for TTL -Cookie.prototype.domain = null; -Cookie.prototype.path = null; -Cookie.prototype.secure = false; -Cookie.prototype.httpOnly = false; -Cookie.prototype.extensions = null; +/***/ }), +/* 1437 */ +/***/ (function(module, exports, __webpack_require__) { -// set by the CookieJar: -Cookie.prototype.hostOnly = null; // boolean when set -Cookie.prototype.pathIsDefault = null; // boolean when set -Cookie.prototype.creation = null; // Date when set; defaulted by Cookie.parse -Cookie.prototype.lastAccessed = null; // Date when set -Object.defineProperty(Cookie.prototype, 'creationIndex', { - configurable: true, - enumerable: false, - writable: true, - value: 0 -}); +"use strict"; -Cookie.serializableProperties = Object.keys(Cookie.prototype) - .filter(function(prop) { - return !( - Cookie.prototype[prop] instanceof Function || - prop === 'creationIndex' || - prop.substr(0,1) === '_' - ); - }); -Cookie.prototype.inspect = function inspect() { - var now = Date.now(); - return 'Cookie="'+this.toString() + - '; hostOnly='+(this.hostOnly != null ? this.hostOnly : '?') + - '; aAge='+(this.lastAccessed ? (now-this.lastAccessed.getTime())+'ms' : '?') + - '; cAge='+(this.creation ? (now-this.creation.getTime())+'ms' : '?') + - '"'; -}; +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.default = requiredArgs; -// Use the new custom inspection symbol to add the custom inspect function if -// available. -if (util.inspect.custom) { - Cookie.prototype[util.inspect.custom] = Cookie.prototype.inspect; +function requiredArgs(required, args) { + if (args.length < required) { + throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present'); + } } -Cookie.prototype.toJSON = function() { - var obj = {}; +module.exports = exports.default; - var props = Cookie.serializableProperties; - for (var i=0; i<props.length; i++) { - var prop = props[i]; - if (this[prop] === Cookie.prototype[prop]) { - continue; // leave as prototype default - } +/***/ }), +/* 1438 */ +/***/ (function(module, exports, __webpack_require__) { - if (prop === 'expires' || - prop === 'creation' || - prop === 'lastAccessed') - { - if (this[prop] === null) { - obj[prop] = null; - } else { - obj[prop] = this[prop] == "Infinity" ? // intentionally not === - "Infinity" : this[prop].toISOString(); - } - } else if (prop === 'maxAge') { - if (this[prop] !== null) { - // again, intentionally not === - obj[prop] = (this[prop] == Infinity || this[prop] == -Infinity) ? - this[prop].toString() : this[prop]; - } - } else { - if (this[prop] !== Cookie.prototype[prop]) { - obj[prop] = this[prop]; - } - } - } +const sortBy = __webpack_require__(839); - return obj; +const { + addDays, + subDays, + differenceInDays +} = __webpack_require__(897); + +const getOperationAmountFromBill = (bill, options) => { + const searchingCredit = options && options.credit; + return searchingCredit ? bill.groupAmount || bill.amount : -(bill.originalAmount || bill.amount); }; -Cookie.prototype.clone = function() { - return fromJSON(this.toJSON()); +const getOperationDateFromBill = (bill, options) => { + const isCredit = options && options.credit; + const date = isCredit ? bill.date : bill.originalDate || bill.date; + return date ? new Date(date) : new Date(); }; -Cookie.prototype.validate = function validate() { - if (!COOKIE_OCTETS.test(this.value)) { - return false; - } - if (this.expires != Infinity && !(this.expires instanceof Date) && !parseDate(this.expires)) { - return false; - } - if (this.maxAge != null && this.maxAge <= 0) { - return false; // "Max-Age=" non-zero-digit *DIGIT - } - if (this.path != null && !PATH_VALUE.test(this.path)) { - return false; - } +const getIdentifiers = options => options.identifiers; - var cdomain = this.cdomain(); - if (cdomain) { - if (cdomain.match(/\.$/)) { - return false; // S4.1.2.3 suggests that this is bad. domainMatch() tests confirm this - } - var suffix = pubsuffix.getPublicSuffix(cdomain); - if (suffix == null) { // it's a public suffix - return false; - } - } - return true; +const getDateRangeFromBill = (bill, options) => { + const date = getOperationDateFromBill(bill, options); + return { + minDate: subDays(new Date(date), options.pastWindow), + maxDate: addDays(new Date(date), options.futureWindow) + }; }; -Cookie.prototype.setExpires = function setExpires(exp) { - if (exp instanceof Date) { - this.expires = exp; - } else { - this.expires = parseDate(exp) || "Infinity"; - } +const getAmountRangeFromBill = (bill, options) => { + const amount = getOperationAmountFromBill(bill, options); + return { + minAmount: amount - options.minAmountDelta, + maxAmount: amount + options.maxAmountDelta + }; }; -Cookie.prototype.setMaxAge = function setMaxAge(age) { - if (age === Infinity || age === -Infinity) { - this.maxAge = age.toString(); // so JSON.stringify() works - } else { - this.maxAge = age; - } +const getTotalReimbursements = operation => { + if (!operation.reimbursements) return 0; + return operation.reimbursements.reduce((s, r) => s + r.amount, 0); +}; // when we want to match an invoice with an operation according criteria, +// it is possible that several operations are returned to us. +// So we want to find the bill that comes closest. +// This function will sort this list + + +const sortedOperations = (bill, operations) => { + const buildSortFunction = bill => { + // it's not possible to sort with 2 parameters as the same time + // Date is more important so it have a biggest weight, + // but this value is random. + const dateWeight = 0.7; + const amountWeight = 1 - dateWeight; + const opDate = getOperationDateFromBill(bill); + const opAmount = getOperationAmountFromBill(bill); + return operation => { + const dateDiff = Math.abs(differenceInDays(new Date(opDate), new Date(operation.date))); + const amountDiff = Math.abs(opAmount - operation.amount); + return dateWeight * dateDiff + amountWeight * amountDiff; + }; + }; + + return sortBy(operations, buildSortFunction(bill)); }; -// gives Cookie header format -Cookie.prototype.cookieString = function cookieString() { - var val = this.value; - if (val == null) { - val = ''; - } - if (this.key === '') { - return val; - } - return this.key+'='+val; +module.exports = { + getOperationAmountFromBill, + getOperationDateFromBill, + getIdentifiers, + getDateRangeFromBill, + getAmountRangeFromBill, + getTotalReimbursements, + sortedOperations }; -// gives Set-Cookie header format -Cookie.prototype.toString = function toString() { - var str = this.cookieString(); +/***/ }), +/* 1439 */ +/***/ (function(module, exports, __webpack_require__) { - if (this.expires != Infinity) { - if (this.expires instanceof Date) { - str += '; Expires='+formatDate(this.expires); - } else { - str += '; Expires='+this.expires; - } - } +const { + getDateRangeFromBill, + getAmountRangeFromBill +} = __webpack_require__(1438); // cozy-stack limit to 100 elements max - if (this.maxAge != null && this.maxAge != Infinity) { - str += '; Max-Age='+this.maxAge; - } - if (this.domain && !this.hostOnly) { - str += '; Domain='+this.domain; - } - if (this.path) { - str += '; Path='+this.path; - } +const COZY_STACK_QUERY_LIMIT = 100; // Get the operations corresponding to the date interval +// around the date of the bill - if (this.secure) { - str += '; Secure'; - } - if (this.httpOnly) { - str += '; HttpOnly'; - } - if (this.extensions) { - this.extensions.forEach(function(ext) { - str += '; '+ext; - }); - } +const createDateSelector = (bill, options) => { + const { + minDate, + maxDate + } = getDateRangeFromBill(bill, options); + return { + $gt: minDate.toISOString(), + $lt: maxDate.toISOString() + }; +}; // Get the operations corresponding to the date interval +// around the amount of the bill - return str; + +const createAmountSelector = (bill, options) => { + const { + minAmount, + maxAmount + } = getAmountRangeFromBill(bill, options); + return { + $gt: minAmount, + $lt: maxAmount + }; }; -// TTL() partially replaces the "expiry-time" parts of S5.3 step 3 (setCookie() -// elsewhere) -// S5.3 says to give the "latest representable date" for which we use Infinity -// For "expired" we use 0 -Cookie.prototype.TTL = function TTL(now) { - /* RFC6265 S4.1.2.2 If a cookie has both the Max-Age and the Expires - * attribute, the Max-Age attribute has precedence and controls the - * expiration date of the cookie. - * (Concurs with S5.3 step 3) - */ - if (this.maxAge != null) { - return this.maxAge<=0 ? 0 : this.maxAge*1000; +const getQueryOptions = (bill, options, ids) => { + const queryOptions = { + selector: { + date: createDateSelector(bill, options), + amount: createAmountSelector(bill, options) + }, + sort: [{ + date: 'desc' + }, { + amount: 'desc' + }], + COZY_STACK_QUERY_LIMIT + }; + + if (ids.length > 0) { + queryOptions.skip = ids.length; } - var expires = this.expires; - if (expires != Infinity) { - if (!(expires instanceof Date)) { - expires = parseDate(expires) || Infinity; - } + return queryOptions; +}; - if (expires == Infinity) { - return Infinity; +const and = conditions => obj => { + for (let c of conditions) { + if (!c(obj)) { + return false; } - - return expires.getTime() - (now || Date.now()); } - return Infinity; + return true; }; -// expiryTime() replaces the "expiry-time" parts of S5.3 step 3 (setCookie() -// elsewhere) -Cookie.prototype.expiryTime = function expiryTime(now) { - if (this.maxAge != null) { - var relativeTo = now || this.creation || new Date(); - var age = (this.maxAge <= 0) ? -Infinity : this.maxAge*1000; - return relativeTo.getTime() + age; - } +const findByMangoQuerySimple = (docs, query) => { + const selector = query.selector; + const filters = Object.keys(selector).map(attr => doc => { + const attrSel = selector[attr]; + const conditions = Object.keys(attrSel).map($operator => doc => { + const val = doc[attr]; + const selValue = attrSel[$operator]; - if (this.expires == Infinity) { - return Infinity; - } - return this.expires.getTime(); + if ($operator == '$gt') { + return val > selValue; + } else if ($operator == '$lt') { + return val < selValue; + } else { + throw new Error(`Unknown operator ${$operator}`); + } + }); + return and(conditions)(doc); + }); + return docs.filter(and(filters)); }; -// expiryDate() replaces the "expiry-time" parts of S5.3 step 3 (setCookie() -// elsewhere), except it returns a Date -Cookie.prototype.expiryDate = function expiryDate(now) { - var millisec = this.expiryTime(now); - if (millisec == Infinity) { - return new Date(MAX_TIME); - } else if (millisec == -Infinity) { - return new Date(MIN_TIME); - } else { - return new Date(millisec); - } +const findNeighboringOperations = async (cozyClient, bill, options, allOperations) => { + const queryOptions = getQueryOptions(bill, options, []); + const neighboringOperations = findByMangoQuerySimple(allOperations, queryOptions); + return neighboringOperations; }; -// This replaces the "persistent-flag" parts of S5.3 step 3 -Cookie.prototype.isPersistent = function isPersistent() { - return (this.maxAge != null || this.expires != Infinity); +module.exports = { + findByMangoQuerySimple, + findNeighboringOperations }; -// Mostly S5.1.2 and S5.2.3: -Cookie.prototype.cdomain = -Cookie.prototype.canonicalizedDomain = function canonicalizedDomain() { - if (this.domain == null) { - return null; - } - return canonicalDomain(this.domain); -}; +/***/ }), +/* 1440 */ +/***/ (function(module, exports, __webpack_require__) { -function CookieJar(store, options) { - if (typeof options === "boolean") { - options = {rejectPublicSuffixes: options}; - } else if (options == null) { - options = {}; - } - if (options.rejectPublicSuffixes != null) { - this.rejectPublicSuffixes = options.rejectPublicSuffixes; - } - if (options.looseMode != null) { - this.enableLooseMode = options.looseMode; - } +var baseRest = __webpack_require__(647), + eq = __webpack_require__(399), + isIterateeCall = __webpack_require__(763), + keysIn = __webpack_require__(576); - if (!store) { - store = new MemoryCookieStore(); - } - this.store = store; -} -CookieJar.prototype.store = null; -CookieJar.prototype.rejectPublicSuffixes = true; -CookieJar.prototype.enableLooseMode = false; -var CAN_BE_SYNC = []; +/** Used for built-in method references. */ +var objectProto = Object.prototype; -CAN_BE_SYNC.push('setCookie'); -CookieJar.prototype.setCookie = function(cookie, url, options, cb) { - var err; - var context = getCookieContext(url); - if (options instanceof Function) { - cb = options; - options = {}; - } +/** Used to check objects for own properties. */ +var hasOwnProperty = objectProto.hasOwnProperty; - var host = canonicalDomain(context.hostname); - var loose = this.enableLooseMode; - if (options.loose != null) { - loose = options.loose; - } +/** + * Assigns own and inherited enumerable string keyed properties of source + * objects to the destination object for all destination properties that + * resolve to `undefined`. Source objects are applied from left to right. + * Once a property is set, additional values of the same property are ignored. + * + * **Note:** This method mutates `object`. + * + * @static + * @since 0.1.0 + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @see _.defaultsDeep + * @example + * + * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ +var defaults = baseRest(function(object, sources) { + object = Object(object); - // S5.3 step 1 - if (!(cookie instanceof Cookie)) { - cookie = Cookie.parse(cookie, { loose: loose }); - } - if (!cookie) { - err = new Error("Cookie failed to parse"); - return cb(options.ignoreError ? null : err); - } + var index = -1; + var length = sources.length; + var guard = length > 2 ? sources[2] : undefined; - // S5.3 step 2 - var now = options.now || new Date(); // will assign later to save effort in the face of errors + if (guard && isIterateeCall(sources[0], sources[1], guard)) { + length = 1; + } - // S5.3 step 3: NOOP; persistent-flag and expiry-time is handled by getCookie() + while (++index < length) { + var source = sources[index]; + var props = keysIn(source); + var propsIndex = -1; + var propsLength = props.length; - // S5.3 step 4: NOOP; domain is null by default + while (++propsIndex < propsLength) { + var key = props[propsIndex]; + var value = object[key]; - // S5.3 step 5: public suffixes - if (this.rejectPublicSuffixes && cookie.domain) { - var suffix = pubsuffix.getPublicSuffix(cookie.cdomain()); - if (suffix == null) { // e.g. "com" - err = new Error("Cookie has domain set to a public suffix"); - return cb(options.ignoreError ? null : err); + if (value === undefined || + (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) { + object[key] = source[key]; + } } } - // S5.3 step 6: - if (cookie.domain) { - if (!domainMatch(host, cookie.cdomain(), false)) { - err = new Error("Cookie not in this host's domain. Cookie:"+cookie.cdomain()+" Request:"+host); - return cb(options.ignoreError ? null : err); - } + return object; +}); - if (cookie.hostOnly == null) { // don't reset if already set - cookie.hostOnly = false; - } +module.exports = defaults; - } else { - cookie.hostOnly = true; - cookie.domain = host; - } - //S5.2.4 If the attribute-value is empty or if the first character of the - //attribute-value is not %x2F ("/"): - //Let cookie-path be the default-path. - if (!cookie.path || cookie.path[0] !== '/') { - cookie.path = defaultPath(context.pathname); - cookie.pathIsDefault = true; - } +/***/ }), +/* 1441 */ +/***/ (function(module, exports, __webpack_require__) { - // S5.3 step 8: NOOP; secure attribute - // S5.3 step 9: NOOP; httpOnly attribute +module.exports = __webpack_require__( 1442 ).Geco; - // S5.3 step 10 - if (options.http === false && cookie.httpOnly) { - err = new Error("Cookie is HttpOnly and this isn't an HTTP API"); - return cb(options.ignoreError ? null : err); - } - var store = this.store; +/***/ }), +/* 1442 */ +/***/ (function(module, exports, __webpack_require__) { - if (!store.updateCookie) { - store.updateCookie = function(oldCookie, newCookie, cb) { - this.putCookie(newCookie, cb); - }; - } +/* + * Geco, a CAT (Constant Amortized Time) recursive generator* + * for k-combinations, chosen from a given set S of n elements, + * with and without replacement. + * + * https://en.wikipedia.org/wiki/Lexicographical_order#Colexicographic_order + * + * Copyright(c) 2018-present Guglielmo Ferri <44gatti@gmail.com> + * MIT Licensed + */ - function withCookie(err, oldCookie) { - if (err) { - return cb(err); - } +exports.Geco = Object.assign( __webpack_require__( 1443 ), __webpack_require__( 1446 ) ); - var next = function(err) { - if (err) { - return cb(err); - } else { - cb(null, cookie); - } - }; - if (oldCookie) { - // S5.3 step 11 - "If the cookie store contains a cookie with the same name, - // domain, and path as the newly created cookie:" - if (options.http === false && oldCookie.httpOnly) { // step 11.2 - err = new Error("old Cookie is HttpOnly and this isn't an HTTP API"); - return cb(options.ignoreError ? null : err); - } - cookie.creation = oldCookie.creation; // step 11.3 - cookie.creationIndex = oldCookie.creationIndex; // preserve tie-breaker - cookie.lastAccessed = now; - // Step 11.4 (delete cookie) is implied by just setting the new one: - store.updateCookie(oldCookie, cookie, next); // step 12 +/***/ }), +/* 1443 */ +/***/ (function(module, exports, __webpack_require__) { - } else { - cookie.creation = cookie.lastAccessed = now; - store.putCookie(cookie, next); // step 12 +/* + * Geco, a CAT (Constant Amortized Time) recursive generator* + * for k-combinations, chosen from a given set S of n elements, + * with and without replacement. + * + * https://en.wikipedia.org/wiki/Lexicographical_order#Colexicographic_order + * + * Copyright(c) 2018-present Guglielmo Ferri <44gatti@gmail.com> + * MIT Licensed + */ + +module.exports = ( function () { + + const balloc = Buffer.alloc + , Toni = __webpack_require__( 1444 ) + ; + return { + // CAT generator for combinations without replacement + get : function ( n, k ) { + if ( ! n || ( n < k ) ) + throw new RangeError( 'check input values' ) + ; + // buffer for generating combinations + const buff = balloc( n, 0 ) + // colex recursive generator + , colex_gen = function *( n, k ) { + if ( n === 0 ) yield buff; + else { + if ( k < n ) { + buff[ n - 1 ] = 0; + yield* colex_gen( n - 1, k ); + } + if ( k > 0 ) { + buff[ n - 1 ] = 1; + yield* colex_gen( n - 1, k - 1 ); + } + } + } + // generating colex order for k <= n/2. + , colex_gen_2 = function *( n, k ) { + if ( k === 0 ) yield buff; + else { + if ( k < n ) { + buff[ n - 1 ] = 0; + yield* colex_gen_2( n - 1, k ); + } + buff[ n - 1 ] = 1; + yield* colex_gen_2( n - 1, k - 1); + buff[ n - 1 ] = 0; + } + } + ; + return ( k > n / 2 ) ? + colex_gen( n , k ) : + colex_gen_2( n, k ) + ; + } + , get_bm : function ( n, k ) { + if ( ! n || ( n < k ) ) + throw new RangeError( 'check input values' ) + ; + // bitmap for generating combinations + const bmap = Toni( n ) + // colex recursive generator + , colex_gen = function *( n, k ) { + if ( n === 0 ) yield bmap; + else { + if ( k < n ) { + bmap.del( n - 1 ); + yield* colex_gen( n - 1, k ); + } + if ( k > 0 ) { + bmap.add( n - 1 ); + yield* colex_gen( n - 1, k - 1 ); + } + } + } + // generating colex order for k <= n/2. + , colex_gen_2 = function *( n, k ) { + if ( k === 0 ) yield bmap; + else { + if ( k < n ) { + bmap.del( n - 1 ); + yield* colex_gen_2( n - 1, k ); + } + bmap.add( n - 1 ); + yield* colex_gen_2( n - 1, k - 1); + bmap.del( n - 1 ); + } + } + ; + return ( k > n / 2 ) ? + colex_gen( n , k ) : + colex_gen_2( n, k ) + ; + } + , gen : function *( n, k, set, bitmap ) { + // k should be < n + let list = set || 0 + , llen = list.length + , ok = list && llen && n && ( n >= k ) && ( n <= llen ) + , result, comb, c, bm, b + , iter = null + ; + if ( ! ok ) + throw new RangeError( 'check input values' ) + ; + // iterate on current result + if ( bitmap ) { + // use Toni bitmap + iter = this.get_bm( n, k ); + for ( bm of iter ) { + result = []; + b = 0; + for ( ; b < n; ++b ) + if ( bm.chk( b ) ) result.push( list[ b ] ); + yield result; + } + return; + } + // use a Buffer + iter = this.get( n, k ); + for ( comb of iter ) { + result = []; + c = 0; + for ( ; c < n; ++c ) + if ( comb[ c ] ) result.push( list[ c ] ); + yield result; + } + } + // get total number of combinations + , cnt : ( n, k ) => { + let p = [ 1, 1 ] + , c = 0 + ; + for ( ; c < k; ++c ) { + p[ 0 ] *= n - c; + p[ 1 ] *= k - c; + } + return p[ 0 ] / p[ 1 ]; + } } - } + ; - store.findCookie(cookie.domain, cookie.path, cookie.key, withCookie); -}; +} )(); -// RFC6365 S5.4 -CAN_BE_SYNC.push('getCookies'); -CookieJar.prototype.getCookies = function(url, options, cb) { - var context = getCookieContext(url); - if (options instanceof Function) { - cb = options; - options = {}; - } - var host = canonicalDomain(context.hostname); - var path = context.pathname || '/'; +/***/ }), +/* 1444 */ +/***/ (function(module, exports, __webpack_require__) { - var secure = options.secure; - if (secure == null && context.protocol && - (context.protocol == 'https:' || context.protocol == 'wss:')) - { - secure = true; - } +module.exports = __webpack_require__( 1445 ).Toni; - var http = options.http; - if (http == null) { - http = true; - } +/***/ }), +/* 1445 */ +/***/ (function(module, exports) { - var now = options.now || Date.now(); - var expireCheck = options.expire !== false; - var allPaths = !!options.allPaths; - var store = this.store; +/* + * Toni, a simple and efficient bitmap implementation for positive integer sets + * (max 32 bits), with no element repetition, using bitwise operations and a Buffer. + * Modifying a single bit instead of an entire byte, obviously saves 87.5% of Buffer + * space, but it also implies a gain greater than 200% in performances, when it was + * used with big integer ranges. + * + * http://en.wikipedia.org/wiki/Bit_array + * + * Copyright(c) 2014-present Guglielmo Ferri <44gatti@gmail.com> + * MIT Licensed + */ - function matchingCookie(c) { - // "Either: - // The cookie's host-only-flag is true and the canonicalized - // request-host is identical to the cookie's domain. - // Or: - // The cookie's host-only-flag is false and the canonicalized - // request-host domain-matches the cookie's domain." - if (c.hostOnly) { - if (c.domain != host) { - return false; - } - } else { - if (!domainMatch(host, c.domain, false)) { - return false; - } - } +exports.Toni = ( function () { + var log = console.log + , abs = Math.abs + , ceil = Math.ceil + , max = Math.max + , min = Math.min + // table of powers + , bpower = new Buffer( [ 128, 64, 32, 16, 8, 4, 2, 1 ] ) + // count the number of bits set to 1 for every 1-byte number + , cbits = function ( b ) { + // divide et impera method for 8 bits + var v = b - ( ( b >>> 1 ) & 0x55 ); + v = ( v & 0x33 ) + ( ( v >>> 2 ) & 0x33 ); + return v + ( v >>> 4 ) & 0x0f; + } + , bctable = ( function () { + var i = 0 + , table = new Buffer( 256 ) + , v = -1 + ; + for ( ; i < 256; ++i ) table[ i ] = cbits( i ); + return table; + } )() + , Toni = function ( range ) { + var me = this + , is = me instanceof Toni + ; + if ( ! is ) return new Toni( range ); + // limit range to 4 bytes, (32 bits numbers) using >>> 0 + var r = ( abs( + range ) >>> 0 ) || 1 + , bytes = max( ceil( r / 8 ), 1 ) + , bitmap = new Buffer( bytes ) + ; + bitmap.fill( 0x00 ); + me.bitmap = bitmap; + // bytes needed + me.bmlen = bytes << 3 >>> 0; + me.items = 0; + me.range = r; + // bit count table for 1 byte + me.bctable = bctable; + } + , tproto = Toni.prototype + ; - // "The request-uri's path path-matches the cookie's path." - if (!allPaths && !pathMatch(path, c.path)) { - return false; - } + tproto.clear = function () { + var me = this + ; + me.bitmap.fill( 0x00 ); + me.items = 0; + return me; + }; - // "If the cookie's secure-only-flag is true, then the request-uri's - // scheme must denote a "secure" protocol" - if (c.secure && !secure) { - return false; - } + tproto.add = function ( value ) { + var me = this + , v = abs( value ) + , bitmap = me.bitmap + , range = me.range + ; + // check value range + if ( ( v >= me.bmlen ) || ( v >= range ) ) return -1; + /* + * generally, bucket and mask could be calculated respectively as floor( v / 8 ) + * and bpower[ v % 8 ], but seen that values > 2^32 are not allowed, then we can + * speed up things using bitwise shiftings. + */ + var buck = v >>> 3 + , mask = bpower[ v & 7 ] + , up = mask & bitmap[ buck ] + ; + return up ? -1 : ++me.items | ( bitmap[ buck ] |= mask ); + }; - // "If the cookie's http-only-flag is true, then exclude the cookie if the - // cookie-string is being generated for a "non-HTTP" API" - if (c.httpOnly && !http) { - return false; - } + // get/access the bit at a given index i, b = B[i] + tproto.chk = function ( value ) { + var me = this + , v = abs( value ) + , range = me.range + ; + // check value range + if ( ( me.bmlen <= v ) || ( v >= range ) ) return 0; + // see #add + return bpower[ v & 7 ] & me.bitmap[ v >>> 3 ] ? 1 : 0; + }; - // deferred from S5.3 - // non-RFC: allow retention of expired cookies by choice - if (expireCheck && c.expiryTime() <= now) { - store.removeCookie(c.domain, c.path, c.key, function(){}); // result ignored - return false; - } + tproto.del = function ( value ) { + var me = this + , v = value + , range = me.range + , bitmap = me.bitmap + ; + // check value range + if ( ( me.bmlen <= v ) || ( v >= range ) ) return -1; - return true; - } + var buck = v >>> 3 + , mask = bpower[ v & 7 ] + , up = mask & bitmap[ buck ] + ; + return up ? --me.items | ( bitmap[ buck ] ^= mask ) : -1; + }; - store.findCookies(host, allPaths ? null : path, function(err,cookies) { - if (err) { - return cb(err); - } + // it returns the occurrences of bit 1 until index i + tproto.rank = function ( i ) { + var me = this + , bitmap = me.bitmap + , bmlen = me.bmlen + , buck = null + , boff = -1 + , bshift = -1 + , b = 0 + , bcnt = 0 + , index = min( i >>> 0, me.bmlen ) + ; + if ( index > bmlen ) return -1; + // last bucket to count with btable + buck = index >>> 3; + // bits remaining to count + boff = 1 + ( index - ( buck << 3 ) ); + bshift = 8 - boff; - cookies = cookies.filter(matchingCookie); + if ( buck ) { + // log( ' - bytes to count: %d', buck ); + for ( b = 0; b < buck ; ++b ) + bcnt += bctable[ bitmap[ b ] ]; + } + bcnt += bctable[ bitmap[ b ] >>> bshift ]; + return bcnt; + }; - // sorting of S5.4 part 2 - if (options.sort !== false) { - cookies = cookies.sort(cookieCompare); - } + // it returns the position of the i-th occurrence of bit 1 + // tproto.select = function ( index ) { + // var me = this + // ; + // return; + // }; - // S5.4 part 3 - var now = new Date(); - cookies.forEach(function(c) { - c.lastAccessed = now; - }); - // TODO persist lastAccessed + return Toni; - cb(null,cookies); - }); -}; +} )(); -CAN_BE_SYNC.push('getCookieString'); -CookieJar.prototype.getCookieString = function(/*..., cb*/) { - var args = Array.prototype.slice.call(arguments,0); - var cb = args.pop(); - var next = function(err,cookies) { - if (err) { - cb(err); - } else { - cb(null, cookies - .sort(cookieCompare) - .map(function(c){ - return c.cookieString(); - }) - .join('; ')); - } - }; - args.push(next); - this.getCookies.apply(this,args); -}; +/***/ }), +/* 1446 */ +/***/ (function(module, exports) { -CAN_BE_SYNC.push('getSetCookieStrings'); -CookieJar.prototype.getSetCookieStrings = function(/*..., cb*/) { - var args = Array.prototype.slice.call(arguments,0); - var cb = args.pop(); - var next = function(err,cookies) { - if (err) { - cb(err); - } else { - cb(null, cookies.map(function(c){ - return c.toString(); - })); - } - }; - args.push(next); - this.getCookies.apply(this,args); -}; +/* + * Geco, a CAT (Constant Amortized Time) recursive generator* + * for k-combinations, chosen from a given set S of n elements, + * with and without replacement. + * + * https://en.wikipedia.org/wiki/Lexicographical_order#Colexicographic_order + * + * Copyright(c) 2018-present Guglielmo Ferri <44gatti@gmail.com> + * MIT Licensed + */ -CAN_BE_SYNC.push('serialize'); -CookieJar.prototype.serialize = function(cb) { - var type = this.store.constructor.name; - if (type === 'Object') { - type = null; - } +module.exports = ( function () { - // update README.md "Serialization Format" if you change this, please! - var serialized = { - // The version of tough-cookie that serialized this jar. Generally a good - // practice since future versions can make data import decisions based on - // known past behavior. When/if this matters, use `semver`. - version: 'tough-cookie@'+VERSION, + const balloc = Buffer.alloc + , bfrom = Buffer.from + , isBuffer = Buffer.isBuffer + , isInteger = Number.isInteger + , mgen = function ( k, v, rep ) { + const rlen = rep.length + // get the total number of elements + , total = ( () => { + let [ i, t ] = [ 1, rep[ 0 ] ]; + if ( rlen > 1 ) + for ( ; i < rlen; ++i ) t += rep[ i ]; + return t; + } )() + // choose the correct fn + , up = k > total >> 1 + // init the correct gen buffer ( v === rlen ), for k > n/2, k <= 2 + , buff = up ? bfrom( rep ) : balloc( v, 0 ) + // k <= n/2, TODO k > n/2 + , colex_gen = function *( k, v, tot ) { + if ( k === 0 ) yield buff; + else { + let c = v - 1 + , occ = rep[ c ] + , r = tot - occ + , l = k > r ? k - r : 0 + , m = occ < k ? occ : k + ; + for ( ; l <= m; ++l ) { + buff[ c ] = l; + yield* colex_gen( k - l, c, r ); + buff[ c ] = 0; + } + } + } + ; + // check k range + if ( k >= total ) new RangeError( 'k value should be lesser than total elements' ); + return colex_gen( k, v, total ) + ; + } + ; + return { + mget : function ( k, v, rep ) { + let rlen = -1 + , b = -1 + , read = null + , write = null + // get the total number of elements + , total = -1 + , ok = k && v && rep + ; + if ( ! ok ) return new RangeError( 'missing or wrong input values' ); + // check repetitions type + if ( isBuffer( rep ) && ( rlen = rep.length ) ) { + b = rlen / v; + if ( b === 1 ) return mgen( k, v, rep ); + if ( ( b !== 2 ) && ( b !== 4 ) ) + return new RangeError( 'repetitions buffer length should be a multiple of v' ); + // set the correct read/write fn, only 4, 2, 1 bytes are allowed + [ read, write ] = [ `readUInt${ b << 3 }BE`, `writeUInt${ b << 3 }BE` ]; + // get the total number of elements + total = ( () => { + let [ i, t ] = [ b, rep[ read ]( 0 ) ]; + if ( rlen > b ) + for ( ; i < rlen; i += b ) t += rep[ read ]( i ); + return t; + } )(); + } else if ( isInteger( rep ) ) { + // use rep value as default repetitions for every value, build a buffer accordingly + if ( rep < 257 ) return mgen( k, v, balloc( v, rep ) ); + if ( rep < 65537 ) b = 2; + else if ( rep < 4294967297 ) b = 4; + else return new RangeError( 'repetitions should be < 2^32 + 1' ); + rlen = v << ( b >>> 1 ); + total = v * rep; + // set the correct read/write fn, only 4, 2, 1 bytes are allowed + [ read, write ] = [ `readUInt${ b << 3 }BE`, `writeUInt${ b << 3 }BE` ]; + rep = balloc( rlen ); + // fill the reference buffer of repetitions with v identical values + for ( let i = 0; i < rlen; i += b ) rep[ write ]( v ); + } else return new RangeError( 'repetitions should be represented as: a buffer or an integer' ); + // check k range + if ( k >= total ) new RangeError( 'k should be lesser than the total sum of repetitions' ); + // choose the correct colex fn + let up = k > total >> 1 + // init the correct gen buffer, for k > n/2, k <= 2 + , buff = up ? bfrom( rep ) : balloc( rlen, 0 ) + // k <= n/2, TODO k > n/2 + , colex_gen = function *( k, v, tot ) { + if ( k === 0 ) yield buff; + else { + let c = v - 1 + , occ = rep[ read ]( c * b ) + , r = tot - occ + , l = k > r ? k - r : 0 + , m = occ < k ? occ : k + ; + for ( ; l <= m; ++l ) { + buff[ write ]( l, c * b ); + yield* colex_gen( k - l, c, r ); + buff[ write ]( 0, c * b ); + } + } + } + ; + return colex_gen( k, v, total ) + ; + } + + } + ; - // add the store type, to make humans happy: - storeType: type, +} )(); - // CookieJar configuration: - rejectPublicSuffixes: !!this.rejectPublicSuffixes, - // this gets filled from getAllCookies: - cookies: [] - }; +/***/ }), +/* 1447 */ +/***/ (function(module, exports, __webpack_require__) { - if (!(this.store.getAllCookies && - typeof this.store.getAllCookies === 'function')) - { - return cb(new Error('store does not support getAllCookies and cannot be serialized')); - } +/** + * Provides an handy method to log the user in, + * on HTML form pages. On success, it resolves to a promise with a parsed body. + * + * @module signin + */ +const errors = __webpack_require__(1408); - this.store.getAllCookies(function(err,cookies) { - if (err) { - return cb(err); - } +const rerrors = __webpack_require__(1448); - serialized.cookies = cookies.map(function(cookie) { - // convert to serialized 'raw' cookies - cookie = (cookie instanceof Cookie) ? cookie.toJSON() : cookie; +const log = __webpack_require__(2).namespace('cozy-konnector-libs'); - // Remove the index so new ones get assigned during deserialization - delete cookie.creationIndex; +const requestFactory = __webpack_require__(22); - return cookie; - }); +const cheerio = __webpack_require__(272); +/** + * Provides an handy method to log the user in, + * on HTML form pages. On success, it resolves to a promise with a parsed body. + * + * Errors: + * + * - LOGIN_FAILED if the validate predicate is false + * - INVALID_FORM if the element matched by `formSelector` is not a form or has + * no `action` attribute + * - UNKNOWN_PARSING_STRATEGY if `parse` is not one of the accepted values: + * `raw`, `cheerio`, `json`. + * - VENDOR_DOWN if a request throws a RequestError, or StatusCodeError + * + * It does not submit values provided through `select` tags, except if populated + * by user with `formData`. + * + * - `url` is the url to access the html form + * + * - `formSelector` is used by cheerio to uniquely identify the form in which to + * log in + * + * - `formData` is an object `{ name: value, … }`. It is used to populate the + * form, in the proper inputs with the same name as the properties of this + * object, before submitting it. It can also be a function that returns this + * object. The page at `url` would be given as argument, right after having + * been parsed through `cheerio`. + * + * - `parse` allow the user to resolve `signin` with a preparsed body. The + * choice of the strategy for the parsing is one of : `raw`, `json` or + * `cheerio`. `cheerio` being the default. + * + * - `validate` is a predicate taking three arguments `statusCode`, `parsedBody` and `fullResponse`. + * If it is false, `LOGIN_FAILED` is thrown, otherwise the + * signin resolves with `parsedBody` value. + * + * - `requestOpts` allows to pass eventual options to the `signin`'s + * `requestFactory`. It could be useful for pages using `latin1` `encoding` + * for instance. + * + * @example + * == basic example : == + * ```javascript + * const $ = signin({ + * url: `http://quotes.toscrape.com/login`, + * formSelector: 'form', + * formData: { username, password } + * }) + * ``` + * If the behavior of the targeted website is not standard. You can pass a validate function which + * will allow you to: + * - detect if the credentials work or not -> LOGIN_FAILED + * - detect if actions from the user are needed -> USER_ACTION_NEEDED + * - detect if the targeted website is out -> VENDOR_DOWN + * + * @example + * ```javascript + * const $ = signin({ + * url: `http://quotes.toscrape.com/login`, + * formSelector: 'form', + * formData: { username, password }, + * validate: (statusCode, $, fullResponse) { + * if (statusCode !== 200) return false // LOGIN_FAILED + * if ($('.cgu').length) throw new Error('USER_ACTION_NEEDED') + * if (fullResponse.request.uri.href.includes('error')) throw new Error('VENDOR_DOWN') + * } + * }) + * ``` + * + * Do not forget that the use of the signin function is not mandatory in a connector and won't work + * if the signin page does not use html forms. Here, a simple POST request may be a lot more + * simple. + * + * @alias module:signin + */ - return cb(null, serialized); - }); -}; -// well-known name that JSON.stringify calls -CookieJar.prototype.toJSON = function() { - return this.serializeSync(); -}; +function signin({ + url, + formSelector, + formData = {}, + parse = 'cheerio', + validate = defaultValidate, + ...requestOpts +} = {}) { + // Check for mandatory arguments + if (url === undefined) { + throw new Error('signin: `url` must be defined'); + } -// use the class method CookieJar.deserialize instead of calling this directly -CAN_BE_SYNC.push('_importCookies'); -CookieJar.prototype._importCookies = function(serialized, cb) { - var jar = this; - var cookies = serialized.cookies; - if (!cookies || !Array.isArray(cookies)) { - return cb(new Error('serialized jar has no cookies array')); + if (formSelector === undefined) { + throw new Error('signin: `formSelector` must be defined'); } - cookies = cookies.slice(); // do not modify the original - function putNext(err) { - if (err) { - return cb(err); - } + const rq = requestOpts.requestInstance || requestFactory({ + jar: true, + json: false, + ...requestOpts + }); + const parseBody = getStrategy(parse); + return rq({ + uri: url, + transform: body => cheerio.load(body) + }).catch(handleRequestErrors).then($ => { + const data = typeof formData === 'function' ? formData($) : formData; + const [action, inputs] = parseForm($, formSelector, url); - if (!cookies.length) { - return cb(err, jar); + for (let name in data) { + inputs[name] = data[name]; } - var cookie; - try { - cookie = fromJSON(cookies.shift()); - } catch (e) { - return cb(e); + return submitForm(rq, __webpack_require__(83).resolve(url, action), inputs, parseBody, url); + }).then(([statusCode, parsedBody, fullResponse]) => { + if (!validate(statusCode, parsedBody, fullResponse)) { + throw new Error(errors.LOGIN_FAILED); + } else { + return Promise.resolve(parsedBody); } + }); +} - if (cookie === null) { - return putNext(null); // skip this cookie - } +function defaultValidate(statusCode) { + return statusCode === 200; +} - jar.store.putCookie(cookie, putNext); - } +function getStrategy(parseStrategy) { + switch (parseStrategy) { + case 'cheerio': + return cheerio.load; - putNext(); -}; + case 'json': + return JSON.parse; -CookieJar.deserialize = function(strOrObj, store, cb) { - if (arguments.length !== 3) { - // store is optional - cb = store; - store = null; - } + case 'raw': + return body => body; - var serialized; - if (typeof strOrObj === 'string') { - serialized = jsonParse(strOrObj); - if (serialized instanceof Error) { - return cb(serialized); - } - } else { - serialized = strOrObj; + default: + { + const err = `signin: parsing strategy \`${parseStrategy}\` unknown. `; + const hint = 'Use one of `raw`, `cheerio` or `json`'; + log('error', err + hint); + throw new Error('UNKNOWN_PARSING_STRATEGY'); + } } +} - var jar = new CookieJar(store, serialized.rejectPublicSuffixes); - jar._importCookies(serialized, function(err) { - if (err) { - return cb(err); - } - cb(null, jar); - }); -}; - -CookieJar.deserializeSync = function(strOrObj, store) { - var serialized = typeof strOrObj === 'string' ? - JSON.parse(strOrObj) : strOrObj; - var jar = new CookieJar(store, serialized.rejectPublicSuffixes); +function parseForm($, formSelector, currentUrl) { + const form = $(formSelector).first(); + const action = form.attr('action') || currentUrl; - // catch this mistake early: - if (!jar.store.synchronous) { - throw new Error('CookieJar store is not synchronous; use async API instead.'); + if (!form.is('form')) { + const err = 'element matching `' + formSelector + '` is not a `form`'; + log('error', err); + throw new Error('INVALID_FORM'); } - jar._importCookiesSync(serialized); - return jar; -}; -CookieJar.fromJSON = CookieJar.deserializeSync; + const inputs = {}; + const arr = form.serializeArray(); -CAN_BE_SYNC.push('clone'); -CookieJar.prototype.clone = function(newStore, cb) { - if (arguments.length === 1) { - cb = newStore; - newStore = null; + for (let input of arr) { + inputs[input.name] = input.value; } - this.serialize(function(err,serialized) { - if (err) { - return cb(err); - } - CookieJar.deserialize(newStore, serialized, cb); - }); -}; + return [action, inputs]; +} -// Use a closure to provide a true imperative API for synchronous stores. -function syncWrap(method) { - return function() { - if (!this.store.synchronous) { - throw new Error('CookieJar store is not synchronous; use async API instead.'); +function submitForm(rq, uri, inputs, parseBody, referer) { + return rq({ + uri: uri, + method: 'POST', + form: { ...inputs + }, + transform: (body, response) => [response.statusCode, parseBody(body), response], + headers: { + Referer: referer } + }).catch(handleRequestErrors); +} - var args = Array.prototype.slice.call(arguments); - var syncErr, syncResult; - args.push(function syncCb(err, result) { - syncErr = err; - syncResult = result; - }); - this[method].apply(this, args); - - if (syncErr) { - throw syncErr; - } - return syncResult; - }; +function handleRequestErrors(err) { + if (err instanceof rerrors.RequestError || err instanceof rerrors.StatusCodeError) { + log('error', err); + throw new Error(errors.VENDOR_DOWN); + } else { + return Promise.reject(err); + } } -// wrap all declared CAN_BE_SYNC methods in the sync wrapper -CAN_BE_SYNC.forEach(function(method) { - CookieJar.prototype[method+'Sync'] = syncWrap(method); -}); +module.exports = signin; + +/***/ }), +/* 1448 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; -exports.CookieJar = CookieJar; -exports.Cookie = Cookie; -exports.Store = Store; -exports.MemoryCookieStore = MemoryCookieStore; -exports.parseDate = parseDate; -exports.formatDate = formatDate; -exports.parse = parse; -exports.fromJSON = fromJSON; -exports.domainMatch = domainMatch; -exports.defaultPath = defaultPath; -exports.pathMatch = pathMatch; -exports.getPublicSuffix = pubsuffix.getPublicSuffix; -exports.cookieCompare = cookieCompare; -exports.permuteDomain = __webpack_require__(1317).permuteDomain; -exports.permutePath = permutePath; -exports.canonicalDomain = canonicalDomain; + +module.exports = __webpack_require__(1449); /***/ }), -/* 1314 */ +/* 1449 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -/*! - * Copyright (c) 2018, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -var psl = __webpack_require__(85); -function getPublicSuffix(domain) { - return psl.get(domain); -} -exports.getPublicSuffix = getPublicSuffix; +module.exports = __webpack_require__(64); /***/ }), -/* 1315 */ +/* 1450 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; -/*! - * Copyright (c) 2015, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. +/** + * Creates or updates the given entries according to if they already + * exist in the cozy or not * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. + * @module updateOrCreate */ +const bluebird = __webpack_require__(25); -/*jshint unused:false */ - -function Store() { -} -exports.Store = Store; - -// Stores may be synchronous, but are still required to use a -// Continuation-Passing Style API. The CookieJar itself will expose a "*Sync" -// API that converts from synchronous-callbacks to imperative style. -Store.prototype.synchronous = false; +const log = __webpack_require__(2).namespace('updateOrCreate'); -Store.prototype.findCookie = function(domain, path, key, cb) { - throw new Error('findCookie is not implemented'); -}; +const cozy = __webpack_require__(487); -Store.prototype.findCookies = function(domain, path, cb) { - throw new Error('findCookies is not implemented'); -}; +const get = __webpack_require__(372); -Store.prototype.putCookie = function(cookie, cb) { - throw new Error('putCookie is not implemented'); -}; +const { + getCozyMetadata +} = __webpack_require__(845); +/** + * Creates or updates the given entries according to if they already + * exist in the cozy or not + * + * You need the full permission for the given doctype in your manifest, to be able to + * use this function. + * + * * `entries` (object array): Documents to save + * * `doctype` (string): Doctype of the documents + * * `matchingAttributes` (string array): attributes in each entry used to check if an entry already exists in the Cozy + * * `options` (object): general option affecting metadata : + * + `sourceAccount` (String): id of the source account + * + `sourceAccountIdentifier` (String): identifier unique to the account targetted by the connector. It is the login most of the time + * + * @alias module:updateOrCreate + */ -Store.prototype.updateCookie = function(oldCookie, newCookie, cb) { - // recommended default implementation: - // return this.putCookie(newCookie, cb); - throw new Error('updateCookie is not implemented'); -}; -Store.prototype.removeCookie = function(domain, path, key, cb) { - throw new Error('removeCookie is not implemented'); -}; +const updateOrCreate = (entries = [], doctype, matchingAttributes = [], options = {}) => { + return cozy.data.findAll(doctype).then(existings => bluebird.mapSeries(entries, entry => { + const metaEntry = { + cozyMetadata: getCozyMetadata({ ...entry.cozyMetadata, + sourceAccount: options.sourceAccount, + sourceAccountIdentifier: options.sourceAccountIdentifier + }), + ...entry + }; // try to find a corresponding existing element -Store.prototype.removeCookies = function(domain, path, cb) { - throw new Error('removeCookies is not implemented'); -}; + const toUpdate = existings.find(doc => matchingAttributes.reduce((isMatching, matchingAttribute) => isMatching && get(doc, matchingAttribute) === get(metaEntry, matchingAttribute), true)); -Store.prototype.getAllCookies = function(cb) { - throw new Error('getAllCookies is not implemented (therefore jar cannot be serialized)'); + if (toUpdate) { + log('debug', 'updating'); + if (toUpdate.cozyMetadata) metaEntry.cozyMetadata.createdAt = toUpdate.cozyMetadata.createdAt; + return cozy.data.updateAttributes(doctype, toUpdate._id, metaEntry); + } else { + log('debug', 'creating'); + return cozy.data.create(doctype, metaEntry); + } + })); }; +module.exports = updateOrCreate; /***/ }), -/* 1316 */ +/* 1451 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; -/*! - * Copyright (c) 2015, Salesforce.com, Inc. - * All rights reserved. +/** + * Helper to set or merge io.cozy.identities + * See https://github.com/cozy/cozy-doctypes/blob/master/docs/io.cozy.identities.md * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: + * @module saveIdentity + */ +const log = __webpack_require__(2).namespace('saveIdentity'); + +const updateOrCreate = __webpack_require__(1450); +/** + * Set or merge a io.cozy.identities * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. + * You need full permission for the doctype io.cozy.identities in your + * manifest, to be able to use this function. * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. + * Parameters: * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. + * * `contact` (object): the identity to create/update as an object io.cozy.contacts + * * `accountIdentifier` (string): a string that represent the account use, if available fields.login + * * `options` (object): options which will be given to updateOrCreate directly : + * + `sourceAccount` (String): id of the source account + * + `sourceAccountIdentifier` (String): identifier unique to the account targetted by the connector. It is the login most of the time * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. + * + * ```javascript + * const { saveIdentity } = require('cozy-konnector-libs') + * const identity = + * { + * name: 'toto', + * email: { 'address': 'toto@example.com' } + * } + * + * return saveIdentity(identity, fields.login) + * ``` + * + * @alias module:saveIdentity */ -var Store = __webpack_require__(1315).Store; -var permuteDomain = __webpack_require__(1317).permuteDomain; -var pathMatch = __webpack_require__(1318).pathMatch; -var util = __webpack_require__(9); -function MemoryCookieStore() { - Store.call(this); - this.idx = {}; -} -util.inherits(MemoryCookieStore, Store); -exports.MemoryCookieStore = MemoryCookieStore; -MemoryCookieStore.prototype.idx = null; +const saveIdentity = async (contact, accountIdentifier, options = {}) => { + log('debug', 'saving user identity'); -// Since it's just a struct in RAM, this Store is synchronous -MemoryCookieStore.prototype.synchronous = true; + if (accountIdentifier == null) { + log('warn', "Can't set identity as no accountIdentifier was provided"); + return; + } -// force a default depth: -MemoryCookieStore.prototype.inspect = function() { - return "{ idx: "+util.inspect(this.idx, false, 2)+' }'; -}; + if (contact == null) { + log('warn', "Can't set identity as no contact was provided"); + return; + } // Format contact if needed -// Use the new custom inspection symbol to add the custom inspect function if -// available. -if (util.inspect.custom) { - MemoryCookieStore.prototype[util.inspect.custom] = MemoryCookieStore.prototype.inspect; -} -MemoryCookieStore.prototype.findCookie = function(domain, path, key, cb) { - if (!this.idx[domain]) { - return cb(null,undefined); - } - if (!this.idx[domain][path]) { - return cb(null,undefined); + if (contact.phone) { + contact.phone = formatPhone(contact.phone); } - return cb(null,this.idx[domain][path][key]||null); -}; -MemoryCookieStore.prototype.findCookies = function(domain, path, cb) { - var results = []; - if (!domain) { - return cb(null,[]); + if (contact.address) { + contact.address = formatAddress(contact.address); } - var pathMatcher; - if (!path) { - // null means "all paths" - pathMatcher = function matchAll(domainIndex) { - for (var curPath in domainIndex) { - var pathIndex = domainIndex[curPath]; - for (var key in pathIndex) { - results.push(pathIndex[key]); - } - } - }; + const identity = { + identifier: accountIdentifier, + contact + }; + await updateOrCreate([identity], 'io.cozy.identities', ['identifier', 'cozyMetadata.createdByApp'], { ...options, + sourceAccountIdentifier: accountIdentifier + }); + return; +}; +/* Remove html and cariage return in address + */ - } else { - pathMatcher = function matchRFC(domainIndex) { - //NOTE: we should use path-match algorithm from S5.1.4 here - //(see : https://github.com/ChromiumWebApps/chromium/blob/b3d3b4da8bb94c1b2e061600df106d590fda3620/net/cookies/canonical_cookie.cc#L299) - Object.keys(domainIndex).forEach(function (cookiePath) { - if (pathMatch(path, cookiePath)) { - var pathIndex = domainIndex[cookiePath]; - for (var key in pathIndex) { - results.push(pathIndex[key]); - } - } - }); - }; - } +function formatAddress(address) { + for (const element of address) { + if (element.formattedAddress) { + element.formattedAddress = element.formattedAddress.replace(/<[^>]*>/g, '') // Remove all html Tag + .replace(/\r\n|[\n\r]/g, ' '); // Remove all kind of return character - var domains = permuteDomain(domain) || [domain]; - var idx = this.idx; - domains.forEach(function(curDomain) { - var domainIndex = idx[curDomain]; - if (!domainIndex) { - return; + address[address.indexOf(element)] = element; } - pathMatcher(domainIndex); - }); - - cb(null,results); -}; - -MemoryCookieStore.prototype.putCookie = function(cookie, cb) { - if (!this.idx[cookie.domain]) { - this.idx[cookie.domain] = {}; - } - if (!this.idx[cookie.domain][cookie.path]) { - this.idx[cookie.domain][cookie.path] = {}; } - this.idx[cookie.domain][cookie.path][cookie.key] = cookie; - cb(null); -}; -MemoryCookieStore.prototype.updateCookie = function(oldCookie, newCookie, cb) { - // updateCookie() may avoid updating cookies that are identical. For example, - // lastAccessed may not be important to some stores and an equality - // comparison could exclude that field. - this.putCookie(newCookie,cb); -}; + return address; +} +/* Replace all characters in a phone number except '+' or digits + */ -MemoryCookieStore.prototype.removeCookie = function(domain, path, key, cb) { - if (this.idx[domain] && this.idx[domain][path] && this.idx[domain][path][key]) { - delete this.idx[domain][path][key]; - } - cb(null); -}; -MemoryCookieStore.prototype.removeCookies = function(domain, path, cb) { - if (this.idx[domain]) { - if (path) { - delete this.idx[domain][path]; - } else { - delete this.idx[domain]; +function formatPhone(phone) { + for (const element of phone) { + if (element.number) { + element.number = element.number.replace(/[^\d.+]/g, ''); + phone[phone.indexOf(element)] = element; } } - return cb(null); -}; -MemoryCookieStore.prototype.getAllCookies = function(cb) { - var cookies = []; - var idx = this.idx; + return phone; +} - var domains = Object.keys(idx); - domains.forEach(function(domain) { - var paths = Object.keys(idx[domain]); - paths.forEach(function(path) { - var keys = Object.keys(idx[domain][path]); - keys.forEach(function(key) { - if (key !== null) { - cookies.push(idx[domain][path][key]); - } - }); - }); - }); +module.exports = saveIdentity; - // Sort by creationIndex so deserializing retains the creation order. - // When implementing your own store, this SHOULD retain the order too - cookies.sort(function(a,b) { - return (a.creationIndex||0) - (b.creationIndex||0); - }); +/***/ }), +/* 1452 */ +/***/ (function(module, exports, __webpack_require__) { - cb(null, cookies); -}; +/* global __APP_VERSION__ */ +const log = __webpack_require__(2); +const Raven = __webpack_require__(1453); -/***/ }), -/* 1317 */ -/***/ (function(module, exports, __webpack_require__) { +const { + getDomain, + getInstance +} = __webpack_require__(1481); -"use strict"; -/*! - * Copyright (c) 2015, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ +let isRavenConfigured = false; +const ENV_DEV = 'development'; +const ENV_SELF = 'selfhost'; +const ENV_PROD = 'production'; +const domainToEnv = { + 'cozy.tools': ENV_DEV, + 'cozy.works': ENV_DEV, + 'cozy.rocks': ENV_PROD, + 'mycozy.cloud': ENV_PROD +}; -var pubsuffix = __webpack_require__(1314); +const getEnvironmentFromDomain = domain => { + return domainToEnv[domain] || ENV_SELF; +}; // Available in Projet > Settings > Client Keys +// Example : https://5f94cb7772deadbeef123456:39e4e34fdeadbeef123456a9ae31caba74c@sentry.cozycloud.cc/12 -// Gives the permutation of all possible domainMatch()es of a given domain. The -// array is in shortest-to-longest order. Handy for indexing. -function permuteDomain (domain) { - var pubSuf = pubsuffix.getPublicSuffix(domain); - if (!pubSuf) { - return null; - } - if (pubSuf == domain) { - return [domain]; - } - var prefix = domain.slice(0, -(pubSuf.length + 1)); // ".example.com" - var parts = prefix.split('.').reverse(); - var cur = pubSuf; - var permutations = [cur]; - while (parts.length) { - cur = parts.shift() + '.' + cur; - permutations.push(cur); - } - return permutations; -} +const SENTRY_DSN = process.env.SENTRY_DSN; -exports.permuteDomain = permuteDomain; +const afterFatalError = function (_err, sendErr, eventId) { + if (!sendErr) { + log('debug', 'Successfully sent fatal error with eventId ' + eventId + ' to Sentry'); + } + process.exit(1); +}; -/***/ }), -/* 1318 */ -/***/ (function(module, exports, __webpack_require__) { +const afterCaptureException = function (sendErr, eventId) { + if (!sendErr) { + log('debug', 'Successfully sent exception with eventId ' + eventId + ' to Sentry'); + } -"use strict"; -/*! - * Copyright (c) 2015, Salesforce.com, Inc. - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * 3. Neither the name of Salesforce.com nor the names of its contributors may - * be used to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ + process.exit(1); +}; -/* - * "A request-path path-matches a given cookie-path if at least one of the - * following conditions holds:" - */ -function pathMatch (reqPath, cookiePath) { - // "o The cookie-path and the request-path are identical." - if (cookiePath === reqPath) { - return true; +const setupSentry = function () { + try { + log('debug', 'process.env.SENTRY_DSN found, setting up Raven'); + const release = typeof __APP_VERSION__ !== 'undefined' ? __APP_VERSION__ : 'dev'; + const domain = getDomain(); + const environment = getEnvironmentFromDomain(domain); + const instance = getInstance(); + Raven.config(SENTRY_DSN, { + release, + environment, + autoBreadcrumbs: { + console: true + } + }).install(afterFatalError); + Raven.mergeContext({ + tags: { + domain, + instance + } + }); + isRavenConfigured = true; + log('debug', 'Raven configured !'); + } catch (e) { + log('warn', 'Could not load Raven, errors will not be sent to Sentry'); + log('warn', e); } +}; - var idx = reqPath.indexOf(cookiePath); - if (idx === 0) { - // "o The cookie-path is a prefix of the request-path, and the last - // character of the cookie-path is %x2F ("/")." - if (cookiePath.substr(-1) === "/") { - return true; - } +module.exports.captureExceptionAndDie = function (err) { + log('debug', 'Capture exception and die'); - // " o The cookie-path is a prefix of the request-path, and the first - // character of the request-path that is not included in the cookie- path - // is a %x2F ("/") character." - if (reqPath.substr(cookiePath.length, 1) === "/") { - return true; + if (!isRavenConfigured) { + process.exit(1); + } else { + try { + log('debug', 'Sending exception to Sentry'); + Raven.captureException(err, { + fingerprint: [err.message || err] + }, afterCaptureException); + } catch (e) { + log('warn', 'Could not send error to Sentry, exiting...'); + log('warn', e); + log('warn', err); + process.exit(1); } } +}; - return false; +module.exports.wrapIfSentrySetUp = function (obj, method) { + if (SENTRY_DSN && SENTRY_DSN !== 'false') { + obj[method] = Raven.wrap(obj[method]); + } +}; + +if (SENTRY_DSN && SENTRY_DSN !== 'false') { + setupSentry(); } -exports.pathMatch = pathMatch; +/***/ }), +/* 1453 */ +/***/ (function(module, exports, __webpack_require__) { +"use strict"; -/***/ }), -/* 1319 */ -/***/ (function(module) { -module.exports = JSON.parse("{\"author\":{\"name\":\"Jeremy Stashewsky\",\"email\":\"jstash@gmail.com\",\"website\":\"https://github.com/stash\"},\"contributors\":[{\"name\":\"Alexander Savin\",\"website\":\"https://github.com/apsavin\"},{\"name\":\"Ian Livingstone\",\"website\":\"https://github.com/ianlivingstone\"},{\"name\":\"Ivan Nikulin\",\"website\":\"https://github.com/inikulin\"},{\"name\":\"Lalit Kapoor\",\"website\":\"https://github.com/lalitkapoor\"},{\"name\":\"Sam Thompson\",\"website\":\"https://github.com/sambthompson\"},{\"name\":\"Sebastian Mayr\",\"website\":\"https://github.com/Sebmaster\"}],\"license\":\"BSD-3-Clause\",\"name\":\"tough-cookie\",\"description\":\"RFC6265 Cookies and Cookie Jar for node.js\",\"keywords\":[\"HTTP\",\"cookie\",\"cookies\",\"set-cookie\",\"cookiejar\",\"jar\",\"RFC6265\",\"RFC2965\"],\"version\":\"2.4.3\",\"homepage\":\"https://github.com/salesforce/tough-cookie\",\"repository\":{\"type\":\"git\",\"url\":\"git://github.com/salesforce/tough-cookie.git\"},\"bugs\":{\"url\":\"https://github.com/salesforce/tough-cookie/issues\"},\"main\":\"./lib/cookie\",\"files\":[\"lib\"],\"scripts\":{\"test\":\"vows test/*_test.js\",\"cover\":\"nyc --reporter=lcov --reporter=html vows test/*_test.js\"},\"engines\":{\"node\":\">=0.8\"},\"devDependencies\":{\"async\":\"^1.4.2\",\"nyc\":\"^11.6.0\",\"string.prototype.repeat\":\"^0.2.0\",\"vows\":\"^0.8.1\"},\"dependencies\":{\"psl\":\"^1.1.24\",\"punycode\":\"^1.4.1\"}}"); +module.exports = __webpack_require__(1454); +module.exports.utils = __webpack_require__(1458); + +module.exports.transports = __webpack_require__(1459); +module.exports.parsers = __webpack_require__(1456); + +// To infinity and beyond +Error.stackTraceLimit = Infinity; + /***/ }), -/* 1320 */ +/* 1454 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var jsonSafeStringify = __webpack_require__(7) -var crypto = __webpack_require__(94) -var Buffer = __webpack_require__(95).Buffer +var stringify = __webpack_require__(1455); +var parsers = __webpack_require__(1456); +var zlib = __webpack_require__(101); +var utils = __webpack_require__(1458); +var uuid = __webpack_require__(1464); +var transports = __webpack_require__(1459); +var nodeUtil = __webpack_require__(9); // nodeUtil to avoid confusion with "utils" +var events = __webpack_require__(268); +var domain = __webpack_require__(1469); +var md5 = __webpack_require__(1470); -var defer = typeof setImmediate === 'undefined' - ? process.nextTick - : setImmediate +var instrumentor = __webpack_require__(1474); -function paramsHaveRequestBody (params) { - return ( - params.body || - params.requestBodyStream || - (params.json && typeof params.json !== 'boolean') || - params.multipart - ) -} +var extend = utils.extend; -function safeStringify (obj, replacer) { - var ret - try { - ret = JSON.stringify(obj, replacer) - } catch (e) { - ret = jsonSafeStringify(obj, replacer) - } - return ret +function Raven() { + this.breadcrumbs = { + record: this.captureBreadcrumb.bind(this) + }; } -function md5 (str) { - return crypto.createHash('md5').update(str).digest('hex') -} +nodeUtil.inherits(Raven, events.EventEmitter); -function isReadStream (rs) { - return rs.readable && rs.path && rs.mode -} +extend(Raven.prototype, { + config: function config(dsn, options) { + // We get lots of users using raven-node when they want raven-js, hence this warning if it seems like a browser + if ( + typeof window !== 'undefined' && + typeof document !== 'undefined' && + typeof navigator !== 'undefined' + ) { + utils.consoleAlertOnce( + "This looks like a browser environment; are you sure you don't want Raven.js for browser JavaScript? https://sentry.io/for/javascript" + ); + } -function toBase64 (str) { - return Buffer.from(str || '', 'utf8').toString('base64') -} + if (arguments.length === 0) { + // no arguments, use default from environment + dsn = global.process.env.SENTRY_DSN; + options = {}; + } + if (typeof dsn === 'object') { + // They must only be passing through options + options = dsn; + dsn = global.process.env.SENTRY_DSN; + } + options = options || {}; -function copy (obj) { - var o = {} - Object.keys(obj).forEach(function (i) { - o[i] = obj[i] - }) - return o -} + this.raw_dsn = dsn; + this.dsn = utils.parseDSN(dsn); + this.name = + options.name || global.process.env.SENTRY_NAME || __webpack_require__(19).hostname(); + this.root = options.root || global.process.cwd(); + this.transport = options.transport || transports[this.dsn.protocol]; + this.sendTimeout = options.sendTimeout || 1; + this.release = options.release || global.process.env.SENTRY_RELEASE; + this.environment = + options.environment || + global.process.env.SENTRY_ENVIRONMENT || + global.process.env.NODE_ENV; -function version () { - var numbers = process.version.replace('v', '').split('.') - return { - major: parseInt(numbers[0], 10), - minor: parseInt(numbers[1], 10), - patch: parseInt(numbers[2], 10) - } -} + // autoBreadcrumbs: true enables all, autoBreadcrumbs: false disables all + // autoBreadcrumbs: { http: true } enables a single type + this.autoBreadcrumbs = options.autoBreadcrumbs || false; + // default to 30, don't allow higher than 100 + this.maxBreadcrumbs = Math.max(0, Math.min(options.maxBreadcrumbs || 30, 100)); -exports.paramsHaveRequestBody = paramsHaveRequestBody -exports.safeStringify = safeStringify -exports.md5 = md5 -exports.isReadStream = isReadStream -exports.toBase64 = toBase64 -exports.copy = copy -exports.version = version -exports.defer = defer + this.captureUnhandledRejections = options.captureUnhandledRejections; + this.loggerName = options.logger; + this.dataCallback = options.dataCallback; + this.shouldSendCallback = options.shouldSendCallback; + this.sampleRate = typeof options.sampleRate === 'undefined' ? 1 : options.sampleRate; + this.maxReqQueueCount = options.maxReqQueueCount || 100; + this.parseUser = options.parseUser; + this.stacktrace = options.stacktrace || false; + if (!this.dsn) { + utils.consoleAlert('no DSN provided, error reporting disabled'); + } -/***/ }), -/* 1321 */ -/***/ (function(module, exports, __webpack_require__) { + if (this.dsn.protocol === 'https') { + // In case we want to provide our own SSL certificates / keys + this.ca = options.ca || null; + } -"use strict"; + // enabled if a dsn is set + this._enabled = !!this.dsn; + var globalContext = (this._globalContext = {}); + if (options.tags) { + globalContext.tags = options.tags; + } + if (options.extra) { + globalContext.extra = options.extra; + } -var http = __webpack_require__(98) -var https = __webpack_require__(99) -var url = __webpack_require__(83) -var util = __webpack_require__(9) -var stream = __webpack_require__(100) -var zlib = __webpack_require__(101) -var aws2 = __webpack_require__(102) -var aws4 = __webpack_require__(103) -var httpSignature = __webpack_require__(106) -var mime = __webpack_require__(168) -var caseless = __webpack_require__(161) -var ForeverAgent = __webpack_require__(162) -var FormData = __webpack_require__(164) -var extend = __webpack_require__(79) -var isstream = __webpack_require__(182) -var isTypedArray = __webpack_require__(183).strict -var helpers = __webpack_require__(1320) -var cookies = __webpack_require__(1312) -var getProxyFromURI = __webpack_require__(1322) -var Querystring = __webpack_require__(1323).Querystring -var Har = __webpack_require__(1329).Har -var Auth = __webpack_require__(1330).Auth -var OAuth = __webpack_require__(1334).OAuth -var hawk = __webpack_require__(1335) -var Multipart = __webpack_require__(1336).Multipart -var Redirect = __webpack_require__(1337).Redirect -var Tunnel = __webpack_require__(1338).Tunnel -var now = __webpack_require__(272) -var Buffer = __webpack_require__(95).Buffer + this.onFatalError = this.defaultOnFatalError = function(err, sendErr, eventId) { + console.error(err && err.stack ? err.stack : err); + global.process.exit(1); + }; + this.uncaughtErrorHandler = this.makeErrorHandler(); -var safeStringify = helpers.safeStringify -var isReadStream = helpers.isReadStream -var toBase64 = helpers.toBase64 -var defer = helpers.defer -var copy = helpers.copy -var version = helpers.version -var globalCookieJar = cookies.jar() + this.on('error', function(err) { + utils.consoleAlert('failed to send exception to sentry: ' + err.message); + }); -var globalPool = {} + return this; + }, -function filterForNonReserved (reserved, options) { - // Filter out properties that are not reserved. - // Reserved values are passed in at call site. + install: function install(cb) { + if (this.installed) return this; - var object = {} - for (var i in options) { - var notReserved = (reserved.indexOf(i) === -1) - if (notReserved) { - object[i] = options[i] + if (typeof cb === 'function') { + this.onFatalError = cb; } - } - return object -} -function filterOutReservedFunctions (reserved, options) { - // Filter out properties that are functions and are reserved. - // Reserved values are passed in at call site. + global.process.on('uncaughtException', this.uncaughtErrorHandler); - var object = {} - for (var i in options) { - var isReserved = !(reserved.indexOf(i) === -1) - var isFunction = (typeof options[i] === 'function') - if (!(isReserved && isFunction)) { - object[i] = options[i] + if (this.captureUnhandledRejections) { + var self = this; + global.process.on('unhandledRejection', function(reason, promise) { + var context = (promise.domain && promise.domain.sentryContext) || {}; + context.extra = context.extra || {}; + context.extra.unhandledPromiseRejection = true; + self.captureException(reason, context, function(sendErr, eventId) { + if (!sendErr) { + var reasonMessage = (reason && reason.message) || reason; + utils.consoleAlert( + 'unhandledRejection captured\n' + + 'Event ID: ' + + eventId + + '\n' + + 'Reason: ' + + reasonMessage + ); + } + }); + }); } - } - return object -} -// Return a simpler request object to allow serialization -function requestToJSON () { - var self = this - return { - uri: self.uri, - method: self.method, - headers: self.headers - } -} + instrumentor.instrument(this, this.autoBreadcrumbs); -// Return a simpler response object to allow serialization -function responseToJSON () { - var self = this - return { - statusCode: self.statusCode, - body: self.body, - headers: self.headers, - request: requestToJSON.call(self.request) - } -} + this.installed = true; -function Request (options) { - // if given the method property in options, set property explicitMethod to true + return this; + }, - // extend the Request instance with any non-reserved properties - // remove any reserved functions from the options object - // set Request instance to be readable and writable - // call init + uninstall: function uninstall() { + if (!this.installed) return this; - var self = this + instrumentor.deinstrument(this); - // start with HAR, then override with additional options - if (options.har) { - self._har = new Har(self) - options = self._har.options(options) - } + // todo: this works for tests for now, but isn't what we ultimately want to be doing + global.process.removeAllListeners('uncaughtException'); + global.process.removeAllListeners('unhandledRejection'); - stream.Stream.call(self) - var reserved = Object.keys(Request.prototype) - var nonReserved = filterForNonReserved(reserved, options) + this.installed = false; - extend(self, nonReserved) - options = filterOutReservedFunctions(reserved, options) + return this; + }, - self.readable = true - self.writable = true - if (options.method) { - self.explicitMethod = true - } - self._qs = new Querystring(self) - self._auth = new Auth(self) - self._oauth = new OAuth(self) - self._multipart = new Multipart(self) - self._redirect = new Redirect(self) - self._tunnel = new Tunnel(self) - self.init(options) -} + makeErrorHandler: function() { + var self = this; + var caughtFirstError = false; + var caughtSecondError = false; + var calledFatalError = false; + var firstError; + return function(err) { + if (!caughtFirstError) { + // this is the first uncaught error and the ultimate reason for shutting down + // we want to do absolutely everything possible to ensure it gets captured + // also we want to make sure we don't go recursion crazy if more errors happen after this one + firstError = err; + caughtFirstError = true; + self.captureException(err, {level: 'fatal'}, function(sendErr, eventId) { + if (!calledFatalError) { + calledFatalError = true; + self.onFatalError(err, sendErr, eventId); + } + }); + } else if (calledFatalError) { + // we hit an error *after* calling onFatalError - pretty boned at this point, just shut it down + utils.consoleAlert( + 'uncaught exception after calling fatal error shutdown callback - this is bad! forcing shutdown' + ); + self.defaultOnFatalError(err); + } else if (!caughtSecondError) { + // two cases for how we can hit this branch: + // - capturing of first error blew up and we just caught the exception from that + // - quit trying to capture, proceed with shutdown + // - a second independent error happened while waiting for first error to capture + // - want to avoid causing premature shutdown before first error capture finishes + // it's hard to immediately tell case 1 from case 2 without doing some fancy/questionable domain stuff + // so let's instead just delay a bit before we proceed with our action here + // in case 1, we just wait a bit unnecessarily but ultimately do the same thing + // in case 2, the delay hopefully made us wait long enough for the capture to finish + // two potential nonideal outcomes: + // nonideal case 1: capturing fails fast, we sit around for a few seconds unnecessarily before proceeding correctly by calling onFatalError + // nonideal case 2: case 2 happens, 1st error is captured but slowly, timeout completes before capture and we treat second error as the sendErr of (nonexistent) failure from trying to capture first error + // note that after hitting this branch, we might catch more errors where (caughtSecondError && !calledFatalError) + // we ignore them - they don't matter to us, we're just waiting for the second error timeout to finish + caughtSecondError = true; + setTimeout(function() { + if (!calledFatalError) { + // it was probably case 1, let's treat err as the sendErr and call onFatalError + calledFatalError = true; + self.onFatalError(firstError, err); + } else { + // it was probably case 2, our first error finished capturing while we waited, cool, do nothing + } + }, (self.sendTimeout + 1) * 1000); // capturing could take at least sendTimeout to fail, plus an arbitrary second for how long it takes to collect surrounding source etc + } + }; + }, -util.inherits(Request, stream.Stream) + generateEventId: function generateEventId() { + return uuid().replace(/-/g, ''); + }, -// Debugging -Request.debug = process.env.NODE_DEBUG && /\brequest\b/.test(process.env.NODE_DEBUG) -function debug () { - if (Request.debug) { - console.error('REQUEST %s', util.format.apply(util, arguments)) - } -} -Request.prototype.debug = debug + process: function process(eventId, kwargs, cb) { + // prod codepaths shouldn't hit this branch, for testing + if (typeof eventId === 'object') { + cb = kwargs; + kwargs = eventId; + eventId = this.generateEventId(); + } -Request.prototype.init = function (options) { - // init() contains all the code to setup the request object. - // the actual outgoing request is not started until start() is called - // this function is called from both the constructor and on redirect. - var self = this - if (!options) { - options = {} - } - self.headers = self.headers ? copy(self.headers) : {} + var domainContext = (domain.active && domain.active.sentryContext) || {}; + var globalContext = this._globalContext || {}; + kwargs.user = extend({}, globalContext.user, domainContext.user, kwargs.user); + kwargs.tags = extend({}, globalContext.tags, domainContext.tags, kwargs.tags); + kwargs.extra = extend({}, globalContext.extra, domainContext.extra, kwargs.extra); + // Perform a shallow copy of breadcrums to not send one that we'll capture below through as well + kwargs.breadcrumbs = { + values: + (domainContext.breadcrumbs && domainContext.breadcrumbs.slice()) || + (globalContext.breadcrumbs && globalContext.breadcrumbs.slice()) || + [] + }; - // Delete headers with value undefined since they break - // ClientRequest.OutgoingMessage.setHeader in node 0.12 - for (var headerName in self.headers) { - if (typeof self.headers[headerName] === 'undefined') { - delete self.headers[headerName] + /* + `request` is our specified property name for the http interface: https://docs.sentry.io/clientdev/interfaces/http/ + `req` is the conventional name for a request object in node/express/etc + we want to enable someone to pass a `request` property to kwargs according to http interface + but also want to provide convenience for passing a req object and having us parse it out + so we only parse a `req` property if the `request` property is absent/empty (and hence we won't clobber) + parseUser returns a partial kwargs object with a `request` property and possibly a `user` property + */ + var request = this._createRequestObject( + globalContext.request, + domainContext.request, + kwargs.request + ); + delete kwargs.request; + + if (Object.keys(request).length === 0) { + request = this._createRequestObject( + globalContext.req, + domainContext.req, + kwargs.req + ); + delete kwargs.req; } - } - caseless.httpify(self, self.headers) + if (Object.keys(request).length > 0) { + var parseUser = Object.keys(kwargs.user).length === 0 ? this.parseUser : false; + extend(kwargs, parsers.parseRequest(request, parseUser)); + } else { + kwargs.request = {}; + } - if (!self.method) { - self.method = options.method || 'GET' - } - if (!self.localAddress) { - self.localAddress = options.localAddress - } + kwargs.modules = utils.getModules(); + kwargs.server_name = kwargs.server_name || this.name; - self._qs.init(options) + if (typeof global.process.version !== 'undefined') { + kwargs.extra.node = global.process.version; + } - debug(options) - if (!self.pool && self.pool !== false) { - self.pool = globalPool - } - self.dests = self.dests || [] - self.__isRequestRequest = true + kwargs.environment = kwargs.environment || this.environment; + kwargs.logger = kwargs.logger || this.loggerName; + kwargs.event_id = eventId; + kwargs.timestamp = new Date().toISOString().split('.')[0]; + kwargs.project = this.dsn && this.dsn.project_id; + kwargs.platform = 'node'; + kwargs.release = this.release; - // Protect against double callback - if (!self._callback && self.callback) { - self._callback = self.callback - self.callback = function () { - if (self._callbackCalled) { - return // Print a warning maybe? + // Cleanup empty properties before sending them to the server + Object.keys(kwargs).forEach(function(key) { + if (kwargs[key] == null || kwargs[key] === '') { + delete kwargs[key]; } - self._callbackCalled = true - self._callback.apply(self, arguments) + }); + + if (this.dataCallback) { + kwargs = this.dataCallback(kwargs); } - self.on('error', self.callback.bind()) - self.on('complete', self.callback.bind(self, null)) - } - // People use this property instead all the time, so support it - if (!self.uri && self.url) { - self.uri = self.url - delete self.url - } + // Capture breadcrumb before sending it, as we also want to have it even when + // it was dropped due to sampleRate or shouldSendCallback + this.captureBreadcrumb({ + category: 'sentry', + message: kwargs.message, + event_id: kwargs.event_id, + level: kwargs.level || 'error' // presume error unless specified + }); - // If there's a baseUrl, then use it as the base URL (i.e. uri must be - // specified as a relative path and is appended to baseUrl). - if (self.baseUrl) { - if (typeof self.baseUrl !== 'string') { - return self.emit('error', new Error('options.baseUrl must be a string')) - } + var shouldSend = true; + if (!this._enabled) shouldSend = false; + if (this.shouldSendCallback && !this.shouldSendCallback(kwargs)) shouldSend = false; + if (Math.random() >= this.sampleRate) shouldSend = false; - if (typeof self.uri !== 'string') { - return self.emit('error', new Error('options.uri must be a string when using options.baseUrl')) + if (shouldSend) { + this.send(kwargs, cb); + } else { + // wish there was a good way to communicate to cb why we didn't send; worth considering cb api change? + // could be shouldSendCallback, could be disabled, could be sample rate + // avoiding setImmediate here because node 0.8 + cb && + setTimeout(function() { + cb(null, eventId); + }, 0); } + }, - if (self.uri.indexOf('//') === 0 || self.uri.indexOf('://') !== -1) { - return self.emit('error', new Error('options.uri must be a path when using options.baseUrl')) - } + send: function send(kwargs, cb) { + var self = this; + var skwargs = stringify(kwargs); + var eventId = kwargs.event_id; - // Handle all cases to make sure that there's only one slash between - // baseUrl and uri. - var baseUrlEndsWithSlash = self.baseUrl.lastIndexOf('/') === self.baseUrl.length - 1 - var uriStartsWithSlash = self.uri.indexOf('/') === 0 + zlib.deflate(skwargs, function(err, buff) { + var message = buff.toString('base64'), + timestamp = new Date().getTime(), + headers = { + 'X-Sentry-Auth': utils.getAuthHeader( + timestamp, + self.dsn.public_key, + self.dsn.private_key + ), + 'Content-Type': 'application/octet-stream', + 'Content-Length': message.length + }; - if (baseUrlEndsWithSlash && uriStartsWithSlash) { - self.uri = self.baseUrl + self.uri.slice(1) - } else if (baseUrlEndsWithSlash || uriStartsWithSlash) { - self.uri = self.baseUrl + self.uri - } else if (self.uri === '') { - self.uri = self.baseUrl + self.transport.send(self, message, headers, eventId, cb); + }); + }, + + captureMessage: function captureMessage(message, kwargs, cb) { + if (!cb && typeof kwargs === 'function') { + cb = kwargs; + kwargs = {}; } else { - self.uri = self.baseUrl + '/' + self.uri + kwargs = utils.isPlainObject(kwargs) ? extend({}, kwargs) : {}; } - delete self.baseUrl - } - // A URI is needed by this point, emit error if we haven't been able to get one - if (!self.uri) { - return self.emit('error', new Error('options.uri is a required argument')) - } + var eventId = this.generateEventId(); - // If a string URI/URL was given, parse it into a URL object - if (typeof self.uri === 'string') { - self.uri = url.parse(self.uri) - } + if (this.stacktrace) { + var ex = new Error(message); - // Some URL objects are not from a URL parsed string and need href added - if (!self.uri.href) { - self.uri.href = url.format(self.uri) - } + console.log(ex); - // DEPRECATED: Warning for users of the old Unix Sockets URL Scheme - if (self.uri.protocol === 'unix:') { - return self.emit('error', new Error('`unix://` URL scheme is no longer supported. Please use the format `http://unix:SOCKET:PATH`')) - } + utils.parseStack( + ex, + function(frames) { + // We trim last frame, as it's our `new Error(message)` statement itself, which is redundant + kwargs.stacktrace = { + frames: frames.slice(0, -1) + }; + this.process(eventId, parsers.parseText(message, kwargs), cb); + }.bind(this) + ); + } else { + this.process(eventId, parsers.parseText(message, kwargs), cb); + } - // Support Unix Sockets - if (self.uri.host === 'unix') { - self.enableUnixSocket() - } + return eventId; + }, - if (self.strictSSL === false) { - self.rejectUnauthorized = false - } + captureException: function captureException(err, kwargs, cb) { + if (!cb && typeof kwargs === 'function') { + cb = kwargs; + kwargs = {}; + } else { + kwargs = utils.isPlainObject(kwargs) ? extend({}, kwargs) : {}; + } - if (!self.uri.pathname) { self.uri.pathname = '/' } + if (!utils.isError(err)) { + if (utils.isPlainObject(err)) { + // This will allow us to group events based on top-level keys + // which is much better than creating new group when any key/value change + var keys = Object.keys(err).sort(); + var message = + 'Non-Error exception captured with keys: ' + + utils.serializeKeysForMessage(keys); + kwargs = extend(kwargs, { + message: message, + fingerprint: [md5(keys)], + extra: kwargs.extra || {} + }); + kwargs.extra.__serialized__ = utils.serializeException(err); - if (!(self.uri.host || (self.uri.hostname && self.uri.port)) && !self.uri.isUnix) { - // Invalid URI: it may generate lot of bad errors, like 'TypeError: Cannot call method `indexOf` of undefined' in CookieJar - // Detect and reject it as soon as possible - var faultyUri = url.format(self.uri) - var message = 'Invalid URI "' + faultyUri + '"' - if (Object.keys(options).length === 0) { - // No option ? This can be the sign of a redirect - // As this is a case where the user cannot do anything (they didn't call request directly with this URL) - // they should be warned that it can be caused by a redirection (can save some hair) - message += '. This can be caused by a crappy redirection.' + err = new Error(message); + } else { + // This handles when someone does: + // throw "something awesome"; + // We synthesize an Error here so we can extract a (rough) stack trace. + err = new Error(err); + } } - // This error was fatal - self.abort() - return self.emit('error', new Error(message)) - } - if (!self.hasOwnProperty('proxy')) { - self.proxy = getProxyFromURI(self.uri) - } + var self = this; + var eventId = this.generateEventId(); + parsers.parseError(err, kwargs, function(kw) { + self.process(eventId, kw, cb); + }); - self.tunnel = self._tunnel.isEnabled() - if (self.proxy) { - self._tunnel.setup(options) - } + return eventId; + }, - self._redirect.onRequest(options) + context: function(ctx, func) { + if (!func && typeof ctx === 'function') { + func = ctx; + ctx = {}; + } - self.setHost = false - if (!self.hasHeader('host')) { - var hostHeaderName = self.originalHostHeaderName || 'host' - self.setHeader(hostHeaderName, self.uri.host) - // Drop :port suffix from Host header if known protocol. - if (self.uri.port) { - if ((self.uri.port === '80' && self.uri.protocol === 'http:') || - (self.uri.port === '443' && self.uri.protocol === 'https:')) { - self.setHeader(hostHeaderName, self.uri.hostname) - } + // todo/note: raven-js takes an args param to do apply(this, args) + // i don't think it's correct/necessary to bind this to the wrap call + // and i don't know if we need to support the args param; it's undocumented + return this.wrap(ctx, func).apply(null); + }, + + wrap: function(options, func) { + if (!this.installed) { + utils.consoleAlertOnce( + 'Raven has not been installed, therefore no breadcrumbs will be captured. Call `Raven.config(...).install()` to fix this.' + ); + } + if (!func && typeof options === 'function') { + func = options; + options = {}; } - self.setHost = true - } - self.jar(self._jar || options.jar) + var wrapDomain = domain.create(); + // todo: better property name than sentryContext, maybe __raven__ or sth? + wrapDomain.sentryContext = options; - if (!self.uri.port) { - if (self.uri.protocol === 'http:') { self.uri.port = 80 } else if (self.uri.protocol === 'https:') { self.uri.port = 443 } - } + wrapDomain.on('error', this.uncaughtErrorHandler); + var wrapped = wrapDomain.bind(func); - if (self.proxy && !self.tunnel) { - self.port = self.proxy.port - self.host = self.proxy.hostname - } else { - self.port = self.uri.port - self.host = self.uri.hostname - } + for (var property in func) { + if ({}.hasOwnProperty.call(func, property)) { + wrapped[property] = func[property]; + } + } + wrapped.prototype = func.prototype; + wrapped.__raven__ = true; + wrapped.__inner__ = func; + // note: domain.bind sets wrapped.domain, but it's not documented, unsure if we should rely on that + wrapped.__domain__ = wrapDomain; - if (options.form) { - self.form(options.form) - } + return wrapped; + }, - if (options.formData) { - var formData = options.formData - var requestForm = self.form() - var appendFormValue = function (key, value) { - if (value && value.hasOwnProperty('value') && value.hasOwnProperty('options')) { - requestForm.append(key, value.value, value.options) + interceptErr: function(options, func) { + if (!func && typeof options === 'function') { + func = options; + options = {}; + } + var self = this; + var wrapped = function() { + var err = arguments[0]; + if (utils.isError(err)) { + self.captureException(err, options); } else { - requestForm.append(key, value) + func.apply(null, arguments); + } + }; + + // repetitive with wrap + for (var property in func) { + if ({}.hasOwnProperty.call(func, property)) { + wrapped[property] = func[property]; } } - for (var formKey in formData) { - if (formData.hasOwnProperty(formKey)) { - var formValue = formData[formKey] - if (formValue instanceof Array) { - for (var j = 0; j < formValue.length; j++) { - appendFormValue(formKey, formValue[j]) - } - } else { - appendFormValue(formKey, formValue) - } + wrapped.prototype = func.prototype; + wrapped.__raven__ = true; + wrapped.__inner__ = func; + + return wrapped; + }, + + setContext: function setContext(ctx) { + if (domain.active) { + domain.active.sentryContext = ctx; + } else { + this._globalContext = ctx; + } + return this; + }, + + mergeContext: function mergeContext(ctx) { + extend(this.getContext(), ctx); + return this; + }, + + getContext: function getContext() { + if (domain.active) { + if (!domain.active.sentryContext) { + domain.active.sentryContext = {}; + utils.consoleAlert('sentry context not found on active domain'); } + return domain.active.sentryContext; } - } + return this._globalContext; + }, - if (options.qs) { - self.qs(options.qs) - } + setCallbackHelper: function(propertyName, callback) { + var original = this[propertyName]; + if (typeof callback === 'function') { + this[propertyName] = function(data) { + return callback(data, original); + }; + } else { + this[propertyName] = callback; + } - if (self.uri.path) { - self.path = self.uri.path - } else { - self.path = self.uri.pathname + (self.uri.search || '') - } + return this; + }, - if (self.path.length === 0) { - self.path = '/' - } + /* + * Set the dataCallback option + * + * @param {function} callback The callback to run which allows the + * data blob to be mutated before sending + * @return {Raven} + */ + setDataCallback: function(callback) { + return this.setCallbackHelper('dataCallback', callback); + }, - // Auth must happen last in case signing is dependent on other headers - if (options.aws) { - self.aws(options.aws) - } + /* + * Set the shouldSendCallback option + * + * @param {function} callback The callback to run which allows + * introspecting the blob before sending + * @return {Raven} + */ + setShouldSendCallback: function(callback) { + return this.setCallbackHelper('shouldSendCallback', callback); + }, - if (options.hawk) { - self.hawk(options.hawk) - } + requestHandler: function() { + var self = this; + return function ravenRequestMiddleware(req, res, next) { + self.context({req: req}, function() { + domain.active.add(req); + domain.active.add(res); + next(); + }); + }; + }, - if (options.httpSignature) { - self.httpSignature(options.httpSignature) - } + errorHandler: function() { + var self = this; + return function ravenErrorMiddleware(err, req, res, next) { + var status = + err.status || + err.statusCode || + err.status_code || + (err.output && err.output.statusCode) || + 500; - if (options.auth) { - if (Object.prototype.hasOwnProperty.call(options.auth, 'username')) { - options.auth.user = options.auth.username + // skip anything not marked as an internal server error + if (status < 500) return next(err); + + var eventId = self.captureException(err, {req: req}); + res.sentry = eventId; + return next(err); + }; + }, + + captureBreadcrumb: function(breadcrumb) { + // Avoid capturing global-scoped breadcrumbs before instrumentation finishes + if (!this.installed) return; + + breadcrumb = extend( + { + timestamp: +new Date() / 1000 + }, + breadcrumb + ); + var currCtx = this.getContext(); + if (!currCtx.breadcrumbs) currCtx.breadcrumbs = []; + currCtx.breadcrumbs.push(breadcrumb); + if (currCtx.breadcrumbs.length > this.maxBreadcrumbs) { + currCtx.breadcrumbs.shift(); } - if (Object.prototype.hasOwnProperty.call(options.auth, 'password')) { - options.auth.pass = options.auth.password + this.setContext(currCtx); + }, + + _createRequestObject: function() { + /** + * When using proxy, some of the attributes of req/request objects are non-enumerable. + * To make sure, that they are still available to us after we consolidate our sources + * (eg. globalContext.request + domainContext.request + kwargs.request), + * we manually pull them out from original objects. + * + * Same scenario happens when some frameworks (eg. Koa) decide to use request within + * request. eg `this.request.req`, which adds aliases to the main `request` object. + * By manually reassigning them here, we don't need to add additional checks + * like `req.method || (req.req && req.req.method)` + * + * We don't use Object.assign/extend as it's only merging over objects own properties, + * and we don't want to go through all of the properties as well, as we simply don't + * need all of them. + **/ + var sources = Array.from(arguments).filter(function(source) { + return Object.prototype.toString.call(source) === '[object Object]'; + }); + sources = [{}].concat(sources); + var request = extend.apply(null, sources); + var nonEnumerables = [ + 'headers', + 'hostname', + 'ip', + 'method', + 'protocol', + 'query', + 'secure', + 'url' + ]; + + nonEnumerables.forEach(function(key) { + sources.forEach(function(source) { + if (source[key]) request[key] = source[key]; + }); + }); + + /** + * Check for 'host' *only* after we checked for 'hostname' first. + * This way we can avoid the noise coming from Express deprecation warning + * https://github.com/expressjs/express/blob/b97faff6e2aa4d34d79485fe4331cb0eec13ad57/lib/request.js#L450-L452 + * REF: https://github.com/getsentry/raven-node/issues/96#issuecomment-354748884 + **/ + if (!request.hasOwnProperty('hostname')) { + sources.forEach(function(source) { + if (source.host) request.host = source.host; + }); } - self.auth( - options.auth.user, - options.auth.pass, - options.auth.sendImmediately, - options.auth.bearer - ) + return request; } +}); - if (self.gzip && !self.hasHeader('accept-encoding')) { - self.setHeader('accept-encoding', 'gzip, deflate') - } +// Maintain old API compat, need to make sure arguments length is preserved +function Client(dsn, options) { + if (dsn instanceof Client) return dsn; + var ravenInstance = new Raven(); + return ravenInstance.config.apply(ravenInstance, arguments); +} +nodeUtil.inherits(Client, Raven); - if (self.uri.auth && !self.hasHeader('authorization')) { - var uriAuthPieces = self.uri.auth.split(':').map(function (item) { return self._qs.unescape(item) }) - self.auth(uriAuthPieces[0], uriAuthPieces.slice(1).join(':'), true) - } +// Singleton-by-default but not strictly enforced +// todo these extra export props are sort of an adhoc mess, better way to manage? +var defaultInstance = new Raven(); +defaultInstance.Client = Client; +defaultInstance.version = __webpack_require__(1463).version; +defaultInstance.disableConsoleAlerts = utils.disableConsoleAlerts; - if (!self.tunnel && self.proxy && self.proxy.auth && !self.hasHeader('proxy-authorization')) { - var proxyAuthPieces = self.proxy.auth.split(':').map(function (item) { return self._qs.unescape(item) }) - var authHeader = 'Basic ' + toBase64(proxyAuthPieces.join(':')) - self.setHeader('proxy-authorization', authHeader) - } +module.exports = defaultInstance; - if (self.proxy && !self.tunnel) { - self.path = (self.uri.protocol + '//' + self.uri.host + self.path) - } - if (options.json) { - self.json(options.json) - } - if (options.multipart) { - self.multipart(options.multipart) +/***/ }), +/* 1455 */ +/***/ (function(module, exports, __webpack_require__) { + +"use strict"; + + +/* + json-stringify-safe + Like JSON.stringify, but doesn't throw on circular references. + + Originally forked from https://github.com/isaacs/json-stringify-safe + version 5.0.1 on 2017-09-21 and modified to handle Errors serialization. + Tests for this are in test/vendor. + + ISC license: https://github.com/isaacs/json-stringify-safe/blob/master/LICENSE + */ + +exports = module.exports = stringify; +exports.getSerialize = serializer; + +function stringify(obj, replacer, spaces, cycleReplacer) { + return JSON.stringify(obj, serializer(replacer, cycleReplacer), spaces); +} + +// https://github.com/ftlabs/js-abbreviate/blob/fa709e5f139e7770a71827b1893f22418097fbda/index.js#L95-L106 +function stringifyError(value) { + var err = { + // These properties are implemented as magical getters and don't show up in for in + stack: value.stack, + message: value.message, + name: value.name + }; + + for (var i in value) { + if (Object.prototype.hasOwnProperty.call(value, i)) { + err[i] = value[i]; + } } - if (options.time) { - self.timing = true - - // NOTE: elapsedTime is deprecated in favor of .timings - self.elapsedTime = self.elapsedTime || 0 - } + return err; +} - function setContentLength () { - if (isTypedArray(self.body)) { - self.body = Buffer.from(self.body) - } +function serializer(replacer, cycleReplacer) { + var stack = []; + var keys = []; - if (!self.hasHeader('content-length')) { - var length - if (typeof self.body === 'string') { - length = Buffer.byteLength(self.body) - } else if (Array.isArray(self.body)) { - length = self.body.reduce(function (a, b) { return a + b.length }, 0) - } else { - length = self.body.length + if (cycleReplacer == null) { + cycleReplacer = function(key, value) { + if (stack[0] === value) { + return '[Circular ~]'; } + return '[Circular ~.' + keys.slice(0, stack.indexOf(value)).join('.') + ']'; + }; + } - if (length) { - self.setHeader('content-length', length) - } else { - self.emit('error', new Error('Argument error, options.body.')) + return function(key, value) { + if (stack.length > 0) { + var thisPos = stack.indexOf(this); + ~thisPos ? stack.splice(thisPos + 1) : stack.push(this); + ~thisPos ? keys.splice(thisPos, Infinity, key) : keys.push(key); + + if (~stack.indexOf(value)) { + value = cycleReplacer.call(this, key, value); } + } else { + stack.push(value); } - } - if (self.body && !isstream(self.body)) { - setContentLength() - } - if (options.oauth) { - self.oauth(options.oauth) - } else if (self._oauth.params && self.hasHeader('authorization')) { - self.oauth(self._oauth.params) - } + return replacer == null + ? value instanceof Error ? stringifyError(value) : value + : replacer.call(this, key, value); + }; +} - var protocol = self.proxy && !self.tunnel ? self.proxy.protocol : self.uri.protocol - var defaultModules = {'http:': http, 'https:': https} - var httpModules = self.httpModules || {} - self.httpModule = httpModules[protocol] || defaultModules[protocol] +/***/ }), +/* 1456 */ +/***/ (function(module, exports, __webpack_require__) { - if (!self.httpModule) { - return self.emit('error', new Error('Invalid protocol: ' + protocol)) - } +"use strict"; - if (options.ca) { - self.ca = options.ca - } - if (!self.agent) { - if (options.agentOptions) { - self.agentOptions = options.agentOptions - } +var cookie = __webpack_require__(1457); +var urlParser = __webpack_require__(83); +var stringify = __webpack_require__(1455); - if (options.agentClass) { - self.agentClass = options.agentClass - } else if (options.forever) { - var v = version() - // use ForeverAgent in node 0.10- only - if (v.major === 0 && v.minor <= 10) { - self.agentClass = protocol === 'http:' ? ForeverAgent : ForeverAgent.SSL - } else { - self.agentClass = self.httpModule.Agent - self.agentOptions = self.agentOptions || {} - self.agentOptions.keepAlive = true - } - } else { - self.agentClass = self.httpModule.Agent - } - } +var utils = __webpack_require__(1458); - if (self.pool === false) { - self.agent = false - } else { - self.agent = self.agent || self.getNewAgent() - } +module.exports.parseText = function parseText(message, kwargs) { + kwargs = kwargs || {}; + kwargs.message = message; - self.on('pipe', function (src) { - if (self.ntick && self._started) { - self.emit('error', new Error('You cannot pipe to this stream after the outbound request has started.')) + return kwargs; +}; + +module.exports.parseError = function parseError(err, kwargs, cb) { + utils.parseStack(err, function(frames) { + var name = + ({}.hasOwnProperty.call(err, 'name') ? err.name : err.constructor.name) + ''; + if (typeof kwargs.message === 'undefined') { + kwargs.message = name + ': ' + (err.message || '<no message>'); } - self.src = src - if (isReadStream(src)) { - if (!self.hasHeader('content-type')) { - self.setHeader('content-type', mime.lookup(src.path)) - } - } else { - if (src.headers) { - for (var i in src.headers) { - if (!self.hasHeader(i)) { - self.setHeader(i, src.headers[i]) - } + kwargs.exception = [ + { + type: name, + value: err.message, + stacktrace: { + frames: frames } } - if (self._json && !self.hasHeader('content-type')) { - self.setHeader('content-type', 'application/json') - } - if (src.method && !self.explicitMethod) { - self.method = src.method + ]; + + // Save additional error properties to `extra` under the error type (e.g. `extra.AttributeError`) + var extraErrorProps; + for (var key in err) { + if (err.hasOwnProperty(key)) { + if (key !== 'name' && key !== 'message' && key !== 'stack' && key !== 'domain') { + extraErrorProps = extraErrorProps || {}; + extraErrorProps[key] = err[key]; + } } } - - // self.on('pipe', function () { - // console.error('You have already piped to this stream. Pipeing twice is likely to break the request.') - // }) - }) - - defer(function () { - if (self._aborted) { - return + if (extraErrorProps) { + kwargs.extra = kwargs.extra || {}; + kwargs.extra[name] = extraErrorProps; } - var end = function () { - if (self._form) { - if (!self._auth.hasAuth) { - self._form.pipe(self) - } else if (self._auth.hasAuth && self._auth.sentAuth) { - self._form.pipe(self) - } - } - if (self._multipart && self._multipart.chunked) { - self._multipart.body.pipe(self) - } - if (self.body) { - if (isstream(self.body)) { - self.body.pipe(self) - } else { - setContentLength() - if (Array.isArray(self.body)) { - self.body.forEach(function (part) { - self.write(part) - }) - } else { - self.write(self.body) - } - self.end() - } - } else if (self.requestBodyStream) { - console.warn('options.requestBodyStream is deprecated, please pass the request object to stream.pipe.') - self.requestBodyStream.pipe(self) - } else if (!self.src) { - if (self._auth.hasAuth && !self._auth.sentAuth) { - self.end() - return - } - if (self.method !== 'GET' && typeof self.method !== 'undefined') { - self.setHeader('content-length', 0) + if (!kwargs.transaction && !kwargs.culprit) { + for (var n = frames.length - 1; n >= 0; n--) { + if (frames[n].in_app) { + kwargs.transaction = utils.getTransaction(frames[n]); + break; } - self.end() } } - if (self._form && !self.hasHeader('content-length')) { - // Before ending the request, we had to compute the length of the whole form, asyncly - self.setHeader(self._form.getHeaders(), true) - self._form.getLength(function (err, length) { - if (!err && !isNaN(length)) { - self.setHeader('content-length', length) - } - end() - }) - } else { - end() - } + cb(kwargs); + }); +}; - self.ntick = true - }) -} +module.exports.parseRequest = function parseRequest(req, parseUser) { + var kwargs = {}; -Request.prototype.getNewAgent = function () { - var self = this - var Agent = self.agentClass - var options = {} - if (self.agentOptions) { - for (var i in self.agentOptions) { - options[i] = self.agentOptions[i] - } - } - if (self.ca) { - options.ca = self.ca - } - if (self.ciphers) { - options.ciphers = self.ciphers - } - if (self.secureProtocol) { - options.secureProtocol = self.secureProtocol - } - if (self.secureOptions) { - options.secureOptions = self.secureOptions - } - if (typeof self.rejectUnauthorized !== 'undefined') { - options.rejectUnauthorized = self.rejectUnauthorized - } + // headers: + // node, express: req.headers + // koa: req.header + var headers = req.headers || req.header || {}; - if (self.cert && self.key) { - options.key = self.key - options.cert = self.cert - } + // method: + // node, express, koa: req.method + var method = req.method; - if (self.pfx) { - options.pfx = self.pfx - } + // host: + // express: req.hostname in > 4 and req.host in < 4 + // koa: req.host + // node: req.headers.host + var host = req.hostname || req.host || headers.host || '<no host>'; - if (self.passphrase) { - options.passphrase = self.passphrase - } + // protocol: + // node: <n/a> + // express, koa: req.protocol + var protocol = + req.protocol === 'https' || req.secure || (req.socket || {}).encrypted + ? 'https' + : 'http'; - var poolKey = '' + // url (including path and query string): + // node, express: req.originalUrl + // koa: req.url + var originalUrl = req.originalUrl || req.url; - // different types of agents are in different pools - if (Agent !== self.httpModule.Agent) { - poolKey += Agent.name - } + // absolute url + var absoluteUrl = protocol + '://' + host + originalUrl; - // ca option is only relevant if proxy or destination are https - var proxy = self.proxy - if (typeof proxy === 'string') { - proxy = url.parse(proxy) - } - var isHttps = (proxy && proxy.protocol === 'https:') || this.uri.protocol === 'https:' + // query string: + // node: req.url (raw) + // express, koa: req.query + var query = req.query || urlParser.parse(originalUrl || '', true).query; - if (isHttps) { - if (options.ca) { - if (poolKey) { - poolKey += ':' - } - poolKey += options.ca - } + // cookies: + // node, express, koa: req.headers.cookie + var cookies = cookie.parse(headers.cookie || ''); - if (typeof options.rejectUnauthorized !== 'undefined') { - if (poolKey) { - poolKey += ':' - } - poolKey += options.rejectUnauthorized + // body data: + // node, express, koa: req.body + var data = req.body; + if (['GET', 'HEAD'].indexOf(method) === -1) { + if (typeof data === 'undefined') { + data = '<unavailable>'; } + } - if (options.cert) { - if (poolKey) { - poolKey += ':' - } - poolKey += options.cert.toString('ascii') + options.key.toString('ascii') - } + if (data && typeof data !== 'string' && {}.toString.call(data) !== '[object String]') { + // Make sure the request body is a string + data = stringify(data); + } - if (options.pfx) { - if (poolKey) { - poolKey += ':' - } - poolKey += options.pfx.toString('ascii') - } + // http interface + var http = { + method: method, + query_string: query, + headers: headers, + cookies: cookies, + data: data, + url: absoluteUrl + }; - if (options.ciphers) { - if (poolKey) { - poolKey += ':' - } - poolKey += options.ciphers - } + // expose http interface + kwargs.request = http; - if (options.secureProtocol) { - if (poolKey) { - poolKey += ':' + // user: typically found on req.user in express/passport patterns + // five cases for parseUser value: + // absent: grab only id, username, email from req.user + // false: capture nothing + // true: capture all keys from req.user + // array: provided whitelisted keys to grab from req.user + // function :: req -> user: custom parsing function + if (parseUser == null) parseUser = ['id', 'username', 'email']; + if (parseUser) { + var user = {}; + if (typeof parseUser === 'function') { + user = parseUser(req); + } else if (req.user) { + if (parseUser === true) { + for (var key in req.user) { + if ({}.hasOwnProperty.call(req.user, key)) { + user[key] = req.user[key]; + } + } + } else { + parseUser.forEach(function(fieldName) { + if ({}.hasOwnProperty.call(req.user, fieldName)) { + user[fieldName] = req.user[fieldName]; + } + }); } - poolKey += options.secureProtocol } - if (options.secureOptions) { - if (poolKey) { - poolKey += ':' - } - poolKey += options.secureOptions + // client ip: + // node: req.connection.remoteAddress + // express, koa: req.ip + var ip = req.ip || (req.connection && req.connection.remoteAddress); + if (ip) { + user.ip_address = ip; } - } - if (self.pool === globalPool && !poolKey && Object.keys(options).length === 0 && self.httpModule.globalAgent) { - // not doing anything special. Use the globalAgent - return self.httpModule.globalAgent + kwargs.user = user; } - // we're using a stored agent. Make sure it's protocol-specific - poolKey = self.uri.protocol + poolKey - - // generate a new agent for this setting if none yet exists - if (!self.pool[poolKey]) { - self.pool[poolKey] = new Agent(options) - // properly set maxSockets on new agents - if (self.pool.maxSockets) { - self.pool[poolKey].maxSockets = self.pool.maxSockets - } - } + return kwargs; +}; - return self.pool[poolKey] -} -Request.prototype.start = function () { - // start() is called once we are ready to send the outgoing HTTP request. - // this is usually called on the first write(), end() or on nextTick() - var self = this +/***/ }), +/* 1457 */ +/***/ (function(module, exports, __webpack_require__) { - if (self.timing) { - // All timings will be relative to this request's startTime. In order to do this, - // we need to capture the wall-clock start time (via Date), immediately followed - // by the high-resolution timer (via now()). While these two won't be set - // at the _exact_ same time, they should be close enough to be able to calculate - // high-resolution, monotonically non-decreasing timestamps relative to startTime. - var startTime = new Date().getTime() - var startTimeNow = now() - } +"use strict"; +/*! + * cookie + * Copyright(c) 2012-2014 Roman Shtylman + * Copyright(c) 2015 Douglas Christopher Wilson + * MIT Licensed + */ - if (self._aborted) { - return - } - self._started = true - self.method = self.method || 'GET' - self.href = self.uri.href - if (self.src && self.src.stat && self.src.stat.size && !self.hasHeader('content-length')) { - self.setHeader('content-length', self.src.stat.size) - } - if (self._aws) { - self.aws(self._aws, true) - } +/** + * Module exports. + * @public + */ - // We have a method named auth, which is completely different from the http.request - // auth option. If we don't remove it, we're gonna have a bad time. - var reqOptions = copy(self) - delete reqOptions.auth +exports.parse = parse; +exports.serialize = serialize; - debug('make request', self.uri.href) +/** + * Module variables. + * @private + */ - // node v6.8.0 now supports a `timeout` value in `http.request()`, but we - // should delete it for now since we handle timeouts manually for better - // consistency with node versions before v6.8.0 - delete reqOptions.timeout +var decode = decodeURIComponent; +var encode = encodeURIComponent; +var pairSplitRegExp = /; */; - try { - self.req = self.httpModule.request(reqOptions) - } catch (err) { - self.emit('error', err) - return - } +/** + * RegExp to match field-content in RFC 7230 sec 3.2 + * + * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ] + * field-vchar = VCHAR / obs-text + * obs-text = %x80-FF + */ - if (self.timing) { - self.startTime = startTime - self.startTimeNow = startTimeNow +var fieldContentRegExp = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/; - // Timing values will all be relative to startTime (by comparing to startTimeNow - // so we have an accurate clock) - self.timings = {} - } +/** + * Parse a cookie header. + * + * Parse the given cookie header string into an object + * The object has the various cookies as keys(names) => values + * + * @param {string} str + * @param {object} [options] + * @return {object} + * @public + */ - var timeout - if (self.timeout && !self.timeoutTimer) { - if (self.timeout < 0) { - timeout = 0 - } else if (typeof self.timeout === 'number' && isFinite(self.timeout)) { - timeout = self.timeout - } +function parse(str, options) { + if (typeof str !== 'string') { + throw new TypeError('argument str must be a string'); } - self.req.on('response', self.onRequestResponse.bind(self)) - self.req.on('error', self.onRequestError.bind(self)) - self.req.on('drain', function () { - self.emit('drain') - }) - - self.req.on('socket', function (socket) { - // `._connecting` was the old property which was made public in node v6.1.0 - var isConnecting = socket._connecting || socket.connecting - if (self.timing) { - self.timings.socket = now() - self.startTimeNow + var obj = {} + var opt = options || {}; + var pairs = str.split(pairSplitRegExp); + var dec = opt.decode || decode; - if (isConnecting) { - var onLookupTiming = function () { - self.timings.lookup = now() - self.startTimeNow - } + for (var i = 0; i < pairs.length; i++) { + var pair = pairs[i]; + var eq_idx = pair.indexOf('='); - var onConnectTiming = function () { - self.timings.connect = now() - self.startTimeNow - } + // skip things that don't look like key=value + if (eq_idx < 0) { + continue; + } - socket.once('lookup', onLookupTiming) - socket.once('connect', onConnectTiming) + var key = pair.substr(0, eq_idx).trim() + var val = pair.substr(++eq_idx, pair.length).trim(); - // clean up timing event listeners if needed on error - self.req.once('error', function () { - socket.removeListener('lookup', onLookupTiming) - socket.removeListener('connect', onConnectTiming) - }) - } + // quoted values + if ('"' == val[0]) { + val = val.slice(1, -1); } - var setReqTimeout = function () { - // This timeout sets the amount of time to wait *between* bytes sent - // from the server once connected. - // - // In particular, it's useful for erroring if the server fails to send - // data halfway through streaming a response. - self.req.setTimeout(timeout, function () { - if (self.req) { - self.abort() - var e = new Error('ESOCKETTIMEDOUT') - e.code = 'ESOCKETTIMEDOUT' - e.connect = false - self.emit('error', e) - } - }) + // only assign once + if (undefined == obj[key]) { + obj[key] = tryDecode(val, dec); } - if (timeout !== undefined) { - // Only start the connection timer if we're actually connecting a new - // socket, otherwise if we're already connected (because this is a - // keep-alive connection) do not bother. This is important since we won't - // get a 'connect' event for an already connected socket. - if (isConnecting) { - var onReqSockConnect = function () { - socket.removeListener('connect', onReqSockConnect) - clearTimeout(self.timeoutTimer) - self.timeoutTimer = null - setReqTimeout() - } - - socket.on('connect', onReqSockConnect) + } - self.req.on('error', function (err) { // eslint-disable-line handle-callback-err - socket.removeListener('connect', onReqSockConnect) - }) + return obj; +} - // Set a timeout in memory - this block will throw if the server takes more - // than `timeout` to write the HTTP status and headers (corresponding to - // the on('response') event on the client). NB: this measures wall-clock - // time, not the time between bytes sent by the server. - self.timeoutTimer = setTimeout(function () { - socket.removeListener('connect', onReqSockConnect) - self.abort() - var e = new Error('ETIMEDOUT') - e.code = 'ETIMEDOUT' - e.connect = true - self.emit('error', e) - }, timeout) - } else { - // We're already connected - setReqTimeout() - } - } - self.emit('socket', socket) - }) +/** + * Serialize data into a cookie header. + * + * Serialize the a name value pair into a cookie string suitable for + * http headers. An optional options object specified cookie parameters. + * + * serialize('foo', 'bar', { httpOnly: true }) + * => "foo=bar; httpOnly" + * + * @param {string} name + * @param {string} val + * @param {object} [options] + * @return {string} + * @public + */ - self.emit('request', self.req) -} +function serialize(name, val, options) { + var opt = options || {}; + var enc = opt.encode || encode; -Request.prototype.onRequestError = function (error) { - var self = this - if (self._aborted) { - return - } - if (self.req && self.req._reusedSocket && error.code === 'ECONNRESET' && - self.agent.addRequestNoreuse) { - self.agent = { addRequest: self.agent.addRequestNoreuse.bind(self.agent) } - self.start() - self.req.end() - return - } - if (self.timeout && self.timeoutTimer) { - clearTimeout(self.timeoutTimer) - self.timeoutTimer = null + if (typeof enc !== 'function') { + throw new TypeError('option encode is invalid'); } - self.emit('error', error) -} - -Request.prototype.onRequestResponse = function (response) { - var self = this - if (self.timing) { - self.timings.response = now() - self.startTimeNow + if (!fieldContentRegExp.test(name)) { + throw new TypeError('argument name is invalid'); } - debug('onRequestResponse', self.uri.href, response.statusCode, response.headers) - response.on('end', function () { - if (self.timing) { - self.timings.end = now() - self.startTimeNow - response.timingStart = self.startTime + var value = enc(val); - // fill in the blanks for any periods that didn't trigger, such as - // no lookup or connect due to keep alive - if (!self.timings.socket) { - self.timings.socket = 0 - } - if (!self.timings.lookup) { - self.timings.lookup = self.timings.socket - } - if (!self.timings.connect) { - self.timings.connect = self.timings.lookup - } - if (!self.timings.response) { - self.timings.response = self.timings.connect - } + if (value && !fieldContentRegExp.test(value)) { + throw new TypeError('argument val is invalid'); + } - debug('elapsed time', self.timings.end) + var str = name + '=' + value; - // elapsedTime includes all redirects - self.elapsedTime += Math.round(self.timings.end) + if (null != opt.maxAge) { + var maxAge = opt.maxAge - 0; + if (isNaN(maxAge)) throw new Error('maxAge should be a Number'); + str += '; Max-Age=' + Math.floor(maxAge); + } - // NOTE: elapsedTime is deprecated in favor of .timings - response.elapsedTime = self.elapsedTime + if (opt.domain) { + if (!fieldContentRegExp.test(opt.domain)) { + throw new TypeError('option domain is invalid'); + } - // timings is just for the final fetch - response.timings = self.timings + str += '; Domain=' + opt.domain; + } - // pre-calculate phase timings as well - response.timingPhases = { - wait: self.timings.socket, - dns: self.timings.lookup - self.timings.socket, - tcp: self.timings.connect - self.timings.lookup, - firstByte: self.timings.response - self.timings.connect, - download: self.timings.end - self.timings.response, - total: self.timings.end - } + if (opt.path) { + if (!fieldContentRegExp.test(opt.path)) { + throw new TypeError('option path is invalid'); } - debug('response end', self.uri.href, response.statusCode, response.headers) - }) - if (self._aborted) { - debug('aborted', self.uri.href) - response.resume() - return + str += '; Path=' + opt.path; } - self.response = response - response.request = self - response.toJSON = responseToJSON + if (opt.expires) { + if (typeof opt.expires.toUTCString !== 'function') { + throw new TypeError('option expires is invalid'); + } - // XXX This is different on 0.10, because SSL is strict by default - if (self.httpModule === https && - self.strictSSL && (!response.hasOwnProperty('socket') || - !response.socket.authorized)) { - debug('strict ssl error', self.uri.href) - var sslErr = response.hasOwnProperty('socket') ? response.socket.authorizationError : self.uri.href + ' does not support SSL' - self.emit('error', new Error('SSL Error: ' + sslErr)) - return + str += '; Expires=' + opt.expires.toUTCString(); } - // Save the original host before any redirect (if it changes, we need to - // remove any authorization headers). Also remember the case of the header - // name because lots of broken servers expect Host instead of host and we - // want the caller to be able to specify this. - self.originalHost = self.getHeader('host') - if (!self.originalHostHeaderName) { - self.originalHostHeaderName = self.hasHeader('host') - } - if (self.setHost) { - self.removeHeader('host') - } - if (self.timeout && self.timeoutTimer) { - clearTimeout(self.timeoutTimer) - self.timeoutTimer = null + if (opt.httpOnly) { + str += '; HttpOnly'; } - var targetCookieJar = (self._jar && self._jar.setCookie) ? self._jar : globalCookieJar - var addCookie = function (cookie) { - // set the cookie if it's domain in the href's domain. - try { - targetCookieJar.setCookie(cookie, self.uri.href, {ignoreError: true}) - } catch (e) { - self.emit('error', e) - } + if (opt.secure) { + str += '; Secure'; } - response.caseless = caseless(response.headers) + if (opt.sameSite) { + var sameSite = typeof opt.sameSite === 'string' + ? opt.sameSite.toLowerCase() : opt.sameSite; - if (response.caseless.has('set-cookie') && (!self._disableCookies)) { - var headerName = response.caseless.has('set-cookie') - if (Array.isArray(response.headers[headerName])) { - response.headers[headerName].forEach(addCookie) - } else { - addCookie(response.headers[headerName]) + switch (sameSite) { + case true: + str += '; SameSite=Strict'; + break; + case 'lax': + str += '; SameSite=Lax'; + break; + case 'strict': + str += '; SameSite=Strict'; + break; + default: + throw new TypeError('option sameSite is invalid'); } } - if (self._redirect.onResponse(response)) { - return // Ignore the rest of the response - } else { - // Be a good stream and emit end when the response is finished. - // Hack to emit end on close because of a core bug that never fires end - response.on('close', function () { - if (!self._ended) { - self.response.emit('end') - } - }) - - response.once('end', function () { - self._ended = true - }) - - var noBody = function (code) { - return ( - self.method === 'HEAD' || - // Informational - (code >= 100 && code < 200) || - // No Content - code === 204 || - // Not Modified - code === 304 - ) - } - - var responseContent - if (self.gzip && !noBody(response.statusCode)) { - var contentEncoding = response.headers['content-encoding'] || 'identity' - contentEncoding = contentEncoding.trim().toLowerCase() - - // Be more lenient with decoding compressed responses, since (very rarely) - // servers send slightly invalid gzip responses that are still accepted - // by common browsers. - // Always using Z_SYNC_FLUSH is what cURL does. - var zlibOptions = { - flush: zlib.Z_SYNC_FLUSH, - finishFlush: zlib.Z_SYNC_FLUSH - } - - if (contentEncoding === 'gzip') { - responseContent = zlib.createGunzip(zlibOptions) - response.pipe(responseContent) - } else if (contentEncoding === 'deflate') { - responseContent = zlib.createInflate(zlibOptions) - response.pipe(responseContent) - } else { - // Since previous versions didn't check for Content-Encoding header, - // ignore any invalid values to preserve backwards-compatibility - if (contentEncoding !== 'identity') { - debug('ignoring unrecognized Content-Encoding ' + contentEncoding) - } - responseContent = response - } - } else { - responseContent = response - } + return str; +} - if (self.encoding) { - if (self.dests.length !== 0) { - console.error('Ignoring encoding parameter as this stream is being piped to another stream which makes the encoding option invalid.') - } else { - responseContent.setEncoding(self.encoding) - } - } +/** + * Try decoding a string using a decoding function. + * + * @param {string} str + * @param {function} decode + * @private + */ - if (self._paused) { - responseContent.pause() - } +function tryDecode(str, decode) { + try { + return decode(str); + } catch (e) { + return str; + } +} - self.responseContent = responseContent - self.emit('response', response) +/***/ }), +/* 1458 */ +/***/ (function(module, exports, __webpack_require__) { - self.dests.forEach(function (dest) { - self.pipeDest(dest) - }) +"use strict"; - responseContent.on('data', function (chunk) { - if (self.timing && !self.responseStarted) { - self.responseStartTime = (new Date()).getTime() - // NOTE: responseStartTime is deprecated in favor of .timings - response.responseStartTime = self.responseStartTime - } - self._destdata = true - self.emit('data', chunk) - }) - responseContent.once('end', function (chunk) { - self.emit('end', chunk) - }) - responseContent.on('error', function (error) { - self.emit('error', error) - }) - responseContent.on('close', function () { self.emit('close') }) +var fs = __webpack_require__(167); +var url = __webpack_require__(83); +var transports = __webpack_require__(1459); +var path = __webpack_require__(160); +var lsmod = __webpack_require__(1461); +var stacktrace = __webpack_require__(1462); +var stringify = __webpack_require__(1455); - if (self.callback) { - self.readResponseBody(response) - } else { // if no callback - self.on('end', function () { - if (self._aborted) { - debug('aborted', self.uri.href) - return - } - self.emit('complete', response) - }) - } - } - debug('finish init function', self.uri.href) -} +var ravenVersion = __webpack_require__(1463).version; -Request.prototype.readResponseBody = function (response) { - var self = this - debug("reading response's body") - var buffers = [] - var bufferLength = 0 - var strings = [] +var protocolMap = { + http: 80, + https: 443 +}; - self.on('data', function (chunk) { - if (!Buffer.isBuffer(chunk)) { - strings.push(chunk) - } else if (chunk.length) { - bufferLength += chunk.length - buffers.push(chunk) - } - }) - self.on('end', function () { - debug('end event', self.uri.href) - if (self._aborted) { - debug('aborted', self.uri.href) - // `buffer` is defined in the parent scope and used in a closure it exists for the life of the request. - // This can lead to leaky behavior if the user retains a reference to the request object. - buffers = [] - bufferLength = 0 - return - } +var consoleAlerts = new Set(); - if (bufferLength) { - debug('has body', self.uri.href, bufferLength) - response.body = Buffer.concat(buffers, bufferLength) - if (self.encoding !== null) { - response.body = response.body.toString(self.encoding) - } - // `buffer` is defined in the parent scope and used in a closure it exists for the life of the Request. - // This can lead to leaky behavior if the user retains a reference to the request object. - buffers = [] - bufferLength = 0 - } else if (strings.length) { - // The UTF8 BOM [0xEF,0xBB,0xBF] is converted to [0xFE,0xFF] in the JS UTC16/UCS2 representation. - // Strip this value out when the encoding is set to 'utf8', as upstream consumers won't expect it and it breaks JSON.parse(). - if (self.encoding === 'utf8' && strings[0].length > 0 && strings[0][0] === '\uFEFF') { - strings[0] = strings[0].substring(1) - } - response.body = strings.join('') - } +// Default Node.js REPL depth +var MAX_SERIALIZE_EXCEPTION_DEPTH = 3; +// 50kB, as 100kB is max payload size, so half sounds reasonable +var MAX_SERIALIZE_EXCEPTION_SIZE = 50 * 1024; +var MAX_SERIALIZE_KEYS_LENGTH = 40; - if (self._json) { - try { - response.body = JSON.parse(response.body, self._jsonReviver) - } catch (e) { - debug('invalid JSON received', self.uri.href) - } - } - debug('emitting complete', self.uri.href) - if (typeof response.body === 'undefined' && !self._json) { - response.body = self.encoding === null ? Buffer.alloc(0) : '' - } - self.emit('complete', response, response.body) - }) +function utf8Length(value) { + return ~-encodeURI(value).split(/%..|./).length; } -Request.prototype.abort = function () { - var self = this - self._aborted = true - - if (self.req) { - self.req.abort() - } else if (self.response) { - self.response.destroy() - } - - self.emit('abort') +function jsonSize(value) { + return utf8Length(JSON.stringify(value)); } -Request.prototype.pipeDest = function (dest) { - var self = this - var response = self.response - // Called after the response is received - if (dest.headers && !dest.headersSent) { - if (response.caseless.has('content-type')) { - var ctname = response.caseless.has('content-type') - if (dest.setHeader) { - dest.setHeader(ctname, response.headers[ctname]) - } else { - dest.headers[ctname] = response.headers[ctname] - } - } - - if (response.caseless.has('content-length')) { - var clname = response.caseless.has('content-length') - if (dest.setHeader) { - dest.setHeader(clname, response.headers[clname]) - } else { - dest.headers[clname] = response.headers[clname] - } - } - } - if (dest.setHeader && !dest.headersSent) { - for (var i in response.headers) { - // If the response content is being decoded, the Content-Encoding header - // of the response doesn't represent the piped content, so don't pass it. - if (!self.gzip || i !== 'content-encoding') { - dest.setHeader(i, response.headers[i]) - } - } - dest.statusCode = response.statusCode - } - if (self.pipefilter) { - self.pipefilter(response, dest) - } +function isError(what) { + return ( + Object.prototype.toString.call(what) === '[object Error]' || what instanceof Error + ); } -Request.prototype.qs = function (q, clobber) { - var self = this - var base - if (!clobber && self.uri.query) { - base = self._qs.parse(self.uri.query) - } else { - base = {} - } +module.exports.isError = isError; - for (var i in q) { - base[i] = q[i] - } +function isPlainObject(what) { + return Object.prototype.toString.call(what) === '[object Object]'; +} - var qs = self._qs.stringify(base) +module.exports.isPlainObject = isPlainObject; - if (qs === '') { - return self +function serializeValue(value) { + var maxLength = 40; + + if (typeof value === 'string') { + return value.length <= maxLength ? value : value.substr(0, maxLength - 1) + '\u2026'; + } else if ( + typeof value === 'number' || + typeof value === 'boolean' || + typeof value === 'undefined' + ) { + return value; } - self.uri = url.parse(self.uri.href.split('?')[0] + '?' + qs) - self.url = self.uri - self.path = self.uri.path + var type = Object.prototype.toString.call(value); - if (self.uri.host === 'unix') { - self.enableUnixSocket() - } + // Node.js REPL notation + if (type === '[object Object]') return '[Object]'; + if (type === '[object Array]') return '[Array]'; + if (type === '[object Function]') + return value.name ? '[Function: ' + value.name + ']' : '[Function]'; - return self -} -Request.prototype.form = function (form) { - var self = this - if (form) { - if (!/^application\/x-www-form-urlencoded\b/.test(self.getHeader('content-type'))) { - self.setHeader('content-type', 'application/x-www-form-urlencoded') - } - self.body = (typeof form === 'string') - ? self._qs.rfc3986(form.toString('utf8')) - : self._qs.stringify(form).toString('utf8') - return self - } - // create form-data object - self._form = new FormData() - self._form.on('error', function (err) { - err.message = 'form-data: ' + err.message - self.emit('error', err) - self.abort() - }) - return self._form + return value; } -Request.prototype.multipart = function (multipart) { - var self = this - self._multipart.onRequest(multipart) +function serializeObject(value, depth) { + if (depth === 0) return serializeValue(value); - if (!self._multipart.chunked) { - self.body = self._multipart.body + if (isPlainObject(value)) { + return Object.keys(value).reduce(function(acc, key) { + acc[key] = serializeObject(value[key], depth - 1); + return acc; + }, {}); + } else if (Array.isArray(value)) { + return value.map(function(val) { + return serializeObject(val, depth - 1); + }); } - return self + return serializeValue(value); } -Request.prototype.json = function (val) { - var self = this - if (!self.hasHeader('accept')) { - self.setHeader('accept', 'application/json') - } +function serializeException(ex, depth, maxSize) { + if (!isPlainObject(ex)) return ex; - if (typeof self.jsonReplacer === 'function') { - self._jsonReplacer = self.jsonReplacer - } + depth = typeof depth !== 'number' ? MAX_SERIALIZE_EXCEPTION_DEPTH : depth; + maxSize = typeof depth !== 'number' ? MAX_SERIALIZE_EXCEPTION_SIZE : maxSize; - self._json = true - if (typeof val === 'boolean') { - if (self.body !== undefined) { - if (!/^application\/x-www-form-urlencoded\b/.test(self.getHeader('content-type'))) { - self.body = safeStringify(self.body, self._jsonReplacer) - } else { - self.body = self._qs.rfc3986(self.body) - } - if (!self.hasHeader('content-type')) { - self.setHeader('content-type', 'application/json') - } - } - } else { - self.body = safeStringify(val, self._jsonReplacer) - if (!self.hasHeader('content-type')) { - self.setHeader('content-type', 'application/json') - } - } + var serialized = serializeObject(ex, depth); - if (typeof self.jsonReviver === 'function') { - self._jsonReviver = self.jsonReviver + if (jsonSize(stringify(serialized)) > maxSize) { + return serializeException(ex, depth - 1); } - return self -} -Request.prototype.getHeader = function (name, headers) { - var self = this - var result, re, match - if (!headers) { - headers = self.headers - } - Object.keys(headers).forEach(function (key) { - if (key.length !== name.length) { - return - } - re = new RegExp(name, 'i') - match = key.match(re) - if (match) { - result = headers[key] - } - }) - return result -} -Request.prototype.enableUnixSocket = function () { - // Get the socket & request paths from the URL - var unixParts = this.uri.path.split(':') - var host = unixParts[0] - var path = unixParts[1] - // Apply unix properties to request - this.socketPath = host - this.uri.pathname = path - this.uri.path = path - this.uri.host = host - this.uri.hostname = host - this.uri.isUnix = true + return serialized; } -Request.prototype.auth = function (user, pass, sendImmediately, bearer) { - var self = this +module.exports.serializeException = serializeException; - self._auth.onRequest(user, pass, sendImmediately, bearer) +function serializeKeysForMessage(keys, maxLength) { + if (typeof keys === 'number' || typeof keys === 'string') return keys.toString(); + if (!Array.isArray(keys)) return ''; - return self -} -Request.prototype.aws = function (opts, now) { - var self = this + keys = keys.filter(function(key) { + return typeof key === 'string'; + }); + if (keys.length === 0) return '[object has no keys]'; - if (!now) { - self._aws = opts - return self - } + maxLength = typeof maxLength !== 'number' ? MAX_SERIALIZE_KEYS_LENGTH : maxLength; + if (keys[0].length >= maxLength) return keys[0]; - if (opts.sign_version === 4 || opts.sign_version === '4') { - // use aws4 - var options = { - host: self.uri.host, - path: self.uri.path, - method: self.method, - headers: self.headers, - body: self.body - } - if (opts.service) { - options.service = opts.service - } - var signRes = aws4.sign(options, { - accessKeyId: opts.key, - secretAccessKey: opts.secret, - sessionToken: opts.session - }) - self.setHeader('authorization', signRes.headers.Authorization) - self.setHeader('x-amz-date', signRes.headers['X-Amz-Date']) - if (signRes.headers['X-Amz-Security-Token']) { - self.setHeader('x-amz-security-token', signRes.headers['X-Amz-Security-Token']) - } - } else { - // default: use aws-sign2 - var date = new Date() - self.setHeader('date', date.toUTCString()) - var auth = { - key: opts.key, - secret: opts.secret, - verb: self.method.toUpperCase(), - date: date, - contentType: self.getHeader('content-type') || '', - md5: self.getHeader('content-md5') || '', - amazonHeaders: aws2.canonicalizeHeaders(self.headers) - } - var path = self.uri.path - if (opts.bucket && path) { - auth.resource = '/' + opts.bucket + path - } else if (opts.bucket && !path) { - auth.resource = '/' + opts.bucket - } else if (!opts.bucket && path) { - auth.resource = path - } else if (!opts.bucket && !path) { - auth.resource = '/' - } - auth.resource = aws2.canonicalizeResource(auth.resource) - self.setHeader('authorization', aws2.authorization(auth)) + for (var usedKeys = keys.length; usedKeys > 0; usedKeys--) { + var serialized = keys.slice(0, usedKeys).join(', '); + if (serialized.length > maxLength) continue; + if (usedKeys === keys.length) return serialized; + return serialized + '\u2026'; } - return self + return ''; } -Request.prototype.httpSignature = function (opts) { - var self = this - httpSignature.signRequest({ - getHeader: function (header) { - return self.getHeader(header, self.headers) - }, - setHeader: function (header, value) { - self.setHeader(header, value) - }, - method: self.method, - path: self.path - }, opts) - debug('httpSignature authorization', self.getHeader('authorization')) - return self -} -Request.prototype.hawk = function (opts) { - var self = this - self.setHeader('Authorization', hawk.header(self.uri, self.method, opts)) -} -Request.prototype.oauth = function (_oauth) { - var self = this +module.exports.serializeKeysForMessage = serializeKeysForMessage; - self._oauth.onRequest(_oauth) +module.exports.disableConsoleAlerts = function disableConsoleAlerts() { + consoleAlerts = false; +}; - return self -} +module.exports.enableConsoleAlerts = function enableConsoleAlerts() { + consoleAlerts = new Set(); +}; -Request.prototype.jar = function (jar) { - var self = this - var cookies +module.exports.consoleAlert = function consoleAlert(msg) { + if (consoleAlerts) { + console.warn('raven@' + ravenVersion + ' alert: ' + msg); + } +}; - if (self._redirect.redirectsFollowed === 0) { - self.originalCookieHeader = self.getHeader('cookie') +module.exports.consoleAlertOnce = function consoleAlertOnce(msg) { + if (consoleAlerts && !consoleAlerts.has(msg)) { + consoleAlerts.add(msg); + console.warn('raven@' + ravenVersion + ' alert: ' + msg); } +}; - if (!jar) { - // disable cookies - cookies = false - self._disableCookies = true - } else { - var targetCookieJar = (jar && jar.getCookieString) ? jar : globalCookieJar - var urihref = self.uri.href - // fetch cookie in the Specified host - if (targetCookieJar) { - cookies = targetCookieJar.getCookieString(urihref) +module.exports.extend = + Object.assign || + function(target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } } + return target; + }; + +module.exports.getAuthHeader = function getAuthHeader(timestamp, apiKey, apiSecret) { + var header = ['Sentry sentry_version=5']; + header.push('sentry_timestamp=' + timestamp); + header.push('sentry_client=raven-node/' + ravenVersion); + header.push('sentry_key=' + apiKey); + if (apiSecret) header.push('sentry_secret=' + apiSecret); + return header.join(', '); +}; + +module.exports.parseDSN = function parseDSN(dsn) { + if (!dsn) { + // Let a falsey value return false explicitly + return false; } + try { + var parsed = url.parse(dsn), + response = { + protocol: parsed.protocol.slice(0, -1), + public_key: parsed.auth.split(':')[0], + host: parsed.host.split(':')[0] + }; - // if need cookie and cookie is not empty - if (cookies && cookies.length) { - if (self.originalCookieHeader) { - // Don't overwrite existing Cookie header - self.setHeader('cookie', self.originalCookieHeader + '; ' + cookies) - } else { - self.setHeader('cookie', cookies) + if (parsed.auth.split(':')[1]) { + response.private_key = parsed.auth.split(':')[1]; } - } - self._jar = jar - return self -} -// Stream API -Request.prototype.pipe = function (dest, opts) { - var self = this + if (~response.protocol.indexOf('+')) { + response.protocol = response.protocol.split('+')[1]; + } - if (self.response) { - if (self._destdata) { - self.emit('error', new Error('You cannot pipe after data has been emitted from the response.')) - } else if (self._ended) { - self.emit('error', new Error('You cannot pipe after the response has been ended.')) - } else { - stream.Stream.prototype.pipe.call(self, dest, opts) - self.pipeDest(dest) - return dest + if (!transports.hasOwnProperty(response.protocol)) { + throw new Error('Invalid transport'); } - } else { - self.dests.push(dest) - stream.Stream.prototype.pipe.call(self, dest, opts) - return dest - } -} -Request.prototype.write = function () { - var self = this - if (self._aborted) { return } - if (!self._started) { - self.start() - } - if (self.req) { - return self.req.write.apply(self.req, arguments) + var index = parsed.pathname.lastIndexOf('/'); + response.path = parsed.pathname.substr(0, index + 1); + response.project_id = parsed.pathname.substr(index + 1); + response.port = ~~parsed.port || protocolMap[response.protocol] || 443; + return response; + } catch (e) { + throw new Error('Invalid Sentry DSN: ' + dsn); } -} -Request.prototype.end = function (chunk) { - var self = this - if (self._aborted) { return } +}; - if (chunk) { - self.write(chunk) +module.exports.getTransaction = function getTransaction(frame) { + if (frame.module || frame.function) { + return (frame.module || '?') + ' at ' + (frame.function || '?'); } - if (!self._started) { - self.start() + return '<unknown>'; +}; + +var moduleCache; +module.exports.getModules = function getModules() { + if (!moduleCache) { + moduleCache = lsmod(); } - if (self.req) { - self.req.end() + return moduleCache; +}; + +module.exports.fill = function(obj, name, replacement, track) { + var orig = obj[name]; + obj[name] = replacement(orig); + if (track) { + track.push([obj, name, orig]); } -} -Request.prototype.pause = function () { - var self = this - if (!self.responseContent) { - self._paused = true - } else { - self.responseContent.pause.apply(self.responseContent, arguments) +}; + +var LINES_OF_CONTEXT = 7; + +function getFunction(line) { + try { + return ( + line.getFunctionName() || + line.getTypeName() + '.' + (line.getMethodName() || '<anonymous>') + ); + } catch (e) { + // This seems to happen sometimes when using 'use strict', + // stemming from `getTypeName`. + // [TypeError: Cannot read property 'constructor' of undefined] + return '<anonymous>'; } } -Request.prototype.resume = function () { - var self = this - if (!self.responseContent) { - self._paused = false - } else { - self.responseContent.resume.apply(self.responseContent, arguments) + +var mainModule = + ((__webpack_require__.c[__webpack_require__.s] && __webpack_require__.c[__webpack_require__.s].filename && path.dirname(__webpack_require__.c[__webpack_require__.s].filename)) || + global.process.cwd()) + '/'; + +function getModule(filename, base) { + if (!base) base = mainModule; + + // It's specifically a module + var file = path.basename(filename, '.js'); + filename = path.dirname(filename); + var n = filename.lastIndexOf('/node_modules/'); + if (n > -1) { + // /node_modules/ is 14 chars + return filename.substr(n + 14).replace(/\//g, '.') + ':' + file; } -} -Request.prototype.destroy = function () { - var self = this - if (!self._ended) { - self.end() - } else if (self.response) { - self.response.destroy() + // Let's see if it's a part of the main module + // To be a part of main module, it has to share the same base + n = (filename + '/').lastIndexOf(base, 0); + if (n === 0) { + var module = filename.substr(base.length).replace(/\//g, '.'); + if (module) module += ':'; + module += file; + return module; } + return file; } -Request.defaultProxyHeaderWhiteList = - Tunnel.defaultProxyHeaderWhiteList.slice() - -Request.defaultProxyHeaderExclusiveList = - Tunnel.defaultProxyHeaderExclusiveList.slice() +function readSourceFiles(filenames, cb) { + // we're relying on filenames being de-duped already + if (filenames.length === 0) return setTimeout(cb, 0, {}); -// Exports + var sourceFiles = {}; + var numFilesToRead = filenames.length; + return filenames.forEach(function(filename) { + fs.readFile(filename, function(readErr, file) { + if (!readErr) sourceFiles[filename] = file.toString().split('\n'); + if (--numFilesToRead === 0) cb(sourceFiles); + }); + }); +} -Request.prototype.toJSON = requestToJSON -module.exports = Request +// This is basically just `trim_line` from https://github.com/getsentry/sentry/blob/master/src/sentry/lang/javascript/processor.py#L67 +function snipLine(line, colno) { + var ll = line.length; + if (ll <= 150) return line; + if (colno > ll) colno = ll; + var start = Math.max(colno - 60, 0); + if (start < 5) start = 0; -/***/ }), -/* 1322 */ -/***/ (function(module, exports, __webpack_require__) { + var end = Math.min(start + 140, ll); + if (end > ll - 5) end = ll; + if (end === ll) start = Math.max(end - 140, 0); -"use strict"; + line = line.slice(start, end); + if (start > 0) line = '{snip} ' + line; + if (end < ll) line += ' {snip}'; + return line; +} -function formatHostname (hostname) { - // canonicalize the hostname, so that 'oogle.com' won't match 'google.com' - return hostname.replace(/^\.*/, '.').toLowerCase() +function snipLine0(line) { + return snipLine(line, 0); } -function parseNoProxyZone (zone) { - zone = zone.trim().toLowerCase() +function parseStack(err, cb) { + if (!err) return cb([]); - var zoneParts = zone.split(':', 2) - var zoneHost = formatHostname(zoneParts[0]) - var zonePort = zoneParts[1] - var hasPort = zone.indexOf(':') > -1 + var stack = stacktrace.parse(err); + if (!stack || !Array.isArray(stack) || !stack.length || !stack[0].getFileName) { + // the stack is not the useful thing we were expecting :/ + return cb([]); + } - return {hostname: zoneHost, port: zonePort, hasPort: hasPort} -} + // Sentry expects the stack trace to be oldest -> newest, v8 provides newest -> oldest + stack.reverse(); -function uriInNoProxy (uri, noProxy) { - var port = uri.port || (uri.protocol === 'https:' ? '443' : '80') - var hostname = formatHostname(uri.hostname) - var noProxyList = noProxy.split(',') + var frames = []; + var filesToRead = {}; + stack.forEach(function(line) { + var frame = { + filename: line.getFileName() || '', + lineno: line.getLineNumber(), + colno: line.getColumnNumber(), + function: getFunction(line) + }; - // iterate through the noProxyList until it finds a match. - return noProxyList.map(parseNoProxyZone).some(function (noProxyZone) { - var isMatchedAt = hostname.indexOf(noProxyZone.hostname) - var hostnameMatched = ( - isMatchedAt > -1 && - (isMatchedAt === hostname.length - noProxyZone.hostname.length) - ) + var isInternal = + line.isNative() || + (frame.filename[0] !== '/' && + frame.filename[0] !== '.' && + frame.filename.indexOf(':\\') !== 1); - if (noProxyZone.hasPort) { - return (port === noProxyZone.port) && hostnameMatched + // in_app is all that's not an internal Node function or a module within node_modules + // note that isNative appears to return true even for node core libraries + // see https://github.com/getsentry/raven-node/issues/176 + frame.in_app = !isInternal && frame.filename.indexOf('node_modules/') === -1; + + // Extract a module name based on the filename + if (frame.filename) { + frame.module = getModule(frame.filename); + if (!isInternal) filesToRead[frame.filename] = true; } - return hostnameMatched - }) + frames.push(frame); + }); + + return readSourceFiles(Object.keys(filesToRead), function(sourceFiles) { + frames.forEach(function(frame) { + if (frame.filename && sourceFiles[frame.filename]) { + var lines = sourceFiles[frame.filename]; + try { + frame.pre_context = lines + .slice(Math.max(0, frame.lineno - (LINES_OF_CONTEXT + 1)), frame.lineno - 1) + .map(snipLine0); + frame.context_line = snipLine(lines[frame.lineno - 1], frame.colno); + frame.post_context = lines + .slice(frame.lineno, frame.lineno + LINES_OF_CONTEXT) + .map(snipLine0); + } catch (e) { + // anomaly, being defensive in case + // unlikely to ever happen in practice but can definitely happen in theory + } + } + }); + + cb(frames); + }); } -function getProxyFromURI (uri) { - // Decide the proper request proxy to use based on the request URI object and the - // environmental variables (NO_PROXY, HTTP_PROXY, etc.) - // respect NO_PROXY environment variables (see: http://lynx.isc.org/current/breakout/lynx_help/keystrokes/environments.html) +// expose basically for testing because I don't know what I'm doing +module.exports.parseStack = parseStack; +module.exports.getModule = getModule; - var noProxy = process.env.NO_PROXY || process.env.no_proxy || '' - // if the noProxy is a wildcard then return null +/***/ }), +/* 1459 */ +/***/ (function(module, exports, __webpack_require__) { - if (noProxy === '*') { - return null - } +"use strict"; - // if the noProxy is not empty and the uri is found return null - if (noProxy !== '' && uriInNoProxy(uri, noProxy)) { - return null - } +var events = __webpack_require__(268); +var util = __webpack_require__(9); +var timeoutReq = __webpack_require__(1460); - // Check for HTTP or HTTPS Proxy in environment Else default to null +var http = __webpack_require__(98); +var https = __webpack_require__(99); - if (uri.protocol === 'http:') { - return process.env.HTTP_PROXY || - process.env.http_proxy || null +var agentOptions = {keepAlive: true, maxSockets: 100}; +var httpAgent = new http.Agent(agentOptions); +var httpsAgent = new https.Agent(agentOptions); + +function Transport() {} +util.inherits(Transport, events.EventEmitter); + +function HTTPTransport(options) { + this.defaultPort = 80; + this.transport = http; + this.options = options || {}; + this.agent = httpAgent; +} +util.inherits(HTTPTransport, Transport); +HTTPTransport.prototype.send = function(client, message, headers, eventId, cb) { + var options = { + hostname: client.dsn.host, + path: client.dsn.path + 'api/' + client.dsn.project_id + '/store/', + headers: headers, + method: 'POST', + port: client.dsn.port || this.defaultPort, + ca: client.ca, + agent: this.agent + }; + for (var key in this.options) { + if (this.options.hasOwnProperty(key)) { + options[key] = this.options[key]; + } } - if (uri.protocol === 'https:') { - return process.env.HTTPS_PROXY || - process.env.https_proxy || - process.env.HTTP_PROXY || - process.env.http_proxy || null + // prevent off heap memory explosion + var _name = this.agent.getName({host: client.dsn.host, port: client.dsn.port}); + var _requests = this.agent.requests[_name]; + if (_requests && Object.keys(_requests).length > client.maxReqQueueCount) { + // other feedback strategy + client.emit('error', new Error('client req queue is full..')); + return; } - // if none of that works, return null - // (What uri protocol are you using then?) + var req = this.transport.request(options, function(res) { + res.setEncoding('utf8'); + if (res.statusCode >= 200 && res.statusCode < 300) { + client.emit('logged', eventId); + cb && cb(null, eventId); + } else { + var reason = res.headers['x-sentry-error']; + var e = new Error('HTTP Error (' + res.statusCode + '): ' + reason); + e.response = res; + e.statusCode = res.statusCode; + e.reason = reason; + e.sendMessage = message; + e.requestHeaders = headers; + e.eventId = eventId; + client.emit('error', e); + cb && cb(e); + } - return null + // force the socket to drain + var noop = function() {}; + res.on('data', noop); + res.on('end', noop); + }); + + timeoutReq(req, client.sendTimeout * 1000); + + var cbFired = false; + req.on('error', function(e) { + client.emit('error', e); + if (!cbFired) { + cb && cb(e); + cbFired = true; + } + }); + req.end(message); +}; + +function HTTPSTransport(options) { + this.defaultPort = 443; + this.transport = https; + this.options = options || {}; + this.agent = httpsAgent; } +util.inherits(HTTPSTransport, HTTPTransport); -module.exports = getProxyFromURI +module.exports.http = new HTTPTransport(); +module.exports.https = new HTTPSTransport(); +module.exports.Transport = Transport; +module.exports.HTTPTransport = HTTPTransport; +module.exports.HTTPSTransport = HTTPSTransport; /***/ }), -/* 1323 */ +/* 1460 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var qs = __webpack_require__(1324) -var querystring = __webpack_require__(104) - -function Querystring (request) { - this.request = request - this.lib = null - this.useQuerystring = null - this.parseOptions = null - this.stringifyOptions = null -} +module.exports = function (req, time) { + if (req.timeoutTimer) { + return req; + } -Querystring.prototype.init = function (options) { - if (this.lib) { return } + var delays = isNaN(time) ? time : {socket: time, connect: time}; + var host = req._headers ? (' to ' + req._headers.host) : ''; - this.useQuerystring = options.useQuerystring - this.lib = (this.useQuerystring ? querystring : qs) + if (delays.connect !== undefined) { + req.timeoutTimer = setTimeout(function timeoutHandler() { + req.abort(); + var e = new Error('Connection timed out on request' + host); + e.code = 'ETIMEDOUT'; + req.emit('error', e); + }, delays.connect); + } - this.parseOptions = options.qsParseOptions || {} - this.stringifyOptions = options.qsStringifyOptions || {} -} + // Clear the connection timeout timer once a socket is assigned to the + // request and is connected. + req.on('socket', function assign(socket) { + // Socket may come from Agent pool and may be already connected. + if (!(socket.connecting || socket._connecting)) { + connect(); + return; + } -Querystring.prototype.stringify = function (obj) { - return (this.useQuerystring) - ? this.rfc3986(this.lib.stringify(obj, - this.stringifyOptions.sep || null, - this.stringifyOptions.eq || null, - this.stringifyOptions)) - : this.lib.stringify(obj, this.stringifyOptions) -} + socket.once('connect', connect); + }); -Querystring.prototype.parse = function (str) { - return (this.useQuerystring) - ? this.lib.parse(str, - this.parseOptions.sep || null, - this.parseOptions.eq || null, - this.parseOptions) - : this.lib.parse(str, this.parseOptions) -} + function clear() { + if (req.timeoutTimer) { + clearTimeout(req.timeoutTimer); + req.timeoutTimer = null; + } + } -Querystring.prototype.rfc3986 = function (str) { - return str.replace(/[!'()*]/g, function (c) { - return '%' + c.charCodeAt(0).toString(16).toUpperCase() - }) -} + function connect() { + clear(); -Querystring.prototype.unescape = querystring.unescape + if (delays.socket !== undefined) { + // Abort the request if there is no activity on the socket for more + // than `delays.socket` milliseconds. + req.setTimeout(delays.socket, function socketTimeoutHandler() { + req.abort(); + var e = new Error('Socket timed out on request' + host); + e.code = 'ESOCKETTIMEDOUT'; + req.emit('error', e); + }); + } + } -exports.Querystring = Querystring + return req.on('error', clear); +}; /***/ }), -/* 1324 */ +/* 1461 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; -var stringify = __webpack_require__(1325); -var parse = __webpack_require__(1328); -var formats = __webpack_require__(1327); - -module.exports = { - formats: formats, - parse: parse, - stringify: stringify -}; - +// Original repository: https://github.com/defunctzombie/node-lsmod/ +// +// [2018-02-09] @kamilogorek - Handle scoped packages structure -/***/ }), -/* 1325 */ -/***/ (function(module, exports, __webpack_require__) { +// builtin +var fs = __webpack_require__(167); +var path = __webpack_require__(160); -"use strict"; +// node 0.6 support +fs.existsSync = fs.existsSync || path.existsSync; +// mainPaths are the paths where our mainprog will be able to load from +// we store these to avoid grabbing the modules that were loaded as a result +// of a dependency module loading its dependencies, we only care about deps our +// mainprog loads +var mainPaths = (__webpack_require__.c[__webpack_require__.s] && __webpack_require__.c[__webpack_require__.s].paths) || []; -var utils = __webpack_require__(1326); -var formats = __webpack_require__(1327); +module.exports = function() { + var paths = Object.keys(__webpack_require__.c || []); -var arrayPrefixGenerators = { - brackets: function brackets(prefix) { // eslint-disable-line func-name-matching - return prefix + '[]'; - }, - indices: function indices(prefix, key) { // eslint-disable-line func-name-matching - return prefix + '[' + key + ']'; - }, - repeat: function repeat(prefix) { // eslint-disable-line func-name-matching - return prefix; - } -}; + // module information + var infos = {}; -var toISO = Date.prototype.toISOString; + // paths we have already inspected to avoid traversing again + var seen = {}; -var defaults = { - delimiter: '&', - encode: true, - encoder: utils.encode, - encodeValuesOnly: false, - serializeDate: function serializeDate(date) { // eslint-disable-line func-name-matching - return toISO.call(date); - }, - skipNulls: false, - strictNullHandling: false -}; + paths.forEach(function(p) { + /* eslint-disable consistent-return */ -var stringify = function stringify( // eslint-disable-line func-name-matching - object, - prefix, - generateArrayPrefix, - strictNullHandling, - skipNulls, - encoder, - filter, - sort, - allowDots, - serializeDate, - formatter, - encodeValuesOnly -) { - var obj = object; - if (typeof filter === 'function') { - obj = filter(prefix, obj); - } else if (obj instanceof Date) { - obj = serializeDate(obj); - } else if (obj === null) { - if (strictNullHandling) { - return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder) : prefix; - } + var dir = p; - obj = ''; - } + (function updir() { + var orig = dir; + dir = path.dirname(orig); - if (typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean' || utils.isBuffer(obj)) { - if (encoder) { - var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder); - return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder))]; - } - return [formatter(prefix) + '=' + formatter(String(obj))]; - } + if (/@[^/]+$/.test(dir)) { + dir = path.dirname(dir); + } - var values = []; + if (!dir || orig === dir || seen[orig]) { + return; + } else if (mainPaths.indexOf(dir) < 0) { + return updir(); + } - if (typeof obj === 'undefined') { - return values; - } + var pkgfile = path.join(orig, 'package.json'); + var exists = fs.existsSync(pkgfile); - var objKeys; - if (Array.isArray(filter)) { - objKeys = filter; - } else { - var keys = Object.keys(obj); - objKeys = sort ? keys.sort(sort) : keys; - } + seen[orig] = true; - for (var i = 0; i < objKeys.length; ++i) { - var key = objKeys[i]; + // travel up the tree if no package.json here + if (!exists) { + return updir(); + } - if (skipNulls && obj[key] === null) { - continue; - } + try { + var info = JSON.parse(fs.readFileSync(pkgfile, 'utf8')); + infos[info.name] = info.version; + } catch (e) {} + })(); - if (Array.isArray(obj)) { - values = values.concat(stringify( - obj[key], - generateArrayPrefix(prefix, key), - generateArrayPrefix, - strictNullHandling, - skipNulls, - encoder, - filter, - sort, - allowDots, - serializeDate, - formatter, - encodeValuesOnly - )); - } else { - values = values.concat(stringify( - obj[key], - prefix + (allowDots ? '.' + key : '[' + key + ']'), - generateArrayPrefix, - strictNullHandling, - skipNulls, - encoder, - filter, - sort, - allowDots, - serializeDate, - formatter, - encodeValuesOnly - )); - } - } + /* eslint-enable consistent-return */ + }); - return values; + return infos; }; -module.exports = function (object, opts) { - var obj = object; - var options = opts ? utils.assign({}, opts) : {}; - if (options.encoder !== null && options.encoder !== undefined && typeof options.encoder !== 'function') { - throw new TypeError('Encoder has to be a function.'); - } +/***/ }), +/* 1462 */ +/***/ (function(module, exports) { - var delimiter = typeof options.delimiter === 'undefined' ? defaults.delimiter : options.delimiter; - var strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling; - var skipNulls = typeof options.skipNulls === 'boolean' ? options.skipNulls : defaults.skipNulls; - var encode = typeof options.encode === 'boolean' ? options.encode : defaults.encode; - var encoder = typeof options.encoder === 'function' ? options.encoder : defaults.encoder; - var sort = typeof options.sort === 'function' ? options.sort : null; - var allowDots = typeof options.allowDots === 'undefined' ? false : options.allowDots; - var serializeDate = typeof options.serializeDate === 'function' ? options.serializeDate : defaults.serializeDate; - var encodeValuesOnly = typeof options.encodeValuesOnly === 'boolean' ? options.encodeValuesOnly : defaults.encodeValuesOnly; - if (typeof options.format === 'undefined') { - options.format = formats['default']; - } else if (!Object.prototype.hasOwnProperty.call(formats.formatters, options.format)) { - throw new TypeError('Unknown format option provided.'); - } - var formatter = formats.formatters[options.format]; - var objKeys; - var filter; +exports.get = function(belowFn) { + var oldLimit = Error.stackTraceLimit; + Error.stackTraceLimit = Infinity; - if (typeof options.filter === 'function') { - filter = options.filter; - obj = filter('', obj); - } else if (Array.isArray(options.filter)) { - filter = options.filter; - objKeys = filter; - } + var dummyObject = {}; - var keys = []; + var v8Handler = Error.prepareStackTrace; + Error.prepareStackTrace = function(dummyObject, v8StackTrace) { + return v8StackTrace; + }; + Error.captureStackTrace(dummyObject, belowFn || exports.get); - if (typeof obj !== 'object' || obj === null) { - return ''; - } + var v8StackTrace = dummyObject.stack; + Error.prepareStackTrace = v8Handler; + Error.stackTraceLimit = oldLimit; - var arrayFormat; - if (options.arrayFormat in arrayPrefixGenerators) { - arrayFormat = options.arrayFormat; - } else if ('indices' in options) { - arrayFormat = options.indices ? 'indices' : 'repeat'; - } else { - arrayFormat = 'indices'; - } + return v8StackTrace; +}; - var generateArrayPrefix = arrayPrefixGenerators[arrayFormat]; +exports.parse = function(err) { + if (!err.stack) { + return []; + } - if (!objKeys) { - objKeys = Object.keys(obj); - } + var self = this; + var lines = err.stack.split('\n').slice(1); + + return lines + .map(function(line) { + if (line.match(/^\s*[-]{4,}$/)) { + return self._createParsedCallSite({ + fileName: line, + lineNumber: null, + functionName: null, + typeName: null, + methodName: null, + columnNumber: null, + 'native': null, + }); + } - if (sort) { - objKeys.sort(sort); - } + var lineMatch = line.match(/at (?:(.+)\s+\()?(?:(.+?):(\d+)(?::(\d+))?|([^)]+))\)?/); + if (!lineMatch) { + return; + } - for (var i = 0; i < objKeys.length; ++i) { - var key = objKeys[i]; + var object = null; + var method = null; + var functionName = null; + var typeName = null; + var methodName = null; + var isNative = (lineMatch[5] === 'native'); - if (skipNulls && obj[key] === null) { - continue; + if (lineMatch[1]) { + functionName = lineMatch[1]; + var methodStart = functionName.lastIndexOf('.'); + if (functionName[methodStart-1] == '.') + methodStart--; + if (methodStart > 0) { + object = functionName.substr(0, methodStart); + method = functionName.substr(methodStart + 1); + var objectEnd = object.indexOf('.Module'); + if (objectEnd > 0) { + functionName = functionName.substr(objectEnd + 1); + object = object.substr(0, objectEnd); + } } + typeName = null; + } - keys = keys.concat(stringify( - obj[key], - key, - generateArrayPrefix, - strictNullHandling, - skipNulls, - encode ? encoder : null, - filter, - sort, - allowDots, - serializeDate, - formatter, - encodeValuesOnly - )); - } + if (method) { + typeName = object; + methodName = method; + } - var joined = keys.join(delimiter); - var prefix = options.addQueryPrefix === true ? '?' : ''; + if (method === '<anonymous>') { + methodName = null; + functionName = null; + } - return joined.length > 0 ? prefix + joined : ''; -}; + var properties = { + fileName: lineMatch[2] || null, + lineNumber: parseInt(lineMatch[3], 10) || null, + functionName: functionName, + typeName: typeName, + methodName: methodName, + columnNumber: parseInt(lineMatch[4], 10) || null, + 'native': isNative, + }; + return self._createParsedCallSite(properties); + }) + .filter(function(callSite) { + return !!callSite; + }); +}; -/***/ }), -/* 1326 */ -/***/ (function(module, exports, __webpack_require__) { +function CallSite(properties) { + for (var property in properties) { + this[property] = properties[property]; + } +} -"use strict"; +var strProperties = [ + 'this', + 'typeName', + 'functionName', + 'methodName', + 'fileName', + 'lineNumber', + 'columnNumber', + 'function', + 'evalOrigin' +]; +var boolProperties = [ + 'topLevel', + 'eval', + 'native', + 'constructor' +]; +strProperties.forEach(function (property) { + CallSite.prototype[property] = null; + CallSite.prototype['get' + property[0].toUpperCase() + property.substr(1)] = function () { + return this[property]; + } +}); +boolProperties.forEach(function (property) { + CallSite.prototype[property] = false; + CallSite.prototype['is' + property[0].toUpperCase() + property.substr(1)] = function () { + return this[property]; + } +}); +exports._createParsedCallSite = function(properties) { + return new CallSite(properties); +}; -var has = Object.prototype.hasOwnProperty; -var hexTable = (function () { - var array = []; - for (var i = 0; i < 256; ++i) { - array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase()); - } +/***/ }), +/* 1463 */ +/***/ (function(module) { - return array; -}()); +module.exports = JSON.parse("{\"name\":\"raven\",\"description\":\"A standalone (Node.js) client for Sentry\",\"keywords\":[\"debugging\",\"errors\",\"exceptions\",\"logging\",\"raven\",\"sentry\"],\"version\":\"2.6.4\",\"repository\":\"git://github.com/getsentry/raven-js.git\",\"license\":\"BSD-2-Clause\",\"homepage\":\"https://github.com/getsentry/raven-js\",\"author\":\"Matt Robenolt <matt@ydekproductions.com>\",\"main\":\"index.js\",\"bin\":{\"raven\":\"./bin/raven\"},\"scripts\":{\"lint\":\"eslint .\",\"test\":\"NODE_ENV=test istanbul cover _mocha -- --reporter dot && NODE_ENV=test coffee ./test/run.coffee\",\"test-mocha\":\"NODE_ENV=test mocha\",\"test-full\":\"npm run test && cd test/instrumentation && ./run.sh\"},\"engines\":{\"node\":\">= 4.0.0\"},\"dependencies\":{\"cookie\":\"0.3.1\",\"md5\":\"^2.2.1\",\"stack-trace\":\"0.0.10\",\"timed-out\":\"4.0.1\",\"uuid\":\"3.3.2\"},\"devDependencies\":{\"coffee-script\":\"~1.10.0\",\"connect\":\"*\",\"eslint\":\"^4.5.0\",\"eslint-config-prettier\":\"^2.3.0\",\"express\":\"*\",\"glob\":\"~3.1.13\",\"istanbul\":\"^0.4.3\",\"mocha\":\"~3.1.2\",\"nock\":\"~9.0.0\",\"prettier\":\"^1.6.1\",\"should\":\"11.2.0\",\"sinon\":\"^3.3.0\"},\"prettier\":{\"singleQuote\":true,\"bracketSpacing\":false,\"printWidth\":90}}"); -var compactQueue = function compactQueue(queue) { - var obj; +/***/ }), +/* 1464 */ +/***/ (function(module, exports, __webpack_require__) { - while (queue.length) { - var item = queue.pop(); - obj = item.obj[item.prop]; +var v1 = __webpack_require__(1465); +var v4 = __webpack_require__(1468); - if (Array.isArray(obj)) { - var compacted = []; +var uuid = v4; +uuid.v1 = v1; +uuid.v4 = v4; - for (var j = 0; j < obj.length; ++j) { - if (typeof obj[j] !== 'undefined') { - compacted.push(obj[j]); - } - } +module.exports = uuid; - item.obj[item.prop] = compacted; - } - } - return obj; -}; +/***/ }), +/* 1465 */ +/***/ (function(module, exports, __webpack_require__) { -var arrayToObject = function arrayToObject(source, options) { - var obj = options && options.plainObjects ? Object.create(null) : {}; - for (var i = 0; i < source.length; ++i) { - if (typeof source[i] !== 'undefined') { - obj[i] = source[i]; - } - } +var rng = __webpack_require__(1466); +var bytesToUuid = __webpack_require__(1467); - return obj; -}; +// **`v1()` - Generate time-based UUID** +// +// Inspired by https://github.com/LiosK/UUID.js +// and http://docs.python.org/library/uuid.html -var merge = function merge(target, source, options) { - if (!source) { - return target; - } +var _nodeId; +var _clockseq; - if (typeof source !== 'object') { - if (Array.isArray(target)) { - target.push(source); - } else if (typeof target === 'object') { - if (options.plainObjects || options.allowPrototypes || !has.call(Object.prototype, source)) { - target[source] = true; - } - } else { - return [target, source]; - } +// Previous uuid creation time +var _lastMSecs = 0; +var _lastNSecs = 0; - return target; - } +// See https://github.com/broofa/node-uuid for API details +function v1(options, buf, offset) { + var i = buf && offset || 0; + var b = buf || []; - if (typeof target !== 'object') { - return [target].concat(source); - } + options = options || {}; + var node = options.node || _nodeId; + var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; - var mergeTarget = target; - if (Array.isArray(target) && !Array.isArray(source)) { - mergeTarget = arrayToObject(target, options); + // node and clockseq need to be initialized to random values if they're not + // specified. We do this lazily to minimize issues related to insufficient + // system entropy. See #189 + if (node == null || clockseq == null) { + var seedBytes = rng(); + if (node == null) { + // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1) + node = _nodeId = [ + seedBytes[0] | 0x01, + seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5] + ]; } - - if (Array.isArray(target) && Array.isArray(source)) { - source.forEach(function (item, i) { - if (has.call(target, i)) { - if (target[i] && typeof target[i] === 'object') { - target[i] = merge(target[i], item, options); - } else { - target.push(item); - } - } else { - target[i] = item; - } - }); - return target; + if (clockseq == null) { + // Per 4.2.2, randomize (14 bit) clockseq + clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff; } + } - return Object.keys(source).reduce(function (acc, key) { - var value = source[key]; + // UUID timestamps are 100 nano-second units since the Gregorian epoch, + // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so + // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs' + // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00. + var msecs = options.msecs !== undefined ? options.msecs : new Date().getTime(); - if (has.call(acc, key)) { - acc[key] = merge(acc[key], value, options); - } else { - acc[key] = value; - } - return acc; - }, mergeTarget); -}; + // Per 4.2.1.2, use count of uuid's generated during the current clock + // cycle to simulate higher resolution clock + var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; -var assign = function assignSingleSource(target, source) { - return Object.keys(source).reduce(function (acc, key) { - acc[key] = source[key]; - return acc; - }, target); -}; + // Time since last uuid creation (in msecs) + var dt = (msecs - _lastMSecs) + (nsecs - _lastNSecs)/10000; -var decode = function (str) { - try { - return decodeURIComponent(str.replace(/\+/g, ' ')); - } catch (e) { - return str; - } -}; + // Per 4.2.1.2, Bump clockseq on clock regression + if (dt < 0 && options.clockseq === undefined) { + clockseq = clockseq + 1 & 0x3fff; + } -var encode = function encode(str) { - // This code was originally written by Brian White (mscdex) for the io.js core querystring library. - // It has been adapted here for stricter adherence to RFC 3986 - if (str.length === 0) { - return str; - } + // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new + // time interval + if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) { + nsecs = 0; + } - var string = typeof str === 'string' ? str : String(str); + // Per 4.2.1.2 Throw error if too many uuids are requested + if (nsecs >= 10000) { + throw new Error('uuid.v1(): Can\'t create more than 10M uuids/sec'); + } - var out = ''; - for (var i = 0; i < string.length; ++i) { - var c = string.charCodeAt(i); + _lastMSecs = msecs; + _lastNSecs = nsecs; + _clockseq = clockseq; - if ( - c === 0x2D // - - || c === 0x2E // . - || c === 0x5F // _ - || c === 0x7E // ~ - || (c >= 0x30 && c <= 0x39) // 0-9 - || (c >= 0x41 && c <= 0x5A) // a-z - || (c >= 0x61 && c <= 0x7A) // A-Z - ) { - out += string.charAt(i); - continue; - } + // Per 4.1.4 - Convert from unix epoch to Gregorian epoch + msecs += 12219292800000; - if (c < 0x80) { - out = out + hexTable[c]; - continue; - } + // `time_low` + var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000; + b[i++] = tl >>> 24 & 0xff; + b[i++] = tl >>> 16 & 0xff; + b[i++] = tl >>> 8 & 0xff; + b[i++] = tl & 0xff; - if (c < 0x800) { - out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]); - continue; - } + // `time_mid` + var tmh = (msecs / 0x100000000 * 10000) & 0xfffffff; + b[i++] = tmh >>> 8 & 0xff; + b[i++] = tmh & 0xff; - if (c < 0xD800 || c >= 0xE000) { - out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]); - continue; - } + // `time_high_and_version` + b[i++] = tmh >>> 24 & 0xf | 0x10; // include version + b[i++] = tmh >>> 16 & 0xff; - i += 1; - c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF)); - out += hexTable[0xF0 | (c >> 18)] - + hexTable[0x80 | ((c >> 12) & 0x3F)] - + hexTable[0x80 | ((c >> 6) & 0x3F)] - + hexTable[0x80 | (c & 0x3F)]; - } + // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant) + b[i++] = clockseq >>> 8 | 0x80; - return out; -}; + // `clock_seq_low` + b[i++] = clockseq & 0xff; -var compact = function compact(value) { - var queue = [{ obj: { o: value }, prop: 'o' }]; - var refs = []; + // `node` + for (var n = 0; n < 6; ++n) { + b[i + n] = node[n]; + } - for (var i = 0; i < queue.length; ++i) { - var item = queue[i]; - var obj = item.obj[item.prop]; + return buf ? buf : bytesToUuid(b); +} - var keys = Object.keys(obj); - for (var j = 0; j < keys.length; ++j) { - var key = keys[j]; - var val = obj[key]; - if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) { - queue.push({ obj: obj, prop: key }); - refs.push(val); - } - } - } +module.exports = v1; - return compactQueue(queue); -}; -var isRegExp = function isRegExp(obj) { - return Object.prototype.toString.call(obj) === '[object RegExp]'; -}; +/***/ }), +/* 1466 */ +/***/ (function(module, exports, __webpack_require__) { -var isBuffer = function isBuffer(obj) { - if (obj === null || typeof obj === 'undefined') { - return false; - } +// Unique ID creation requires a high quality random # generator. In node.js +// this is pretty straight-forward - we use the crypto API. - return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj)); -}; +var crypto = __webpack_require__(94); -module.exports = { - arrayToObject: arrayToObject, - assign: assign, - compact: compact, - decode: decode, - encode: encode, - isBuffer: isBuffer, - isRegExp: isRegExp, - merge: merge +module.exports = function nodeRNG() { + return crypto.randomBytes(16); }; /***/ }), -/* 1327 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; +/* 1467 */ +/***/ (function(module, exports) { +/** + * Convert array of 16 byte values to UUID string format of the form: + * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX + */ +var byteToHex = []; +for (var i = 0; i < 256; ++i) { + byteToHex[i] = (i + 0x100).toString(16).substr(1); +} -var replace = String.prototype.replace; -var percentTwenties = /%20/g; +function bytesToUuid(buf, offset) { + var i = offset || 0; + var bth = byteToHex; + // join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4 + return ([bth[buf[i++]], bth[buf[i++]], + bth[buf[i++]], bth[buf[i++]], '-', + bth[buf[i++]], bth[buf[i++]], '-', + bth[buf[i++]], bth[buf[i++]], '-', + bth[buf[i++]], bth[buf[i++]], '-', + bth[buf[i++]], bth[buf[i++]], + bth[buf[i++]], bth[buf[i++]], + bth[buf[i++]], bth[buf[i++]]]).join(''); +} -module.exports = { - 'default': 'RFC3986', - formatters: { - RFC1738: function (value) { - return replace.call(value, percentTwenties, '+'); - }, - RFC3986: function (value) { - return value; - } - }, - RFC1738: 'RFC1738', - RFC3986: 'RFC3986' -}; +module.exports = bytesToUuid; /***/ }), -/* 1328 */ +/* 1468 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +var rng = __webpack_require__(1466); +var bytesToUuid = __webpack_require__(1467); +function v4(options, buf, offset) { + var i = buf && offset || 0; -var utils = __webpack_require__(1326); + if (typeof(options) == 'string') { + buf = options === 'binary' ? new Array(16) : null; + options = null; + } + options = options || {}; -var has = Object.prototype.hasOwnProperty; + var rnds = options.random || (options.rng || rng)(); -var defaults = { - allowDots: false, - allowPrototypes: false, - arrayLimit: 20, - decoder: utils.decode, - delimiter: '&', - depth: 5, - parameterLimit: 1000, - plainObjects: false, - strictNullHandling: false -}; + // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + rnds[6] = (rnds[6] & 0x0f) | 0x40; + rnds[8] = (rnds[8] & 0x3f) | 0x80; -var parseValues = function parseQueryStringValues(str, options) { - var obj = {}; - var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, '') : str; - var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit; - var parts = cleanStr.split(options.delimiter, limit); + // Copy bytes to buffer, if provided + if (buf) { + for (var ii = 0; ii < 16; ++ii) { + buf[i + ii] = rnds[ii]; + } + } - for (var i = 0; i < parts.length; ++i) { - var part = parts[i]; + return buf || bytesToUuid(rnds); +} - var bracketEqualsPos = part.indexOf(']='); - var pos = bracketEqualsPos === -1 ? part.indexOf('=') : bracketEqualsPos + 1; +module.exports = v4; - var key, val; - if (pos === -1) { - key = options.decoder(part, defaults.decoder); - val = options.strictNullHandling ? null : ''; - } else { - key = options.decoder(part.slice(0, pos), defaults.decoder); - val = options.decoder(part.slice(pos + 1), defaults.decoder); - } - if (has.call(obj, key)) { - obj[key] = [].concat(obj[key]).concat(val); - } else { - obj[key] = val; - } - } - return obj; -}; +/***/ }), +/* 1469 */ +/***/ (function(module, exports) { -var parseObject = function (chain, val, options) { - var leaf = val; +module.exports = require("domain"); - for (var i = chain.length - 1; i >= 0; --i) { - var obj; - var root = chain[i]; +/***/ }), +/* 1470 */ +/***/ (function(module, exports, __webpack_require__) { - if (root === '[]') { - obj = []; - obj = obj.concat(leaf); - } else { - obj = options.plainObjects ? Object.create(null) : {}; - var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root; - var index = parseInt(cleanRoot, 10); - if ( - !isNaN(index) - && root !== cleanRoot - && String(index) === cleanRoot - && index >= 0 - && (options.parseArrays && index <= options.arrayLimit) - ) { - obj = []; - obj[index] = leaf; - } else { - obj[cleanRoot] = leaf; - } - } +(function(){ + var crypt = __webpack_require__(1471), + utf8 = __webpack_require__(1472).utf8, + isBuffer = __webpack_require__(1473), + bin = __webpack_require__(1472).bin, + + // The core + md5 = function (message, options) { + // Convert to byte array + if (message.constructor == String) + if (options && options.encoding === 'binary') + message = bin.stringToBytes(message); + else + message = utf8.stringToBytes(message); + else if (isBuffer(message)) + message = Array.prototype.slice.call(message, 0); + else if (!Array.isArray(message) && message.constructor !== Uint8Array) + message = message.toString(); + // else, assume byte array already + + var m = crypt.bytesToWords(message), + l = message.length * 8, + a = 1732584193, + b = -271733879, + c = -1732584194, + d = 271733878; + + // Swap endian + for (var i = 0; i < m.length; i++) { + m[i] = ((m[i] << 8) | (m[i] >>> 24)) & 0x00FF00FF | + ((m[i] << 24) | (m[i] >>> 8)) & 0xFF00FF00; + } + + // Padding + m[l >>> 5] |= 0x80 << (l % 32); + m[(((l + 64) >>> 9) << 4) + 14] = l; + + // Method shortcuts + var FF = md5._ff, + GG = md5._gg, + HH = md5._hh, + II = md5._ii; + + for (var i = 0; i < m.length; i += 16) { + + var aa = a, + bb = b, + cc = c, + dd = d; + + a = FF(a, b, c, d, m[i+ 0], 7, -680876936); + d = FF(d, a, b, c, m[i+ 1], 12, -389564586); + c = FF(c, d, a, b, m[i+ 2], 17, 606105819); + b = FF(b, c, d, a, m[i+ 3], 22, -1044525330); + a = FF(a, b, c, d, m[i+ 4], 7, -176418897); + d = FF(d, a, b, c, m[i+ 5], 12, 1200080426); + c = FF(c, d, a, b, m[i+ 6], 17, -1473231341); + b = FF(b, c, d, a, m[i+ 7], 22, -45705983); + a = FF(a, b, c, d, m[i+ 8], 7, 1770035416); + d = FF(d, a, b, c, m[i+ 9], 12, -1958414417); + c = FF(c, d, a, b, m[i+10], 17, -42063); + b = FF(b, c, d, a, m[i+11], 22, -1990404162); + a = FF(a, b, c, d, m[i+12], 7, 1804603682); + d = FF(d, a, b, c, m[i+13], 12, -40341101); + c = FF(c, d, a, b, m[i+14], 17, -1502002290); + b = FF(b, c, d, a, m[i+15], 22, 1236535329); + + a = GG(a, b, c, d, m[i+ 1], 5, -165796510); + d = GG(d, a, b, c, m[i+ 6], 9, -1069501632); + c = GG(c, d, a, b, m[i+11], 14, 643717713); + b = GG(b, c, d, a, m[i+ 0], 20, -373897302); + a = GG(a, b, c, d, m[i+ 5], 5, -701558691); + d = GG(d, a, b, c, m[i+10], 9, 38016083); + c = GG(c, d, a, b, m[i+15], 14, -660478335); + b = GG(b, c, d, a, m[i+ 4], 20, -405537848); + a = GG(a, b, c, d, m[i+ 9], 5, 568446438); + d = GG(d, a, b, c, m[i+14], 9, -1019803690); + c = GG(c, d, a, b, m[i+ 3], 14, -187363961); + b = GG(b, c, d, a, m[i+ 8], 20, 1163531501); + a = GG(a, b, c, d, m[i+13], 5, -1444681467); + d = GG(d, a, b, c, m[i+ 2], 9, -51403784); + c = GG(c, d, a, b, m[i+ 7], 14, 1735328473); + b = GG(b, c, d, a, m[i+12], 20, -1926607734); + + a = HH(a, b, c, d, m[i+ 5], 4, -378558); + d = HH(d, a, b, c, m[i+ 8], 11, -2022574463); + c = HH(c, d, a, b, m[i+11], 16, 1839030562); + b = HH(b, c, d, a, m[i+14], 23, -35309556); + a = HH(a, b, c, d, m[i+ 1], 4, -1530992060); + d = HH(d, a, b, c, m[i+ 4], 11, 1272893353); + c = HH(c, d, a, b, m[i+ 7], 16, -155497632); + b = HH(b, c, d, a, m[i+10], 23, -1094730640); + a = HH(a, b, c, d, m[i+13], 4, 681279174); + d = HH(d, a, b, c, m[i+ 0], 11, -358537222); + c = HH(c, d, a, b, m[i+ 3], 16, -722521979); + b = HH(b, c, d, a, m[i+ 6], 23, 76029189); + a = HH(a, b, c, d, m[i+ 9], 4, -640364487); + d = HH(d, a, b, c, m[i+12], 11, -421815835); + c = HH(c, d, a, b, m[i+15], 16, 530742520); + b = HH(b, c, d, a, m[i+ 2], 23, -995338651); + + a = II(a, b, c, d, m[i+ 0], 6, -198630844); + d = II(d, a, b, c, m[i+ 7], 10, 1126891415); + c = II(c, d, a, b, m[i+14], 15, -1416354905); + b = II(b, c, d, a, m[i+ 5], 21, -57434055); + a = II(a, b, c, d, m[i+12], 6, 1700485571); + d = II(d, a, b, c, m[i+ 3], 10, -1894986606); + c = II(c, d, a, b, m[i+10], 15, -1051523); + b = II(b, c, d, a, m[i+ 1], 21, -2054922799); + a = II(a, b, c, d, m[i+ 8], 6, 1873313359); + d = II(d, a, b, c, m[i+15], 10, -30611744); + c = II(c, d, a, b, m[i+ 6], 15, -1560198380); + b = II(b, c, d, a, m[i+13], 21, 1309151649); + a = II(a, b, c, d, m[i+ 4], 6, -145523070); + d = II(d, a, b, c, m[i+11], 10, -1120210379); + c = II(c, d, a, b, m[i+ 2], 15, 718787259); + b = II(b, c, d, a, m[i+ 9], 21, -343485551); + + a = (a + aa) >>> 0; + b = (b + bb) >>> 0; + c = (c + cc) >>> 0; + d = (d + dd) >>> 0; + } + + return crypt.endian([a, b, c, d]); + }; + + // Auxiliary functions + md5._ff = function (a, b, c, d, x, s, t) { + var n = a + (b & c | ~b & d) + (x >>> 0) + t; + return ((n << s) | (n >>> (32 - s))) + b; + }; + md5._gg = function (a, b, c, d, x, s, t) { + var n = a + (b & d | c & ~d) + (x >>> 0) + t; + return ((n << s) | (n >>> (32 - s))) + b; + }; + md5._hh = function (a, b, c, d, x, s, t) { + var n = a + (b ^ c ^ d) + (x >>> 0) + t; + return ((n << s) | (n >>> (32 - s))) + b; + }; + md5._ii = function (a, b, c, d, x, s, t) { + var n = a + (c ^ (b | ~d)) + (x >>> 0) + t; + return ((n << s) | (n >>> (32 - s))) + b; + }; + + // Package private blocksize + md5._blocksize = 16; + md5._digestsize = 16; + + module.exports = function (message, options) { + if (message === undefined || message === null) + throw new Error('Illegal argument ' + message); + + var digestbytes = crypt.wordsToBytes(md5(message, options)); + return options && options.asBytes ? digestbytes : + options && options.asString ? bin.bytesToString(digestbytes) : + crypt.bytesToHex(digestbytes); + }; + +})(); - leaf = obj; - } - return leaf; -}; +/***/ }), +/* 1471 */ +/***/ (function(module, exports) { -var parseKeys = function parseQueryStringKeys(givenKey, val, options) { - if (!givenKey) { - return; - } +(function() { + var base64map + = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/', - // Transform dot notation to bracket notation - var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, '[$1]') : givenKey; + crypt = { + // Bit-wise rotation left + rotl: function(n, b) { + return (n << b) | (n >>> (32 - b)); + }, - // The regex chunks + // Bit-wise rotation right + rotr: function(n, b) { + return (n << (32 - b)) | (n >>> b); + }, - var brackets = /(\[[^[\]]*])/; - var child = /(\[[^[\]]*])/g; + // Swap big-endian to little-endian and vice versa + endian: function(n) { + // If number given, swap endian + if (n.constructor == Number) { + return crypt.rotl(n, 8) & 0x00FF00FF | crypt.rotl(n, 24) & 0xFF00FF00; + } - // Get the parent + // Else, assume array and swap all items + for (var i = 0; i < n.length; i++) + n[i] = crypt.endian(n[i]); + return n; + }, - var segment = brackets.exec(key); - var parent = segment ? key.slice(0, segment.index) : key; + // Generate an array of any length of random bytes + randomBytes: function(n) { + for (var bytes = []; n > 0; n--) + bytes.push(Math.floor(Math.random() * 256)); + return bytes; + }, - // Stash the parent if it exists + // Convert a byte array to big-endian 32-bit words + bytesToWords: function(bytes) { + for (var words = [], i = 0, b = 0; i < bytes.length; i++, b += 8) + words[b >>> 5] |= bytes[i] << (24 - b % 32); + return words; + }, - var keys = []; - if (parent) { - // If we aren't using plain objects, optionally prefix keys - // that would overwrite object prototype properties - if (!options.plainObjects && has.call(Object.prototype, parent)) { - if (!options.allowPrototypes) { - return; - } - } + // Convert big-endian 32-bit words to a byte array + wordsToBytes: function(words) { + for (var bytes = [], b = 0; b < words.length * 32; b += 8) + bytes.push((words[b >>> 5] >>> (24 - b % 32)) & 0xFF); + return bytes; + }, - keys.push(parent); - } + // Convert a byte array to a hex string + bytesToHex: function(bytes) { + for (var hex = [], i = 0; i < bytes.length; i++) { + hex.push((bytes[i] >>> 4).toString(16)); + hex.push((bytes[i] & 0xF).toString(16)); + } + return hex.join(''); + }, - // Loop through children appending to the array until we hit depth + // Convert a hex string to a byte array + hexToBytes: function(hex) { + for (var bytes = [], c = 0; c < hex.length; c += 2) + bytes.push(parseInt(hex.substr(c, 2), 16)); + return bytes; + }, - var i = 0; - while ((segment = child.exec(key)) !== null && i < options.depth) { - i += 1; - if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) { - if (!options.allowPrototypes) { - return; - } - } - keys.push(segment[1]); - } + // Convert a byte array to a base-64 string + bytesToBase64: function(bytes) { + for (var base64 = [], i = 0; i < bytes.length; i += 3) { + var triplet = (bytes[i] << 16) | (bytes[i + 1] << 8) | bytes[i + 2]; + for (var j = 0; j < 4; j++) + if (i * 8 + j * 6 <= bytes.length * 8) + base64.push(base64map.charAt((triplet >>> 6 * (3 - j)) & 0x3F)); + else + base64.push('='); + } + return base64.join(''); + }, - // If there's a remainder, just add whatever is left + // Convert a base-64 string to a byte array + base64ToBytes: function(base64) { + // Remove non-base-64 characters + base64 = base64.replace(/[^A-Z0-9+\/]/ig, ''); - if (segment) { - keys.push('[' + key.slice(segment.index) + ']'); + for (var bytes = [], i = 0, imod4 = 0; i < base64.length; + imod4 = ++i % 4) { + if (imod4 == 0) continue; + bytes.push(((base64map.indexOf(base64.charAt(i - 1)) + & (Math.pow(2, -2 * imod4 + 8) - 1)) << (imod4 * 2)) + | (base64map.indexOf(base64.charAt(i)) >>> (6 - imod4 * 2))); + } + return bytes; } + }; - return parseObject(keys, val, options); -}; + module.exports = crypt; +})(); -module.exports = function (str, opts) { - var options = opts ? utils.assign({}, opts) : {}; - if (options.decoder !== null && options.decoder !== undefined && typeof options.decoder !== 'function') { - throw new TypeError('Decoder has to be a function.'); - } +/***/ }), +/* 1472 */ +/***/ (function(module, exports) { - options.ignoreQueryPrefix = options.ignoreQueryPrefix === true; - options.delimiter = typeof options.delimiter === 'string' || utils.isRegExp(options.delimiter) ? options.delimiter : defaults.delimiter; - options.depth = typeof options.depth === 'number' ? options.depth : defaults.depth; - options.arrayLimit = typeof options.arrayLimit === 'number' ? options.arrayLimit : defaults.arrayLimit; - options.parseArrays = options.parseArrays !== false; - options.decoder = typeof options.decoder === 'function' ? options.decoder : defaults.decoder; - options.allowDots = typeof options.allowDots === 'boolean' ? options.allowDots : defaults.allowDots; - options.plainObjects = typeof options.plainObjects === 'boolean' ? options.plainObjects : defaults.plainObjects; - options.allowPrototypes = typeof options.allowPrototypes === 'boolean' ? options.allowPrototypes : defaults.allowPrototypes; - options.parameterLimit = typeof options.parameterLimit === 'number' ? options.parameterLimit : defaults.parameterLimit; - options.strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling; +var charenc = { + // UTF-8 encoding + utf8: { + // Convert a string to a byte array + stringToBytes: function(str) { + return charenc.bin.stringToBytes(unescape(encodeURIComponent(str))); + }, - if (str === '' || str === null || typeof str === 'undefined') { - return options.plainObjects ? Object.create(null) : {}; + // Convert a byte array to a string + bytesToString: function(bytes) { + return decodeURIComponent(escape(charenc.bin.bytesToString(bytes))); } + }, - var tempObj = typeof str === 'string' ? parseValues(str, options) : str; - var obj = options.plainObjects ? Object.create(null) : {}; - - // Iterate over the keys and setup the new object + // Binary encoding + bin: { + // Convert a string to a byte array + stringToBytes: function(str) { + for (var bytes = [], i = 0; i < str.length; i++) + bytes.push(str.charCodeAt(i) & 0xFF); + return bytes; + }, - var keys = Object.keys(tempObj); - for (var i = 0; i < keys.length; ++i) { - var key = keys[i]; - var newObj = parseKeys(key, tempObj[key], options); - obj = utils.merge(obj, newObj, options); + // Convert a byte array to a string + bytesToString: function(bytes) { + for (var str = [], i = 0; i < bytes.length; i++) + str.push(String.fromCharCode(bytes[i])); + return str.join(''); } - - return utils.compact(obj); + } }; +module.exports = charenc; -/***/ }), -/* 1329 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; +/***/ }), +/* 1473 */ +/***/ (function(module, exports) { -var fs = __webpack_require__(167) -var qs = __webpack_require__(104) -var validate = __webpack_require__(192) -var extend = __webpack_require__(79) +/*! + * Determine if an object is a Buffer + * + * @author Feross Aboukhadijeh <https://feross.org> + * @license MIT + */ -function Har (request) { - this.request = request +// The _isBuffer check is for Safari 5-7 support, because it's missing +// Object.prototype.constructor. Remove this eventually +module.exports = function (obj) { + return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer) } -Har.prototype.reducer = function (obj, pair) { - // new property ? - if (obj[pair.name] === undefined) { - obj[pair.name] = pair.value - return obj - } +function isBuffer (obj) { + return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj) +} - // existing? convert to array - var arr = [ - obj[pair.name], - pair.value - ] +// For Node v0.10 support. Remove this eventually. +function isSlowBuffer (obj) { + return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0)) +} - obj[pair.name] = arr - return obj -} +/***/ }), +/* 1474 */ +/***/ (function(module, exports, __webpack_require__) { -Har.prototype.prep = function (data) { - // construct utility properties - data.queryObj = {} - data.headersObj = {} - data.postData.jsonObj = false - data.postData.paramsObj = false +"use strict"; - // construct query objects - if (data.queryString && data.queryString.length) { - data.queryObj = data.queryString.reduce(this.reducer, {}) - } - // construct headers objects - if (data.headers && data.headers.length) { - // loweCase header keys - data.headersObj = data.headers.reduceRight(function (headers, header) { - headers[header.name] = header.value - return headers - }, {}) - } +var utils = __webpack_require__(1458); - // construct Cookie header - if (data.cookies && data.cookies.length) { - var cookies = data.cookies.map(function (cookie) { - return cookie.name + '=' + cookie.value - }) +var defaultOnConfig = { + console: true, + http: true +}; - if (cookies.length) { - data.headersObj.cookie = cookies.join('; ') - } - } +var defaultConfig = { + console: false, + http: false, + pg: false +}; - // prep body - function some (arr) { - return arr.some(function (type) { - return data.postData.mimeType.indexOf(type) === 0 - }) +function instrument(Raven, config) { + if (config === false) { + return; + } else if (config === true) { + config = defaultOnConfig; + } else { + config = utils.extend({}, defaultConfig, config); } - if (some([ - 'multipart/mixed', - 'multipart/related', - 'multipart/form-data', - 'multipart/alternative'])) { - // reset values - data.postData.mimeType = 'multipart/form-data' - } else if (some([ - 'application/x-www-form-urlencoded'])) { - if (!data.postData.params) { - data.postData.text = '' - } else { - data.postData.paramsObj = data.postData.params.reduce(this.reducer, {}) + Raven.instrumentedOriginals = []; + Raven.instrumentedModules = []; - // always overwrite - data.postData.text = qs.stringify(data.postData.paramsObj) - } - } else if (some([ - 'text/json', - 'text/x-json', - 'application/json', - 'application/x-json'])) { - data.postData.mimeType = 'application/json' + var Module = __webpack_require__(1475); + utils.fill( + Module, + '_load', + function(origLoad) { + return function(moduleId, parent, isMain) { + var origModule = origLoad.apply(this, arguments); + if (config[moduleId] && Raven.instrumentedModules.indexOf(moduleId) === -1) { + Raven.instrumentedModules.push(moduleId); + return __webpack_require__(1476)("./" + moduleId)(Raven, origModule, Raven.instrumentedOriginals); + } + return origModule; + }; + }, + Raven.instrumentedOriginals + ); - if (data.postData.text) { - try { - data.postData.jsonObj = JSON.parse(data.postData.text) - } catch (e) { - this.request.debug(e) + // special case: since console is built-in and app-level code won't require() it, do that here + if (config.console) { + __webpack_require__(1480); + } - // force back to text/plain - data.postData.mimeType = 'text/plain' - } - } + // observation: when the https module does its own require('http'), it *does not* hit our hooked require to instrument http on the fly + // but if we've previously instrumented http, https *does* get our already-instrumented version + // this is because raven's transports are required before this instrumentation takes place, which loads https (and http) + // so module cache will have uninstrumented http; proactively loading it here ensures instrumented version is in module cache + // alternatively we could refactor to load our transports later, but this is easier and doesn't have much drawback + if (config.http) { + __webpack_require__(98); } - - return data } -Har.prototype.options = function (options) { - // skip if no har property defined - if (!options.har) { - return options +function deinstrument(Raven) { + if (!Raven.instrumentedOriginals) return; + var original; + // eslint-disable-next-line no-cond-assign + while ((original = Raven.instrumentedOriginals.shift())) { + var obj = original[0]; + var name = original[1]; + var orig = original[2]; + obj[name] = orig; } +} - var har = {} - extend(har, options.har) +module.exports = { + instrument: instrument, + deinstrument: deinstrument +}; - // only process the first entry - if (har.log && har.log.entries) { - har = har.log.entries[0] - } - // add optional properties to make validation successful - har.url = har.url || options.url || options.uri || options.baseUrl || '/' - har.httpVersion = har.httpVersion || 'HTTP/1.1' - har.queryString = har.queryString || [] - har.headers = har.headers || [] - har.cookies = har.cookies || [] - har.postData = har.postData || {} - har.postData.mimeType = har.postData.mimeType || 'application/octet-stream' +/***/ }), +/* 1475 */ +/***/ (function(module, exports) { - har.bodySize = 0 - har.headersSize = 0 - har.postData.size = 0 +module.exports = require("module"); - if (!validate.request(har)) { - return options - } +/***/ }), +/* 1476 */ +/***/ (function(module, exports, __webpack_require__) { - // clean up and get some utility properties - var req = this.prep(har) +var map = { + "./console": 1477, + "./console.js": 1477, + "./http": 1478, + "./http.js": 1478, + "./instrumentor": 1474, + "./instrumentor.js": 1474, + "./pg": 1479, + "./pg.js": 1479 +}; - // construct new options - if (req.url) { - options.url = req.url - } - if (req.method) { - options.method = req.method - } +function webpackContext(req) { + var id = webpackContextResolve(req); + return __webpack_require__(id); +} +function webpackContextResolve(req) { + if(!__webpack_require__.o(map, req)) { + var e = new Error("Cannot find module '" + req + "'"); + e.code = 'MODULE_NOT_FOUND'; + throw e; + } + return map[req]; +} +webpackContext.keys = function webpackContextKeys() { + return Object.keys(map); +}; +webpackContext.resolve = webpackContextResolve; +module.exports = webpackContext; +webpackContext.id = 1476; - if (Object.keys(req.queryObj).length) { - options.qs = req.queryObj - } +/***/ }), +/* 1477 */ +/***/ (function(module, exports, __webpack_require__) { - if (Object.keys(req.headersObj).length) { - options.headers = req.headersObj - } +"use strict"; - function test (type) { - return req.postData.mimeType.indexOf(type) === 0 - } - if (test('application/x-www-form-urlencoded')) { - options.form = req.postData.paramsObj - } else if (test('application/json')) { - if (req.postData.jsonObj) { - options.body = req.postData.jsonObj - options.json = true - } - } else if (test('multipart/form-data')) { - options.formData = {} - req.postData.params.forEach(function (param) { - var attachment = {} +var util = __webpack_require__(9); +var utils = __webpack_require__(1458); - if (!param.fileName && !param.fileName && !param.contentType) { - options.formData[param.name] = param.value - return - } +module.exports = function(Raven, console, originals) { + var wrapConsoleMethod = function(level) { + if (!(level in console)) { + return; + } - // attempt to read from disk! - if (param.fileName && !param.value) { - attachment.value = fs.createReadStream(param.fileName) - } else if (param.value) { - attachment.value = param.value - } + utils.fill( + console, + level, + function(originalConsoleLevel) { + var sentryLevel = level === 'warn' ? 'warning' : level; - if (param.fileName) { - attachment.options = { - filename: param.fileName, - contentType: param.contentType ? param.contentType : null - } - } + return function() { + var args = [].slice.call(arguments); - options.formData[param.name] = attachment - }) - } else { - if (req.postData.text) { - options.body = req.postData.text - } - } + Raven.captureBreadcrumb({ + message: util.format.apply(null, args), + level: sentryLevel, + category: 'console' + }); - return options -} + originalConsoleLevel.apply(console, args); + }; + }, + originals + ); + }; -exports.Har = Har + ['debug', 'info', 'warn', 'error', 'log'].forEach(wrapConsoleMethod); + + return console; +}; /***/ }), -/* 1330 */ +/* 1478 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; +var util = __webpack_require__(9); +var utils = __webpack_require__(1458); -var caseless = __webpack_require__(161) -var uuid = __webpack_require__(1331) -var helpers = __webpack_require__(1320) - -var md5 = helpers.md5 -var toBase64 = helpers.toBase64 - -function Auth (request) { - // define all public properties here - this.request = request - this.hasAuth = false - this.sentAuth = false - this.bearerToken = null - this.user = null - this.pass = null -} +module.exports = function(Raven, http, originals) { + var OrigClientRequest = http.ClientRequest; + var ClientRequest = function(options, cb) { + // Note: this won't capture a breadcrumb if a response never comes + // It would be useful to know if that was the case, though, so + // todo: revisit to see if we can capture sth indicating response never came + // possibility: capture one breadcrumb for "req sent" and one for "res recvd" + // seems excessive but solves the problem and *is* strictly more information + // could be useful for weird response sequencing bug scenarios + OrigClientRequest.call(this, options, cb); -Auth.prototype.basic = function (user, pass, sendImmediately) { - var self = this - if (typeof user !== 'string' || (pass !== undefined && typeof pass !== 'string')) { - self.request.emit('error', new Error('auth() received invalid user or password')) - } - self.user = user - self.pass = pass - self.hasAuth = true - var header = user + ':' + (pass || '') - if (sendImmediately || typeof sendImmediately === 'undefined') { - var authHeader = 'Basic ' + toBase64(header) - self.sentAuth = true - return authHeader - } -} + // We could just always reconstruct this from this.agent, this._headers, this.path, etc + // but certain other http-instrumenting libraries (like nock, which we use for tests) fail to + // maintain the guarantee that after calling OrigClientRequest, those fields will be populated + if (typeof options === 'string') { + this.__ravenBreadcrumbUrl = options; + } else { + var protocol = options.protocol || ''; + var hostname = options.hostname || options.host || ''; + // Don't log standard :80 (http) and :443 (https) ports to reduce the noise + var port = + !options.port || options.port === 80 || options.port === 443 + ? '' + : ':' + options.port; + var path = options.path || '/'; -Auth.prototype.bearer = function (bearer, sendImmediately) { - var self = this - self.bearerToken = bearer - self.hasAuth = true - if (sendImmediately || typeof sendImmediately === 'undefined') { - if (typeof bearer === 'function') { - bearer = bearer() + this.__ravenBreadcrumbUrl = protocol + '//' + hostname + port + path; } - var authHeader = 'Bearer ' + (bearer || '') - self.sentAuth = true - return authHeader - } -} + }; + util.inherits(ClientRequest, OrigClientRequest); -Auth.prototype.digest = function (method, path, authHeader) { - // TODO: More complete implementation of RFC 2617. - // - handle challenge.domain - // - support qop="auth-int" only - // - handle Authentication-Info (not necessarily?) - // - check challenge.stale (not necessarily?) - // - increase nc (not necessarily?) - // For reference: - // http://tools.ietf.org/html/rfc2617#section-3 - // https://github.com/bagder/curl/blob/master/lib/http_digest.c + utils.fill(ClientRequest.prototype, 'emit', function(origEmit) { + return function(evt, maybeResp) { + if (evt === 'response' && this.__ravenBreadcrumbUrl) { + if (!Raven.dsn || this.__ravenBreadcrumbUrl.indexOf(Raven.dsn.host) === -1) { + Raven.captureBreadcrumb({ + type: 'http', + category: 'http', + data: { + method: this.method, + url: this.__ravenBreadcrumbUrl, + status_code: maybeResp.statusCode + } + }); + } + } + return origEmit.apply(this, arguments); + }; + }); - var self = this + utils.fill( + http, + 'ClientRequest', + function() { + return ClientRequest; + }, + originals + ); - var challenge = {} - var re = /([a-z0-9_-]+)=(?:"([^"]+)"|([a-z0-9_-]+))/gi - for (;;) { - var match = re.exec(authHeader) - if (!match) { - break - } - challenge[match[1]] = match[2] || match[3] - } + // http.request orig refs module-internal ClientRequest, not exported one, so + // it still points at orig ClientRequest after our monkeypatch; these reimpls + // just get that reference updated to use our new ClientRequest + utils.fill( + http, + 'request', + function() { + return function(options, cb) { + return new http.ClientRequest(options, cb); + }; + }, + originals + ); - /** - * RFC 2617: handle both MD5 and MD5-sess algorithms. - * - * If the algorithm directive's value is "MD5" or unspecified, then HA1 is - * HA1=MD5(username:realm:password) - * If the algorithm directive's value is "MD5-sess", then HA1 is - * HA1=MD5(MD5(username:realm:password):nonce:cnonce) - */ - var ha1Compute = function (algorithm, user, realm, pass, nonce, cnonce) { - var ha1 = md5(user + ':' + realm + ':' + pass) - if (algorithm && algorithm.toLowerCase() === 'md5-sess') { - return md5(ha1 + ':' + nonce + ':' + cnonce) - } else { - return ha1 - } - } + utils.fill( + http, + 'get', + function() { + return function(options, cb) { + var req = http.request(options, cb); + req.end(); + return req; + }; + }, + originals + ); - var qop = /(^|,)\s*auth\s*($|,)/.test(challenge.qop) && 'auth' - var nc = qop && '00000001' - var cnonce = qop && uuid().replace(/-/g, '') - var ha1 = ha1Compute(challenge.algorithm, self.user, challenge.realm, self.pass, challenge.nonce, cnonce) - var ha2 = md5(method + ':' + path) - var digestResponse = qop - ? md5(ha1 + ':' + challenge.nonce + ':' + nc + ':' + cnonce + ':' + qop + ':' + ha2) - : md5(ha1 + ':' + challenge.nonce + ':' + ha2) - var authValues = { - username: self.user, - realm: challenge.realm, - nonce: challenge.nonce, - uri: path, - qop: qop, - response: digestResponse, - nc: nc, - cnonce: cnonce, - algorithm: challenge.algorithm, - opaque: challenge.opaque - } + return http; +}; - authHeader = [] - for (var k in authValues) { - if (authValues[k]) { - if (k === 'qop' || k === 'nc' || k === 'algorithm') { - authHeader.push(k + '=' + authValues[k]) - } else { - authHeader.push(k + '="' + authValues[k] + '"') - } - } - } - authHeader = 'Digest ' + authHeader.join(', ') - self.sentAuth = true - return authHeader -} -Auth.prototype.onRequest = function (user, pass, sendImmediately, bearer) { - var self = this - var request = self.request +/***/ }), +/* 1479 */ +/***/ (function(module, exports, __webpack_require__) { - var authHeader - if (bearer === undefined && user === undefined) { - self.request.emit('error', new Error('no auth mechanism defined')) - } else if (bearer !== undefined) { - authHeader = self.bearer(bearer, sendImmediately) - } else { - authHeader = self.basic(user, pass, sendImmediately) - } - if (authHeader) { - request.setHeader('authorization', authHeader) - } -} +"use strict"; -Auth.prototype.onResponse = function (response) { - var self = this - var request = self.request +module.exports = function(Raven, pg, originals) { + // Using fill helper here is hard because of `this` binding + var origQuery = pg.Connection.prototype.query; + pg.Connection.prototype.query = function(text) { + Raven.captureBreadcrumb({ + category: 'postgres', + message: text + }); + origQuery.call(this, text); + }; + // todo thread this through + // originals.push([pg.Connection.prototype, 'query', origQuery]); +}; - if (!self.hasAuth || self.sentAuth) { return null } - var c = caseless(response.headers) +/***/ }), +/* 1480 */ +/***/ (function(module, exports) { - var authHeader = c.get('www-authenticate') - var authVerb = authHeader && authHeader.split(' ')[0].toLowerCase() - request.debug('reauth', authVerb) +module.exports = require("console"); - switch (authVerb) { - case 'basic': - return self.basic(self.user, self.pass, true) +/***/ }), +/* 1481 */ +/***/ (function(module, exports) { - case 'bearer': - return self.bearer(self.bearerToken, true) +const DOMAIN_REGEXP = /^https?:\/\/([a-zA-Z0-9-.]+)(?::\d{2,5})?\/?$/; - case 'digest': - return self.digest(request.method, request.path, authHeader) - } -} +const getDomain = cozyUrl => { + cozyUrl = cozyUrl || process.env.COZY_URL; + return cozyUrl.match(DOMAIN_REGEXP)[1].split('.').slice(-2).join('.'); +}; -exports.Auth = Auth +const getInstance = cozyUrl => { + cozyUrl = cozyUrl || process.env.COZY_URL; + return cozyUrl.match(DOMAIN_REGEXP)[1].split('.').slice(-3).join('.'); +}; +module.exports = { + getDomain, + getInstance +}; /***/ }), -/* 1331 */ +/* 1482 */ /***/ (function(module, exports, __webpack_require__) { -var rng = __webpack_require__(1332); -var bytesToUuid = __webpack_require__(1333); +var before = __webpack_require__(1483); -function v4(options, buf, offset) { - var i = buf && offset || 0; +/** + * Creates a function that is restricted to invoking `func` once. Repeat calls + * to the function return the value of the first invocation. The `func` is + * invoked with the `this` binding and arguments of the created function. + * + * @static + * @memberOf _ + * @since 0.1.0 + * @category Function + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * var initialize = _.once(createApplication); + * initialize(); + * initialize(); + * // => `createApplication` is invoked once + */ +function once(func) { + return before(2, func); +} - if (typeof(options) == 'string') { - buf = options === 'binary' ? new Array(16) : null; - options = null; - } - options = options || {}; +module.exports = once; - var rnds = options.random || (options.rng || rng)(); - // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` - rnds[6] = (rnds[6] & 0x0f) | 0x40; - rnds[8] = (rnds[8] & 0x3f) | 0x80; +/***/ }), +/* 1483 */ +/***/ (function(module, exports, __webpack_require__) { - // Copy bytes to buffer, if provided - if (buf) { - for (var ii = 0; ii < 16; ++ii) { - buf[i + ii] = rnds[ii]; - } - } +var toInteger = __webpack_require__(693); - return buf || bytesToUuid(rnds); +/** Error message constants. */ +var FUNC_ERROR_TEXT = 'Expected a function'; + +/** + * Creates a function that invokes `func`, with the `this` binding and arguments + * of the created function, while it's called less than `n` times. Subsequent + * calls to the created function return the result of the last `func` invocation. + * + * @static + * @memberOf _ + * @since 3.0.0 + * @category Function + * @param {number} n The number of calls at which `func` is no longer invoked. + * @param {Function} func The function to restrict. + * @returns {Function} Returns the new restricted function. + * @example + * + * jQuery(element).on('click', _.before(5, addContactToList)); + * // => Allows adding up to 4 contacts to the list. + */ +function before(n, func) { + var result; + if (typeof func != 'function') { + throw new TypeError(FUNC_ERROR_TEXT); + } + n = toInteger(n); + return function() { + if (--n > 0) { + result = func.apply(this, arguments); + } + if (n <= 1) { + func = undefined; + } + return result; + }; } -module.exports = v4; +module.exports = before; /***/ }), -/* 1332 */ +/* 1484 */ /***/ (function(module, exports, __webpack_require__) { -// Unique ID creation requires a high quality random # generator. In node.js -// this is pretty straight-forward - we use the crypto API. +const log = __webpack_require__(2).namespace('Error Interception'); -var crypto = __webpack_require__(94); +const handleUncaughtException = err => { + log('critical', err.message, 'uncaught exception'); + process.exit(1); +}; -module.exports = function nodeRNG() { - return crypto.randomBytes(16); +const handleUnhandledRejection = err => { + log('critical', err.message, 'unhandled exception'); + process.exit(1); }; +const handleSigterm = () => { + log('critical', 'The konnector got a SIGTERM'); + process.exit(128 + 15); +}; -/***/ }), -/* 1333 */ -/***/ (function(module, exports) { +const handleSigint = () => { + log('critical', 'The konnector got a SIGINT'); + process.exit(128 + 2); +}; +let attached = false; /** - * Convert array of 16 byte values to UUID string format of the form: - * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX + * Attach event handlers to catch uncaught exceptions/rejections and signals. + * Log them as critical and exit the process accordingly. + * If the cleanup function has not been called, calling again the function + * is a no-op. + * + * @param {object} prcs - Process object, default to current process + * @returns {Function} When called, removes the signal handlers */ -var byteToHex = []; -for (var i = 0; i < 256; ++i) { - byteToHex[i] = (i + 0x100).toString(16).substr(1); -} -function bytesToUuid(buf, offset) { - var i = offset || 0; - var bth = byteToHex; - // join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4 - return ([ - bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]] - ]).join(''); -} +const attachProcessEventHandlers = (prcs = process) => { + if (attached) { + return; + } -module.exports = bytesToUuid; + attached = true; + prcs.on('uncaughtException', handleUncaughtException); + prcs.on('unhandledRejection', handleUnhandledRejection); + prcs.on('SIGTERM', handleSigterm); + prcs.on('SIGINT', handleSigint); + return () => { + attached = false; + prcs.removeEventListener('uncaughtException', handleUncaughtException); + prcs.removeEventListener('unhandledRejection', handleUnhandledRejection); + prcs.removeEventListener('SIGTERM', handleSigterm); + prcs.removeEventListener('SIGINT', handleSigint); + }; +}; +module.exports = { + attachProcessEventHandlers +}; /***/ }), -/* 1334 */ +/* 1485 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +const log = __webpack_require__(2).namespace('CookieKonnector'); +const BaseKonnector = __webpack_require__(1402); -var url = __webpack_require__(83) -var qs = __webpack_require__(1324) -var caseless = __webpack_require__(161) -var uuid = __webpack_require__(1331) -var oauth = __webpack_require__(265) -var crypto = __webpack_require__(94) -var Buffer = __webpack_require__(95).Buffer +const requestFactory = __webpack_require__(22); -function OAuth (request) { - this.request = request - this.params = null -} +const { + CookieJar +} = __webpack_require__(81); -OAuth.prototype.buildParams = function (_oauth, uri, method, query, form, qsLib) { - var oa = {} - for (var i in _oauth) { - oa['oauth_' + i] = _oauth[i] - } - if (!oa.oauth_version) { - oa.oauth_version = '1.0' - } - if (!oa.oauth_timestamp) { - oa.oauth_timestamp = Math.floor(Date.now() / 1000).toString() - } - if (!oa.oauth_nonce) { - oa.oauth_nonce = uuid().replace(/-/g, '') - } - if (!oa.oauth_signature_method) { - oa.oauth_signature_method = 'HMAC-SHA1' +const JAR_ACCOUNT_KEY = 'session'; +/** + * @class + * Connector base class extending BaseKonnector which handles cookie session in a central way + * It also handles saving cookie session in the account and automatically restore it for the next + * connector run. + * All cozy-konnector-libs tools using request are proposed as methods of this class to force them + * to use the central cookie which can be saved/restored. + * You need at least the `GET` and `PUT` permissions on `io.cozy.accounts` in your manifest to allow + * it to save/restore cookies + * + * @example + * ```javascript + * const { CookieKonnector } = require('cozy-konnector-libs') + * class MyConnector extends CookieKonnector { + * async fetch(fields) { + * // the code of your connector + * await this.request('https://...') + * } + * async testSession() { + * const $ = await this.request('https://...') + * return $('') + * } + * } + * const connector = new MyKonnector({ + * cheerio: true, + * json: false + * }) + * connector.run() + * ``` + * + */ + +class CookieKonnector extends BaseKonnector { + /** + * Constructor + * + * @param {Function} requestFactoryOptions - Option object passed to requestFactory to + * initialize this.request. It is still possible to change this.request doing : + * + * ```javascript + * this.request = this.requestFactory(...) + * ``` + * + * Please not you have to run the connector yourself doing : + * + * ```javascript + * connector.run() + * ``` + */ + constructor(requestFactoryOptions) { + super(); + + if (!this.testSession) { + throw new Error('Could not find a testSession method. CookieKonnector needs it to test if a session is valid. Please implement it'); + } + + this._jar = requestFactory().jar(); + this.request = this.requestFactory(requestFactoryOptions); } + /** + * Initializes the current connector with data coming from the associated account + * and also the session + * + * @returns {Promise} with the fields as an object + */ - var consumer_secret_or_private_key = oa.oauth_consumer_secret || oa.oauth_private_key // eslint-disable-line camelcase - delete oa.oauth_consumer_secret - delete oa.oauth_private_key - var token_secret = oa.oauth_token_secret // eslint-disable-line camelcase - delete oa.oauth_token_secret + async initAttributes(cozyFields, account) { + await super.initAttributes(cozyFields, account); + await this.initSession(); + } + /** + * Hook called when the connector is ended + */ - var realm = oa.oauth_realm - delete oa.oauth_realm - delete oa.oauth_transport_method - var baseurl = uri.protocol + '//' + uri.host + uri.pathname - var params = qsLib.parse([].concat(query, form, qsLib.stringify(oa)).join('&')) + async end() { + await this.saveSession(); + return super.end(); + } + /** + * Calls cozy-konnector-libs requestFactory forcing this._jar as the cookie + * + * @param {object} options - requestFactory option + * @returns {object} - The resulting request object + */ - oa.oauth_signature = oauth.sign( - oa.oauth_signature_method, - method, - baseurl, - params, - consumer_secret_or_private_key, // eslint-disable-line camelcase - token_secret // eslint-disable-line camelcase - ) - if (realm) { - oa.realm = realm + requestFactory(options) { + this._jar = this._jar || requestFactory().jar(); + return requestFactory({ ...options, + jar: this._jar + }); } + /** + * Reset cookie session with a new empty session and save it to the associated account + * + * @returns {Promise} empty promise + */ - return oa -} -OAuth.prototype.buildBodyHash = function (_oauth, body) { - if (['HMAC-SHA1', 'RSA-SHA1'].indexOf(_oauth.signature_method || 'HMAC-SHA1') < 0) { - this.request.emit('error', new Error('oauth: ' + _oauth.signature_method + - ' signature_method not supported with body_hash signing.')) + async resetSession() { + log('debug', 'Reset cookie session...'); + this._jar = requestFactory().jar(); + return this.saveSession(); } + /** + * Get the cookie session from the account if any + * + * @returns {Promise} true or false if the session in the account exists or not + */ - var shasum = crypto.createHash('sha1') - shasum.update(body || '') - var sha1 = shasum.digest('hex') - return Buffer.from(sha1, 'hex').toString('base64') -} + async initSession() { + const accountData = this.getAccountData(); -OAuth.prototype.concatParams = function (oa, sep, wrap) { - wrap = wrap || '' + try { + if (this._account.state === 'RESET_SESSION') { + log('debug', 'RESET_SESSION state found'); + await this.resetSession(); + await this.updateAccountAttributes({ + state: null + }); + } + } catch (err) { + log('warn', 'Could not reset the session'); + log('warn', err.message); + } - var params = Object.keys(oa).filter(function (i) { - return i !== 'realm' && i !== 'oauth_signature' - }).sort() + try { + let jar = null; - if (oa.realm) { - params.splice(0, 0, 'realm') - } - params.push('oauth_signature') + if (accountData && accountData.auth) { + jar = JSON.parse(accountData.auth[JAR_ACCOUNT_KEY]); + } - return params.map(function (i) { - return i + '=' + wrap + oauth.rfc3986(oa[i]) + wrap - }).join(sep) -} + if (jar) { + log('debug', 'found saved session, using it...'); + this._jar._jar = CookieJar.fromJSON(jar, this._jar._jar.store); + return true; + } + } catch (err) { + log('debug', 'Could not parse session'); + } -OAuth.prototype.onRequest = function (_oauth) { - var self = this - self.params = _oauth + log('debug', 'Found no session'); + return false; + } + /** + * Saves the current cookie session to the account + * + * @returns {Promise} empty promise + */ - var uri = self.request.uri || {} - var method = self.request.method || '' - var headers = caseless(self.request.headers) - var body = self.request.body || '' - var qsLib = self.request.qsLib || qs - var form - var query - var contentType = headers.get('content-type') || '' - var formContentType = 'application/x-www-form-urlencoded' - var transport = _oauth.transport_method || 'header' + async saveSession(obj) { + const accountData = { ...this._account.data, + auth: {} + }; - if (contentType.slice(0, formContentType.length) === formContentType) { - contentType = formContentType - form = body - } - if (uri.query) { - query = uri.query - } - if (transport === 'body' && (method !== 'POST' || contentType !== formContentType)) { - self.request.emit('error', new Error('oauth: transport_method of body requires POST ' + - 'and content-type ' + formContentType)) - } + if (obj && obj.getCookieJar) { + this._jar._jar = obj.getCookieJar(); + } - if (!form && typeof _oauth.body_hash === 'boolean') { - _oauth.body_hash = self.buildBodyHash(_oauth, self.request.body.toString()) + accountData.auth[JAR_ACCOUNT_KEY] = JSON.stringify(this._jar._jar.toJSON()); + await this.saveAccountData(accountData); + log('debug', 'saved the session'); } + /** + * This is signin function from cozy-konnector-libs which is forced to use the current cookies + * and current request from CookieKonnector. It also automatically saves the session after + * signin if it is a success. + * + * @returns {Promise} resolve with an object containing form data + */ - var oa = self.buildParams(_oauth, uri, method, query, form, qsLib) - switch (transport) { - case 'header': - self.request.setHeader('Authorization', 'OAuth ' + self.concatParams(oa, ',', '"')) - break + async signin(options) { + const result = await super.signin({ ...options, + requestInstance: this.request + }); + await this.saveSession(); + return result; + } + /** + * This is saveFiles function from cozy-konnector-libs which is forced to use the current cookies + * and current request from CookieKonnector. + * + * @returns {Promise} resolves with the list of entries with file objects + */ - case 'query': - var href = self.request.uri.href += (query ? '&' : '?') + self.concatParams(oa, '&') - self.request.uri = url.parse(href) - self.request.path = self.request.uri.path - break - case 'body': - self.request.body = (form ? form + '&' : '') + self.concatParams(oa, '&') - break + saveFiles(entries, fields, options) { + return super.saveFiles(entries, fields, { ...options, + requestInstance: this.request + }); + } + /** + * This is saveBills function from cozy-konnector-libs which is forced to use the current cookies + * and current request from CookieKonnector. + * + * @returns {Promise} resolves with entries hydrated with db data + */ - default: - self.request.emit('error', new Error('oauth: transport_method invalid')) + + saveBills(entries, fields, options) { + return super.saveBills(entries, fields, { ...options, + requestInstance: this.request + }); } -} -exports.OAuth = OAuth +} +module.exports = CookieKonnector; /***/ }), -/* 1335 */ +/* 1486 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; +const { + URL +} = __webpack_require__(83); +const computeWidth = $table => { + let out = 0; + const tds = $table.find('tr').first().find('td,th'); -var crypto = __webpack_require__(94) + for (var i = 0; i < tds.length; i++) { + out += parseInt(tds.eq(i).attr('colspan')) || 1; + } -function randomString (size) { - var bits = (size + 1) * 6 - var buffer = crypto.randomBytes(Math.ceil(bits / 8)) - var string = buffer.toString('base64').replace(/\+/g, '-').replace(/\//g, '_').replace(/=/g, '') - return string.slice(0, size) -} + return out; +}; -function calculatePayloadHash (payload, algorithm, contentType) { - var hash = crypto.createHash(algorithm) - hash.update('hawk.1.payload\n') - hash.update((contentType ? contentType.split(';')[0].trim().toLowerCase() : '') + '\n') - hash.update(payload || '') - hash.update('\n') - return hash.digest('base64') -} +const makeLinkOpts = ($el, opts) => { + if ($el.attr('href') === undefined) return undefined; + if ($el.attr('href').indexOf('javascript:') === 0) return undefined; + if ($el.attr('href').indexOf('#') === 0) return undefined; + return { + link: new URL($el.attr('href'), opts.baseURL).toString(), + color: '0x0000FF' + }; +}; -exports.calculateMac = function (credentials, opts) { - var normalized = 'hawk.1.header\n' + - opts.ts + '\n' + - opts.nonce + '\n' + - (opts.method || '').toUpperCase() + '\n' + - opts.resource + '\n' + - opts.host.toLowerCase() + '\n' + - opts.port + '\n' + - (opts.hash || '') + '\n' +function htmlToPDF($, frag, $parent, opts) { + let pdf, helveticaBold, helveticaEm; // pdfjs is an optional dependency, this is why the requires are done in + // a try/catch. webpack detects this and does not crash when building + // if requires are done in a try/catch. - if (opts.ext) { - normalized = normalized + opts.ext.replace('\\', '\\\\').replace('\n', '\\n') + try { + pdf = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); + helveticaBold = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs/font/Helvetica-Bold'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); + helveticaEm = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs/font/Helvetica-Oblique'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); + } catch (err) { + throw new Error('pdfjs dependency is missing. Please add it in your package.json'); } - normalized = normalized + '\n' + opts = Object.assign({ + baseURL: '', + filter: () => true, + txtOpts: {} + }, opts); + const children = $parent.contents(); + let text = opts.text; + let parentDL = null; - if (opts.app) { - normalized = normalized + opts.app + '\n' + (opts.dlg || '') + '\n' - } + const getText = () => { + if (!text) text = frag.text('', opts.txtOpts); + return text; + }; - var hmac = crypto.createHmac(credentials.algorithm, credentials.key).update(normalized) - var digest = hmac.digest('base64') - return digest -} + children.each((i, el) => { + if (el.nodeType === 3 && el.data.trim() !== '') { + getText().add(el.data); + } else if (el.nodeType === 1) { + const $el = $(el); + if (!opts.filter($el)) return; -exports.header = function (uri, method, opts) { - var timestamp = opts.timestamp || Math.floor((Date.now() + (opts.localtimeOffsetMsec || 0)) / 1000) - var credentials = opts.credentials - if (!credentials || !credentials.id || !credentials.key || !credentials.algorithm) { - return '' - } + switch (el.tagName) { + case 'a': + getText().add($el.text(), makeLinkOpts($el, opts)); + break; - if (['sha1', 'sha256'].indexOf(credentials.algorithm) === -1) { - return '' - } + case 'strong': + case 'b': + getText().add($el.text(), { + font: helveticaBold + }); + break; - var artifacts = { - ts: timestamp, - nonce: opts.nonce || randomString(6), - method: method, - resource: uri.pathname + (uri.search || ''), - host: uri.hostname, - port: uri.port || (uri.protocol === 'http:' ? 80 : 443), - hash: opts.hash, - ext: opts.ext, - app: opts.app, - dlg: opts.dlg - } + case 'em': + getText().add($el.text(), { + font: helveticaEm + }); + break; + + case 'span': + htmlToPDF($, frag, $el, Object.assign({}, opts, { + text: text + })); + break; + + case 'br': + getText().br(); + break; + + case 'i': + case 'select': + case 'input': + case 'label': + case 'form': + case 'fieldset': + case 'textarea': + case 'button': + case 'img': + case 'script': + case 'caption': + // ignore + break; + + case 'table': + { + text = null; + let width = computeWidth($el); + let tableState = { + tableWidth: width + }; + htmlToPDF($, frag.table({ + widths: Array.from(Array(width), () => '*'), + borderWidth: 1 + }), $el, Object.assign({}, opts, { + tableState + })); + break; + } - if (!artifacts.hash && (opts.payload || opts.payload === '')) { - artifacts.hash = calculatePayloadHash(opts.payload, credentials.algorithm, opts.contentType) - } + case 'tr': + { + text = null; + opts.tableState.colRemaining = opts.tableState.tableWidth; + let row = frag.row(); + htmlToPDF($, row, $el, opts); - var mac = exports.calculateMac(credentials, artifacts) + if (opts.tableState.colRemaining > 0) { + row.cell({ + colspan: opts.tableState.colRemaining + }); + } - var hasExt = artifacts.ext !== null && artifacts.ext !== undefined && artifacts.ext !== '' - var header = 'Hawk id="' + credentials.id + - '", ts="' + artifacts.ts + - '", nonce="' + artifacts.nonce + - (artifacts.hash ? '", hash="' + artifacts.hash : '') + - (hasExt ? '", ext="' + artifacts.ext.replace(/\\/g, '\\\\').replace(/"/g, '\\"') : '') + - '", mac="' + mac + '"' + break; + } - if (artifacts.app) { - header = header + ', app="' + artifacts.app + (artifacts.dlg ? '", dlg="' + artifacts.dlg : '') + '"' - } + case 'dl': + text = null; + htmlToPDF($, frag.table({ + widths: [5 * pdf.cm, null], + borderWidth: 1 + }), $el, { ...opts, + tableState: { + tableWidth: 2, + colRemaining: 2 + } + }); + parentDL = null; + break; - return header -} + case 'dt': + if (!parentDL) { + parentDL = frag; + } else { + frag = parentDL; + } + frag = frag.row(); + // fall through the rest of the procedure -/***/ }), -/* 1336 */ -/***/ (function(module, exports, __webpack_require__) { + case 'dd': + case 'th': + case 'td': + { + text = null; + const colspan = Math.min(opts.tableState.tableWidth, parseInt($el.attr('colspan')) || 1); + opts.tableState.colRemaining -= colspan; + htmlToPDF($, frag.cell({ + padding: 5, + colspan: colspan + }), $el, opts); + break; + } -"use strict"; + case 'h1': + case 'h2': + case 'h3': + case 'h4': + case 'h5': + text = null; + htmlToPDF($, frag, //.cell({ paddingTop: 1 * pdf.cm }), + $el, Object.assign({}, opts, { + txtOpts: { + fontSize: 30 - parseInt(el.tagName.replace('h', '')) * 2 + } + })); + break; + case 'div': + case 'p': + case 'ul': + text = null; + htmlToPDF($, frag.cell(), $el, opts); + break; -var uuid = __webpack_require__(1331) -var CombinedStream = __webpack_require__(165) -var isstream = __webpack_require__(182) -var Buffer = __webpack_require__(95).Buffer + case 'thead': + case 'tfoot': + case 'tbody': + case 'small': + case 'li': + text = null; + htmlToPDF($, frag, $el, opts); + break; -function Multipart (request) { - this.request = request - this.boundary = uuid() - this.chunked = false - this.body = null + default: + text = null; + htmlToPDF($, frag, $el, opts); + } + } + }); } -Multipart.prototype.isChunked = function (options) { - var self = this - var chunked = false - var parts = options.data || options +function createCozyPDFDocument(headline, url) { + let pdf, helveticaBold; // pdfjs is an optional dependency, this is why the requires are done in + // a try/catch. webpack detects this and does not crash when building + // if requires are done in a try/catch. - if (!parts.forEach) { - self.request.emit('error', new Error('Argument error, options.multipart.')) + try { + pdf = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); + helveticaBold = __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module 'pdfjs/font/Helvetica-Bold'"); e.code = 'MODULE_NOT_FOUND'; throw e; }())); + } catch (err) { + throw new Error('pdfjs dependency is missing. Please add it in your package.json'); } - if (options.chunked !== undefined) { - chunked = options.chunked - } + var doc = new pdf.Document(); + const cell = doc.cell({ + paddingBottom: 0.5 * pdf.cm + }).text(); + cell.add(headline, { + font: helveticaBold, + fontSize: 14 + }); + cell.add(url, { + link: url, + color: '0x0000FF' + }); + return doc; +} - if (self.request.getHeader('transfer-encoding') === 'chunked') { - chunked = true - } +module.exports = { + htmlToPDF, + createCozyPDFDocument +}; - if (!chunked) { - parts.forEach(function (part) { - if (typeof part.body === 'undefined') { - self.request.emit('error', new Error('Body attribute missing in multipart.')) - } - if (isstream(part.body)) { - chunked = true - } - }) - } +/***/ }), +/* 1487 */ +/***/ (function(module, exports, __webpack_require__) { - return chunked -} +const isEqualWith = __webpack_require__(1488); -Multipart.prototype.setHeaders = function (chunked) { - var self = this +const omit = __webpack_require__(567); - if (chunked && !self.request.hasHeader('transfer-encoding')) { - self.request.setHeader('transfer-encoding', 'chunked') +const maybeToISO = date => { + try { + return date.toISOString ? date.toISOString() : date; + } catch (e) { + return date; } +}; - var header = self.request.getHeader('content-type') - - if (!header || header.indexOf('multipart') === -1) { - self.request.setHeader('content-type', 'multipart/related; boundary=' + self.boundary) - } else { - if (header.indexOf('boundary') !== -1) { - self.boundary = header.replace(/.*boundary=([^\s;]+).*/, '$1') - } else { - self.request.setHeader('content-type', header + '; boundary=' + self.boundary) - } +const looseDates = (val, otherVal) => { + // Loose equality for dates since when coming from Couch, they + // are ISO strings whereas just after scraping they are `Date`s. + if (val instanceof Date) { + return maybeToISO(val) === maybeToISO(otherVal); } -} +}; +/** + * Simple Model for Documents. Allows to specify + * `shouldSave`, `shouldUpdate` as methods. + * + * Has useful `isEqual` method + * + */ -Multipart.prototype.build = function (parts, chunked) { - var self = this - var body = chunked ? new CombinedStream() : [] - function add (part) { - if (typeof part === 'number') { - part = part.toString() +class Document { + constructor(attrs) { + if (this.validate) { + this.validate(attrs); } - return chunked ? body.append(part) : body.push(Buffer.from(part)) - } - if (self.request.preambleCRLF) { - add('\r\n') + Object.assign(this, attrs, { + metadata: { + version: attrs.metadata && attrs.metadata.version || this.constructor.version + } + }); } - parts.forEach(function (part) { - var preamble = '--' + self.boundary + '\r\n' - Object.keys(part).forEach(function (key) { - if (key === 'body') { return } - preamble += key + ': ' + part[key] + '\r\n' - }) - preamble += '\r\n' - add(preamble) - add(part.body) - add('\r\n') - }) - add('--' + self.boundary + '--') - - if (self.request.postambleCRLF) { - add('\r\n') + toJSON() { + return this; } + /** + * Compares to another document deeply. + * + * `_id` and `_rev` are by default ignored in the comparison. + * + * By default, will compare dates loosely since you often + * compare existing documents (dates in ISO string) with documents + * that just have been scraped where dates are `Date`s. + */ - return body -} - -Multipart.prototype.onRequest = function (options) { - var self = this - var chunked = self.isChunked(options) - var parts = options.data || options + isEqual(other, ignoreAttrs = ['_id', '_rev'], strict = false) { + return isEqualWith(omit(this, ignoreAttrs), omit(other, ignoreAttrs), !strict && looseDates); + } - self.setHeaders(chunked) - self.chunked = chunked - self.body = self.build(parts, chunked) } -exports.Multipart = Multipart - +module.exports = Document; /***/ }), -/* 1337 */ +/* 1488 */ /***/ (function(module, exports, __webpack_require__) { -"use strict"; - - -var url = __webpack_require__(83) -var isUrl = /^https?:/ +var baseIsEqual = __webpack_require__(424); -function Redirect (request) { - this.request = request - this.followRedirect = true - this.followRedirects = true - this.followAllRedirects = false - this.followOriginalHttpMethod = false - this.allowRedirect = function () { return true } - this.maxRedirects = 10 - this.redirects = [] - this.redirectsFollowed = 0 - this.removeRefererHeader = false +/** + * This method is like `_.isEqual` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined`, comparisons + * are handled by the method instead. The `customizer` is invoked with up to + * six arguments: (objValue, othValue [, index|key, object, other, stack]). + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, othValue) { + * if (isGreeting(objValue) && isGreeting(othValue)) { + * return true; + * } + * } + * + * var array = ['hello', 'goodbye']; + * var other = ['hi', 'goodbye']; + * + * _.isEqualWith(array, other, customizer); + * // => true + */ +function isEqualWith(value, other, customizer) { + customizer = typeof customizer == 'function' ? customizer : undefined; + var result = customizer ? customizer(value, other) : undefined; + return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result; } -Redirect.prototype.onRequest = function (options) { - var self = this - - if (options.maxRedirects !== undefined) { - self.maxRedirects = options.maxRedirects - } - if (typeof options.followRedirect === 'function') { - self.allowRedirect = options.followRedirect - } - if (options.followRedirect !== undefined) { - self.followRedirects = !!options.followRedirect - } - if (options.followAllRedirects !== undefined) { - self.followAllRedirects = options.followAllRedirects - } - if (self.followRedirects || self.followAllRedirects) { - self.redirects = self.redirects || [] - } - if (options.removeRefererHeader !== undefined) { - self.removeRefererHeader = options.removeRefererHeader - } - if (options.followOriginalHttpMethod !== undefined) { - self.followOriginalHttpMethod = options.followOriginalHttpMethod - } -} +module.exports = isEqualWith; -Redirect.prototype.redirectTo = function (response) { - var self = this - var request = self.request - var redirectTo = null - if (response.statusCode >= 300 && response.statusCode < 400 && response.caseless.has('location')) { - var location = response.caseless.get('location') - request.debug('redirect', location) +/***/ }), +/* 1489 */ +/***/ (function(module, exports, __webpack_require__) { - if (self.followAllRedirects) { - redirectTo = location - } else if (self.followRedirects) { - switch (request.method) { - case 'PATCH': - case 'PUT': - case 'POST': - case 'DELETE': - // Do not follow redirects - break - default: - redirectTo = location - break - } - } - } else if (response.statusCode === 401) { - var authHeader = request._auth.onResponse(response) - if (authHeader) { - request.setHeader('authorization', authHeader) - redirectTo = request.uri - } - } - return redirectTo -} +const log = __webpack_require__(2).namespace('scrape'); +/** + * Declarative scraping. + * + * Describe your items attributes and where to find/parse them + * instead of imperatively building them. + * + * Heavily inspired by [artoo] scraping method. + * + * [artoo]: https://medialab.github.io/artoo/ + */ -Redirect.prototype.onResponse = function (response) { - var self = this - var request = self.request - var redirectTo = self.redirectTo(response) - if (!redirectTo || !self.allowRedirect.call(request, response)) { - return false +const mkSpec = function (spec) { + if (typeof spec === 'string') { + return { + sel: spec + }; + } else { + return spec; } +}; +/** + * Scrape a cheerio object for properties + * + * @param {object} $ - Cheerio node which will be scraped + * @param {object|string} specs - Options object describing what you want to scrape + * @param {string} [childSelector] - If passed, scrape will return an array of items + * @returns {object|Array} - Item(s) scraped + * @example + * + * `scrape` can be used to declaratively extract data : + * + * - For one object : + * + * ``` + * const item = scrape($('#item'), { + * title: '.title', + * content: '.content' + * }) + * ``` + * + * - For a list of objects : + * + * ``` + * const items = scrape($('#content'), { + * title: '.title', + * content: '.content' + * }, '.item') + * ``` + * + * For more power, you can use `object`s for each retriever : + * + * ``` + * const items = scrape($('#content'), { + * title: '.title', + * content: '.content', + * link: { + * sel: 'a', + * attr: 'href' + * }, + * }, '.item') + * ``` + * + * Here the `href` attribute of the `a` inside `.item`s would have been + * put into the `link` attribute of the items returned by `scrape`. + * + * Available options : + * + * - `sel`: the CSS selector used to target the HTML node from which data will be scraped + * - `attr`: the HTML attribute from which to extract data + * - `parse`: function applied to the value extracted (`{ sel: '.price', parse: parseAmount }`) + * - `fn`: if you need something more complicated than `attr`, you can use this function, it receives + * the complete DOM node. `{ sel: '.person', fn: $node => $node.attr('data-name') + $node.attr('data-firstname') }` + */ - request.debug('redirect to', redirectTo) - - // ignore any potential response body. it cannot possibly be useful - // to us at this point. - // response.resume should be defined, but check anyway before calling. Workaround for browserify. - if (response.resume) { - response.resume() - } - if (self.redirectsFollowed >= self.maxRedirects) { - request.emit('error', new Error('Exceeded maxRedirects. Probably stuck in a redirect loop ' + request.uri.href)) - return false - } - self.redirectsFollowed += 1 +const scrape = ($, specs, childSelector) => { + // Only one value shorthand + if (typeof specs === 'string' || specs.sel && typeof specs.sel === 'string') { + const { + val + } = scrape($, { + val: specs + }); + return val; + } // Several items shorthand - if (!isUrl.test(redirectTo)) { - redirectTo = url.resolve(request.uri.href, redirectTo) - } - var uriPrev = request.uri - request.uri = url.parse(redirectTo) + if (childSelector !== undefined) { + return Array.from(($.find || $)(childSelector)).map(e => scrape($(e), specs)); + } // Several properties "normal" case - // handle the case where we change protocol from https to http or vice versa - if (request.uri.protocol !== uriPrev.protocol) { - delete request.agent - } - self.redirects.push({ statusCode: response.statusCode, redirectUri: redirectTo }) + const res = {}; + Object.keys(specs).forEach(specName => { + try { + const spec = mkSpec(specs[specName]); + let data = spec.sel ? $.find(spec.sel) : $; - if (self.followAllRedirects && request.method !== 'HEAD' && - response.statusCode !== 401 && response.statusCode !== 307) { - request.method = self.followOriginalHttpMethod ? request.method : 'GET' - } - // request.method = 'GET' // Force all redirects to use GET || commented out fixes #215 - delete request.src - delete request.req - delete request._started - if (response.statusCode !== 401 && response.statusCode !== 307) { - // Remove parameters from the previous response, unless this is the second request - // for a server that requires digest authentication. - delete request.body - delete request._form - if (request.headers) { - request.removeHeader('host') - request.removeHeader('content-type') - request.removeHeader('content-length') - if (request.uri.hostname !== request.originalHost.split(':')[0]) { - // Remove authorization if changing hostnames (but not if just - // changing ports or protocols). This matches the behavior of curl: - // https://github.com/bagder/curl/blob/6beb0eee/lib/http.c#L710 - request.removeHeader('authorization') + if (spec.index) { + data = data.get(spec.index); } - } - } - - if (!self.removeRefererHeader) { - request.setHeader('referer', uriPrev.href) - } - request.emit('redirect') + let val; - request.init() + if (spec.fn) { + val = spec.fn(data); + } else if (spec.attr) { + val = data.attr(spec.attr); + } else { + val = data; + val = val && val.text(); + val = val && val.trim(); + } - return true -} + if (spec.parse) { + val = spec.parse(val); + } -exports.Redirect = Redirect + res[specName] = val; + } catch (e) { + log('warn', 'Could not parse for', specName); + log('warn', e); + } + }); + return res; +}; +module.exports = scrape; /***/ }), -/* 1338 */ -/***/ (function(module, exports, __webpack_require__) { - -"use strict"; - - -var url = __webpack_require__(83) -var tunnel = __webpack_require__(270) - -var defaultProxyHeaderWhiteList = [ - 'accept', - 'accept-charset', - 'accept-encoding', - 'accept-language', - 'accept-ranges', - 'cache-control', - 'content-encoding', - 'content-language', - 'content-location', - 'content-md5', - 'content-range', - 'content-type', - 'connection', - 'date', - 'expect', - 'max-forwards', - 'pragma', - 'referer', - 'te', - 'user-agent', - 'via' -] +/* 1490 */ +/***/ (function(module, exports) { -var defaultProxyHeaderExclusiveList = [ - 'proxy-authorization' -] +/** + * Returns the given name, replacing characters that could be an issue when + * used in a filename with spaces. + * + * @module normalizeFilename + */ +const normalizableCharsRegExp = /[<>:"/\\|?*\0\s]+/g; +/** + * Returns the given name, replacing characters that could be an issue when + * used in a filename with spaces. + * + * Replaced characters include: + * + * - Those forbidden on one or many popular OS or filesystem: `<>:"/\|?*` + * - Those forbidden by the cozy-stack `\0`, `\r` and `\n` + * - Multiple spaces and/or tabs are replaced with a single space + * - Leading & trailing spaces and/or tabs are removed + * + * An exception will be thrown in case there is not any filename-compatible + * character in the given name. + * + * Parameters: + * + * - `basename` is whatever string you want to generate the filename from + * - `ext` is an optional file extension, with or without leading dot + * + * ```javascript + * const { normalizeFilename } = require('cozy-konnector-libs') + * + * const filename = normalizeFilename('*foo/bar: <baz> \\"qux"\t???', '.txt') + * // `filename` === `foo bar baz qux.txt` + * ``` + * + * @alias module:normalizeFilename + */ -function constructProxyHost (uriObject) { - var port = uriObject.port - var protocol = uriObject.protocol - var proxyHost = uriObject.hostname + ':' +const normalizeFilename = (basename, ext) => { + const filename = basename.replace(normalizableCharsRegExp, ' ').trim(); - if (port) { - proxyHost += port - } else if (protocol === 'https:') { - proxyHost += '443' - } else { - proxyHost += '80' + if (filename === '') { + throw new Error('Cannot find any filename-compatible character in ' + JSON.stringify(filename) + '!'); } - return proxyHost -} + if (ext == null) ext = '';else if (!ext.startsWith('.')) ext = '.' + ext; + return filename + ext; +}; -function constructProxyHeaderWhiteList (headers, proxyHeaderWhiteList) { - var whiteList = proxyHeaderWhiteList - .reduce(function (set, header) { - set[header.toLowerCase()] = true - return set - }, {}) +module.exports = normalizeFilename; - return Object.keys(headers) - .filter(function (header) { - return whiteList[header.toLowerCase()] - }) - .reduce(function (set, header) { - set[header] = headers[header] - return set - }, {}) -} +/***/ }), +/* 1491 */ +/***/ (function(module, exports, __webpack_require__) { -function constructTunnelOptions (request, proxyHeaders) { - var proxy = request.proxy +/** + * Use every possible means to solve a captcha. At the moment, Anticaptcha web service is used if + * any related secret key is found in COZY_PARAMETERS environment variable. + * + * @module solveCaptcha + */ +const log = __webpack_require__(2).namespace('solveCaptcha'); - var tunnelOptions = { - proxy: { - host: proxy.hostname, - port: +proxy.port, - proxyAuth: proxy.auth, - headers: proxyHeaders - }, - headers: request.headers, - ca: request.ca, - cert: request.cert, - key: request.key, - passphrase: request.passphrase, - pfx: request.pfx, - ciphers: request.ciphers, - rejectUnauthorized: request.rejectUnauthorized, - secureOptions: request.secureOptions, - secureProtocol: request.secureProtocol - } +const errors = __webpack_require__(1408); - return tunnelOptions -} +const request = __webpack_require__(24); -function constructTunnelFnName (uri, proxy) { - var uriProtocol = (uri.protocol === 'https:' ? 'https' : 'http') - var proxyProtocol = (proxy.protocol === 'https:' ? 'Https' : 'Http') - return [uriProtocol, proxyProtocol].join('Over') -} +const sleep = __webpack_require__(9).promisify(global.setTimeout); -function getTunnelFn (request) { - var uri = request.uri - var proxy = request.proxy - var tunnelFnName = constructTunnelFnName(uri, proxy) - return tunnel[tunnelFnName] -} +const connectorStartTime = Date.now(); +const ms = 1; +const s = 1000 * ms; +const m = 60 * s; +const DEFAULT_TIMEOUT = connectorStartTime + 3 * m; // 3 minutes by default to let 1 min to the connector to fetch files -function Tunnel (request) { - this.request = request - this.proxyHeaderWhiteList = defaultProxyHeaderWhiteList - this.proxyHeaderExclusiveList = [] - if (typeof request.tunnel !== 'undefined') { - this.tunnelOverride = request.tunnel - } -} +/** + * Use every possible means to solve a captcha. At the moment, Anticaptcha web service is used if + * any related secret key is found in COZY_PARAMETERS environment variable. + * If you do not want to solve the captcha each time the connector is run, please also use + * CookieKonnector which will help you save the session. + * + * Parameters: + * + * - `params` is an array of objects with any attributes with some mandatory attributes : + * + `type` (String): (default recaptcha) type of captcha to solve. can be "recaptcha" or "image" at the moment + * + `timeout` (Number): (default 3 minutes after now) time when the solver should stop trying to + * solve the captcha + * + `websiteKey` (String): the key you can find on the targeted website (for recaptcha) + * + `websiteURL` (String): The URL of the page showing the captcha (for recaptcha) + * + `body` (String): The base64 encoded image (for image captcha) + * Returns: Promise with the solved captcha response as a string + * + * @example + * + * ```javascript + * const { solveCaptcha } = require('cozy-konnector-libs') + * + * const solvedKey = await solveCaptcha({ + * websiteKey: 'the key in the webpage', + * websiteURL: 'http://quotes.toscrape.com/login', + * }) + * // now use the solveKey to submit your form + * ``` + * + * @alias module:solveCaptcha + */ -Tunnel.prototype.isEnabled = function () { - var self = this - var request = self.request - // Tunnel HTTPS by default. Allow the user to override this setting. +const solveCaptcha = async (params = {}) => { + const defaultParams = { + type: 'recaptcha', + timeout: DEFAULT_TIMEOUT + }; + params = { ...defaultParams, + ...params + }; + const secrets = JSON.parse(process.env.COZY_PARAMETERS || '{}').secret; - // If self.tunnelOverride is set (the user specified a value), use it. - if (typeof self.tunnelOverride !== 'undefined') { - return self.tunnelOverride + if (params.type === 'recaptcha') { + checkMandatoryParams(params, ['websiteKey', 'websiteURL']); + const { + websiteKey, + websiteURL + } = params; + return solveWithAntiCaptcha({ + websiteKey, + websiteURL, + type: 'NoCaptchaTaskProxyless' + }, params.timeout, secrets, 'gRecaptchaResponse'); + } else if (params.type === 'recaptchav3') { + checkMandatoryParams(params, ['websiteKey', 'websiteURL', 'pageAction', 'minScore']); + const { + websiteKey, + websiteURL, + pageAction, + minScore + } = params; + return solveWithAntiCaptcha({ + websiteKey, + websiteURL, + pageAction, + minScore, + type: 'RecaptchaV3TaskProxyless' + }, params.timeout, secrets, 'gRecaptchaResponse'); + } else if (params.type === 'image') { + checkMandatoryParams(params, ['body']); + return solveWithAntiCaptcha({ + body: params.body, + type: 'ImageToTextTask' + }, params.timeout, secrets, 'text'); } +}; - // If the destination is HTTPS, tunnel. - if (request.uri.protocol === 'https:') { - return true - } +function checkMandatoryParams(params = {}, mandatoryParams = []) { + const keys = Object.keys(params); + const missingKeys = mandatoryParams.filter(key => !keys.includes(key)); - // Otherwise, do not use tunnel. - return false + if (missingKeys.length) { + throw new Error(`${missingKeys.join(', ')} are mandatory to solve the captcha`); + } } -Tunnel.prototype.setup = function (options) { - var self = this - var request = self.request +async function solveWithAntiCaptcha(taskParams, timeout = DEFAULT_TIMEOUT, secrets, resultAttribute = 'gRecaptchaResponse') { + const antiCaptchaApiUrl = 'https://api.anti-captcha.com'; + let gRecaptchaResponse = null; + const startTime = Date.now(); // we try to solve the captcha with anticaptcha - options = options || {} + const clientKey = secrets.antiCaptchaClientKey; - if (typeof request.proxy === 'string') { - request.proxy = url.parse(request.proxy) - } + if (clientKey) { + log('debug', ' Creating captcha resolution task...'); + const task = await request.post(`${antiCaptchaApiUrl}/createTask`, { + body: { + clientKey, + task: taskParams + }, + json: true + }); - if (!request.proxy || !request.tunnel) { - return false - } + if (task && task.taskId) { + log('debug', ` Task id : ${task.taskId}`); - // Setup Proxy Header Exclusive List and White List - if (options.proxyHeaderWhiteList) { - self.proxyHeaderWhiteList = options.proxyHeaderWhiteList - } - if (options.proxyHeaderExclusiveList) { - self.proxyHeaderExclusiveList = options.proxyHeaderExclusiveList - } + while (!gRecaptchaResponse) { + const resp = await request.post(`${antiCaptchaApiUrl}/getTaskResult`, { + body: { + clientKey, + taskId: task.taskId + }, + json: true + }); - var proxyHeaderExclusiveList = self.proxyHeaderExclusiveList.concat(defaultProxyHeaderExclusiveList) - var proxyHeaderWhiteList = self.proxyHeaderWhiteList.concat(proxyHeaderExclusiveList) + if (resp.status === 'ready') { + if (resp.errorId) { + log('error', `Anticaptcha error: ${JSON.stringify(resp)}`); + throw new Error(errors.CAPTCHA_RESOLUTION_FAILED); + } - // Setup Proxy Headers and Proxy Headers Host - // Only send the Proxy White Listed Header names - var proxyHeaders = constructProxyHeaderWhiteList(request.headers, proxyHeaderWhiteList) - proxyHeaders.host = constructProxyHost(request.uri) + log('info', ` Found Recaptcha response : ${JSON.stringify(resp)}`); + return resp.solution[resultAttribute]; + } else { + log('debug', ` ${Math.round((Date.now() - startTime) / 1000)}s...`); - proxyHeaderExclusiveList.forEach(request.removeHeader, request) + if (Date.now() > timeout) { + log('warn', ` Captcha resolution timeout`); + throw new Error(errors.CAPTCHA_RESOLUTION_FAILED + '.TIMEOUT'); + } - // Set Agent from Tunnel Data - var tunnelFn = getTunnelFn(request) - var tunnelOptions = constructTunnelOptions(request, proxyHeaders) - request.agent = tunnelFn(tunnelOptions) + await sleep(10000); + } + } + } else { + log('warn', 'Could not create anticaptcha task'); + log('warn', JSON.stringify(task)); + } + } else { + log('warn', 'Could not find any anticaptcha secret key'); + } - return true + throw new Error(errors.CAPTCHA_RESOLUTION_FAILED); } -Tunnel.defaultProxyHeaderWhiteList = defaultProxyHeaderWhiteList -Tunnel.defaultProxyHeaderExclusiveList = defaultProxyHeaderExclusiveList -exports.Tunnel = Tunnel - +module.exports = solveCaptcha; /***/ }), -/* 1339 */ +/* 1492 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(module) {var require;//! moment.js @@ -196384,7 +192886,7 @@ exports.Tunnel = Tunnel try { oldLocale = globalLocale._abbr; aliasedRequire = require; - __webpack_require__(1340)("./" + name); + __webpack_require__(1493)("./" + name); getSetGlobalLocale(oldLocale); } catch (e) { // mark as not found to avoid repeating expensive file require call causing high CPU @@ -199967,280 +196469,280 @@ exports.Tunnel = Tunnel /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(13)(module))) /***/ }), -/* 1340 */ +/* 1493 */ /***/ (function(module, exports, __webpack_require__) { var map = { - "./af": 1341, - "./af.js": 1341, - "./ar": 1342, - "./ar-dz": 1343, - "./ar-dz.js": 1343, - "./ar-kw": 1344, - "./ar-kw.js": 1344, - "./ar-ly": 1345, - "./ar-ly.js": 1345, - "./ar-ma": 1346, - "./ar-ma.js": 1346, - "./ar-sa": 1347, - "./ar-sa.js": 1347, - "./ar-tn": 1348, - "./ar-tn.js": 1348, - "./ar.js": 1342, - "./az": 1349, - "./az.js": 1349, - "./be": 1350, - "./be.js": 1350, - "./bg": 1351, - "./bg.js": 1351, - "./bm": 1352, - "./bm.js": 1352, - "./bn": 1353, - "./bn-bd": 1354, - "./bn-bd.js": 1354, - "./bn.js": 1353, - "./bo": 1355, - "./bo.js": 1355, - "./br": 1356, - "./br.js": 1356, - "./bs": 1357, - "./bs.js": 1357, - "./ca": 1358, - "./ca.js": 1358, - "./cs": 1359, - "./cs.js": 1359, - "./cv": 1360, - "./cv.js": 1360, - "./cy": 1361, - "./cy.js": 1361, - "./da": 1362, - "./da.js": 1362, - "./de": 1363, - "./de-at": 1364, - "./de-at.js": 1364, - "./de-ch": 1365, - "./de-ch.js": 1365, - "./de.js": 1363, - "./dv": 1366, - "./dv.js": 1366, - "./el": 1367, - "./el.js": 1367, - "./en-au": 1368, - "./en-au.js": 1368, - "./en-ca": 1369, - "./en-ca.js": 1369, - "./en-gb": 1370, - "./en-gb.js": 1370, - "./en-ie": 1371, - "./en-ie.js": 1371, - "./en-il": 1372, - "./en-il.js": 1372, - "./en-in": 1373, - "./en-in.js": 1373, - "./en-nz": 1374, - "./en-nz.js": 1374, - "./en-sg": 1375, - "./en-sg.js": 1375, - "./eo": 1376, - "./eo.js": 1376, - "./es": 1377, - "./es-do": 1378, - "./es-do.js": 1378, - "./es-mx": 1379, - "./es-mx.js": 1379, - "./es-us": 1380, - "./es-us.js": 1380, - "./es.js": 1377, - "./et": 1381, - "./et.js": 1381, - "./eu": 1382, - "./eu.js": 1382, - "./fa": 1383, - "./fa.js": 1383, - "./fi": 1384, - "./fi.js": 1384, - "./fil": 1385, - "./fil.js": 1385, - "./fo": 1386, - "./fo.js": 1386, - "./fr": 1387, - "./fr-ca": 1388, - "./fr-ca.js": 1388, - "./fr-ch": 1389, - "./fr-ch.js": 1389, - "./fr.js": 1387, - "./fy": 1390, - "./fy.js": 1390, - "./ga": 1391, - "./ga.js": 1391, - "./gd": 1392, - "./gd.js": 1392, - "./gl": 1393, - "./gl.js": 1393, - "./gom-deva": 1394, - "./gom-deva.js": 1394, - "./gom-latn": 1395, - "./gom-latn.js": 1395, - "./gu": 1396, - "./gu.js": 1396, - "./he": 1397, - "./he.js": 1397, - "./hi": 1398, - "./hi.js": 1398, - "./hr": 1399, - "./hr.js": 1399, - "./hu": 1400, - "./hu.js": 1400, - "./hy-am": 1401, - "./hy-am.js": 1401, - "./id": 1402, - "./id.js": 1402, - "./is": 1403, - "./is.js": 1403, - "./it": 1404, - "./it-ch": 1405, - "./it-ch.js": 1405, - "./it.js": 1404, - "./ja": 1406, - "./ja.js": 1406, - "./jv": 1407, - "./jv.js": 1407, - "./ka": 1408, - "./ka.js": 1408, - "./kk": 1409, - "./kk.js": 1409, - "./km": 1410, - "./km.js": 1410, - "./kn": 1411, - "./kn.js": 1411, - "./ko": 1412, - "./ko.js": 1412, - "./ku": 1413, - "./ku.js": 1413, - "./ky": 1414, - "./ky.js": 1414, - "./lb": 1415, - "./lb.js": 1415, - "./lo": 1416, - "./lo.js": 1416, - "./lt": 1417, - "./lt.js": 1417, - "./lv": 1418, - "./lv.js": 1418, - "./me": 1419, - "./me.js": 1419, - "./mi": 1420, - "./mi.js": 1420, - "./mk": 1421, - "./mk.js": 1421, - "./ml": 1422, - "./ml.js": 1422, - "./mn": 1423, - "./mn.js": 1423, - "./mr": 1424, - "./mr.js": 1424, - "./ms": 1425, - "./ms-my": 1426, - "./ms-my.js": 1426, - "./ms.js": 1425, - "./mt": 1427, - "./mt.js": 1427, - "./my": 1428, - "./my.js": 1428, - "./nb": 1429, - "./nb.js": 1429, - "./ne": 1430, - "./ne.js": 1430, - "./nl": 1431, - "./nl-be": 1432, - "./nl-be.js": 1432, - "./nl.js": 1431, - "./nn": 1433, - "./nn.js": 1433, - "./oc-lnc": 1434, - "./oc-lnc.js": 1434, - "./pa-in": 1435, - "./pa-in.js": 1435, - "./pl": 1436, - "./pl.js": 1436, - "./pt": 1437, - "./pt-br": 1438, - "./pt-br.js": 1438, - "./pt.js": 1437, - "./ro": 1439, - "./ro.js": 1439, - "./ru": 1440, - "./ru.js": 1440, - "./sd": 1441, - "./sd.js": 1441, - "./se": 1442, - "./se.js": 1442, - "./si": 1443, - "./si.js": 1443, - "./sk": 1444, - "./sk.js": 1444, - "./sl": 1445, - "./sl.js": 1445, - "./sq": 1446, - "./sq.js": 1446, - "./sr": 1447, - "./sr-cyrl": 1448, - "./sr-cyrl.js": 1448, - "./sr.js": 1447, - "./ss": 1449, - "./ss.js": 1449, - "./sv": 1450, - "./sv.js": 1450, - "./sw": 1451, - "./sw.js": 1451, - "./ta": 1452, - "./ta.js": 1452, - "./te": 1453, - "./te.js": 1453, - "./tet": 1454, - "./tet.js": 1454, - "./tg": 1455, - "./tg.js": 1455, - "./th": 1456, - "./th.js": 1456, - "./tk": 1457, - "./tk.js": 1457, - "./tl-ph": 1458, - "./tl-ph.js": 1458, - "./tlh": 1459, - "./tlh.js": 1459, - "./tr": 1460, - "./tr.js": 1460, - "./tzl": 1461, - "./tzl.js": 1461, - "./tzm": 1462, - "./tzm-latn": 1463, - "./tzm-latn.js": 1463, - "./tzm.js": 1462, - "./ug-cn": 1464, - "./ug-cn.js": 1464, - "./uk": 1465, - "./uk.js": 1465, - "./ur": 1466, - "./ur.js": 1466, - "./uz": 1467, - "./uz-latn": 1468, - "./uz-latn.js": 1468, - "./uz.js": 1467, - "./vi": 1469, - "./vi.js": 1469, - "./x-pseudo": 1470, - "./x-pseudo.js": 1470, - "./yo": 1471, - "./yo.js": 1471, - "./zh-cn": 1472, - "./zh-cn.js": 1472, - "./zh-hk": 1473, - "./zh-hk.js": 1473, - "./zh-mo": 1474, - "./zh-mo.js": 1474, - "./zh-tw": 1475, - "./zh-tw.js": 1475 + "./af": 1494, + "./af.js": 1494, + "./ar": 1495, + "./ar-dz": 1496, + "./ar-dz.js": 1496, + "./ar-kw": 1497, + "./ar-kw.js": 1497, + "./ar-ly": 1498, + "./ar-ly.js": 1498, + "./ar-ma": 1499, + "./ar-ma.js": 1499, + "./ar-sa": 1500, + "./ar-sa.js": 1500, + "./ar-tn": 1501, + "./ar-tn.js": 1501, + "./ar.js": 1495, + "./az": 1502, + "./az.js": 1502, + "./be": 1503, + "./be.js": 1503, + "./bg": 1504, + "./bg.js": 1504, + "./bm": 1505, + "./bm.js": 1505, + "./bn": 1506, + "./bn-bd": 1507, + "./bn-bd.js": 1507, + "./bn.js": 1506, + "./bo": 1508, + "./bo.js": 1508, + "./br": 1509, + "./br.js": 1509, + "./bs": 1510, + "./bs.js": 1510, + "./ca": 1511, + "./ca.js": 1511, + "./cs": 1512, + "./cs.js": 1512, + "./cv": 1513, + "./cv.js": 1513, + "./cy": 1514, + "./cy.js": 1514, + "./da": 1515, + "./da.js": 1515, + "./de": 1516, + "./de-at": 1517, + "./de-at.js": 1517, + "./de-ch": 1518, + "./de-ch.js": 1518, + "./de.js": 1516, + "./dv": 1519, + "./dv.js": 1519, + "./el": 1520, + "./el.js": 1520, + "./en-au": 1521, + "./en-au.js": 1521, + "./en-ca": 1522, + "./en-ca.js": 1522, + "./en-gb": 1523, + "./en-gb.js": 1523, + "./en-ie": 1524, + "./en-ie.js": 1524, + "./en-il": 1525, + "./en-il.js": 1525, + "./en-in": 1526, + "./en-in.js": 1526, + "./en-nz": 1527, + "./en-nz.js": 1527, + "./en-sg": 1528, + "./en-sg.js": 1528, + "./eo": 1529, + "./eo.js": 1529, + "./es": 1530, + "./es-do": 1531, + "./es-do.js": 1531, + "./es-mx": 1532, + "./es-mx.js": 1532, + "./es-us": 1533, + "./es-us.js": 1533, + "./es.js": 1530, + "./et": 1534, + "./et.js": 1534, + "./eu": 1535, + "./eu.js": 1535, + "./fa": 1536, + "./fa.js": 1536, + "./fi": 1537, + "./fi.js": 1537, + "./fil": 1538, + "./fil.js": 1538, + "./fo": 1539, + "./fo.js": 1539, + "./fr": 1540, + "./fr-ca": 1541, + "./fr-ca.js": 1541, + "./fr-ch": 1542, + "./fr-ch.js": 1542, + "./fr.js": 1540, + "./fy": 1543, + "./fy.js": 1543, + "./ga": 1544, + "./ga.js": 1544, + "./gd": 1545, + "./gd.js": 1545, + "./gl": 1546, + "./gl.js": 1546, + "./gom-deva": 1547, + "./gom-deva.js": 1547, + "./gom-latn": 1548, + "./gom-latn.js": 1548, + "./gu": 1549, + "./gu.js": 1549, + "./he": 1550, + "./he.js": 1550, + "./hi": 1551, + "./hi.js": 1551, + "./hr": 1552, + "./hr.js": 1552, + "./hu": 1553, + "./hu.js": 1553, + "./hy-am": 1554, + "./hy-am.js": 1554, + "./id": 1555, + "./id.js": 1555, + "./is": 1556, + "./is.js": 1556, + "./it": 1557, + "./it-ch": 1558, + "./it-ch.js": 1558, + "./it.js": 1557, + "./ja": 1559, + "./ja.js": 1559, + "./jv": 1560, + "./jv.js": 1560, + "./ka": 1561, + "./ka.js": 1561, + "./kk": 1562, + "./kk.js": 1562, + "./km": 1563, + "./km.js": 1563, + "./kn": 1564, + "./kn.js": 1564, + "./ko": 1565, + "./ko.js": 1565, + "./ku": 1566, + "./ku.js": 1566, + "./ky": 1567, + "./ky.js": 1567, + "./lb": 1568, + "./lb.js": 1568, + "./lo": 1569, + "./lo.js": 1569, + "./lt": 1570, + "./lt.js": 1570, + "./lv": 1571, + "./lv.js": 1571, + "./me": 1572, + "./me.js": 1572, + "./mi": 1573, + "./mi.js": 1573, + "./mk": 1574, + "./mk.js": 1574, + "./ml": 1575, + "./ml.js": 1575, + "./mn": 1576, + "./mn.js": 1576, + "./mr": 1577, + "./mr.js": 1577, + "./ms": 1578, + "./ms-my": 1579, + "./ms-my.js": 1579, + "./ms.js": 1578, + "./mt": 1580, + "./mt.js": 1580, + "./my": 1581, + "./my.js": 1581, + "./nb": 1582, + "./nb.js": 1582, + "./ne": 1583, + "./ne.js": 1583, + "./nl": 1584, + "./nl-be": 1585, + "./nl-be.js": 1585, + "./nl.js": 1584, + "./nn": 1586, + "./nn.js": 1586, + "./oc-lnc": 1587, + "./oc-lnc.js": 1587, + "./pa-in": 1588, + "./pa-in.js": 1588, + "./pl": 1589, + "./pl.js": 1589, + "./pt": 1590, + "./pt-br": 1591, + "./pt-br.js": 1591, + "./pt.js": 1590, + "./ro": 1592, + "./ro.js": 1592, + "./ru": 1593, + "./ru.js": 1593, + "./sd": 1594, + "./sd.js": 1594, + "./se": 1595, + "./se.js": 1595, + "./si": 1596, + "./si.js": 1596, + "./sk": 1597, + "./sk.js": 1597, + "./sl": 1598, + "./sl.js": 1598, + "./sq": 1599, + "./sq.js": 1599, + "./sr": 1600, + "./sr-cyrl": 1601, + "./sr-cyrl.js": 1601, + "./sr.js": 1600, + "./ss": 1602, + "./ss.js": 1602, + "./sv": 1603, + "./sv.js": 1603, + "./sw": 1604, + "./sw.js": 1604, + "./ta": 1605, + "./ta.js": 1605, + "./te": 1606, + "./te.js": 1606, + "./tet": 1607, + "./tet.js": 1607, + "./tg": 1608, + "./tg.js": 1608, + "./th": 1609, + "./th.js": 1609, + "./tk": 1610, + "./tk.js": 1610, + "./tl-ph": 1611, + "./tl-ph.js": 1611, + "./tlh": 1612, + "./tlh.js": 1612, + "./tr": 1613, + "./tr.js": 1613, + "./tzl": 1614, + "./tzl.js": 1614, + "./tzm": 1615, + "./tzm-latn": 1616, + "./tzm-latn.js": 1616, + "./tzm.js": 1615, + "./ug-cn": 1617, + "./ug-cn.js": 1617, + "./uk": 1618, + "./uk.js": 1618, + "./ur": 1619, + "./ur.js": 1619, + "./uz": 1620, + "./uz-latn": 1621, + "./uz-latn.js": 1621, + "./uz.js": 1620, + "./vi": 1622, + "./vi.js": 1622, + "./x-pseudo": 1623, + "./x-pseudo.js": 1623, + "./yo": 1624, + "./yo.js": 1624, + "./zh-cn": 1625, + "./zh-cn.js": 1625, + "./zh-hk": 1626, + "./zh-hk.js": 1626, + "./zh-mo": 1627, + "./zh-mo.js": 1627, + "./zh-tw": 1628, + "./zh-tw.js": 1628 }; @@ -200261,10 +196763,10 @@ webpackContext.keys = function webpackContextKeys() { }; webpackContext.resolve = webpackContextResolve; module.exports = webpackContext; -webpackContext.id = 1340; +webpackContext.id = 1493; /***/ }), -/* 1341 */ +/* 1494 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -200272,7 +196774,7 @@ webpackContext.id = 1340; //! author : Werner Mollentze : https://github.com/wernerm ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -200350,7 +196852,7 @@ webpackContext.id = 1340; /***/ }), -/* 1342 */ +/* 1495 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -200360,7 +196862,7 @@ webpackContext.id = 1340; //! author : forabi https://github.com/forabi ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -200554,7 +197056,7 @@ webpackContext.id = 1340; /***/ }), -/* 1343 */ +/* 1496 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -200566,7 +197068,7 @@ webpackContext.id = 1340; //! author : Noureddine LOUAHEDJ : https://github.com/noureddinem ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -200725,7 +197227,7 @@ webpackContext.id = 1340; /***/ }), -/* 1344 */ +/* 1497 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -200733,7 +197235,7 @@ webpackContext.id = 1340; //! author : Nusret Parlak: https://github.com/nusretparlak ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -200794,7 +197296,7 @@ webpackContext.id = 1340; /***/ }), -/* 1345 */ +/* 1498 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -200802,7 +197304,7 @@ webpackContext.id = 1340; //! author : Ali Hmer: https://github.com/kikoanis ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -200980,7 +197482,7 @@ webpackContext.id = 1340; /***/ }), -/* 1346 */ +/* 1499 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -200989,7 +197491,7 @@ webpackContext.id = 1340; //! author : Abdel Said : https://github.com/abdelsaid ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -201050,7 +197552,7 @@ webpackContext.id = 1340; /***/ }), -/* 1347 */ +/* 1500 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -201058,7 +197560,7 @@ webpackContext.id = 1340; //! author : Suhail Alkowaileet : https://github.com/xsoh ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -201169,7 +197671,7 @@ webpackContext.id = 1340; /***/ }), -/* 1348 */ +/* 1501 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -201177,7 +197679,7 @@ webpackContext.id = 1340; //! author : Nader Toukabri : https://github.com/naderio ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -201238,7 +197740,7 @@ webpackContext.id = 1340; /***/ }), -/* 1349 */ +/* 1502 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -201246,7 +197748,7 @@ webpackContext.id = 1340; //! author : topchiyev : https://github.com/topchiyev ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -201354,7 +197856,7 @@ webpackContext.id = 1340; /***/ }), -/* 1350 */ +/* 1503 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -201364,7 +197866,7 @@ webpackContext.id = 1340; //! Author : Menelion Elensúle : https://github.com/Oire ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -201510,7 +198012,7 @@ webpackContext.id = 1340; /***/ }), -/* 1351 */ +/* 1504 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -201518,7 +198020,7 @@ webpackContext.id = 1340; //! author : Krasen Borisov : https://github.com/kraz ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -201612,7 +198114,7 @@ webpackContext.id = 1340; /***/ }), -/* 1352 */ +/* 1505 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -201620,7 +198122,7 @@ webpackContext.id = 1340; //! author : Estelle Comment : https://github.com/estellecomment ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -201678,7 +198180,7 @@ webpackContext.id = 1340; /***/ }), -/* 1353 */ +/* 1506 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -201686,7 +198188,7 @@ webpackContext.id = 1340; //! author : Kaushik Gandhi : https://github.com/kaushikgandhi ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -201811,7 +198313,7 @@ webpackContext.id = 1340; /***/ }), -/* 1354 */ +/* 1507 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -201819,7 +198321,7 @@ webpackContext.id = 1340; //! author : Asraf Hossain Patoary : https://github.com/ashwoolford ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -201954,7 +198456,7 @@ webpackContext.id = 1340; /***/ }), -/* 1355 */ +/* 1508 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -201962,7 +198464,7 @@ webpackContext.id = 1340; //! author : Thupten N. Chakrishar : https://github.com/vajradog ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -202091,7 +198593,7 @@ webpackContext.id = 1340; /***/ }), -/* 1356 */ +/* 1509 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -202099,7 +198601,7 @@ webpackContext.id = 1340; //! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -202271,7 +198773,7 @@ webpackContext.id = 1340; /***/ }), -/* 1357 */ +/* 1510 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -202280,7 +198782,7 @@ webpackContext.id = 1340; //! based on (hr) translation by Bojan Marković ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -202435,7 +198937,7 @@ webpackContext.id = 1340; /***/ }), -/* 1358 */ +/* 1511 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -202443,7 +198945,7 @@ webpackContext.id = 1340; //! author : Juan G. Hurtado : https://github.com/juanghurtado ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -202547,7 +199049,7 @@ webpackContext.id = 1340; /***/ }), -/* 1359 */ +/* 1512 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -202555,7 +199057,7 @@ webpackContext.id = 1340; //! author : petrbela : https://github.com/petrbela ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -202733,7 +199235,7 @@ webpackContext.id = 1340; /***/ }), -/* 1360 */ +/* 1513 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -202741,7 +199243,7 @@ webpackContext.id = 1340; //! author : Anatoly Mironov : https://github.com/mirontoli ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -202810,7 +199312,7 @@ webpackContext.id = 1340; /***/ }), -/* 1361 */ +/* 1514 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -202819,7 +199321,7 @@ webpackContext.id = 1340; //! author : https://github.com/ryangreaves ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -202922,7 +199424,7 @@ webpackContext.id = 1340; /***/ }), -/* 1362 */ +/* 1515 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -202930,7 +199432,7 @@ webpackContext.id = 1340; //! author : Ulrik Nielsen : https://github.com/mrbase ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -202990,7 +199492,7 @@ webpackContext.id = 1340; /***/ }), -/* 1363 */ +/* 1516 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203000,7 +199502,7 @@ webpackContext.id = 1340; //! author : Mikolaj Dadela : https://github.com/mik01aj ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203083,7 +199585,7 @@ webpackContext.id = 1340; /***/ }), -/* 1364 */ +/* 1517 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203094,7 +199596,7 @@ webpackContext.id = 1340; //! author : Mikolaj Dadela : https://github.com/mik01aj ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203177,7 +199679,7 @@ webpackContext.id = 1340; /***/ }), -/* 1365 */ +/* 1518 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203185,7 +199687,7 @@ webpackContext.id = 1340; //! author : sschueller : https://github.com/sschueller ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203268,7 +199770,7 @@ webpackContext.id = 1340; /***/ }), -/* 1366 */ +/* 1519 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203276,7 +199778,7 @@ webpackContext.id = 1340; //! author : Jawish Hameed : https://github.com/jawish ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203373,7 +199875,7 @@ webpackContext.id = 1340; /***/ }), -/* 1367 */ +/* 1520 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203381,7 +199883,7 @@ webpackContext.id = 1340; //! author : Aggelos Karalias : https://github.com/mehiel ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203492,7 +199994,7 @@ webpackContext.id = 1340; /***/ }), -/* 1368 */ +/* 1521 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203500,7 +200002,7 @@ webpackContext.id = 1340; //! author : Jared Morse : https://github.com/jarcoal ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203575,7 +200077,7 @@ webpackContext.id = 1340; /***/ }), -/* 1369 */ +/* 1522 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203583,7 +200085,7 @@ webpackContext.id = 1340; //! author : Jonathan Abourbih : https://github.com/jonbca ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203654,7 +200156,7 @@ webpackContext.id = 1340; /***/ }), -/* 1370 */ +/* 1523 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203662,7 +200164,7 @@ webpackContext.id = 1340; //! author : Chris Gedrim : https://github.com/chrisgedrim ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203737,7 +200239,7 @@ webpackContext.id = 1340; /***/ }), -/* 1371 */ +/* 1524 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203745,7 +200247,7 @@ webpackContext.id = 1340; //! author : Chris Cartlidge : https://github.com/chriscartlidge ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203820,7 +200322,7 @@ webpackContext.id = 1340; /***/ }), -/* 1372 */ +/* 1525 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203828,7 +200330,7 @@ webpackContext.id = 1340; //! author : Chris Gedrim : https://github.com/chrisgedrim ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203899,7 +200401,7 @@ webpackContext.id = 1340; /***/ }), -/* 1373 */ +/* 1526 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203907,7 +200409,7 @@ webpackContext.id = 1340; //! author : Jatin Agrawal : https://github.com/jatinag22 ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -203982,7 +200484,7 @@ webpackContext.id = 1340; /***/ }), -/* 1374 */ +/* 1527 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -203990,7 +200492,7 @@ webpackContext.id = 1340; //! author : Luke McGregor : https://github.com/lukemcgregor ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -204065,7 +200567,7 @@ webpackContext.id = 1340; /***/ }), -/* 1375 */ +/* 1528 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -204073,7 +200575,7 @@ webpackContext.id = 1340; //! author : Matthew Castrillon-Madrigal : https://github.com/techdimension ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -204148,7 +200650,7 @@ webpackContext.id = 1340; /***/ }), -/* 1376 */ +/* 1529 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -204159,7 +200661,7 @@ webpackContext.id = 1340; //! comment : Vivakvo corrected the translation by colindean and miestasmia ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -204231,7 +200733,7 @@ webpackContext.id = 1340; /***/ }), -/* 1377 */ +/* 1530 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -204239,7 +200741,7 @@ webpackContext.id = 1340; //! author : Julio Napurà : https://github.com/julionc ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -204352,14 +200854,14 @@ webpackContext.id = 1340; /***/ }), -/* 1378 */ +/* 1531 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration //! locale : Spanish (Dominican Republic) [es-do] ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -204471,7 +200973,7 @@ webpackContext.id = 1340; /***/ }), -/* 1379 */ +/* 1532 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -204479,7 +200981,7 @@ webpackContext.id = 1340; //! author : JC Franco : https://github.com/jcfranco ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -204592,7 +201094,7 @@ webpackContext.id = 1340; /***/ }), -/* 1380 */ +/* 1533 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -204601,7 +201103,7 @@ webpackContext.id = 1340; //! author : chrisrodz : https://github.com/chrisrodz ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -204713,7 +201215,7 @@ webpackContext.id = 1340; /***/ }), -/* 1381 */ +/* 1534 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -204722,7 +201224,7 @@ webpackContext.id = 1340; //! improvements : Illimar Tambek : https://github.com/ragulka ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -204806,7 +201308,7 @@ webpackContext.id = 1340; /***/ }), -/* 1382 */ +/* 1535 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -204814,7 +201316,7 @@ webpackContext.id = 1340; //! author : Eneko Illarramendi : https://github.com/eillarra ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -204884,7 +201386,7 @@ webpackContext.id = 1340; /***/ }), -/* 1383 */ +/* 1536 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -204892,7 +201394,7 @@ webpackContext.id = 1340; //! author : Ebrahim Byagowi : https://github.com/ebraminio ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205009,7 +201511,7 @@ webpackContext.id = 1340; /***/ }), -/* 1384 */ +/* 1537 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205017,7 +201519,7 @@ webpackContext.id = 1340; //! author : Tarmo Aidantausta : https://github.com/bleadof ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205145,7 +201647,7 @@ webpackContext.id = 1340; /***/ }), -/* 1385 */ +/* 1538 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205154,7 +201656,7 @@ webpackContext.id = 1340; //! author : Matthew Co : https://github.com/matthewdeeco ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205218,7 +201720,7 @@ webpackContext.id = 1340; /***/ }), -/* 1386 */ +/* 1539 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205227,7 +201729,7 @@ webpackContext.id = 1340; //! author : Kristian Sakarisson : https://github.com/sakarisson ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205289,7 +201791,7 @@ webpackContext.id = 1340; /***/ }), -/* 1387 */ +/* 1540 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205297,7 +201799,7 @@ webpackContext.id = 1340; //! author : John Fischer : https://github.com/jfroffice ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205408,7 +201910,7 @@ webpackContext.id = 1340; /***/ }), -/* 1388 */ +/* 1541 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205416,7 +201918,7 @@ webpackContext.id = 1340; //! author : Jonathan Abourbih : https://github.com/jonbca ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205492,7 +201994,7 @@ webpackContext.id = 1340; /***/ }), -/* 1389 */ +/* 1542 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205500,7 +202002,7 @@ webpackContext.id = 1340; //! author : Gaspard Bucher : https://github.com/gaspard ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205580,7 +202082,7 @@ webpackContext.id = 1340; /***/ }), -/* 1390 */ +/* 1543 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205588,7 +202090,7 @@ webpackContext.id = 1340; //! author : Robin van der Vliet : https://github.com/robin0van0der0v ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205672,7 +202174,7 @@ webpackContext.id = 1340; /***/ }), -/* 1391 */ +/* 1544 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205680,7 +202182,7 @@ webpackContext.id = 1340; //! author : André Silva : https://github.com/askpt ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205782,7 +202284,7 @@ webpackContext.id = 1340; /***/ }), -/* 1392 */ +/* 1545 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205790,7 +202292,7 @@ webpackContext.id = 1340; //! author : Jon Ashdown : https://github.com/jonashdown ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205892,7 +202394,7 @@ webpackContext.id = 1340; /***/ }), -/* 1393 */ +/* 1546 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205900,7 +202402,7 @@ webpackContext.id = 1340; //! author : Juan G. Hurtado : https://github.com/juanghurtado ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -205981,7 +202483,7 @@ webpackContext.id = 1340; /***/ }), -/* 1394 */ +/* 1547 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -205989,7 +202491,7 @@ webpackContext.id = 1340; //! author : The Discoverer : https://github.com/WikiDiscoverer ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -206120,7 +202622,7 @@ webpackContext.id = 1340; /***/ }), -/* 1395 */ +/* 1548 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -206128,7 +202630,7 @@ webpackContext.id = 1340; //! author : The Discoverer : https://github.com/WikiDiscoverer ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -206259,7 +202761,7 @@ webpackContext.id = 1340; /***/ }), -/* 1396 */ +/* 1549 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -206267,7 +202769,7 @@ webpackContext.id = 1340; //! author : Kaushik Thanki : https://github.com/Kaushik1987 ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -206395,7 +202897,7 @@ webpackContext.id = 1340; /***/ }), -/* 1397 */ +/* 1550 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -206405,7 +202907,7 @@ webpackContext.id = 1340; //! author : Tal Ater : https://github.com/TalAter ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -206504,7 +203006,7 @@ webpackContext.id = 1340; /***/ }), -/* 1398 */ +/* 1551 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -206512,7 +203014,7 @@ webpackContext.id = 1340; //! author : Mayank Singhal : https://github.com/mayanksinghal ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -206683,7 +203185,7 @@ webpackContext.id = 1340; /***/ }), -/* 1399 */ +/* 1552 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -206691,7 +203193,7 @@ webpackContext.id = 1340; //! author : Bojan Marković : https://github.com/bmarkovic ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -206852,7 +203354,7 @@ webpackContext.id = 1340; /***/ }), -/* 1400 */ +/* 1553 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -206861,7 +203363,7 @@ webpackContext.id = 1340; //! author : Peter Viszt : https://github.com/passatgt ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -206985,7 +203487,7 @@ webpackContext.id = 1340; /***/ }), -/* 1401 */ +/* 1554 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -206993,7 +203495,7 @@ webpackContext.id = 1340; //! author : Armendarabyan : https://github.com/armendarabyan ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -207092,7 +203594,7 @@ webpackContext.id = 1340; /***/ }), -/* 1402 */ +/* 1555 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -207101,7 +203603,7 @@ webpackContext.id = 1340; //! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -207183,7 +203685,7 @@ webpackContext.id = 1340; /***/ }), -/* 1403 */ +/* 1556 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -207191,7 +203693,7 @@ webpackContext.id = 1340; //! author : Hinrik Örn Sigurðsson : https://github.com/hinrik ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -207337,7 +203839,7 @@ webpackContext.id = 1340; /***/ }), -/* 1404 */ +/* 1557 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -207347,7 +203849,7 @@ webpackContext.id = 1340; //! author: Marco : https://github.com/Manfre98 ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -207458,7 +203960,7 @@ webpackContext.id = 1340; /***/ }), -/* 1405 */ +/* 1558 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -207466,7 +203968,7 @@ webpackContext.id = 1340; //! author : xfh : https://github.com/xfh ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -207537,7 +204039,7 @@ webpackContext.id = 1340; /***/ }), -/* 1406 */ +/* 1559 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -207545,7 +204047,7 @@ webpackContext.id = 1340; //! author : LI Long : https://github.com/baryon ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -207700,7 +204202,7 @@ webpackContext.id = 1340; /***/ }), -/* 1407 */ +/* 1560 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -207709,7 +204211,7 @@ webpackContext.id = 1340; //! reference: http://jv.wikipedia.org/wiki/Basa_Jawa ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -207791,7 +204293,7 @@ webpackContext.id = 1340; /***/ }), -/* 1408 */ +/* 1561 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -207799,7 +204301,7 @@ webpackContext.id = 1340; //! author : Irakli Janiashvili : https://github.com/IrakliJani ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -207898,7 +204400,7 @@ webpackContext.id = 1340; /***/ }), -/* 1409 */ +/* 1562 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -207906,7 +204408,7 @@ webpackContext.id = 1340; //! authors : Nurlan Rakhimzhanov : https://github.com/nurlan ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -207995,7 +204497,7 @@ webpackContext.id = 1340; /***/ }), -/* 1410 */ +/* 1563 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -208003,7 +204505,7 @@ webpackContext.id = 1340; //! author : Kruy Vanna : https://github.com/kruyvanna ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -208112,7 +204614,7 @@ webpackContext.id = 1340; /***/ }), -/* 1411 */ +/* 1564 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -208120,7 +204622,7 @@ webpackContext.id = 1340; //! author : Rajeev Naik : https://github.com/rajeevnaikte ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -208250,7 +204752,7 @@ webpackContext.id = 1340; /***/ }), -/* 1412 */ +/* 1565 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -208259,7 +204761,7 @@ webpackContext.id = 1340; //! author : Jeeeyul Lee <jeeeyul@gmail.com> ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -208340,7 +204842,7 @@ webpackContext.id = 1340; /***/ }), -/* 1413 */ +/* 1566 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -208348,7 +204850,7 @@ webpackContext.id = 1340; //! author : Shahram Mebashar : https://github.com/ShahramMebashar ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -208473,7 +204975,7 @@ webpackContext.id = 1340; /***/ }), -/* 1414 */ +/* 1567 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -208481,7 +204983,7 @@ webpackContext.id = 1340; //! author : Chyngyz Arystan uulu : https://github.com/chyngyz ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -208572,7 +205074,7 @@ webpackContext.id = 1340; /***/ }), -/* 1415 */ +/* 1568 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -208581,7 +205083,7 @@ webpackContext.id = 1340; //! author : David Raison : https://github.com/kwisatz ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -208722,7 +205224,7 @@ webpackContext.id = 1340; /***/ }), -/* 1416 */ +/* 1569 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -208730,7 +205232,7 @@ webpackContext.id = 1340; //! author : Ryan Hart : https://github.com/ryanhart2 ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -208802,7 +205304,7 @@ webpackContext.id = 1340; /***/ }), -/* 1417 */ +/* 1570 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -208810,7 +205312,7 @@ webpackContext.id = 1340; //! author : Mindaugas MozÅ«ras : https://github.com/mmozuras ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -208940,7 +205442,7 @@ webpackContext.id = 1340; /***/ }), -/* 1418 */ +/* 1571 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -208949,7 +205451,7 @@ webpackContext.id = 1340; //! author : JÄnis Elmeris : https://github.com/JanisE ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -209048,7 +205550,7 @@ webpackContext.id = 1340; /***/ }), -/* 1419 */ +/* 1572 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -209056,7 +205558,7 @@ webpackContext.id = 1340; //! author : Miodrag NikaÄ <miodrag@restartit.me> : https://github.com/miodragnikac ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -209181,7 +205683,7 @@ webpackContext.id = 1340; /***/ }), -/* 1420 */ +/* 1573 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -209189,7 +205691,7 @@ webpackContext.id = 1340; //! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -209255,7 +205757,7 @@ webpackContext.id = 1340; /***/ }), -/* 1421 */ +/* 1574 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -209264,7 +205766,7 @@ webpackContext.id = 1340; //! author : Sashko Todorov : https://github.com/bkyceh ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -209356,7 +205858,7 @@ webpackContext.id = 1340; /***/ }), -/* 1422 */ +/* 1575 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -209364,7 +205866,7 @@ webpackContext.id = 1340; //! author : Floyd Pink : https://github.com/floydpink ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -209451,7 +205953,7 @@ webpackContext.id = 1340; /***/ }), -/* 1423 */ +/* 1576 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -209459,7 +205961,7 @@ webpackContext.id = 1340; //! author : Javkhlantugs Nyamdorj : https://github.com/javkhaanj7 ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -209565,7 +206067,7 @@ webpackContext.id = 1340; /***/ }), -/* 1424 */ +/* 1577 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -209574,7 +206076,7 @@ webpackContext.id = 1340; //! author : Vivek Athalye : https://github.com/vnathalye ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -209782,7 +206284,7 @@ webpackContext.id = 1340; /***/ }), -/* 1425 */ +/* 1578 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -209790,7 +206292,7 @@ webpackContext.id = 1340; //! author : Weldan Jamili : https://github.com/weldan ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -209872,7 +206374,7 @@ webpackContext.id = 1340; /***/ }), -/* 1426 */ +/* 1579 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -209881,7 +206383,7 @@ webpackContext.id = 1340; //! author : Weldan Jamili : https://github.com/weldan ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -209963,7 +206465,7 @@ webpackContext.id = 1340; /***/ }), -/* 1427 */ +/* 1580 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -209971,7 +206473,7 @@ webpackContext.id = 1340; //! author : Alessandro Maruccia : https://github.com/alesma ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -210033,7 +206535,7 @@ webpackContext.id = 1340; /***/ }), -/* 1428 */ +/* 1581 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -210043,7 +206545,7 @@ webpackContext.id = 1340; //! author : Tin Aung Lin : https://github.com/thanyawzinmin ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -210139,7 +206641,7 @@ webpackContext.id = 1340; /***/ }), -/* 1429 */ +/* 1582 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -210149,7 +206651,7 @@ webpackContext.id = 1340; //! Stephen Ramthun : https://github.com/stephenramthun ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -210215,7 +206717,7 @@ webpackContext.id = 1340; /***/ }), -/* 1430 */ +/* 1583 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -210223,7 +206725,7 @@ webpackContext.id = 1340; //! author : suvash : https://github.com/suvash ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -210350,7 +206852,7 @@ webpackContext.id = 1340; /***/ }), -/* 1431 */ +/* 1584 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -210359,7 +206861,7 @@ webpackContext.id = 1340; //! author : Jacob Middag : https://github.com/middagj ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -210469,7 +206971,7 @@ webpackContext.id = 1340; /***/ }), -/* 1432 */ +/* 1585 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -210478,7 +206980,7 @@ webpackContext.id = 1340; //! author : Jacob Middag : https://github.com/middagj ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -210586,7 +207088,7 @@ webpackContext.id = 1340; /***/ }), -/* 1433 */ +/* 1586 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -210595,7 +207097,7 @@ webpackContext.id = 1340; //! Stephen Ramthun : https://github.com/stephenramthun ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -210661,7 +207163,7 @@ webpackContext.id = 1340; /***/ }), -/* 1434 */ +/* 1587 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -210669,7 +207171,7 @@ webpackContext.id = 1340; //! author : Quentin PAGÈS : https://github.com/Quenty31 ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -210759,7 +207261,7 @@ webpackContext.id = 1340; /***/ }), -/* 1435 */ +/* 1588 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -210767,7 +207269,7 @@ webpackContext.id = 1340; //! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -210895,7 +207397,7 @@ webpackContext.id = 1340; /***/ }), -/* 1436 */ +/* 1589 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -210903,7 +207405,7 @@ webpackContext.id = 1340; //! author : Rafal Hirsz : https://github.com/evoL ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -211049,7 +207551,7 @@ webpackContext.id = 1340; /***/ }), -/* 1437 */ +/* 1590 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -211057,7 +207559,7 @@ webpackContext.id = 1340; //! author : Jefferson : https://github.com/jalex79 ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -211126,7 +207628,7 @@ webpackContext.id = 1340; /***/ }), -/* 1438 */ +/* 1591 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -211134,7 +207636,7 @@ webpackContext.id = 1340; //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -211198,7 +207700,7 @@ webpackContext.id = 1340; /***/ }), -/* 1439 */ +/* 1592 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -211208,7 +207710,7 @@ webpackContext.id = 1340; //! author : Emanuel Cepoi : https://github.com/cepem ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -211288,7 +207790,7 @@ webpackContext.id = 1340; /***/ }), -/* 1440 */ +/* 1593 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -211298,7 +207800,7 @@ webpackContext.id = 1340; //! author : Коренберг Марк : https://github.com/socketpair ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -211509,7 +208011,7 @@ webpackContext.id = 1340; /***/ }), -/* 1441 */ +/* 1594 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -211517,7 +208019,7 @@ webpackContext.id = 1340; //! author : Narain Sagar : https://github.com/narainsagar ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -211605,7 +208107,7 @@ webpackContext.id = 1340; /***/ }), -/* 1442 */ +/* 1595 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -211613,7 +208115,7 @@ webpackContext.id = 1340; //! authors : BÃ¥rd Rolstad Henriksen : https://github.com/karamell ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -211677,7 +208179,7 @@ webpackContext.id = 1340; /***/ }), -/* 1443 */ +/* 1596 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -211685,7 +208187,7 @@ webpackContext.id = 1340; //! author : Sampath Sitinamaluwa : https://github.com/sampathsris ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -211760,7 +208262,7 @@ webpackContext.id = 1340; /***/ }), -/* 1444 */ +/* 1597 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -211769,7 +208271,7 @@ webpackContext.id = 1340; //! based on work of petrbela : https://github.com/petrbela ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -211919,7 +208421,7 @@ webpackContext.id = 1340; /***/ }), -/* 1445 */ +/* 1598 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -211927,7 +208429,7 @@ webpackContext.id = 1340; //! author : Robert SedovÅ¡ek : https://github.com/sedovsek ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -212104,7 +208606,7 @@ webpackContext.id = 1340; /***/ }), -/* 1446 */ +/* 1599 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -212114,7 +208616,7 @@ webpackContext.id = 1340; //! author : Oerd Cukalla : https://github.com/oerd ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -212184,7 +208686,7 @@ webpackContext.id = 1340; /***/ }), -/* 1447 */ +/* 1600 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -212193,7 +208695,7 @@ webpackContext.id = 1340; //! author : Stefan Crnjaković <stefan@hotmail.rs> : https://github.com/crnjakovic ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -212317,7 +208819,7 @@ webpackContext.id = 1340; /***/ }), -/* 1448 */ +/* 1601 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -212326,7 +208828,7 @@ webpackContext.id = 1340; //! author : Stefan Crnjaković <stefan@hotmail.rs> : https://github.com/crnjakovic ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -212448,7 +208950,7 @@ webpackContext.id = 1340; /***/ }), -/* 1449 */ +/* 1602 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -212456,7 +208958,7 @@ webpackContext.id = 1340; //! author : Nicolai Davies<mail@nicolai.io> : https://github.com/nicolaidavies ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -212546,7 +209048,7 @@ webpackContext.id = 1340; /***/ }), -/* 1450 */ +/* 1603 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -212554,7 +209056,7 @@ webpackContext.id = 1340; //! author : Jens Alm : https://github.com/ulmus ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -212629,7 +209131,7 @@ webpackContext.id = 1340; /***/ }), -/* 1451 */ +/* 1604 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -212637,7 +209139,7 @@ webpackContext.id = 1340; //! author : Fahad Kassim : https://github.com/fadsel ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -212698,7 +209200,7 @@ webpackContext.id = 1340; /***/ }), -/* 1452 */ +/* 1605 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -212706,7 +209208,7 @@ webpackContext.id = 1340; //! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404 ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -212842,7 +209344,7 @@ webpackContext.id = 1340; /***/ }), -/* 1453 */ +/* 1606 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -212850,7 +209352,7 @@ webpackContext.id = 1340; //! author : Krishna Chaitanya Thota : https://github.com/kcthota ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -212943,7 +209445,7 @@ webpackContext.id = 1340; /***/ }), -/* 1454 */ +/* 1607 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -212953,7 +209455,7 @@ webpackContext.id = 1340; //! author : Sonia Simoes : https://github.com/soniasimoes ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -213026,7 +209528,7 @@ webpackContext.id = 1340; /***/ }), -/* 1455 */ +/* 1608 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -213034,7 +209536,7 @@ webpackContext.id = 1340; //! author : Orif N. Jr. : https://github.com/orif-jr ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -213157,7 +209659,7 @@ webpackContext.id = 1340; /***/ }), -/* 1456 */ +/* 1609 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -213165,7 +209667,7 @@ webpackContext.id = 1340; //! author : Kridsada Thanabulpong : https://github.com/sirn ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -213236,7 +209738,7 @@ webpackContext.id = 1340; /***/ }), -/* 1457 */ +/* 1610 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -213244,7 +209746,7 @@ webpackContext.id = 1340; //! author : Atamyrat Abdyrahmanov : https://github.com/atamyratabdy ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -213342,7 +209844,7 @@ webpackContext.id = 1340; /***/ }), -/* 1458 */ +/* 1611 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -213350,7 +209852,7 @@ webpackContext.id = 1340; //! author : Dan Hagman : https://github.com/hagmandan ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -213414,7 +209916,7 @@ webpackContext.id = 1340; /***/ }), -/* 1459 */ +/* 1612 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -213422,7 +209924,7 @@ webpackContext.id = 1340; //! author : Dominika Kruk : https://github.com/amaranthrose ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -213554,7 +210056,7 @@ webpackContext.id = 1340; /***/ }), -/* 1460 */ +/* 1613 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -213563,7 +210065,7 @@ webpackContext.id = 1340; //! Burak YiÄŸit Kaya: https://github.com/BYK ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -213675,7 +210177,7 @@ webpackContext.id = 1340; /***/ }), -/* 1461 */ +/* 1614 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -213684,7 +210186,7 @@ webpackContext.id = 1340; //! author : Iustì Canun ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -213779,7 +210281,7 @@ webpackContext.id = 1340; /***/ }), -/* 1462 */ +/* 1615 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -213787,7 +210289,7 @@ webpackContext.id = 1340; //! author : Abdel Said : https://github.com/abdelsaid ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -213847,7 +210349,7 @@ webpackContext.id = 1340; /***/ }), -/* 1463 */ +/* 1616 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -213855,7 +210357,7 @@ webpackContext.id = 1340; //! author : Abdel Said : https://github.com/abdelsaid ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -213915,7 +210417,7 @@ webpackContext.id = 1340; /***/ }), -/* 1464 */ +/* 1617 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -213923,7 +210425,7 @@ webpackContext.id = 1340; //! author: boyaq : https://github.com/boyaq ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -214040,7 +210542,7 @@ webpackContext.id = 1340; /***/ }), -/* 1465 */ +/* 1618 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -214049,7 +210551,7 @@ webpackContext.id = 1340; //! Author : Menelion Elensúle : https://github.com/Oire ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -214218,7 +210720,7 @@ webpackContext.id = 1340; /***/ }), -/* 1466 */ +/* 1619 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -214227,7 +210729,7 @@ webpackContext.id = 1340; //! author : Zack : https://github.com/ZackVision ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -214315,7 +210817,7 @@ webpackContext.id = 1340; /***/ }), -/* 1467 */ +/* 1620 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -214323,7 +210825,7 @@ webpackContext.id = 1340; //! author : Sardor Muminov : https://github.com/muminoff ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -214381,7 +210883,7 @@ webpackContext.id = 1340; /***/ }), -/* 1468 */ +/* 1621 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -214389,7 +210891,7 @@ webpackContext.id = 1340; //! author : Rasulbek Mirzayev : github.com/Rasulbeeek ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -214449,7 +210951,7 @@ webpackContext.id = 1340; /***/ }), -/* 1469 */ +/* 1622 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -214458,7 +210960,7 @@ webpackContext.id = 1340; //! author : Chien Kira : https://github.com/chienkira ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -214543,7 +211045,7 @@ webpackContext.id = 1340; /***/ }), -/* 1470 */ +/* 1623 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -214551,7 +211053,7 @@ webpackContext.id = 1340; //! author : Andrew Hood : https://github.com/andrewhood125 ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -214629,7 +211131,7 @@ webpackContext.id = 1340; /***/ }), -/* 1471 */ +/* 1624 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -214637,7 +211139,7 @@ webpackContext.id = 1340; //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -214697,7 +211199,7 @@ webpackContext.id = 1340; /***/ }), -/* 1472 */ +/* 1625 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -214707,7 +211209,7 @@ webpackContext.id = 1340; //! author : uu109 : https://github.com/uu109 ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -214832,7 +211334,7 @@ webpackContext.id = 1340; /***/ }), -/* 1473 */ +/* 1626 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -214843,7 +211345,7 @@ webpackContext.id = 1340; //! author : Anthony : https://github.com/anthonylau ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -214948,7 +211450,7 @@ webpackContext.id = 1340; /***/ }), -/* 1474 */ +/* 1627 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -214958,7 +211460,7 @@ webpackContext.id = 1340; //! author : Tan Yuanhong : https://github.com/le0tan ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -215063,7 +211565,7 @@ webpackContext.id = 1340; /***/ }), -/* 1475 */ +/* 1628 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -215072,7 +211574,7 @@ webpackContext.id = 1340; //! author : Chris Lam : https://github.com/hehachris ;(function (global, factory) { - true ? factory(__webpack_require__(1339)) : + true ? factory(__webpack_require__(1492)) : undefined }(this, (function (moment) { 'use strict'; @@ -215177,15 +211679,15 @@ webpackContext.id = 1340; /***/ }), -/* 1476 */ +/* 1629 */ /***/ (function(module, exports, __webpack_require__) { -var moment = module.exports = __webpack_require__(1477); -moment.tz.load(__webpack_require__(1478)); +var moment = module.exports = __webpack_require__(1630); +moment.tz.load(__webpack_require__(1631)); /***/ }), -/* 1477 */ +/* 1630 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;//! moment-timezone.js @@ -215199,9 +211701,9 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_ /*global define*/ if ( true && module.exports) { - module.exports = factory(__webpack_require__(1339)); // Node + module.exports = factory(__webpack_require__(1492)); // Node } else if (true) { - !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(1339)], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), + !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(1492)], __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__)); // AMD @@ -215888,7 +212390,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_ /***/ }), -/* 1478 */ +/* 1631 */ /***/ (function(module) { module.exports = JSON.parse("{\"version\":\"2021a\",\"zones\":[\"Africa/Abidjan|LMT GMT|g.8 0|01|-2ldXH.Q|48e5\",\"Africa/Accra|LMT GMT +0020 +0030|.Q 0 -k -u|01212121212121212121212121212121212121212121212131313131313131|-2bRzX.8 9RbX.8 fdE 1BAk MLE 1Bck MLE 1Bck MLE 1Bck MLE 1BAk MLE 1Bck MLE 1Bck MLE 1Bck MLE 1BAk MLE 1Bck MLE 1Bck MLE 1Bck MLE 1BAk MLE 1Bck MLE 1Bck MLE 1Bck MLE 1BAk MLE 1Bck MLE 1Bck MLE 1Bck MLE Mok 1BXE M0k 1BXE fak 9vbu bjCu MLu 1Bcu MLu 1BAu MLu 1Bcu MLu 1Bcu MLu 1Bcu MLu|41e5\",\"Africa/Nairobi|LMT +0230 EAT +0245|-2r.g -2u -30 -2J|012132|-2ua2r.g N6nV.g 3Fbu h1cu dzbJ|47e5\",\"Africa/Algiers|PMT WET WEST CET CEST|-9.l 0 -10 -10 -20|0121212121212121343431312123431213|-2nco9.l cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 DA0 Imo0 rd0 De0 9Xz0 1fb0 1ap0 16K0 2yo0 mEp0 hwL0 jxA0 11A0 dDd0 17b0 11B0 1cN0 2Dy0 1cN0 1fB0 1cL0|26e5\",\"Africa/Lagos|LMT GMT +0030 WAT|-d.z 0 -u -10|01023|-2B40d.z 7iod.z dnXK.p dLzH.z|17e6\",\"Africa/Bissau|LMT -01 GMT|12.k 10 0|012|-2ldX0 2xoo0|39e4\",\"Africa/Maputo|LMT CAT|-2a.k -20|01|-2GJea.k|26e5\",\"Africa/Cairo|EET EEST|-20 -30|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1bIO0 vb0 1ip0 11z0 1iN0 1nz0 12p0 1pz0 10N0 1pz0 16p0 1jz0 s3d0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1WL0 rd0 1Rz0 wp0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1qL0 Xd0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1ny0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 WL0 1qN0 Rb0 1wp0 On0 1zd0 Lz0 1EN0 Fb0 c10 8n0 8Nd0 gL0 e10 mn0|15e6\",\"Africa/Casablanca|LMT +00 +01|u.k 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2gMnt.E 130Lt.E rb0 Dd0 dVb0 b6p0 TX0 EoB0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4mn0 SyN0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0|32e5\",\"Africa/Ceuta|WET WEST CET CEST|0 -10 -10 -20|010101010101010101010232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-25KN0 11z0 drd0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1y7o0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4VB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|85e3\",\"Africa/El_Aaiun|LMT -01 +00 +01|Q.M 10 0 -10|012323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1rDz7.c 1GVA7.c 6L0 AL0 1Nd0 XX0 1Cp0 pz0 1cBB0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 28M0 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0 2600 e00 2600 gM0 2600 gM0 2600 e00 2600 gM0|20e4\",\"Africa/Johannesburg|SAST SAST SAST|-1u -20 -30|012121|-2GJdu 1Ajdu 1cL0 1cN0 1cL0|84e5\",\"Africa/Juba|LMT CAT CAST EAT|-26.s -20 -30 -30|012121212121212121212121212121212131|-1yW26.s 1zK06.s 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 PeX0|\",\"Africa/Khartoum|LMT CAT CAST EAT|-2a.8 -20 -30 -30|012121212121212121212121212121212131|-1yW2a.8 1zK0a.8 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0 HjL0|51e5\",\"Africa/Monrovia|MMT MMT GMT|H.8 I.u 0|012|-23Lzg.Q 28G01.m|11e5\",\"Africa/Ndjamena|LMT WAT WAST|-10.c -10 -20|0121|-2le10.c 2J3c0.c Wn0|13e5\",\"Africa/Sao_Tome|LMT GMT WAT|A.J 0 -10|0121|-2le00 4i6N0 2q00|\",\"Africa/Tripoli|LMT CET CEST EET|-Q.I -10 -20 -20|012121213121212121212121213123123|-21JcQ.I 1hnBQ.I vx0 4iP0 xx0 4eN0 Bb0 7ip0 U0n0 A10 1db0 1cN0 1db0 1dd0 1db0 1eN0 1bb0 1e10 1cL0 1c10 1db0 1dd0 1db0 1cN0 1db0 1q10 fAn0 1ep0 1db0 AKq0 TA0 1o00|11e5\",\"Africa/Tunis|PMT CET CEST|-9.l -10 -20|0121212121212121212121212121212121|-2nco9.l 18pa9.l 1qM0 DA0 3Tc0 11B0 1ze0 WM0 7z0 3d0 14L0 1cN0 1f90 1ar0 16J0 1gXB0 WM0 1rA0 11c0 nwo0 Ko0 1cM0 1cM0 1rA0 10M0 zuM0 10N0 1aN0 1qM0 WM0 1qM0 11A0 1o00|20e5\",\"Africa/Windhoek|+0130 SAST SAST CAT WAT|-1u -20 -30 -20 -10|01213434343434343434343434343434343434343434343434343|-2GJdu 1Ajdu 1cL0 1SqL0 9Io0 16P0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0|32e4\",\"America/Adak|NST NWT NPT BST BDT AHST HST HDT|b0 a0 a0 b0 a0 a0 a0 90|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17SX0 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|326\",\"America/Anchorage|AST AWT APT AHST AHDT YST AKST AKDT|a0 90 90 a0 90 90 90 80|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17T00 8wX0 iA0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|30e4\",\"America/Port_of_Spain|LMT AST|46.4 40|01|-2kNvR.U|43e3\",\"America/Araguaina|LMT -03 -02|3c.M 30 20|0121212121212121212121212121212121212121212121212121|-2glwL.c HdKL.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 ny10 Lz0|14e4\",\"America/Argentina/Buenos_Aires|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 A4p0 uL0 1qN0 WL0|\",\"America/Argentina/Catamarca|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323132321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 7B0 8zb0 uL0|\",\"America/Argentina/Cordoba|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323132323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0 1qN0 WL0|\",\"America/Argentina/Jujuy|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323121323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1ze0 TX0 1ld0 WK0 1wp0 TX0 A4p0 uL0|\",\"America/Argentina/La_Rioja|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0|\",\"America/Argentina/Mendoza|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232312121321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1u20 SL0 1vd0 Tb0 1wp0 TW0 ri10 Op0 7TX0 uL0|\",\"America/Argentina/Rio_Gallegos|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0|\",\"America/Argentina/Salta|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0|\",\"America/Argentina/San_Juan|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rld0 m10 8lb0 uL0|\",\"America/Argentina/San_Luis|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323121212321212|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 XX0 1q20 SL0 AN0 vDb0 m10 8lb0 8L0 jd0 1qN0 WL0 1qN0|\",\"America/Argentina/Tucuman|CMT -04 -03 -02|4g.M 40 30 20|0121212121212121212121212121212121212121212323232313232123232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 4N0 8BX0 uL0 1qN0 WL0|\",\"America/Argentina/Ushuaia|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rkN0 8p0 8zb0 uL0|\",\"America/Curacao|LMT -0430 AST|4z.L 4u 40|012|-2kV7o.d 28KLS.d|15e4\",\"America/Asuncion|AMT -04 -03|3O.E 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-1x589.k 1DKM9.k 3CL0 3Dd0 10L0 1pB0 10n0 1pB0 10n0 1pB0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1lB0 14n0 1dd0 1cL0 1fd0 WL0 1rd0 1aL0 1dB0 Xz0 1qp0 Xb0 1qN0 10L0 1rB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 WN0 1qL0 11B0 1nX0 1ip0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 TX0 1tB0 19X0 1a10 1fz0 1a10 1fz0 1cN0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0|28e5\",\"America/Atikokan|CST CDT CWT CPT EST|60 50 50 50 50|0101234|-25TQ0 1in0 Rnb0 3je0 8x30 iw0|28e2\",\"America/Bahia_Banderas|LMT MST CST PST MDT CDT|71 70 60 80 60 50|0121212131414141414141414141414141414152525252525252525252525252525252525252525252525252525252|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nW0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|84e3\",\"America/Bahia|LMT -03 -02|2y.4 30 20|01212121212121212121212121212121212121212121212121212121212121|-2glxp.U HdLp.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 l5B0 Rb0|27e5\",\"America/Barbados|LMT BMT AST ADT|3W.t 3W.t 40 30|01232323232|-1Q0I1.v jsM0 1ODC1.v IL0 1ip0 17b0 1ip0 17b0 1ld0 13b0|28e4\",\"America/Belem|LMT -03 -02|3d.U 30 20|012121212121212121212121212121|-2glwK.4 HdKK.4 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|20e5\",\"America/Belize|LMT CST -0530 CWT CPT CDT|5Q.M 60 5u 50 50 50|012121212121212121212121212121212121212121212121213412121212121212121212121212121212121212121215151|-2kBu7.c fPA7.c Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu Rcu 7Bt0 Ni0 4nd0 Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu e9Au qn0 lxB0 mn0|57e3\",\"America/Blanc-Sablon|AST ADT AWT APT|40 30 30 30|010230|-25TS0 1in0 UGp0 8x50 iu0|11e2\",\"America/Boa_Vista|LMT -04 -03|42.E 40 30|0121212121212121212121212121212121|-2glvV.k HdKV.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 smp0 WL0 1tB0 2L0|62e2\",\"America/Bogota|BMT -05 -04|4U.g 50 40|0121|-2eb73.I 38yo3.I 2en0|90e5\",\"America/Boise|PST PDT MST MWT MPT MDT|80 70 70 60 60 60|0101023425252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-261q0 1nX0 11B0 1nX0 8C10 JCL0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 Dd0 1Kn0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e4\",\"America/Cambridge_Bay|-00 MST MWT MPT MDDT MDT CST CDT EST|0 70 60 60 50 60 60 50 50|0123141515151515151515151515151515151515151515678651515151515151515151515151515151515151515151515151515151515151515151515151|-21Jc0 RO90 8x20 ix0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11A0 1nX0 2K0 WQ0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e2\",\"America/Campo_Grande|LMT -04 -03|3C.s 40 30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwl.w HdLl.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|77e4\",\"America/Cancun|LMT CST EST EDT CDT|5L.4 60 50 40 50|0123232341414141414141414141414141414141412|-1UQG0 2q2o0 yLB0 1lb0 14p0 1lb0 14p0 Lz0 xB0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 Dd0|63e4\",\"America/Caracas|CMT -0430 -04|4r.E 4u 40|01212|-2kV7w.k 28KM2.k 1IwOu kqo0|29e5\",\"America/Cayenne|LMT -04 -03|3t.k 40 30|012|-2mrwu.E 2gWou.E|58e3\",\"America/Panama|CMT EST|5j.A 50|01|-2uduE.o|15e5\",\"America/Chicago|CST CDT EST CWT CPT|60 50 50 50 50|01010101010101010101010101010101010102010101010103401010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 1wp0 TX0 WN0 1qL0 1cN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 11B0 1Hz0 14p0 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|92e5\",\"America/Chihuahua|LMT MST CST CDT MDT|74.k 70 60 50 60|0121212323241414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|81e4\",\"America/Costa_Rica|SJMT CST CDT|5A.d 60 50|0121212121|-1Xd6n.L 2lu0n.L Db0 1Kp0 Db0 pRB0 15b0 1kp0 mL0|12e5\",\"America/Creston|MST PST|70 80|010|-29DR0 43B0|53e2\",\"America/Cuiaba|LMT -04 -03|3I.k 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwf.E HdLf.E 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 4a10 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|54e4\",\"America/Danmarkshavn|LMT -03 -02 GMT|1e.E 30 20 0|01212121212121212121212121212121213|-2a5WJ.k 2z5fJ.k 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 DC0|8\",\"America/Dawson_Creek|PST PDT PWT PPT MST|80 70 70 70 70|0102301010101010101010101010101010101010101010101010101014|-25TO0 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 ML0|12e3\",\"America/Dawson|YST YDT YWT YPT YDDT PST PDT MST|90 80 80 80 70 80 70 70|010102304056565656565656565656565656565656565656565656565656565656565656565656565656565656567|-25TN0 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 jrA0 fNd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|13e2\",\"America/Denver|MST MDT MWT MPT|70 60 60 60|01010101023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261r0 1nX0 11B0 1nX0 11B0 1qL0 WN0 mn0 Ord0 8x20 ix0 LCN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e5\",\"America/Detroit|LMT CST EST EWT EPT EDT|5w.b 60 50 40 40 40|0123425252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2Cgir.N peqr.N 156L0 8x40 iv0 6fd0 11z0 JxX1 SMX 1cN0 1cL0 aW10 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e5\",\"America/Edmonton|LMT MST MDT MWT MPT|7x.Q 70 60 60 60|0121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2yd4q.8 shdq.8 1in0 17d0 hz0 2dB0 1fz0 1a10 11z0 1qN0 WL0 1qN0 11z0 IGN0 8x20 ix0 3NB0 11z0 XQp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|10e5\",\"America/Eirunepe|LMT -05 -04|4D.s 50 40|0121212121212121212121212121212121|-2glvk.w HdLk.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0 yTd0 d5X0|31e3\",\"America/El_Salvador|LMT CST CDT|5U.M 60 50|012121|-1XiG3.c 2Fvc3.c WL0 1qN0 WL0|11e5\",\"America/Tijuana|LMT MST PST PDT PWT PPT|7M.4 70 80 70 70 70|012123245232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQE0 4PX0 8mM0 8lc0 SN0 1cL0 pHB0 83r0 zI0 5O10 1Rz0 cOO0 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 BUp0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|20e5\",\"America/Fort_Nelson|PST PDT PWT PPT MST|80 70 70 70 70|01023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010104|-25TO0 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0|39e2\",\"America/Fort_Wayne|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|010101023010101010101010101040454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 QI10 Db0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 5Tz0 1o10 qLb0 1cL0 1cN0 1cL0 1qhd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/Fortaleza|LMT -03 -02|2y 30 20|0121212121212121212121212121212121212121|-2glxq HdLq 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 5z0 2mN0 On0|34e5\",\"America/Glace_Bay|LMT AST ADT AWT APT|3X.M 40 30 30 30|012134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsI0.c CwO0.c 1in0 UGp0 8x50 iu0 iq10 11z0 Jg10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3\",\"America/Godthab|LMT -03 -02|3q.U 30 20|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5Ux.4 2z5dx.4 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e3\",\"America/Goose_Bay|NST NDT NST NDT NWT NPT AST ADT ADDT|3u.Q 2u.Q 3u 2u 2u 2u 40 30 20|010232323232323245232323232323232323232323232323232323232326767676767676767676767676767676767676767676768676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-25TSt.8 1in0 DXb0 2HbX.8 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 S10 g0u 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|76e2\",\"America/Grand_Turk|KMT EST EDT AST|57.a 50 40 40|0121212121212121212121212121212121212121212121212121212121212121212121212132121212121212121212121212121212121212121|-2l1uQ.O 2HHBQ.O 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 7jA0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e2\",\"America/Guatemala|LMT CST CDT|62.4 60 50|0121212121|-24KhV.U 2efXV.U An0 mtd0 Nz0 ifB0 17b0 zDB0 11z0|13e5\",\"America/Guayaquil|QMT -05 -04|5e 50 40|0121|-1yVSK 2uILK rz0|27e5\",\"America/Guyana|LMT -0345 -03 -04|3Q.E 3J 30 40|0123|-2dvU7.k 2r6LQ.k Bxbf|80e4\",\"America/Halifax|LMT AST ADT AWT APT|4e.o 40 30 30 30|0121212121212121212121212121212121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsHJ.A xzzJ.A 1db0 3I30 1in0 3HX0 IL0 1E10 ML0 1yN0 Pb0 1Bd0 Mn0 1Bd0 Rz0 1w10 Xb0 1w10 LX0 1w10 Xb0 1w10 Lz0 1C10 Jz0 1E10 OL0 1yN0 Un0 1qp0 Xb0 1qp0 11X0 1w10 Lz0 1HB0 LX0 1C10 FX0 1w10 Xb0 1qp0 Xb0 1BB0 LX0 1td0 Xb0 1qp0 Xb0 Rf0 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 6i10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|39e4\",\"America/Havana|HMT CST CDT|5t.A 50 40|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Meuu.o 72zu.o ML0 sld0 An0 1Nd0 Db0 1Nd0 An0 6Ep0 An0 1Nd0 An0 JDd0 Mn0 1Ap0 On0 1fd0 11X0 1qN0 WL0 1wp0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 14n0 1ld0 14L0 1kN0 15b0 1kp0 1cL0 1cN0 1fz0 1a10 1fz0 1fB0 11z0 14p0 1nX0 11B0 1nX0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 1a10 1in0 1a10 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 17c0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 11A0 6i00 Rc0 1wo0 U00 1tA0 Rc0 1wo0 U00 1wo0 U00 1zc0 U00 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0|21e5\",\"America/Hermosillo|LMT MST CST PST MDT|7n.Q 70 60 80 60|0121212131414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0|64e4\",\"America/Indiana/Knox|CST CDT CWT CPT EST|60 50 50 50 50|0101023010101010101010101010101010101040101010101010101010101010101010101010101010101010141010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 3Cn0 8wp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 z8o0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/Indiana/Marengo|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101023010101010101010104545454545414545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 dyN0 11z0 6fd0 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1e6p0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/Indiana/Petersburg|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010104010101010101010101010141014545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 3Fb0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 19co0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/Indiana/Tell_City|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010401054541010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 8wn0 1cN0 1cL0 1cN0 1cK0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/Indiana/Vevay|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|010102304545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 kPB0 Awn0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1lnd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/Indiana/Vincennes|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010101010454541014545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 g0p0 11z0 1o10 11z0 1qL0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 caL0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/Indiana/Winamac|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010101010101010454541054545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1za0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/Inuvik|-00 PST PDDT MST MDT|0 80 60 70 60|0121343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-FnA0 tWU0 1fA0 wPe0 2pz0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|35e2\",\"America/Iqaluit|-00 EWT EPT EST EDDT EDT CST CDT|0 40 40 50 30 40 60 50|01234353535353535353535353535353535353535353567353535353535353535353535353535353535353535353535353535353535353535353535353|-16K00 7nX0 iv0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|67e2\",\"America/Jamaica|KMT EST EDT|57.a 50 40|0121212121212121212121|-2l1uQ.O 2uM1Q.O 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0|94e4\",\"America/Juneau|PST PWT PPT PDT YDT YST AKST AKDT|80 70 70 70 80 90 90 80|01203030303030303030303030403030356767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cM0 1cM0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|33e3\",\"America/Kentucky/Louisville|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101010102301010101010101010101010101454545454545414545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 3Fd0 Nb0 LPd0 11z0 RB0 8x30 iw0 1nX1 e0X 9vd0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 xz0 gso0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/Kentucky/Monticello|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101023010101010101010101010101010101010101010101010101010101010101010101454545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 SWp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/La_Paz|CMT BST -04|4w.A 3w.A 40|012|-1x37r.o 13b0|19e5\",\"America/Lima|LMT -05 -04|58.A 50 40|0121212121212121|-2tyGP.o 1bDzP.o zX0 1aN0 1cL0 1cN0 1cL0 1PrB0 zX0 1O10 zX0 6Gp0 zX0 98p0 zX0|11e6\",\"America/Los_Angeles|PST PDT PWT PPT|80 70 70 70|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261q0 1nX0 11B0 1nX0 SgN0 8x10 iy0 5Wp1 1VaX 3dA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e6\",\"America/Maceio|LMT -03 -02|2m.Q 30 20|012121212121212121212121212121212121212121|-2glxB.8 HdLB.8 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 8Q10 WL0 1tB0 5z0 2mN0 On0|93e4\",\"America/Managua|MMT CST EST CDT|5J.c 60 50 50|0121313121213131|-1quie.M 1yAMe.M 4mn0 9Up0 Dz0 1K10 Dz0 s3F0 1KH0 DB0 9In0 k8p0 19X0 1o30 11y0|22e5\",\"America/Manaus|LMT -04 -03|40.4 40 30|01212121212121212121212121212121|-2glvX.U HdKX.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0|19e5\",\"America/Martinique|FFMT AST ADT|44.k 40 30|0121|-2mPTT.E 2LPbT.E 19X0|39e4\",\"America/Matamoros|LMT CST CDT|6E 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|45e4\",\"America/Mazatlan|LMT MST CST PST MDT|75.E 70 60 80 60|0121212131414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|44e4\",\"America/Menominee|CST CDT CWT CPT EST|60 50 50 50 50|01010230101041010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 LCN0 1fz0 6410 9Jb0 1cM0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|85e2\",\"America/Merida|LMT CST EST CDT|5W.s 60 50 50|0121313131313131313131313131313131313131313131313131313131313131313131313131313131313131|-1UQG0 2q2o0 2hz0 wu30 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|11e5\",\"America/Metlakatla|PST PWT PPT PDT AKST AKDT|80 70 70 70 90 80|01203030303030303030303030303030304545450454545454545454545454545454545454545454|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1hU10 Rd0 1zb0 Op0 1zb0 Op0 1zb0 uM0 jB0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2\",\"America/Mexico_City|LMT MST CST CDT CWT|6A.A 70 60 50 50|012121232324232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 gEn0 TX0 3xd0 Jb0 6zB0 SL0 e5d0 17b0 1Pff0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|20e6\",\"America/Miquelon|LMT AST -03 -02|3I.E 40 30 20|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2mKkf.k 2LTAf.k gQ10 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|61e2\",\"America/Moncton|EST AST ADT AWT APT|50 40 30 30 30|012121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsH0 CwN0 1in0 zAo0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1K10 Lz0 1zB0 NX0 1u10 Wn0 S20 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14n1 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 ReX 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|64e3\",\"America/Monterrey|LMT CST CDT|6F.g 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|41e5\",\"America/Montevideo|LMT MMT -04 -03 -0330 -0230 -02 -0130|3I.P 3I.P 40 30 3u 2u 20 1u|012343434343434343434343435353636353636375363636363636363636363636363636363636363636363|-2tRUf.9 sVc0 8jcf.9 1db0 1dcu 1cLu 1dcu 1cLu ircu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu WLu 1fAu 1cLu 1o0u 11zu NAu 3jXu zXu Dq0u 19Xu pcu jz0 cm10 19X0 6tB0 1fbu 3o0u jX0 4vB0 xz0 3Cp0 mmu 1a10 IMu Db0 4c10 uL0 1Nd0 An0 1SN0 uL0 mp0 28L0 iPB0 un0 1SN0 xz0 1zd0 Lz0 1zd0 Rb0 1zd0 On0 1wp0 Rb0 s8p0 1fB0 1ip0 11z0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 11z0|17e5\",\"America/Toronto|EST EDT EWT EPT|50 40 40 40|01010101010101010101010101010101010101010101012301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TR0 1in0 11Wu 1nzu 1fD0 WJ0 1wr0 Nb0 1Ap0 On0 1zd0 On0 1wp0 TX0 1tB0 TX0 1tB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 4kM0 8x40 iv0 1o10 11z0 1nX0 11z0 1o10 11z0 1o10 1qL0 11D0 1nX0 11B0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e5\",\"America/Nassau|LMT EST EWT EPT EDT|59.u 50 40 40 40|01212314141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-2kNuO.u 1drbO.u 6tX0 cp0 1hS0 pF0 J630 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|24e4\",\"America/New_York|EST EDT EWT EPT|50 40 40 40|01010101010101010101010101010101010101010101010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261t0 1nX0 11B0 1nX0 11B0 1qL0 1a10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x40 iv0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e6\",\"America/Nipigon|EST EDT EWT EPT|50 40 40 40|010123010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TR0 1in0 Rnb0 3je0 8x40 iv0 19yN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|16e2\",\"America/Nome|NST NWT NPT BST BDT YST AKST AKDT|b0 a0 a0 b0 a0 90 90 80|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17SX0 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cl0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|38e2\",\"America/Noronha|LMT -02 -01|29.E 20 10|0121212121212121212121212121212121212121|-2glxO.k HdKO.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|30e2\",\"America/North_Dakota/Beulah|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101014545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/North_Dakota/Center|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101014545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/North_Dakota/New_Salem|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101454545454545454545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"America/Ojinaga|LMT MST CST CDT MDT|6V.E 70 60 50 60|0121212323241414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e3\",\"America/Pangnirtung|-00 AST AWT APT ADDT ADT EDT EST CST CDT|0 40 30 30 20 30 40 50 60 50|012314151515151515151515151515151515167676767689767676767676767676767676767676767676767676767676767676767676767676767676767|-1XiM0 PnG0 8x50 iu0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1o00 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2\",\"America/Paramaribo|LMT PMT PMT -0330 -03|3E.E 3E.Q 3E.A 3u 30|01234|-2nDUj.k Wqo0.c qanX.I 1yVXN.o|24e4\",\"America/Phoenix|MST MDT MWT|70 60 60|01010202010|-261r0 1nX0 11B0 1nX0 SgN0 4Al1 Ap0 1db0 SWqX 1cL0|42e5\",\"America/Port-au-Prince|PPMT EST EDT|4N 50 40|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-28RHb 2FnMb 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14q0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 i6n0 1nX0 11B0 1nX0 d430 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 3iN0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5\",\"America/Rio_Branco|LMT -05 -04|4v.c 50 40|01212121212121212121212121212121|-2glvs.M HdLs.M 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0 d5X0|31e4\",\"America/Porto_Velho|LMT -04 -03|4f.A 40 30|012121212121212121212121212121|-2glvI.o HdKI.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|37e4\",\"America/Puerto_Rico|AST AWT APT|40 30 30|0120|-17lU0 7XT0 iu0|24e5\",\"America/Punta_Arenas|SMT -05 -04 -03|4G.K 50 40 30|0102021212121212121232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-2q2jh.e fJAh.e 5knG.K 1Vzh.e jRAG.K 1pbh.e 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 blz0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|\",\"America/Rainy_River|CST CDT CWT CPT|60 50 50 50|010123010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TQ0 1in0 Rnb0 3je0 8x30 iw0 19yN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|842\",\"America/Rankin_Inlet|-00 CST CDDT CDT EST|0 60 40 50 50|012131313131313131313131313131313131313131313431313131313131313131313131313131313131313131313131313131313131313131313131|-vDc0 keu0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e2\",\"America/Recife|LMT -03 -02|2j.A 30 20|0121212121212121212121212121212121212121|-2glxE.o HdLE.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|33e5\",\"America/Regina|LMT MST MDT MWT MPT CST|6W.A 70 60 60 60 60|012121212121212121212121341212121212121212121212121215|-2AD51.o uHe1.o 1in0 s2L0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 66N0 1cL0 1cN0 19X0 1fB0 1cL0 1fB0 1cL0 1cN0 1cL0 M30 8x20 ix0 1ip0 1cL0 1ip0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 3NB0 1cL0 1cN0|19e4\",\"America/Resolute|-00 CST CDDT CDT EST|0 60 40 50 50|012131313131313131313131313131313131313131313431313131313431313131313131313131313131313131313131313131313131313131313131|-SnA0 GWS0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|229\",\"America/Santarem|LMT -04 -03|3C.M 40 30|0121212121212121212121212121212|-2glwl.c HdLl.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0|21e4\",\"America/Santiago|SMT -05 -04 -03|4G.K 50 40 30|010202121212121212321232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-2q2jh.e fJAh.e 5knG.K 1Vzh.e jRAG.K 1pbh.e 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 9Bz0 jb0 1oN0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0|62e5\",\"America/Santo_Domingo|SDMT EST EDT -0430 AST|4E 50 40 4u 40|01213131313131414|-1ttjk 1lJMk Mn0 6sp0 Lbu 1Cou yLu 1RAu wLu 1QMu xzu 1Q0u xXu 1PAu 13jB0 e00|29e5\",\"America/Sao_Paulo|LMT -03 -02|36.s 30 20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glwR.w HdKR.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 pTd0 PX0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1HB0 FX0|20e6\",\"America/Scoresbysund|LMT -02 -01 +00|1r.Q 20 10 0|0121323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2a5Ww.8 2z5ew.8 1a00 1cK0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|452\",\"America/Sitka|PST PWT PPT PDT YST AKST AKDT|80 70 70 70 90 90 80|01203030303030303030303030303030345656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|90e2\",\"America/St_Johns|NST NDT NST NDT NWT NPT NDDT|3u.Q 2u.Q 3u 2u 2u 2u 1u|01010101010101010101010101010101010102323232323232324523232323232323232323232323232323232323232323232323232323232323232323232323232323232326232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-28oit.8 14L0 1nB0 1in0 1gm0 Dz0 1JB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1fB0 19X0 1fB0 19X0 10O0 eKX.8 19X0 1iq0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4\",\"America/Swift_Current|LMT MST MDT MWT MPT CST|7b.k 70 60 60 60 60|012134121212121212121215|-2AD4M.E uHdM.E 1in0 UGp0 8x20 ix0 1o10 17b0 1ip0 11z0 1o10 11z0 1o10 11z0 isN0 1cL0 3Cp0 1cL0 1cN0 11z0 1qN0 WL0 pMp0|16e3\",\"America/Tegucigalpa|LMT CST CDT|5M.Q 60 50|01212121|-1WGGb.8 2ETcb.8 WL0 1qN0 WL0 GRd0 AL0|11e5\",\"America/Thule|LMT AST ADT|4z.8 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5To.Q 31NBo.Q 1cL0 1cN0 1cL0 1fB0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|656\",\"America/Thunder_Bay|CST EST EWT EPT EDT|60 50 40 40 40|0123141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-2q5S0 1iaN0 8x40 iv0 XNB0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4\",\"America/Vancouver|PST PDT PWT PPT|80 70 70 70|0102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TO0 1in0 UGp0 8x10 iy0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5\",\"America/Whitehorse|YST YDT YWT YPT YDDT PST PDT MST|90 80 80 80 70 80 70 70|010102304056565656565656565656565656565656565656565656565656565656565656565656565656565656567|-25TN0 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 3NA0 vrd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1z90|23e3\",\"America/Winnipeg|CST CDT CWT CPT|60 50 50 50|010101023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aIi0 WL0 3ND0 1in0 Jap0 Rb0 aCN0 8x30 iw0 1tB0 11z0 1ip0 11z0 1o10 11z0 1o10 11z0 1rd0 10L0 1op0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 1cL0 1cN0 11z0 6i10 WL0 6i10 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|66e4\",\"America/Yakutat|YST YWT YPT YDT AKST AKDT|90 80 80 80 90 80|01203030303030303030303030303030304545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-17T10 8x00 iz0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cn0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|642\",\"America/Yellowknife|-00 MST MWT MPT MDDT MDT|0 70 60 60 50 60|012314151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151|-1pdA0 hix0 8x20 ix0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3\",\"Antarctica/Casey|-00 +08 +11|0 -80 -b0|0121212121212|-2q00 1DjS0 T90 40P0 KL0 blz0 3m10 1o30 14k0 1kr0 12l0 1o01|10\",\"Antarctica/Davis|-00 +07 +05|0 -70 -50|01012121|-vyo0 iXt0 alj0 1D7v0 VB0 3Wn0 KN0|70\",\"Antarctica/DumontDUrville|-00 +10|0 -a0|0101|-U0o0 cfq0 bFm0|80\",\"Antarctica/Macquarie|AEST AEDT -00|-a0 -b0 0|010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-29E80 1a00 4SK0 1ayy0 Lvs0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 3Co0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|1\",\"Antarctica/Mawson|-00 +06 +05|0 -60 -50|012|-CEo0 2fyk0|60\",\"Pacific/Auckland|NZMT NZST NZST NZDT|-bu -cu -c0 -d0|01020202020202020202020202023232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1GCVu Lz0 1tB0 11zu 1o0u 11zu 1o0u 11zu 1o0u 14nu 1lcu 14nu 1lcu 1lbu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1qLu WMu 1qLu 11Au 1n1bu IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|14e5\",\"Antarctica/Palmer|-00 -03 -04 -02|0 30 40 20|0121212121213121212121212121212121212121212121212121212121212121212121212121212121|-cao0 nD0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 jsN0 14N0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|40\",\"Antarctica/Rothera|-00 -03|0 30|01|gOo0|130\",\"Antarctica/Syowa|-00 +03|0 -30|01|-vs00|20\",\"Antarctica/Troll|-00 +00 +02|0 0 -20|01212121212121212121212121212121212121212121212121212121212121212121|1puo0 hd0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|40\",\"Antarctica/Vostok|-00 +06|0 -60|01|-tjA0|25\",\"Europe/Oslo|CET CEST|-10 -20|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2awM0 Qm0 W6o0 5pf0 WM0 1fA0 1cM0 1cM0 1cM0 1cM0 wJc0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1qM0 WM0 zpc0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|62e4\",\"Asia/Riyadh|LMT +03|-36.Q -30|01|-TvD6.Q|57e5\",\"Asia/Almaty|LMT +05 +06 +07|-57.M -50 -60 -70|012323232323232323232321232323232323232323232323232|-1Pc57.M eUo7.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|15e5\",\"Asia/Amman|LMT EET EEST|-2n.I -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1yW2n.I 1HiMn.I KL0 1oN0 11b0 1oN0 11b0 1pd0 1dz0 1cp0 11b0 1op0 11b0 fO10 1db0 1e10 1cL0 1cN0 1cL0 1cN0 1fz0 1pd0 10n0 1ld0 14n0 1hB0 15b0 1ip0 19X0 1cN0 1cL0 1cN0 17b0 1ld0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1So0 y00 1fc0 1dc0 1co0 1dc0 1cM0 1cM0 1cM0 1o00 11A0 1lc0 17c0 1cM0 1cM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 4bX0 Dd0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|25e5\",\"Asia/Anadyr|LMT +12 +13 +14 +11|-bN.U -c0 -d0 -e0 -b0|01232121212121212121214121212121212121212121212121212121212141|-1PcbN.U eUnN.U 23CL0 1db0 2q10 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|13e3\",\"Asia/Aqtau|LMT +04 +05 +06|-3l.4 -40 -50 -60|012323232323232323232123232312121212121212121212|-1Pc3l.4 eUnl.4 24PX0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|15e4\",\"Asia/Aqtobe|LMT +04 +05 +06|-3M.E -40 -50 -60|0123232323232323232321232323232323232323232323232|-1Pc3M.E eUnM.E 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|27e4\",\"Asia/Ashgabat|LMT +04 +05 +06|-3R.w -40 -50 -60|0123232323232323232323212|-1Pc3R.w eUnR.w 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0|41e4\",\"Asia/Atyrau|LMT +03 +05 +06 +04|-3r.I -30 -50 -60 -40|01232323232323232323242323232323232324242424242|-1Pc3r.I eUor.I 24PW0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 2sp0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|\",\"Asia/Baghdad|BMT +03 +04|-2V.A -30 -40|012121212121212121212121212121212121212121212121212121|-26BeV.A 2ACnV.A 11b0 1cp0 1dz0 1dd0 1db0 1cN0 1cp0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1de0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0|66e5\",\"Asia/Qatar|LMT +04 +03|-3q.8 -40 -30|012|-21Jfq.8 27BXq.8|96e4\",\"Asia/Baku|LMT +03 +04 +05|-3j.o -30 -40 -50|01232323232323232323232123232323232323232323232323232323232323232|-1Pc3j.o 1jUoj.o WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 9Je0 1o00 11z0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5\",\"Asia/Bangkok|BMT +07|-6G.4 -70|01|-218SG.4|15e6\",\"Asia/Barnaul|LMT +06 +07 +08|-5z -60 -70 -80|0123232323232323232323212323232321212121212121212121212121212121212|-21S5z pCnz 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 p90 LE0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|\",\"Asia/Beirut|EET EEST|-20 -30|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-21aq0 1on0 1410 1db0 19B0 1in0 1ip0 WL0 1lQp0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 q6N0 En0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1op0 11b0 dA10 17b0 1iN0 17b0 1iN0 17b0 1iN0 17b0 1vB0 SL0 1mp0 13z0 1iN0 17b0 1iN0 17b0 1jd0 12n0 1a10 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0|22e5\",\"Asia/Bishkek|LMT +05 +06 +07|-4W.o -50 -60 -70|012323232323232323232321212121212121212121212121212|-1Pc4W.o eUnW.o 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2e00 1tX0 17b0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1cPu 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0|87e4\",\"Asia/Brunei|LMT +0730 +08|-7D.E -7u -80|012|-1KITD.E gDc9.E|42e4\",\"Asia/Kolkata|MMT IST +0630|-5l.a -5u -6u|012121|-2zOtl.a 1r2LP.a 1un0 HB0 7zX0|15e6\",\"Asia/Chita|LMT +08 +09 +10|-7x.Q -80 -90 -a0|012323232323232323232321232323232323232323232323232323232323232312|-21Q7x.Q pAnx.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3re0|33e4\",\"Asia/Choibalsan|LMT +07 +08 +10 +09|-7C -70 -80 -a0 -90|0123434343434343434343434343434343434343434343424242|-2APHC 2UkoC cKn0 1da0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 3Db0 h1f0 1cJ0 1cP0 1cJ0|38e3\",\"Asia/Shanghai|CST CDT|-80 -90|01010101010101010101010101010|-23uw0 18n0 OjB0 Rz0 11d0 1wL0 A10 8HX0 1G10 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 aL0 1tU30 Rb0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0|23e6\",\"Asia/Colombo|MMT +0530 +06 +0630|-5j.w -5u -60 -6u|01231321|-2zOtj.w 1rFbN.w 1zzu 7Apu 23dz0 11zu n3cu|22e5\",\"Asia/Dhaka|HMT +0630 +0530 +06 +07|-5R.k -6u -5u -60 -70|0121343|-18LFR.k 1unn.k HB0 m6n0 2kxbu 1i00|16e6\",\"Asia/Damascus|LMT EET EEST|-2p.c -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-21Jep.c Hep.c 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1xRB0 11X0 1oN0 10L0 1pB0 11b0 1oN0 10L0 1mp0 13X0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 Nb0 1AN0 Nb0 bcp0 19X0 1gp0 19X0 3ld0 1xX0 Vd0 1Bz0 Sp0 1vX0 10p0 1dz0 1cN0 1cL0 1db0 1db0 1g10 1an0 1ap0 1db0 1fd0 1db0 1cN0 1db0 1dd0 1db0 1cp0 1dz0 1c10 1dX0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 19z0 1fB0 1qL0 11B0 1on0 Wp0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0|26e5\",\"Asia/Dili|LMT +08 +09|-8m.k -80 -90|01212|-2le8m.k 1dnXm.k 1nfA0 Xld0|19e4\",\"Asia/Dubai|LMT +04|-3F.c -40|01|-21JfF.c|39e5\",\"Asia/Dushanbe|LMT +05 +06 +07|-4z.c -50 -60 -70|012323232323232323232321|-1Pc4z.c eUnz.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2hB0|76e4\",\"Asia/Famagusta|LMT EET EEST +03|-2f.M -20 -30 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212312121212121212121212121212121212121212121|-1Vc2f.M 2a3cf.M 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 15U0 2Ks0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|\",\"Asia/Gaza|EET EEST IST IDT|-20 -30 -20 -30|010101010101010101010101010101010123232323232323232323232323232320101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1c2o0 MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 pBa0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 11z0 1o10 14o0 1lA1 SKX 1xd1 MKX 1AN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|18e5\",\"Asia/Hebron|EET EEST IST IDT|-20 -30 -20 -30|01010101010101010101010101010101012323232323232323232323232323232010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1c2o0 MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 pBa0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 12L0 1mN0 14o0 1lc0 Tb0 1xd1 MKX bB0 cn0 1cN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nA0 1210 1qL0 WN0 1qL0 WN0 1qL0 11c0 1on0 11B0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|25e4\",\"Asia/Ho_Chi_Minh|LMT PLMT +07 +08 +09|-76.E -76.u -70 -80 -90|0123423232|-2yC76.E bK00.a 1h7b6.u 5lz0 18o0 3Oq0 k5b0 aW00 BAM0|90e5\",\"Asia/Hong_Kong|LMT HKT HKST HKWT JST|-7A.G -80 -90 -8u -90|0123412121212121212121212121212121212121212121212121212121212121212121|-2CFH0 1taO0 Hc0 xUu 9tBu 11z0 1tDu Rc0 1wo0 11A0 1cM0 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1nX0 U10 1tz0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|73e5\",\"Asia/Hovd|LMT +06 +07 +08|-66.A -60 -70 -80|012323232323232323232323232323232323232323232323232|-2APG6.A 2Uko6.A cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|81e3\",\"Asia/Irkutsk|IMT +07 +08 +09|-6V.5 -70 -80 -90|01232323232323232323232123232323232323232323232323232323232323232|-21zGV.5 pjXV.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4\",\"Europe/Istanbul|IMT EET EEST +03 +04|-1U.U -20 -30 -30 -40|0121212121212121212121212121212121212121212121234312121212121212121212121212121212121212121212121212121212121212123|-2ogNU.U dzzU.U 11b0 8tB0 1on0 1410 1db0 19B0 1in0 3Rd0 Un0 1oN0 11b0 zSN0 CL0 mp0 1Vz0 1gN0 8yn0 1yp0 ML0 1kp0 17b0 1ip0 17b0 1fB0 19X0 1ip0 19X0 1ip0 17b0 qdB0 38L0 1jd0 Tz0 l6O0 11A0 WN0 1qL0 TB0 1tX0 U10 1tz0 11B0 1in0 17d0 z90 cne0 pb0 2Cp0 1800 14o0 1dc0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1a00 1fA0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WO0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 Xc0 1qo0 WM0 1qM0 11A0 1o00 1200 1nA0 11A0 1tA0 U00 15w0|13e6\",\"Asia/Jakarta|BMT +0720 +0730 +09 +08 WIB|-77.c -7k -7u -90 -80 -70|01232425|-1Q0Tk luM0 mPzO 8vWu 6kpu 4PXu xhcu|31e6\",\"Asia/Jayapura|LMT +09 +0930 WIT|-9m.M -90 -9u -90|0123|-1uu9m.M sMMm.M L4nu|26e4\",\"Asia/Jerusalem|JMT IST IDT IDDT|-2k.E -20 -30 -40|01212121212121321212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-26Bek.E SyOk.E MM0 iM0 4JA0 10o0 1pA0 10M0 1pA0 16o0 1jA0 16o0 1jA0 3LA0 Eo0 oo0 1co0 1dA0 16o0 10M0 1jc0 1tA0 14o0 1cM0 1a00 11A0 1Nc0 Ao0 1Nc0 Ao0 1Ko0 LA0 1o00 WM0 EQK0 Db0 1fB0 Rb0 bXB0 gM0 8Q00 IM0 1wo0 TX0 1HB0 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 1hB0 1dX0 1ep0 1aL0 1eN0 17X0 1nf0 11z0 1tB0 19W0 1e10 17b0 1ep0 1gL0 18N0 1fz0 1eN0 17b0 1gq0 1gn0 19d0 1dz0 1c10 17X0 1hB0 1gn0 19d0 1dz0 1c10 17X0 1kp0 1dz0 1c10 1aL0 1eN0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0|81e4\",\"Asia/Kabul|+04 +0430|-40 -4u|01|-10Qs0|46e5\",\"Asia/Kamchatka|LMT +11 +12 +13|-ay.A -b0 -c0 -d0|012323232323232323232321232323232323232323232323232323232323212|-1SLKy.A ivXy.A 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|18e4\",\"Asia/Karachi|LMT +0530 +0630 +05 PKT PKST|-4s.c -5u -6u -50 -50 -60|012134545454|-2xoss.c 1qOKW.c 7zX0 eup0 LqMu 1fy00 1cL0 dK10 11b0 1610 1jX0|24e6\",\"Asia/Urumqi|LMT +06|-5O.k -60|01|-1GgtO.k|32e5\",\"Asia/Kathmandu|LMT +0530 +0545|-5F.g -5u -5J|012|-21JhF.g 2EGMb.g|12e5\",\"Asia/Khandyga|LMT +08 +09 +10 +11|-92.d -80 -90 -a0 -b0|0123232323232323232323212323232323232323232323232343434343434343432|-21Q92.d pAp2.d 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 qK0 yN0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|66e2\",\"Asia/Krasnoyarsk|LMT +06 +07 +08|-6b.q -60 -70 -80|01232323232323232323232123232323232323232323232323232323232323232|-21Hib.q prAb.q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|10e5\",\"Asia/Kuala_Lumpur|SMT +07 +0720 +0730 +09 +08|-6T.p -70 -7k -7u -90 -80|0123435|-2Bg6T.p 17anT.p l5XE 17bO 8Fyu 1so1u|71e5\",\"Asia/Kuching|LMT +0730 +08 +0820 +09|-7l.k -7u -80 -8k -90|0123232323232323242|-1KITl.k gDbP.k 6ynu AnE 1O0k AnE 1NAk AnE 1NAk AnE 1NAk AnE 1O0k AnE 1NAk AnE pAk 8Fz0|13e4\",\"Asia/Macau|LMT CST +09 +10 CDT|-7y.a -80 -90 -a0 -90|012323214141414141414141414141414141414141414141414141414141414141414141|-2CFHy.a 1uqKy.a PX0 1kn0 15B0 11b0 4Qq0 1oM0 11c0 1ko0 1u00 11A0 1cM0 11c0 1o00 11A0 1o00 11A0 1oo0 1400 1o00 11A0 1o00 U00 1tA0 U00 1wo0 Rc0 1wru U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cK0 1cO0 1cK0 1cO0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|57e4\",\"Asia/Magadan|LMT +10 +11 +12|-a3.c -a0 -b0 -c0|012323232323232323232321232323232323232323232323232323232323232312|-1Pca3.c eUo3.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Cq0|95e3\",\"Asia/Makassar|LMT MMT +08 +09 WITA|-7V.A -7V.A -80 -90 -80|01234|-21JjV.A vfc0 myLV.A 8ML0|15e5\",\"Asia/Manila|PST PDT JST|-80 -90 -90|010201010|-1kJI0 AL0 cK10 65X0 mXB0 vX0 VK10 1db0|24e6\",\"Asia/Nicosia|LMT EET EEST|-2d.s -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Vc2d.s 2a3cd.s 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|32e4\",\"Asia/Novokuznetsk|LMT +06 +07 +08|-5M.M -60 -70 -80|012323232323232323232321232323232323232323232323232323232323212|-1PctM.M eULM.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|55e4\",\"Asia/Novosibirsk|LMT +06 +07 +08|-5v.E -60 -70 -80|0123232323232323232323212323212121212121212121212121212121212121212|-21Qnv.E pAFv.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 ml0 Os0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 4eN0|15e5\",\"Asia/Omsk|LMT +05 +06 +07|-4R.u -50 -60 -70|01232323232323232323232123232323232323232323232323232323232323232|-224sR.u pMLR.u 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|12e5\",\"Asia/Oral|LMT +03 +05 +06 +04|-3p.o -30 -50 -60 -40|01232323232323232424242424242424242424242424242|-1Pc3p.o eUop.o 23CK0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 1cM0 IM0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|27e4\",\"Asia/Pontianak|LMT PMT +0730 +09 +08 WITA WIB|-7h.k -7h.k -7u -90 -80 -80 -70|012324256|-2ua7h.k XE00 munL.k 8Rau 6kpu 4PXu xhcu Wqnu|23e4\",\"Asia/Pyongyang|LMT KST JST KST|-8n -8u -90 -90|012313|-2um8n 97XR 1lTzu 2Onc0 6BA0|29e5\",\"Asia/Qostanay|LMT +04 +05 +06|-4e.s -40 -50 -60|012323232323232323232123232323232323232323232323|-1Pc4e.s eUoe.s 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|\",\"Asia/Qyzylorda|LMT +04 +05 +06|-4l.Q -40 -50 -60|01232323232323232323232323232323232323232323232|-1Pc4l.Q eUol.Q 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 3ao0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 zQl0|73e4\",\"Asia/Rangoon|RMT +0630 +09|-6o.L -6u -90|0121|-21Jio.L SmnS.L 7j9u|48e5\",\"Asia/Sakhalin|LMT +09 +11 +12 +10|-9u.M -90 -b0 -c0 -a0|01232323232323232323232423232323232424242424242424242424242424242|-2AGVu.M 1BoMu.M 1qFa0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 2pB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|58e4\",\"Asia/Samarkand|LMT +04 +05 +06|-4r.R -40 -50 -60|01232323232323232323232|-1Pc4r.R eUor.R 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0|36e4\",\"Asia/Seoul|LMT KST JST KST KDT KDT|-8r.Q -8u -90 -90 -a0 -9u|012343434343151515151515134343|-2um8r.Q 97XV.Q 1m1zu 6CM0 Fz0 1kN0 14n0 1kN0 14L0 1zd0 On0 69B0 2I0u OL0 1FB0 Rb0 1qN0 TX0 1tB0 TX0 1tB0 TX0 1tB0 TX0 2ap0 12FBu 11A0 1o00 11A0|23e6\",\"Asia/Srednekolymsk|LMT +10 +11 +12|-ae.Q -a0 -b0 -c0|01232323232323232323232123232323232323232323232323232323232323232|-1Pcae.Q eUoe.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|35e2\",\"Asia/Taipei|CST JST CDT|-80 -90 -90|01020202020202020202020202020202020202020|-1iw80 joM0 1yo0 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 10N0 1BX0 10p0 1pz0 10p0 1pz0 10p0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1BB0 ML0 1Bd0 ML0 uq10 1db0 1cN0 1db0 97B0 AL0|74e5\",\"Asia/Tashkent|LMT +05 +06 +07|-4B.b -50 -60 -70|012323232323232323232321|-1Pc4B.b eUnB.b 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0|23e5\",\"Asia/Tbilisi|TBMT +03 +04 +05|-2X.b -30 -40 -50|0123232323232323232323212121232323232323232323212|-1Pc2X.b 1jUnX.b WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cK0 1cL0 1cN0 1cL0 1cN0 2pz0 1cL0 1fB0 3Nz0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 An0 Os0 WM0|11e5\",\"Asia/Tehran|LMT TMT +0330 +04 +05 +0430|-3p.I -3p.I -3u -40 -50 -4u|01234325252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2btDp.I 1d3c0 1huLT.I TXu 1pz0 sN0 vAu 1cL0 1dB0 1en0 pNB0 UL0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 64p0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0|14e6\",\"Asia/Thimphu|LMT +0530 +06|-5W.A -5u -60|012|-Su5W.A 1BGMs.A|79e3\",\"Asia/Tokyo|JST JDT|-90 -a0|010101010|-QJJ0 Rc0 1lc0 14o0 1zc0 Oo0 1zc0 Oo0|38e6\",\"Asia/Tomsk|LMT +06 +07 +08|-5D.P -60 -70 -80|0123232323232323232323212323232323232323232323212121212121212121212|-21NhD.P pxzD.P 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 co0 1bB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Qp0|10e5\",\"Asia/Ulaanbaatar|LMT +07 +08 +09|-77.w -70 -80 -90|012323232323232323232323232323232323232323232323232|-2APH7.w 2Uko7.w cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|12e5\",\"Asia/Ust-Nera|LMT +08 +09 +12 +11 +10|-9w.S -80 -90 -c0 -b0 -a0|012343434343434343434345434343434343434343434343434343434343434345|-21Q9w.S pApw.S 23CL0 1d90 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|65e2\",\"Asia/Vladivostok|LMT +09 +10 +11|-8L.v -90 -a0 -b0|01232323232323232323232123232323232323232323232323232323232323232|-1SJIL.v itXL.v 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4\",\"Asia/Yakutsk|LMT +08 +09 +10|-8C.W -80 -90 -a0|01232323232323232323232123232323232323232323232323232323232323232|-21Q8C.W pAoC.W 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|28e4\",\"Asia/Yekaterinburg|LMT PMT +04 +05 +06|-42.x -3J.5 -40 -50 -60|012343434343434343434343234343434343434343434343434343434343434343|-2ag42.x 7mQh.s qBvJ.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|14e5\",\"Asia/Yerevan|LMT +03 +04 +05|-2W -30 -40 -50|0123232323232323232323212121212323232323232323232323232323232|-1Pc2W 1jUnW WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 4RX0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|13e5\",\"Atlantic/Azores|HMT -02 -01 +00 WET|1S.w 20 10 0 0|01212121212121212121212121212121212121212121232123212321232121212121212121212121212121212121212121232323232323232323232323232323234323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2ldW0 aPX0 Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 qIl0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|25e4\",\"Atlantic/Bermuda|BMT BST AST ADT|4j.i 3j.i 40 30|010102323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-28p7E.G 1bb0 1i10 11X0 ru30 thbE.G 1PX0 11B0 1tz0 Rd0 1zb0 Op0 1zb0 3I10 Lz0 1EN0 FX0 1HB0 FX0 1Kp0 Db0 1Kp0 Db0 1Kp0 FX0 93d0 11z0 GAp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e3\",\"Atlantic/Canary|LMT -01 WET WEST|11.A 10 0 -10|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UtaW.o XPAW.o 1lAK0 1a10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4\",\"Atlantic/Cape_Verde|LMT -02 -01|1y.4 20 10|01212|-2ldW0 1eEo0 7zX0 1djf0|50e4\",\"Atlantic/Faroe|LMT WET WEST|r.4 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2uSnw.U 2Wgow.U 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|49e3\",\"Atlantic/Madeira|FMT -01 +00 +01 WET WEST|17.A 10 0 -10 0 -10|01212121212121212121212121212121212121212121232123212321232121212121212121212121212121212121212121454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2ldX0 aPX0 Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 qIl0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|27e4\",\"Atlantic/Reykjavik|LMT -01 +00 GMT|1s 10 0 0|012121212121212121212121212121212121212121212121212121212121212121213|-2uWmw mfaw 1Bd0 ML0 1LB0 Cn0 1LB0 3fX0 C10 HrX0 1cO0 LB0 1EL0 LA0 1C00 Oo0 1wo0 Rc0 1wo0 Rc0 1wo0 Rc0 1zc0 Oo0 1zc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0|12e4\",\"Atlantic/South_Georgia|-02|20|0||30\",\"Atlantic/Stanley|SMT -04 -03 -02|3P.o 40 30 20|012121212121212323212121212121212121212121212121212121212121212121212|-2kJw8.A 12bA8.A 19X0 1fB0 19X0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 Cn0 1Cc10 WL0 1qL0 U10 1tz0 2mN0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 U10 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qN0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 U10 1tz0 U10 1tz0 U10|21e2\",\"Australia/Sydney|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293k0 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|40e5\",\"Australia/Adelaide|ACST ACDT|-9u -au|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293ju xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 WM0 1qM0 Rc0 1zc0 U00 1tA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|11e5\",\"Australia/Brisbane|AEST AEDT|-a0 -b0|01010101010101010|-293k0 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0|20e5\",\"Australia/Broken_Hill|ACST ACDT|-9u -au|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293ju xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|18e3\",\"Australia/Hobart|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-29E80 1a00 1qM0 Oo0 1zc0 Oo0 TAo0 yM0 1cM0 1cM0 1fA0 1a00 VfA0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|21e4\",\"Australia/Darwin|ACST ACDT|-9u -au|010101010|-293ju xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00|12e4\",\"Australia/Eucla|+0845 +0945|-8J -9J|0101010101010101010|-293iJ xc0 10jc0 yM0 1cM0 1cM0 1gSo0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|368\",\"Australia/Lord_Howe|AEST +1030 +1130 +11|-a0 -au -bu -b0|0121212121313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313|raC0 1zdu Rb0 1zd0 On0 1zd0 On0 1zd0 On0 1zd0 TXu 1qMu WLu 1tAu WLu 1tAu TXu 1tAu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 11Au 1nXu 1qMu 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu 11zu 1o0u WLu 1qMu 14nu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu|347\",\"Australia/Lindeman|AEST AEDT|-a0 -b0|010101010101010101010|-293k0 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0|10\",\"Australia/Melbourne|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293k0 xc0 10jc0 yM0 1cM0 1cM0 1fA0 1a00 17c00 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1qM0 11A0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|39e5\",\"Australia/Perth|AWST AWDT|-80 -90|0101010101010101010|-293i0 xc0 10jc0 yM0 1cM0 1cM0 1gSo0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|18e5\",\"CET|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|\",\"Pacific/Easter|EMT -07 -06 -05|7h.s 70 60 50|012121212121212121212121212123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1uSgG.w 1s4IG.w WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 2pA0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1zb0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0|30e2\",\"CST6CDT|CST CDT CWT CPT|60 50 50 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"EET|EET EEST|-20 -30|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|\",\"Europe/Dublin|DMT IST GMT BST IST|p.l -y.D 0 -10 -10|01232323232324242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242|-2ax9y.D Rc0 1fzy.D 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 g600 14o0 1wo0 17c0 1io0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5\",\"EST|EST|50|0||\",\"EST5EDT|EST EDT EWT EPT|50 40 40 40|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261t0 1nX0 11B0 1nX0 SgN0 8x40 iv0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"Etc/GMT-0|GMT|0|0||\",\"Etc/GMT-1|+01|-10|0||\",\"Pacific/Port_Moresby|+10|-a0|0||25e4\",\"Etc/GMT-11|+11|-b0|0||\",\"Pacific/Tarawa|+12|-c0|0||29e3\",\"Etc/GMT-13|+13|-d0|0||\",\"Etc/GMT-14|+14|-e0|0||\",\"Etc/GMT-2|+02|-20|0||\",\"Etc/GMT-3|+03|-30|0||\",\"Etc/GMT-4|+04|-40|0||\",\"Etc/GMT-5|+05|-50|0||\",\"Etc/GMT-6|+06|-60|0||\",\"Indian/Christmas|+07|-70|0||21e2\",\"Etc/GMT-8|+08|-80|0||\",\"Pacific/Palau|+09|-90|0||21e3\",\"Etc/GMT+1|-01|10|0||\",\"Etc/GMT+10|-10|a0|0||\",\"Etc/GMT+11|-11|b0|0||\",\"Etc/GMT+12|-12|c0|0||\",\"Etc/GMT+3|-03|30|0||\",\"Etc/GMT+4|-04|40|0||\",\"Etc/GMT+5|-05|50|0||\",\"Etc/GMT+6|-06|60|0||\",\"Etc/GMT+7|-07|70|0||\",\"Etc/GMT+8|-08|80|0||\",\"Etc/GMT+9|-09|90|0||\",\"Etc/UTC|UTC|0|0||\",\"Europe/Amsterdam|AMT NST +0120 +0020 CEST CET|-j.w -1j.w -1k -k -20 -10|010101010101010101010101010101010101010101012323234545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-2aFcj.w 11b0 1iP0 11A0 1io0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1co0 1io0 1yo0 Pc0 1a00 1fA0 1Bc0 Mo0 1tc0 Uo0 1tA0 U00 1uo0 W00 1s00 VA0 1so0 Vc0 1sM0 UM0 1wo0 Rc0 1u00 Wo0 1rA0 W00 1s00 VA0 1sM0 UM0 1w00 fV0 BCX.w 1tA0 U00 1u00 Wo0 1sm0 601k WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|16e5\",\"Europe/Andorra|WET CET CEST|0 -10 -20|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-UBA0 1xIN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|79e3\",\"Europe/Astrakhan|LMT +03 +04 +05|-3c.c -30 -40 -50|012323232323232323212121212121212121212121212121212121212121212|-1Pcrc.c eUMc.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|10e5\",\"Europe/Athens|AMT EET EEST CEST CET|-1y.Q -20 -30 -20 -10|012123434121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a61x.Q CNbx.Q mn0 kU10 9b0 3Es0 Xa0 1fb0 1dd0 k3X0 Nz0 SCp0 1vc0 SO0 1cM0 1a00 1ao0 1fc0 1a10 1fG0 1cg0 1dX0 1bX0 1cQ0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|35e5\",\"Europe/London|GMT BST BDST|0 -10 -20|0101010101010101010101010101010101010101010101010121212121210101210101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2axa0 Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|10e6\",\"Europe/Belgrade|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-19RC0 3IP0 WM0 1fA0 1cM0 1cM0 1rc0 Qo0 1vmo0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5\",\"Europe/Berlin|CET CEST CEMT|-10 -20 -30|01010101010101210101210101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 kL0 Nc0 m10 WM0 1ao0 1cp0 dX0 jz0 Dd0 1io0 17c0 1fA0 1a00 1ehA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|41e5\",\"Europe/Prague|CET CEST GMT|-10 -20 0|01010101010101010201010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 1cM0 1qM0 11c0 mp0 xA0 mn0 17c0 1io0 17c0 1fc0 1ao0 1bNc0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|13e5\",\"Europe/Brussels|WET CET CEST WEST|0 -10 -20 -10|0121212103030303030303030303030303030303030303030303212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2ehc0 3zX0 11c0 1iO0 11A0 1o00 11A0 my0 Ic0 1qM0 Rc0 1EM0 UM0 1u00 10o0 1io0 1io0 17c0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a30 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 y00 5Wn0 WM0 1fA0 1cM0 16M0 1iM0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|21e5\",\"Europe/Bucharest|BMT EET EEST|-1I.o -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1xApI.o 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Axc0 On0 1fA0 1a10 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|19e5\",\"Europe/Budapest|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 1oo0 11c0 1lc0 17c0 O1V0 3Nf0 WM0 1fA0 1cM0 1cM0 1oJ0 1dd0 1020 1fX0 1cp0 1cM0 1cM0 1cM0 1fA0 1a00 bhy0 Rb0 1wr0 Rc0 1C00 LA0 1C00 LA0 SNW0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cO0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e5\",\"Europe/Zurich|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-19Lc0 11A0 1o00 11A0 1xG10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|38e4\",\"Europe/Chisinau|CMT BMT EET EEST CEST CET MSK MSD|-1T -1I.o -20 -30 -20 -10 -30 -40|012323232323232323234545467676767676767676767323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-26jdT wGMa.A 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 27A0 2en0 39g0 WM0 1fA0 1cM0 V90 1t7z0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 gL0 WO0 1cM0 1cM0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11D0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|67e4\",\"Europe/Copenhagen|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2azC0 Tz0 VuO0 60q0 WM0 1fA0 1cM0 1cM0 1cM0 S00 1HA0 Nc0 1C00 Dc0 1Nc0 Ao0 1h5A0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5\",\"Europe/Gibraltar|GMT BST BDST CET CEST|0 -10 -20 -10 -20|010101010101010101010101010101010101010101010101012121212121010121010101010101010101034343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-2axa0 Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 10Jz0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|30e3\",\"Europe/Helsinki|HMT EET EEST|-1D.N -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1WuND.N OULD.N 1dA0 1xGq0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5\",\"Europe/Kaliningrad|CET CEST EET EEST MSK MSD +03|-10 -20 -20 -30 -30 -40 -30|01010101010101232454545454545454543232323232323232323232323232323232323232323262|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 390 7A0 1en0 12N0 1pbb0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|44e4\",\"Europe/Kiev|KMT EET MSK CEST CET MSD EEST|-22.4 -20 -30 -20 -10 -40 -30|0123434252525252525252525256161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161|-1Pc22.4 eUo2.4 rnz0 2Hg0 WM0 1fA0 da0 1v4m0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 Db0 3220 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|34e5\",\"Europe/Kirov|LMT +03 +04 +05|-3i.M -30 -40 -50|01232323232323232321212121212121212121212121212121212121212121|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|48e4\",\"Europe/Lisbon|LMT WET WEST WEMT CET CEST|A.J 0 -10 -20 -10 -20|012121212121212121212121212121212121212121212321232123212321212121212121212121212121212121212121214121212121212121212121212121212124545454212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2le00 aPX0 Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 pvy0 1cM0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|27e5\",\"Europe/Luxembourg|LMT CET CEST WET WEST WEST WET|-o.A -10 -20 0 -10 -20 -10|0121212134343434343434343434343434343434343434343434565651212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2DG0o.A t6mo.A TB0 1nX0 Up0 1o20 11A0 rW0 CM0 1qP0 R90 1EO0 UK0 1u20 10m0 1ip0 1in0 17e0 19W0 1fB0 1db0 1cp0 1in0 17d0 1fz0 1a10 1in0 1a10 1in0 17f0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 vA0 60L0 WM0 1fA0 1cM0 17c0 1io0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4\",\"Europe/Madrid|WET WEST WEMT CET CEST|0 -10 -20 -10 -20|010101010101010101210343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-25Td0 19B0 1cL0 1dd0 b1z0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1in0 17d0 iIn0 Hd0 1cL0 bb0 1200 2s20 14n0 5aL0 Mp0 1vz0 17d0 1in0 17d0 1in0 17d0 1in0 17d0 6hX0 11B0 XHX0 1a10 1fz0 1a10 19X0 1cN0 1fz0 1a10 1fC0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|62e5\",\"Europe/Malta|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2arB0 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1co0 17c0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1co0 1cM0 1lA0 Xc0 1qq0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1iN0 19z0 1fB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|42e4\",\"Europe/Minsk|MMT EET MSK CEST CET MSD EEST +03|-1O -20 -30 -20 -10 -40 -30 -30|01234343252525252525252525261616161616161616161616161616161616161617|-1Pc1O eUnO qNX0 3gQ0 WM0 1fA0 1cM0 Al0 1tsn0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 3Fc0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0|19e5\",\"Europe/Monaco|PMT WET WEST WEMT CET CEST|-9.l 0 -10 -20 -10 -20|01212121212121212121212121212121212121212121212121232323232345454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2n5c9.l cFX9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 2RV0 11z0 11B0 1ze0 WM0 1fA0 1cM0 1fa0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|38e3\",\"Europe/Moscow|MMT MMT MST MDST MSD MSK +05 EET EEST MSK|-2u.h -2v.j -3v.j -4v.j -40 -30 -50 -20 -30 -40|012132345464575454545454545454545458754545454545454545454545454545454545454595|-2ag2u.h 2pyW.W 1bA0 11X0 GN0 1Hb0 c4v.j ik0 3DA0 dz0 15A0 c10 2q10 iM10 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|16e6\",\"Europe/Paris|PMT WET WEST CEST CET WEMT|-9.l 0 -10 -20 -10 -20|0121212121212121212121212121212121212121212121212123434352543434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-2nco9.l cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 Ik0 5M30 WM0 1fA0 1cM0 Vx0 hB0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|11e6\",\"Europe/Riga|RMT LST EET MSK CEST CET MSD EEST|-1A.y -2A.y -20 -30 -20 -10 -40 -30|010102345454536363636363636363727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272|-25TzA.y 11A0 1iM0 ko0 gWm0 yDXA.y 2bX0 3fE0 WM0 1fA0 1cM0 1cM0 4m0 1sLy0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 1o00 11A0 1o00 11A0 1qM0 3oo0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|64e4\",\"Europe/Rome|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2arB0 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1cM0 16M0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1C00 LA0 1zc0 Oo0 1C00 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1zc0 Oo0 1fC0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|39e5\",\"Europe/Samara|LMT +03 +04 +05|-3k.k -30 -40 -50|0123232323232323232121232323232323232323232323232323232323212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2y10 14m0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|12e5\",\"Europe/Saratov|LMT +03 +04 +05|-34.i -30 -40 -50|012323232323232321212121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 5810|\",\"Europe/Simferopol|SMT EET MSK CEST CET MSD EEST MSK|-2g -20 -30 -20 -10 -40 -30 -40|012343432525252525252525252161616525252616161616161616161616161616161616172|-1Pc2g eUog rEn0 2qs0 WM0 1fA0 1cM0 3V0 1u0L0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 4eL0 1cL0 1cN0 1cL0 1cN0 dX0 WL0 1cN0 1cL0 1fB0 1o30 11B0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11z0 1nW0|33e4\",\"Europe/Sofia|EET CET CEST EEST|-20 -10 -20 -30|01212103030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030|-168L0 WM0 1fA0 1cM0 1cM0 1cN0 1mKH0 1dd0 1fb0 1ap0 1fb0 1a20 1fy0 1a30 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5\",\"Europe/Stockholm|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2azC0 TB0 2yDe0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|15e5\",\"Europe/Tallinn|TMT CET CEST EET MSK MSD EEST|-1D -10 -20 -20 -30 -40 -30|012103421212454545454545454546363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363|-26oND teD 11A0 1Ta0 4rXl KSLD 2FX0 2Jg0 WM0 1fA0 1cM0 18J0 1sTX0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o10 11A0 1qM0 5QM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|41e4\",\"Europe/Tirane|LMT CET CEST|-1j.k -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glBj.k 14pcj.k 5LC0 WM0 4M0 1fCK0 10n0 1op0 11z0 1pd0 11z0 1qN0 WL0 1qp0 Xb0 1qp0 Xb0 1qp0 11z0 1lB0 11z0 1qN0 11z0 1iN0 16n0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|42e4\",\"Europe/Ulyanovsk|LMT +03 +04 +05 +02|-3d.A -30 -40 -50 -20|01232323232323232321214121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|13e5\",\"Europe/Uzhgorod|CET CEST MSK MSD EET EEST|-10 -20 -30 -40 -20 -30|010101023232323232323232320454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-1cqL0 6i00 WM0 1fA0 1cM0 1ml0 1Cp0 1r3W0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 1Nf0 2pw0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|11e4\",\"Europe/Vienna|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 3KM0 14o0 LA00 6i00 WM0 1fA0 1cM0 1cM0 1cM0 400 2qM0 1ao0 1co0 1cM0 1io0 17c0 1gHa0 19X0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|18e5\",\"Europe/Vilnius|WMT KMT CET EET MSK CEST MSD EEST|-1o -1z.A -10 -20 -30 -20 -40 -30|012324525254646464646464646473737373737373737352537373737373737373737373737373737373737373737373737373737373737373737373|-293do 6ILM.o 1Ooz.A zz0 Mfd0 29W0 3is0 WM0 1fA0 1cM0 LV0 1tgL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11B0 1o00 11A0 1qM0 8io0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4\",\"Europe/Volgograd|LMT +03 +04 +05|-2V.E -30 -40 -50|0123232323232323212121212121212121212121212121212121212121212121|-21IqV.E psLV.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 9Jd0 5gn0|10e5\",\"Europe/Warsaw|WMT CET CEST EET EEST|-1o -10 -20 -20 -30|012121234312121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2ctdo 1LXo 11d0 1iO0 11A0 1o00 11A0 1on0 11A0 6zy0 HWP0 5IM0 WM0 1fA0 1cM0 1dz0 1mL0 1en0 15B0 1aq0 1nA0 11A0 1io0 17c0 1fA0 1a00 iDX0 LA0 1cM0 1cM0 1C00 Oo0 1cM0 1cM0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1C00 LA0 uso0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e5\",\"Europe/Zaporozhye|+0220 EET MSK CEST CET MSD EEST|-2k -20 -30 -20 -10 -40 -30|01234342525252525252525252526161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161|-1Pc2k eUok rdb0 2RE0 WM0 1fA0 8m0 1v9a0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cK0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|77e4\",\"HST|HST|a0|0||\",\"Indian/Chagos|LMT +05 +06|-4N.E -50 -60|012|-2xosN.E 3AGLN.E|30e2\",\"Indian/Cocos|+0630|-6u|0||596\",\"Indian/Kerguelen|-00 +05|0 -50|01|-MG00|130\",\"Indian/Mahe|LMT +04|-3F.M -40|01|-2xorF.M|79e3\",\"Indian/Maldives|MMT +05|-4S -50|01|-olgS|35e4\",\"Indian/Mauritius|LMT +04 +05|-3O -40 -50|012121|-2xorO 34unO 14L0 12kr0 11z0|15e4\",\"Indian/Reunion|LMT +04|-3F.Q -40|01|-2mDDF.Q|84e4\",\"Pacific/Kwajalein|+11 +10 +09 -12 +12|-b0 -a0 -90 c0 -c0|012034|-1kln0 akp0 6Up0 12ry0 Wan0|14e3\",\"MET|MET MEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|\",\"MST|MST|70|0||\",\"MST7MDT|MST MDT MWT MPT|70 60 60 60|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"Pacific/Chatham|+1215 +1245 +1345|-cf -cJ -dJ|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-WqAf 1adef IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|600\",\"Pacific/Apia|LMT -1130 -11 -10 +14 +13|bq.U bu b0 a0 -e0 -d0|01232345454545454545454545454545454545454545454545454545454|-2nDMx.4 1yW03.4 2rRbu 1ff0 1a00 CI0 AQ0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|37e3\",\"Pacific/Bougainville|+10 +09 +11|-a0 -90 -b0|0102|-16Wy0 7CN0 2MQp0|18e4\",\"Pacific/Chuuk|+10 +09|-a0 -90|01010|-2ewy0 axB0 RVX0 axd0|49e3\",\"Pacific/Efate|LMT +11 +12|-bd.g -b0 -c0|012121212121212121212121|-2l9nd.g 2uNXd.g Dc0 n610 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 Lz0 1Nd0 An0|66e3\",\"Pacific/Enderbury|-12 -11 +13|c0 b0 -d0|012|nIc0 B7X0|1\",\"Pacific/Fakaofo|-11 +13|b0 -d0|01|1Gfn0|483\",\"Pacific/Fiji|LMT +12 +13|-bT.I -c0 -d0|0121212121212121212121212121212121212121212121212121212121212121|-2bUzT.I 3m8NT.I LA0 1EM0 IM0 nJc0 LA0 1o00 Rc0 1wo0 Ao0 1Nc0 Ao0 1Q00 xz0 1SN0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 s00 20o0 pc0 2hc0 bc0 20o0 pc0 20o0 pc0 20o0 pc0 20o0 pc0 20o0 s00 1VA0 s00 20o0 pc0 20o0 pc0 20o0 pc0 20o0 pc0 20o0 s00 20o0 pc0 20o0 pc0 20o0 pc0 20o0 pc0 20o0 s00 1VA0 s00|88e4\",\"Pacific/Galapagos|LMT -05 -06|5W.o 50 60|01212|-1yVS1.A 2dTz1.A gNd0 rz0|25e3\",\"Pacific/Gambier|LMT -09|8X.M 90|01|-2jof0.c|125\",\"Pacific/Guadalcanal|LMT +11|-aD.M -b0|01|-2joyD.M|11e4\",\"Pacific/Guam|GST +09 GDT ChST|-a0 -90 -b0 -a0|01020202020202020203|-18jK0 6pB0 AhB0 3QL0 g2p0 3p91 WOX rX0 1zd0 Rb0 1wp0 Rb0 5xd0 rX0 5sN0 zb1 1C0X On0 ULb0|17e4\",\"Pacific/Honolulu|HST HDT HWT HPT HST|au 9u 9u 9u a0|0102304|-1thLu 8x0 lef0 8wWu iAu 46p0|37e4\",\"Pacific/Kiritimati|-1040 -10 +14|aE a0 -e0|012|nIaE B7Xk|51e2\",\"Pacific/Kosrae|+11 +09 +10 +12|-b0 -90 -a0 -c0|01021030|-2ewz0 axC0 HBy0 akp0 axd0 WOK0 1bdz0|66e2\",\"Pacific/Majuro|+11 +09 +10 +12|-b0 -90 -a0 -c0|0102103|-2ewz0 axC0 HBy0 akp0 6RB0 12um0|28e3\",\"Pacific/Marquesas|LMT -0930|9i 9u|01|-2joeG|86e2\",\"Pacific/Pago_Pago|LMT SST|bm.M b0|01|-2nDMB.c|37e2\",\"Pacific/Nauru|LMT +1130 +09 +12|-b7.E -bu -90 -c0|01213|-1Xdn7.E QCnB.E 7mqu 1lnbu|10e3\",\"Pacific/Niue|-1120 -1130 -11|bk bu b0|012|-KfME 17y0a|12e2\",\"Pacific/Norfolk|+1112 +1130 +1230 +11 +12|-bc -bu -cu -b0 -c0|012134343434343434343434343434343434343434|-Kgbc W01G Oo0 1COo0 9Jcu 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|25e4\",\"Pacific/Noumea|LMT +11 +12|-b5.M -b0 -c0|01212121|-2l9n5.M 2EqM5.M xX0 1PB0 yn0 HeP0 Ao0|98e3\",\"Pacific/Pitcairn|-0830 -08|8u 80|01|18Vku|56\",\"Pacific/Pohnpei|+11 +09 +10|-b0 -90 -a0|010210|-2ewz0 axC0 HBy0 akp0 axd0|34e3\",\"Pacific/Rarotonga|-1030 -0930 -10|au 9u a0|012121212121212121212121212|lyWu IL0 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu|13e3\",\"Pacific/Tahiti|LMT -10|9W.g a0|01|-2joe1.I|18e4\",\"Pacific/Tongatapu|+1220 +13 +14|-ck -d0 -e0|0121212121|-1aB0k 2n5dk 15A0 1wo0 xz0 1Q10 xz0 zWN0 s00|75e3\",\"PST8PDT|PST PDT PWT PPT|80 70 70 70|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261q0 1nX0 11B0 1nX0 SgN0 8x10 iy0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|\",\"WET|WET WEST|0 -10|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|\"],\"links\":[\"Africa/Abidjan|Africa/Bamako\",\"Africa/Abidjan|Africa/Banjul\",\"Africa/Abidjan|Africa/Conakry\",\"Africa/Abidjan|Africa/Dakar\",\"Africa/Abidjan|Africa/Freetown\",\"Africa/Abidjan|Africa/Lome\",\"Africa/Abidjan|Africa/Nouakchott\",\"Africa/Abidjan|Africa/Ouagadougou\",\"Africa/Abidjan|Africa/Timbuktu\",\"Africa/Abidjan|Atlantic/St_Helena\",\"Africa/Cairo|Egypt\",\"Africa/Johannesburg|Africa/Maseru\",\"Africa/Johannesburg|Africa/Mbabane\",\"Africa/Lagos|Africa/Bangui\",\"Africa/Lagos|Africa/Brazzaville\",\"Africa/Lagos|Africa/Douala\",\"Africa/Lagos|Africa/Kinshasa\",\"Africa/Lagos|Africa/Libreville\",\"Africa/Lagos|Africa/Luanda\",\"Africa/Lagos|Africa/Malabo\",\"Africa/Lagos|Africa/Niamey\",\"Africa/Lagos|Africa/Porto-Novo\",\"Africa/Maputo|Africa/Blantyre\",\"Africa/Maputo|Africa/Bujumbura\",\"Africa/Maputo|Africa/Gaborone\",\"Africa/Maputo|Africa/Harare\",\"Africa/Maputo|Africa/Kigali\",\"Africa/Maputo|Africa/Lubumbashi\",\"Africa/Maputo|Africa/Lusaka\",\"Africa/Nairobi|Africa/Addis_Ababa\",\"Africa/Nairobi|Africa/Asmara\",\"Africa/Nairobi|Africa/Asmera\",\"Africa/Nairobi|Africa/Dar_es_Salaam\",\"Africa/Nairobi|Africa/Djibouti\",\"Africa/Nairobi|Africa/Kampala\",\"Africa/Nairobi|Africa/Mogadishu\",\"Africa/Nairobi|Indian/Antananarivo\",\"Africa/Nairobi|Indian/Comoro\",\"Africa/Nairobi|Indian/Mayotte\",\"Africa/Tripoli|Libya\",\"America/Adak|America/Atka\",\"America/Adak|US/Aleutian\",\"America/Anchorage|US/Alaska\",\"America/Argentina/Buenos_Aires|America/Buenos_Aires\",\"America/Argentina/Catamarca|America/Argentina/ComodRivadavia\",\"America/Argentina/Catamarca|America/Catamarca\",\"America/Argentina/Cordoba|America/Cordoba\",\"America/Argentina/Cordoba|America/Rosario\",\"America/Argentina/Jujuy|America/Jujuy\",\"America/Argentina/Mendoza|America/Mendoza\",\"America/Atikokan|America/Coral_Harbour\",\"America/Chicago|US/Central\",\"America/Curacao|America/Aruba\",\"America/Curacao|America/Kralendijk\",\"America/Curacao|America/Lower_Princes\",\"America/Denver|America/Shiprock\",\"America/Denver|Navajo\",\"America/Denver|US/Mountain\",\"America/Detroit|US/Michigan\",\"America/Edmonton|Canada/Mountain\",\"America/Fort_Wayne|America/Indiana/Indianapolis\",\"America/Fort_Wayne|America/Indianapolis\",\"America/Fort_Wayne|US/East-Indiana\",\"America/Godthab|America/Nuuk\",\"America/Halifax|Canada/Atlantic\",\"America/Havana|Cuba\",\"America/Indiana/Knox|America/Knox_IN\",\"America/Indiana/Knox|US/Indiana-Starke\",\"America/Jamaica|Jamaica\",\"America/Kentucky/Louisville|America/Louisville\",\"America/Los_Angeles|US/Pacific\",\"America/Manaus|Brazil/West\",\"America/Mazatlan|Mexico/BajaSur\",\"America/Mexico_City|Mexico/General\",\"America/New_York|US/Eastern\",\"America/Noronha|Brazil/DeNoronha\",\"America/Panama|America/Cayman\",\"America/Phoenix|US/Arizona\",\"America/Port_of_Spain|America/Anguilla\",\"America/Port_of_Spain|America/Antigua\",\"America/Port_of_Spain|America/Dominica\",\"America/Port_of_Spain|America/Grenada\",\"America/Port_of_Spain|America/Guadeloupe\",\"America/Port_of_Spain|America/Marigot\",\"America/Port_of_Spain|America/Montserrat\",\"America/Port_of_Spain|America/St_Barthelemy\",\"America/Port_of_Spain|America/St_Kitts\",\"America/Port_of_Spain|America/St_Lucia\",\"America/Port_of_Spain|America/St_Thomas\",\"America/Port_of_Spain|America/St_Vincent\",\"America/Port_of_Spain|America/Tortola\",\"America/Port_of_Spain|America/Virgin\",\"America/Regina|Canada/Saskatchewan\",\"America/Rio_Branco|America/Porto_Acre\",\"America/Rio_Branco|Brazil/Acre\",\"America/Santiago|Chile/Continental\",\"America/Sao_Paulo|Brazil/East\",\"America/St_Johns|Canada/Newfoundland\",\"America/Tijuana|America/Ensenada\",\"America/Tijuana|America/Santa_Isabel\",\"America/Tijuana|Mexico/BajaNorte\",\"America/Toronto|America/Montreal\",\"America/Toronto|Canada/Eastern\",\"America/Vancouver|Canada/Pacific\",\"America/Whitehorse|Canada/Yukon\",\"America/Winnipeg|Canada/Central\",\"Asia/Ashgabat|Asia/Ashkhabad\",\"Asia/Bangkok|Asia/Phnom_Penh\",\"Asia/Bangkok|Asia/Vientiane\",\"Asia/Dhaka|Asia/Dacca\",\"Asia/Dubai|Asia/Muscat\",\"Asia/Ho_Chi_Minh|Asia/Saigon\",\"Asia/Hong_Kong|Hongkong\",\"Asia/Jerusalem|Asia/Tel_Aviv\",\"Asia/Jerusalem|Israel\",\"Asia/Kathmandu|Asia/Katmandu\",\"Asia/Kolkata|Asia/Calcutta\",\"Asia/Kuala_Lumpur|Asia/Singapore\",\"Asia/Kuala_Lumpur|Singapore\",\"Asia/Macau|Asia/Macao\",\"Asia/Makassar|Asia/Ujung_Pandang\",\"Asia/Nicosia|Europe/Nicosia\",\"Asia/Qatar|Asia/Bahrain\",\"Asia/Rangoon|Asia/Yangon\",\"Asia/Riyadh|Asia/Aden\",\"Asia/Riyadh|Asia/Kuwait\",\"Asia/Seoul|ROK\",\"Asia/Shanghai|Asia/Chongqing\",\"Asia/Shanghai|Asia/Chungking\",\"Asia/Shanghai|Asia/Harbin\",\"Asia/Shanghai|PRC\",\"Asia/Taipei|ROC\",\"Asia/Tehran|Iran\",\"Asia/Thimphu|Asia/Thimbu\",\"Asia/Tokyo|Japan\",\"Asia/Ulaanbaatar|Asia/Ulan_Bator\",\"Asia/Urumqi|Asia/Kashgar\",\"Atlantic/Faroe|Atlantic/Faeroe\",\"Atlantic/Reykjavik|Iceland\",\"Atlantic/South_Georgia|Etc/GMT+2\",\"Australia/Adelaide|Australia/South\",\"Australia/Brisbane|Australia/Queensland\",\"Australia/Broken_Hill|Australia/Yancowinna\",\"Australia/Darwin|Australia/North\",\"Australia/Hobart|Australia/Currie\",\"Australia/Hobart|Australia/Tasmania\",\"Australia/Lord_Howe|Australia/LHI\",\"Australia/Melbourne|Australia/Victoria\",\"Australia/Perth|Australia/West\",\"Australia/Sydney|Australia/ACT\",\"Australia/Sydney|Australia/Canberra\",\"Australia/Sydney|Australia/NSW\",\"Etc/GMT-0|Etc/GMT\",\"Etc/GMT-0|Etc/GMT+0\",\"Etc/GMT-0|Etc/GMT0\",\"Etc/GMT-0|Etc/Greenwich\",\"Etc/GMT-0|GMT\",\"Etc/GMT-0|GMT+0\",\"Etc/GMT-0|GMT-0\",\"Etc/GMT-0|GMT0\",\"Etc/GMT-0|Greenwich\",\"Etc/UTC|Etc/UCT\",\"Etc/UTC|Etc/Universal\",\"Etc/UTC|Etc/Zulu\",\"Etc/UTC|UCT\",\"Etc/UTC|UTC\",\"Etc/UTC|Universal\",\"Etc/UTC|Zulu\",\"Europe/Belgrade|Europe/Ljubljana\",\"Europe/Belgrade|Europe/Podgorica\",\"Europe/Belgrade|Europe/Sarajevo\",\"Europe/Belgrade|Europe/Skopje\",\"Europe/Belgrade|Europe/Zagreb\",\"Europe/Chisinau|Europe/Tiraspol\",\"Europe/Dublin|Eire\",\"Europe/Helsinki|Europe/Mariehamn\",\"Europe/Istanbul|Asia/Istanbul\",\"Europe/Istanbul|Turkey\",\"Europe/Lisbon|Portugal\",\"Europe/London|Europe/Belfast\",\"Europe/London|Europe/Guernsey\",\"Europe/London|Europe/Isle_of_Man\",\"Europe/London|Europe/Jersey\",\"Europe/London|GB\",\"Europe/London|GB-Eire\",\"Europe/Moscow|W-SU\",\"Europe/Oslo|Arctic/Longyearbyen\",\"Europe/Oslo|Atlantic/Jan_Mayen\",\"Europe/Prague|Europe/Bratislava\",\"Europe/Rome|Europe/San_Marino\",\"Europe/Rome|Europe/Vatican\",\"Europe/Warsaw|Poland\",\"Europe/Zurich|Europe/Busingen\",\"Europe/Zurich|Europe/Vaduz\",\"Indian/Christmas|Etc/GMT-7\",\"Pacific/Auckland|Antarctica/McMurdo\",\"Pacific/Auckland|Antarctica/South_Pole\",\"Pacific/Auckland|NZ\",\"Pacific/Chatham|NZ-CHAT\",\"Pacific/Chuuk|Pacific/Truk\",\"Pacific/Chuuk|Pacific/Yap\",\"Pacific/Easter|Chile/EasterIsland\",\"Pacific/Guam|Pacific/Saipan\",\"Pacific/Honolulu|Pacific/Johnston\",\"Pacific/Honolulu|US/Hawaii\",\"Pacific/Kwajalein|Kwajalein\",\"Pacific/Pago_Pago|Pacific/Midway\",\"Pacific/Pago_Pago|Pacific/Samoa\",\"Pacific/Pago_Pago|US/Samoa\",\"Pacific/Palau|Etc/GMT-9\",\"Pacific/Pohnpei|Pacific/Ponape\",\"Pacific/Port_Moresby|Etc/GMT-10\",\"Pacific/Tarawa|Etc/GMT-12\",\"Pacific/Tarawa|Pacific/Funafuti\",\"Pacific/Tarawa|Pacific/Wake\",\"Pacific/Tarawa|Pacific/Wallis\"],\"countries\":[\"AD|Europe/Andorra\",\"AE|Asia/Dubai\",\"AF|Asia/Kabul\",\"AG|America/Port_of_Spain America/Antigua\",\"AI|America/Port_of_Spain America/Anguilla\",\"AL|Europe/Tirane\",\"AM|Asia/Yerevan\",\"AO|Africa/Lagos Africa/Luanda\",\"AQ|Antarctica/Casey Antarctica/Davis Antarctica/DumontDUrville Antarctica/Mawson Antarctica/Palmer Antarctica/Rothera Antarctica/Syowa Antarctica/Troll Antarctica/Vostok Pacific/Auckland Antarctica/McMurdo\",\"AR|America/Argentina/Buenos_Aires America/Argentina/Cordoba America/Argentina/Salta America/Argentina/Jujuy America/Argentina/Tucuman America/Argentina/Catamarca America/Argentina/La_Rioja America/Argentina/San_Juan America/Argentina/Mendoza America/Argentina/San_Luis America/Argentina/Rio_Gallegos America/Argentina/Ushuaia\",\"AS|Pacific/Pago_Pago\",\"AT|Europe/Vienna\",\"AU|Australia/Lord_Howe Antarctica/Macquarie Australia/Hobart Australia/Currie Australia/Melbourne Australia/Sydney Australia/Broken_Hill Australia/Brisbane Australia/Lindeman Australia/Adelaide Australia/Darwin Australia/Perth Australia/Eucla\",\"AW|America/Curacao America/Aruba\",\"AX|Europe/Helsinki Europe/Mariehamn\",\"AZ|Asia/Baku\",\"BA|Europe/Belgrade Europe/Sarajevo\",\"BB|America/Barbados\",\"BD|Asia/Dhaka\",\"BE|Europe/Brussels\",\"BF|Africa/Abidjan Africa/Ouagadougou\",\"BG|Europe/Sofia\",\"BH|Asia/Qatar Asia/Bahrain\",\"BI|Africa/Maputo Africa/Bujumbura\",\"BJ|Africa/Lagos Africa/Porto-Novo\",\"BL|America/Port_of_Spain America/St_Barthelemy\",\"BM|Atlantic/Bermuda\",\"BN|Asia/Brunei\",\"BO|America/La_Paz\",\"BQ|America/Curacao America/Kralendijk\",\"BR|America/Noronha America/Belem America/Fortaleza America/Recife America/Araguaina America/Maceio America/Bahia America/Sao_Paulo America/Campo_Grande America/Cuiaba America/Santarem America/Porto_Velho America/Boa_Vista America/Manaus America/Eirunepe America/Rio_Branco\",\"BS|America/Nassau\",\"BT|Asia/Thimphu\",\"BW|Africa/Maputo Africa/Gaborone\",\"BY|Europe/Minsk\",\"BZ|America/Belize\",\"CA|America/St_Johns America/Halifax America/Glace_Bay America/Moncton America/Goose_Bay America/Blanc-Sablon America/Toronto America/Nipigon America/Thunder_Bay America/Iqaluit America/Pangnirtung America/Atikokan America/Winnipeg America/Rainy_River America/Resolute America/Rankin_Inlet America/Regina America/Swift_Current America/Edmonton America/Cambridge_Bay America/Yellowknife America/Inuvik America/Creston America/Dawson_Creek America/Fort_Nelson America/Vancouver America/Whitehorse America/Dawson\",\"CC|Indian/Cocos\",\"CD|Africa/Maputo Africa/Lagos Africa/Kinshasa Africa/Lubumbashi\",\"CF|Africa/Lagos Africa/Bangui\",\"CG|Africa/Lagos Africa/Brazzaville\",\"CH|Europe/Zurich\",\"CI|Africa/Abidjan\",\"CK|Pacific/Rarotonga\",\"CL|America/Santiago America/Punta_Arenas Pacific/Easter\",\"CM|Africa/Lagos Africa/Douala\",\"CN|Asia/Shanghai Asia/Urumqi\",\"CO|America/Bogota\",\"CR|America/Costa_Rica\",\"CU|America/Havana\",\"CV|Atlantic/Cape_Verde\",\"CW|America/Curacao\",\"CX|Indian/Christmas\",\"CY|Asia/Nicosia Asia/Famagusta\",\"CZ|Europe/Prague\",\"DE|Europe/Zurich Europe/Berlin Europe/Busingen\",\"DJ|Africa/Nairobi Africa/Djibouti\",\"DK|Europe/Copenhagen\",\"DM|America/Port_of_Spain America/Dominica\",\"DO|America/Santo_Domingo\",\"DZ|Africa/Algiers\",\"EC|America/Guayaquil Pacific/Galapagos\",\"EE|Europe/Tallinn\",\"EG|Africa/Cairo\",\"EH|Africa/El_Aaiun\",\"ER|Africa/Nairobi Africa/Asmara\",\"ES|Europe/Madrid Africa/Ceuta Atlantic/Canary\",\"ET|Africa/Nairobi Africa/Addis_Ababa\",\"FI|Europe/Helsinki\",\"FJ|Pacific/Fiji\",\"FK|Atlantic/Stanley\",\"FM|Pacific/Chuuk Pacific/Pohnpei Pacific/Kosrae\",\"FO|Atlantic/Faroe\",\"FR|Europe/Paris\",\"GA|Africa/Lagos Africa/Libreville\",\"GB|Europe/London\",\"GD|America/Port_of_Spain America/Grenada\",\"GE|Asia/Tbilisi\",\"GF|America/Cayenne\",\"GG|Europe/London Europe/Guernsey\",\"GH|Africa/Accra\",\"GI|Europe/Gibraltar\",\"GL|America/Nuuk America/Danmarkshavn America/Scoresbysund America/Thule\",\"GM|Africa/Abidjan Africa/Banjul\",\"GN|Africa/Abidjan Africa/Conakry\",\"GP|America/Port_of_Spain America/Guadeloupe\",\"GQ|Africa/Lagos Africa/Malabo\",\"GR|Europe/Athens\",\"GS|Atlantic/South_Georgia\",\"GT|America/Guatemala\",\"GU|Pacific/Guam\",\"GW|Africa/Bissau\",\"GY|America/Guyana\",\"HK|Asia/Hong_Kong\",\"HN|America/Tegucigalpa\",\"HR|Europe/Belgrade Europe/Zagreb\",\"HT|America/Port-au-Prince\",\"HU|Europe/Budapest\",\"ID|Asia/Jakarta Asia/Pontianak Asia/Makassar Asia/Jayapura\",\"IE|Europe/Dublin\",\"IL|Asia/Jerusalem\",\"IM|Europe/London Europe/Isle_of_Man\",\"IN|Asia/Kolkata\",\"IO|Indian/Chagos\",\"IQ|Asia/Baghdad\",\"IR|Asia/Tehran\",\"IS|Atlantic/Reykjavik\",\"IT|Europe/Rome\",\"JE|Europe/London Europe/Jersey\",\"JM|America/Jamaica\",\"JO|Asia/Amman\",\"JP|Asia/Tokyo\",\"KE|Africa/Nairobi\",\"KG|Asia/Bishkek\",\"KH|Asia/Bangkok Asia/Phnom_Penh\",\"KI|Pacific/Tarawa Pacific/Enderbury Pacific/Kiritimati\",\"KM|Africa/Nairobi Indian/Comoro\",\"KN|America/Port_of_Spain America/St_Kitts\",\"KP|Asia/Pyongyang\",\"KR|Asia/Seoul\",\"KW|Asia/Riyadh Asia/Kuwait\",\"KY|America/Panama America/Cayman\",\"KZ|Asia/Almaty Asia/Qyzylorda Asia/Qostanay Asia/Aqtobe Asia/Aqtau Asia/Atyrau Asia/Oral\",\"LA|Asia/Bangkok Asia/Vientiane\",\"LB|Asia/Beirut\",\"LC|America/Port_of_Spain America/St_Lucia\",\"LI|Europe/Zurich Europe/Vaduz\",\"LK|Asia/Colombo\",\"LR|Africa/Monrovia\",\"LS|Africa/Johannesburg Africa/Maseru\",\"LT|Europe/Vilnius\",\"LU|Europe/Luxembourg\",\"LV|Europe/Riga\",\"LY|Africa/Tripoli\",\"MA|Africa/Casablanca\",\"MC|Europe/Monaco\",\"MD|Europe/Chisinau\",\"ME|Europe/Belgrade Europe/Podgorica\",\"MF|America/Port_of_Spain America/Marigot\",\"MG|Africa/Nairobi Indian/Antananarivo\",\"MH|Pacific/Majuro Pacific/Kwajalein\",\"MK|Europe/Belgrade Europe/Skopje\",\"ML|Africa/Abidjan Africa/Bamako\",\"MM|Asia/Yangon\",\"MN|Asia/Ulaanbaatar Asia/Hovd Asia/Choibalsan\",\"MO|Asia/Macau\",\"MP|Pacific/Guam Pacific/Saipan\",\"MQ|America/Martinique\",\"MR|Africa/Abidjan Africa/Nouakchott\",\"MS|America/Port_of_Spain America/Montserrat\",\"MT|Europe/Malta\",\"MU|Indian/Mauritius\",\"MV|Indian/Maldives\",\"MW|Africa/Maputo Africa/Blantyre\",\"MX|America/Mexico_City America/Cancun America/Merida America/Monterrey America/Matamoros America/Mazatlan America/Chihuahua America/Ojinaga America/Hermosillo America/Tijuana America/Bahia_Banderas\",\"MY|Asia/Kuala_Lumpur Asia/Kuching\",\"MZ|Africa/Maputo\",\"NA|Africa/Windhoek\",\"NC|Pacific/Noumea\",\"NE|Africa/Lagos Africa/Niamey\",\"NF|Pacific/Norfolk\",\"NG|Africa/Lagos\",\"NI|America/Managua\",\"NL|Europe/Amsterdam\",\"NO|Europe/Oslo\",\"NP|Asia/Kathmandu\",\"NR|Pacific/Nauru\",\"NU|Pacific/Niue\",\"NZ|Pacific/Auckland Pacific/Chatham\",\"OM|Asia/Dubai Asia/Muscat\",\"PA|America/Panama\",\"PE|America/Lima\",\"PF|Pacific/Tahiti Pacific/Marquesas Pacific/Gambier\",\"PG|Pacific/Port_Moresby Pacific/Bougainville\",\"PH|Asia/Manila\",\"PK|Asia/Karachi\",\"PL|Europe/Warsaw\",\"PM|America/Miquelon\",\"PN|Pacific/Pitcairn\",\"PR|America/Puerto_Rico\",\"PS|Asia/Gaza Asia/Hebron\",\"PT|Europe/Lisbon Atlantic/Madeira Atlantic/Azores\",\"PW|Pacific/Palau\",\"PY|America/Asuncion\",\"QA|Asia/Qatar\",\"RE|Indian/Reunion\",\"RO|Europe/Bucharest\",\"RS|Europe/Belgrade\",\"RU|Europe/Kaliningrad Europe/Moscow Europe/Simferopol Europe/Kirov Europe/Astrakhan Europe/Volgograd Europe/Saratov Europe/Ulyanovsk Europe/Samara Asia/Yekaterinburg Asia/Omsk Asia/Novosibirsk Asia/Barnaul Asia/Tomsk Asia/Novokuznetsk Asia/Krasnoyarsk Asia/Irkutsk Asia/Chita Asia/Yakutsk Asia/Khandyga Asia/Vladivostok Asia/Ust-Nera Asia/Magadan Asia/Sakhalin Asia/Srednekolymsk Asia/Kamchatka Asia/Anadyr\",\"RW|Africa/Maputo Africa/Kigali\",\"SA|Asia/Riyadh\",\"SB|Pacific/Guadalcanal\",\"SC|Indian/Mahe\",\"SD|Africa/Khartoum\",\"SE|Europe/Stockholm\",\"SG|Asia/Singapore\",\"SH|Africa/Abidjan Atlantic/St_Helena\",\"SI|Europe/Belgrade Europe/Ljubljana\",\"SJ|Europe/Oslo Arctic/Longyearbyen\",\"SK|Europe/Prague Europe/Bratislava\",\"SL|Africa/Abidjan Africa/Freetown\",\"SM|Europe/Rome Europe/San_Marino\",\"SN|Africa/Abidjan Africa/Dakar\",\"SO|Africa/Nairobi Africa/Mogadishu\",\"SR|America/Paramaribo\",\"SS|Africa/Juba\",\"ST|Africa/Sao_Tome\",\"SV|America/El_Salvador\",\"SX|America/Curacao America/Lower_Princes\",\"SY|Asia/Damascus\",\"SZ|Africa/Johannesburg Africa/Mbabane\",\"TC|America/Grand_Turk\",\"TD|Africa/Ndjamena\",\"TF|Indian/Reunion Indian/Kerguelen\",\"TG|Africa/Abidjan Africa/Lome\",\"TH|Asia/Bangkok\",\"TJ|Asia/Dushanbe\",\"TK|Pacific/Fakaofo\",\"TL|Asia/Dili\",\"TM|Asia/Ashgabat\",\"TN|Africa/Tunis\",\"TO|Pacific/Tongatapu\",\"TR|Europe/Istanbul\",\"TT|America/Port_of_Spain\",\"TV|Pacific/Funafuti\",\"TW|Asia/Taipei\",\"TZ|Africa/Nairobi Africa/Dar_es_Salaam\",\"UA|Europe/Simferopol Europe/Kiev Europe/Uzhgorod Europe/Zaporozhye\",\"UG|Africa/Nairobi Africa/Kampala\",\"UM|Pacific/Pago_Pago Pacific/Wake Pacific/Honolulu Pacific/Midway\",\"US|America/New_York America/Detroit America/Kentucky/Louisville America/Kentucky/Monticello America/Indiana/Indianapolis America/Indiana/Vincennes America/Indiana/Winamac America/Indiana/Marengo America/Indiana/Petersburg America/Indiana/Vevay America/Chicago America/Indiana/Tell_City America/Indiana/Knox America/Menominee America/North_Dakota/Center America/North_Dakota/New_Salem America/North_Dakota/Beulah America/Denver America/Boise America/Phoenix America/Los_Angeles America/Anchorage America/Juneau America/Sitka America/Metlakatla America/Yakutat America/Nome America/Adak Pacific/Honolulu\",\"UY|America/Montevideo\",\"UZ|Asia/Samarkand Asia/Tashkent\",\"VA|Europe/Rome Europe/Vatican\",\"VC|America/Port_of_Spain America/St_Vincent\",\"VE|America/Caracas\",\"VG|America/Port_of_Spain America/Tortola\",\"VI|America/Port_of_Spain America/St_Thomas\",\"VN|Asia/Bangkok Asia/Ho_Chi_Minh\",\"VU|Pacific/Efate\",\"WF|Pacific/Wallis\",\"WS|Pacific/Apia\",\"YE|Asia/Riyadh Asia/Aden\",\"YT|Africa/Nairobi Indian/Mayotte\",\"ZA|Africa/Johannesburg\",\"ZM|Africa/Maputo Africa/Lusaka\",\"ZW|Africa/Maputo Africa/Harare\"]}"); diff --git a/manifest.konnector b/manifest.konnector index 2aea4620c3cc3464abc9bac7d708fedaa59791de..a4588cb85432bdaea8193e7fe17fca9f35052705 100644 --- a/manifest.konnector +++ b/manifest.konnector @@ -1,5 +1,5 @@ { - "version": "1.0.2", + "version": "1.0.1", "name": "EGL", "type": "konnector", "language": "node", diff --git a/package.json b/package.json index f83ba1c5eff16fd4835690147542187e5fcb5d95..3b71ce5878a9e13c3e980918b14f373ab2e758df 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "egl", - "version": "1.0.2", + "version": "1.0.1", "description": "", "repository": { "type": "git", @@ -39,7 +39,7 @@ "travisDeployKey": "./bin/generate_travis_deploy_key" }, "dependencies": { - "cozy-konnector-libs": "4.42.3", + "cozy-konnector-libs": "4.34.5", "moment": "^2.24.0", "moment-timezone": "^0.5.26" }, @@ -47,8 +47,7 @@ "@types/moment-timezone": "^0.5.30", "copy-webpack-plugin": "6.1.1", "cozy-app-publish": "0.25.0", - "cozy-jobs-cli": "1.16.2", - "cozy-konnector-build": "1.2.2", + "cozy-jobs-cli": "1.13.6", "eslint": "5.16.0", "eslint-config-cozy-app": "1.6.0", "eslint-plugin-prettier": "3.0.1",